| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
- use Dump() to generate the configuration message for sending
|
|
|
| |
- add a more versatile Dump() method
|
|
|
| |
- remove the message size limit from ioprintf and strprintf
|
| |
|
|\ |
|
| |
| |
| |
| | |
- actually return to the fallback modifier if we have detected we
should for packagenames which look like modifiers (Closes: #669591)
|
| |
| |
| |
| |
| | |
- do not use the input data directly but memcpy it instead as
it could be unaligned as in the http-transport which causes
a sigbus error on sparc (Closes: #669061)
|
| |
| |
| |
| | |
- if the compressor is not installed, but we link against it's
library accept it as a CompressionType (Closes: #669328)
|
| |
| |
| |
| |
| | |
- iterate over all pre-depends or-group member instead of looping
endlessly over the first member in SmartUnpack (LP: #985852)
|
| |
| |
| |
| | |
essential issue
|
| |
| |
| | |
- redirect stderr from compressors to /dev/null
|
| |
| |
| | |
- only treat the native apt as essential by default
|
|\ \
| |/
|/| |
|
| | |
|
| |
| |
| |
| |
| | |
- ensure that in StartGzip the InFd is set to "AutoClose" to ensure
that the pipe is closed when InFd is closed. This fixes a Fd leak
(LP: #985452)
|
| |
| |
| |
| |
| | |
- do not crash if (*I).Pkg is NULL (LP: #939867)
|
| | |
|
| |
| |
| |
| | |
- init counter in SmartConfigure so that the loop-breaker isn't
triggered at random… (Closes: #669060)
|
| |
| |
| |
| | |
- if pkgCacheFile::Generate is disabled in 'update' don't
remove the caches (and don't try to open them)
|
|\ \ |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | |
| | | |
| | | | |
- print list of autoremoves in alphabetical order (Closes: #639008)
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- remove the libz-dev alternative from zlib1g-dev build-dependency
- do the same for bz2 builtin if available
* apt-pkg/contrib/fileutl.cc:
- use libz2 library for (de)compression instead of the bzip2 binary as
the first is a dependency of dpkg and the later just priority:optional
so we gain 'easier' access to bz2-compressed Translation files this way
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
- remove it as the functionality for all compressors can be
provided by gzip.cc now with the usage of FileFD
|
| | | |
| | | |
| | | | |
- if present, prefer xz binary over lzma
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- distinguish information about 'apt-get autoremove' based on the
number of auto-removed packages both before and after the list
of packages (Closes: #665833)
|
| | | |
| | | |
| | | |
| | | |
| | | | |
- move the command synopsis out of each manpage into apt-verbatim.ent
as they are a hell to translate and just single out the parameters
which can be translated to apt.ent
|
| | | |
| | | |
| | | |
| | | |
| | | | |
* doc/apt-get.8.xml:
- add 'download' to the usage line (Closes: #649340)
|
| | | |
| | | |
| | | |
| | | |
| | | | |
- do not sed in configure.in to set the version-number
* prepare-release:
- add as a small script to lazy check and prepare releases
|
| | |\ \ |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- drop instead of fix as it is only needed if you want to reimplement dpkg
and comes straight from the beginning of last decade (Closes: #663372)
* apt-inst/deb/debfile.cc:
- {Extract,Merge}Control() is another instance of "lets reimplement dpkg"
so shot of this code before someone ends up using this…
|
| | | | |
| | | | |
| | | | |
| | | | | |
- typofix: respect → respecting, thanks Mike Erickson! (Closes: #664833)
|
| | | | |
| | | | |
| | | | | |
- bump Standards-Version to 3.9.3 (no changes needed)
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
- ship the ftparchive, apt-extractemplates and apt-sortpkgs locales
in the apt-utils package instead of the apt package
|
| | | | |
| | | | |
| | | | |
| | | | | |
to the more standard PACKAGE_VERSION and make it work in every file
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
causes timestamp changes for the mo files which therefore can't
be refcounted by dpkg for your M-A: same packages
(Closes: #659333, LP: #924628)
The commit also enables a top-level 'make update-po' and does
all the needed changes to let this work now that update-po might
be called in a freshly checkout tree
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- check return of writev() as gcc recommends
* methods/mirror.cc:
- check return of chdir() as gcc recommends
* apt-pkg/deb/dpkgpm.cc:
- check return of write() a gcc recommends
* apt-inst/deb/debfile.cc:
- check return of chdir() as gcc recommends
* apt-inst/deb/dpkgdb.cc:
- check return of chdir() as gcc recommends
|
| | | | |
| | | | |
| | | | | |
- update symbols file
|
| | | | |
| | | | |
| | | | |
| | | | | |
- do not link rred against libz anymore as FileFd handles all
this transparently now
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- check return of write() as gcc recommends
* apt-pkg/acquire.cc:
- check return of write() as gcc recommends
* apt-pkg/cdrom.cc:
- check return of chdir() and link() as gcc recommends
* apt-pkg/clean.cc:
- check return of chdir() as gcc recommends
* apt-pkg/contrib/netrc.cc:
- check return of asprintf() as gcc recommends
|
| | |_|/
| |/| |
| | | | |
- suggest xz-lzma instead of lzma
|