Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
python-tinycss (0.4-3-deepin1) unstable; urgency=medium
python-tinycss (0.4-6) unstable; urgency=medium

* Rebuild
[ Debian Janitor ]
* Set upstream metadata fields: Repository-Browse.

-- Deepin Packages Builder <[email protected]> Thu, 24 Nov 2022 07:22:42 +0800
-- Jelmer Vernooij <[email protected]> Wed, 16 Nov 2022 10:53:34 +0000

python-tinycss (0.4-5) unstable; urgency=medium

[ Debian Janitor ]
* Apply multi-arch hints. + python-tinycss-doc: Add Multi-Arch: foreign.

-- Jelmer Vernooij <[email protected]> Fri, 14 Oct 2022 11:44:54 +0100

python-tinycss (0.4-4) unstable; urgency=medium

[ Ondřej Nový ]
* d/control: Update Maintainer field with new Debian Python Team
contact address.
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.

[ Debian Janitor ]
* Bump debhelper from deprecated 9 to 13.

-- Sandro Tosi <[email protected]> Sat, 04 Jun 2022 14:28:36 -0400

python-tinycss (0.4-3) unstable; urgency=medium

Expand Down
9 changes: 5 additions & 4 deletions debian/control
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Source: python-tinycss
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Michael Fladischer <[email protected]>,
Felix Krull <[email protected]>
Build-Depends: debhelper-compat (= 9),
Build-Depends: debhelper-compat (= 13),
dh-python,
cython3,
python3-all-dev,
python3-setuptools,
python3-sphinx
Standards-Version: 3.9.8
Homepage: https://github.com/Kozea/tinycss
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-tinycss
Vcs-Git: https://salsa.debian.org/python-team/modules/python-tinycss.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-tinycss
Vcs-Git: https://salsa.debian.org/python-team/packages/python-tinycss.git



Expand Down Expand Up @@ -41,6 +41,7 @@ Section: doc
Architecture: all
Depends: ${misc:Depends},
${sphinxdoc:Depends}
Multi-Arch: foreign
Description: complete yet simple CSS parser (Documentation)
tinycss is a complete yet simple CSS parser for Python. It supports the full
syntax and error handling for CSS 2.1 as well as some CSS 3 modules:
Expand Down
2 changes: 2 additions & 0 deletions debian/upstream/metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
Repository-Browse: https://github.com/Kozea/tinycss
47 changes: 47 additions & 0 deletions tinycss.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
Metadata-Version: 1.1
Name: tinycss
Version: 0.4
Summary: tinycss is a complete yet simple CSS parser for Python.
Home-page: http://tinycss.readthedocs.io/
Author: Simon Sapin
Author-email: [email protected]
License: BSD
Description: tinycss: CSS parser for Python
==============================

*tinycss* is a complete yet simple CSS parser for Python. It supports the full
syntax and error handling for CSS 2.1 as well as some CSS 3 modules:

* CSS Color 3
* CSS Fonts 3
* CSS Paged Media 3

It is designed to be easy to extend for new CSS modules and syntax,
and integrates well with cssselect_ for Selectors 3 support.

Quick facts:

* Free software: BSD licensed
* Compatible with Python 2.7 and 3.x
* Latest documentation `on python.org`_
* Source, issues and pull requests `on Github`_
* Releases `on PyPI`_
* Install with ``pip install tinycss``

.. _cssselect: http://packages.python.org/cssselect/
.. _on python.org: http://packages.python.org/tinycss/
.. _on Github: https://github.com/SimonSapin/tinycss/
.. _on PyPI: http://pypi.python.org/pypi/tinycss

Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
44 changes: 44 additions & 0 deletions tinycss.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.coveragerc
.gitignore
.travis.yml
CHANGES
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
docs/changelog.rst
docs/conf.py
docs/css3.rst
docs/extending.rst
docs/hacking.rst
docs/index.rst
docs/parsing.rst
docs/_static/custom.css
docs/_templates/layout.html
tinycss/__init__.py
tinycss/color3.py
tinycss/css21.py
tinycss/decoding.py
tinycss/fonts3.py
tinycss/page3.py
tinycss/parsing.py
tinycss/speedups.c
tinycss/speedups.pyx
tinycss/token_data.py
tinycss/tokenizer.py
tinycss/version.py
tinycss.egg-info/PKG-INFO
tinycss.egg-info/SOURCES.txt
tinycss.egg-info/dependency_links.txt
tinycss.egg-info/requires.txt
tinycss.egg-info/top_level.txt
tinycss/tests/__init__.py
tinycss/tests/speed.py
tinycss/tests/test_api.py
tinycss/tests/test_color3.py
tinycss/tests/test_css21.py
tinycss/tests/test_decoding.py
tinycss/tests/test_fonts3.py
tinycss/tests/test_page3.py
tinycss/tests/test_tokenizer.py
1 change: 1 addition & 0 deletions tinycss.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

6 changes: 6 additions & 0 deletions tinycss.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

[test]
pytest-runner
pytest-cov
pytest-flake8
pytest-isort
1 change: 1 addition & 0 deletions tinycss.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tinycss
Loading
Loading