Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-10 | deprecate the Section member from package struct | David Kalnischkies | |
A version belongs to a section and has hence a section member of its own. A package on the other hand can have multiple versions from different sections. This was "solved" by using the section which was parsed first as order of sources.list defines, but that is obviously a horribly unpredictable thing. Users are way better of with the Section() as returned by the version they are dealing with. It is likely the same for all versions of a package, but in the few cases it isn't, it is important (like packages moving from main/* to contrib/* or into oldlibs …). Backport of 7a66977 which actually instantly removes the member. | |||
2014-03-13 | cleanup headers and especially #includes everywhere | David Kalnischkies | |
Beside being a bit cleaner it hopefully also resolves oddball problems I have with high levels of parallel jobs. Git-Dch: Ignore Reported-By: iwyu (include-what-you-use) | |||
2014-03-13 | warning: extra ‘;’ [-Wpedantic] | David Kalnischkies | |
Git-Dch: Ignore Reported-By: gcc -Wpedantic | |||
2014-03-13 | make doxygen more quiet, fix issues and disable latex | David Kalnischkies | |
Git-Dch: Ignore | |||
2014-02-14 | add missing canNotFindFnmatch/showFnmatchSelection (for the next ABI break) | Michael Vogt | |
2013-08-12 | squash merge of the feature/apt-binary branch without the changes from ↵ | Michael Vogt | |
experimental | |||
2013-07-23 | remove double list include | Michael Vogt | |
2012-06-14 | * apt-pkg/cacheset.cc: | David Kalnischkies | |
- add PackageContainerInterface::FromGroup to support architecture specifications with wildcards on the commandline | |||
2012-04-17 | newer gcc versions seems to have no problem with that, but while working | David Kalnischkies | |
with g++-4.1 it complains about this so lets be extra clear | |||
2012-02-11 | correctly ignore already (un)hold packages | David Kalnischkies | |
2011-12-13 | revert 2184.1.3: forward declaration instead of headers | David Kalnischkies | |
The breakage is just to big for now, so guard the change with #ifndef APT_8_CLEANER_HEADERS and be nice to library users | |||
2011-11-22 | fix the operator++ implementations in the cachesets | David Kalnischkies | |
2011-11-11 | - provide a {Package,Version}List similar to {Package,Version}Set | David Kalnischkies | |
* cmdline/apt-{get,cache,mark}.cc: - use Lists instead of Sets if input order should be preserved for commands accepting lists of packages, e.g. policy (Closes: #625960) | |||
2011-11-09 | * apt-pkg/cacheset.cc: | David Kalnischkies | |
- make the cachesets real containers which can embedding any container to be able to use the same interface regardless of set or list usage | |||
2011-09-19 | use forward declaration in headers if possible instead of includes | David Kalnischkies | |
2011-05-17 | remove deprecated methods which nobody should have used anyway like | David Kalnischkies | |
pseudo-package related and/or private | |||
2011-04-16 | remove the extra unnecessary qualification cppcheck complains about | David Kalnischkies | |
2011-03-08 | Remove the "pseudopackage" handling of Architecture: all packages for | David Kalnischkies | |
Multi-Arch; instead, Arch: all packages only satisfy dependencies for the native arch, except where the Arch: all package is declared Multi-Arch: foreign. (Closes: #613584) This has the sideeffect that arch:all packages internally show up as coming from the native arch - so packages with the architecture "all" doesn't exist any longer in the pkgcache | |||
2010-07-30 | - [ABI BREAK] add an ErrorType option to CacheSetHelper | David Kalnischkies | |
* cmdline/apt-cache.cc: - use Notice instead of Error in the CacheSetHelper messages for compat reasons. Otherwise tools like sbuild blow up | |||
2010-07-17 | * apt-pkg/cacheset.cc: | David Kalnischkies | |
- move them back to the library as they look stable now | |||
2010-06-15 | * cmdline/cacheset.cc: | David Kalnischkies | |
- doesn't include it in the library for now as it is too volatile | |||
2010-06-15 | Add a GroupedFromCommandLine for the VersionSet similar to the | David Kalnischkies | |
one for PackageSet and refactor the existing VersionSet methods to simplify that. | |||
2010-06-09 | remove the "typename" from the const_iterators as gcc-4.4 doesn't like | David Kalnischkies | |
them and gcc-4.5 does the right thing (TM) with and without them | |||
2010-06-06 | add a GroupedFromCommandLine method to the PackageSet to split the | David Kalnischkies | |
packages on the commandline into groups based on modifiers | |||
2010-06-05 | support special release-modifier 'installed' and 'candidate' | David Kalnischkies | |
2010-06-05 | handle :arch modifier in PackageSet::FromString correctly | David Kalnischkies | |
2010-06-05 | do not insert end() Iterators into the CacheSet even if requested | David Kalnischkies | |
2010-06-05 | Add a method to get a VersionSet from the Commandline and refactor | David Kalnischkies | |
the existing methods a bit to reuse them easier intern | |||
2010-05-31 | * apt-pkg/cacheset.{cc,h}: | David Kalnischkies | |
- add simple wrapper around std::set for cache structures | |||
2010-05-31 | rename packageset into cacheset while it is not too late | David Kalnischkies | |