Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | prepare 1.0.1 release | Michael Vogt | 2014-04-10 | 1 | -0/+21 |
| | |||||
* | Add versioned openjdk-6-jdk breaks | Julian Andres Klode | 2014-04-07 | 1 | -2/+2 |
| | | | | | This helps if people did unclean upgrades from squeeze, namely to jessie directly. | ||||
* | Version the Breaks/Replaces for sun-java{5,6}-jdk (LP: #1302736) | Julian Andres Klode | 2014-04-07 | 1 | -2/+2 |
| | | | | | | | This is a *hack* to work around unofficial packages for Java 7 and 8 that wrongly provide the Java 5 and 6 packages. Closes: #743616 | ||||
* | releasing package apt version 1.0 | Michael Vogt | 2014-04-01 | 1 | -0/+47 |
| | |||||
* | add sun-java{5,6}-jdk to breaks/replaces as that provided a "apt" binary as well | Michael Vogt | 2014-04-01 | 1 | -2/+2 |
| | |||||
* | install "apt" binary by default | Michael Vogt | 2014-04-01 | 1 | -0/+1 |
| | |||||
* | debian: Add default compress option to xz | Trần Ngọc Quân | 2014-04-01 | 1 | -0/+2 |
| | | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com> | ||||
* | Merge remote-tracking branch 'upstream/debian/sid' into debian/sid | Michael Vogt | 2014-03-27 | 4 | -45/+42 |
|\ | |||||
| * | update symbols file to include new symbols from 0.9.16 | David Kalnischkies | 2014-03-23 | 1 | -0/+8 |
| | | |||||
| * | mark optional (private) symbols as hidden | David Kalnischkies | 2014-03-21 | 1 | -40/+19 |
| | | | | | | | | | | | | | | | | This methods should not be used by anyone expect the library itself as they are helpers for the specific class and therefore perfect candidates for hidding. Git-Dch: Ignore | ||||
| * | correct some reported typos in /etc/cron.daily/apt | David Kalnischkies | 2014-03-21 | 1 | -4/+4 |
| | | | | | | | | | | | | Closes: 702016 Reported-By: Mason Loring Bliss <mason@blisses.org>, Jakub Wilk <jwilk@debian.org> | ||||
| * | only consider versioned kernel packages in autoremove | David Kalnischkies | 2014-03-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Metapackages like "linux-image-amd64" are otherwise matched by our extraction as well, which later on can't be successfully compared via dpkg --compare-versions as the 'amd64' bit isn't a version number. (Luckily none of our architectures starts with a digit.) This was broken by me in 0.9.16 as I moved a shell-glob matcher to a regex-based one which has slightly different semantics regarding '*'. Closes: 741962 | ||||
| * | Release 0.9.16.1 | Julian Andres Klode | 2014-03-15 | 1 | -0/+10 |
| | | |||||
* | | fix documentation for APT::Periodic::MaxSize "0" (closes: #740551) | Michael Vogt | 2014-03-27 | 1 | -1/+1 |
|/ | |||||
* | prepare 0.9.16 release | Michael Vogt | 2014-03-14 | 1 | -0/+37 |
| | |||||
* | use liblzma-dev to provide xz/lzma support | David Kalnischkies | 2014-03-13 | 1 | -4/+4 |
| | | | | | | | | | | | | We have xz/lzma support for a while, but only via an external binary provided by xz-utils. Now that the Debian archive provides xz by default and dpkg pre-depends on the library provided by liblzma-dev we can switch now to use this library as well to avoid requiring an external binary. For now the binary is in a prio:required package, but this might change in the future. API wise it is quiet similar to bz2 code expect that it doesn't provide file I/O methods, so we piece this together on our own. | ||||
* | correct LD_LIBRARY_PATH and config loading for apt-helper | David Kalnischkies | 2014-03-13 | 1 | -0/+1 |
| | | | | | | | Mostly ensures that we use the build methods and not the system provided methods in the tests (if we don't want it that way). Git-Dch: Ignore | ||||
* | ensure that a dot is a dot in the hook | David Kalnischkies | 2014-03-13 | 1 | -5/+2 |
| | | | | | | As we deal with regex matchers here the dots are treated as wildcards if we don't take care of escaping them. Not very likely that this could be a real-world problem, but just to be sure. | ||||
* | add ".*-{kernel,modules}-$KERVER" matcher for hook | David Kalnischkies | 2014-03-13 | 1 | -1/+7 |
| | | | | | | Pre-build kernel modules (like those build with module-assistent) are commonly named in this way and it should be ungeneric enough to be added by default for everyone. | ||||
* | support kfreebsd and hurd in the kernel hook | David Kalnischkies | 2014-03-13 | 2 | -15/+9 |
| | | | | | | kfreebsd as well as hurd kernel packages call the postinst script as well so we just need to enable the correct parsing for installed packages and disable the "protect every version" hammer for them. | ||||
* | use a configurable list of versioned kernel packages | David Kalnischkies | 2014-03-13 | 2 | -10/+20 |
| | | | | | | With APT::VersionedKernelPackages users have the option of adding packages like pre-build out-of-tree modules to the list of automatically protected from being autoremoved. | ||||
* | warning: no previous declaration for foobar() [-Wmissing-declarations] | David Kalnischkies | 2014-03-13 | 1 | -1/+0 |
| | | | | | Git-Dch: Ignore Reported-By: gcc -Wmissing-declarations | ||||
* | unset LANGUAGE in the testing framework directly | David Kalnischkies | 2014-03-13 | 1 | -3/+0 |
| | | | | Git-Dch: Ignore | ||||
* | support DEB_BUILD_PROFILES and -P for build profiles | David Kalnischkies | 2014-03-13 | 1 | -1/+1 |
| | | | | | | | | | | Inspired by the rest of the patch in 661537, but abstract the parsing of various ways of setting the build profiles more so it can potentially be reused and all apt parts have the same behaviour. Especially config options, cmdline options and environment will not be combined as proposed as this isn't APTs usual behaviour and dpkg doesn't do it either, so one overrides the other as it normally does. | ||||
* | Promote xz-utils from apt Suggests to libapt-pkg Depends | Julian Andres Klode | 2014-03-12 | 1 | -2/+2 |
| | | | | | | libapt-pkg depends on the other compressors, and now that xz is the default in many cases, it should depend on that one as well. | ||||
* | releasing package apt version 0.9.15.5 | Michael Vogt | 2014-02-28 | 1 | -0/+12 |
| | |||||
* | initial version of apt-helper | Michael Vogt | 2014-02-27 | 2 | -0/+4 |
| | |||||
* | Bug#739988: Fix autopkgtest missing dependencies and locale | Martin Pitt | 2014-02-25 | 2 | -1/+4 |
| | | | | | | | | debian/tests/control: Add missing build-essential, fakeroot, and wget test dependencies. debian/tests/run-tests: Pin locale to C to avoid test failures in other locales. | ||||
* | releasing package apt version 0.9.15.4 | Michael Vogt | 2014-02-23 | 1 | -2/+11 |
| | |||||
* | add missing libdb-dev to debian/tests/control | Michael Vogt | 2014-02-22 | 1 | -1/+1 |
| | |||||
* | debian: Add debDebFile::ExtractTarMember to the symbols file | Guillem Jover | 2014-02-22 | 1 | -0/+1 |
| | |||||
* | Fix typos in documentation (codespell) | Michael Vogt | 2014-02-22 | 2 | -2/+6 |
| | |||||
* | remove auto-generated apt-key and sources.list on clean (closes: 739749) | Michael Vogt | 2014-02-22 | 1 | -0/+6 |
| | |||||
* | releasing package apt version 0.9.15.3 | Michael Vogt | 2014-02-20 | 1 | -2/+2 |
| | |||||
* | prepare release | Michael Vogt | 2014-02-20 | 1 | -0/+23 |
| | |||||
* | update symbols file with hints from the buildlogs | David Kalnischkies | 2014-02-14 | 1 | -14/+27 |
| | |||||
* | do not compress .xhtml files and remove junk files | David Kalnischkies | 2014-02-14 | 1 | -1/+2 |
| | | | | | | | | | dh_compress compresses .xhtml files by default, which breaks our doxygen documentation. doxygen has also a bunch of temporary files it creates which stay in the build directory and so we remove them before installing them as documentation. Closes: 738933 | ||||
* | use "Restrictions: allow-stderr and avoid apt-stderr.log in ↵ | Michael Vogt | 2014-02-13 | 2 | -5/+3 |
| | | | | debian/tests/run-tests | ||||
* | releasing package apt version 0.9.15.2 | Michael Vogt | 2014-02-13 | 1 | -0/+24 |
| | |||||
* | remove duplication in pkgCdrom::Add and ::Ident | David Kalnischkies | 2014-02-12 | 1 | -0/+1 |
| | | | | Git-Dch: Ignore | ||||
* | bump Standards-Version to 3.9.5 (no changes needed) | David Kalnischkies | 2014-02-10 | 1 | -1/+1 |
| | |||||
* | update libapt-pkg.symbols file | David Kalnischkies | 2014-02-10 | 1 | -2/+18 |
| | |||||
* | releasing package apt version 0.9.15.1 | Michael Vogt | 2014-02-06 | 1 | -0/+26 |
| | |||||
* | Merge remote-tracking branch 'donkult/debian/sid' into debian/sid | Michael Vogt | 2014-01-26 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | Conflicts: apt-private/private-list.cc doc/po/de.po test/integration/framework | ||||
| * | use svg in doxygen and ensure dot is around for it | David Kalnischkies | 2014-01-25 | 1 | -1/+1 |
| | | |||||
| * | debian/rules: Call dh_makeshlibs for 'apt' | Julian Andres Klode | 2014-01-05 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | The package ships libapt-private now, so we need an ldconfig call in postinst. dh_makeshlibs creates one for us. Reported-by: lintian | ||||
* | | releasing package apt version 0.9.15 | Michael Vogt | 2014-01-25 | 1 | -0/+6 |
| | | |||||
* | | releasing package apt version 0.9.14.3~exp5 | Michael Vogt | 2014-01-24 | 1 | -0/+14 |
| | | |||||
* | | releasing package apt version 0.9.14.3~exp4 | Michael Vogt | 2014-01-22 | 1 | -0/+12 |
| | | |||||
* | | releasing package apt version 0.9.14.3~exp3 | Michael Vogt | 2014-01-18 | 1 | -2/+2 |
| | |