8
0

12 Commits

Author SHA256 Message Date
3ba8ec33a2 Accepting request 1239555 from devel:languages:python
- Update to 0.1.52:
  * Add build-dependency on gpgv.
  * Tweaks to match changes in Python-land tooling:
    - Fix some stylistic things that the newly uploaded pylint 2.16 complains
      about.
    - Fix testing with wine to adapt to changes in wine packaging.
    - Fix tests to work with recent changes to pip that prevent installation
      outside of a venv.
    - Change version generation to be PEP440 compatible to satisfy new
      requirements from setuptools, python-packaging etc. This change is
      needed for any uploads outside of Debian sid (derivatives, Debian
      backports, Debian security/stable-updates, etc).
  * Fix file extraction from DebFile for cases where the .deb is generated
    from control or data tarballs without the optional entry for "." and the
    "./" prefix on all members; this isn't needed for dpkg-generated packages,
    but is needed for other tools such as 'cargo deb' (Closes: #1031674).
  * Demote Recommends to Suggests; it is up to the calling code to know what
    optional features of python-debian it is using rather than dragging in an
    ever-increasing list of optional extra packages (Closes: #1029727).
  * Drop shims for pre-PEP8 API after 14 years of deprecation.
  * Replace setup.py and config for pylint, mypy, pytest with pyproject.toml.
  * Switch package build system to use pyproject.toml.
  * Relocate tests and test data out of module; they are no longer included
    in the binary package or in the wheel.
  * Relocate module source from 'lib' to 'src' in line with current practice.
  * Change handling of package version to use setuptools_scm during
    development (but not at run time).
  * Update code to build pypi uploads (sdist and wheel).
  * Update copyright statements throughout.
  * Tweak pytest configuration for pytest 8.1.1 changes.
  * Fix test suite harness that runs tests under wine.
  * Update Standards-Version to 4.7.0 (no changes required).
  * Fix handling of whitespace-separated file lists in Copyright files with
    thanks to Lasse Collin for the suggested fix (Closes: #1062437).
  * Parse source field to extract source version in .deb packages from
    binNMUs (Closes: #1082838).
  * Switch to from chardet to charset-normalizer and make it in the code
    (demoted to Suggests), with thanks to Michal Čihař for the initial work.
  * Update Standards-Version to 4.7.0 (no changes required).
  * Make 'Package-List' a multiline field for Dsc objects, thanks to Philipp
    Hahn for the patch (Closes: #1052154).
  * Use valid SPDX identified in python package metadata.
  * Fix version number to be PEP440 compliant.
  * Drop debian_bundle and top-level deb822 modules after 13 years of
    deprecation.
  * Fix typing errors from newer mypy in deb822.PkgRelation.
  * Changelog parsing speed improvements.
  * Add support for file location finding (line, col) in Deb822 files.
  * Change some type annotations from Python 2 to Python 3 format.
  * Clean up some old Python 2 methods.
  * Fixes for pylint 3.1.
- Switch to salsa tarball to run the testsuite.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/request/show/1239555
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-debian?expand=0&rev=5
2025-01-22 16:31:47 +00:00
ed8b568772 Accepting request 1039903 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1039903
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-debian?expand=0&rev=4
2022-12-04 13:58:47 +00:00
3bc1b65a14 Accepting request 1039886 from home:yarunachalam:branches:devel:languages:python
- Update to version 0.1.49 
  * Fix whitespace handling of Copyright files (Closes: #960278)
  * Make python-debian (more) portable (Closes: #1011937)
    - Tweak tests to be portable to other platforms
    - Adapt tests so that skipping optional tests can be prevented if needed
    - Add other platforms to CI to test portability
  * Switch tests to use more pytest features.
  * Updates for newer mypy and pylint.
  * Add Debian 14 'forky' to the list of known releases.

OBS-URL: https://build.opensuse.org/request/show/1039886
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=11
2022-12-03 22:34:31 +00:00
76cb57aef7 Accepting request 1032448 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1032448
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-debian?expand=0&rev=3
2022-10-31 11:15:18 +00:00
7c23ee5403 Accepting request 1032061 from home:yarunachalam:branches:devel:languages:python
- Update to 0.1.48 
  * Fix version bound for subscripting abc.Iterator, abc.MutableMapping
  * Don't raise AmbiguousDeb822FieldKeyError in __contains__.

OBS-URL: https://build.opensuse.org/request/show/1032061
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=9
2022-10-31 10:18:48 +00:00
d9143c6219 Accepting request 1008714 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1008714
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-debian?expand=0&rev=2
2022-10-07 23:25:31 +00:00
6c78b174ff Accepting request 1008606 from home:yarunachalam:branches:devel:languages:python
- Update to 0.1.47 
  Following is the changelog for deb822 before it was merged into python-debian.
  * deb822.py:
    - Allow Deb822 objects to be initialized with a dict containing the initial
      key-value pairs.
    - _multivalued class:
      + Make all the multivalued dicts Deb822Dict objects, so the keys are
        case-preserving, but case-insensitive
    - Add a Release class, which knows about Release-file multivalued fields.
      Thanks to Alexandre Fayolle.  (Closes: 428540)
    - Deb822Dict no longer directly subclasses dict.  All of the important
      methods were already implemented with userdict.DictMixin; the dict
      subclass was so that Python would see a Deb822Dict instance as a dict
      instance.  Unfortunately, this causes confusion if you do something like
        d = dict(Deb822Dict({'foo': 'bar'})
      The "Pythonic" way to check for a dictionary interface is to check for
      the 'items' attribute.
  * test_deb822.py:
    - Add a test case for deriving a Python dict from a Deb822Dict.
  * debian/control:
    - Add a XS-Vcs-Bzr field

OBS-URL: https://build.opensuse.org/request/show/1008606
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=7
2022-10-07 07:56:01 +00:00
cb4dc8cf0f Accepting request 986814 from devel:languages:python
Rename the package named incorrectly according to the Python policies.

When accepted remove https://build.opensuse.org/package/show/openSUSE:Factory/python-debian

OBS-URL: https://build.opensuse.org/request/show/986814
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-debian?expand=0&rev=1
2022-07-11 17:09:38 +00:00
f3eaa778d2 Accepting request 986793 from home:juliogonzalezgil:branches:devel:languages:python
Add missing bsc

OBS-URL: https://build.opensuse.org/request/show/986793
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=5
2022-07-05 08:27:14 +00:00
882419414b Rename files
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=4
2022-07-04 14:19:30 +00:00
f966bb3c4b - Rename package according to the Python packaging guidelines.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=3
2022-07-04 14:13:12 +00:00
0ec77308ef OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-debian?expand=0&rev=2 2022-07-04 14:00:05 +00:00

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8cf677a30dbcb4be7a99536c17e11308a827a4d22028dc59a67f6c6dd3f0f58c
size 121690