summaryrefslogtreecommitdiff
path: root/cmdline/apt-cache.cc
Commit message (Collapse)AuthorAgeFilesLines
* the previously used VERSION didn't work everywhere so we are switchingDavid Kalnischkies2012-03-221-1/+1
| | | | to the more standard PACKAGE_VERSION and make it work in every file
* * cmdline/apt-cache.cc:David Kalnischkies2012-02-251-1/+1
| | | - correct --pre-depends option by using dash consistently (LP: #940837)
* enable FileFd to guess the compressor based on the filename if requested orDavid Kalnischkies2011-12-101-1/+1
| | | | | to search for compressed silbings of the given filename and use this guessing instead of hardcoding Gzip compression
* - provide a {Package,Version}List similar to {Package,Version}SetDavid Kalnischkies2011-11-111-14/+14
| | | | | * 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)
* * apt-pkg/cacheset.cc:David Kalnischkies2011-11-091-4/+4
| | | | - make the cachesets real containers which can embedding any container to be able to use the same interface regardless of set or list usage
* use forward declaration in headers if possible instead of includesDavid Kalnischkies2011-09-191-1/+5
|
* merge with debian/experimentalDavid Kalnischkies2011-09-131-52/+52
|\
| * cppcheck complains about some possible speed improvements which could beDavid Kalnischkies2011-08-111-52/+52
| | | | | | | | | | | | done on the mirco-optimazation level, so lets fix them: (performance) Possible inefficient checking for emptiness. (performance) Prefer prefix ++/-- operators for non-primitive types.
* | reorder includes: add <config.h> if needed and include it at firstDavid Kalnischkies2011-09-131-5/+5
|/
* convert a lot of places to use IsNegative instead of checking by handDavid Kalnischkies2011-05-111-10/+4
| | | | for the three different dependencies
* * cmdline/apt-get.cc:David Kalnischkies2011-04-211-4/+3
| | | | | - deprecate mostly undocumented 'markauto' in favor of 'apt-mark' * cmdline/apt-cache.cc: - deprecate mostly undocumented 'showauto' in favor of 'apt-mark'
* fix a bunch of cppcheck warnings/errors based on a patch byDavid Kalnischkies2011-04-161-0/+3
| | | Niels Thykier, thanks! (Closes: #622805)
* Remove the "pseudopackage" handling of Architecture: all packages forDavid Kalnischkies2011-03-081-9/+1
| | | | | | | | | 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
* * cmdline/apt-cache.cc:David Kalnischkies2011-02-041-57/+2
| | | | | | - remove not implemented 'apt-cache add' command * doc/apt-cache.8.xml: - describe reality as apt-cache just queries and doesn't manipulate the caches. Thanks to Enrico Zini for spotting it! (Closes: #612009)
* cmdline/apt-cache.cc: Create an error for apt-cache dependsJulian Andres Klode2010-12-071-1/+1
| | | if packages could not found (LP: #647045)
* * cmdline/apt-cache.cc:David Kalnischkies2010-09-241-2/+2
| | | | - use the TranslatedDescription for searching and not the first available one as it is maybe not an expected language (Closes: #597925)
* remove useless GetInitialize methodDavid Kalnischkies2010-08-281-11/+0
|
* show in madison command again also source packages (LP: #614589)David Kalnischkies2010-08-251-5/+11
|
* - return success in show if a virtual package was givenDavid Kalnischkies2010-07-301-26/+38
| | | *
* - [ABI BREAK] add an ErrorType option to CacheSetHelperDavid Kalnischkies2010-07-301-8/+16
| | | | | * cmdline/apt-cache.cc: - use Notice instead of Error in the CacheSetHelper messages for compat reasons. Otherwise tools like sbuild blow up
* - show in (r)depends the canidate per default instead of newestDavid Kalnischkies2010-07-261-146/+64
| | | - share the (r)depends code instead of codecopy
* add APT::Cache::ShowOnlyFirstOr option to print only the firstDavid Kalnischkies2010-07-261-2/+10
| | | | alternative in the apt-cache (r)depends commands
* * apt-pkg/cacheset.cc:David Kalnischkies2010-07-171-2/+1
| | | - move them back to the library as they look stable now
* * cmdline/apt-cache.cc:David Kalnischkies2010-07-161-15/+62
| | | - be able to omit dependency types in (r)depends (Closes: #319006)
* [ Martin Pitt ]David Kalnischkies2010-07-111-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * debian/rules: - Make DEB_BUILD_OPTIONS=noopt actually work by passing the right CXXFLAGS. * apt-pkg/contrib/fileutl.{h,cc}: - Add support for reading of gzipped files with the new "ReadOnlyGzip" OpenMode. (Closes: #188407) - Link against zlib (in apt-pkg/makefile) and add zlib build dependency. - [ABI BREAK] This adds a new private member to FileFd, but its initialization is in the public header file. * configure.in: - Check for zlib library and headers. * apt-pkg/acquire-item.cc, apt-pkg/deb/debindexfile.cc, apt-pkg/deb/debrecords.cc, apt-pkg/deb/debsrcrecords.h, cmdline/apt-cache.cc: - Open Packages, Sources, and Translations indexes in "ReadOnlyGzip" mode. * apt-pkg/deb/debindexfile.cc: - If we do not find uncompressed package/source/translation indexes, look for gzip compressed ones. * apt-pkg/acquire-item.cc: - If the Acquire::GzipIndexes option is true and we download a gzipped index file, keep it as it is (and rename to .gz) instead of uncompressing it. * doc/apt.conf.5.xml: - Document the new Acquire::GzipIndexes option. * doc/po/apt-doc.pot, doc/po/de.po: - German translation of new Acquire::GzipIndexes option. * Add test/test-indexes.sh: - Test behaviour of index retrieval and usage, in particular with uncompressed and gzip compressed indexes. * methods/gzip.cc: With FileFd now being able to read gzipped files, there is no need for the gzip method any more to spawn an external gzip process. Rewrite it to use FileFd directly, which makes the code a lot simpler, and also using less memory and overhead.
| * Switch FileFd to not transparently gunzip, since that breaks code which ↵martin@piware.de2010-06-241-1/+1
| | | | | | | | expects the compressed contents to stay (such as the copy backend, or when using file:// repositories. Instead, introduce a new ReadOnlyGzip mode and use that where needed
* | give the APT::Cache::Generate option her effect backDavid Kalnischkies2010-06-261-1/+3
| |
* | do not override the user set quiet setting even if the target is not a ttyDavid Kalnischkies2010-06-261-1/+1
| |
* | print all messages if the application is in an interactive runDavid Kalnischkies2010-06-251-7/+5
| |
* | * cmdline/apt-get.cc:David Kalnischkies2010-06-191-1/+2
| | | | | | - use the cachsets in the install commands
* | use the GroupedFromCommandLine() method in the dotty and xvcg commandDavid Kalnischkies2010-06-061-56/+28
| | | | | | | | to get all the funky features in less lines
* | do not fail if an unrelated error is pending in DisplayRecord()David Kalnischkies2010-06-051-4/+4
| |
* | accept package versions in the unmet commandDavid Kalnischkies2010-06-051-23/+34
| |
* | apt-cache show --no-all-versions should issues the CandidateDavid Kalnischkies2010-06-051-1/+1
| |
* | Don't increase the commandline parameter in the library but in theDavid Kalnischkies2010-06-051-6/+6
| | | | | | | | application to be really generic.
* | add --target-release option (Closes: #115520)David Kalnischkies2010-06-051-0/+2
| |
* | Add a option to apt-cache policy to additionally init the DepCache beforeDavid Kalnischkies2010-06-051-0/+6
| | | | | | | | | | starting to get the package informations. This is useful e.g. for debugging the MultiArchKiller.
* | use pkgCacheFile and the new CacheSets all over the placeDavid Kalnischkies2010-06-051-205/+194
| |
* | rename packageset into cacheset while it is not too lateDavid Kalnischkies2010-05-311-1/+1
| |
* | * cmdline/apt-cache.cc:David Kalnischkies2010-05-311-37/+40
| | | | | | - make the search multiarch compatible by using GrpIterator instead
* | i managed to commit broken code… which (at least in my mind) workedDavid Kalnischkies2010-05-311-1/+1
| | | | | | | | yesterday. Strange… anyway only small fixes.
* | move cmdline parsing from apt-cache to new FromCommandLine methodDavid Kalnischkies2010-05-311-59/+21
| |
* | Move the showauto command to apt-cache and sort output.Julian Andres Klode2010-05-041-0/+27
| | | | | | | | | | * cmdline/apt-cache.cc: - Add a showauto command to apt-cache. - Add apt-get markauto and unmarkauto commands.
* | use GroupCount for package names in stats and add a package struct lineDavid Kalnischkies2010-05-041-1/+3
| |
* | * cmdline/apt-cache.cc:David Kalnischkies2010-04-231-2/+10
| | | | | | | | - align Installed and Candidate Version in policy so they can be compared easier, thanks Ralf Gesellensetter for the pointer! (Closes: #578657)
* | merged from lp:~donkult/apt/sidMichael Vogt2010-04-011-42/+57
|\ \ | |/ |/|
| * move ShowPkg() from apt-get to the PkgIterator and rename it to FullName()David Kalnischkies2010-02-261-31/+28
| | | | | | | | | | | | | | responseable for displaying a package name and the architecture in a uniform way. Pretty option can be used to not append the architecture if it is the native architecture or all - and use it all over the place in the commandline tools.
| * [BREAK] merge MultiArch-ABI. We don't support MultiArch,David Kalnischkies2010-02-131-15/+33
| |\ | | | | | | | | | | | | | | | | | | | | | | | | but we support the usage of the new ABI so libapt users can start to prepare for MultiArch (Closes: #536029) MultiArch isn't ready for Primetime usage for now, but the branch has managed to be a NOP if used in SingleArch-mode so we can start to promote the use of the new MultiArchable API-extensions.
| | * Add yet another pseudo package which isn't as pseudo as the others:David Kalnischkies2010-02-121-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Arch all packages are now represented by arch depending packages which all depend on a package with the same name and the special arch "all". This packages has NO dependencies, but beside this the same information. It is the only package which has a size, the arch depending ones all have a zero size. While the arch depending pseudo packages are used for dependency resolution the arch "all" package is used for downloading and ordering of the package.
| | * display the architecture of the package if it is not the defaultDavid Kalnischkies2010-02-111-15/+31
| | | | | | | | | | | | | | | architecture in apt-get, display policy for all available architectures and use GrpIterator in apt-cache pkgnames