Skip to content

Releases: srossross/rpmfile

2.0.0

09 Nov 22:50
Compare
Choose a tag to compare

What's Changed

  • ci: release: Workaround for secrets not available in conditionals by @pdxjohnny in #42
  • Store only one version of i18n strings by @boiko in #45
  • Fix rpmfile fails to load localized RPM headers by @MarsCapone in #46

New Contributors

  • @boiko made their first contribution in #45

Full Changelog: 1.1.1...2.0.0

1.1.1

20 Mar 18:25
742dd07
Compare
Choose a tag to compare
ci: release: Use checkout

1.1.0

20 Mar 18:18
91dad45
Compare
Choose a tag to compare

bz2 support, thank you @OneMoreByte!

1.0.8

06 Jan 21:18
Compare
Choose a tag to compare

If a CPIO archive contained an entry for a directory we attempted to
identify it via nlinks. Since it should have at least two nlinks if it's a
directory.

However, We stumbled across a case where this is not true. By using
the mode bits we should be able to correctly identify directories without
relying on nlinks. We're now using mode bits.

1.0.7

04 Jan 22:40
Compare
Choose a tag to compare

Use setup.cfg and setuptools_scm for version

1.0.6

25 Nov 18:26
Compare
Choose a tag to compare

For the command line interface, only print file paths when extracting if -v/--verbose is given

1.0.5

19 Nov 23:13
Compare
Choose a tag to compare

Extract rpm files from the command line

You can use rpmfile via it's module invocation or via rpmfile command if
your PATH environment variable is configured correctly. Pass --help for all
options.

List RPM contents

curl -sfL 'https://example.com/some.rpm.gz' | gzip -d - | python -m rpmfile -l -
./path/to/file

Extract files

curl -sfL 'https://example.com/some.rpm.gz' | gzip -d - | rpmfile -x -
./path/to/file

Extract files to directory

curl -sfL 'https://example.com/some.rpm.gz' | gzip -d - | rpmfile -xC /tmp -
/tmp/path/to/file

1.0.4

18 Nov 16:35
Compare
Choose a tag to compare

Include LICENSE in sdist.

Fix 404ing URL in the tests.

1.0.3

18 Nov 16:34
13b6e01
Compare
Choose a tag to compare

headers: Add more tags

According to http://ftp.rpm.org/api/4.15.1/rpmtag_8h.html

Related: #32

1.0.2 Release

20 Apr 18:12
Compare
Choose a tag to compare

Support for zstd compressed RPMs