pydpkg


Namepydpkg JSON
Version 1.9.3 PyPI version JSON
download
home_pagehttps://github.com/memory/python-dpkg
SummaryA python library for parsing debian package control headers and version strings
upload_time2024-03-31 17:12:38
maintainerNone
docs_urlNone
authorNathan J. Mehl
requires_python<4.0,>=3.8
licenseApache-2.0
keywords apt debian dpkg packaging
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python-dpkg

This library can be used to:

1. read and extract control data from Debian-format package files, even
   on platforms that generally lack a native implementation of dpkg

2. compare dpkg version strings, using a pure Python implementation of
   the algorithm described in section 5.6.12 of the debian-policy manual:
   https://www.debian.org/doc/debian-policy/ch-controlfields.html#version

3. Parse debian source description (dsc) files, inspect their contents
   and verify that their source files are present and checksums are
   correct.

This is primarily intended for use on platforms that do not normally
ship [python-apt](http://apt.alioth.debian.org/python-apt-doc/) due to
licensing restrictions or the lack of a native libapt.so (e.g. macOS)

Currently only tested on CPython 3.x, but at least in theory should run
on any python distribution that can install the [arpy](https://pypi.python.org/pypi/arpy/)
library.

Note: python 2.7 compatibility was removed in version 1.4.0 and the v1.3
branch is no longer being maintained. This means that among other issues,
support for zstandard-compressed deb packages will not be available on
py27 -- consider this impetus to upgrade if you have not already.

## Installing

Install the 'pydpkg' package from [PyPi](https://pypi.python.org) using
the [pip](https://packaging.python.org/installing/) tool:

    $ pip install pydpkg
    Collecting pydpkg
      Downloading pydpkg-1.1-py2-none-any.whl
      Installing collected packages: pydpkg
      Successfully installed pydpkg-1.1

## Developing

python-dpkg uses [Poetry](https://python-poetry.org/) to manage its dependencies.

The [Makefile](Makefile) will attempt to set up a reasonable build/test
environment on both macOS/Darwin and more traditional unixes (linux, freebsd,
etc), but relies on the existence of [pyenv](https://github.com/pyenv/pyenv),
[pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) everywhere and
[Homebrew](https://brew.sh) on macOS.  You don't _need_ to use the workflow
that the makefile enforces (modern versions of [pip](https://pypi.org/project/pip/)
will happily digest `pyproject.toml` files and you can run the test commands
manually) but please ensure all tests pass before submitting PRs.

## Usage

### Binary Packages

#### Read and extract headers

    >>> from pydpkg import Dpkg
    >>> dp = Dpkg('/tmp/testdeb_1:0.0.0-test_all.deb')

    >>> dp.headers
    {'maintainer': u'Climate Corp Engineering <no-reply@climate.com>', 'description': u'testdeb\n a bogus debian package for testing dpkg builds', 'package': u'testdeb', 'section': u'base', 'priority': u'extra', 'installed-size': u'0', 'version': u'1:0.0.0-test', 'architecture': u'all'}

    >>> print(dp)
    Package: testdeb
    Version: 1:0.0.0-test
    Section: base
    Priority: extra
    Architecture: all
    Installed-Size: 0
    Maintainer: Climate Corp Engineering <no-reply@climate.com>
    Description: testdeb
     a bogus debian package for testing dpkg builds

#### Interact directly with the package control message

    >>> dp.message
    <email.message.Message instance at 0x10895c6c8>
    >>> dp.message.get_content_type()
    'text/plain'

#### Get package file fingerprints

    >>> dp.fileinfo
    {'sha256': '547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f', 'sha1': 'a5d28ae2f23e726a797349d7dd5f21baf8aa02b4', 'filesize': 910, 'md5': '149e61536a9fe36374732ec95cf7945d'}
    >>> dp.md5
    '149e61536a9fe36374732ec95cf7945d'
    >>> dp.sha1
    'a5d28ae2f23e726a797349d7dd5f21baf8aa02b4'
    >>> dp.sha256
    '547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f'
    >>> dp.filesize
    910

#### Get the components of the package version

    >>> d.epoch
    1
    >>> d.upstream_version
    u'0.0.0'
    >>> d.debian_revision
    u'test'

#### Get an arbitrary control header, case-independent

    >>> d.version
    u'1:0.0.0-test'
    
    >>> d.VERSION
    u'1:0.0.0-test'
    
    >>> d.description
    u'testdeb\n a bogus debian package for testing dpkg builds'
    
    >>> d.get('nosuchheader', 'default')
    'default'

#### Compare current version to a candidate version

    >>> dp.compare_version_with('1.0')
    1

    >>> dp.compare_version_with('1:1.0')
    -1

#### Compare two arbitrary version strings

    >>> from pydpkg import Dpkg
    >>> ver_1 = '0:1.0-test1'
    >>> ver_2 = '0:1.0-test2'
    >>> Dpkg.compare_versions(ver_1, ver_2)
    -1

#### Use as a key function to sort a list of version strings

    >>> from pydpkg import Dpkg
    >>> sorted(['0:1.0-test1', '1:0.0-test0', '0:1.0-test2'] , key=Dpkg.compare_versions_key)
    ['0:1.0-test1', '0:1.0-test2', '1:0.0-test0']

#### Use the `dpkg-inspect` script to inspect packages

    $ dpkg-inspect ~/testdeb*deb
    Filename: /Home/n/testdeb_1:0.0.0-test_all.deb
    Size:     910
    MD5:      149e61536a9fe36374732ec95cf7945d
    SHA1:     a5d28ae2f23e726a797349d7dd5f21baf8aa02b4
    SHA256:   547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f
    Headers:
      Package: testdeb
      Version: 1:0.0.0-test
      Section: base
      Priority: extra
      Architecture: all
      Installed-Size: 0
      Maintainer: Nathan Mehl <n@climate.com>
      Description: testdeb
       a bogus debian package for testing dpkg builds

### Source Packages

#### Read and extract headers

    >>> from pydpkg import Dsc
    >>> dsc = Dsc('testdeb_0.0.0.dsc')
    >>> dsc.standards_version
    '3.9.6'
    >>> dsc.format
    '3.0 (quilt)'
    >>> x.build_depends
    'python (>= 2.6.6-3), debhelper (>= 9)'

#### Get the full set of dsc headers as a dictionary

    >>> dsc.headers
    {'Architecture': 'all',
     'Binary': 'testdeb',
     'Build-Depends': 'python (>= 2.6.6-3), debhelper (>= 9)',
     'Checksums-Sha1': ' f250ac0a426b31df24fc2c98050f4fab90e456cd 280 testdeb_0.0.0.orig.tar.gz\n cb3474ff94053018957ebcf1d8a2b45f75dda449 232 testdeb_0.0.0-1.debian.tar.xz\n 80cd7b01014a269d445c63b037b885d6002cf533 841 testdeb_0.0.0.dsc',
     'Checksums-Sha256': ' aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7 280 testdeb_0.0.0.orig.tar.gz\n 1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858 232 testdeb_0.0.0-1.debian.tar.xz\n b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a 841 testdeb_0.0.0.dsc',
     'Files': ' 142ca7334ed1f70302b4504566e0c233 280 testdeb_0.0.0.orig.tar.gz\n fc80e6e7f1c1a08b78a674aaee6c1548 232 testdeb_0.0.0-1.debian.tar.xz\n 893d13a2ef13f7409c9521e8ab1dbccb 841 testdeb_0.0.0.dsc',
     'Format': '3.0 (quilt)',
     'Homepage': 'https://github.com/TheClimateCorporation',
     'Maintainer': 'Nathan J. Mehl <n@climate.com>',
     'Package-List': 'testdeb',
     'Source': 'testdeb',
     'Standards-Version': '3.9.6',
     'Uploaders': 'Nathan J. Mehl <n@climate.com>',
     'Version': '0.0.0-1'}

#### Interact directly with the dsc message

    >>> dsc.message
    <email.message.Message instance at 0x106fedea8>
    >>> dsc.message.get_content_type()
    'text/plain'
    >>> dsc.message.get('uploaders')
    'Nathan J. Mehl <n@climate.com>'

#### Render the dsc message as a string

    >>> print(dsc)
    Format: 3.0 (quilt)
    Source: testdeb
    Binary: testdeb
    Architecture: all
    Version: 0.0.0-1
    Maintainer: Nathan J. Mehl <n@climate.com>
    Uploaders: Nathan J. Mehl <n@climate.com>
    Homepage: https://github.com/TheClimateCorporation
    Standards-Version: 3.9.6
    Build-Depends: python (>= 2.6.6-3), debhelper (>= 9)
    Package-List: testdeb
    Checksums-Sha1:
     f250ac0a426b31df24fc2c98050f4fab90e456cd 280 testdeb_0.0.0.orig.tar.gz
     cb3474ff94053018957ebcf1d8a2b45f75dda449 232 testdeb_0.0.0-1.debian.tar.xz
     80cd7b01014a269d445c63b037b885d6002cf533 841 testdeb_0.0.0.dsc
    Checksums-Sha256:
     aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7 280 testdeb_0.0.0.orig.tar.gz
     1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858 232 testdeb_0.0.0-1.debian.tar.xz
     b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a 841 testdeb_0.0.0.dsc
    Files:
     142ca7334ed1f70302b4504566e0c233 280 testdeb_0.0.0.orig.tar.gz
     fc80e6e7f1c1a08b78a674aaee6c1548 232 testdeb_0.0.0-1.debian.tar.xz
     893d13a2ef13f7409c9521e8ab1dbccb 841 testdeb_0.0.0.dsc

#### List the package source files from the dsc

    >>> dsc.source_files
    ['/tmp/testdeb_0.0.0.orig.tar.gz',
     '/tmp/testdeb_0.0.0-1.debian.tar.xz',
     '/tmp/testdeb_0.0.0.dsc' ]

#### Validate that the package source files are present

    >>> dsc.missing_files
    []
    >>> dsc.all_files_present
    True
    >>> dsc.validate()
    >>>

    >>> bad = Dsc('testdeb_1.1.1-bad.dsc')
    >>> bad.missing_files
    ['/tmp/testdeb_1.1.1.orig.tar.gz', '/tmp/testdeb_1.1.1-1.debian.tar.xz']
    >>> bad.all_files_present
    False
    >>> bad.validate()
    pydpkg.DscMissingFileError: ['/tmp/testdeb_1.1.1.orig.tar.gz', '/tmp/testdeb_1.1.1-1.debian.tar.xz']

#### Inspect the source file checksums from the dsc

    >>> pp(dsc.checksums)
    {'md5': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'fc80e6e7f1c1a08b78a674aaee6c1548',
             '/tmp/testdeb_0.0.0.dsc': '893d13a2ef13f7409c9521e8ab1dbccb',
             '/tmp/testdeb_0.0.0.orig.tar.gz': '142ca7334ed1f70302b4504566e0c233'},
     'sha1': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449',
              '/tmp/testdeb_0.0.0.dsc': '80cd7b01014a269d445c63b037b885d6002cf533',
              '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'},
     'sha256': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858',
                '/tmp/testdeb_0.0.0.dsc': 'b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a',
                '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}}

#### Validate that all source file checksums are correct

    >>> dsc.corrected_checksums
    {}
    >>> dsc.all_checksums_correct
    True
    >>> dsc.validate()
    >>>

    >>> bad = Dsc('testdeb_0.0.0-badchecksums.dsc')
    >>> bad.corrected_checksums
    {'sha256': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858', '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}), 'sha1': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449', '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'})}
    >>> bad.all_checksums_correct
    False
    >>> bad.validate()
    pydpkg.DscBadChecksumsError: {'sha256': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858', '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}), 'sha1': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449', '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'})}

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/memory/python-dpkg",
    "name": "pydpkg",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "apt, debian, dpkg, packaging",
    "author": "Nathan J. Mehl",
    "author_email": "pypi@memory.blank.org",
    "download_url": "https://files.pythonhosted.org/packages/d4/83/61f1b43958a17af79f69865e39f5475c72ab7c6a6aa05e08d9687b3ee99a/pydpkg-1.9.3.tar.gz",
    "platform": null,
    "description": "# python-dpkg\n\nThis library can be used to:\n\n1. read and extract control data from Debian-format package files, even\n   on platforms that generally lack a native implementation of dpkg\n\n2. compare dpkg version strings, using a pure Python implementation of\n   the algorithm described in section 5.6.12 of the debian-policy manual:\n   https://www.debian.org/doc/debian-policy/ch-controlfields.html#version\n\n3. Parse debian source description (dsc) files, inspect their contents\n   and verify that their source files are present and checksums are\n   correct.\n\nThis is primarily intended for use on platforms that do not normally\nship [python-apt](http://apt.alioth.debian.org/python-apt-doc/) due to\nlicensing restrictions or the lack of a native libapt.so (e.g. macOS)\n\nCurrently only tested on CPython 3.x, but at least in theory should run\non any python distribution that can install the [arpy](https://pypi.python.org/pypi/arpy/)\nlibrary.\n\nNote: python 2.7 compatibility was removed in version 1.4.0 and the v1.3\nbranch is no longer being maintained. This means that among other issues,\nsupport for zstandard-compressed deb packages will not be available on\npy27 -- consider this impetus to upgrade if you have not already.\n\n## Installing\n\nInstall the 'pydpkg' package from [PyPi](https://pypi.python.org) using\nthe [pip](https://packaging.python.org/installing/) tool:\n\n    $ pip install pydpkg\n    Collecting pydpkg\n      Downloading pydpkg-1.1-py2-none-any.whl\n      Installing collected packages: pydpkg\n      Successfully installed pydpkg-1.1\n\n## Developing\n\npython-dpkg uses [Poetry](https://python-poetry.org/) to manage its dependencies.\n\nThe [Makefile](Makefile) will attempt to set up a reasonable build/test\nenvironment on both macOS/Darwin and more traditional unixes (linux, freebsd,\netc), but relies on the existence of [pyenv](https://github.com/pyenv/pyenv),\n[pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) everywhere and\n[Homebrew](https://brew.sh) on macOS.  You don't _need_ to use the workflow\nthat the makefile enforces (modern versions of [pip](https://pypi.org/project/pip/)\nwill happily digest `pyproject.toml` files and you can run the test commands\nmanually) but please ensure all tests pass before submitting PRs.\n\n## Usage\n\n### Binary Packages\n\n#### Read and extract headers\n\n    >>> from pydpkg import Dpkg\n    >>> dp = Dpkg('/tmp/testdeb_1:0.0.0-test_all.deb')\n\n    >>> dp.headers\n    {'maintainer': u'Climate Corp Engineering <no-reply@climate.com>', 'description': u'testdeb\\n a bogus debian package for testing dpkg builds', 'package': u'testdeb', 'section': u'base', 'priority': u'extra', 'installed-size': u'0', 'version': u'1:0.0.0-test', 'architecture': u'all'}\n\n    >>> print(dp)\n    Package: testdeb\n    Version: 1:0.0.0-test\n    Section: base\n    Priority: extra\n    Architecture: all\n    Installed-Size: 0\n    Maintainer: Climate Corp Engineering <no-reply@climate.com>\n    Description: testdeb\n     a bogus debian package for testing dpkg builds\n\n#### Interact directly with the package control message\n\n    >>> dp.message\n    <email.message.Message instance at 0x10895c6c8>\n    >>> dp.message.get_content_type()\n    'text/plain'\n\n#### Get package file fingerprints\n\n    >>> dp.fileinfo\n    {'sha256': '547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f', 'sha1': 'a5d28ae2f23e726a797349d7dd5f21baf8aa02b4', 'filesize': 910, 'md5': '149e61536a9fe36374732ec95cf7945d'}\n    >>> dp.md5\n    '149e61536a9fe36374732ec95cf7945d'\n    >>> dp.sha1\n    'a5d28ae2f23e726a797349d7dd5f21baf8aa02b4'\n    >>> dp.sha256\n    '547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f'\n    >>> dp.filesize\n    910\n\n#### Get the components of the package version\n\n    >>> d.epoch\n    1\n    >>> d.upstream_version\n    u'0.0.0'\n    >>> d.debian_revision\n    u'test'\n\n#### Get an arbitrary control header, case-independent\n\n    >>> d.version\n    u'1:0.0.0-test'\n    \n    >>> d.VERSION\n    u'1:0.0.0-test'\n    \n    >>> d.description\n    u'testdeb\\n a bogus debian package for testing dpkg builds'\n    \n    >>> d.get('nosuchheader', 'default')\n    'default'\n\n#### Compare current version to a candidate version\n\n    >>> dp.compare_version_with('1.0')\n    1\n\n    >>> dp.compare_version_with('1:1.0')\n    -1\n\n#### Compare two arbitrary version strings\n\n    >>> from pydpkg import Dpkg\n    >>> ver_1 = '0:1.0-test1'\n    >>> ver_2 = '0:1.0-test2'\n    >>> Dpkg.compare_versions(ver_1, ver_2)\n    -1\n\n#### Use as a key function to sort a list of version strings\n\n    >>> from pydpkg import Dpkg\n    >>> sorted(['0:1.0-test1', '1:0.0-test0', '0:1.0-test2'] , key=Dpkg.compare_versions_key)\n    ['0:1.0-test1', '0:1.0-test2', '1:0.0-test0']\n\n#### Use the `dpkg-inspect` script to inspect packages\n\n    $ dpkg-inspect ~/testdeb*deb\n    Filename: /Home/n/testdeb_1:0.0.0-test_all.deb\n    Size:     910\n    MD5:      149e61536a9fe36374732ec95cf7945d\n    SHA1:     a5d28ae2f23e726a797349d7dd5f21baf8aa02b4\n    SHA256:   547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f\n    Headers:\n      Package: testdeb\n      Version: 1:0.0.0-test\n      Section: base\n      Priority: extra\n      Architecture: all\n      Installed-Size: 0\n      Maintainer: Nathan Mehl <n@climate.com>\n      Description: testdeb\n       a bogus debian package for testing dpkg builds\n\n### Source Packages\n\n#### Read and extract headers\n\n    >>> from pydpkg import Dsc\n    >>> dsc = Dsc('testdeb_0.0.0.dsc')\n    >>> dsc.standards_version\n    '3.9.6'\n    >>> dsc.format\n    '3.0 (quilt)'\n    >>> x.build_depends\n    'python (>= 2.6.6-3), debhelper (>= 9)'\n\n#### Get the full set of dsc headers as a dictionary\n\n    >>> dsc.headers\n    {'Architecture': 'all',\n     'Binary': 'testdeb',\n     'Build-Depends': 'python (>= 2.6.6-3), debhelper (>= 9)',\n     'Checksums-Sha1': ' f250ac0a426b31df24fc2c98050f4fab90e456cd 280 testdeb_0.0.0.orig.tar.gz\\n cb3474ff94053018957ebcf1d8a2b45f75dda449 232 testdeb_0.0.0-1.debian.tar.xz\\n 80cd7b01014a269d445c63b037b885d6002cf533 841 testdeb_0.0.0.dsc',\n     'Checksums-Sha256': ' aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7 280 testdeb_0.0.0.orig.tar.gz\\n 1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858 232 testdeb_0.0.0-1.debian.tar.xz\\n b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a 841 testdeb_0.0.0.dsc',\n     'Files': ' 142ca7334ed1f70302b4504566e0c233 280 testdeb_0.0.0.orig.tar.gz\\n fc80e6e7f1c1a08b78a674aaee6c1548 232 testdeb_0.0.0-1.debian.tar.xz\\n 893d13a2ef13f7409c9521e8ab1dbccb 841 testdeb_0.0.0.dsc',\n     'Format': '3.0 (quilt)',\n     'Homepage': 'https://github.com/TheClimateCorporation',\n     'Maintainer': 'Nathan J. Mehl <n@climate.com>',\n     'Package-List': 'testdeb',\n     'Source': 'testdeb',\n     'Standards-Version': '3.9.6',\n     'Uploaders': 'Nathan J. Mehl <n@climate.com>',\n     'Version': '0.0.0-1'}\n\n#### Interact directly with the dsc message\n\n    >>> dsc.message\n    <email.message.Message instance at 0x106fedea8>\n    >>> dsc.message.get_content_type()\n    'text/plain'\n    >>> dsc.message.get('uploaders')\n    'Nathan J. Mehl <n@climate.com>'\n\n#### Render the dsc message as a string\n\n    >>> print(dsc)\n    Format: 3.0 (quilt)\n    Source: testdeb\n    Binary: testdeb\n    Architecture: all\n    Version: 0.0.0-1\n    Maintainer: Nathan J. Mehl <n@climate.com>\n    Uploaders: Nathan J. Mehl <n@climate.com>\n    Homepage: https://github.com/TheClimateCorporation\n    Standards-Version: 3.9.6\n    Build-Depends: python (>= 2.6.6-3), debhelper (>= 9)\n    Package-List: testdeb\n    Checksums-Sha1:\n     f250ac0a426b31df24fc2c98050f4fab90e456cd 280 testdeb_0.0.0.orig.tar.gz\n     cb3474ff94053018957ebcf1d8a2b45f75dda449 232 testdeb_0.0.0-1.debian.tar.xz\n     80cd7b01014a269d445c63b037b885d6002cf533 841 testdeb_0.0.0.dsc\n    Checksums-Sha256:\n     aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7 280 testdeb_0.0.0.orig.tar.gz\n     1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858 232 testdeb_0.0.0-1.debian.tar.xz\n     b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a 841 testdeb_0.0.0.dsc\n    Files:\n     142ca7334ed1f70302b4504566e0c233 280 testdeb_0.0.0.orig.tar.gz\n     fc80e6e7f1c1a08b78a674aaee6c1548 232 testdeb_0.0.0-1.debian.tar.xz\n     893d13a2ef13f7409c9521e8ab1dbccb 841 testdeb_0.0.0.dsc\n\n#### List the package source files from the dsc\n\n    >>> dsc.source_files\n    ['/tmp/testdeb_0.0.0.orig.tar.gz',\n     '/tmp/testdeb_0.0.0-1.debian.tar.xz',\n     '/tmp/testdeb_0.0.0.dsc' ]\n\n#### Validate that the package source files are present\n\n    >>> dsc.missing_files\n    []\n    >>> dsc.all_files_present\n    True\n    >>> dsc.validate()\n    >>>\n\n    >>> bad = Dsc('testdeb_1.1.1-bad.dsc')\n    >>> bad.missing_files\n    ['/tmp/testdeb_1.1.1.orig.tar.gz', '/tmp/testdeb_1.1.1-1.debian.tar.xz']\n    >>> bad.all_files_present\n    False\n    >>> bad.validate()\n    pydpkg.DscMissingFileError: ['/tmp/testdeb_1.1.1.orig.tar.gz', '/tmp/testdeb_1.1.1-1.debian.tar.xz']\n\n#### Inspect the source file checksums from the dsc\n\n    >>> pp(dsc.checksums)\n    {'md5': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'fc80e6e7f1c1a08b78a674aaee6c1548',\n             '/tmp/testdeb_0.0.0.dsc': '893d13a2ef13f7409c9521e8ab1dbccb',\n             '/tmp/testdeb_0.0.0.orig.tar.gz': '142ca7334ed1f70302b4504566e0c233'},\n     'sha1': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449',\n              '/tmp/testdeb_0.0.0.dsc': '80cd7b01014a269d445c63b037b885d6002cf533',\n              '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'},\n     'sha256': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858',\n                '/tmp/testdeb_0.0.0.dsc': 'b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a',\n                '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}}\n\n#### Validate that all source file checksums are correct\n\n    >>> dsc.corrected_checksums\n    {}\n    >>> dsc.all_checksums_correct\n    True\n    >>> dsc.validate()\n    >>>\n\n    >>> bad = Dsc('testdeb_0.0.0-badchecksums.dsc')\n    >>> bad.corrected_checksums\n    {'sha256': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858', '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}), 'sha1': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449', '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'})}\n    >>> bad.all_checksums_correct\n    False\n    >>> bad.validate()\n    pydpkg.DscBadChecksumsError: {'sha256': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858', '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}), 'sha1': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449', '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'})}\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A python library for parsing debian package control headers and version strings",
    "version": "1.9.3",
    "project_urls": {
        "Homepage": "https://github.com/memory/python-dpkg",
        "Repository": "https://github.com/memory/python-dpkg.git"
    },
    "split_keywords": [
        "apt",
        " debian",
        " dpkg",
        " packaging"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebc10505c268c9cb52335580bea7bf71a0c787f7c1a75c75c15b63ac5bd4ec28",
                "md5": "5573e9d234c45b8342f0d96e36855666",
                "sha256": "8bd8d61db557397cbcb11707328b1670a1f71c3257c35a35257fbd8da8e35143"
            },
            "downloads": -1,
            "filename": "pydpkg-1.9.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5573e9d234c45b8342f0d96e36855666",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 15593,
            "upload_time": "2024-03-31T17:12:35",
            "upload_time_iso_8601": "2024-03-31T17:12:35.742100Z",
            "url": "https://files.pythonhosted.org/packages/eb/c1/0505c268c9cb52335580bea7bf71a0c787f7c1a75c75c15b63ac5bd4ec28/pydpkg-1.9.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d48361f1b43958a17af79f69865e39f5475c72ab7c6a6aa05e08d9687b3ee99a",
                "md5": "4adfa421ee0e84e9a5fd94cab99e698c",
                "sha256": "a811d3e77641b945f185db9a6af03cf47ed95b96b48a19b8d857a2381a8ae941"
            },
            "downloads": -1,
            "filename": "pydpkg-1.9.3.tar.gz",
            "has_sig": false,
            "md5_digest": "4adfa421ee0e84e9a5fd94cab99e698c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 16897,
            "upload_time": "2024-03-31T17:12:38",
            "upload_time_iso_8601": "2024-03-31T17:12:38.147096Z",
            "url": "https://files.pythonhosted.org/packages/d4/83/61f1b43958a17af79f69865e39f5475c72ab7c6a6aa05e08d9687b3ee99a/pydpkg-1.9.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-31 17:12:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "memory",
    "github_project": "python-dpkg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pydpkg"
}
        
Elapsed time: 0.22136s