summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-10-31Added 'unset GREP_OPTIONS' to apt-key.Eugene V. Lyubimkin
2008-10-31Added lintian override of 'must depend on python.Eugene V. Lyubimkin
2008-10-31Reverted 'bashisms' commit, it was wrong as $(...) is not a bashism.Eugene V. Lyubimkin
2008-10-29Dropped Debian revision '-1' from build dependency on 'doc-base'.Eugene V. Lyubimkin
2008-10-29Removed unneeded 'LOCAL' entry, now clean runs smoothly in dselect/ directory.Eugene V. Lyubimkin
2008-10-29Added 'set -e' to maintainer scripts.Eugene V. Lyubimkin
2008-10-29Added 'python-apt' to Suggests of apt (because of apt-mark).Eugene V. Lyubimkin
2008-10-29Fixed 'Devel' -> 'Debian' doc-base sections.Eugene V. Lyubimkin
2008-10-29'Source-Version' in debian/control became 'binary:Version'.Eugene V. Lyubimkin
2008-10-29Fixed 'debian/rules ignores make errors' lintian warnings.Eugene V. Lyubimkin
2008-10-29Fixed bashisms in apt-key.Eugene V. Lyubimkin
2008-10-29apt-pkg/acquire-item.cc: do not hardcode "Packages" or "Sources" in the ↵Michael Vogt
(generic) acquire-item.cc code
2008-10-29apt-pkg/acquire-item.cc: fixed my incorrect use of flExtensionMichael Vogt
2008-10-28merged from the debian-sid branchMichael Vogt
2008-10-28* apt-pkg/acquire-item.cc:Michael Vogt
- Added fallback to uncompressed 'Packages' if neither 'bz2' nor 'gz' available. (Closes: #409284) * apt-pkg/algorithm.cc: - Strip username and password from source URL in error message. (Closes: #425150)
2008-10-26Forgot to remove regex.h include in previous commit. Now doneEugene V. Lyubimkin
2008-10-26Switched from regexp to using existing URI class to strip user/password.Eugene V. Lyubimkin
2008-10-25Corrected determining if regexp matched.Eugene V. Lyubimkin
2008-10-25Fixed error output when fallback'ed to uncompressed Packages/Sources.Eugene V. Lyubimkin
2008-10-25Strip user/password from URL in error message.Eugene V. Lyubimkin
2008-10-25Added fallback to uncompressed files while acquiring index files (Sources ↵Eugene V. Lyubimkin
and Packages)
2008-10-10update changelogMichael Vogt
2008-10-10doc/apt-cache.8.xml: add missing <citerefentry>Michael Vogt
2008-10-10* doc/apt-cache.8.xml:Michael Vogt
- search command uses POSIX regex, and searches for virtual packages too (closes: #277536) * doc/offline.sgml: clarify remote and target hosts (thanks to Nikolaus Schulz, closes: #175940) * Fix several typos in docs, translations and debian/changelog (thanks to timeless, Nicolas Bonifas and Josh Triplett, closes: #368665, #298821, #411532, #431636, #461458) * Document apt-key finger and adv commands (thanks to Stefan Schmidt, closes: #350575) * Better documentation for apt-get --option (thanks to Tomas Pospisek, closes: #386579) * Retitle the apt-mark.8 manpage (thanks to Justin Pryzby, closes: #471276) * Better documentation on using both APT::Default-Release and /etc/apt/preferences (thanks to Ingo Saitz, closes: #145575) * fix FTBFS by changing build-depends to * ABI library name change because it's built against * Package that contains all the new features * Branch that contains all the new features:
2008-10-07* doc/apt-cache.8.xml:Michael Vogt
- search command uses POSIX regex, and searches for virtual packages too (closes: #277536) * doc/offline.sgml: clarify remote and target hosts (thanks to Nikolaus Schulz, closes: #175940) * Fix several typos in docs, translations and debian/changelog (thanks to timeless, Nicolas Bonifas and Josh Triplett, closes: #368665, #298821, #411532, #431636, #461458) * Document apt-key finger and adv commands (thanks to Stefan Schmidt, closes: #350575) * Better documentation for apt-get --option (thanks to Tomas Pospisek, closes: #386579) * Retitle the apt-mark.8 manpage (thanks to Justin Pryzby, closes: #471276) * Better documentation on using both APT::Default-Release and /etc/apt/preferences (thanks to Ingo Saitz, closes: #145575) * fix FTBFS by changing build-depends to * ABI library name change because it's built against * Package that contains all the new features * Branch that contains all the new features:
2008-10-07merged from debian-sidMichael Vogt
2008-10-07Upload to unstableMichael Vogt
2008-10-07merged from the debain-sid branchMichael Vogt
2008-10-05Typo in changelogLuca Bruno
2008-10-05* doc/apt-cache.8.xml:Luca Bruno
- search command uses POSIX regex, and searches for virtual packages too (closes: #277536)
2008-10-04* doc/offline.sgml: clarify remote and target hostsLuca Bruno
2008-10-04* Better documentation for apt-get --optionLuca Bruno
2008-10-04* Retitle the apt-mark.8 manpage (thanks to Justin Pryzby, closes: 471276)Luca Bruno
2008-10-03Applied patch from #461458 for apt.8 typoLuca Bruno
2008-10-03Applied patch from #431636 for typosLuca Bruno
2008-10-03Applied patch from #411532 for typosLuca Bruno
2008-10-03Applying #298821 patch for further arbitary typosLuca Bruno
2008-10-03Wrap changelog linesLuca Bruno
2008-10-03* Better documentation on using both APT::Default-Release and ↵Luca Bruno
/etc/apt/preferences (closes: #145575)
2008-10-03Fixed typo in changelogLuca Bruno
2008-10-03* Document apt-key finger and adv commands (thanks to Stefan Schmidt, ↵Luca Bruno
closes: #350575)
2008-10-03Fix some typos in docs and translations (thanks to timeless, closes: 368665)Luca Bruno
2008-10-03Experimental branchLuca Bruno
2008-10-01fix typo *sigh*Michael Vogt
2008-10-01* apt-pkg/packagemanager.cc, apt-pkg/deb/dpkgpm.cc:Michael Vogt
- move the state file writting into the Go() implementation of dpkgpm (closes: #498799) * apt-pkg/algorithms.cc: - fix simulation performance drop (thanks to Ferenc Wagner for reporting the issue)
2008-09-25Restore the apt ABI.Daniel Burrows
The problem was that the size of pkgDpkgPM and its member offsets changed because a map giving the names of the trigger states was inserted into the middle of the structure. I fixed it by using a statically allocated array instead. This changes the procedure for looking up a string to a linear search, which should be fine (or even faster than before) since there are only 4 state strings. If it becomes a problem, sorting the array by key will allow us to use std::equal_range(), but I would advise against this unless it's really necessary, since sooner or later someone will forget to maintain the sort order.
2008-09-23update the changelogMichael Vogt
2008-09-23* apt-pkg/pkgcachegen.cc:egon
- do not add multiple identical descriptions for the same language (closes: #400768)
2008-09-19Catalan translation updatebubulle@debian.org
2008-09-16upload as 0.7.15~exp1egon