releasing version 0.9.5
[ntk/apt.git] / debian / changelog
1 apt (0.9.5) unstable; urgency=low
2
3 [ Chris Leick ]
4 * proofreading of the manpage pot
5 * German manpage translation update (Closes: #673294)
6
7 [ David Kalnischkies ]
8 * buildlib/podomain.mak:
9 - ensure that all sources end up in the srclist so that we don't
10 forget to extract half of the translation strings
11 * buildlib/inttypes.h.in:
12 - remove inttypes.h compatibility as providing such a c99 types
13 compatibility conflicts with the usage of c99 type long long
14 * apt-pkg/contrib/mmap.cc:
15 - have a dummy SyncToFd around in case of ReadOnly access to a
16 compressed file as we otherwise on Close() do not delete[] the
17 char buffer but munmap() it… (Closes: #673815)
18 * debian/control:
19 - moving debiandoc-sgml to Build-Depends-Indep was one step too much
20 for the buildds as we still build two sgml files in arch:any
21 * debian/rules:
22 - move internal-solver as 'apt' to his friend dump-solver in
23 /usr/lib/apt/solvers to avoid writing a manpage for it
24
25 -- Michael Vogt <mvo@debian.org> Tue, 22 May 2012 16:14:22 +0200
26
27 apt (0.9.4) unstable; urgency=low
28
29 [ David Kalnischkies ]
30 * methods/http.cc:
31 - after many years of pointless discussions disable http/1.1 pipelining
32 by default as many webservers and proxies seem to be unable to conform
33 to specification must's (rfc2616 section 8.1.2.2) (LP: #996151)
34 - add spaces around PACKAGE_VERSION to fix FTBFS with -std=c++11
35 * apt-pkg/pkgcachegen.cc:
36 - make IsDuplicatedDescription static so that it is really private
37 as we don't need a symbol for it as it is not in a header
38 * Makefile, buildlib/*.mak:
39 - reshuffle dependencies so that parallel building seems to work
40 - separate manpages from the rest of the doc building
41 * prepare-release:
42 - apt-inst version isn't apt versions, so don't override variable
43 * debian/rules:
44 - apt-utils packages manpages, so it should depend on build-doc
45 - make apt and apt-utils packages depend on manpages instead of full doc
46 * debian/control:
47 - move doxygen and debiandoc-sgml to Build-Depends-Indep as docs
48 are no longer build in the same target as the manpages
49 * apt-pkg/acquire-methods.cc:
50 - factor out into private Dequeue() to fix access to deleted pointer
51 * apt-pkg/contrib/fileutl.cc:
52 - ensure that we close compressed fds, wait for forks and such even if
53 the FileFd itself is set to not autoclose the given Fd
54 * cmdline/apt-get.cc:
55 - use the host architecture, not the build architecture for matching
56 of [architecture restrictions] in Build-Depends (Closes: #672927)
57 * doc/makefile:
58 - build manpages with the correct l10n.gentext.default.language setting
59 to get the correct section titles provided by docbook
60 * doc/po/de.po:
61 - updated german manpage translation by Chris Leick, thanks!
62 * apt-pkg/packagemanager.cc:
63 - do not run into loop on new-pre-depends-breaks (Closes: #673536)
64 * doc/*.xml:
65 - add a few translator notes and reword some paragraphs to ensure that
66 translators and users alike can better understand them (Closes: #669409)
67 - in <term> mark all options with <option> and mark <term><option>
68 as untranslated for po4a removing ~200 unless "translateable" strings
69 * apt-pkg/aptconfiguration.cc:
70 - longcode Translation files are saved with encoded underscore,
71 so make sure to pick these files up as well for Acquire::Languages
72 * ftparchive/writer.cc:
73 - include Contents-* files in Release files (Closes: #673647)
74
75 [ Michael Vogt ]
76 * merged updated de.po, thanks to Holger Wansing (closes: #672466)
77
78 [ Raphael Geissert ]
79 * apt-pkg/acquire*.cc:
80 - handle redirections in the worker with the right method instead of
81 in the method the redirection occured in (Closes: #668111)
82 * methods/http.cc:
83 - forbid redirects to change protocol
84 * methods/mirror.cc:
85 - generate an equal sign also for the first arch (Closes: #669142)
86
87 [ Marius Vollmer ]
88 * apt-pkg/algorithms.cc:
89 - fix memory leak of Flags in pkgSimulate by a proper destructor
90
91 -- Michael Vogt <mvo@debian.org> Mon, 21 May 2012 12:29:05 +0200
92
93 apt (0.9.3) unstable; urgency=low
94
95 [ David Kalnischkies ]
96 * apt-pkg/contrib/strutl.cc:
97 - remove the message size limit from ioprintf and strprintf
98 * apt-pkg/contrib/configuration.cc:
99 - add a more versatile Dump() method
100 - normalize a bit by replacing // and /./ with / in FindFile
101 - /dev/null is a special absolute path as it has no subdirectories
102 * apt-pkg/acquire-worker.cc:
103 - use Dump() to generate the configuration message for sending
104 * cmdline/apt-config.cc:
105 - make it possible to limit dump to a subtree
106 - implement --empty and --format option for dump
107 * apt-pkg/cdrom.cc:
108 - use Dump() to generate the configuration output
109 * apt-pkg/depcache.cc:
110 - clearly separate 'positive' and 'negative' dependencies and
111 their upgrade-resolution tries in MarkInstall and especially don't
112 treat Conflicts differently compared to Breaks here
113 - provider is only a possible solution if the provides has the right
114 version (or none as we have no versioned provides in debian) and not
115 if the version of the provider matches
116 * edsp/edspsystem.cc:
117 - check with RealFileExists for scenario file as otherwise a directory
118 like one provided with RootDir triggers the usage of EDSP
119 * debian/libapt-inst1.5.symbols:
120 - use the correct library name the symbols header
121 * apt-pkg/pkgcachegen.cc:
122 - check if NewDescription allocation has failed and error out accordingly
123 - check if we work on a valid description in IsDuplicateDescription as
124 we end up working on dangling pointers otherwise which segfaults on
125 s390x and ppc64 (Closes: #669427)
126 * apt-pkg/deb/deblistparser.cc:
127 - check length and containing chars for a given description md5sum
128 * ensure that apti18n.h is included last as advertised (Closes: #671623)
129 * apt-pkg/acquire-worker.cc:
130 - revert the use of FileFd::Write in OutFdReady as we don't want error
131 reports about EAGAIN here as we retry later. Thanks to YOSHINO Yoshihito
132 for the report. (Closes: #671721)
133 * apt-pkg/contrib/fileutl.cc:
134 - check that the fd which are closed are valid
135 - ensure that we do init d only once and especially not with its own
136 content as this causes some "interesting" hickups resulting in segfaults
137 as it seems (Closes: #554387, #670979)
138 - collect zombie (de)compressor processes on reopen
139 - ensure that in error conditions the Fail flag is set
140 - ensure that d is set before accessing it
141 * apt-pkg/aptconfiguration.cc:
142 - use NULL instead of "" for no (un)compress parameters
143 * apt-pkg/algorithms.cc:
144 - factor out of ListUpdate a AcquireUpdate to be able to provide your
145 own pkgAcquire fetcher to the wrapper
146 * apt-inst/deb/debfile.h:
147 - readd 'md5.h' to the uncleaned header includes to make qapt build
148 against us again unchanged to unblock transition (Closes: #669163)
149
150 -- Michael Vogt <mvo@debian.org> Fri, 11 May 2012 17:16:22 +0200
151
152 apt (0.9.2) unstable; urgency=low
153
154 [ Michael Vogt ]
155 * apt-inst/contrib/extracttar.cc:
156 - ensure that in StartGzip the InFd is set to "AutoClose" to ensure
157 that the pipe is closed when InFd is closed. This fixes a Fd leak
158 (LP: #985452)
159
160 [ David Kalnischkies ]
161 * apt-pkg/deb/deblistparser.cc:
162 - only treat the native apt as essential by default (Closes: #669377)
163 * apt-pkg/contrib/fileutl.cc:
164 - redirect stderr from compressors to /dev/null
165 * apt-pkg/aptconfiguration.cc:
166 - if the compressor is not installed, but we link against it's
167 library accept it as a CompressionType (Closes: #669328)
168 * apt-pkg/contrib/sha2_internal.cc:
169 - do not use the input data directly but memcpy it instead as
170 it could be unaligned as in the http-transport which causes
171 a sigbus error on sparc (Closes: #669061)
172 * apt-pkg/cacheset.cc:
173 - actually return to the fallback modifier if we have detected we
174 should for packagenames which look like modifiers (Closes: #669591)
175
176 [ Adam Conrad ]
177 * Set FD_CLOEXEC on history.log's FD (Closes: #610069, LP: #636010)
178
179 [ Thorsten Spindler ]
180 * apt-pkg/deb/dpkgpm.cc:
181 - do not crash if (*I).Pkg is NULL (LP: #939867)
182
183 [ Malcolm Scott ]
184 * apt-pkg/packagemanager.cc:
185 - iterate over all pre-depends or-group member instead of looping
186 endlessly over the first member in SmartUnpack (LP: #985852)
187
188 -- Michael Vogt <mvo@debian.org> Fri, 20 Apr 2012 11:26:16 +0200
189
190 apt (0.9.1) unstable; urgency=low
191
192 [ David Kalnischkies ]
193 * cmdline/apt-get.cc:
194 - if pkgCacheFile::Generate is disabled in 'update' don't
195 remove the caches (and don't try to open them)
196 * apt-pkg/packagemanager.cc:
197 - init counter in SmartConfigure so that the loop-breaker isn't
198 triggered at random… (Closes: #669060)
199
200 [ Christian Perrier ]
201 * Fix typo in apt-get(8). Closes: #664833
202 * Replace "argument" by "paramètre" in French translation.
203 Merci, les Titeps!
204 * Drop hardcoded "en.html" suffix in apt-secure manpage.
205 Thanks to David Prevot.
206
207 -- Michael Vogt <mvo@debian.org> Tue, 17 Apr 2012 09:49:31 +0200
208
209 apt (0.9.0) unstable; urgency=low
210
211 * upload to debian/unstable
212
213 -- Michael Vogt <mvo@debian.org> Mon, 16 Apr 2012 15:53:17 +0200
214
215 apt (0.9.0~exp1) experimental; urgency=low
216
217 [ Michael Vogt ]
218 * apt-pkg/packagemanager.cc:
219 - fix inconsistent clog/cout usage in the debug output
220 - add APT::pkgPackageManager::MaxLoopCount to ensure that the
221 ordering code does not get into a endless loop when it flip-flops
222 between two states
223 * update libapt-inst1.4 to libapt-inst1.5 because of the cleanup
224 performed
225 * prepare debian/unstable upload, if there are no issues with this
226 upload it will directly go into unstable as 0.9.0
227
228 [ David Kalnischkies ]
229 * do not update po and pot files in the process of the build as this
230 causes timestamp changes for the mo files which therefore can't
231 be refcounted by dpkg for your M-A: same packages
232 (Closes: #659333, LP: #924628)
233 * apt-inst/database.{cc,h}, apt-inst/deb/dpkgdb.{cc,h}:
234 - drop instead of fix as it is only needed if you want to reimplement dpkg
235 and comes straight from the beginning of last decade (Closes: #663372)
236 * apt-inst/deb/debfile.cc:
237 - {Extract,Merge}Control() is another instance of "lets reimplement dpkg"
238 so shot of this code before someone ends up using this…
239 * debian/libapt-pkg4.12:
240 - update symbols file
241 * debian/apt-utils.install:
242 - ship the ftparchive, apt-extractemplates and apt-sortpkgs locales
243 in the apt-utils package instead of the apt package
244 * apt-pkg/packagemanager.cc:
245 - recheck all dependencies if we changed a package in SmartConfigure
246 as this could break an earlier dependency (LP: #940396)
247 - recheck dependencies in SmartUnpack after a change, too
248 * apt-pkg/acquire-worker.cc:
249 - check return of write() as gcc recommends
250 * apt-pkg/acquire.cc:
251 - check return of write() as gcc recommends
252 * apt-pkg/cdrom.cc:
253 - check return of chdir() and link() as gcc recommends
254 * apt-pkg/clean.cc:
255 - check return of chdir() as gcc recommends
256 * apt-pkg/contrib/netrc.cc:
257 - check return of asprintf() as gcc recommends
258 * methods/rred.cc:
259 - check return of writev() as gcc recommends
260 * methods/mirror.cc:
261 - check return of chdir() as gcc recommends
262 * apt-pkg/deb/dpkgpm.cc:
263 - check return of write() a gcc recommends
264 * apt-inst/deb/debfile.cc:
265 - check return of chdir() as gcc recommends
266 * apt-inst/deb/dpkgdb.cc:
267 - check return of chdir() as gcc recommends
268 * methods/makefile:
269 - do not link rred against libz anymore as FileFd handles all
270 this transparently now
271 * debian/control:
272 - bump Standards-Version to 3.9.3 (no changes needed)
273 - add libbz2-dev as new build-dependency
274 - remove the libz-dev alternative from zlib1g-dev build-dependency
275 - suggest xz-utils instead of bzip2 and lzma
276 * doc/apt-get.8.xml:
277 - typofix: respect → respecting, thanks Mike Erickson! (Closes: #664833)
278 * debian/rules:
279 - do not sed in configure.in to set the version-number
280 * prepare-release:
281 - add as a small script to lazy check and prepare releases
282 * doc/*:
283 - move the command synopsis out of each manpage into apt-verbatim.ent
284 as they are a hell to translate and just single out the parameters
285 which can be translated to apt.ent
286 * apt-pkg/aptconfiguration.cc:
287 - if present, prefer xz binary over lzma
288 - if we have zlib builtin insert add a dummy gzip compressor for FileFD
289 - do the same for bz2 builtin if available
290 * methods/bzip2.cc:
291 - remove it as the functionality for all compressors can be
292 provided by gzip.cc now with the usage of FileFD
293 * apt-pkg/contrib/fileutl.cc:
294 - use libz2 library for (de)compression instead of the bzip2 binary as
295 the first is a dependency of dpkg and the later just priority:optional
296 so we gain 'easier' access to bz2-compressed Translation files this way
297 * cmdline/apt-get.cc:
298 - print list of autoremoves in alphabetical order (Closes: #639008)
299
300 [ Bogdan Purcareata ]
301 * doc/apt-get.8.xml:
302 - add 'download' to the usage line (Closes: #649340)
303 * cmdline/apt-get.cc:
304 - distinguish information about 'apt-get autoremove' based on the
305 number of auto-removed packages both before and after the list
306 of packages (Closes: #665833)
307
308 [ Steve Langasek ]
309 * don't treat build-depends-indep as cross-build-dependencies; we should
310 always install the host arch versions. LP: #968828.
311
312 [ Paolo Rotolo ]
313 * Fix string from automatic to automatically (LP: #967393).
314
315 -- Michael Vogt <mvo@debian.org> Thu, 12 Apr 2012 12:40:39 +0200
316
317 apt (0.8.16~exp13) experimental; urgency=low
318
319 [ David Kalnischkies ]
320 * apt-pkg/acquire-item.cc:
321 - remove 'old' InRelease file if we can't get a new one before
322 proceeding with Release.gpg to avoid the false impression of a still
323 trusted repository by a (still present) old InRelease file.
324 Thanks to Simon Ruderich for reporting this issue! (CVE-2012-0214)
325 - add Debug::pkgAcqArchive::NoQueue to disable package downloading
326 * apt-pkg/deb/dpkgpm.cc:
327 - chroot if needed before dpkg --assert-multi-arch
328 - ensure that dpkg binary doesn't have the chroot-directory prefixed
329 - call dpkg --assert-multi-arch with execvp instead of execv
330 - save the universe by not printing messages about apport if a package
331 with this name is not installed (Closes: #619646)
332 - handle a SIGINT in all modes as a break after the currently running
333 dpkg transaction instead of ignoring it completely
334 * apt-pkg/depcache.cc:
335 - if a M-A:same package is marked for reinstall, mark all it's installed
336 silbings for reinstallation as well (LP: #859188)
337 * apt-pkg/contrib/configuration.cc:
338 - do not stop parent transversal in FindDir if the value is empty
339 * methods/http{s,}.cc:
340 - if a file without an extension is requested send an 'Accept: text/*'
341 header to avoid that the server chooses unsupported compressed files
342 in a content-negotation attempt (Closes: #657560)
343 - remove the arbitrary MAXLEN limit for response lines (Closes: #658346)
344 * apt-pkg/aptconfiguration.cc:
345 - chroot if needed before calling dpkg --print-foreign-architectures
346 - ensure that architectures are not added multiple times
347 * cmdline/apt-mark.cc:
348 - detect if dpkg has multiarch support before calling --set-selections
349 - correctly ignore already (un)hold packages
350 * apt-pkg/cachefile.cc:
351 - clean up lost atomic cachefiles with 'clean' (Closes: #650513)
352 * apt-pkg/indexrecords.cc:
353 - do not create empty Entries as a sideeffect of Lookup()
354 * apt-pkg/acquire-item.cc:
355 - drop support for i18n/Index file (introduced in 0.8.11) and use
356 the Release file instead to get the Translations (Closes: #649314)
357 - use pdiff for Translation-* files if available (Closes: #657902)
358 * ftparchive/writer.cc:
359 - add 'Translation-*' to the default patterns
360 * cmdline/apt-get.cc:
361 - if a package can't be removed as it is not installed, suggest to
362 the user an (installed) multiarch silbing with 'Did you mean?'
363 - improve 'error' message for packages which are only referenced
364 e.g. in a Depends line and are now requested for removal
365 * cmdline/apt-cache.cc:
366 - correct --pre-depends option by using dash consistently (LP: #940837)
367 * apt-pkg/packagemanager.cc:
368 - do not try to a void a breaks if the broken package pre-depends
369 on the breaker, but let dpkg auto-deconfigure it
370 * apt-pkg/contrib/fileutl.cc:
371 - do not warn about the ignoring of directories (Closes: #662762)
372
373 [ Steve Langasek ]
374 * cmdline/apt-get.cc:
375 - for cross-build-dependencies M-A: none should be DEB_HOST_ARCH,
376 not DEB_BUILD_ARCH (Closes: #646288)
377
378 [ Colin Watson ]
379 * apt-pkg/algorithms.cc:
380 - don't break out of the main-resolver loop for Breaks to deal with all
381 of them in a single iteration (Closes: #657695, LP: #922485)
382 - use a signed int instead of short for score calculation as upgrades
383 become so big now that it can overflow (Closes: #657732, LP: #917173)
384 * Fix IndexCopy::CopyPackages and TranslationsCopy::CopyTranslations to
385 handle compressed files again (LP: #924182, closes: #658096)
386
387 [ Michael Vogt ]
388 * apt-pkg/deb/dpkgpm.cc:
389 - fix crash when a package is in removed but residual config state
390 (LP: #923807)
391 * apt-pkg/contrib/fileutl.h:
392 - fix compat with FileFd::OpenDescriptor() in ReadOnlyGzip mode
393 * apt-pkg/packagemanager.cc:
394 - fix bug in predepends handling - ensure that packages that needs
395 unpackaging are unpacked before they are configured (LP: #927993)
396
397 [ Julian Andres Klode ]
398 * apt-pkg/deb/deblistparser.cc:
399 - Set the Essential flag on APT instead of only Important
400 * apt-pkg/packagemanager.cc:
401 - Do not use immediate configuration for packages with the Important flag
402 * Treat the Important flag like the Essential flag with those differences:
403 - No Immediate configuration (see above)
404 - Not automatically installed during dist-upgrade
405 - No higher score for installation ordering
406
407 -- Michael Vogt <mvo@debian.org> Tue, 06 Mar 2012 18:12:57 +0100
408
409 apt (0.8.16~exp12) experimental; urgency=low
410
411 [ Michael Vogt ]
412 * apt-pkg/deb/dpkgpm.cc:
413 - fix segfault on pkg removal
414
415 [ David Kalnischkies ]
416 * apt-pkg/cacheiterators.h:
417 - return the correct version arch for all+foreign, too
418 * apt-pkg/packagemanager.cc:
419 - ignore breaks on not-installed versions while searching for
420 breakage loops as we don't have to avoid them
421 * debian/control:
422 - remove APT from the short descriptions as lintian doesn't like it
423 and it doesn't transport any information for a reader anyway
424 - apply typofixes by Pascal De Vuyst, thanks! (Closes: #652834, #652835)
425 * debian/rules:
426 - apply patch to enable usage of hardning CPPFLAGS and LDFLAGS by
427 Moritz Muehlenhoff, thanks! (Closes: #653504)
428 * methods/https.cc:
429 - use curls list append instead of appending Range and If-Range by hand
430 which generates malformed requests, thanks Mel Collins for the hint!
431 (Closes: #646381)
432 * test/libapt/run-tests:
433 - hurd doesn't have dmesg yet and we don't really need it either,
434 so use with $0 a more stable data source for hashsumming
435
436 [ Pino Toscano ]
437 * test/libapt/globalerror_test.cc:
438 - errno 0 has a different strerror on hurd, so generate the expected
439 message dynamically instead of hardcoding 'Success' (Closes: #656530)
440
441 -- Michael Vogt <mvo@debian.org> Tue, 24 Jan 2012 12:24:38 +0100
442
443 apt (0.8.16~exp11) experimental; urgency=low
444
445 [ David Kalnischkies ]
446 * apt-pkg/deb/dpkgpm.cc:
447 - redirect out/input of dpkg --assert-multi-arch to /dev/null
448 - if multi-arch is detected ensure that pkg:all is reported as pkg:all
449
450 -- Michael Vogt <mvo@debian.org> Thu, 19 Jan 2012 13:48:18 +0100
451
452 apt (0.8.16~exp10) experimental; urgency=low
453
454 [ David Kalnischkies ]
455 * apt-pkg/depcache.cc:
456 - implicit conflicts (for multiarch) are supposed to conflict
457 only with real packages, not with virtual providers
458 * apt-pkg/pkgcache.cc:
459 - ignore implicit conflicts on providers in AllTarget, too
460 * apt-pkg/deb/dpkgpm.cc:
461 - check if dpkg supports multiarch with --assert-multi-arch
462 and if it does be always explicit about the architecture
463 * apt-pkg/contrib/fileutl.h:
464 - store the offset in the internal fd before calculate size of
465 the zlib-handled file to jump back to this place again
466 * apt-pkg/aptconfiguration.cc:
467 - parse dpkg --print-foreign-architectures correctly in
468 case archs are separated by newline instead of space, too.
469 (Closes: #655590)
470
471 [ Michael Vogt ]
472 * apt-pkg/contrib/fileutl.h:
473 - fix segfault triggered by the python-apt testsuite
474
475 -- Michael Vogt <mvo@debian.org> Wed, 18 Jan 2012 12:52:26 +0100
476
477 apt (0.8.16~exp9) experimental; urgency=low
478
479 [ Julian Andres Klode ]
480 * apt-pkg/cdrom.cc:
481 - Accept .bz2, .xz files in addition to .gz files (Closes: #649451)
482
483 [ Michael Vogt ]
484 * apt-pkg/cdrom.cc:
485 - use aptconfiguration to get the supported compression types
486 * debian/control:
487 - bump debhelper build-dep to debhelper (>= 8.1.3~)
488 - set libapt-pkg-dev to multi-arch: same too
489 * g++ 4.7 fixes
490
491 [ Colin Watson ]
492 * Convert libapt-pkg4.12 and libapt-inst1.4 to Multi-Arch: same.
493
494 [ David Kalnischkies ]
495 * apt-pkg/cacheset.cc:
496 - make the cachesets real containers which can embedding any container
497 to be able to use the same interface regardless of set or list usage
498 - provide a {Package,Version}List similar to {Package,Version}Set
499 * cmdline/apt-{get,cache,mark}.cc:
500 - use Lists instead of Sets if input order should be preserved for
501 commands accepting lists of packages, e.g. policy (Closes: #625960)
502 * apt-pkg/depcache.cc:
503 - prefer native providers over foreigns even if the chain is foreign
504 * cmdline/apt-get.cc:
505 - ignore foreign architectures if we check if a provides has only one
506 resolver as it's basically the same for the user, so no need to choose
507 * cmdline/apt-config.cc:
508 - dump the APT::Compressor settings correctly and completely
509 * apt-pkg/contrib/fileutl.{h,cc}:
510 - implement a ModificationTime method for FileFd
511 - add a ReadLine method
512 - drop the explicit export of gz-compression handling
513 * apt-pkg/cdrom.cc:
514 - support InRelease files on cdrom
515
516 -- Michael Vogt <mvo@debian.org> Thu, 05 Jan 2012 20:26:31 +0100
517
518 apt (0.8.16~exp8) experimental; urgency=low
519
520 [ David Kalnischkies ]
521 * algorithms.cc:
522 - show a debug why a package was kept by ResolveByKeep()
523 * apt-pkg/packagemanager.cc:
524 - do not fail on unpacked packages in SmartUnPack, just don't
525 shedule them for unpack, but do all checks and configure them
526 - do not enter an endless loop for (essential) pre-dependency loops
527 * apt-pkg/contrib/sha2_internal.cc:
528 - use a pointer-union to peace gcc strict-aliasing warning
529 * apt-pkg/deb/deblistparser.cc:
530 - M-A: foreign packages provide for other archs, too
531
532 -- David Kalnischkies <kalnischkies@gmail.com> Thu, 03 Nov 2011 09:40:29 -0500
533
534 apt (0.8.16~exp7) experimental; urgency=low
535
536 [ David Kalnischkies ]
537 * do not pollute namespace in the headers with using (Closes: #500198)
538 * use forward declaration in headers if possible instead of includes
539 * remove old APT_COMPATIBILITY ifdef's
540 * apt-pkg/deb/dpkgpm.cc:
541 - use std::vector instead of fixed size arrays to store args and
542 multiarch-packagename strings
543 - load the dpkg base arguments only one time and reuse them later
544 * cmdline/apt-get.cc:
545 - follow Provides in the evaluation of saving candidates, too, for
546 statisfying garbage package dependencies (Closes: #640590)
547 * apt-pkg/algorithms.cc:
548 - if a package is garbage, don't try to save it with FixByInstall
549 * apt-pkg/deb/debsrcrecords.cc:
550 - remove the limit of 400 Binaries for a source package (Closes: #622110)
551 * apt-pkg/deb/deblistparser.cc:
552 - fix crash when the dynamic mmap needs to be grown in
553 LoadReleaseInfo (LP: #854090)
554 * apt-pkg/deb/debmetaindex.cc:
555 - none is a separator, not a language: no need for Index (Closes: #624218)
556 * apt-pkg/aptconfiguration.cc:
557 - do not builtin languages only if none is forced (Closes: #643787)
558 * apt-pkg/pkgcachegen.cc:
559 - refactor MergeList by creating -Group, -Package and -Version specialist
560 - share description list between "same" versions (LP: #868977)
561 This also means that descriptions are shared across archives now.
562 - add implicit dependencies needed for Multi-Arch at the time a Version
563 struct is created and not at the end of the cache generation
564 * apt-pkg/pkgcache.cc:
565 - always prefer "en" over "" for "en"-language regardless of cache-order
566
567 [ Michael Vogt ]
568 * apt-pkg/contrib/configuration.cc:
569 - fix double delete (LP: #848907)
570 - ignore only the invalid regexp instead of all options
571 * apt-pkg/acquire-item.h, apt-pkg/deb/debmetaindex.cc:
572 - fix fetching language information by adding OptionalSubIndexTarget
573 * methods/https.cc:
574 - cleanup broken downloads properly
575
576 [ Colin Watson ]
577 * ftparchive/cachedb.cc:
578 - fix buffersize in bytes2hex
579
580 -- Michael Vogt <mvo@debian.org> Fri, 14 Oct 2011 13:51:35 +0200
581
582 apt (0.8.16~exp6) experimental; urgency=low
583
584 [ Christopher Baines ]
585 * enable APT in unpack/configure ordering to handle loops as well
586 as tight dependencies between immediate packages better
587 enabling also the possibility to mark all packages as immediate
588 (at least Closes: #353290, #540227, #559733, #621836, #639290)
589
590 [ David Kalnischkies ]
591 * [abi-break] Support large files in the complete toolset. Indexes of this
592 size are pretty unlikely for now, but we need it for deb
593 packages which could become bigger than 4GB now (LP: #815895)
594 * merged the debian-sid branch
595
596 [ Michael Vogt ]
597 * bump ABI version
598
599 -- Michael Vogt <mvo@debian.org> Wed, 14 Sep 2011 21:06:51 +0200
600
601 apt (0.8.16~exp5) experimental; urgency=low
602
603 * merged the latest debian-sid fixes
604 * apt-pkg/makefile:
605 - install sha256.h compat header
606 * apt-pkg/pkgcachegen.{cc,h}:
607 - use ref-to-ptr semantic in NewDepends() to ensure that the
608 libapt does not segfault if the cache is remapped in between
609 (LP: #812862)
610 - fix crash when P.Arch() was used but the cache got remapped
611 * apt-pkg/acquire-item.{cc,h}:
612 - do not check for a "Package" tag in optional index targets
613 like the translations index
614 * apt-pkg/acquire.cc:
615 - fix potential divide-by-zero
616 * methods/mirror.cc:
617 - include the architecture(s) in the query string as well so
618 that the server can make better decisions
619
620 -- Michael Vogt <mvo@debian.org> Mon, 15 Aug 2011 14:52:54 +0200
621
622 apt (0.8.16~exp4) experimental; urgency=low
623
624 [ Julian Andres Klode ]
625 * apt-pkg/pkgcache.h:
626 - [ABI break] Add pkgCache::Header::CacheFileSize, storing the cache size
627 * apt-pkg/pkgcachegen.cc:
628 - Write the file size to the cache
629 * apt-pkg/pkgcache.cc:
630 - Check that cache is at least CacheFileSize bytes large (LP: #16467)
631
632 [ Michael Vogt ]
633 * merged latest fixes from debian-sid
634 * apt-pkg/cdrom.{cc,h}:
635 - cleanup old ABI break avoidance hacks
636 * [ABI break] apt-pkg/acquire-item.{cc,h}:
637 - cleanup around OptionalIndexTarget and SubIndexTarget
638 * [ABI break] merged patch from Jonathan Thomas to have a new
639 RecordField() function in the pkgRecorder parser. Many thanks
640 Thomas
641 * [ABI break] merge patch from Jonathan Thomas to speed up the
642 depcache by caching the install-recommends and install-suggests
643 values
644 * apt-pkg/contrib/fileutl.{cc,h}:
645 - add GetModificationTime() helper
646 * apt-pkg/pkgcachegen.cc:
647 - regenerate the cache if the sources.list changes to ensure
648 that changes in the ordering there will be honored by apt
649 * apt-pkg/sourcelist.{cc,h}:
650 - add pkgSourceList::GetLastModifiedTime() helper
651
652 -- Michael Vogt <mvo@debian.org> Thu, 28 Jul 2011 16:57:08 +0200
653
654 apt (0.8.16~exp3) experimental; urgency=low
655
656 [ David Kalnischkies ]
657 * apt-pkg/pkgcache.h:
658 - readd All{Foreign,Allowed} as suggested by Julian to
659 remain strictly API compatible
660 * apt-pkg/acquire*.{cc,h}:
661 - try even harder to support really big files in the fetcher by
662 converting (hopefully) everything to 'long long' (Closes: #632271)
663 * ftparchive/writer.cc:
664 - generate all checksums in one run over the file for Release
665 * cmdline/apt-get.cc:
666 - add an --assume-no option for testing to say 'no' to everything
667 * apt-pkg/deb/debmetaindex.cc:
668 - add trusted=yes option to mark unsigned (local) repository as trusted
669 based on a patch from Ansgar Burchardt, thanks a lot! (Closes: #596498)
670
671 [ Michael Vogt ]
672 * merge fixes from the debian/unstable upload
673 * merge lp:~mvo/apt/sha512-template to get fixes for the
674 sha1/md5 verifiation (closes: #632520)
675
676 -- Michael Vogt <mvo@debian.org> Fri, 15 Jul 2011 09:56:17 +0200
677
678 apt (0.8.16~exp2) experimental; urgency=low
679
680 [ David Kalnischkies ]
681 * [ABI-Break] Implement EDSP in libapt-pkg so that all front-ends which
682 use the internal resolver can now be used also with external
683 ones as the usage is hidden in between the old API
684 * provide two edsp solvers in apt-utils:
685 - 'dump' to quickly output a complete scenario and
686 - 'apt' to use the internal as an external resolver
687 * apt-pkg/pkgcache.h:
688 - clean up mess with the "all" handling in MultiArch to
689 fix LP: #733741 cleanly for everyone now
690 * apt-pkg/depcache.cc:
691 - use a boolean instead of an int for Add/Remove in AddStates
692 similar to how it works with AddSizes
693 - let the Mark methods return if their marking was successful
694 - if a Breaks can't be upgraded, remove it. If it or a Conflict
695 can't be removed the installation of the breaker fails.
696 * cmdline/apt-get.cc:
697 - do not discard the error messages from the resolver and instead
698 only show the general 'Broken packages' message if nothing else
699
700 [ Stefano Zacchiroli ]
701 * doc/external-dependency-solver-protocol.txt:
702 - describe EDSP and the configuration interface around it
703
704 [ Michael Vogt ]
705 * [ABI-Break] merge lp:~mvo/apt/sha512-template to add support for sha512
706 * [ABI-Break] merge lp:~mvo/apt/dpointer to support easier extending
707 without breaking the ABI
708 * increase ABI version and update package names
709
710 -- Michael Vogt <mvo@debian.org> Wed, 29 Jun 2011 13:57:28 +0200
711
712 apt (0.8.16~exp1) experimental; urgency=low
713
714 * merged with the debian/unstable upload
715
716 -- Michael Vogt <mvo@debian.org> Wed, 29 Jun 2011 12:40:31 +0200
717
718 apt (0.8.15.11) UNRELEASED; urgency=low
719
720 * Fix typo in apt-get(8). Closes: #664833
721 * Replace "argument" by "paramètre" in French translation.
722 Merci, les Titeps!
723 * Drop hardcoded "en.html" suffix in apt-secure manpage.
724 Thanks to David Prevot.
725
726 -- Christian Perrier <bubulle@debian.org> Tue, 27 Mar 2012 20:31:38 +0200
727
728 apt (0.8.15.10) unstable; urgency=high
729
730 [ David Kalnischkies ]
731 * algorithms.cc:
732 - show a debug why a package was kept by ResolveByKeep()
733 * doc/manpage-style.xml:
734 - put <brackets> around email addresses
735 * doc/po/de.po:
736 - apply typo-fix from Michael Basse, thanks! (LP: #900770)
737 * apt-pkg/acquire-item.cc:
738 - remove 'old' InRelease file if we can't get a new one before
739 proceeding with Release.gpg to avoid the false impression of a still
740 trusted repository by a (still present) old InRelease file.
741 Thanks to Simon Ruderich for reporting this issue! (CVE-2012-0214)
742
743 [ Chris Leick ]
744 * German manpage translation update
745 * doc/*.xml:
746 - find and fix a bunch of misspellings
747
748 [ Program translation updates ]
749 * Dutch (Jeroen Schot). Closes: #652230
750 * Slovak (Ivan Masar). Closes: #652985
751 * Russian (Yuri Kozlov). Closes: #654844
752 * Hungarian (Gabor Kelemen). Closes: #655238
753 * Polish (Michał Kułach). Closes: #656908
754 * Danish (Joe Hansen). Closes: #658643
755 * French: replace "étiquetage" by "épinglage" for "pinning"
756
757 [ Michael Vogt ]
758 * merged patch from lp:~uusijani/apt/uusi-branch:
759 Correct fi translation for hash sum mismatches (lp:420403)
760 Thanks to Jani Uusitalo
761
762 -- Michael Vogt <mvo@debian.org> Tue, 06 Mar 2012 14:14:26 +0100
763
764 apt (0.8.15.9) unstable; urgency=low
765
766 [ David Kalnischkies ]
767 * Symbol file update
768 * doc/apt-get.8.xml:
769 - change wording of autoremove description as suggested
770 by Robert Simmons, thanks! (Closes: #641490)
771 * apt-pkg/deb/dpkgpm.cc:
772 - use std::vector instead of fixed size arrays to store args and
773 multiarch-packagename strings
774 - load the dpkg base arguments only one time and reuse them later
775 * cmdline/apt-get.cc:
776 - follow Provides in the evaluation of saving candidates, too, for
777 statisfying garbage package dependencies (Closes: #640590)
778 * apt-pkg/algorithms.cc:
779 - if a package is garbage, don't try to save it with FixByInstall
780 * apt-pkg/init.cc:
781 - silently ignore *.orig and *.save files by default
782 * apt-pkg/policy.cc:
783 - accept generic release pin expressions again in -t (Closes: #644166)
784 * apt-pkg/deb/debmetaindex.cc:
785 - none is a separator, not a language: no need for Index (Closes: #624218)
786 * apt-pkg/aptconfiguration.cc:
787 - do not builtin languages only if none is forced (Closes: #643787)
788 * doc/apt.conf.5.xml:
789 - apply spelling fix by Kevin Lyda, thanks! (Closes: #644104)
790
791 [ Christian Perrier ]
792 * Fix spelling error (sensée) in French translation. Thanks
793 to Corentin Le Gall for spotting it.
794
795 [ Colin Watson ]
796 * ftparchive/cachedb.cc:
797 - fix buffersize in bytes2hex
798
799 [ Michael Vogt ]
800 * ftparchive/cachedb.cc:
801 - make buffer fully dynamic (thanks to Colin Watson)
802
803 -- Michael Vogt <mvo@debian.org> Fri, 14 Oct 2011 12:00:09 +0200
804
805 apt (0.8.15.8) unstable; urgency=low
806
807 [ David Kalnischkies ]
808 * cmdline/apt-get.cc:
809 - output list of virtual package providers to c1out in -q=1
810 instead of /dev/null to unbreak sbuild (LP: #816155)
811
812 [ Michael Vogt ]
813 * apt-pkg/contrib/configuration.cc:
814 - fix double delete (LP: #848907)
815 - ignore only the invalid regexp instead of all options
816
817 -- Michael Vogt <mvo@debian.org> Wed, 14 Sep 2011 12:08:25 +0200
818
819 apt (0.8.15.7) unstable; urgency=low
820
821 [ David Kalnischkies ]
822 * apt-pkg/packagemanager.cc, apt-pkg/pkgcache.cc:
823 - ignore "self"-conflicts for all architectures of a package
824 instead of just for the architecture of the package look at
825 in the ordering of installations, too (LP: #802901)
826 - M-A:same lockstep unpack should operate on installed
827 packages first (LP: #835625)
828 * test/*
829 - reorganize the various testcases and helper we have and
830 integrate them better into the buildsystem
831 - run the test/libapt testcases at package build-time
832 * debian/apt.symbols:
833 - add the newly added symbols since 0.8.15.3
834 * cmdline/apt-get.cc:
835 - remove the binary caches in 'apt-get clean' as it is the first
836 thing recommend by many supporters in case of APT segfaults
837 - remove the caches in 'apt-get update', too, as they will be
838 invalid in most cases anyway
839 * apt-pkg/acquire-item.cc:
840 - if no Release.gpg file is found try to verify with hashes,
841 but do not fail if a hash can't be found
842 * apt-pkg/acquire.cc:
843 - non-existing directories are by definition clean
844 * cmdline/apt-key:
845 - if command is 'add' do not error out if the specified
846 keyring doesn't exist, it will be created by gpg
847 * apt-pkg/orderlist.cc:
848 - prefer visiting packages marked for deletion in VisitProvides
849 if we are operating on a negative dependency so that we can
850 deal early with the fallout of this remove
851 * apt-pkg/indexrecords.cc:
852 - fix Acquire::Max-ValidTime option by interpreting it really
853 as seconds as specified in the manpage and not as days
854 - add an Acquire::Min-ValidTime option (Closes: #640122)
855 * doc/apt.conf.5.xml:
856 - reword Acquire::Max-ValidTime documentation to make clear
857 that it doesn't provide the new Min-ValidTime functionality
858
859 -- Michael Vogt <mvo@debian.org> Mon, 12 Sep 2011 16:38:46 +0200
860
861 apt (0.8.15.6) unstable; urgency=low
862
863 [ Michael Vogt ]
864 * apt-pkg/contrib/fileutl.{cc,h}:
865 - add GetModificationTime() helper
866 * apt-pkg/pkgcachegen.cc:
867 - regenerate the cache if the sources.list changes to ensure
868 that changes in the ordering there will be honored by apt
869 * apt-pkg/sourcelist.{cc,h}:
870 - add pkgSourceList::GetLastModifiedTime() helper
871 * apt-pkg/pkgcachegen.{cc,h}:
872 - use ref-to-ptr semantic in NewDepends() to ensure that the
873 libapt does not segfault if the cache is remapped in between
874 (LP: #812862)
875 - fix crash when P.Arch() was used but the cache got remapped
876 * test/integration/test-hashsum-verification:
877 - add regression test for hashsum verification
878 * apt-pkg/acquire-item.cc:
879 - if no Release.gpg file is found, still load the hashes for
880 verification (closes: #636314) and add test
881
882 [ David Kalnischkies ]
883 * lots of cppcheck fixes
884
885 -- Michael Vogt <mvo@debian.org> Mon, 15 Aug 2011 09:20:35 +0200
886
887 apt (0.8.15.5) unstable; urgency=low
888
889 [ David Kalnischkies ]
890 * apt-pkg/deb/deblistparser.cc:
891 - do not assume that the last char on a line is a \n (Closes: #633350)
892
893 -- Michael Vogt <mvo@debian.org> Thu, 28 Jul 2011 16:49:15 +0200
894
895 apt (0.8.15.4) unstable; urgency=low
896
897 [ David Miller ]
898 * apt-pkg/contrib/sha1.cc:
899 - fix illegally casts of on-stack buffer to a type requiring more
900 alignment than it has resulting in segfaults on sparc (Closes: #634696)
901
902 [ Michael Vogt ]
903 * apt-pkg/contrib/cdromutl.cc:
904 - fix escape problem when looking for the mounted devices
905 * apt-pkg/contrib/strutl.{h,cc}, test/libapt/strutil_test.cc:
906 - add new DeEscapeString() similar to DeQuoteString but
907 unescape character escapes like \0XX and \xXX (plus added
908 test)
909 * refresh po/*
910
911 -- Michael Vogt <mvo@debian.org> Tue, 26 Jul 2011 12:12:27 +0200
912
913 apt (0.8.15.3) unstable; urgency=low
914
915 [ Michael Vogt ]
916 * apt-pkg/acquire-item.cc:
917 - improve error message for a expired Release file
918 * apt-pkg/algorithms.cc:
919 - Hold back packages that would enter "policy-broken" state on upgrade
920 when doing a "apt-get upgrade"
921 * cmdline/apt-get.cc:
922 - fix missing download progress in apt-get download
923
924 [ David Kalnischkies ]
925 * apt-pkg/pkgcachegen.cc:
926 - fallback to memory if file is not writeable even if access()
927 told us the opposite before (e.g. in fakeroot 1.16) (Closes: #630591)
928 * doc/sources.list.5.xml:
929 - document available [options] for sources.list entries (Closes: 632441)
930 * doc/apt.conf.5.xml:
931 - document APT::Architectures list (Closes: #612102)
932 * cmdline/apt-get.cc:
933 - restore all important dependencies for garbage packages (LP: #806274)
934 - do not require unused partial dirs in 'source' (Closes: #633510)
935 - buildconflicts effect all architectures
936 - implement MultiarchCross for build-dep and source (Closes: #632221)
937 * apt-pkg/init.cc:
938 - use CndSet in pkgInitConfig (Closes: #629617)
939 * apt-pkg/depcache.cc:
940 - change default of APT::AutoRemove::SuggestsImportant to true
941 * cmdline/apt-key:
942 - use a tmpfile instead of /etc/apt/secring.gpg (Closes: #632596)
943 * debian/apt.postinst:
944 - remove /etc/apt/secring.gpg if it is an empty file
945 * doc/apt-cache.8.xml:
946 - apply madison typofix from John Feuerstein, thanks! (Closes: #633455)
947 * apt-pkg/policy.cc:
948 - emit an error on unknown APT::Default-Release value (Closes: #407511)
949 * apt-pkg/aptconfiguration.cc:
950 - ensure that native architecture is if not specified otherwise the
951 first architecture in the Architectures vector
952 * apt-pkg/deb/deblistparser.cc:
953 - Strip only :any and :native if MultiArch should be stripped as it is
954 save to ignore them in non-MultiArch contexts but if the dependency
955 is a specific architecture (and not the native) do not strip
956
957 -- Michael Vogt <mvo@debian.org> Mon, 25 Jul 2011 15:04:43 +0200
958
959 apt (0.8.15.2) unstable; urgency=high
960
961 * fix from David Kalnischkies for the InRelease gpg verification
962 code (LP: #784473)
963
964 -- Michael Vogt <mvo@debian.org> Tue, 12 Jul 2011 11:54:47 +0200
965
966 apt (0.8.15.1) unstable; urgency=low
967
968 [ David Kalnischkies ]
969 * doc/makefile:
970 - create doxygen directory to avoid depending on magic (Closes: #628799)
971 * cmdline/apt-key:
972 - explicitly state that net-update is not supported if no url is set
973 - require to be root for add, rm, update and net-update
974 - clarify update vs. net-update in different distros (Closes: #632043)
975 * debian/apt.symbols:
976 - forgot 'mips' in the list for all architecture dependent symbols
977 - comment out gcc-4.5 specific symbols as gcc-4.6 is now default
978 - the symbol for PrintStatus() is architecture dependent
979 * apt-pkg/policy.cc:
980 - do not segfault in pinning if a package with this name doesn't exist.
981 Thanks to Ferdinand Thommes for the report!
982 - Defaults is a vector of Pin not of PkgPin
983 - ensure that only the first specific stanza for a package is used
984 - save all stanzas which had no effect in Unmatched
985 - allow package:architecure in Package:
986
987 -- Michael Vogt <mvo@debian.org> Thu, 30 Jun 2011 10:05:36 +0200
988
989 apt (0.8.15) unstable; urgency=low
990
991 [ Julian Andres Klode ]
992 * apt-pkg/depcache.cc:
993 - Really release action groups only once (Closes: #622744)
994 - Make purge work again for config-files (LP: #244598) (Closes: #150831)
995 * apt-pkg/acquire-item.cc:
996 - Reject files known to be invalid (LP: #346386) (Closes: #627642)
997 * debian/apt.cron.daily:
998 - Check power after wait, patch by manuel-soto (LP: #705269)
999 * debian/control:
1000 - Move ${shlibs:Depends} to Pre-Depends, as we do not want APT
1001 unpacked if a library is too old and thus break upgrades
1002 * doc/apt-key.8.xml:
1003 - Document apt-key net-update (LP: #192810)
1004
1005 [ Christian Perrier ]
1006 * Galician translation update (Miguel Anxo Bouzada). Closes: #626505
1007 * Italian translation update (Milo Casagrande). Closes: #627834
1008 * German documentation translation update (Chris Leick). Closes: #629949
1009 * Catalan translation update (Jordi Mallach). Closes: #630657
1010
1011 [ David Kalnischkies ]
1012 * fix a bunch of cppcheck warnings/errors based on a patch by
1013 Niels Thykier, thanks! (Closes: #622805)
1014 * apt-pkg/depcache.cc:
1015 - really include 'rc' packages in the delete count by fixing a
1016 typo which exists since 1999 in the source… (LP: #761175)
1017 - if critical or-group can't be satisfied, exit directly.
1018 * apt-pkg/acquire-method.cc:
1019 - write directly to stdout instead of creating the message in
1020 memory first before writing to avoid hitting limits
1021 - fix order of CurrentURI and UsedMirror in Status() and Log()
1022 * apt-pkg/orderlist.cc:
1023 - let VisitRProvides report if the calls were successful
1024 * apt-pkg/deb/dpkgpm.cc:
1025 - replace obsolete usleep with nanosleep
1026 - remove invalid pkgcache.bin and rebuild it if possible
1027 - log reinstall commands in history.log
1028 * debian/apt{,-utils}.symbols:
1029 - update both experimental symbol-files to reflect 0.8.14 state
1030 * debian/rules:
1031 - remove unused embedded jquery by doxygen from libapt-pkg-doc
1032 * cmdline/apt-mark.cc:
1033 - reimplement apt-mark in c++
1034 - provide a 'showmanual' command (Closes: #582791)
1035 - provide a 'dpkg --set-selections' wrapper to set/release holds
1036 * cmdline/apt-get.cc:
1037 - deprecate mostly undocumented 'markauto' in favor of 'apt-mark'
1038 * cmdline/apt-cache.cc:
1039 - deprecate mostly undocumented 'showauto' in favor of 'apt-mark'
1040 * apt-pkg/pkgcache.cc:
1041 - really ignore :arch in FindPkg() in non-multiarch environment
1042 * doc/po/de.po:
1043 - undo the translation of the command 'dump' in manpage of apt-config
1044 as report by Burghard Grossmann on debian-l10n-german, thanks!
1045 * apt-pkg/deb/debmetaindex.cc:
1046 - do not download TranslationIndex if no Translation-* will be
1047 downloaded later on anyway (Closes: #624218)
1048 * test/versions.lst:
1049 - disable obscure version number tests with versions dpkg doesn't
1050 allow any more as they don't start with a number
1051 * apt-pkg/acquire-worker.cc:
1052 - print filename in the unmatching size warning (Closes: #623137)
1053 * apt-pkg/acquire-item.cc:
1054 - apply fix for poorly worded 'locate file' error message from
1055 Ben Finney, thanks! (Closes: #623171)
1056 * methods/http.cc:
1057 - add config option to ignore a closed stdin to be able to easily
1058 use the method as a simple standalone downloader
1059 - Location header in redirects should be absolute URI, but some
1060 servers just send an absolute path so still deal with it properly
1061 - dequote URL taken from Location in redirects as we will otherwise
1062 quote an already quoted string in the request later (Closes: #602412)
1063 * apt-pkg/contrib/netrc.cc:
1064 - replace non-posix gnu-extension strdupa with strdup
1065 * apt-pkg/packagemanager.cc:
1066 - ensure for Multi-Arch:same packages that they are unpacked in
1067 lock step even in immediate configuration (Closes: #618288)
1068 * apt-pkg/init.cc:
1069 - don't set deprecated APT::Acquire::Translation, thanks Jörg Sommer!
1070 * cmdline/apt-config.cc:
1071 - show Acquire::Languages and APT::Architectures settings
1072 in 'dump' (Closes: 626739)
1073 * apt-pkg/orderlist.cc:
1074 - ensure that an old version of a package with a provides can
1075 never satisfy a dependency of a newer version of this package
1076
1077 [ Michael Vogt ]
1078 * methods/mirror.cc:
1079 - ignore lines starting with "#" in the mirror file
1080 - ignore non http urls in the mirrors
1081 - append the dist (e.g. sid, wheezy) as a query string when
1082 asking for a suitable mirror
1083 * apt-pkg/deb/deblistparser.cc:
1084 - include all known languages when building the apt cache
1085 (LP: #794907)
1086 * apt-pkg/deb/debindexfile.cc:
1087 - remove some no longer valid checks for "TranslationsAvailable()"
1088
1089 [ Kenneth Solbø Andersen ]
1090 * apt-pkg/deb/dpkgpm.cc:
1091 - set permissions of term.log to root.adm and 644 (LP: #404724)
1092
1093 [ Chris Leick ]
1094 * various typo and syntax corrections in doc/*.xml
1095
1096 -- Michael Vogt <mvo@debian.org> Tue, 28 Jun 2011 18:00:48 +0200
1097
1098 apt (0.8.15~exp3) experimental; urgency=low
1099
1100 * debian/control:
1101 - add Breaks: 0.8.15~exp3) for libapt-pkg4.10 and
1102 libapt-inst1.2 (thanks to Jonathan Nieder, closes: #630214)
1103 - use depends for the ${shlibs:Depends} to make the breaks work
1104
1105 -- Michael Vogt <mvo@debian.org> Fri, 17 Jun 2011 21:51:41 +0200
1106
1107 apt (0.8.15~exp2) experimental; urgency=low
1108
1109 * debian/control:
1110 - fix incorrect Replaces (closes: #630204) for libapt-inst1.2
1111
1112 -- Michael Vogt <mvo@debian.org> Wed, 15 Jun 2011 16:51:14 +0200
1113
1114 apt (0.8.15~exp1) experimental; urgency=low
1115
1116 [ Julian Andres Klode ]
1117 * apt-pkg/depcache.cc:
1118 - Really release action groups only once (Closes: #622744)
1119 - Make purge work again for config-files (LP: #244598) (Closes: #150831)
1120 * apt-pkg/acquire-item.cc:
1121 - Reject files known to be invalid (LP: #346386) (Closes: #627642)
1122 * debian/apt.cron.daily:
1123 - Check power after wait, patch by manuel-soto (LP: #705269)
1124 * debian/control:
1125 - Move ${shlibs:Depends} to Pre-Depends, as we do not want APT
1126 unpacked if a library is too old and thus break upgrades
1127 * doc/apt-key.8.xml:
1128 - Document apt-key net-update (LP: #192810)
1129
1130 [ Christian Perrier ]
1131 * Galician translation update (Miguel Anxo Bouzada). Closes: #626505
1132 * Italian translation update (Milo Casagrande). Closes: #627834
1133 * German documentation translation update (Chris Leick). Closes: #629949
1134
1135 [ David Kalnischkies ]
1136 * fix a bunch of cppcheck warnings/errors based on a patch by
1137 Niels Thykier, thanks! (Closes: #622805)
1138 * apt-pkg/depcache.cc:
1139 - really include 'rc' packages in the delete count by fixing a
1140 typo which exists since 1999 in the source… (LP: #761175)
1141 - if critical or-group can't be satisfied, exit directly.
1142 * apt-pkg/acquire-method.cc:
1143 - write directly to stdout instead of creating the message in
1144 memory first before writing to avoid hitting limits
1145 - fix order of CurrentURI and UsedMirror in Status() and Log()
1146 * apt-pkg/orderlist.cc:
1147 - let VisitRProvides report if the calls were successful
1148 * apt-pkg/deb/dpkgpm.cc:
1149 - replace obsolete usleep with nanosleep
1150 * debian/apt{,-utils}.symbols:
1151 - update both experimental symbol-files to reflect 0.8.14 state
1152 * debian/rules:
1153 - remove unused embedded jquery by doxygen from libapt-pkg-doc
1154 * cmdline/apt-mark.cc:
1155 - reimplement apt-mark in c++
1156 - provide a 'showmanual' command (Closes: #582791)
1157 - provide a 'dpkg --set-selections' wrapper to set/release holds
1158 * cmdline/apt-get.cc:
1159 - deprecate mostly undocumented 'markauto' in favor of 'apt-mark'
1160 * cmdline/apt-cache.cc:
1161 - deprecate mostly undocumented 'showauto' in favor of 'apt-mark'
1162 * apt-pkg/pkgcache.cc:
1163 - really ignore :arch in FindPkg() in non-multiarch environment
1164 * doc/po/de.po:
1165 - undo the translation of the command 'dump' in manpage of apt-config
1166 as report by Burghard Grossmann on debian-l10n-german, thanks!
1167 * apt-pkg/deb/debmetaindex.cc:
1168 - do not download TranslationIndex if no Translation-* will be
1169 downloaded later on anyway (Closes: #624218)
1170 * test/versions.lst:
1171 - disable obscure version number tests with versions dpkg doesn't
1172 allow any more as they don't start with a number
1173 * apt-pkg/acquire-worker.cc:
1174 - print filename in the unmatching size warning (Closes: #623137)
1175 * apt-pkg/acquire-item.cc:
1176 - apply fix for poorly worded 'locate file' error message from
1177 Ben Finney, thanks! (Closes: #623171)
1178 * methods/http.cc:
1179 - add config option to ignore a closed stdin to be able to easily
1180 use the method as a simple standalone downloader
1181 - Location header in redirects should be absolute URI, but some
1182 servers just send an absolute path so still deal with it properly
1183 - dequote URL taken from Location in redirects as we will otherwise
1184 quote an already quoted string in the request later (Closes: #602412)
1185 * apt-pkg/contrib/netrc.cc:
1186 - replace non-posix gnu-extension strdupa with strdup
1187 * apt-pkg/packagemanager.cc:
1188 - ensure for Multi-Arch:same packages that they are unpacked in
1189 lock step even in immediate configuration (Closes: #618288)
1190
1191 [ Michael Vogt ]
1192 * methods/mirror.cc:
1193 - ignore lines starting with "#" in the mirror file
1194 - ignore non http urls in the mirrors
1195 - append the dist (e.g. sid, wheezy) as a query string when
1196 asking for a suitable mirror
1197 * debian/control:
1198 - add libapt-pkg4.10 and libapt-inst1.2 library packages
1199
1200 -- Michael Vogt <mvo@debian.org> Fri, 10 Jun 2011 15:32:07 +0200
1201
1202 apt (0.8.14.2) UNRELEASED; urgency=low
1203
1204 [ Julian Andres Klode ]
1205 * apt-pkg/depcache.cc:
1206 - Really release action groups only once (Closes: #622744)
1207 - Make purge work again for config-files (LP: #244598) (Closes: #150831)
1208 * debian/apt.cron.daily:
1209 - Check power after wait, patch by manuel-soto (LP: #705269)
1210 * debian/control:
1211 - Move ${shlibs:Depends} to Pre-Depends, as we do not want APT
1212 unpacked if a library is too old and thus break upgrades
1213 * doc/apt-key.8.xml:
1214 - Document apt-key net-update (LP: #192810)
1215
1216 [ Christian Perrier ]
1217 * Galician translation update (Miguel Anxo Bouzada). Closes: #626505
1218
1219 [ David Kalnischkies ]
1220 * fix a bunch of cppcheck warnings/errors based on a patch by
1221 Niels Thykier, thanks! (Closes: #622805)
1222 * apt-pkg/depcache.cc:
1223 - really include 'rc' packages in the delete count by fixing a
1224 typo which exists since 1999 in the source… (LP: #761175)
1225 - if critical or-group can't be satisfied, exit directly.
1226 * apt-pkg/acquire-method.cc:
1227 - write directly to stdout instead of creating the message in
1228 memory first before writing to avoid hitting limits
1229 - fix order of CurrentURI and UsedMirror in Status() and Log()
1230 * apt-pkg/orderlist.cc:
1231 - let VisitRProvides report if the calls were successful
1232 * apt-pkg/deb/dpkgpm.cc:
1233 - replace obsolete usleep with nanosleep
1234 * debian/apt{,-utils}.symbols:
1235 - update both experimental symbol-files to reflect 0.8.14 state
1236 * debian/rules:
1237 - remove unused embedded jquery by doxygen from libapt-pkg-doc
1238 * cmdline/apt-mark.cc:
1239 - reimplement apt-mark in c++
1240 - provide a 'showmanual' command (Closes: #582791)
1241 - provide a 'dpkg --set-selections' wrapper to set/release holds
1242 * cmdline/apt-get.cc:
1243 - deprecate mostly undocumented 'markauto' in favor of 'apt-mark'
1244 * cmdline/apt-cache.cc:
1245 - deprecate mostly undocumented 'showauto' in favor of 'apt-mark'
1246 * apt-pkg/pkgcache.cc:
1247 - really ignore :arch in FindPkg() in non-multiarch environment
1248 * doc/po/de.po:
1249 - undo the translation of the command 'dump' in manpage of apt-config
1250 as report by Burghard Grossmann on debian-l10n-german, thanks!
1251 * apt-pkg/deb/debmetaindex.cc:
1252 - do not download TranslationIndex if no Translation-* will be
1253 downloaded later on anyway (Closes: #624218)
1254 * test/versions.lst:
1255 - disable obscure version number tests with versions dpkg doesn't
1256 allow any more as they don't start with a number
1257 * apt-pkg/acquire-worker.cc:
1258 - print filename in the unmatching size warning (Closes: #623137)
1259 * apt-pkg/acquire-item.cc:
1260 - apply fix for poorly worded 'locate file' error message from
1261 Ben Finney, thanks! (Closes: #623171)
1262 * methods/http.cc:
1263 - add config option to ignore a closed stdin to be able to easily
1264 use the method as a simple standalone downloader
1265 - Location header in redirects should be absolute URI, but some
1266 servers just send an absolute path so still deal with it properly
1267 - dequote URL taken from Location in redirects as we will otherwise
1268 quote an already quoted string in the request later (Closes: #602412)
1269 * apt-pkg/contrib/netrc.cc:
1270 - replace non-posix gnu-extension strdupa with strdup
1271 * apt-pkg/packagemanager.cc:
1272 - ensure for Multi-Arch:same packages that they are unpacked in
1273 lock step even in immediate configuration (Closes: #618288)
1274
1275 -- Michael Vogt <mvo@debian.org> Mon, 16 May 2011 14:57:52 +0200
1276
1277 apt (0.8.14.1) unstable; urgency=low
1278
1279 * apt-pkg/acquire-item.cc:
1280 - Only try to rename existing Release files (Closes: #622912)
1281
1282 -- Julian Andres Klode <jak@debian.org> Sat, 16 Apr 2011 14:36:10 +0200
1283
1284 apt (0.8.14) unstable; urgency=low
1285
1286 [ Julian Andres Klode ]
1287 * apt-pkg/indexcopy.cc:
1288 - Use RealFileExists() instead of FileExists(), allows amongst other
1289 things a directory named Sources to exist on a CD-ROM (LP: #750694).
1290 * apt-pkg/acquire-item.cc:
1291 - Use Release files even if they cannot be verified (LP: #704595)
1292 * cmdline/apt-get.cc:
1293 - Do not install recommends for build-dep (Closes: #454479) (LP: #245273)
1294 * apt-pkg/deb/deblistparser.cc:
1295 - Handle no space before "[" in build-dependencies (LP: #72344)
1296 * apt-pkg/policy.cc:
1297 - Allow pinning by glob() expressions, and regular expressions
1298 surrounded by slashes (the "/" character) (LP: #399474)
1299 (Closes: #121132)
1300 * debian/control:
1301 - Set Standards-Version to 3.9.2
1302
1303 [ Michael Vogt ]
1304 * mirror method:
1305 - do not crash if the mirror file fails to download
1306 * apt-pkg/aptconfiguration.cc:
1307 - fix comparing for a empty string
1308 * debian/apt.cron.daily:
1309 - run unattended-upgrades even if there was a error during
1310 the apt-get update (LP: #676295)
1311
1312 [ David Kalnischkies ]
1313 * apt-pkg/pkgcache.cc:
1314 - use the native Architecture stored in the cache header instead of
1315 loading it from configuration as suggested by Julian Andres Klode
1316
1317 -- Julian Andres Klode <jak@debian.org> Fri, 15 Apr 2011 14:28:15 +0200
1318
1319 apt (0.8.13.2) unstable; urgency=low
1320
1321 [ David Kalnischkies ]
1322 * apt-pkg/deb/dpkgpm.cc:
1323 - skip --configure if all packages disappeared
1324 * apt-pkg/vendor.cc, apt-pkg/vendorlist.cc:
1325 - mark them as deprecated as they are unused
1326 * apt-pkg/deb/deblistparser.h:
1327 - enable StripMultiArch by default for ParseDepends
1328 * debian/apt.conf.autoremove:
1329 - adapt to new gnumach kernel package naming (Closes: #619337)
1330 * doc/apt_preferences.5.xml:
1331 - correct typo spotted by Charles Plessy (Closes: #619088)
1332 - document ButAutomaticUpgrades together with NotAutomatic
1333 as suggested by Charles Plessy (Closes: #619083)
1334 * apt-pkg/depcache.cc:
1335 - remove pseudo handling leftover from SetReInstall
1336 - do not change protected packages in autoinstall (Closes: #618848)
1337 * apt-pkg/pkgcachegen.cc:
1338 - make "all"->"native" an implementation detail of NewPackage
1339 rather than rewrite it in higher methods
1340 * apt-pkg/cacheiterator.h:
1341 - return "all" instead of native architecture without breaking the abi
1342 (too much) by extending enum instead of using bitflags (LP: #733741)
1343 * apt-pkg/aptconfiguration.cc:
1344 - use dpkg --print-foreign-architectures to get multiarch configuration
1345 if non is specified with APT::Architectures (Closes: #612958)
1346 * cmdline/apt-get.cc:
1347 - do not show simulation notice for non-root commands (Closes: #619072)
1348 - be able to disable resolver with APT::Get::CallResolver and disable
1349 auto installation with APT::Get::AutoSolving
1350 * apt-pkg/deb/deblistparser.cc:
1351 - create foo:any provides for all architectures for an allowed package
1352
1353 -- Michael Vogt <mvo@debian.org> Tue, 05 Apr 2011 09:40:28 +0200
1354
1355 apt (0.8.13.1) unstable; urgency=low
1356
1357 * apt-pkg/acquire-item.cc: Use stat buffer if stat was
1358 successful, not if it failed (Closes: #620546)
1359
1360 -- Julian Andres Klode <jak@debian.org> Sat, 02 Apr 2011 20:55:35 +0200
1361
1362 apt (0.8.13) unstable; urgency=low
1363
1364 [ Thorsten Spindler ]
1365 * methods/rsh.cc
1366 - fix rsh/ssh option parsing (LP: #678080), thanks to
1367 Ville Mattila
1368
1369 [ Michael Vogt ]
1370 * apt-pkg/acquire-item.cc:
1371 - mark pkgAcqIndexTrans as Index-File to avoid asking the
1372 user to insert the CD on each apt-get update
1373 * po/sl.po:
1374 - updated, thanks to Andrej Znidarsic
1375 * mirror method:
1376 - when downloading data, show the mirror being used
1377 - randomize mirror list after download in a host specific way
1378 to ensure that the load is evenly spreaded accross the mirrors
1379 - fix some missing "Fail-Ignore"
1380
1381 -- Michael Vogt <mvo@debian.org> Wed, 16 Mar 2011 08:04:42 +0100
1382
1383 apt (0.8.12) unstable; urgency=low
1384
1385 [ Michael Vogt ]
1386 * apt-pkg/deb/debindexfile.cc:
1387 - ignore missing deb-src files in /var/lib/apt/lists, thanks
1388 to Thorsten Spindler (LP: #85590)
1389 * apt-pkg/contrib/fileutl.cc, apt-pkg/deb/dpkgpm.cc:
1390 - honor Dpkg::Chroot-Directory in the RunScripts*() methods
1391 * apt-pkg/contrib/cdromutl.{cc,h}, apt-pkg/cdrom.{cc,h}:
1392 - deal with missing FSTAB_DIR when using libudev to discover cdrom
1393 - add experimental APT::cdrom::CdromOnly option (on by default).
1394 When this is set to false apt-cdrom will handle any removable
1395 deivce (like a usb-stick) as a "cdrom/dvd" source
1396
1397 [ Christian Perrier ]
1398 * Fix error in French translation of manpages (apt_preferences(5)).
1399 Merci, Rémi Vanicat. Closes: #613689
1400 * Complete French manpage translation
1401 * Italian translation update (Milo Casagrande). Closes: #614395
1402
1403 [ David Kalnischkies ]
1404 * ftparchive/multicompress.cc, apt-inst/deb/debfile.cc:
1405 - support xz compressor to create xz-compressed Indexes and be able
1406 to open data.tar.xz files
1407 - load the supported compressors from configuration
1408 * ftparchive/writer.cc:
1409 - ensure that Date and Valid-Until time strings are not localised
1410 - add options to disable specific checksums for Indexes
1411 - include xz-compressed Packages and Sources files in Release file
1412 * apt-pkg/aptconfiguration.cc:
1413 - support download of xz-compressed indexes files
1414 - support adding new compressors by configuration
1415 * apt-pkg/deb/debsrcrecords.cc:
1416 - support xz-compressed source v3 debian.tar files
1417 - support every compression we have a compressor configured
1418 * ftparchive/contents.cc:
1419 - remove ExtractArchive codecopy from apt-inst/deb/debfile.cc
1420 * apt-inst/deb/debfile.cc:
1421 - support data.tar's compressed with any configured compressor
1422 * cmdline/apt-get.cc:
1423 - reinstall dependencies of reinstalled "garbage" (Closes: #617257)
1424
1425 [ Steve Langasek ]
1426 * apt-pkg/deb/dpkgpm.cc:
1427 - make sure that for multiarch packages, we are passing the full
1428 qualified package name to dpkg for removals. (Closes: #614298)
1429 * Remove the "pseudopackage" handling of Architecture: all packages for
1430 Multi-Arch; instead, Arch: all packages only satisfy dependencies for
1431 the native arch, except where the Arch: all package is declared
1432 Multi-Arch: foreign. (Closes: #613584)
1433
1434 -- Michael Vogt <mvo@debian.org> Thu, 10 Mar 2011 14:46:48 +0100
1435
1436 apt (0.8.11.5) unstable; urgency=low
1437
1438 [ Christian Perrier ]
1439 * Add missing dot in French translation of manpages. Merci, Olivier
1440 Humbert.
1441 * French translation update
1442 * French manpages translation update
1443
1444 [ David Kalnischkies ]
1445 * apt-pkg/depcache.cc:
1446 - party revert fix in 0.8.11.2 which marked all packages as manual
1447 installed if the FromUser bit is set in the MarkInstall call.
1448 The default for this bit is true and aptitude depends on the old
1449 behavior so the package is only marked as manual if its not marked
1450 ("old" behavior) or if automatic installation is enabled - which
1451 aptitude disables always (see also #613775)
1452
1453 -- David Kalnischkies <kalnischkies@gmail.com> Thu, 17 Feb 2011 15:16:31 +0100
1454
1455 apt (0.8.11.4) unstable; urgency=low
1456
1457 [ David Kalnischkies ]
1458 * apt-pkg/contrib/error.cc:
1459 - ensure that va_list is not invalid in second try
1460 * cmdline/apt-get.cc:
1461 - don't remove new dependencies of garbage packages (Closes: #613420)
1462
1463 [ Michael Vogt ]
1464 * test/integration/*
1465 - fix dashish in the integration tests
1466
1467 -- Michael Vogt <mvo@debian.org> Wed, 16 Feb 2011 14:36:03 +0100
1468
1469 apt (0.8.11.3) unstable; urgency=low
1470
1471 * apt-pkg/contrib/fileutl.cc:
1472 - really detect bigendian machines by including config.h,
1473 so we can really (Closes: #612986)
1474 * apt-pkg/contrib/mmap.cc:
1475 - Base has as 'valid' failure states 0 and -1 so add a simple
1476 validData method to check for failure states
1477
1478 -- David Kalnischkies <kalnischkies@gmail.com> Mon, 14 Feb 2011 16:58:03 +0100
1479
1480 apt (0.8.11.2) unstable; urgency=low
1481
1482 [ Michael Vogt ]
1483 * merged lp:~evfool/apt/fix641673:
1484 - String-fix in the source and the translations for the grammatical
1485 mistake reported in bug LP: #641673, thanks to Robert Roth
1486 * merged lp:~evfool/apt/fix418552:
1487 - Grammar fix for bug LP: #418552, thanks to Robert Roth
1488
1489 [ David Kalnischkies ]
1490 * cmdline/apt-get.cc:
1491 - add --install-suggests option (Closes: #473089)
1492 * apt-pkg/depcache.cc:
1493 - mark a package which was requested to be installed on commandline
1494 always as manual regardless if it is already marked or not as the
1495 marker could be lost later by the removal of rdepends (Closes: #612557)
1496 * methods/rred.cc:
1497 - read patch into MMap only if we work on uncompressed patches
1498 - update size of dynamic MMap as we write in from the outside
1499 * apt-pkg/contrib/mmap.cc:
1500 - do not try to free the mapping if its is unset
1501 * apt-pkg/contrib/fileutl.cc:
1502 - reorder the loaded filesize bytes for big endian (Closes: #612986)
1503 Thanks to Jörg Sommer for the detailed analyse!
1504
1505 -- Michael Vogt <mvo@debian.org> Mon, 14 Feb 2011 12:07:18 +0100
1506
1507 apt (0.8.11.1) unstable; urgency=low
1508
1509 [ Stefan Lippers-Hollmann ]
1510 * cmdline/apt-key:
1511 - fix root test which prevented setting of trustdb-name
1512 which lets gpg fail if it adds/remove keys from trusted.gpg
1513 as it tries to open the (maybe) not existent /root/.gnupg
1514
1515 [ David Kalnischkies ]
1516 * debian/apt.symbols:
1517 - add more arch dependent symbols
1518
1519 -- Michael Vogt <mvo@debian.org> Wed, 09 Feb 2011 17:49:59 +0100
1520
1521 apt (0.8.11) unstable; urgency=low
1522
1523 [ David Kalnischkies ]
1524 * apt-pkg/depcache.cc:
1525 - add SetCandidateRelease() to set a candidate version and
1526 the candidates of dependencies if needed to a specified
1527 release (Closes: #572709)
1528 - allow conflicts in the same group again (Closes: #612099)
1529 * cmdline/apt-get.cc:
1530 - if --print-uris is used don't setup downloader as we don't need
1531 progress, lock nor the directories it would create otherwise
1532 - show dependencies of essential packages which are going to remove
1533 only if they cause the remove of this essential (Closes: #601961)
1534 - keep not installed garbage packages uninstalled instead of showing
1535 in the autoremove section and installing those (Closes: #604222)
1536 - change pkg/release behavior to use the new SetCandidateRelease
1537 so installing packages from experimental or backports is easier
1538 - really do not show packages in the extra section if they were
1539 requested on the commandline, e.g. with a modifier (Closes: #184730)
1540 - always do removes first and set not installed remove packages
1541 on hold to prevent temporary installation later (Closes: #549968)
1542 * debian/control:
1543 - add Vcs-Browser now that loggerhead works again (Closes: #511168)
1544 - depend on debhelper 7 to raise compat level
1545 - depend on dpkg-dev (>= 1.15.8) to have c++ symbol mangling
1546 * apt-pkg/contrib/fileutl.cc:
1547 - add a RealFileExists method and check that your configuration files
1548 are real files to avoid endless loops if not (Closes: #604401)
1549 - ignore non-regular files in GetListOfFilesInDir (Closes: #594694)
1550 * apt-pkg/contrib/weakptr.h:
1551 - include stddefs.h to fix compile error (undefined NULL) with gcc-4.6
1552 * methods/https.cc:
1553 - fix CURLOPT_SSL_VERIFYHOST by really passing 2 to it if enabled
1554 * deb/dpkgpm.cc:
1555 - fix popen/fclose mismatch reported by cppcheck. Thanks to Petter
1556 Reinholdtsen for report and patch! (Closes: #607803)
1557 * doc/apt.conf.5.xml:
1558 - fix multipl{y,e} spelling error reported by Jakub Wilk (Closes: #607636)
1559 * apt-inst/contrib/extracttar.cc:
1560 - let apt-utils work with encoded tar headers if uid/gid are large.
1561 Thanks to Nobuhiro Hayashi for the patch! (Closes: #330162)
1562 * apt-pkg/cacheiterator.h:
1563 - do not segfault if cache is not build (Closes: #254770)
1564 * doc/apt-get.8.xml:
1565 - remove duplicated mentioning of --install-recommends
1566 * doc/sources.list.5.xml:
1567 - remove obsolete references to non-us (Closes: #594495)
1568 - a notice is printed for ignored files (Closes: #597615)
1569 * debian/rules:
1570 - use -- instead of deprecated -u for dh_gencontrol
1571 - remove shlibs.local creation and usage
1572 - show differences in the symbol files, but never fail
1573 * pre-build.sh:
1574 - remove as it is not needed for a working 'bzr bd'
1575 * debian/{apt,apt-utils}.symbols:
1576 - ship experimental unmangled c++ symbol files
1577 * methods/rred.cc:
1578 - operate optional on gzip compressed pdiffs
1579 * apt-pkg/acquire-item.cc:
1580 - don't uncompress downloaded pdiff files before feeding it to rred
1581 - try downloading clearsigned InRelease before trying Release.gpg
1582 - change the internal handling of Extensions in pkgAcqIndex
1583 - add a special uncompressed compression type to prefer those files
1584 - download and use i18n/Index to choose which Translations to download
1585 * cmdline/apt-key:
1586 - don't set trustdb-name as non-root so 'list' and 'finger'
1587 can be used without being root (Closes: #393005, #592107)
1588 * apt-pkg/deb/deblistparser.cc:
1589 - rewrite LoadReleaseInfo to cope with clearsigned Releasefiles
1590 * ftparchive/writer.cc:
1591 - add config option to search for more patterns in release command
1592 - include Index files by default in the Release file
1593 * methods/{gzip,bzip}.cc:
1594 - print a good error message if FileSize() is zero
1595 * apt-pkg/aptconfiguration.cc:
1596 - remove the inbuilt Translation files whitelist
1597 * cmdline/apt-cache.cc:
1598 - remove not implemented 'apt-cache add' command
1599 * doc/apt-cache.8.xml:
1600 - describe reality as apt-cache just queries and doesn't manipulate
1601 the caches. Thanks to Enrico Zini for spotting it! (Closes: #612009)
1602 * apt-pkg/algorithms.cc:
1603 - mark pseudo packages of installed all packages as configured
1604 in the simulation as we don't call configure for these packages
1605 * apt-pkg/pkgcachegen.cc:
1606 - in multiarch, let :all packages conflict with :any packages
1607 with a different version to be sure
1608 * apt-pkg/contrib/error.cc:
1609 - remove 400 char size limit of error messages (LP: #365611)
1610
1611 [ Michael Vogt ]
1612 * methods/http.cc:
1613 - do not hang if Acquire::http::ProxyAutoDetect can not be
1614 executed or returns no data (LP: #654393)
1615 * debian/apt.conf.autoremove:
1616 - never autoremove the GNU/Hurd kernel (closes: #588423), thanks
1617 to Guillem Jover
1618 * apt-pkg/cdrom.cc, apt-pkg/init.cc, methods/cdrom.cc:
1619 - use /media/cdrom as default mountoint (closes: #611569)
1620 * cmdline/apt-get.cc:
1621 - add apt-get changelog (closes: #526990)
1622 - add apt-get download (closes: #82738)
1623
1624 [ Martin Pitt ]
1625 * test/integration/test-compressed-indexes, test/test-indexes.sh:
1626 - Explicitly disable compressed indexes at the start. This ensures that we
1627 will actually test uncompressed indexes regardless of the internal
1628 default value of Acquire::GzipIndexes.
1629
1630 -- Michael Vogt <mvo@debian.org> Tue, 08 Feb 2011 12:58:12 +0100
1631
1632 apt (0.8.10.3) unstable; urgency=low
1633
1634 [ Programs translations ]
1635 * po/es.po: Updated, plus fixes encoding issues and fixes two fuzzy
1636 strings, thanks to Javier Fernandez-Sanguino (closes: #610692)
1637
1638 -- Michael Vogt <mvo@debian.org> Tue, 25 Jan 2011 11:51:42 +0100
1639
1640 apt (0.8.10.2) unstable; urgency=low
1641
1642 [ David Kalnischkies ]
1643 * ftparchive/apt-ftparchive.cc:
1644 - fix endless loop for multiple TranslationsWriters
1645
1646 -- Michael Vogt <mvo@debian.org> Tue, 25 Jan 2011 10:26:15 +0100
1647
1648 apt (0.8.10.1) unstable; urgency=low
1649
1650 [ Christian Perrier ]
1651 * Fix encoding for Slovenian translation. PO file switched
1652 to UTF-8. Closes: #609957
1653
1654 [ Julian Andres Klode ]
1655 * cmdline/apt-cache.cc: Create an error for apt-cache depends
1656 if packages could not found (LP: #647045)
1657
1658 [ Programs translations ]
1659 * Spanish update by Javier Fernández-Sanguino Peña. Closes: #607145
1660
1661 [ Manpages translations ]
1662 * Correct a typo and an error in French manpages translation.
1663 Closes: # 607170
1664
1665 -- Michael Vogt <mvo@debian.org> Mon, 17 Jan 2011 13:41:04 +0100
1666
1667 apt (0.8.10) unstable; urgency=low
1668
1669 [ Programs translations ]
1670 * Czech by Miroslav Kure. Closes: #605107
1671
1672 [ Martin Pitt ]
1673 * test/integration/test-compressed-indexes, test/test-indexes.sh:
1674 - Explicitly disable compressed indexes at the start. This ensures that we
1675 will actually test uncompressed indexes regardless of the internal
1676 default value of Acquire::GzipIndexes.
1677
1678 [ David Kalnischkies ]
1679 * apt-pkg/algorithms.cc:
1680 - mark all installed packages first without auto installation in
1681 a dist-upgrade to prefer upgrading packages instead of installing
1682 new packages in versioned or-groups (Closes: #605394)
1683
1684 -- Michael Vogt <mvo@debian.org> Tue, 30 Nov 2010 10:42:17 +0100
1685
1686 apt (0.8.9) unstable; urgency=low
1687
1688 [ Christian Perrier ]
1689 * Fix "typos" in French manpages translations. Thanks to
1690 Cyril Brulebois for bashing me.
1691 * Drop useless untranslatable sections from apt.8
1692
1693 [ Programs translations ]
1694 * Slovenian update by Andrej Žnidaršič and Rosetta Slovenian team
1695 * German update by Holger Wansing. Closes: #603619
1696
1697 [ David Kalnischkies ]
1698 * apt-pkg/aptconfiguration.cc:
1699 - evaluate Acquire::Languages= before LANG= (Closes: #602573)
1700 * apt-pkg/orderlist.cc:
1701 - try fixing before removing even if the fix is hidden in
1702 a provides, hidden in the #590438 testcase
1703 * apt-pkg/algorithms.cc:
1704 - if the package was explicitly marked as ToRemove don't
1705 consider it as a candidate for FixByInstall
1706 * apt-pkg/depcache.cc:
1707 - don't install previously not installed providers in a try
1708 to statisfy a "Breaks: provides" dependency by upgrade
1709 * cmdline/acqprogress.cc:
1710 - don't ask the user for media change if quiet >= 2, stdout is not
1711 a tty and assume-yes, force-yes or trivial-only option is set to
1712 avoid cpu eating endless loops in unattended runs like apt.cron
1713 (Closes: #602354, LP: #665580)
1714
1715 -- Michael Vogt <mvo@debian.org> Thu, 18 Nov 2010 09:25:04 +0100
1716
1717 apt (0.8.8) unstable; urgency=low
1718
1719 [ David Kalnischkies ]
1720 * apt-pkg/contrib/fileutl.cc:
1721 - Add a FileFd::FileSize() method to get the size of the underlying
1722 file and not the size of the content in the file as FileFd::Size()
1723 does - the sizes can differ since the direct gzip integration
1724 * methods/{gzip,bzip2}.cc:
1725 - use FileSize() to determine if the file is invalid (Closes: #600852)
1726 * apt-pkg/pkgcache.cc:
1727 - fallback always to a suitable description (Closes: #601016)
1728
1729 [ Michael Vogt ]
1730 * apt-pkg/deb/dpkgpm.cc:
1731 - ensure that history.log gets closed to avoid leaking a FD
1732 (closes: #601649)
1733
1734 -- Michael Vogt <mvo@debian.org> Thu, 28 Oct 2010 21:22:21 +0200
1735
1736 apt (0.8.7) unstable; urgency=low
1737
1738 [ Manpages translations ]
1739 * Typo fixed in French (extra "Z"). Thanks to Florentin Duneau.
1740 * Another typo fixed in French ("Anfin"). Thanks to bubulle
1741 * Wrong translation for "showauto" fixed. Thanks to Raphaël Hertzog
1742 Closes: #599265
1743
1744 [ Michael Vogt ]
1745 * debian/apt.cron.daily:
1746 - source /etc/default/locale (if available) so that the
1747 apt-get update cron job fetches the right translated package
1748 descriptions
1749 * fix test failure on amd64
1750 * apt-pkg/deb/debsystem.cc:
1751 - fix issues with dir::state::status and dir::state::extended_states
1752 when alternative rootdirs are used
1753
1754 [ Martin Pitt ]
1755 * apt-pkg/deb/debindexfile.cc:
1756 - Use FileFd::Size() instead of stat()ing the sources/binary/translations
1757 indexes directly, so that we have transparent handling of gzipped
1758 indexes.
1759 * apt-pkg/contrib/fileutl.cc:
1760 - Fix FileFd::Size() for gzipped files to give the size of the
1761 uncompressed data. This fixes cache building progress going way
1762 over 100%.
1763
1764 [ David Kalnischkies ]
1765 * apt-pkg/deb/deblistparser.cc:
1766 - support ArmHardFloat port in CompleteArch, thanks to Sebastian
1767 Andrzej Siewior for the patch!
1768 * doc/apt.ent:
1769 - move some strings into apt-verbatim.ent to avoid showing them in
1770 apt-doc.pot as they are untranslatable anyway (e.g. manpage references)
1771 * doc/apt-verbatim.ent:
1772 - change the codenames to reflect the situation after squeeze release
1773 * doc/examples/apt-https-method-example.conf:
1774 - apply various typo fixes by Olly Betts, thanks! (Closes: #600249)
1775
1776 -- Michael Vogt <mvo@debian.org> Fri, 15 Oct 2010 18:16:10 +0200
1777
1778 apt (0.8.6) unstable; urgency=low
1779
1780 [ Programs translations ]
1781 * Vietnamese update by Clytie Siddall (Closes: #598489)
1782 * Asturian update by Maacub (Closes: #599057)
1783
1784 [ David Kalnischkies ]
1785 * cmdline/apt-cache.cc:
1786 - use the TranslatedDescription for searching and not the first
1787 available one as it is maybe not an expected language (Closes: #597925)
1788 * apt-pkg/contrib/strutl.cc:
1789 - add a space between number and unit as required by SI (Closes: #598352)
1790 * apt-pkg/depcache.cc:
1791 - do not check endpointer packages instead of only those which prevented
1792 NeverAutoRemove settings from having an effect (Closes: #598452)
1793 - do not remove packages which the user requested for installation
1794 explicitly while satisfying other install requests (Closes: #598669)
1795 * apt-pkg/packagemanager.cc:
1796 - Add a space between period and 'Please' and unfuzzy all translations
1797 * doc/po/de.po:
1798 - remove the duplicated "angefertigt" in translation-holder string
1799
1800 -- Michael Vogt <mvo@debian.org> Mon, 04 Oct 2010 11:52:19 +0200
1801
1802 apt (0.8.5) unstable; urgency=low
1803
1804 [ Manpages translations ]
1805 * German (Chris Leick). Closes: #597163
1806
1807 [ Michael Vogt ]
1808 * merged lp:~mvo/apt/conflicts-on-virtuals to better deal with
1809 conflicts/breaks against virtual packages (LP: #614993)
1810
1811 [ David Kalnischkies ]
1812 * apt-pkg/policy.cc:
1813 - support 100-pinning in Release file with ButAutomaticUpgrades
1814 as requested by the backports crew (Closes: #596097)
1815 * apt-pkg/deb/deblistparser.cc:
1816 - overrule NotAutomatic in case of ButAutomaticUpgrades
1817 * debian/apt.cron.daily:
1818 - handle absolut directory paths correctly by loading directories
1819 directly instead of building the paths on our own (Closes: #596421)
1820 * debian/control:
1821 - build-depend on docbook-xml to ensure that the xml DTDs are always
1822 available on the buildds (Closes: #597145)
1823 * buildlib/debiandoc.mak, buildlib/po4a_manpage.mak:
1824 - ensure that the build fails if documentation building fails
1825 * doc/po/fr.po:
1826 - correct two syntax issues to ensure we can build fine
1827
1828 -- Michael Vogt <mvo@debian.org> Fri, 17 Sep 2010 22:05:06 +0200
1829
1830 apt (0.8.4) unstable; urgency=low
1831
1832 [ Michael vogt ]
1833 * ftparchive/writer.cc:
1834 - write out {Files,Checksum-Sha1,Checksum-Sha256} only if
1835 available LP: #633967. Thanks to Colin Watson
1836 * apt-pkg/contrib/cdromutl.cc:
1837 - if apt-cdrom is used on writable media (like usb-sticks), do
1838 not use the root directory to identify the medium (as all
1839 changes there change the ident id). Use the .disk directory
1840 instead
1841
1842 [ David Kalnischkies ]
1843 * ftparchive/writer.cc:
1844 - null the valid string instead of the date if Valid-Until is not set
1845 * apt-pkg/acquire-item.cc:
1846 - use also unsigned Release files again (Closes: #596189)
1847
1848 [ Christian Perrier ]
1849 * Fix missing space after dot in a message from apt-pkg
1850 Translations unfuzzied. Thanks to Holger Wansing.
1851
1852 -- Michael Vogt <mvo@debian.org> Fri, 10 Sep 2010 20:45:15 +0200
1853
1854 apt (0.8.3) unstable; urgency=low
1855
1856 [ Programs translations ]
1857 * German (Holger Wansing). Closes: #596141
1858
1859 [ Manpages translations ]
1860 * Japanese (KURASAWA Nozomu). Closes: #595862
1861
1862 [ Michael Vogt ]
1863 * apt-pkg/indexcopy.cc:
1864 - only use trusted.gpg.d directory if it exists
1865 - do not replace /dev/null when running in APT::CDROM::NoAct
1866 mode (LP: #612666), thanks to Colin Watson
1867
1868 [ David Kalnischkies ]
1869 * ftparchive/apt-ftparchive.cc:
1870 - ensure that BinDirectory as well as Tree settings get
1871 the correct default FileMode setting (Closes: #595922)
1872
1873 -- Michael Vogt <mvo@debian.org> Tue, 07 Sep 2010 15:28:41 +0200
1874
1875 apt (0.8.2) unstable; urgency=low
1876
1877 [ Manpages translations ]
1878 * Spanish (Omar Campagne). Closes: #595557
1879
1880 [ David Kalnischkies ]
1881 * apt-pkg/versionmatch.cc:
1882 - do not accept 'Pin: origin "' (missing closing ") as a valid
1883 way to pin a local archive: either "" or none…
1884 * apt-pkg/deb/dpkgpm.cc:
1885 - create Dir::Log if needed to support /var/log as tmpfs or similar,
1886 inspired by Thomas Bechtold, thanks! (Closes: #523919, LP: #220239)
1887 * apt-pkg/indexcopy.cc:
1888 - support really still the APT::GPGV::TrustedKeyring setting,
1889 as it breaks d-i badly otherwise (Closes: #595428)
1890 * cmdline/apt-key:
1891 - support also Dir::Etc::Trusted so that apt-key works in the same
1892 way as the library part which works with the trusted files
1893 * methods/{gzip,bzip2}.cc:
1894 - empty files can never be valid archives (Closes: #595691)
1895
1896 -- Michael Vogt <mvo@debian.org> Mon, 06 Sep 2010 18:10:06 +0200
1897
1898 apt (0.8.1) unstable; urgency=low
1899
1900 [ Programs translations ]
1901 * Thai (Theppitak Karoonboonyanan). Closes: #592695
1902 * Russian (Yuri Kozlov). Closes: #594232
1903 * Slovak (Ivan Masár). Closes: #594255
1904 * Swedish (Daniel Nylander). Closes: #594241
1905 * Japanese (Kenshi Muto, Osamu Aoki). Closes: #594265
1906 * Italian (Milo Casagrande). Closes: #594238
1907 * Asturian (maacub). Closes: #594303
1908 * Simplified Chinese (Aron Xu). Closes: #594458
1909 * Bulgarian (Damyan Ivanov). Closes: #594627
1910 * Portuguese (Miguel Figueiredo). Closes: #594668
1911 * Korean (Changwoo Ryu). Closes: #594809
1912 * Norwegian Bokmål (Hans Nordhaug). Closes: #595182
1913 * Danish (Joe Hansen). Closes: #595176
1914 * Catalan (Agustí Grau). Closes: #595234
1915
1916 [ Christian Perrier ]
1917 * Fix spelling error in cmdline/apt-get.cc. Thanks to Osamu Aoki
1918 Closes: #594211
1919
1920 [ Manpages translations ]
1921 * Portuguese (Américo Monteiro)
1922
1923 [ David Kalnischkies ]
1924 * cmdline/apt-cache.cc:
1925 - show in madison command again also source packages (LP: #614589)
1926 - remove useless GetInitialize method
1927 * cmdline/apt-get.cc:
1928 - remove direct calls of ReadMainList and use the wrapper instead
1929 to protect us from useless re-reads and two-times notice display
1930 - remove death code by removing unused GetInitialize
1931 * apt-pkg/depcache.cc:
1932 - now that apt-get purge works on 'rc' packages let the MarkDelete
1933 pass this purge forward to the non-pseudo package for pseudos
1934 * apt-pkg/contrib/fileutl.cc:
1935 - apply SilentlyIgnore also on files without an extension
1936 * apt-pkg/contrib/configuration.cc:
1937 - fix autoremove by using correct config-option name and
1938 don't make faulty assumptions in error handling (Closes: #594689)
1939 * apt-pkg/versionmatch.cc:
1940 - let the pin origin actually work as advertised in the manpage
1941 which means "" are optional and pinning a local archive does
1942 work - even if it is a non-flat archive (Closes: #594435)
1943
1944 -- Michael Vogt <mvo@debian.org> Fri, 03 Sep 2010 18:36:11 +0200
1945
1946 apt (0.8.0) unstable; urgency=low
1947
1948 [ Michael Vogt ]
1949 * merge of the debian-expermental-ma branch
1950 * refresh po/pot files in doc/ and po/
1951
1952 [ Programs translations ]
1953 * Swedish (Daniel Nylander). Closes: #592366
1954 * French (Christian Perrier)
1955
1956 [ Manpages translations ]
1957 * French (Christian Perrier)
1958
1959 -- Michael Vogt <mvo@debian.org> Tue, 24 Aug 2010 16:32:19 +0200
1960
1961 apt (0.8.0~pre2) experimental; urgency=low
1962
1963 [ David Kalnischkies ]
1964 * apt-pkg/contrib/strutl.cc:
1965 - fix error checking for vsnprintf in its safe variant
1966 * methods/bzip2.cc:
1967 - fix error checking for read in case of failing bzip2/lzma/whatever
1968 * debian/apt.cron.daily:
1969 - create backups for our extended_states file (Closes: #593430)
1970 * apt-pkg/init.cc:
1971 - set the default values for dir::etc::trusted options correctly
1972 * ftparchive/writer.cc:
1973 - init valid-until correctly to prevent garbage entering Release file
1974 * apt-pkg/deb/debsystem.cc:
1975 - set dir::state::status based at least on dir
1976 * apt-pkg/deb/dpkgpm.cc:
1977 - use the InstVer instead of the CurrentVer for the autobit transfer
1978 * methods/http.cc:
1979 - some http servers violate HTTP1.1 by not issuing a Reason-Phrase
1980 (or at least a space after the code) especially for 200, but lets
1981 be nice and ignore it as we don't need the reason in general
1982 * apt-pkg/acquire-item.cc:
1983 - don't use ReadOnlyGzip mode for PDiffs as this mode doesn't work
1984 in combination with the AddFd methods of our hashclasses
1985
1986 -- Michael Vogt <mvo@debian.org> Mon, 23 Aug 2010 19:09:08 +0200
1987
1988 apt (0.8.0~pre1) experimental; urgency=low
1989
1990 [ Programs translations ]
1991 * Swedish translation update. Closes: #592366
1992
1993 [ Michael Vogt ]
1994 * merge of the debian-expermental-ma branch
1995 * refresh po/pot files in doc/ and po/
1996 * apt-pkg/pkgcache.cc:
1997 - re-evaluate the architectures cache when the cache is (re)opened
1998
1999 [ Colin Watson ]
2000 * apt-pkg/cdrom.cc:
2001 - fix off-by-one error in DropBinaryArch
2002
2003 [ Julian Andres Klode ]
2004 * apt-pkg/contrib/fileutl.cc:
2005 - Add WriteAtomic mode.
2006 - Revert WriteEmpty to old behavior (LP: #613211)
2007 * apt-pkg, methods:
2008 - Convert users of WriteEmpty to WriteAtomic.
2009 * apt-pkg/depcache.cc:
2010 - Only try upgrade for Breaks if there is a newer version, otherwise
2011 handle it as Conflicts (by removing it) (helps for #591882).
2012 * debian/control:
2013 - Add dependency on gnupg to apt, apt-key uses it.
2014
2015 [ David Kalnischkies ]
2016 * apt-pkg/algorithms.cc:
2017 - let the problem resolver install packages to fix or-groups
2018 as a needed remove nuked another or-member (helps for #591882)
2019 - change the debug outputs to display also arch of the
2020 package and version dependencies information
2021 * cmdline/apt-get.cc:
2022 - let APT::Get::Arch-Only in build-dep default to false again
2023 (Closes: #592628) Thanks Mohamed Amine IL Idrissi for report!
2024 - purge packages in 'rc' state, thanks Rogier! (Closes: #150831)
2025 * apt-pkg/pkgcache.cc:
2026 - fix LongDesc handling in LANG=C environment
2027
2028 -- Michael Vogt <mvo@debian.org> Fri, 13 Aug 2010 17:00:49 +0200
2029
2030 apt (0.7.26~exp12) experimental; urgency=low
2031
2032 [ Michael Vogt ]
2033 * debian/control:
2034 - add dependency on zlib-dev for libapt-pkg-dev
2035
2036 [ David Kalnischkies ]
2037 * apt-pkg/cacheset.cc:
2038 - [ABI BREAK] add an ErrorType option to CacheSetHelper
2039 * cmdline/apt-cache.cc:
2040 - use Notice instead of Error in the CacheSetHelper messages
2041 for compat reasons. Otherwise tools like sbuild blow up
2042 - return success in show if a virtual package was given
2043 * debian/control:
2044 - remove libcurl3-gnutls-dev alternative as the package is gone
2045 - increase needed version of libcurl4-gnutls-dev to >= 7.19.0
2046 as we use CURLOPT_{ISSUERCERT,CRLFILE} (Closes: #589642)
2047
2048 -- Michael Vogt <mvo@debian.org> Fri, 30 Jul 2010 11:55:48 +0200
2049
2050 apt (0.7.26~exp11) experimental; urgency=low
2051
2052 [ Julian Andres Klode ]
2053 * apt-pkg/deb/dpkgpm.cc:
2054 - Write architecture information to history file.
2055 - Add to history whether a change was automatic or not.
2056 * apt-pkg/contrib/fileutl.cc:
2057 - Add FileFd::OpenDescriptor() (needed for python-apt's #383617).
2058 * cmdline/apt-get.cc:
2059 - Support large filesystems by using statvfs64() instead of statvfs()
2060 and statfs64() instead of statfs() (Closes: #590513).
2061 * apt-pkg/cdrom.cc:
2062 - Use link() instead of rename() for creating the CD database backup;
2063 otherwise there would be a short time without any database.
2064
2065 [ David Kalnischkies ]
2066 * apt-pkg/depcache.cc:
2067 - handle "circular" conflicts for "all" packages correctly
2068 * cmdline/apt-cache.cc:
2069 - be able to omit dependency types in (r)depends (Closes: #319006)
2070 - show in (r)depends the canidate per default instead of newest
2071 - share the (r)depends code instead of codecopy
2072 * apt-pkg/cacheset.cc:
2073 - move them back to the library as they look stable now
2074 - add a 'newest' pseudo target release as in pkg/newest
2075 * apt-pkg/pkgcache.cc:
2076 - prefer non-virtual packages in FindPreferredPkg (Closes: #590041)
2077 * test/integration/*:
2078 - add with bug#590041 testcase a small test "framework"
2079 * apt-pkg/orderlist.cc:
2080 - try to install another or-group member in DepRemove before
2081 breaking the or group (Closes: #590438)
2082 - configure also the replacement before remove by adding Immediate flag
2083
2084 [ Michael Vogt ]
2085 * apt-pkg/contrib/error.{cc,h}
2086 - docstring cleanup
2087 - add inline DumpError() to avoid subtle API break
2088
2089 -- Michael Vogt <mvo@debian.org> Thu, 29 Jul 2010 16:40:58 +0200
2090
2091 apt (0.7.26~exp10) experimental; urgency=low
2092
2093 [ David Kalnischkies ]
2094 * apt-pkg/contrib/error.{cc,h}:
2095 - remove constness of va_list parameter to fix build on amd64 and co
2096 Thanks Eric Valette! (Closes: #588610)
2097 * apt-pkg/deb/debmetaindex.cc:
2098 - do not query each architecture for flat file archives
2099 - fix typo preventing display of architecture in Info()
2100 * methods/bzip2.cc:
2101 - add a copycat of the old gzip.cc as we need it for bzip2 and lzma
2102
2103 [ Martin Pitt ]
2104 * debian/rules:
2105 - Make DEB_BUILD_OPTIONS=noopt actually work by passing the right
2106 CXXFLAGS.
2107 * apt-pkg/contrib/fileutl.{h,cc}:
2108 - Add support for reading of gzipped files with the new "ReadOnlyGzip"
2109 OpenMode. (Closes: #188407)
2110 - Link against zlib (in apt-pkg/makefile) and add zlib build dependency.
2111 - [ABI BREAK] This adds a new private member to FileFd, but its
2112 initialization is in the public header file.
2113 * configure.in:
2114 - Check for zlib library and headers.
2115 * apt-pkg/acquire-item.cc, apt-pkg/deb/debindexfile.cc,
2116 apt-pkg/deb/debrecords.cc, apt-pkg/deb/debsrcrecords.h,
2117 cmdline/apt-cache.cc:
2118 - Open Packages, Sources, and Translations indexes in "ReadOnlyGzip" mode.
2119 * apt-pkg/deb/debindexfile.cc:
2120 - If we do not find uncompressed package/source/translation indexes, look
2121 for gzip compressed ones.
2122 * apt-pkg/acquire-item.cc:
2123 - If the Acquire::GzipIndexes option is true and we download a gzipped
2124 index file, keep it as it is (and rename to .gz) instead of
2125 uncompressing it.
2126 * doc/apt.conf.5.xml:
2127 - Document the new Acquire::GzipIndexes option.
2128 * doc/po/apt-doc.pot, doc/po/de.po:
2129 - German translation of new Acquire::GzipIndexes option.
2130 * Add test/test-indexes.sh:
2131 - Test behaviour of index retrieval and usage, in particular with
2132 uncompressed and gzip compressed indexes.
2133 * methods/gzip.cc: With FileFd now being able to read gzipped files, there
2134 is no need for the gzip method any more to spawn an external gzip process.
2135 Rewrite it to use FileFd directly, which makes the code a lot simpler, and
2136 also using less memory and overhead.
2137
2138 -- Michael Vogt <mvo@debian.org> Mon, 12 Jul 2010 11:41:01 +0200
2139
2140 apt (0.7.26~exp9) experimental; urgency=low
2141
2142 [ David Kalnischkies ]
2143 * doc/apt.conf.5.xml:
2144 - add and document APT::Cache-{Start,Grow,Limit} options for mmap control
2145 * apt-pkg/contrib/fileutl.cc:
2146 - do not fail von double close()
2147
2148 -- Michael Vogt <mvo@debian.org> Fri, 09 Jul 2010 21:51:55 +0200
2149
2150 apt (0.7.26~exp8) experimental; urgency=low
2151
2152 [ David Kalnischkies ]
2153 * cmdline/cacheset.cc:
2154 - doesn't include it in the library for now as it is too volatile
2155 - get the candidate either from an already built depcache
2156 or use the policy which is a bit faster than depcache generation
2157 - get packages by task^ with FromTask()
2158 - only print errors if all tries to get a package by string failed
2159 - factor out code to get a single package FromName()
2160 - check in Grouped* first without modifier interpretation
2161 * cmdline/apt-get.cc:
2162 - use the cachsets in the install commands
2163 - make the specify order of packages irrelevant (Closes: #196021)
2164 * apt-pkg/orderlist.cc:
2165 - untouched packages are never missing
2166 * apt-pkg/packagemanager.cc:
2167 - packages that are not touched doesn't need to be unpacked
2168 * debian/control:
2169 - remove intltool's dependency as it is an ubuntu artefact
2170 * apt-pkg/depcache.cc:
2171 - SetCandidateVer for all pseudo packages
2172 - SetReInstall for the "all" package of a pseudo package
2173 - use the new MatchAgainstConfig for the DefaultRootSetFunc
2174 - always mark the all package if a pseudo package is marked for install
2175 * apt-pkg/contrib/error.{cc,h}:
2176 - complete rewrite but use the same API
2177 - add NOTICE and DEBUG as new types of a message
2178 - add a simple stack handling to be able to delay error handling
2179 * apt-pkg/aptconfiguration.cc:
2180 - show a deprecation notice for APT::Acquire::Translation
2181 * apt-pkg/contrib/configuration.{cc,h}:
2182 - add a wrapper to match strings against configurable regex patterns
2183 * apt-pkg/contrib/fileutl.cc:
2184 - show notice about ignored file instead of being always silent
2185 - add a Dir::Ignore-Files-Silently list option to control the notice
2186 * apt-pkg/policy.h:
2187 - add another round of const& madness as the previous round accidentally
2188 NOT overrides the virtual GetCandidateVer() method (Closes: #587725)
2189 * apt-pkg/pkgcachegen.{cc,h}:
2190 - make the used MMap moveable (and therefore dynamic resizeable) by
2191 applying (some) mad pointer magic (Closes: #195018)
2192
2193 [ Michael Vogt ]
2194 * apt-pkg/deb/dpkgpm.cc:
2195 - make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
2196
2197 [ Julian Andres Klode ]
2198 * methods/ftp.h:
2199 - Handle different logins on the same server (Closes: #586904).
2200 * apt-pkg/deb/deblistparser.cc:
2201 - Handle architecture wildcards (Closes: #547724).
2202 * apt-pkg/versionmatch.cc:
2203 - Support matching pins by regular expressions or glob() like patterns,
2204 regular expressions have to be put between to slashes; for example,
2205 /.*/.
2206 * apt-pkg/contrib/fileutl.cc:
2207 - Make FileFd replace files atomically in WriteTemp mode (for cache, etc).
2208 * debian/control:
2209 - Set Standards-Version to 3.9.0
2210
2211 -- Michael Vogt <mvo@debian.org> Fri, 09 Jul 2010 19:16:20 +0200
2212
2213 apt (0.7.26~exp7) experimental; urgency=low
2214
2215 * apt-pkg/cachefile.h:
2216 - make pkgPolicy public again, libapt-pkg-perl (and probably
2217 others) get unhappy without that
2218
2219 -- Michael Vogt <mvo@debian.org> Thu, 10 Jun 2010 15:33:24 +0200
2220
2221 apt (0.7.26~exp6) experimental; urgency=low
2222
2223 [ Michael Vogt ]
2224 * merge the remaining Ubuntu change:
2225 - on gpg verification failure warn and restore the last known
2226 good state
2227 - on failure display the IP of the server (useful for servers
2228 that use round robin DNS)
2229 - support Original-Maintainer in RewritePackageOrder
2230 - enable cdrom autodetection via libudev by default
2231 - show message about Vcs in use when apt-get source is run for
2232 packages maintained in a Vcs
2233 - better support transitional packages with mark auto-installed.
2234 when the transitional package is in "oldlibs" the new package
2235 is not marked auto installed (same is true for section
2236 metapackages)
2237 - provide new "deb mirror://archive.foo/mirrors.list sid main"
2238 method expects a list of mirrors (generated on the server e.g.
2239 via geoip) and will use that, including cycle on failure
2240 - write apport crash file on package failure (disabled by default
2241 on debian until apport is available)
2242 - support mirror failure reporting (disabled by default on debian)
2243
2244 [ David Kalnischkies ]
2245 * apt-pkg/deb/dpkgpm.cc:
2246 - write Disappeared also to the history.log
2247 - forward manual-installed bit on package disappearance
2248 * apt-pkg/deb/debsystem.cc:
2249 - add better config item for extended_states file
2250 * apt-pkg/pkgcache.h:
2251 - switch {,Install-}Size to unsigned long long
2252 * apt-pkg/depcache.cc:
2253 - do the autoremove mark process also for required packages to handle
2254 these illegally depending on lower priority packages (Closes: #583517)
2255 - try harder to find the other pseudo versions for autoremove multiarch
2256 - correct "Dangerous iterator usage" pointed out by cppcheck
2257 - deal with long long, not with int to remove 2GB Limit (LP: #250909)
2258 - deprecate AddSize with Multiplier as it is unused and switch to
2259 boolean instead to handle the sizes more gracefully.
2260 - switch i{Download,Usr}Size from double to (un)signed long long
2261 * apt-pkg/aptconfiguration.cc:
2262 - remove duplicate architectures in getArchitectures()
2263 * apt-pkg/indexrecords.{cc,h}:
2264 - backport forgotten Valid-Until patch from the obsolete experimental
2265 branch to prevent replay attacks better, thanks to Thomas Viehmann
2266 for the initial patch! (Closes: #499897)
2267 - add a constant Exists check for MetaKeys
2268 * apt-pkg/acquire-item.cc:
2269 - do not try PDiff if it is not listed in the Meta file
2270 - sent Last-Modified header also for Translation files
2271 * apt-pkg/cacheiterator.h:
2272 - let pkgCache::Iterator inherent std::iterator
2273 * ftparchive/writer.h:
2274 - add a virtual destructor to FTWScanner class (for cppcheck)
2275 * apt-pkg/cacheset.{cc,h}:
2276 - add simple wrapper around std::set for cache structures
2277 - move regex magic from apt-get to new FromRegEx method
2278 - move cmdline parsing from apt-cache to new FromCommandLine method
2279 - support special release-modifier 'installed' and 'candidate'
2280 * apt-pkg/contrib/cmdline.cc:
2281 - fix segfault in SaveInConfig caused by writing over char[] sizes
2282 * apt-pkg/pkgcache.cc:
2283 - get the best matching arch package from a group with FindPreferredPkg
2284 * cmdline/apt-cache.cc:
2285 - make the search multiarch compatible by using GrpIterator instead
2286 - use pkgCacheFile and the new CacheSets all over the place
2287 - add --target-release option (Closes: #115520)
2288 - accept pkg/release and pkg=version in show and co. (Closes: #236270)
2289 - accept package versions in the unmet command
2290 * cmdline/apt-get.cc:
2291 - use unsigned long long instead of double to store values it gets
2292 * apt-pkg/cachefile.{cc,h}:
2293 - split Open() into submethods to be able to build only parts
2294 - make the OpProgress optional in the Cache buildprocess
2295 - store also the SourceList we use internally for export
2296 * doc/apt.conf.5.xml:
2297 - document the new Valid-Until related options
2298 * apt-pkg/contrib/strutl.cc:
2299 - split StrToTime() into HTTP1.1 and FTP date parser methods and
2300 use strptime() instead of some self-made scanf mangling
2301 - use the portable timegm shown in his manpage instead of a strange
2302 looking code copycat from wget
2303 * ftparchive/writer.cc:
2304 - add ValidTime option to generate a Valid-Until header in Release file
2305 * apt-pkg/policy.cc:
2306 - get the candidate right for a not-installed pseudo package if
2307 his non-pseudo friend is installed
2308 * apt-pkg/indexcopy.cc:
2309 - move the gpg codecopy to a new method and use it also in methods/gpgv.cc
2310
2311 -- Michael Vogt <mvo@debian.org> Thu, 10 Jun 2010 14:02:22 +0200
2312
2313 apt (0.7.26~exp5) experimental; urgency=low
2314
2315 [ David Kalnischkies ]
2316 * cmdline/apt-get.cc:
2317 - rerun dpkg-source in source if --fix-broken is given (Closes: #576752)
2318 - don't suggest held packages as they are installed (Closes: #578135)
2319 - handle multiple --{tar,diff,dsc}-only options correctly
2320 - show at the end of the install process a list of disappeared packages
2321 * cmdline/apt-cache.cc:
2322 - use GroupCount for package names in stats and add a package struct line
2323 * methods/rred.cc:
2324 - use the patchfile modification time instead of the one from the
2325 "old" file - thanks to Philipp Weis for noticing! (Closes: #571541)
2326 * debian/rules:
2327 - remove targets referring to CVS or arch as they are useless
2328 - use $(CURDIR) instead of $(pwd)
2329 - use dpkg-buildflags if available for CXXFLAGS
2330 * README.arch:
2331 - remove the file completely as it has no use nowadays
2332 * apt-pkg/depcache.cc:
2333 - be doublesure that the killer query is empty before starting reinstall
2334 * methods/gpgv.cc:
2335 - remove the keyrings count limit by using vector magic
2336 * contrib/mmap.cc:
2337 - clarify "MMap reached size limit" error message, thanks Ivan Masár!
2338 * doc/apt.ent
2339 - add entities for the current oldstable/stable/testing codenames
2340 * doc/sources.list.5.xml:
2341 - use stable-codename instead of stable in the examples (Closes: #531492)
2342 * doc/apt_preferences.5.xml:
2343 - adapt some examples here to use current codenames as well
2344 - add "NotAutomatic: yes" handling, thanks Osamu Aoki (Closes: #490347)
2345 * debian/libapt-pkg-doc.doc-base.cache:
2346 - remove yet another reference to the removed cache.sgml
2347 * doc/apt-get.8.xml:
2348 - do not say explicit target_release_{name,version,codename}, it should
2349 be clear by itself and 'man' can break lines again (Closes: #566166)
2350 - remove the gnome-apt reference as it is removed from unstable
2351 * apt-pkg/deb/dpkgpm.cc:
2352 - add 'disappear' to the known processing states, thanks Jonathan Nieder
2353 * apt-pkg/packagemanager.h:
2354 - export info about disappeared packages with GetDisappearedPackages()
2355
2356 [ Michael Vogt ]
2357 * methods/http.{cc,h}:
2358 - code cleanup, use enums instead of magic ints
2359
2360 [ Jari Aalto ]
2361 * debian/rules:
2362 - spell out some less known options to reduce manpage consultation-rate
2363 - Use POSIX command substitution: $(<command sequence>)
2364 - Remove EOL whitespace (Closes: #577804)
2365
2366 [ Julian Andres Klode ]
2367 * apt-pkg/acquire-item.cc:
2368 - Fix pkgAcqFile::Custom600Headers() to always return something.
2369
2370
2371 [ Christian Perrier ]
2372 * Slovak translation update. Closes: #581159
2373 * Italian translation update. Closes: #581742
2374 * Swedish translation update. Closes: #592366
2375
2376 -- Michael Vogt <mvo@debian.org> Tue, 25 May 2010 16:01:42 +0200
2377
2378 apt (0.7.26~exp4) experimental; urgency=low
2379
2380 [ David Kalnischkies ]
2381 * apt-pkg/depcache.cc:
2382 - rewrite the pseudo package reinstaller to be more intelligent
2383 in his package choices
2384 * apt-pkg/packagemanager.cc:
2385 - don't try to "unpack" pseudo packages twice
2386 * apt-pkg/contrib/fileutl.cc:
2387 - add a parent-guarded "mkdir -p" as CreateDirectory()
2388 * apt-pkg/acquire.{cc,h}:
2389 - add a delayed constructor with Setup() for success reporting
2390 - check for and create directories in Setup if needed instead of
2391 error out unfriendly in the Constructor (Closes: #523920, #525783)
2392 - optional handle a lock file in Setup()
2393 * apt-pkg/acquire-item.cc:
2394 - Acquire::ForceHash to force method for expected hash
2395 * cmdline/apt-get.cc:
2396 - remove the lock file handling and let Acquire take care of it instead
2397 - display MD5Sum in --print-uris if not forced to use another method
2398 instead of displaying the strongest available (Closes: #576420)
2399 - regex for package names executed on Grp- not PkgIterator
2400 - show non-candidates as fallback for virtual packages (Closes: #578385)
2401 - set also "all" to this version for pseudo packages in TryToChangeVer
2402 * apt-pkg/deb/dpkgpm.cc:
2403 - remove Chroot-Directory from files passed to install commands.
2404 Thanks to Kel Modderman for report & patch! (Closes: #577226)
2405 * ftparchive/writer.cc:
2406 - remove 999 chars Files and Checksums rewrite limit (Closes: #577759)
2407 * cmdline/apt-cache.cc:
2408 - align Installed and Candidate Version in policy so they can be compared
2409 easier, thanks Ralf Gesellensetter for the pointer! (Closes: #578657)
2410 * doc/apt.ent:
2411 - Add a note about APT_CONFIG in the -c description (Closes: #578267)
2412 * doc/po/de.po:
2413 - correct typos in german apt_preferences manpage, thanks Chris Leick!
2414 * apt-pkg/sourcelist.cc:
2415 - be less strict and accept [option=value] as well
2416 * apt-pkg/contrib/configuration.cc:
2417 - error out if #clear directive has no argument
2418 * doc/files.sgml:
2419 - sync documentation with status quo, regarding files/directories in
2420 use, extended_states and uri schemes.
2421 * doc/cache.sgml:
2422 - drop the file in favor of inplace documentation with doxygen
2423 * apt-pkg/pkgcache.h:
2424 - enhance the Groups ABI by providing a ID as the other structs does
2425 - check also the size of the Group struct then checking for the others
2426
2427 [ Jari Aalto ]
2428 * cmdline/apt-get.cc:
2429 - replace backticks with single quotes around fix-broken command
2430 in the broken packages message. (Closes: #577168)
2431 * dselect/install:
2432 - modernize if-statements not to use 'x' (Closes: #577117)
2433 - replace backticks with POSIX $() (Closes: #577116)
2434
2435 [ Michael Vogt ]
2436 * [ Abi break ] apt-pkg/acquire-item.{cc,h}:
2437 - add "IsIndexFile" to constructor of pkgAcqFile so that it sends
2438 the right cache control headers
2439 * cmdline/apt-get.cc:
2440 - fix crash when pkg.VersionList() is empty
2441 * apt-pkg/depcache.cc:
2442 - fix incorrect std::cout usage for debug output
2443 * test/libapt/getlanguages_test.cc:
2444 - Add test for Esperanto that has nocounty associated with them
2445 (LP: #560956)
2446 * apt-pkg/deb/debrecords.cc:
2447 - fix max tag buffer size (LP: #545336, closes: #578959)
2448 * debian/rules:
2449 - install html doxygen in libapt-pkg-doc
2450 * debian/control:
2451 - build-depend on doxygen
2452
2453 [ Julian Andres Klode ]
2454 * apt-pkg/contrib/weakptr.h:
2455 - add a class WeakPointable which allows one to register weak pointers to
2456 an object which will be set to NULL when the object is deallocated.
2457 * [ABI break] apt-pkg/acquire{-worker,-item,}.h:
2458 - subclass pkgAcquire::{Worker,Item,ItemDesc} from WeakPointable.
2459 * apt-pkg/pkgcache.cc:
2460 - Merge fix from David to correct handling in single-arch environments.
2461 * cmdline/apt-cache.cc:
2462 - Add a showauto command to apt-cache.
2463 * cmdline/apt-get.cc:
2464 - Add apt-get markauto and unmarkauto commands.
2465
2466 -- Michael Vogt <mvo@debian.org> Thu, 06 May 2010 09:32:54 +0200
2467
2468 apt (0.7.26~exp3) experimental; urgency=low
2469
2470 [ Christian Perrier ]
2471 * German translation update. Closes: #571037
2472 * Spanish manpages translation update. Closes: #573293
2473 * Dutch translation update. Closes: #573946
2474 * Polish manpages translation update. Closes: #574558
2475 * Add "manpages-pl (<< 20060617-3~)" to avoid file conflicts with
2476 that package that was providing some manpages for APT utilities.
2477
2478 [ David Kalnischkies ]
2479 * [BREAK] merge MultiArch-ABI. We don't support MultiArch,
2480 but we support the usage of the new ABI so libapt users
2481 can start to prepare for MultiArch (Closes: #536029)
2482 * Ignore :qualifiers after package name in build dependencies
2483 in the library by default, but try to honour them in apt-get
2484 as we have some sort of MultiArch support ready (Closes: #558103)
2485 * add translation of the manpages to PT (portuguese)
2486 Thanks to Américo Monteiro!
2487 * Switch to dpkg-source 3.0 (native) format
2488 * apt-pkg/depcache.cc:
2489 - remove Auto-Installed information from extended_states
2490 together with the package itself (Closes: #572364)
2491 * cmdline/apt-mark:
2492 - don't crash if no arguments are given (Closes: #570962)
2493 * debian/control:
2494 - remove some years old and obsolete Replaces
2495 - add automake/conf build-depends/conflicts as recommend by
2496 the autotools-dev README (Closes: #572615)
2497 * apt-pkg/contrib/mmap.{h,cc}:
2498 - add char[] fallback for filesystems without shared writable
2499 mmap() like JFFS2. Thanks to Marius Vollmer for writing
2500 and to Loïc Minier for pointing to the patch! (Closes: #314334)
2501 * doc/apt_preferences.5.xml:
2502 - fix two typos and be more verbose in the novice warning.
2503 Thanks to Osamu Aoki for pointing it out! (Closes: #567669)
2504 - fix a=sid vs. n=sid typo, thanks Ansgar Burchardt!
2505 - origin can be used to match a hostname (Closes: #352667)
2506 - remove wrong pin-priority is optional remark (Closes: #574944)
2507 * apt-pkg/deb/dpkgpm.cc:
2508 - fix error message construction in OpenLog()
2509 - if available store the Commandline in the history
2510 * cmdline/apt-get.cc:
2511 - add a --only-upgrade flag to install command (Closes: #572259)
2512 - fix memory leaks in error conditions in DoSource()
2513 - try version match in FindSrc first exact than fuzzy (LP: #551178)
2514 * apt-pkg/contrib/cmndline.cc:
2515 - save Commandline in Commandline::AsString for logging
2516 * apt-pkg/deb/debversion.cc:
2517 - consider absent of debian revision equivalent to 0 (Closes: #573592)
2518 * doc/makefile, doc/*:
2519 - generate subdirectories for building the manpages in on the fly
2520 depending on the po files we have.
2521 * apt-pkg/pkgcachegen.cc:
2522 - merge versions correctly even if multiple different versions
2523 with the same version number are available.
2524 Thanks to Magnus Holmgren for the patch! (Closes: #351056)
2525 * ftparchive/writer.cc:
2526 - write LongDescriptions if they shouldn't be included in Packages
2527 file into i18n/Translation-en by default.
2528 * doc/po/de.po:
2529 - correct a few typos in the german manpage translation.
2530 Thanks to Chris Leick and Georg Koppen! (Closes: #574962)
2531 * apt-pkg/contrib/strutl.cc:
2532 - convert all toupper calls to tolower_ascii for a little speedup
2533
2534 [ Jean-Baptiste Lallement ]
2535 * apt-pkg/contrib/strutl.cc:
2536 - always escape '%' (LP: #130289) (Closes: #500560)
2537 - unescape '%' sequence only if followed by 2 hex digit
2538 - username/password are urlencoded in proxy string (RFC 3986)
2539
2540 [ Julian Andres Klode ]
2541 * cmdline/apt-cache.cc:
2542 - Change behavior of showsrc to match the one of show (Closes: #512046).
2543 * cmdline/apt-key:
2544 - Honor Apt::GPGV::TrustedKeyring (Closes: #316390)
2545 * cmdline/apt-mark:
2546 - Use the new python-apt API (and conflict with python-apt << 0.7.93.2).
2547 * apt-inst/contrib/arfile.h:
2548 - Add public ARArchive::Members() which returns the list of members.
2549 * apt-pkg/policy.cc:
2550 - Always return a candidate if there is at least one version pinned > 0
2551 (Closes: #512318)
2552 * ftparchive/apt-ftparchive.cc:
2553 - Read default configuration (Closes: #383257)
2554 * debian/rules:
2555 - Fix the libraries name to be e.g. libapt-pkg4.9 instead of
2556 libapt-pkg-4.9.
2557
2558 [ Michael Vogt ]
2559 * apt-pkg/deb/dpkgpm.cc:
2560 - fix backgrounding when dpkg runs (closes: #486222)
2561 * cmdline/apt-mark:
2562 - show error on incorrect aguments (LP: #517917), thanks to
2563 Torsten Spindler
2564 * cmdline/apt-get.cc:
2565 - if apt-get source foo=version or foo/distro can not be found,
2566 error out (LP: #502641)
2567 * apt-pkg/packagemanager.cc:
2568 - better debug output
2569 * doc/examples/configure-index:
2570 - add missing Debug::pkgPackageManager option
2571
2572 -- Michael Vogt <mvo@debian.org> Thu, 01 Apr 2010 17:30:43 +0200
2573
2574 apt (0.7.26~exp2) experimental; urgency=low
2575
2576 * fix crash when LANGUAGE is not set
2577
2578 -- Michael Vogt <mvo@debian.org> Thu, 18 Feb 2010 22:07:23 +0100
2579
2580 apt (0.7.26~exp1) experimental; urgency=low
2581
2582 [ David Kalnischkies ]
2583 * [BREAK] add possibility to download and use multiply
2584 Translation files, configurable with Acquire::Translation
2585 (Closes: #444222, #448216, #550564)
2586 * Ignore :qualifiers after package name in build dependencies
2587 for now as long we don't understand them (Closes: #558103)
2588 * apt-pkg/contrib/mmap.{cc,h}:
2589 - extend it to have a growable flag - unused now but maybe...
2590 * apt-pkg/pkgcache.h:
2591 - use long instead of short for {Ver,Desc}File size,
2592 patch from Víctor Manuel Jáquez Leal, thanks! (Closes: #538917)
2593 * apt-pkg/acquire-item.cc:
2594 - allow also to skip the last patch if target is reached,
2595 thanks Bernhard R. Link! (Closes: #545699)
2596 * ftparchive/writer.{cc,h}:
2597 - add --arch option for packages and contents commands
2598 - if an arch is given accept only *_all.deb and *_arch.deb instead
2599 of *.deb. Thanks Stephan Bosch for the patch! (Closes: #319710)
2600 - add APT::FTPArchive::AlwaysStat to disable the too aggressive
2601 caching if versions are build multiply times (not recommend)
2602 Patch by Christoph Goehre, thanks! (Closes: #463260)
2603 * apt-pkg/deb/dpkgpm.cc:
2604 - stdin redirected to /dev/null takes all CPU (Closes: #569488)
2605 Thanks to Aurelien Jarno for providing (again) a patch!
2606 * buildlib/apti18n.h.in, po/makefile:
2607 - add ngettext support with P_()
2608 * aptconfiguration.cc:
2609 - include all existing Translation files in the Cache (Closes: 564137)
2610 * debian/control:
2611 - update with no changes to debian policy 3.8.4
2612 * doc/apt_preferences.5.xml:
2613 - explicitly warn against careless use (Closes: #567669)
2614 * debian/rules:
2615 - remove creation of empty dir /usr/share/apt
2616 * doc/apt-cdrom.8.xml:
2617 - fix typo spotted by lintian: proc(c)eed
2618
2619 [ Ivan Masár ]
2620 * Slovak translation update. Closes: #568294
2621
2622 [ Michael Vogt ]
2623 * [BREAK] merged lp:~mvo/apt/history
2624 - this writes a /var/log/apt/history tagfile that contains details
2625 from the transaction (complements term.log)
2626 * methods/http.cc:
2627 - add cache-control headers even if no cache is given to allow
2628 adding options for intercepting proxies
2629 - add Acquire::http::ProxyAutoDetect configuration that
2630 can be used to call a external helper to figure out the
2631 proxy configuration and return it to apt via stdout
2632 (this is a step towards WPAD and zeroconf/avahi support)
2633 * abicheck/
2634 - add new abitest tester using the ABI Compliance Checker from
2635 http://ispras.linuxfoundation.org/index.php/ABI_compliance_checker
2636
2637 [ Robert Collins ]
2638 * Change the package index Info methods to allow apt-cache policy to be
2639 useful when using several different archives on the same host.
2640 (Closes: #329814, LP: #22354)
2641
2642 -- Michael Vogt <mvo@debian.org> Thu, 18 Feb 2010 16:11:39 +0100
2643
2644 apt (0.7.25.3) unstable; urgency=low
2645
2646 [ Christian Perrier ]
2647 * Italian translation update. Closes: #567532
2648
2649 [ David Kalnischkies ]
2650 * apt-pkg/contrib/macros.h:
2651 - install the header system.h with a new name to be able to use
2652 it in other headers (Closes: #567662)
2653 * cmdline/acqprogress.cc:
2654 - Set Mode to Medium so that the correct prefix is used.
2655 Thanks Stefan Haller for the patch! (Closes: #567304 LP: #275243)
2656 * ftparchive/writer.cc:
2657 - generate sha1 and sha256 checksums for dsc (Closes: #567343)
2658 * cmdline/apt-get.cc:
2659 - don't mark as manually if in download only (Closes: #468180)
2660
2661 -- Michael Vogt <mvo@debian.org> Mon, 01 Feb 2010 18:41:15 +0100
2662
2663 apt (0.7.25.2) unstable; urgency=low
2664
2665 [ Michael Vogt ]
2666 * apt-pkg/contrib/cdromutl.cc:
2667 - fix UnmountCdrom() fails, give it a bit more time and try
2668 the umount again
2669 * apt-pkg/cdrom.cc:
2670 - fix crash in pkgUdevCdromDevices
2671 * methods/cdrom.cc:
2672 - fixes in multi cdrom setup code (closes: #549312)
2673 - add new "Acquire::cdrom::AutoDetect" config that enables/disables
2674 the dlopen of libudev for automatic cdrom detection. Off by default
2675 currently, feedback/testing welcome
2676 * cmdline/apt-cdrom.cc:
2677 - add new --auto-detect option that uses libudev to figure out
2678 the cdrom/mount-point
2679 * cmdline/apt-mark:
2680 - merge fix from Gene Cash that supports markauto for
2681 packages that are not in the extended_states file yet
2682 (closes: #534920)
2683 * ftparchive/writer.{cc,h}:
2684 - merge crash fix for apt-ftparchive on hurd, thanks to
2685 Samuel Thibault for the patch (closes: #566664)
2686
2687 [ David Kalnischkies ]
2688 * apt-pkg/contrib/fileutl.cc:
2689 - Fix the newly introduced method GetListOfFilesInDir to not
2690 accept every file if no extension is enforced
2691 (= restore old behaviour). (Closes: #565213)
2692 * apt-pkg/policy.cc:
2693 - accept also partfiles with "pref" file extension as valid
2694 * apt-pkg/contrib/configuration.cc:
2695 - accept also partfiles with "conf" file extension as valid
2696 * doc/apt.conf.5.xml:
2697 - reorder description and split out syntax
2698 - add partfile name convention (Closes: #558348)
2699 * doc/apt_preferences.conf.5.xml:
2700 - describe partfile name convention also here
2701 * apt-pkg/deb/dpkgpm.cc:
2702 - don't segfault if term.log file can't be opened.
2703 Thanks Sam Brightman for the patch! (Closes: #475770)
2704 * doc/*:
2705 - replace the per language addendum with a global addendum
2706 - add a explanation why translations include (maybe) english
2707 parts to the new global addendum (Closes: #561636)
2708 * apt-pkg/contrib/strutl.cc:
2709 - fix malloc asseration fail with ja_JP.eucJP locale in
2710 apt-cache search. Thanks Kusanagi Kouichi! (Closes: #548884)
2711
2712 [ Christian Perrier ]
2713 * French translation update
2714
2715 -- Michael Vogt <mvo@debian.org> Wed, 27 Jan 2010 16:16:10 +0100
2716
2717 apt (0.7.25.1) unstable; urgency=low
2718
2719 [ Christian Perrier ]
2720 * French manpage translation update
2721 * Russian translation update by Yuri Kozlov
2722 Closes: #564171
2723
2724 [Chris Leick]
2725 * spot & fix various typos in all manpages
2726 * German manpage translation update
2727
2728 [ David Kalnischkies ]
2729 * cmdline/apt-cache.cc:
2730 - remove translatable marker from the "%4i %s\n" string
2731 * buildlib/po4a_manpage.mak:
2732 - instruct debiandoc to build files with utf-8 encoding
2733 * buildlib/tools.m4:
2734 - fix some warning from the buildtools
2735 * apt-pkg/acquire-item.cc:
2736 - add configuration PDiffs::Limit-options to not download
2737 too many or too big patches (Closes: #554349)
2738 * debian/control:
2739 - let all packages depend on ${misc:Depends}
2740 * share/*-archive.gpg:
2741 - remove the horrible outdated files. We already depend on
2742 the keyring so we don't need to ship our own version
2743 * cmdline/apt-key:
2744 - errors out if wget is not installed (Closes: #545754)
2745 - add --keyring option as we have now possibly many
2746 * methods/gpgv.cc:
2747 - pass all keyrings (TrustedParts) to gpgv instead of
2748 using only one trusted.gpg keyring (Closes: #304846)
2749 * methods/https.cc:
2750 - finally merge the rest of the patchset from Arnaud Ebalard
2751 with the CRL and Issuers options, thanks! (Closes: #485963)
2752 * apt-pkg/deb/debindexfile.cc, apt-pkg/pkgcachegen.cc:
2753 - add debug option Debug::pkgCacheGen
2754
2755 [ Michael Vogt ]
2756 * cmdline/apt-get.cc:
2757 - merge fix for apt-get source pkg=version regression
2758 (closes: #561971)
2759 * po/ru.po:
2760 - merged updated ru.po, thanks to Yuri Kozlov (closes: #564171)
2761
2762 -- Michael Vogt <mvo@debian.org> Sat, 09 Jan 2010 21:52:36 +0100
2763
2764 apt (0.7.25) unstable; urgency=low
2765
2766 [ Christian Perrier ]
2767 * Fix apt-ftparchive(1) wrt description of the "-o" option.
2768 Thanks to Dann Frazier for the patch. Closes: #273100
2769 * po/LINGUAS. Re-disable Hebrew. Closes: #534992
2770 * po/LINGUAS. Enable Asturian and Lithuanian
2771 * Fix typo in apt-cache.8.xml: nessasarily
2772 * Fix "with with" in apt-get.8.xml
2773 * Fix some of the typos mentioned by the german team
2774 Closes: #479997
2775 * Polish translation update by Wiktor Wandachowicz
2776 Closes: #548571
2777 * German translation update by Holger Wansing
2778 Closes: #551534
2779 * Italian translation update by Milo Casagrande
2780 Closes: #555797
2781 * Simplified Chinese translation update by Aron Xu
2782 Closes: #558737
2783 * Slovak translation update by Ivan Masár
2784 Closes: #559277
2785
2786 [ Michael Vogt ]
2787 * apt-pkg/packagemanager.cc:
2788 - add output about pre-depends configuring when debug::pkgPackageManager
2789 is used
2790 * methods/https.cc:
2791 - fix incorrect use of CURLOPT_TIMEOUT, closes: #497983, LP: #354972
2792 thanks to Brian Thomason for the patch
2793 * merge lp:~mvo/apt/netrc branch, this adds support for a
2794 /etc/apt/auth.conf that can be used to store username/passwords
2795 in a "netrc" style file (with the extension that it supports "/"
2796 in a machine definition). Based on the maemo git branch (Closes: #518473)
2797 (thanks also to Jussi Hakala and Julian Andres Klode)
2798 * apt-pkg/deb/dpkgpm.cc:
2799 - add "purge" to list of known actions
2800 * apt-pkg/init.h:
2801 - add compatibility with old ABI name until the next ABI break
2802 * merge segfault fix from Mario Sanchez Prada, many thanks
2803 (closes: #561109)
2804
2805 [ Brian Murray ]
2806 * apt-pkg/depcache.cc, apt-pkg/indexcopy.cc:
2807 - typo fix (LP: #462328)
2808
2809 [ Loïc Minier ]
2810 * cmdline/apt-key:
2811 - Emit a warning if removed keys keyring is missing and skip associated
2812 checks (LP: #218971)
2813
2814 [ David Kalnischkies ]
2815 * apt-pkg/packagemanager.cc:
2816 - better debug output for ImmediateAdd with depth and why
2817 - improve the message shown for failing immediate configuration
2818 * doc/guide.it.sgml: moved to doc/it/guide.it.sgml
2819 * doc/po4a.conf: activate translation of guide.sgml and offline.sgml
2820 * doc/apt.conf.5.xml:
2821 - provide a few more details about APT::Immediate-Configure
2822 - briefly document the behaviour of the new https options
2823 * doc/sources.list.5.xml:
2824 - add note about additional apt-transport-methods
2825 * doc/apt-mark.8.xml:
2826 - correct showauto synopsis, thanks Andrew Schulman (Closes: #551440)
2827 * cmdline/apt-get.cc:
2828 - source should display his final pkg pick (Closes: #249383, #550952)
2829 - source doesn't need the complete version for match (Closes: #245250)
2830 - source ignores versions/releases if not available (Closes: #377424)
2831 - only warn if (free) space overflows (Closes: #522238)
2832 - add --debian-only as alias for --diff-only
2833 * methods/connect.cc:
2834 - display also strerror of "wicked" getaddrinfo errors
2835 - add AI_ADDRCONFIG to ai_flags as suggested by Aurelien Jarno
2836 in response to Bernhard R. Link, thanks! (Closes: #505020)
2837 * buildlib/configure.mak, buildlib/config.{sub,guess}:
2838 - remove (outdated) config.{sub,guess} and use the ones provided
2839 by the new added build-dependency autotools-dev instead
2840 * configure.in, buildlib/{xml,yodl,sgml}_manpage.mak:
2841 - remove the now obsolete manpage buildsystems
2842 * doc/{pl,pt_BR,es,it}/*.{sgml,xml}:
2843 - convert all remaining translation to the po4a system
2844 * debian/control:
2845 - drop build-dependency on docbook-utils and xmlto
2846 - add build-dependency on autotools-dev
2847 - bump policy to 3.8.3 as we have no outdated manpages anymore
2848 * debian/NEWS:
2849 - fix a typo in 0.7.24: Allready -> Already (Closes: #557674)
2850 * ftparchive/writer.{cc,h}:
2851 - add APT::FTPArchive::LongDescription to be able to disable them
2852 * apt-pkg/deb/debsrcrecords.cc:
2853 - use "diff" filetype for .debian.tar.* files (Closes: #554898)
2854 * methods/rred.cc:
2855 - rewrite to be able to handle even big patch files
2856 - adopt optional mmap+iovec patch from Morten Hustveit
2857 (Closes: #463354) which should speed up a bit. Thanks!
2858 * methods/http{,s}.cc
2859 - add config setting for User-Agent to the Acquire group,
2860 thanks Timothy J. Miller! (Closes: #355782)
2861 - add https options which default to http ones (Closes: #557085)
2862 * debian/apt.cron.daily:
2863 - check cache size even if we do nothing else otherwise, thanks
2864 Francesco Poli for patch(s) and patience! (Closes: #459344)
2865 * ftparchive/*:
2866 - fix a few typos in strings, comments and manpage,
2867 thanks Karl Goetz! (Closes: #558757)
2868
2869 [ Carl Chenet ]
2870 * cmdline/apt-mark:
2871 - print an error if a new state file can't be created
2872 (Closes: #521289) and
2873 - exit nicely if python-apt is not installed (Closes: #521284)
2874
2875 [ Chris Leick ]
2876 * doc/de: German translation of manpages (Closes: #552606)
2877 * doc/ various manpages:
2878 - correct various errors, typos and oddities (Closes: #552535)
2879 * doc/apt-secure.8.xml:
2880 - replace literal with emphasis tags in Archive configuration
2881 * doc/apt-ftparchive.1.xml:
2882 - remove informalexample tag which hides the programlisting
2883 * doc/apt-get.8.xml:
2884 - change equivalent "for" to "to the" (purge command)
2885 - clarify --fix-broken sentence about specifying packages
2886
2887 [ Eugene V. Lyubimkin ]
2888 * apt-pkg/contib/strutl.h
2889 - Avoid extra inner copy in APT_MKSTRCMP and APT_MKSTRCMP2.
2890 * build infrastructure:
2891 - Bumped libapt version, excluded eglibc from SONAME. (Closes: #448249)
2892
2893 [ Julian Andres Klode ]
2894 * doc/apt.conf.5.xml:
2895 - Deprecate unquoted values, string concatenation and explain what should
2896 not be written inside a value (quotes,backslash).
2897 - Restrict option names to alphanumerical characters and "/-:._+".
2898 - Deprecate #include, we have apt.conf.d nowadays which should be
2899 sufficient.
2900 * ftparchive/apt-ftparchive.cc:
2901 - Call setlocale() so translations are actually used.
2902 * debian/apt.conf.autoremove:
2903 - Add kfreebsd-image-* to the list (Closes: #558803)
2904
2905 -- Michael Vogt <mvo@debian.org> Tue, 15 Dec 2009 09:21:55 +0100
2906
2907 apt (0.7.24) unstable; urgency=low
2908
2909 [ Nicolas François ]
2910 * Cleaned up the first patch draft from KURASAWA Nozomu to finally
2911 get po4a support for translating the man pages.
2912 Many thanks to both for this excellent work! (Closes: #441608)
2913 * doc/ja/*, doc/po/ja.po:
2914 - remove the old ja man page translation and replace it with
2915 the new po4a-powered translation by KURASAWA Nozomu.
2916 * doc/*.?.xml (manpages):
2917 - add contrib to author tags and also add refmiscinfo to fix warnings
2918 * doc/style.txt, buildlib/defaults.mak, buildlib/manpage.mak:
2919 - fix a few typos in the comments of this files
2920
2921 [ Michael Vogt ]
2922 * apt-pkg/deb/dpkgpm.cc:
2923 - when tcgetattr() returns non-zero skip all pty magic
2924 (thanks to Simon Richter, closes: #509866)
2925 * apt-inst/contrib/arfile.cc:
2926 - show propper error message for Invalid archive members
2927
2928 [ David Kalnischkies ]
2929 * doc/Doxyfile.in:
2930 - update file with doxygen 1.6.1 (current unstable)
2931 - activate DOT_MULTI_TARGETS, it is default on since doxygen 1.5.9
2932 * buildlib/po4a_manpage.mak, doc/makefile, configure:
2933 - simplify the makefiles needed for po4a manpages
2934 * apt-pkg/contrib/configuration.cc:
2935 - add a helper to easily get a vector of strings from the config
2936 * apt-pkg/contrib/strutl.cc:
2937 - replace unknown multibytes with ? in UTF8ToCharset (Closes: #545208)
2938 * doc/apt-get.8.xml:
2939 - fix two little typos in the --simulate description. (Closes: #545059)
2940 * apt-pkg/aptconfiguration.cc, doc/apt.conf.5.xml:
2941 - add an order subgroup to the compression types to simplify reordering
2942 a bit and improve the documentation for this option group.
2943 * doc/apt.conf.5.xml:
2944 - document the Acquire::http::Dl-Limit option
2945 - try to be crystal clear about the usage of :: and {} (Closes: #503481)
2946 * doc/apt-cache.8.xml:
2947 - clarify the note for the pkgnames command (Closes: #547599)
2948 * doc/apt.ent, all man pages:
2949 - move the description of files to globally usable entities
2950 * doc/apt_preferences.5.xml:
2951 - document the new preferences.d folder (Closes: #544017)
2952 * methods/rred.cc:
2953 - add at the top without failing (by Bernhard R. Link, Closes: #545694)
2954 * buildlib/sizetable:
2955 - add amd64 for cross building (by Mikhail Gusarov, Closes: #513058)
2956 * debian/prerm:
2957 - remove file as nobody will upgrade from 0.4.10 anymore
2958 * debian/control:
2959 - remove gnome-apt suggestion as it was removed from debian
2960 * apt-pkg/deb/dpkgpm.cc, apt-pkg/packagemanager.cc, apt-pkg/orderlist.cc:
2961 - add and document _experimental_ options to make (aggressive)
2962 use of dpkg's trigger and configuration handling (Closes: #473461)
2963 * cmdline/apt-get.cc:
2964 - ignore versions that are not candidates when selecting a package
2965 instead of a virtual one (by Marius Vollmer, Closes: #547788)
2966
2967 [ Christian Perrier ]
2968 * doc/fr/*, doc/po/fr.po:
2969 - remove the old fr man page translation and replace it with
2970 the new po4a-powered translation
2971 * doc/de: dropped (translation is too incomplete to be useful in
2972 the transition to the po4a-powered translations)
2973
2974 -- Michael Vogt <mvo@debian.org> Fri, 25 Sep 2009 19:57:25 +0200
2975
2976 apt (0.7.23.1) unstable; urgency=low
2977
2978 [ Michael Vogt ]
2979 * apt-pkg/pkgcache.cc:
2980 - do not set internel "needs-configure" state for packages in
2981 triggers-pending state. dpkg will deal with the trigger and
2982 it if does it before we trigger it, dpkg will error out
2983 (LP: #414631)
2984 * apt-pkg/acquire-item.cc:
2985 - do not segfault on invalid items (closes: #544080)
2986
2987 -- Michael Vogt <mvo@debian.org> Fri, 28 Aug 2009 21:53:20 +0200
2988
2989 apt (0.7.23) unstable; urgency=low
2990
2991 [ Eugene V. Lyubimkin ]
2992 * methods/{http,https,ftp}, doc/apt.conf.5.xml:
2993 - Changed and unified the code that determines which proxy to use. Now
2994 'Acquire::{http,ftp}::Proxy[::<host>]' options have the highest priority,
2995 and '{http,ftp}_proxy' environment variables are used only if options
2996 mentioned above are not specified.
2997 (Closes: #445985, #157759, #320184, #365880, #479617)
2998
2999 [ David Kalnischkies ]
3000 * cmdline/apt-get.cc:
3001 - add APT::Get::HideAutoRemove=small to display only a short line
3002 instead of the full package list. (Closes: #537450)
3003 - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916)
3004 - check for statfs.f_type (by Robert Millan, Closes: #509313)
3005 - correct the order of picked package binary vs source in source
3006 - use SourceVersion instead of the BinaryVersion to get the source
3007 Patch by Matt Kraai, thanks! (Closes: #382826)
3008 - add pkg/archive and codename in source (Closes: #414105, #441178)
3009 * apt-pkg/contrib/strutl.cc:
3010 - enable thousand separator according to the current locale
3011 (by Luca Bruno, Closes: #223712)
3012 * doc/apt.conf.5.xml:
3013 - mention the apt.conf.d dir (by Vincent McIntyre, Closes: #520831)
3014 * apt-inst/contrib/arfile.cc:
3015 - use sizeof instead strlen (by Marius Vollmer, Closes: #504325)
3016 * doc/apt-mark.8.xml:
3017 - improve manpage based on patch by Carl Chenet (Closes: #510286)
3018 * apt-pkg/acquire-item.cc:
3019 - use configsettings for dynamic compression type use and order.
3020 Based on a patch by Jyrki Muukkonen, thanks! (LP: #71746)
3021 * apt-pkg/aptconfiguration.cc:
3022 - add default configuration for compression types and add lzma
3023 support. Order is now bzip2, lzma, gzip, none (Closes: #510526)
3024 * ftparchive/writer.cc:
3025 - add lzma support also here, patch for this (and inspiration for
3026 the one above) by Robert Millan, thanks!
3027 * apt-pkg/depcache.cc:
3028 - restore the --ignore-hold effect in the Is{Delete,Install}Ok hooks
3029 * doc/apt-get.8.xml:
3030 - update the source description to reflect what it actually does
3031 and how it can be used. (Closes: #413021)
3032 * methods/http.cc:
3033 - allow empty Reason-Phase in Status-Line to please squid,
3034 thanks Modestas Vainius for noticing! (Closes: #531157, LP: #411435)
3035
3036 [ George Danchev ]
3037 * cmdline/apt-cache.cc:
3038 - fix a memory leak in the xvcg method (Closes: #511557)
3039 * apt-pkg/indexcopy.cc:
3040 - fix a memory leak then the Release file not exists (Closes: #511556)
3041
3042 -- Michael Vogt <mvo@debian.org> Thu, 27 Aug 2009 14:44:39 +0200
3043
3044 apt (0.7.22.2) unstable; urgency=low
3045
3046 * debian/apt.cron.daily:
3047 - Make sure that VERBOSE is always set (Closes: #539366)
3048 - Script can be disabled by APT::Periodic::Enable=0 (Closes: #485476)
3049 - Support using debdelta to download packages (Closes: #532079)
3050
3051 -- Julian Andres Klode <jak@debian.org> Thu, 06 Aug 2009 12:17:19 +0200
3052
3053 apt (0.7.22.1) unstable; urgency=low
3054
3055 [ Michael Vogt ]
3056 * cmdline/apt-get.cc:
3057 - honor APT::Get::Only-Source properly in FindSrc() (thanks to
3058 Martin Pitt for reporting the problem), also Closes: #535362.
3059
3060 [ Julian Andres Klode ]
3061 * apt-pkg/contrib/mmap.cc:
3062 - Fix FTBFS on GNU/kFreeBSD by disabling DynamicMMap::Grow() on
3063 non-Linux architectures as it uses mremap (Closes: #539742).
3064 * apt-pkg/sourcelist.cc:
3065 - Only warn about missing sources.list if there is no sources.list.d
3066 and vice versa as only one of them is needed (Closes: #539731).
3067 * debian/control:
3068 - Add myself to Uploaders.
3069 - Increase Standards-Version to 3.8.2.0.
3070
3071 -- Julian Andres Klode <jak@debian.org> Mon, 03 Aug 2009 12:48:31 +0200
3072
3073 apt (0.7.22) unstable; urgency=low
3074
3075 [ Christian Perrier ]
3076 * Documentation translations:
3077 - Fix a typo in apt-get(8) French translation. Closes: #525043
3078 Thanks to Guillaume Delacour for spotting it.
3079 - Updated apt.conf(5) manpgae French translation.
3080 Thanks to Aurélien Couderc.
3081 * Translations:
3082 - fr.po
3083 - sk.po. Closes: #525857
3084 - ru.po. Closes: #526816
3085 - eu.po. Closes: #528985
3086 - zh_CN.po. Closes: #531390
3087 - fr.po
3088 - it.po. Closes: #531758
3089 - ca.po. Closes: #531921
3090 - de.po. Closes: #536430
3091 * Added translations
3092 - ast.po (Asturian by Marcos Alvareez Costales).
3093 Closes: #529007, #529730, #535328
3094
3095 [ David Kalnischkies ]
3096 * [ABI break] support '#' in apt.conf and /etc/apt/preferences
3097 (closes: #189866)
3098 * [ABI break] Allow pinning by codename (closes: #97564)
3099 * support running "--simulate" as user
3100 * add depth information to the debug output and show what depends
3101 type triggers a autoinst (closes: #458389)
3102 * add Debug::pkgDepCache::Marker with more detailed debug output
3103 (closes: #87520)
3104 * add Debug::pkgProblemResolver::ShowScores and make the scores
3105 adjustable
3106 * do not write state file in simulate mode (closes: #433007)
3107 * add hook for MarkInstall and MarkDelete (closes: #470035)
3108 * fix typo in apt-pkg/acquire.cc which prevents Dl-Limit to work
3109 correctly when downloading from multiple sites (Closes: #534752)
3110 * add the various foldmarkers in apt-pkg & cmdline (no code change)
3111 * versions with a pin of -1 shouldn't be a candidate (Closes: #355237)
3112 * prefer mmap as memory allocator in MMap instead of a static char
3113 array which can (at least in theory) grow dynamic
3114 * eliminate (hopefully all) segfaults in pkgcachegen.cc and mmap.cc
3115 which can arise if cache doesn't fit into the mmap (Closes: #535218)
3116 * display warnings instead of errors if the parts dirs doesn't exist
3117
3118 [ Michael Vogt ]
3119 * honor the dpkg hold state in new Marker hooks (closes: #64141)
3120 * debian/apt.cron.daily:
3121 - if the timestamp is too far in the future, delete it
3122 * apt-pkg/acquire.cc:
3123 - make the max pipeline depth of the acquire queue configurable
3124 via Acquire::Max-Pipeline-Depth
3125 * apt-pkg/deb/dpkgpm.cc:
3126 - add Dpkg::UseIoNice boolean option to run dpkg with ionice -c3
3127 (off by default)
3128 - send "dpkg-exec" message on the status fd when dpkg is run
3129 - provide DPkg::Chroot-Directory config option (useful for testing)
3130 - fix potential hang when in a background process group
3131 * apt-pkg/algorithms.cc:
3132 - consider recommends when making the scores for the problem
3133 resolver
3134 * apt-pkg/acquire-worker.cc:
3135 - show error details of failed methods
3136 * apt-pkg/contrib/fileutl.cc:
3137 - if a process aborts with signal, show signal number
3138 * methods/http.cc:
3139 - ignore SIGPIPE, we deal with EPIPE from write in
3140 HttpMethod::ServerDie() (LP: #385144)
3141 * Only run Download-Upgradable and Unattended-Upgrades if the initial
3142 update was successful Closes: #341970
3143 * apt-pkg/indexcopy.cc:
3144 - support having CDs with no Packages file (just a Packages.gz)
3145 by not forcing a verification on non-existing files
3146 (LP: #255545)
3147 - remove the gettext from a string that consists entirely
3148 of variables (LP: #56792)
3149 * apt-pkg/cacheiterators.h:
3150 - add missing checks for Owner == 0 in end()
3151 * apt-pkg/indexrecords.cc:
3152 - fix some i18n issues
3153 * apt-pkg/contrib/strutl.h:
3154 - add new strprintf() function to make i18n strings easier
3155 - fix compiler warning
3156 * apt-pkg/deb/debsystem.cc:
3157 - make strings i18n able
3158 * fix problematic use of tolower() when calculating the version
3159 hash by using locale independent tolower_ascii() function.
3160 Thanks to M. Vefa Bicakci (LP: #80248)
3161 * build fixes for g++-4.4
3162 * cmdline/apt-mark:
3163 - add "showauto" option to show automatically installed packages
3164 * document --install-recommends and --no-install-recommends
3165 (thanks to Dereck Wonnacott, LP: #126180)
3166 * doc/apt.conf.5.xml:
3167 - merged patch from Aurélien Couderc to improve the text
3168 (thanks!)
3169 * [ABI] merged the libudev-dlopen branch, this allows to pass
3170 "apt-udev-auto" to Acquire::Cdrom::mount and the cdrom method will
3171 dynamically find/mount the cdrom device (if libhal is available)
3172
3173 [ Julian Andres Klode ]
3174 * apt-pkg/contrib/configuration.cc: Fix a small memory leak in
3175 ReadConfigFile.
3176 * Introduce support for the Enhances field. (Closes: #137583)
3177 * Support /etc/apt/preferences.d, by adding ReadPinDir() (Closes: #535512)
3178 * configure-index: document Dir::Etc::SourceParts and some other options
3179 (Closes: #459605)
3180 * Remove Eugene V. Lyubimkin from uploaders as requested.
3181 * apt-pkg/contrib/hashes.cc, apt-pkg/contrib/md5.cc:
3182 - Support reading until EOF if Size=0 to match behaviour of
3183 SHA1Summation and SHA256Summation
3184
3185 [ Osamu Aoki ]
3186 * Updated cron script to support backups by hardlinks and
3187 verbose levels. All features turned off by default.
3188 * Added more error handlings. Closes: #438803, #462734, #454989
3189 * Documented all cron script related configuration items in
3190 configure-index.
3191
3192 [ Dereck Wonnacott ]
3193 * apt-ftparchive might write corrupt Release files (LP: #46439)
3194 * Apply --important option to apt-cache depends (LP: #16947)
3195
3196 [ Otavio Salvador ]
3197 * Apply patch from Sami Liedes <sliedes@cc.hut.fi> to reduce the
3198 number of times we call progress bar updating and debugging
3199 configuration settings.
3200 * Apply patch from Sami Liedes <sliedes@cc.hut.fi> to avoid unecessary
3201 temporary allocations.
3202
3203 -- Michael Vogt <mvo@debian.org> Wed, 29 Jul 2009 19:16:22 +0200
3204
3205 apt (0.7.21) unstable; urgency=low
3206
3207 [ Christian Perrier ]
3208 * Translations:
3209 - bg.po. Closes: #513211
3210 - zh_TW.po. Closes: #513311
3211 - nb.po. Closes: #513843
3212 - fr.po. Closes: #520430
3213 - sv.po. Closes: #518070
3214 - sk.po. Closes: #520403
3215 - it.po. Closes: #522222
3216 - sk.po. Closes: #520403
3217
3218 [ Jamie Strandboge ]
3219 * apt.cron.daily: catch invalid dates due to DST time changes
3220 in the stamp files
3221
3222 [ Michael Vogt ]
3223 * methods/gpgv.cc:
3224 - properly check for expired and revoked keys (closes: #433091)
3225 * apt-pkg/contrib/strutl.cc:
3226 - fix TimeToStr i18n (LP: #289807)
3227 * [ABI break] merge support for http redirects, thanks to
3228 Jeff Licquia and Anthony Towns
3229 * [ABI break] use int for the package IDs (thanks to Steve Cotton)
3230 * apt-pkg/pkgcache.cc:
3231 - do not run "dpkg --configure pkg" if pkg is in trigger-awaited
3232 state (LP: #322955)
3233 * methods/https.cc:
3234 - add Acquire::https::AllowRedirect support
3235 * Clarify the --help for 'purge' (LP: #243948)
3236 * cmdline/apt-get.cc
3237 - fix "apt-get source pkg" if there is a binary package and
3238 a source package of the same name but from different
3239 packages (LP: #330103)
3240
3241 [ Colin Watson ]
3242 * cmdline/acqprogress.cc:
3243 - Call pkgAcquireStatus::Pulse even if quiet, so that we still get
3244 dlstatus messages on the status-fd (LP: #290234).
3245
3246 -- Michael Vogt <mvo@debian.org> Tue, 14 Apr 2009 14:12:51 +0200
3247
3248 apt (0.7.20.2) unstable; urgency=medium
3249
3250 [ Eugene V. Lyubimkin ]
3251 * Urgency set to medium due to RC bug fix.
3252 * doc/apt.ent, apt-get.8.xml:
3253 - Fix invalid XML entities. (Closes: #514402)
3254
3255 -- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sat, 07 Feb 2009 16:48:21 +0200
3256
3257 apt (0.7.20.1) unstable; urgency=low
3258
3259 [ Michael Vogt ]
3260 * apt-pkg/pkgcachegen.cc:
3261 - fix apt-cache search for localized description
3262 (closes: #512110)
3263
3264 [ Christian Perrier ]
3265 * Translations:
3266 - fr.po: fix spelling error to "défectueux". Thanks to Thomas Péteul.
3267
3268 -- Michael Vogt <mvo@debian.org> Tue, 20 Jan 2009 09:35:05 +0100
3269
3270 apt (0.7.20) unstable; urgency=low
3271
3272 [ Eugene V. Lyubimkin ]
3273 * debian/changelog:
3274 - Fixed place of 'merged install-recommends and install-task branches'
3275 from 0.6.46.1 to 0.7.0. (Closes: #439866)
3276 * buildlib/config.{sub,guess}:
3277 - Renewed. This fixes lintian errors.
3278 * doc/apt.conf.5.xml, debian/apt-transport-https:
3279 - Documented briefly 'Acquire::https' group of options. (Closes: #507398)
3280 - Applied patch from Daniel Burrows to document 'Debug' group of options.
3281 (Closes: #457265)
3282 - Mentioned 'APT::Periodic' and 'APT::Archives' groups of options.
3283 (Closes: #438559)
3284 - Mentioned '/* ... */' comments. (Closes: #507601)
3285 * doc/examples/sources.list:
3286 - Removed obsolete commented non-us deb-src entry, replaced it with
3287 'deb-src security.debian.org' one. (Closes: #411298)
3288 * apt-pkg/contrib/mmap.cc:
3289 - Added instruction how to work around MMap error in MMap error message.
3290 (Closes: #385674, 436028)
3291 * COPYING:
3292 - Actualized. Removed obsolete Qt section, added GPLv2 clause.
3293 (Closes: #440049, #509337)
3294
3295 [ Michael Vogt ]
3296 * add option to "apt-get build-dep" to mark the needed
3297 build-dep packages as automatic installed.
3298 This is controlled via the value of
3299 APT::Get::Build-Dep-Automatic and is set "false" by default.
3300 Thanks to Aaron Haviland, closes: #448743
3301 * apt-inst/contrib/arfile.cc:
3302 - support members ending with '/' as well (thanks to Michal Cihr,
3303 closes: #500988)
3304
3305 [ Christian Perrier ]
3306 * Translations:
3307 - Finnish updated. Closes: #508449
3308 - Galician updated. Closes: #509151
3309 - Catalan updated. Closes: #509375
3310 - Vietnamese updated. Closes: #509422
3311 - Traditional Chinese added. Closes: #510664
3312 - French corrected (remove awful use of first person)
3313
3314 -- Michael Vogt <mvo@debian.org> Mon, 05 Jan 2009 08:59:20 +0100
3315
3316 apt (0.7.19) unstable; urgency=low
3317
3318 [ Eugene V. Lyubimkin ]
3319 * doc/sources.list.5.xml:
3320 - Mentioned allowed characters in file names in /etc/apt/sources.list.d.
3321 Thanks to Matthias Urlichs. (Closes: #426913)
3322 * doc/apt-get.8.xml:
3323 - Explicitly say that 'dist-upgrade' command may remove packages.
3324 - Included '-v'/'--version' as a command to synopsis.
3325 * cmdline/apt-cache.cc:
3326 - Advanced built-in help. Patch by Andre Felipe Machado. (Closes: #286061)
3327 - Fixed typo 'GraphVis' -> 'GraphViz'. (Closes: #349038)
3328 - Removed asking to file a release-critical bug against a package if there
3329 is a request to install only one package and it is not installable.
3330 (Closes: #419521)
3331
3332 [ Michael Vogt ]
3333 - fix SIGHUP handling (closes: #463030)
3334
3335 [ Christian Perrier ]
3336 * Translations:
3337 - French updated
3338 - Bulgarian updated. Closes: #505476
3339 - Slovak updated. Closes: #505483
3340 - Swedish updated. Closes: #505491
3341 - Japanese updated. Closes: #505495
3342 - Korean updated. Closes: #505506
3343 - Catalan updated. Closes: #505513
3344 - British English updated. Closes: #505539
3345 - Italian updated. Closes: #505518, #505683
3346 - Polish updated. Closes: #505569
3347 - German updated. Closes: #505614
3348 - Spanish updated. Closes: #505757
3349 - Romanian updated. Closes: #505762
3350 - Simplified Chinese updated. Closes: #505727
3351 - Portuguese updated. Closes: #505902
3352 - Czech updated. Closes: #505909
3353 - Norwegian Bokmål updated. Closes: #505934
3354 - Brazilian Portuguese updated. Closes: #505949
3355 - Basque updated. Closes: #506085
3356 - Russian updated. Closes: #506452
3357 - Marathi updated.
3358 - Ukrainian updated. Closes: #506545
3359
3360 -- Michael Vogt <mvo@debian.org> Mon, 24 Nov 2008 10:33:54 +0100
3361
3362 apt (0.7.18) unstable; urgency=low
3363
3364 [ Christian Perrier ]
3365 * Translations:
3366 - French updated
3367 - Thai updated. Closes: #505067
3368
3369 [ Eugene V. Lyubimkin ]
3370 * doc/examples/configure-index:
3371 - Removed obsoleted header line. (Closes: #417638)
3372 - Changed 'linux-kernel' to 'linux-image'.
3373 * doc/sources.list.5.xml:
3374 - Fixed typo and grammar in 'sources.list.d' section. Thanks to
3375 Timothy G Abbott <tabbott@MIT.EDU>. (Closes: #478098)
3376 * doc/apt-get.8.xml:
3377 - Advanced descriptions for 'remove' and 'purge' options.
3378 (Closes: #274283)
3379 * debian/rules:
3380 - Target 'apt' need to depend on 'build-doc'. Thanks for Peter Green.
3381 Fixes FTBFS. (Closes: #504181)
3382
3383 [ Michael Vogt ]
3384 * fix depend on libdb4.4 (closes: #501253)
3385
3386 -- Michael Vogt <mvo@debian.org> Fri, 07 Nov 2008 22:13:39 +0100
3387
3388 apt (0.7.17) unstable; urgency=low
3389
3390 [ Eugene V. Lyubimkin ]
3391 * debian/control:
3392 - 'Vcs-Bzr' field is official, used it.
3393 - Bumped 'Standards-Version' to 3.8.0, no changes needed.
3394 - Actualized 'Uploaders' field.
3395 * doc/:
3396 - Substituded 'apt-archive' with 'apt-ftparchive' in docs.
3397 Patch based on work of Andre Felipe Machado. (Closes: #350865)
3398 - Mentioned '/<release>' and '=<version>' for 'apt-get install' and
3399 '=<version>' for 'apt-get source' in apt-get manpage. Patch based on
3400 work of Andre Felipe Machado. (Closes: #399673)
3401 - Mentioned more short options in the apt-get manpage. Documented 'xvcg'
3402 option in the apt-cache manpage. The part of patch by Andre Felipe
3403 Machado. (Closes: #176106, #355945)
3404 - Documented that 'apt-get install' command should be used for upgrading
3405 some of installed packages. Based on patch by Nori Heikkinen and
3406 Andre Felipe Machado. (Closes: #267087)
3407 - Mentioned 'apt_preferences(5)' in apt manpage. (Closes: #274295)
3408 - Documented 'APT::Default-Release' in apt.conf manpage. (Closes: #430399)
3409 - APT::Install-Recommends is now true by default, mentioned this in
3410 configure-index example. (Closes: #463268)
3411 - Added 'APT::Get::AllowUnauthenticated' to configure-index example.
3412 (Closes: #320225)
3413 - Documented '--no-install-recommends' option in apt-get manpage.
3414 (Closes: #462962)
3415 - Documented 'Acquire::PDiffs' in apt.conf manpage. (Closes: #376029)
3416 - Added 'copy', 'rsh', 'ssh' to the list of recognized URI schemes in
3417 sources.list manpage, as they are already described under in the manpage.
3418 - Removed notice that ssh/rsh access cannot use password authentication
3419 from sources.list manpage. Thanks to Steffen Joeris. (Closes: #434894)
3420 - Added '(x)' to some referrings to manpages in apt-get manpage. Patch by
3421 Andre Felipe Machado. (Closes: #309893)
3422 - Added 'dist-upgrade' apt-get synopsis in apt-get manpage.
3423 (Closes: #323866)
3424
3425 -- Michael Vogt <mvo@debian.org> Wed, 05 Nov 2008 13:14:56 +0100
3426
3427 apt (0.7.17~exp4) experimental; urgency=low
3428
3429 * debian/rules:
3430 - Fixed lintian warnings "debian/rules ignores make errors".
3431 * debian/control:
3432 - Substituted outdated "Source-Version" fields with "binary:Version".
3433 - Added 'python-apt' to Suggests, as apt-mark need it for work.
3434 - Drop Debian revision from 'doc-base' build dependency, this fixes
3435 appropriate lintian warning.
3436 * debian/libapt-pkg-doc.doc-base.*:
3437 - Changed section: from old 'Devel' to 'Debian'. This fixes appropriate
3438 lintian warnings.
3439 * debian/{postrm,prerm,preinst}:
3440 - Added 'set -e', fixes lintian warnings
3441 'maintainer-script-ignores-error'.
3442 * dselect/makefile:
3443 - Removed unneeded 'LOCAL' entry. This allows cleaning rule to run smoothly.
3444 * share/lintian-overrides:
3445 - Added with override of 'apt must depend on python'. Script 'apt-mark'
3446 needs apt-python for working and checks this on fly. We don't want
3447 python in most cases.
3448 * cmdline/apt-key:
3449 - Added 'unset GREP_OPTIONS' to the script. This prevents 'apt-key update'
3450 failure when GREP_OPTIONS contains options that modify grep output.
3451 (Closes: #428752)
3452
3453 -- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Fri, 31 Oct 2008 23:45:17 +0300
3454
3455 apt (0.7.17~exp3) experimental; urgency=low
3456
3457 * apt-pkg/acquire-item.cc:
3458 - fix a merge mistake that prevents the fallback to the
3459 uncompressed 'Packages' to work correctly (closes: #409284)
3460
3461 -- Michael Vogt <mvo@debian.org> Wed, 29 Oct 2008 09:36:24 +0100
3462
3463 apt (0.7.17~exp2) experimental; urgency=low
3464
3465 [ Eugene V. Lyubimkin ]
3466 * apt-pkg/acquire-item.cc:
3467 - Added fallback to uncompressed 'Packages' if neither 'bz2' nor 'gz'
3468 available. (Closes: #409284)
3469 * apt-pkg/algorithm.cc:
3470 - Strip username and password from source URL in error message.
3471 (Closes: #425150)
3472
3473 [ Michael Vogt ]
3474 * fix various -Wall warnings
3475
3476 -- Michael Vogt <mvo@debian.org> Tue, 28 Oct 2008 18:06:38 +0100
3477
3478 apt (0.7.17~exp1) experimental; urgency=low
3479
3480 [ Luca Bruno ]
3481 * Fix typos:
3482 - apt-pkg/depcache.cc
3483 * Fix compilation warnings:
3484 - apt-pkg/acquire.cc
3485 - apt-pkg/versionmatch.cc
3486 * Compilation fixes and portability improvement for compiling APT against non-GNU libc
3487 (thanks to Martin Koeppe, closes: #392063):
3488 - buildlib/apti18n.h.in:
3489 + textdomain() and bindtextdomain() must not be visible when --disable-nls
3490 - buildlib/inttypes.h.in: undefine standard int*_t types
3491 - Append INTLLIBS to SLIBS:
3492 + cmdline/makefile
3493 + ftparchive/makefile
3494 + methods/makefile
3495 * doc/apt.conf.5.xml:
3496 - clarify whether configuration items of apt.conf are case-sensitive
3497 (thanks to Vincent McIntyre, closes: #345901)
3498
3499 -- Luca Bruno <lethalman88@gmail.com> Sat, 11 Oct 2008 09:17:46 +0200
3500
3501 apt (0.7.16) unstable; urgency=low
3502
3503 [ Luca Bruno ]
3504 * doc/apt-cache.8.xml:
3505 - search command uses POSIX regex, and searches for virtual packages too
3506 (closes: #277536)
3507 * doc/offline.sgml: clarify remote and target hosts
3508 (thanks to Nikolaus Schulz, closes: #175940)
3509 * Fix several typos in docs, translations and debian/changelog
3510 (thanks to timeless, Nicolas Bonifas and Josh Triplett,
3511 closes: #368665, #298821, #411532, #431636, #461458)
3512 * Document apt-key finger and adv commands
3513 (thanks to Stefan Schmidt, closes: #350575)
3514 * Better documentation for apt-get --option
3515 (thanks to Tomas Pospisek, closes: #386579)
3516 * Retitle the apt-mark.8 manpage (thanks to Justin Pryzby, closes: #471276)
3517 * Better documentation on using both APT::Default-Release and
3518 /etc/apt/preferences (thanks to Ingo Saitz, closes: #145575)
3519
3520 [ Michael Vogt ]
3521 * doc/apt-cache.8.xml:
3522 - add missing citerefentry
3523
3524 -- Michael Vogt <mvo@debian.org> Fri, 10 Oct 2008 23:44:50 +0200
3525
3526 apt (0.7.15) unstable; urgency=low
3527
3528 * Upload to unstable
3529
3530 -- Michael Vogt <mvo@debian.org> Sun, 05 Oct 2008 13:23:47 +0200
3531
3532 apt (0.7.15~exp3) experimental; urgency=low
3533
3534 [Daniel Burrows]
3535 * apt-pkg/deb/dpkgpm.cc:
3536 - Store the trigger state descriptions in a way that does not break
3537 the ABI. The approach taken makes the search for a string O(n) rather
3538 than O(lg(n)), but since n == 4, I do not consider this a major
3539 concern. If it becomes a concern, we can sort the static array and
3540 use std::equal_range(). (Closes: #499322)
3541
3542 [ Michael Vogt ]
3543 * apt-pkg/packagemanager.cc, apt-pkg/deb/dpkgpm.cc:
3544 - move the state file writting into the Go() implementation
3545 of dpkgpm (closes: #498799)
3546 * apt-pkg/algorithms.cc:
3547 - fix simulation performance drop (thanks to Ferenc Wagner
3548 for reporting the issue)
3549
3550 -- Michael Vogt <mvo@debian.org> Wed, 01 Oct 2008 18:09:49 +0200
3551
3552 apt (0.7.15~exp2) experimental; urgency=low
3553
3554 [ Michael Vogt ]
3555 * apt-pkg/pkgcachegen.cc:
3556 - do not add multiple identical descriptions for the same
3557 language (closes: #400768)
3558
3559 [ Program translations ]
3560 * Catalan updated. Closes: #499462
3561
3562 -- Michael Vogt <mvo@debian.org> Tue, 23 Sep 2008 07:29:59 +0200
3563
3564 apt (0.7.15~exp1) experimental; urgency=low
3565
3566 [ Christian Perrier ]
3567 * Fix typo in cron.daily script. Closes: #486179
3568
3569 [ Program translations ]
3570 * Traditional Chinese updated. Closes: #488526
3571 * German corrected and completed. Closes: #490532, #480002, #498018
3572 * French completed
3573 * Bulgarian updated. Closes: #492473
3574 * Slovak updated. Closes: #492475
3575 * Galician updated. Closes: #492794
3576 * Japanese updated. Closes: #492975
3577 * Fix missing space in Greek translation. Closes: #493922
3578 * Greek updated.
3579 * Brazilian Portuguese updated.
3580 * Basque updated. Closes: #496754
3581 * Romanian updated. Closes: #492773, #488361
3582 * Portuguese updated. Closes: #491790
3583 * Simplified Chinese updated. Closes: #489344
3584 * Norwegian Bokmål updated. Closes: #480022
3585 * Czech updated. Closes: #479628, #497277
3586 * Korean updated. Closes: #464515
3587 * Spanish updated. Closes: #457706
3588 * Lithuanian added. Closes: #493328
3589 * Swedish updated. Closes: #497496
3590 * Vietnamese updated. Closes: #497893
3591 * Portuguese updated. Closes: #498411
3592 * Greek updated. Closes: #498687
3593 * Polish updated.
3594
3595 [ Michael Vogt ]
3596 * merge patch that enforces stricter https server certificate
3597 checking (thanks to Arnaud Ebalard, closes: #485960)
3598 * allow per-mirror specific https settings
3599 (thanks to Arnaud Ebalard, closes: #485965)
3600 * add doc/examples/apt-https-method-example.cof
3601 (thanks to Arnaud Ebalard, closes: #485964)
3602 * apt-pkg/depcache.cc:
3603 - when checking for new important deps, skip critical ones
3604 (closes: #485943)
3605 * improve apt progress reporting, display trigger actions
3606 * add DPkg::NoTriggers option so that applications that call
3607 apt/aptitude (like the installer) defer trigger processing
3608 (thanks to Joey Hess)
3609 * doc/makefile:
3610 - add examples/apt-https-method-example.conf
3611
3612 -- Michael Vogt <mvo@debian.org> Tue, 16 Sep 2008 21:27:03 +0200
3613
3614 apt (0.7.14) unstable; urgency=low
3615
3616 [ Christian Perrier ]
3617 * Mark a message from dselect backend as translatable
3618 Thanks to Frédéric Bothamy for the patch
3619 Closes: #322470
3620
3621 [ Program translations ]
3622 * Simplified Chinese updated. Closes: #473360
3623 * Catalan fixes. Closes: #387141
3624 * Typo fix in Greek translation. Closes: #479122
3625 * French updated.
3626 * Thai updated. Closes: #479313
3627 * Italian updated. Closes: #479326
3628 * Polish updated. Closes: #479342
3629 * Bulgarian updated. Closes: #479379
3630 * Finnish updated. Closes: #479403
3631 * Korean updated. Closes: #479426
3632 * Basque updated. Closes: #479452
3633 * Vietnamese updated. Closes: #479748
3634 * Russian updated. Closes: #479777, #499029
3635 * Galician updated. Closes: #479792
3636 * Portuguese updated. Closes: #479847
3637 * Swedish updated. Closes: #479871
3638 * Dutch updated. Closes: #480125
3639 * Kurdish added. Closes: #480150
3640 * Brazilian Portuguese updated. Closes: #480561
3641 * Hungarian updated. Closes: #480662
3642
3643 [ Otavio Salvador ]
3644 * Apply patch to avoid truncating of arbitrary files. Thanks to Bryan
3645 Donlan <bdonlan@fushizen.net> for the patch. Closes: #482476
3646 * Avoid using dbus if dbus-daemon isn't running. Closes: #438803
3647
3648 [ Michael Vogt ]
3649 * debian/apt.cron.daily:
3650 - apply patch based on the ideas of Francesco Poli for better
3651 behavior when the cache can not be locked (closes: #459344)
3652
3653 -- Michael Vogt <mvo@debian.org> Wed, 28 May 2008 15:19:12 +0200
3654
3655 apt (0.7.13) unstable; urgency=low
3656
3657 [ Otavio Salvador ]
3658 * Add missing build-depends back from build-depends-indep field.
3659 Closes: #478231
3660 * Make cron script quiet if cache is locked. Thanks to Ted Percival
3661 <ted@midg3t.net> for the patch. Closes: #459344
3662 * Add timeout support for https. Thanks to Andrew Martens
3663 <andrew.martens@strangeloopnetworks.com> for the patch.
3664
3665 [ Goswin von Brederlow ]
3666 * Add support for --no-download on apt-get update. Closes: #478517
3667
3668 [ Program translations ]
3669 - Vietnamese updated. Closes: #479008
3670
3671 -- Otavio Salvador <otavio@debian.org> Fri, 02 May 2008 14:46:00 -0300
3672
3673 apt (0.7.12) unstable; urgency=low
3674
3675 [ Michael Vogt ]
3676 * cmdline/apt-key:
3677 - add support for a master-keyring that contains signing keys
3678 that can be used to sign the archive signing keys. This should
3679 make key-rollover easier.
3680 * apt-pkg/deb/dpkgpm.cc:
3681 - merged patch from Kees Cook to fix anoying upper-case display
3682 on amd64 in sbuild
3683 * apt-pkg/algorithms.cc:
3684 - add APT::Update::Post-Invoke-Success script slot
3685 - Make the breaks handling use the kill list. This means, that a
3686 Breaks: Pkg (<< version) may put Pkg onto the remove list.
3687 * apt-pkg/deb/debmetaindex.cc:
3688 - add missing "Release" file uri when apt-get update --print-uris
3689 is run
3690 * methods/connect.cc:
3691 - remember hosts with Resolve failures or connect Timeouts
3692 * cmdline/apt-get.cc:
3693 - fix incorrect help output for -f (LP: #57487)
3694 - do two passes when installing tasks, first ignoring dependencies,
3695 then resolving them and run the problemResolver at the end
3696 so that it can correct any missing dependencies
3697 * debian/apt.cron.daily:
3698 - sleep random amount of time (default within 0-30min) before
3699 starting the upate to hit the mirrors less hard
3700 * doc/apt_preferences.5.xml:
3701 - fix typo
3702 * added debian/README.source
3703
3704 [ Christian Perrier ]
3705 * Fix typos in manpages. Thanks to Daniel Leidert for the fixes
3706 Closes: #444922
3707 * Fix syntax/copitalisation in some messages. Thanks to Jens Seidel
3708 for pointing this and providing the patch.
3709 Closes: #466845
3710 * Fix Polish offline translation. Thanks to Robert Luberda for the patch
3711 and apologies for applying it very lately. Closes: #337758
3712 * Fix typo in offline.sgml. Closes: #412900
3713
3714 [ Program translations ]
3715 - German updated. Closes: #466842
3716 - Swedish updated.
3717 - Polish updated. Closes: #469581
3718 - Slovak updated. Closes: #471341
3719 - French updated.
3720 - Bulgarian updated. Closes: #448492
3721 - Galician updated. Closes: #476839
3722
3723 [ Daniel Burrows ]
3724 * apt-pkg/depcache.cc:
3725 - Patch MarkInstall to follow currently satisfied Recommends even
3726 if they aren't "new", so that we automatically force upgrades
3727 when the version of a Recommends has been tightened. (Closes: #470115)
3728 - Enable more complete debugging information when Debug::pkgAutoRemove
3729 is set.
3730 * apt-pkg/contrib/configuration.cc
3731 - Lift the 1024-byte limit on lines in configuration files.
3732 (Closes: #473710, #473874)
3733 * apt-pkg/contrib/strutl.cc:
3734 - Lift the 64000-byte limit on individual messages parsed by ReadMessages.
3735 (Closes: #474065)
3736 * debian/rules:
3737 - Add missing Build-Depends-Indep on xsltproc, docbook-xsl, and xmlto.
3738
3739 -- Daniel Burrows <dburrows@debian.org> Sat, 26 Apr 2008 12:24:35 -0700
3740
3741 apt (0.7.11) unstable; urgency=critical
3742
3743 [ Raise urgency to critical since it fixes a critical but for Debian
3744 Installer Lenny Beta1 release ]
3745
3746 [ Program translations ]
3747 - Vietnamese updated. Closes: #460825
3748 - Basque updated. Closes: #461166
3749 - Galician updated. Closes: #461468
3750 - Portuguese updated. Closes: #464575
3751 - Korean updated. Closes: #448430
3752 - Simplified Chinese updated. Closes: #465866
3753
3754 [ Otavio Salvador ]
3755 * Applied patch from Robert Millan <rmh@aybabtu.com> to fix the error
3756 message when gpgv isn't installed, closes: #452640.
3757 * Fix regression about APT::Get::List-Cleanup setting being ignored,
3758 closes: #466052.
3759
3760 -- Otavio Salvador <otavio@debian.org> Thu, 17 Jan 2008 22:36:46 -0200
3761
3762 apt (0.7.10) unstable; urgency=low
3763
3764 [ Otavio Salvador ]
3765 * Applied patch from Mike O'Connor <stew@vireo.org> to add a manpage to
3766 apt-mark, closes: #430207.
3767 * Applied patch from Andrei Popescu <andreimpopescu@gmail.com> to add a
3768 note about some frontends in apt.8 manpage, closes: #438545.
3769 * Applied patch from Aurelien Jarno <aurel32@debian.org> to avoid CPU
3770 getting crazy when /dev/null is redirected to stdin (which breaks
3771 buildds), closes: #452858.
3772 * Applied patch from Aurelien Jarno <aurel32@debian.org> to fix building
3773 with newest dpkg-shlibdeps changing the packaging building order and a
3774 patch from Robert Millan <rmh@aybabtu.com> to fix parallel building,
3775 closes: #452862.
3776 * Applied patch from Alexander Winston <alexander.winston@comcast.net>
3777 to use 'min' as symbol for minute, closes: #219034.
3778 * Applied patch from Amos Waterland <apw@us.ibm.com> to allow apt to
3779 work properly in initramfs, closes: #448316.
3780 * Applied patch from Robert Millan <rmh@aybabtu.com> to make apt-key and
3781 apt-get to ignore time conflicts, closes: #451328.
3782 * Applied patch from Peter Eisentraut <peter_e@gmx.net> to fix a
3783 grammatical error ("manual installed" -> "manually installed"),
3784 closes: #438136.
3785 * Fix cron.daily job to not call fail if apt isn't installed, closes:
3786 #443286.
3787 * Fix compilation warnings in apt-pkg/cdrom.cc and
3788 apt-pkg/contrib/configuration.cc.
3789 * Fix typo in debian/copyright file ("licened" instead of "licensed"),
3790 closes: #458966.
3791
3792 [ Program translations ]
3793 - Basque updated. Closes: #453088
3794 - Vietnamese updated. Closes: #453774, #459013
3795 - Japanese updated. Closes: #456909
3796 - Simplified Chinese updated. Closes: #458039
3797 - French updated.
3798 - Norwegian Bokmål updated. Closes: #457917
3799
3800 [ Michael Vogt ]
3801 * debian/rules
3802 - fix https install location
3803 * debian/apt.conf.daily:
3804 - print warning if the cache can not be locked (closes: #454561),
3805 thanks to Bastian Kleineidam
3806 * methods/gpgv.cc:
3807 - remove cruft code that caused timestamp/I-M-S issues
3808 * ftparchive/contents.cc:
3809 - fix error output
3810 * apt-pkg/acquire-item.{cc,h}:
3811 - make the authentication download code more robust against
3812 servers/proxies with broken If-Range implementations
3813 * apt-pkg/packagemanager.{cc,h}:
3814 - propergate the Immediate flag to make hitting the
3815 "E: Internal Error, Could not perform immediate configuration (2)"
3816 harder
3817 * debian/control:
3818 - build against libdb-dev (instead of libdb4.4-dev)
3819 * merged the apt--DoListUpdate branch, this provides a common interface
3820 for "apt-get update" like operations for the frontends and also provides
3821 hooks to run stuff in APT::Update::{Pre,Post}-Invoke
3822
3823 [ Chris Cheney ]
3824 * ftparchive/contents.cc:
3825 - support lzma data members
3826 * ftparchive/multicompress.cc:
3827 - support lzma output
3828
3829 [ Daniel Burrows ]
3830 * apt-pkg/contrib/configuration.cc:
3831 - if RootDir is set, then FindFile and FindDir will return paths
3832 relative to the directory stored in RootDir, closes: #456457.
3833
3834 [ Christian Perrier ]
3835 * Fix wording for "After unpacking...". Thanks to Michael Gilbert
3836 for the patch. Closes: #260825
3837
3838 -- Michael Vogt <mvo@debian.org> Mon, 07 Jan 2008 21:40:47 +0100
3839
3840 apt (0.7.9) unstable; urgency=low
3841
3842 [ Christian Perrier ]
3843 * Add several languages to LINGUAS and, therefore, really ship the relevant
3844 translation:
3845 Arabic, Dzongkha, Khmer, Marathi, Nepali, Thai
3846 Thanks to Theppitak Karoonboonyanan for checking this out. Closes: #448321
3847
3848 [ Program translations ]
3849 - Korean updated. Closes: #448430
3850 - Galician updated. Closes: #448497
3851 - Swedish updated.
3852
3853 [ Otavio Salvador ]
3854 * Fix configure script to check for CURL library and headers presense.
3855 * Applied patch from Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
3856 to add backward support for arches that lacks pselect support,
3857 closes: #448406.
3858 * Umount CD-ROM when calling apt-cdrom ident, except when called with
3859 -m, closes: #448521.
3860
3861 -- Otavio Salvador <otavio@debian.org> Wed, 31 Oct 2007 13:37:26 -0200
3862
3863 apt (0.7.8) unstable; urgency=low
3864
3865 * Applied patch from Daniel Leidert <daniel.leidert@wgdd.de> to fix
3866 APT::Acquire::Translation "none" support, closes: #437523.
3867 * Applied patch from Daniel Burrows <dburrows@debian.org> to add support
3868 for the Homepage field (ABI break), closes: #447970.
3869 * Applied patch from Frans Pop <elendil@planet.nl> to fix a trailing
3870 space after cd label, closes: #448187.
3871
3872 -- Otavio Salvador <otavio@debian.org> Fri, 26 Oct 2007 18:20:13 -0200
3873
3874 apt (0.7.7) unstable; urgency=low
3875
3876 [ Michael Vogt ]
3877 * apt-inst/contrib/extracttar.cc:
3878 - fix fd leak for zero size files (thanks to Bill Broadley for
3879 reporting this bug)
3880 * apt-pkg/acquire-item.cc:
3881 - remove zero size files on I-M-S hit
3882 * methods/https.cc:
3883 - only send LastModified if we actually have a file
3884 - send range request with if-range
3885 - delete failed downloads
3886 - delete zero size I-M-S hits
3887 * apt-pkg/deb/dpkgpm.{cc,h}:
3888 - merged dpkg-log branch, this lets you specify a
3889 Dir::Log::Terminal file to log dpkg output to
3890 (ABI break)
3891 - fix parse error when dpkg sends unexpected data
3892 * merged apt--sha256 branch to fully support the new
3893 sha256 checksums in the Packages and Release files
3894 (ABI break)
3895 * apt-pkg/pkgcachegen.cc:
3896 - increase default mmap size
3897 * tests/local-repo:
3898 - added local repository testcase
3899 * apt-pkg/acquire.cc:
3900 - increase MaxPipeDepth for the internal worker<->method
3901 communication to 1000 for the debtorrent backend
3902 * make apt build with g++ 4.3
3903 * fix missing SetExecClose() call when the status-fd is used
3904 * debian/apt.cron.daily:
3905 - move unattended-upgrade before apt-get autoclean
3906 * fix "purge" commandline argument, closes: #133421
3907 (thanks to Julien Danjou for the patch)
3908 * cmdline/apt-get.cc:
3909 - do not change the auto-installed information if a package
3910 is reinstalled
3911 * apt-pkg/acquire-item.cc:
3912 - fix crash in diff acquire code
3913 * cmdline/apt-mark:
3914 - Fix chmoding after have renamed the extended-states file (LP: #140019)
3915 (thanks to Laurent Bigonville)
3916 * apt-pkg/depcache.cc:
3917 - set "APT::Install-Recommends" to true by default (OMG!)
3918 * debian/apt.cron.daily:
3919 - only run the cron job if apt-get check succeeds (LP: #131719)
3920
3921 [ Program translations ]
3922 - French updated
3923 - Basque updated. Closes: #436425
3924 - Fix the zh_CN translator's name in debian/changelog for 0.7.2
3925 Closes: #423272
3926 - Vietnamese updated. Closes: #440611
3927 - Danish updated. Closes: #441102
3928 - Thai added. Closes: #442833
3929 - Swedish updated.
3930 - Galician updated. Closes: #446626
3931
3932 [ Otavio Salvador ]
3933 * Add hash support to copy method. Thanks Anders Kaseorg by the patch
3934 (closes: #436055)
3935 * Reset curl options and timestamp between downloaded files. Thanks to
3936 Ryan Murray <rmurray@debian.org> for the patch (closes: #437150)
3937 * Add support to apt-key to export keys to stdout. Thanks to "Dwayne
3938 C. Litzenberger" <dlitz@dlitz.net> for the patch (closes: #441942)
3939 * Fix compilation warnings:
3940 - apt-pkg/indexfile.cc: conversion from string constant to 'char*';
3941 - apt-pkg/acquire-item.cc: likewise;
3942 - apt-pkg/cdrom.cc: '%lu' expects 'long unsigned int', but argument
3943 has type 'size_t';
3944 - apt-pkg/deb/dpkgpm.cc: initialization order and conversion from
3945 string constant to 'char*';
3946 - methods/gpgv.cc: conversion from string constant to 'char*';
3947 - methods/ftp.cc: likewise;
3948 - cmdline/apt-extracttemplates.cc: likewise;
3949 - apt-pkg/deb/debmetaindex.cc: comparison with string literal results
3950 in unspecified behaviour;
3951 * cmdline/apt-get.cc: adds 'autoremove' as a valid comment to usage
3952 statement of apt-get (closes: #445468).
3953 * cmdline/apt-get.cc: really applies Julien Danjou <acid@debian.org>
3954 patch to add 'purge' command line argument (closes: #133421).
3955
3956 [ Ian Jackson ]
3957 * dpkg-triggers: Deal properly with new package states.
3958
3959 [ Colin Watson ]
3960 * apt-pkg/contrib/mmap.cc:
3961 - don't fail if msync() returns > 0
3962
3963 -- Michael Vogt <mvo@debian.org> Tue, 23 Oct 2007 14:58:03 +0200
3964
3965 apt (0.7.6) unstable; urgency=low
3966
3967 * Applied patch from Aurelien Jarno <aurel32@debian.org> to fix wrong
3968 directory downloading on non-linux architectures (closes: #435597)
3969
3970 -- Otavio Salvador <otavio@debian.org> Wed, 01 Aug 2007 19:49:51 -0300
3971
3972 apt (0.7.5) unstable; urgency=low
3973
3974 [ Otavio Salvador ]
3975 * Applied patch from Guillem Jover <guillem@debian.org> to use
3976 dpkg-architecture to get the host architecture (closes: #407187)
3977 * Applied patch from Guillem Jover <guillem@debian.org> to add
3978 support to add lzma support (closes: #408201)
3979
3980 [ Michael Vogt ]
3981 * apt-pkg/depcache.cc:
3982 - support a list of sections for:
3983 APT::Install-Recommends-Sections
3984 APT::Never-MarkAuto-Sections
3985 * methods/makefile:
3986 - install lzma symlink method (for full lzma support)
3987 * debian/control:
3988 - suggest "lzma"
3989
3990 -- Otavio Salvador <otavio@ossystems.com.br> Wed, 25 Jul 2007 20:16:46 -0300
3991
3992 apt (0.7.4) unstable; urgency=low
3993
3994 [ Michael Vogt ]
3995 * cmdline/apt-get.cc:
3996 - fix in the task-install code regexp (thanks to Adam Conrad and
3997 Colin Watson)
3998 - support task removal too: apt-get remove taskname^
3999 (thanks to Matt Zimmerman reporting this problem)
4000
4001 [ Otavio Salvador ]
4002 * Fix a typo on 0.7.3 changelog entry about g++ (7.3 to 4.3)
4003 * Fix compilation warnings:
4004 - apt-pkg/contrib/configuration.cc: wrong argument type;
4005 - apt-pkg/deb/dpkgpm.cc: wrong signess;
4006 - apt-pkg-acquire-item.cc: wrong signess and orderned initializers;
4007 - methods/https.cc:
4008 - type conversion;
4009 - unused variable;
4010 - changed SetupProxy() method to void;
4011 * Simplified HttpMethod::Fetch on http.cc removing Tail variable;
4012 * Fix pipeline handling on http.cc (closes: #413324)
4013 * Fix building to properly support binNMUs. Thanks to Daniel Schepler
4014 <schepler@math.unipd.it> by the patch (closes: #359634)
4015 * Fix example for Install-{Recommends,Suggests} options on
4016 configure-index example file. Thanks to Peter Eisentraut
4017 <peter_e@gmx.net> by the patch (closes: #432223)
4018
4019 [ Christian Perrier ]
4020 * Basque translation update. Closes: ##423766
4021 * Unfuzzy formerly complete translations
4022 * French translation update
4023 * Re-generate PO(T) files
4024 * Spanish translation update
4025 * Swedish translation update
4026
4027 -- Otavio Salvador <otavio@debian.org> Tue, 24 Jul 2007 09:55:50 -0300
4028
4029 apt (0.7.3) unstable; urgency=low
4030
4031 * fixed compile errors with g++ 4.3 (thanks to
4032 Daniel Burrows, closes: #429378)
4033 * fixes in the auto-mark code (thanks to Daniel
4034 Burrows)
4035 * fix FTBFS by changing build-depends to
4036 libcurl4-gnutls-dev (closes: #428363)
4037 * cmdline/apt-get.cc:
4038 - fix InstallTask code when a pkgRecord ends
4039 with a single '\n' (thanks to Soren Hansen for reporting)
4040 * merged from Christian Perrier:
4041 * vi.po: completed to 532t, again. Closes: #429899
4042 * gl.po: completed to 532t. Closes: #429506
4043 * vi.po: completed to 532t. Closes: #428672
4044 * Update all PO and the POT. Gives 514t14f4u for formerly
4045 complete translations
4046 * fr.po: completed to 532t
4047 * ku.po, uk.po, LINGUAS: reintegrate those translations
4048 which disappeared from the BZR repositories
4049
4050 -- Michael Vogt <mvo@debian.org> Sun, 01 Jul 2007 12:31:29 +0200
4051
4052 apt (0.7.2-0.1) unstable; urgency=low
4053
4054 * Non-maintainer upload.
4055 * Build-depend on libcurl4-gnutls-dev instead of the obsolete
4056 libcurl3-gnutls-dev. Closes: #428363.
4057
4058 -- Steve Langasek <vorlon@debian.org> Thu, 28 Jun 2007 18:46:53 -0700
4059
4060 apt (0.7.2) unstable; urgency=low
4061
4062 * merged the debian/experimental changes back
4063 into the debian/sid branch
4064 * merged from Christian Perrier:
4065 * mr.po: New Marathi translation Closes: #416806
4066 * zh_CN.po: Updated by Kov Chai Closes: #416822
4067 * tl.po: Updated by Eric Pareja Closes: #416638
4068 * gl.po: Updated by Jacobo Tarrio
4069 Closes: #412828
4070 * da.po: Updated by Claus Hindsgaul
4071 Closes: #409483
4072 * fr.po: Remove a non-breakable space for usability
4073 issues. Closes: #408877
4074 * ru.po: Updated Russian translation. Closes: #405476
4075 * *.po: Unfuzzy after upstream typo corrections
4076 * buildlib/archtable:
4077 - added support for sh3/sh4 (closes: #424870)
4078 - added support for m32r (closes: #394096)
4079 * buildlib/systemtable:
4080 - added support for lpia
4081 * configure.in:
4082 - check systemtable for architecture mapping too
4083 * fix error in AutocleanInterval, closes: #319339
4084 (thanks to Israel G. Lugo for the patch)
4085 * add "purge" commandline argument, closes: #133421)
4086 (thanks to Julien Danjou for the patch)
4087 * add "purge" commandline argument, closes: #133421)
4088 (thanks to Julien Danjou for the patch)
4089 * fix FTBFS with gcc 4.3, closes: #417090
4090 (thanks to Martin Michlmayr for the patch)
4091 * add --dsc-only option, thanks to K. Richard Pixley
4092 * Removed the more leftover #pragma interface/implementation
4093 closes: #306937 (thanks to Andreas Henriksson for the patch)
4094
4095 -- Michael Vogt <mvo@debian.org> Wed, 06 Jun 2007 23:19:50 +0200
4096
4097 apt (0.7.1) experimental; urgency=low
4098
4099 * ABI library name change because it's built against
4100 new glibc
4101 * implement SourceVer() in pkgRecords
4102 (thanks to Daniel Burrows for the patch!)
4103 * apt-pkg/algorithm.cc:
4104 - use clog for all debugging
4105 - only increase the score of installed applications if they
4106 are not obsolete
4107 - fix resolver bug on removal triggered by weak-dependencies
4108 with or-groups
4109 * methods/http.cc:
4110 - send apt version in User-Agent
4111 * apt-pkg/deb/debrecords.cc:
4112 - fix SHA1Hash() return value
4113 * apt-pkg/cdrom.cc:
4114 - only unmount if APT::CDROM::NoMount is false
4115 * methods/cdrom.cc:
4116 - only umount if it was mounted by the method before
4117 * po/gl.po:
4118 - fix error translation that causes trouble to lsb_release
4119 * apt-pkg/acquire-item.cc:
4120 - if decompression of a index fails, delete the index
4121 * apt-pkg/acquire.{cc,h}:
4122 - deal better with duplicated sources.list entries (avoid
4123 double queuing of URLs) - this fixes hangs in bzip/gzip
4124 * merged from Christian Perrier:
4125 * mr.po: New Marathi translation Closes: #416806
4126 * zh_CN.po: Updated by Eric Pareja Closes: #416822
4127 * tl.po: Updated by Eric Pareja Closes: #416638
4128 * gl.po: Updated by Jacobo Tarrio
4129 Closes: #412828
4130 * da.po: Updated by Claus Hindsgaul
4131 Closes: #409483
4132 * fr.po: Remove a non-breakable space for usability
4133 issues. Closes: #408877
4134 * ru.po: Updated Russian translation. Closes: #405476
4135 * *.po: Unfuzzy after upstream typo corrections
4136 * vi.po: Updated to 515t. Closes: #426976
4137 * eu.po: Updated to 515t. Closes: #423766
4138 * pt.po: 515t. Closes: #423111
4139 * fr.po: Updated by Christian Perrier
4140 * Update all PO and the POT. Gives 513t2f for formerly
4141 complete translations
4142 * apt-pkg/policy.cc:
4143 - allow multiple packages (thanks to David Foerster)
4144
4145 -- Michael Vogt <mvo@debian.org> Wed, 2 May 2007 13:43:44 +0200
4146
4147 apt (0.7.0) experimental; urgency=low
4148
4149 * Package that contains all the new features
4150 * Removed all #pragma interface/implementation
4151 * Branch that contains all the new features:
4152 * translated package descriptions
4153 * task install support
4154 * automatic dependency removal (thanks to Daniel Burrows)
4155 * merged support for the new dpkg "Breaks" field
4156 (thanks to Ian Jackson)
4157 * handle network failures more gracefully on "update"
4158 * support for unattended-upgrades (via unattended-upgrades
4159 package)
4160 * added apt-transport-https method
4161 * merged "install-recommends" branch (ABI break):
4162 - new "--install-recommends"
4163 - install new recommends on "upgrade" if --install-recommends is
4164 given
4165 - new "--fix-policy" option to install all packages with unmet
4166 important dependencies (usefull with --install-recommends to
4167 see what not-installed recommends are on the system)
4168 - fix of recommended packages display (only show CandidateVersion
4169 fix or-group handling)
4170 * merged "install-task" branch (use with "apt-get install taskname^")
4171
4172 -- Michael Vogt <mvo@debian.org> Fri, 12 Jan 2007 20:48:07 +0100
4173
4174 apt (0.6.46.4-0.1) unstable; urgency=emergency
4175
4176 * NMU
4177 * Fix broken use of awk in apt-key that caused removal of the wrong keys
4178 from the keyring. Closes: #412572
4179
4180 -- Joey Hess <joeyh@debian.org> Mon, 26 Feb 2007 16:00:22 -0500
4181
4182 apt (0.6.46.4) unstable; urgency=high
4183
4184 * ack NMU (closes: #401017)
4185 * added apt-secure.8 to "See also" section
4186 * apt-pkg/deb/dpkgpm.cc:
4187 - added "Dpkg::StopOnError" variable that controls if apt
4188 will abort on errors from dpkg
4189 * apt-pkg/deb/debsrcrecords.{cc,h}:
4190 - make the Buffer grow dynmaically (closes: #400874)
4191 * Merged from Christian Perrier bzr branch:
4192 - uk.po: New Ukrainian translation: 483t28f3u
4193 - el.po: Update to 503t9f2u
4194 - de.po: Updates and corrections.
4195 * apt-pkg/contrib/progress.cc:
4196 - OpProgress::CheckChange optimized, thanks to Paul Brook
4197 (closes: #398381)
4198 * apt-pkg/contrib/sha256.cc:
4199 - fix building with noopt
4200
4201 -- Michael Vogt <mvo@debian.org> Thu, 7 Dec 2006 10:49:50 +0100
4202
4203 apt (0.6.46.3-0.2) unstable; urgency=high
4204
4205 * Non-maintainer upload with permission of Michael Vogt.
4206 * Fix FTBFS on most arches (regression from the fix of #400874)
4207
4208 -- Andreas Barth <aba@not.so.argh.org> Tue, 5 Dec 2006 15:51:22 +0000
4209
4210 apt (0.6.46.3-0.1) unstable; urgency=high
4211
4212 * Non-maintainer upload with permission of Michael Vogt.
4213 * Fix segfault at apt-get source. Closes: #400874
4214 * Add apt-key update in postinst, so that debian-archive-keyring doesn't
4215 need to depend on apt >= 0.6. Closes: #401114
4216 * Don't double-queue pdiff files. Closes: #401017
4217
4218 -- Andreas Barth <aba@not.so.argh.org> Tue, 5 Dec 2006 10:34:56 +0000
4219
4220 apt (0.6.46.3) unstable; urgency=low
4221
4222 * apt-pkg/deb/dpkgpm.cc:
4223 - make progress reporting robust against multiline error
4224 messages
4225
4226 * Merged from Christian Perrier bzr branch:
4227 - ca.po: Updated to 514t
4228 - be.po: Updated to 514t
4229 - it.po: Updated to 514t
4230 - hu.po: Updated to 514t
4231 - zh_TW.po: Updated to 514t
4232 - ar.po: Updated to 293t221u.
4233 - ru.po: Updated to 514t. Closes: #392466
4234 - nb.po: Updated to 514t. Closes: #392466
4235 - pt.po: Updated to 514t. Closes: #393199
4236 - fr.po: One spelling error corrected: s/accèder/accéder
4237 - km.po: Updated to 514t.
4238 - ko.po: Updated to 514t.
4239 - bg.po: Updated to 514t.
4240 - de.po: Updated to 514t.
4241 - en_GB.po: Updated to 514t.
4242
4243 -- Michael Vogt <mvo@debian.org> Thu, 2 Nov 2006 11:37:58 +0100
4244
4245 apt (0.6.46.2) unstable; urgency=low
4246
4247 * debian/control:
4248 - depend on debian-archive-keyring to offer clean upgrade path
4249 (closes: #386800)
4250 * Merged from Christian Perrier bzr branch:
4251 - es.po: Updated to 514t. Closes: #391661
4252 - da.po: Updated to 514t. Closes: #391424
4253 - cs.po: Updated. Closes: #391064
4254 - es.po: Updated to 514t. Closes: #391661
4255 - da.po: Updated to 514t. Closes: #391424
4256
4257 -- Michael Vogt <mvo@debian.org> Wed, 11 Oct 2006 09:03:15 +0200
4258
4259 apt (0.6.46.1) unstable; urgency=low
4260
4261 * methods/gzip.cc:
4262 - deal with empty files
4263 * Applied patch from Daniel Schepler to make apt bin-NMU able.
4264 (closes: bug#359634)
4265 * rebuild against current g++ because of:
4266 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29289
4267 (closes: #390189)
4268 * fix broken i18n in the dpkg progress reporting, thanks to
4269 Frans Pop and Steinar Gunderson. (closes: #389261)
4270 * Merged from Christian Perrier bzr branch:
4271 * fi.po: Updated to 514t. Closes: #390149
4272 * eu.po: Updated to 514t. Closes: #389725
4273 * vi.po: Updated to 514t. Closes: #388555
4274 * make the internal buffer in pkgTagFile grow dynamically
4275 (closes: #388708)
4276
4277 -- Michael Vogt <mvo@debian.org> Mon, 2 Oct 2006 20:42:20 +0200
4278
4279 apt (0.6.46) unstable; urgency=low
4280
4281 * debian/control:
4282 - switched to libdb4.4 for building (closes: #381019)
4283 * cmdline/apt-get.cc:
4284 - show only the recommends/suggests for the candidate-version, not for all
4285 versions of the package (closes: #257054)
4286 - properly handle recommends/suggests or-groups when printing the list of
4287 suggested/recommends packages (closes: #311619)
4288 * methods/http.cc:
4289 - check more careful for incorrect proxy settings (closes: #378868)
4290 * methods/gzip.cc:
4291 - don't hang when /var is full (closes: #341537), thanks to
4292 Luis Rodrigo Gallardo Cruz for the patch
4293 * doc/examples/sources.list:
4294 - removed non-us.debian.org from the example (closes: #380030,#316196)
4295 * Merged from Christian Perrier bzr branch:
4296 * ro.po: Updated to 514t. Closes: #388402
4297 * dz.po: Updated to 514t. Closes: #388184
4298 * it.po: Fixed typos. Closes: #387812
4299 * ku.po: New kurdish translation. Closes: #387766
4300 * sk.po: Updated to 514t. Closes: #386851
4301 * ja.po: Updated to 514t. Closes: #386537
4302 * gl.po: Updated to 514t. Closes: #386397
4303 * fr.po: Updated to 516t.
4304 * fi.po: Updated to 512t. Closes: #382702
4305 * share/archive-archive.gpg:
4306 - removed the outdated amd64 and debian-2004 keys
4307 * apt-pkg/tagfile.cc:
4308 - applied patch from Jeroen van Wolffelaar to make the tags
4309 caseinsensitive (closes: #384182)
4310 - reverted MMap use in the tagfile because it does not work
4311 across pipes (closes: #383487)
4312
4313 -- Michael Vogt <mvo@debian.org> Thu, 21 Sep 2006 10:25:03 +0200
4314
4315 apt (0.6.45) unstable; urgency=low
4316
4317 * apt-pkg/contrib/sha256.cc:
4318 - fixed the sha256 generation (closes: #378183)
4319 * ftparchive/cachedb.cc:
4320 - applied patch from Anthony Towns to fix Clean() function
4321 (closes: #379576)
4322 * doc/apt-get.8.xml:
4323 - fix path to the apt user build (Closes: #375640)
4324 * doc/apt-cache.8.xml:
4325 - typo (Closes: #376408)
4326 * apt-pkg/deb/dpkgpm.cc:
4327 - make progress reporting more robust against multiline error
4328 messages (first half of a fix for #374195)
4329 * doc/examples/configure-index:
4330 - document Debug::pkgAcquire::Auth
4331 * methods/gpgv.cc:
4332 - deal with gpg error "NODATA". Closes: #296103, Thanks to
4333 Luis Rodrigo Gallardo Cruz for the patch
4334 * apt-inst/contrib/extracttar.cc:
4335 - fix for string mangling, closes: #373864
4336 * apt-pkg/acquire-item.cc:
4337 - check for bzip2 in /bin (closes: #377391)
4338 * apt-pkg/tagfile.cc:
4339 - make it work on non-mapable files again, thanks
4340 to James Troup for confirming the fix (closes: #376777)
4341 * Merged from Christian Perrier bzr branch:
4342 * ko.po: Updated to 512t. Closes: #378901
4343 * hu.po: Updated to 512t. Closes: #376330
4344 * km.po: New Khmer translation: 506t6f. Closes: #375068
4345 * ne.po: New Nepali translation: 512t. Closes: #373729
4346 * vi.po: Updated to 512t. Closes: #368038
4347 * zh_TW.po: Remove an extra %s in one string. Closes: #370551
4348 * dz.po: New Dzongkha translation: 512t
4349 * ro.po: Updated to 512t
4350 * eu.po: Updated
4351 * eu.po: Updated
4352 * fix apt-get dist-upgrade
4353 * fix warning if no /var/lib/apt/extended_states is present
4354 * don't download Translations for deb-src sources.list lines
4355 * apt-pkg/tagfile.cc:
4356 - support not-mmapable files again
4357
4358 -- Michael Vogt <mvo@debian.org> Thu, 27 Jul 2006 00:52:05 +0200
4359
4360 apt (0.6.44.2exp1) experimental; urgency=low
4361
4362 * added support for i18n of the package descriptions
4363 * added support for aptitude like auto-install tracking (a HUGE
4364 HUGE thanks to Daniel Burrows who made this possible)
4365 * synced with the http://people.debian.org/~mvo/bzr/apt/debian-sid branch
4366 * build from http://people.debian.org/~mvo/bzr/apt/debian-experimental
4367
4368 -- Michael Vogt <mvo@debian.org> Mon, 3 Jul 2006 21:50:31 +0200
4369
4370 apt (0.6.44.2) unstable; urgency=low
4371
4372 * apt-pkg/depcache.cc:
4373 - added Debug::pkgDepCache::AutoInstall (thanks to infinity)
4374 * apt-pkg/acquire-item.cc:
4375 - fix missing chmod() in the new aquire code
4376 (thanks to Bastian Blank, Closes: #367425)
4377 * merged from
4378 http://www.perrier.eu.org/debian/packages/d-i/level4/apt-main:
4379 * sk.po: Completed to 512t
4380 * eu.po: Completed to 512t
4381 * fr.po: Completed to 512t
4382 * sv.po: Completed to 512t
4383 * Update all PO and the POT. Gives 506t6f for formerly
4384 complete translations
4385
4386 -- Michael Vogt <mvo@debian.org> Wed, 14 Jun 2006 12:00:57 +0200
4387
4388 apt (0.6.44.1-0.1) unstable; urgency=low
4389
4390 * Non-maintainer upload.
4391 * Don't give an error when parsing empty Packages/Sources files.
4392 (Closes: #366931, #367086, #370160)
4393
4394 -- Steinar H. Gunderson <sesse@debian.org> Fri, 9 Jun 2006 00:52:21 +0200
4395
4396 apt (0.6.44.1) unstable; urgency=low
4397
4398 * apt-pkg/acquire-item.cc:
4399 - fix reversed logic of the "Acquire::PDiffs" option
4400 * merged from
4401 http://www.perrier.eu.org/debian/packages/d-i/level4/apt-main:
4402 - po/LINGUAS: added "bg" Closes: #360262
4403 - po/gl.po: Galician translation update. Closes: #366849
4404 - po/hu.po: Hungarian translation update. Closes: #365448
4405 - po/cs.po: Czech translation updated. Closes: #367244
4406 * apt-pkg/contrib/sha256.cc:
4407 - applied patch to fix unaligned access problem. Closes: #367417
4408 (thanks to David Mosberger)
4409
4410 -- Michael Vogt <mvo@debian.org> Tue, 16 May 2006 21:51:16 +0200
4411
4412 apt (0.6.44) unstable; urgency=low
4413
4414 * apt-pkg/acquire.cc: don't show ETA if it is 0 or absurdely large
4415 * apt-pkg/contrib/sha256.{cc,h},hashes.{cc,h}: support for sha256
4416 (thanks to Anthony Towns)
4417 * ftparchive/cachedb.{cc,h},writer.{cc,h}: optimizations
4418 (thanks to Anthony Towns)
4419 * apt pdiff support from experimental merged
4420 * apt-pkg/deb/dpkgpm.cc: wording fixes (thanks to Matt Zimmerman)
4421 * apt-pkg/deb/dpkgpm.cc:
4422 - wording fixes (thanks to Matt Zimmerman)
4423 - fix error in dpkg interaction (closes: #364513, thanks to Martin Dickopp)
4424 * apt-pkg/tagfile.{cc,h}:
4425 - use MMap to read the entries (thanks to Zephaniah E. Hull for the
4426 patch) Closes: #350025
4427 * Merge from http://www.perrier.eu.org/debian/packages/d-i/level4/apt-main:
4428 * bg.po: Added, complete to 512t. Closes: #360262
4429 * doc/apt-ftparchive.1.xml:
4430 - fix documentation for "SrcPackages" -> "Sources"
4431 (thanks to Bart Martens for the patch, closes: #307756)
4432 * debian/libapt-pkg-doc.doc-base.cache:
4433 - remove broken charackter from description (closes: #361129)
4434 * apt-inst/deb/dpkgdb.cc, methods/gpgv.cc:
4435 - i18n fixes (closes: #349298)
4436 * debian/postinst: dont fail on not available
4437 /usr/share/doc/apt/examples/sources.list (closes: #361130)
4438 * methods/ftp.cc:
4439 - unlink empty file in partial if the download failed because
4440 the file is missing on the server (closes: #316337)
4441 * apt-pkg/deb/debversion.cc:
4442 - treats a version string with explicit zero epoch equal
4443 than the same without epoch (Policy 5.6.12, closes: #363358)
4444 Thanks to Lionel Elie Mamane for the patch
4445
4446 -- Michael Vogt <mvo@debian.org> Mon, 8 May 2006 22:28:53 +0200
4447
4448 apt (0.6.43.3) unstable; urgency=low
4449
4450 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-186:
4451 * ca.po: Completed to 512t. Closes: #351592
4452 * eu.po: Completed to 512t. Closes: #350483
4453 * ja.po: Completed to 512t. Closes: #349806
4454 * pl.po: Completed to 512t. Closes: #349514
4455 * sk.po: Completed to 512t. Closes: #349474
4456 * gl.po: Completed to 512 strings Closes: #349407
4457 * sv.po: Completed to 512 strings Closes: #349210
4458 * ru.po: Completed to 512 strings Closes: #349154
4459 * da.po: Completed to 512 strings Closes: #349084
4460 * fr.po: Completed to 512 strings
4461 * vi.po: Completed to 511 strings Closes: #348968
4462 * zh_CN.po: Completed to 512t. Closes: #353936
4463 * it.po: Completed to 512t. Closes: #352803
4464 * pt_BR.po: Completed to 512t. Closes: #352419
4465 * LINGUAS: Add Welsh
4466 * *.po: Updated from sources (512 strings)
4467 * apt-pkg/deb/deblistparser.cc:
4468 - don't explode on a DepCompareOp in a Provides line, but warn about
4469 it and ignore it otherwise (thanks to James Troup for reporting it)
4470 * cmdline/apt-get.cc:
4471 - don't lock the lists directory in DoInstall, breaks --print-uri
4472 (thanks to James Troup for reporting it)
4473 * debian/apt.dirs: create /etc/apt/sources.list.d
4474 * make apt-cache madison work without deb-src entries (#352583)
4475 * cmdline/apt-get.cc: only run the list-cleaner if a update was
4476 successfull
4477
4478 -- Michael Vogt <mvo@debian.org> Wed, 22 Feb 2006 10:13:04 +0100
4479
4480 apt (0.6.43.2) unstable; urgency=low
4481
4482 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-166:
4483 - en_GB.po, de.po: fix spaces errors in "Ign " translations Closes: #347258
4484 - makefile: make update-po a pre-requisite of clean target so
4485 that POT and PO files are always up-to-date
4486 - sv.po: Completed to 511t. Closes: #346450
4487 - sk.po: Completed to 511t. Closes: #346369
4488 - fr.po: Completed to 511t
4489 - *.po: Updated from sources (511 strings)
4490 - el.po: Completed to 511 strings Closes: #344642
4491 - da.po: Completed to 511 strings Closes: #348574
4492 - es.po: Updated to 510t1f Closes: #348158
4493 - gl.po: Completed to 511 strings Closes: #347729
4494 - it.po: Yet another update Closes: #347435
4495 * added debian-archive-keyring to the Recommends (closes: #347970)
4496 * fixed message in apt-key to install debian-archive-keyring
4497 * typos fixed in apt-cache.8 (closes: #348348, #347349)
4498 * add patch to fix http download corruption problem (thanks to
4499 Petr Vandrovec, closes: #280844, #290694)
4500
4501 -- Michael Vogt <mvo@debian.org> Thu, 19 Jan 2006 00:06:33 +0100
4502
4503 apt (0.6.43.1) unstable; urgency=low
4504
4505 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-148:
4506 * fr.po: Completed to 510 strings
4507 * it.po: Completed to 510t
4508 * en_GB.po: Completed to 510t
4509 * cs.po: Completed to 510t
4510 * zh_CN.po: Completed to 510t
4511 * el.po: Updated to 510t
4512 * vi.po: Updated to 383t93f34u
4513 * tl.po: Completed to 510 strings (Closes: #344306)
4514 * sv.po: Completed to 510 strings (Closes: #344056)
4515 * LINGUAS: disabled Hebrew translation. (Closes: #313283)
4516 * eu.po: Completed to 510 strings (Closes: #342091)
4517 * apt-get source won't download already downloaded files again
4518 (closes: #79277)
4519 * share/debian-archive.gpg: new 2006 ftp-archive signing key added
4520 (#345891)
4521 * redownload the Release file if IMS-Hit and gpg failure
4522 * deal with multiple signatures on a Release file
4523
4524 -- Michael Vogt <mvo@debian.org> Fri, 6 Jan 2006 01:17:08 +0100
4525
4526 apt (0.6.43) unstable; urgency=medium
4527
4528 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-132:
4529 * zh_CN.po: Completed to 510 strings(Closes: #338267)
4530 * gl.po: Completed to 510 strings (Closes: #338356)
4531 * added support for "/etc/apt/sources.list.d" directory
4532 (closes: #66325)
4533 * make pkgDirStream (a bit) more complete
4534 * fix bug in pkgCache::VerIterator::end() (thanks to Daniel Burrows)
4535 (closes: #339533)
4536 * pkgAcqFile is more flexible now (closes: #57091)
4537 * support a download rate limit for http (closes: #146877)
4538 * included lots of the speedup changes from #319377
4539 * add stdint.h to contrib/md5.h (closes: #340448)
4540 * ABI change, library name changed (closes: #339147)
4541 * Fix GNU/kFreeBSD crash on non-existing server file (closes: #317718)
4542 * switch to libdb4.3 in build-depends
4543
4544 -- Michael Vogt <mvo@debian.org> Tue, 29 Nov 2005 00:17:07 +0100
4545
4546 apt (0.6.42.3) unstable; urgency=low
4547
4548 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-129:
4549 - patch-118: Russian translation update by Yuri Kozlov (closes: #335164)
4550 - patch-119: add update-po as a pre-req for binary (closes: #329910)
4551 - patch-121: Complete French translation
4552 - patch-125: Fixed localization of y/n questions in German translation
4553 (closes: #337078)
4554 - patch-126: Swedish translation update (closes: #337163)
4555 - patch-127: Complete Tagalog translation (closes: #337306)
4556 - patch-128: Danish translation update (closes: #337949)
4557 - patch-129: Basque translation update (closes: #338101)
4558 * cmdline/apt-get.cc:
4559 - bufix in FindSrc (closes: #335213, #337910)
4560 * added armeb to archtable (closes: #333599)
4561 * with --allow-unauthenticated use the old fallback behaviour for
4562 sources (closes: #335112)
4563
4564 -- Michael Vogt <mvo@debian.org> Wed, 9 Nov 2005 07:22:31 +0100
4565
4566 apt (0.6.42.2) unstable; urgency=high
4567
4568 * NMU (approved by maintainer)
4569 * Add AMD64 archive signing key to debian-archive.gpg (closes: #336500).
4570 * Add big-endian arm (armeb) support (closes: #333599).
4571 * Priority high to get the AMD key into testing ASAP.
4572
4573 -- Frans Pop <fjp@debian.org> Sun, 30 Oct 2005 21:29:11 +0100
4574
4575 apt (0.6.42.1) unstable; urgency=low
4576
4577 * fix a incorrect example in the apt_prefrences man page
4578 (thanks to Filipus Klutiero, closes: #282918)
4579 * apt-pkg/pkgrecords.cc:
4580 - revert patch from last version, it causes trouble on alpha
4581 and ia64 (closes: #335102, #335103)
4582 * cmdline/apt-get.cc:
4583 - be extra carefull in FindSrc (closes: #335213)
4584
4585 -- Michael Vogt <mvo@debian.org> Sat, 22 Oct 2005 23:44:35 +0200
4586
4587 apt (0.6.42) unstable; urgency=low
4588
4589 * apt-pkg/cdrom.cc:
4590 - unmount the cdrom when apt failed to locate any package files
4591 * allow cdrom failures and fallback to other sources in that case
4592 (closes: #44135)
4593 * better error text when dpkg-source fails
4594 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-115:
4595 - patch-99: Added Galician translation
4596 - patch-100: Completed Danish translation (Closes: #325686)
4597 - patch-104: French translation completed
4598 - patch-109: Italian translation completed
4599 - patch-112: Swedish translation update
4600 - patch-115: Basque translation completed (Closes: #333299)
4601 * applied french man-page update (thanks to Philippe Batailler)
4602 (closes: #316638, #327456)
4603 * fix leak in the mmap code, thanks to Daniel Burrows for the
4604 patch (closes: #250583)
4605 * support for apt-get [build-dep|source] -t (closes: #152129)
4606 * added "APT::Authentication::TrustCDROM" option to make the life
4607 for the installer people easier (closes: #334656)
4608 * fix crash in apt-ftparchive (thanks to Bastian Blank for the patch)
4609 (closes: #334671)
4610 * apt-pkg/contrib/md5.cc:
4611 - fix a alignment problem on sparc64 that gives random bus errors
4612 (thanks to Fabbione for providing a test-case)
4613 * init the default ScreenWidth to 79 columns by default
4614 (Closes: #324921)
4615 * cmdline/apt-cdrom.cc:
4616 - fix some missing gettext() calls (closes: #334539)
4617 * doc/apt-cache.8.xml: fix typo (closes: #334714)
4618
4619 -- Michael Vogt <mvo@debian.org> Wed, 19 Oct 2005 22:02:09 +0200
4620
4621 apt (0.6.41) unstable; urgency=low
4622
4623 * improved the support for "error" and "conffile" reporting from
4624 dpkg, added the format to README.progress-reporting
4625 * added README.progress-reporting to the apt-doc package
4626 * improved the network timeout handling, if a index file from a
4627 sources.list times out or EAI_AGAIN is returned from getaddrinfo,
4628 don't try to get the other files from that entry
4629 * Support architecture-specific extra overrides
4630 (closes: #225947). Thanks to Anthony Towns for idea and
4631 the patch, thanks to Colin Watson for testing it.
4632 * Javier Fernandez-Sanguino Pen~a:
4633 - Added a first version of an apt-secure.8 manpage, and modified
4634 apt-key and apt.end accordingly. Also added the 'update'
4635 argument to apt-key which was previously not documented
4636 (Closes: #322120)
4637 * Andreas Pakulat:
4638 - added example apt-ftparchive.conf file to doc/examples
4639 (closes: #322483)
4640 * Fix a incorrect example in the man-page (closes: #282918)
4641 * Fix a bug for very long lines in the apt-cdrom code (closes: #280356)
4642 * Fix a manual page bug (closes: #316314)
4643 * Do md5sum checking for file and cdrom method (closes: #319142)
4644 * Change pkgPolicy::Pin from private to protected to let subclasses
4645 access it too (closes: #321799)
4646 * add default constructor for PrvIterator (closes: #322267)
4647 * Reread status configuration on debSystem::Initialize()
4648 (needed for apt-proxy, thanks to Otavio for this patch)
4649
4650 -- Michael Vogt <mvo@debian.org> Mon, 5 Sep 2005 22:59:03 +0200
4651
4652 apt (0.6.40.1) unstable; urgency=low
4653
4654 * bugfix in the parsing code for the apt<->dpkg communication. apt
4655 crashed when dpkg sends the same state more than once under certain
4656 conditions
4657 * 0.6.40 breaks the ABI but I accidentally didn't change the soname :/
4658
4659 -- Michael Vogt <mvo@debian.org> Fri, 5 Aug 2005 13:24:58 +0200
4660
4661 apt (0.6.40) unstable; urgency=low
4662
4663 * Patch from Jordi Mallach to mark some additional strings for translation
4664 * Updated Catalan translation from Jordi Mallach
4665 * Merge from bubulle@debian.org--2005/apt--main--0:
4666 - Update pot and merge with *.po
4667 - Updated French translation, including apt-key.fr.8
4668 * Restore changelog entries from the 0.6.x series that went to Debian
4669 experimental
4670 * Merge michael.vogt@ubuntu.com--2005/apt--progress-reporting--0
4671 - Provide an interface for progress reporting which can be used by
4672 (e.g.) base-config
4673
4674 -- Matt Zimmerman <mdz@debian.org> Thu, 28 Jul 2005 11:57:32 -0700
4675
4676 apt (0.6.39) unstable; urgency=low
4677
4678 * Welsh translation update: daf@muse.19inch.net--2005/apt--main--0--patch-6
4679 * Merge mvo's changes from 0.6.36ubuntu1:
4680 michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-32
4681 * Merge aggregated translation updates:
4682 bubulle@debian.org--2005/apt--main--0
4683 * Update priority of apt-utils to important, to match the override file
4684 * Install only one keyring on each branch (Closes: #316119)
4685
4686 -- Matt Zimmerman <mdz@debian.org> Tue, 28 Jun 2005 11:51:09 -0700
4687
4688 apt (0.6.38) unstable; urgency=low
4689
4690 * Merge michael.vogt@ubuntu.com--2005/apt--fixes--0--patch-6, a workaround
4691 for the French man pages' failure to build
4692 * Branch Debian and Ubuntu
4693 - apt.postinst, apt-key: use the appropriate keyring
4694 - debian/rules: install all keyrings
4695 * Add the current Debian archive signing key (4F368D5D) to
4696 debian-archive.gpg
4697 * make pinning on the "component" work again (using the section of the
4698 archive, we don't use per-section Release files anymore with apt-0.6)
4699 (closes ubuntu #9935)
4700
4701 -- Matt Zimmerman <mdz@debian.org> Sat, 25 Jun 2005 09:51:00 -0700
4702
4703 apt (0.6.37) breezy; urgency=low
4704
4705 * Merge bubulle@debian.org--2005/apt--main--0 up to patch-81
4706 - patch-66: Italian update
4707 - patch-71: French update
4708 - patch-73: Basque update
4709 - patch-74: Hebrew update
4710 - patch-76: Correct Hebrew translation (Closes: #306658)
4711 - patch-77: French man page update
4712 - patch-79: Correct syntax errors in Hebrew translation
4713 - patch-81: Portuguese update
4714 * Fix build of French man pages (now using XML, not SGML)
4715 * Add Welsh translation from Dafydd Harries
4716 (daf@muse.19inch.net--2005/apt--main--0--patch-1)
4717 * Change debian/bugscript to use #!/bin/bash (Closes: #313402)
4718 * Fix a incorrect example in the man-page (closes: #282918)
4719
4720 -- Matt Zimmerman <mdz@ubuntu.com> Tue, 24 May 2005 14:38:25 -0700
4721
4722 apt (0.6.36ubuntu1) breezy; urgency=low
4723
4724 * make it possible to write a cache-control: no-cache header even if
4725 no proxy is set to support transparent proxies (closes ubuntu: #10773)
4726
4727 * Merge otavio@debian.org--2005/apt--fixes--0.6:
4728 - Fix comment about the need of xmlto while building from Arch;
4729 - Fix StatStore struct on cachedb.h to use time_t and then fix a compile
4730 warning;
4731 - Lock database at start of DoInstall routine to avoid concurrent
4732 runs of install/remove and update commands (Closes: #194467)
4733 - Fix warnings while compiling with GCC 4.0 compiler
4734
4735 -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 23 May 2005 11:57:53 +0200
4736
4737 apt (0.6.36) experimental; urgency=low
4738
4739 * Merge apt--mvo--0:
4740 - apt-pkg/acquire-item.cc:
4741 added "Acquire::BrokenProxy" that will force apt to always
4742 re-get the Release.gpg file (for broken proxies)
4743 - debian/apt.cron.daily:
4744 MinAge is defaulting to 2 days now to prevent over-aggresive removal
4745 - apt-pkg/cdrom.cc:
4746 honor "Acquire::gpgv::Options" when verifying the signature (Ubuntu #8496)
4747
4748 -- Michael Vogt <mvo@debian.org> Thu, 31 Mar 2005 20:37:11 +0200
4749
4750 apt (0.6.35) hoary; urgency=low
4751
4752 * Merge apt--mvo--0 (incorporates 0.6.34ubuntu1):
4753 - Implement MaxSize and MaxAge in apt.cron.daily, to prevent the cache
4754 from growing too large (Ubuntu #6761)
4755 - some comments about the pkgAcqMetaSig::Custom600Headers() added
4756 - use gpg --with-colons
4757 - commented the ftp no_proxy unseting in methods/ftp.cc
4758 - added support for "Acquire::gpgv::options" in methods/gpgv.cc
4759 * Merge bubulle@debian.org--2005/apt--main--0
4760 - Make capitalization more consistent
4761 - Un-fuzzy translations resulting from capitalization changes
4762 - Italian translation update
4763
4764 -- Matt Zimmerman <mdz@ubuntu.com> Mon, 7 Mar 2005 20:08:33 -0800
4765
4766 apt (0.6.34) hoary; urgency=low
4767
4768 * Add missing semicolon to configure-index (Closes: #295773)
4769 * Update build-depends on gettext to 0.12 (Closes: #295077)
4770 * Merge from bubulle@debian.org--2005/apt--main--0 to get
4771 translation updates
4772
4773 -- Matt Zimmerman <mdz@ubuntu.com> Fri, 4 Mar 2005 16:13:15 -0800
4774
4775 apt (0.6.33) hoary; urgency=low
4776
4777 * Merge michael.vogt@ubuntu.com--2005/apt--mvo--0 (through patch-6)
4778 - patch-1: cosmetic changes (whitespace, "Apt::GPGV->APT::GPGV")
4779 - patch-2: (doc) documentation for gpgv
4780 - patch-3: (doc) new config variables added configure-index
4781 - patch-4: pkgAcquire::Run() pulse intervall can be configured
4782 - patch-5: fix for apt-get update removing Release.gpg files (#6865)
4783 - patch-6: change the path scoring in apt-cdrom, prefer pathes without
4784 symlinks
4785
4786 -- Matt Zimmerman <mdz@ubuntu.com> Sat, 26 Feb 2005 15:21:17 -0800
4787
4788 apt (0.6.32) hoary; urgency=low
4789
4790 * Merge michael.vogt@ubuntu.com--2005/apt--mvo--0 (patch-1)
4791 - Implement Acquire::gpgv::options (Ubuntu bug#6283)
4792
4793 -- Matt Zimmerman <mdz@ubuntu.com> Tue, 8 Feb 2005 19:31:15 -0800
4794
4795 apt (0.6.31) hoary; urgency=low
4796
4797 * Matt Zimmerman
4798 - Remove debugging output from apt.cron.daily (no one noticed?)
4799 - Apply patch from Anthony Towns to allow SHA1Summation to process a file
4800 descriptor until EOF, rather than requiring that the length of input be
4801 specified (Closes: #291338)
4802 - Fix build/install of Polish offline documentation, based on patch from
4803 Christian Perrier (Closes: #270404)
4804 * Michael Vogt
4805 - apt-cdrom.cc seperated into frontend (cmdline/apt-cdrom.cc and library
4806 apt-pkg/cdrom.{cc,h}) (Ubuntu #5668)
4807
4808 -- Matt Zimmerman <mdz@ubuntu.com> Fri, 4 Feb 2005 10:23:01 -0800
4809
4810 apt (0.6.30) unstable; urgency=low
4811
4812 * Add ppc64 to buildlib/archtable
4813 * Merge michael.vogt@canonical.com--2004/apt--status-fd--0
4814 - Support preserving dpkg status file descriptor, to support
4815 better integration with synaptic
4816
4817 -- Matt Zimmerman <mdz@ubuntu.com> Wed, 19 Jan 2005 00:26:01 -0800
4818
4819 apt (0.6.29) hoary; urgency=low
4820
4821 * Merge apt--mvo--0 (0.6.27ubuntu4)
4822
4823
4824 -- Matt Zimmerman <mdz@canonical.com> Tue, 28 Dec 2004 17:18:02 -0800
4825
4826 apt (0.6.28) hoary; urgency=low
4827
4828 * Merge apt--mvo--0
4829 * Rebuild source to get rid of arch metadata and temporary files in
4830 0.6.27ubuntu3
4831
4832 -- Matt Zimmerman <mdz@canonical.com> Thu, 23 Dec 2004 18:53:16 -0800
4833
4834 apt (0.6.27ubuntu4) hoary; urgency=low
4835
4836 * remove old sig-file in partial/ before starting to fetch a new sig-file
4837 (see ubuntu #4769 for the rational)
4838 * added apt-key update method (uses ubuntu-keyring)
4839 * documented the "--allow-unauthenticated" switch
4840 * added DEB_BUILD_PROG_OPTS to debian/rules (additonal options can be
4841 passed to DEB_BUILD_PROG like "-S")
4842
4843 -- Michael Vogt <mvo@debian.org> Thu, 23 Dec 2004 11:12:51 +0100
4844
4845 apt (0.6.27ubuntu3) hoary; urgency=low
4846
4847 * added a exact dependency from libapt-pkg-dev to the apt version it was
4848 build with
4849
4850 -- Michael Vogt <mvo@debian.org> Wed, 15 Dec 2004 09:56:32 +0100
4851
4852 apt (0.6.27ubuntu2) hoary; urgency=low
4853
4854 * fixed a bug in the rule file that happend during the big 0.5->0.6 merge
4855
4856 -- Michael Vogt <mvo@debian.org> Tue, 14 Dec 2004 12:14:25 +0100
4857
4858 apt (0.6.27ubuntu1) hoary; urgency=low
4859
4860 * chmod 755 /usr/bin/apt-key
4861 * don't display a error when a apt-get update don't find a
4862 Packages.bz2/Sources.bz2 file
4863
4864 -- Michael Vogt <mvo@debian.org> Mon, 13 Dec 2004 18:40:21 +0100
4865
4866 apt (0.6.27) hoary; urgency=low
4867
4868 * Merge apt--authentication--0 branch
4869 - Implement gpg authentication for package repositories (Closes: #203741)
4870 - Also includes Michael Vogt's fixes
4871 * Merge apt--misc-abi-changes--0 branch
4872 - Use pid_t throughout to hold process IDs (Closes: #226701)
4873 - Import patch from Debian bug #195510: (Closes: #195510)
4874 - Make Simulate::Describe and Simulate::ShortBreaks private member
4875 functions
4876 - Add a parameter (Candidate) to Describe to control whether the
4877 candidate version is displayed
4878 - Pass an appropriate value for Candidate everywhere Describe is called
4879
4880 -- Matt Zimmerman <mdz@canonical.com> Mon, 13 Dec 2004 01:03:11 -0800
4881
4882 apt (0.6.25) experimental; urgency=low
4883
4884 * Fix handling of two-part sources for sources.list deb-src entries in
4885 the same way that deb entries were fixed
4886
4887 -- Matt Zimmerman <mdz@debian.org> Wed, 9 Jun 2004 05:29:50 -0700
4888
4889 apt (0.6.24) experimental; urgency=low
4890
4891 * YnPrompt fixes were inadvertently left out, include them (Closes:
4892 #249251)
4893
4894 -- Matt Zimmerman <mdz@debian.org> Sun, 16 May 2004 14:18:53 -0700
4895
4896 apt (0.6.23) experimental; urgency=low
4897
4898 * Remove obsolete pkgIterator::TargetVer() (Closes: #230159)
4899 * Reverse test in CheckAuth to match new prompt (Closes: #248211)
4900
4901 -- Matt Zimmerman <mdz@debian.org> Sun, 9 May 2004 21:01:58 -0700
4902
4903 apt (0.6.22) experimental; urgency=low
4904
4905 * Merge 0.5.25
4906 * Make the unauthenticated packages prompt more intuitive (yes to
4907 continue, default no), but require --force-yes in addition to
4908 --assume-yes in order to override
4909
4910 -- Matt Zimmerman <mdz@debian.org> Fri, 19 Mar 2004 13:55:35 -0800
4911
4912 apt (0.6.21) experimental; urgency=low
4913
4914 * Merge 0.5.24
4915
4916 -- Matt Zimmerman <mdz@debian.org> Tue, 16 Mar 2004 22:52:34 -0800
4917
4918 apt (0.6.20) experimental; urgency=low
4919
4920 * Merge 0.5.23
4921
4922 -- Matt Zimmerman <mdz@debian.org> Thu, 26 Feb 2004 17:17:02 -0800
4923
4924 apt (0.6.19) experimental; urgency=low
4925
4926 * Merge 0.5.22
4927 * Convert apt-key(8) to docbook XML
4928
4929 -- Matt Zimmerman <mdz@debian.org> Mon, 9 Feb 2004 15:44:49 -0800
4930
4931 apt (0.6.18) experimental; urgency=low
4932
4933 * Add new Debian Archive Automatic Signing Key to the default keyring
4934 (existing keyrings are not updated; do that yourself)
4935
4936 -- Matt Zimmerman <mdz@debian.org> Sat, 17 Jan 2004 17:04:30 -0800
4937
4938 apt (0.6.17) experimental; urgency=low
4939
4940 * Merge 0.5.21
4941 * Handle more IMS stuff correctly
4942
4943 -- Matt Zimmerman <mdz@debian.org> Fri, 16 Jan 2004 10:54:25 -0800
4944
4945 apt (0.6.16) experimental; urgency=low
4946
4947 * Fix some cases where the .gpg file could be left in place when it is
4948 invalid
4949
4950 -- Matt Zimmerman <mdz@debian.org> Fri, 9 Jan 2004 09:22:15 -0800
4951
4952 apt (0.6.15) experimental; urgency=low
4953
4954 * s/Debug::Acquire::gpg/&v/
4955 * Honor the [vendor] syntax in sources.list again (though it is not
4956 presently used for anything)
4957 * Don't ship vendors.list(5) since it isn't used yet
4958 * Revert change from 0.6.10; it was right in the first place and the
4959 problem was apparently something else. Archive = Suite.
4960
4961 -- Matt Zimmerman <mdz@debian.org> Mon, 5 Jan 2004 17:43:01 -0800
4962
4963 apt (0.6.14) experimental; urgency=low
4964
4965 * Merge 0.5.20
4966
4967 -- Matt Zimmerman <mdz@debian.org> Sun, 4 Jan 2004 11:09:21 -0800
4968
4969 apt (0.6.13) experimental; urgency=low
4970
4971 * Merge 0.5.19
4972
4973 -- Matt Zimmerman <mdz@debian.org> Sat, 3 Jan 2004 16:22:31 -0800
4974
4975 apt (0.6.12) experimental; urgency=low
4976
4977 * Have pkgAcquireIndex calculate an MD5 sum if one is not provided by
4978 the method (as with file: and copy:). Local repositories
4979 * Fix warning about dist name mismatch to actually print what it was
4980 expecting
4981 * Don't expect any particular distribution name for two-part
4982 sources.list entries
4983 * Merge 0.5.18
4984
4985 -- Matt Zimmerman <mdz@debian.org> Fri, 2 Jan 2004 13:59:00 -0800
4986
4987 apt (0.6.11) experimental; urgency=low
4988
4989 * Support IMS requests of Release.gpg and Release
4990 * This required API changes, bump the libapt-pkg version
4991 * Copy local Release files into Dir::State::Lists
4992 * Set IndexFile attribute when retrieving Release and Release.gpg so
4993 that the appropriate Cache-Control headers are sent
4994
4995 -- Matt Zimmerman <mdz@debian.org> Fri, 2 Jan 2004 10:46:17 -0800
4996
4997 apt (0.6.10) experimental; urgency=low
4998
4999 * Use "Codename" (woody, sarge, etc.) to supply the value of the
5000 "Archive" package file attribute, used to match "release a=" type
5001 pins, rather than "Suite" (stable, testing, etc.)
5002
5003 -- Matt Zimmerman <mdz@debian.org> Thu, 1 Jan 2004 16:56:47 -0800
5004
5005 apt (0.6.9) experimental; urgency=low
5006
5007 * Another tagfile workaround
5008
5009 -- Matt Zimmerman <mdz@debian.org> Thu, 1 Jan 2004 13:56:08 -0800
5010
5011 apt (0.6.8) experimental; urgency=low
5012
5013 * Add a config option and corresponding command line option
5014 (--allow-unauthenticated) to apt-get, to make buildd operators happy
5015 (Closes: #225648)
5016
5017 -- Matt Zimmerman <mdz@debian.org> Wed, 31 Dec 2003 08:28:04 -0800
5018
5019 apt (0.6.7) experimental; urgency=low
5020
5021 * Forgot to revert part of the changes to tagfile in 0.6.4. Hopefully
5022 will fix segfaults for some folks.
5023
5024 -- Matt Zimmerman <mdz@debian.org> Wed, 31 Dec 2003 08:01:28 -0800
5025
5026 apt (0.6.6) experimental; urgency=low
5027
5028 * Restore the ugly hack I removed from indexRecords::Load which set the
5029 pkgTagFile buffer size to (file size)+256. This is concealing a bug,
5030 but I can't fix it right now. This should fix the segfaults that
5031 folks are seeing with 0.6.[45].
5032
5033 -- Matt Zimmerman <mdz@debian.org> Mon, 29 Dec 2003 18:11:13 -0800
5034
5035 apt (0.6.5) experimental; urgency=low
5036
5037 * Move the authentication check into a separate function in apt-get
5038 * Fix display of unauthenticated packages when they are in the cache
5039 (Closes: #225336)
5040
5041 -- Matt Zimmerman <mdz@debian.org> Sun, 28 Dec 2003 16:47:57 -0800
5042
5043 apt (0.6.4) experimental; urgency=low
5044
5045 * Use the top-level Release file in LoadReleaseInfo, rather than looking
5046 for the per-section ones (which aren't downloaded anymore). This
5047 unbreaks release pinning, including the NotAutomatic bit used by
5048 project/experimental
5049 * Use FileFd::Size() rather than a separate stat() call in
5050 LoadReleaseInfo
5051 * Fix pkgTagFile to leave a little extra room at the end of the buffer
5052 to append the record separator if it isn't present
5053 * Change LoadReleaseInfo to use "Suite" rather than "Archive", to match
5054 the Debian archive's dist-level Release files
5055
5056 -- Matt Zimmerman <mdz@debian.org> Sun, 28 Dec 2003 15:55:55 -0800
5057
5058 apt (0.6.3) experimental; urgency=low
5059
5060 * Fix MetaIndexURI for flat ("foo/") sources
5061
5062 -- Matt Zimmerman <mdz@debian.org> Sun, 28 Dec 2003 12:11:56 -0800
5063
5064 apt (0.6.2) experimental; urgency=low
5065
5066 * Add space between package names when multiple unauthenticated packages
5067 are being installed (Closes: #225212)
5068 * Provide apt-key with a secret keyring and a trustdb, even though we
5069 would never use them, because it blows up if it doesn't have them
5070 * Fix typo in apt-key(8) (standard input is '-', not '/')
5071
5072 -- Matt Zimmerman <mdz@debian.org> Sat, 27 Dec 2003 13:01:40 -0800
5073
5074 apt (0.6.1) experimental; urgency=low
5075
5076 * Merge apt 0.5.17
5077 * Rearrange Release file authentication code to be more clear
5078 * If Release is present, but Release.gpg is not, don't forget to still
5079 queue Packages files
5080 * Convert distribution "../project/experimental" to "experimental" for
5081 comparison purposes
5082 * Make a number of Release file errors into warnings; for now, it is OK
5083 not to have a codename, for example. We mostly care about checksums
5084 for now
5085
5086 -- Matt Zimmerman <mdz@debian.org> Fri, 26 Dec 2003 15:12:47 -0800
5087
5088 apt (0.6.0) experimental; urgency=low
5089
5090 * Signature verification support patch ("apt-secure") from Colin Walters
5091 <walters@debian.org> and Isaac Jones <ijones@syntaxpolice.org>. This
5092 implements:
5093 - Release signature verification (Release.gpg)
5094 - Packages, Sources md5sum verification against Release
5095 - Closes: #203741
5096 * Make some modifications to signature verification support:
5097 - Release.gpg is always retrieved and verified if present, rather than
5098 requiring that sources be configured as secure
5099 - Print a hint about installing gnupg if exec(gpgv) fails
5100 - Remove obsolete pkgAcqIndexRel
5101 - Move vendors.list stuff into a separate module (vendorlist.{h,cc})
5102 - If any files about to be retrieved are not authenticated, issue a
5103 warning to the user and require confirmation
5104 - Fix a heap corruption bug in pkgSrcRecords::pkgSrcRecords()
5105 * Suggests: gnupg
5106 * Install a keyring in /usr/share/apt/debian-archive.gpg containing an
5107 initial set of Debian archive signing keys to seed /etc/apt/trusted.gpg
5108 * Add a new tool, apt-key(8) used to manage the keyring
5109
5110 -- Matt Zimmerman <mdz@debian.org> Fri, 26 Dec 2003 08:27:19 -0800
5111
5112 apt (0.5.32) hoary; urgency=low
5113
5114 * Call setlocale in the methods, so that the messages are properly
5115 localised (Closes: #282700)
5116 * Implement support for bzip2-compressed debs (data.tar.bz2)
5117
5118 -- Matt Zimmerman <mdz@canonical.com> Sat, 11 Dec 2004 09:05:52 -0800
5119
5120 apt (0.5.31) unstable; urgency=low
5121
5122 * New Romanian translation from Sorin Batariuc <sorin@bonbon.net>
5123 (Closes: #281458)
5124 * Merge changes from Hoary (0.5.30,0.5.30ubuntu2]
5125 * Fix the example in apt_preferences(5) to match the text
5126 (Closes: #222267)
5127 * Add APT::Periodic::Autoclean setting, to allow "apt-get autoclean" to
5128 be run periodically. This is useful with
5129 APT::Periodic::Download-Upgradeable-Packages, and defaults to the same
5130 value, so that the cache size is bounded
5131
5132 -- Matt Zimmerman <mdz@debian.org> Tue, 23 Nov 2004 12:53:04 -0800
5133
5134 apt (0.5.30ubuntu2) hoary; urgency=low
5135
5136 * bzip2 is now "Suggested" and it will detect if bzip2 is installed
5137 and only then trying to get Packages.bz2
5138
5139 -- Michael Vogt <mvo@debian.org> Fri, 19 Nov 2004 12:00:39 +0100
5140
5141 apt (0.5.30ubuntu1) hoary; urgency=low
5142
5143 * Need to Depend: bzip2 or Packages.bz2 fail.
5144
5145 -- LaMont Jones <lamont@canonical.com> Thu, 18 Nov 2004 12:51:05 -0700
5146
5147 apt (0.5.30) hoary; urgency=low
5148
5149 * Patch from Michael Vogt to enable Packages.bz2 use, with a fallback to
5150 Packages.gz if it is not present (Closes: #37525)
5151
5152 -- Matt Zimmerman <mdz@debian.org> Mon, 15 Nov 2004 12:57:28 -0800
5153
5154 apt (0.5.29) unstable; urgency=low
5155
5156 * Don't hardcode paths in apt.cron.daily
5157 * Add to apt.cron.daily the capability to pre-download upgradeable
5158 packages
5159 * Place timestamp files in /var/lib/apt/periodic, rather than
5160 /var/lib/apt itself
5161 * Standardize debhelper files a bit
5162 - Create all directories in debian/dirs rather than creating some on
5163 the dh_installdirs command line
5164 - Rename debian/dirs to debian/apt.dirs, debian/examples to
5165 debian/apt.examples
5166
5167 -- Matt Zimmerman <mdz@debian.org> Sat, 13 Nov 2004 17:58:07 -0800
5168
5169 apt (0.5.28) hoary; urgency=low
5170
5171 * Translation updates:
5172 - Updated Hungarian from Kelemen Gábor <kelemeng@gnome.hu> (Closes: #263436)
5173 - Updated Greek from George Papamichelakis (Closes: #265004)
5174 - Updated Simplified Chinese from Tchaikov (Closes: #265190)
5175 - Updated French by Christian Perrier (Closes: #265816)
5176 - Updated Japanese by Kenshi Muto (Closes: #265630)
5177 - Updated Catalan from Jordi Mallach
5178 - Updated Dutch from Bart Cornelis (Closes: #268258, #278697)
5179 - Updated Portuguese from Miguel Figueiredo (Closes: #268265)
5180 - Updated Polish from Robert Luberda <robert@debian.org> (Closes: #268451)
5181 - Updated Danish from Claus Hindsgaul (Closes: #269417)
5182 - Updated Norwegian Nynorsk from Håvard Korsvoll <korsvoll@skulelinux.no>
5183 (Closes: #269965)
5184 - Updated Russian from Yuri Kozlov <yuray@id.ru> (Closes: #271104)
5185 - Updated Italian from Samuele Giovanni Tonon <samu@debian.org>
5186 (Closes: #275083)
5187 - Updated Brazilian Portuguese from Andre Luis Lopes (Closes: #273944)
5188 - Updated Slovak from Peter Mann (Closes: #279481)
5189 * APT::Get::APT::Get::No-List-Cleanup -> APT::Get::List-Cleanup in apt-get.cc
5190 (Closes: #267266)
5191 * Merge Ubuntu changes:
5192 - Set default Dpkg::MaxArgs to 1024, and Dpkg::MaxArgBytes to 32k.
5193 Needed to work around ordering bugs when installing a large number of
5194 packages
5195 - Patch from Michael Vogt to add an optional cron job which
5196 can run apt-get update periodically
5197 * Add arch-build target to debian/rules
5198
5199 -- Matt Zimmerman <mdz@debian.org> Sat, 13 Nov 2004 15:52:20 -0800
5200
5201 apt (0.5.27) unstable; urgency=high
5202
5203 * Sneak in a bunch of updated translations before the freeze
5204 (no code changes)
5205 * Translation updates:
5206 - New Finnish translation from Tapio Lehtonen <tale@debian.org>
5207 (Closes: #258999)
5208 - New Bosnian translation from Safir Šećerović <sapphire@linux.org.ba>
5209 (Closes: #254201)
5210 - Fix Italian incontrario (Closes: #217277)
5211 - Updated Spanish from Ruben Porras (Closes: #260483)
5212 - Updated Danish from Claus Hindsgaul (Closes: #260569)
5213 - Updated Slovak from Peter Mann (Closes: #260627)
5214 - Updated Portuguese from Miguel Figueiredo (Closes: #261423)
5215 * Bring configure-index up to date with documented options, patch from
5216 Uwe Zeisberger <zeisberg@informatik.uni-freiburg.de> (Closes: #259540)
5217 * Note in apt.conf(5) that configure-index does not contain strictly
5218 default values, but also examples
5219 * Add Polish translation of offline.sgml (Closes: #259229)
5220
5221 -- Matt Zimmerman <mdz@debian.org> Thu, 29 Jul 2004 09:30:12 -0700
5222
5223 apt (0.5.26) unstable; urgency=low
5224
5225 * Translation updates:
5226 - Spanish update from Ruben Porras <nahoo82@telefonica.net> (Closes: #248214)
5227 - Sync Spanish apt(8) (Closes: #249241)
5228 - French update from Christian Perrier <bubulle@debian.org> (Closes: #248614)
5229 - New Slovak translation from Peter Mann <Peter.Mann@tuke.sk> (Closes: #251676)
5230 - Czech update from Miroslav Kure <kurem@upcase.inf.upol.cz> (Closes: #251682)
5231 - pt_BR update from Andre Luis Lopes <andrelop@debian.org> (Closes: #251961)
5232 - German translation of apt(8) from Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
5233 (Closes: #249453)
5234 - pt update from Miguel Figueiredo <elmig@debianpt.org> (Closes: #252700)
5235 - New Hebrew translation from Lior Kaplan <webmaster@guides.co.il>
5236 (Closes: #253182)
5237 - New Basque translation from Piarres Beobide Egaña <pi@beobide.net>
5238 (Vasco - Euskara - difficult language, Closes: #254407) and already a
5239 correction (Closes: #255760)
5240 - Updated Brazilian Portuguese translation from
5241 Guilherme de S. Pastore <gpastore@colband.com.br> (Closes: #256396)
5242 - Updated Greek translation (complete now) from
5243 George Papamichelakis <george@step.gr> (Closes: #256797)
5244 - New Korean translation from Changwoo Ryu <cwryu@debian.org>
5245 (Closes: #257143)
5246 - German translation now available in two flavours: with Unicode usage and
5247 without (related to #228486, #235759)
5248 * Update apt-get(8) to reflect the fact that APT::Get::Only-Source will
5249 affect apt-get build-dep as well as apt-get source
5250 * Remove aborted remnants of a different method of implementing DEB_BUILD_OPTIONS
5251 from debian/rules
5252 * Fix typo in error message when encountering unknown type in source list
5253 (Closes: #253217)
5254 * Update k*bsd-gnu arch names in buildlib/ostable (Closes: #253532)
5255 * Add amd64 to buildlib/archtable (Closes: #240896)
5256 * Have configure output a more useful error message if the architecture
5257 isn't in archtable
5258
5259 -- Matt Zimmerman <mdz@debian.org> Thu, 8 Jul 2004 15:53:28 -0700
5260
5261 apt (0.5.25) unstable; urgency=low
5262
5263 * Patch from Jason Gunthorpe to remove arbitrary length limit on Binary
5264 field in SourcesWriter::DoPackage
5265 * Fix typo in apt-cache(8) (Closes: #238578)
5266 * Fix obsolete reference to bug(1) in stub apt(8) man page
5267 (Closes: #245923)
5268 * Fix typo in configure-index (RecruseDepends -> RecurseDepends)
5269 (Closes: #246550)
5270 * Support DEB_BUILD_OPTIONS=noopt in debian/rules
5271 (Closes: #244293)
5272 * Increase length of line buffer in ReadConfigFile to 1024 chars;
5273 detect if a line is longer than that and error out
5274 (Closes: #244835)
5275 * Suppress a signed/unsigned warning in apt-cache.cc:DisplayRecord
5276 * Build apt-ftparchive with libdb4.2 rather than libdb2
5277 - Patch from Clint Adams to do most of the work
5278 - Build-Depends: s/libdb2-dev/libdb4.2-dev/
5279 - Add AC_PREREQ(2.50) to configure.in
5280 - Use db_strerror(err) rather than GlobalError::Errno (which uses strerror)
5281 - Add note to NEWS.Debian about upgrading old databases
5282 * Attempt to fix problems with chunked encoding by stripping only a single CR
5283 (Closes: #152711)
5284 * Modify debian/rules cvs-build to use cvs export, to avoid picking up
5285 junk files from the working directory
5286 * Add lang=fr attribute to refentry section of
5287 apt-extracttemplates.fr.1.sgml and apt-sortpkgs.fr.1.sgml so they are
5288 correctly built
5289 * Remove extraneous '\' characters from <command> tags in
5290 apt_preferences.fr.5.sgml
5291 * Translation updates:
5292 - Updated Swedish translation from Peter Karlsson <peter@softwolves.pp.se>
5293 (Closes: #238943)
5294 - New Slovenian translation from Jure Čuhalev <gandalf@owca.info>
5295 (closes: #239785)
5296 - New Portuguese translation from Miguel Figueiredo <elmig@debianpt.org>
5297 (closes: #240074)
5298 - Updated Spanish translation from Ruben Porras <nahoo82@telefonica.net>
5299 - Updated Spanish translation of man pages from Ruben Porras
5300 <nahoo82@telefonica.net>
5301 - Updated Simplified Chinese translation from "Carlos Z.F. Liu" <carlos_liu@yahoo.com>
5302 (Closes: #241971)
5303 - Updated Russian translation from Dmitry Astapov <adept@despammed.com>
5304 (Closes: #243959)
5305 - Updated Polish translation from Marcin Owsiany <porridge@debian.org>
5306 (Closes: #242388)
5307 - Updated Czech translation from Miroslav Kure <kurem@upcase.inf.upol.cz>
5308 (Closes: #244369)
5309 - Updated Japanese translation from Kenshi Muto <kmuto@debian.org>
5310 (Closes: #244176)
5311 - Run make -C po update-po to update .po files
5312 - Updated French translation from Christian Perrier <bubulle@debian.org>
5313 (Closes: #246925)
5314 - Updated Danish translation from Claus Hindsgaul <claus_h@image.dk>
5315 (Closes: #247311)
5316
5317 -- Matt Zimmerman <mdz@debian.org> Sat, 8 May 2004 12:52:20 -0700
5318
5319 apt (0.5.24) unstable; urgency=low
5320
5321 * Updated Czech translation from Miroslav Kure <kurem@upcase.inf.upol.cz>
5322 (Closes: #235822)
5323 * Updated French translation from Christian Perrier <bubulle@debian.org>
5324 (Closes: #237403)
5325 * Updates to XML man pages from richard.bos@xs4all.nl
5326 * Updated Danish translation from Claus Hindsgaul <claus_h@image.dk>
5327 (Closes: #237771)
5328 * Updated Greek translation from Konstantinos Margaritis
5329 <markos@debian.org>
5330 (Closes: #237806)
5331 * Updated Spanish translation from Ruben Porras <nahoo82@telefonica.net>
5332 (Closes: #237863)
5333 * Updated pt_BR translation from Andre Luis Lopes <andrelop@debian.org>
5334 (Closes: #237960)
5335 * Regenerate .pot file (Closes: #237892)
5336 * Updated Polish translation from Marcin Owsiany <porridge@debian.org>
5337 (Closes: #238333)
5338 * In pkgAcquire::Shutdown(), set the status of fetching items to
5339 StatError to avoid a sometimes large batch of error messages
5340 (Closes: #234685)
5341 * Implement an ugly workaround for the 10000-character limit on the
5342 Binaries field in debSrcRecordParser, until such time as some things
5343 can be converted over to use STL data types (ABI change) (Closes: #236688)
5344 * Increase default tagfile buffer from 32k to 128k; this arbitrary limit
5345 should also be removed someday (Closes: #174945)
5346 * Checked against Standards-Version 3.6.1 (no changes)
5347
5348 -- Matt Zimmerman <mdz@debian.org> Tue, 16 Mar 2004 22:47:55 -0800
5349
5350 apt (0.5.23) unstable; urgency=low
5351
5352 * Cosmetic updates to XML man pages from Richard Bos <radoeka@xs4all.nl>
5353 * Use the 'binary' target rather than 'all' so that the ssh and bzip2
5354 symlinks are created correctly (thanks to Adam Heath)
5355 (Closes: #214842)
5356 * Updated Simplified Chinese translation of message catalog from Tchaikov
5357 <chaisave@263.net> (Closes: #234186)
5358 * Change default for Acquire::http::max-age to 0 to prevent index files
5359 being out of sync with each other (important with Release.gpg)
5360 * Add an assert() to make sure that we don't overflow a fixed-size
5361 buffer in the very unlikely event that someone adds 10 packaging
5362 systems to apt (Closes: #233678)
5363 * Fix whitespace in French translation of "Yes, do as I say!", which
5364 made it tricky to type, again. Thanks to Sylvain Pasche
5365 <sylvain.pasche@switzerland.org> (Closes: #234494)
5366 * Print a slightly clearer error message if no packaging systems are
5367 available (Closes: #233681)
5368 * Point to Build-Depends in COMPILING (Closes: #233669)
5369 * Make debian/rules a bit more consistent in a few places.
5370 Specifically, always use -p$@ rather than an explicit package name,
5371 and always specify it first, and use dh_shlibdeps -l uniformly rather
5372 than sometimes changing LD_LIBRARY_PATH directly
5373 * Document unit for Cache-Limit (bytes) (Closes: #234737)
5374 * Don't translate "Yes, do as I say!" in Chinese locales, because it can
5375 be difficult to input (Closes: #234886)
5376
5377 -- Matt Zimmerman <mdz@debian.org> Thu, 26 Feb 2004 17:08:14 -0800
5378
5379 apt (0.5.22) unstable; urgency=low
5380
5381 * Updated French translation of man pages from Philippe Batailler
5382 <philippe.batailler@free.fr> (Closes: #203119)
5383 * Initialize StatusFile in debSystem (Closes: #229791)
5384 * Fix apt-get's suggests/recommends printing, which was skipping every
5385 other dependency due to both using GlobOr and incrementing the DepIterator
5386 (Closes: #229722)
5387 * Restore SIGINT/SIGQUIT handlers to their old values (rather than
5388 SIG_DFL) after invoking dpkg (Closes: #229854)
5389 * Updated Dutch translation of message catalog from cobaco
5390 <cobaco@linux.be> (Closes: #229601)
5391 * Catalan translation from Antoni Bella, Matt Bonner and Jordi Mallach
5392 (Closes: #230102)
5393 * Simplified Chinese translation of message catalog from "Carlos
5394 Z.F. Liu" <carlos_liu@yahoo.com> (Closes: #230960)
5395 * Replace SGML manpages with XML man pages from richard.bos@xs4all.nl
5396 (Closes: #230687)
5397 * Updated Spanish translation of man pages from Ruben Porras
5398 <nahoo82@telefonica.net> (Closes: #231539)
5399 * New Czech translation of message catalog from Miroslav Kure
5400 <kurem@upcase.inf.upol.cz> (Closes: #231921)
5401
5402 -- Matt Zimmerman <mdz@debian.org> Mon, 9 Feb 2004 12:44:54 -0800
5403
5404 apt (0.5.21) unstable; urgency=low
5405
5406 * Patch from Eric Wong <normalperson@yhbt.net> to include apt18n.h after
5407 other headers to avoid breaking locale.h when setlocale() is defined
5408 as an empty macro. This was not a problem on Debian, but broke
5409 compilation on Solaris. (Closes: #226509)
5410 * Updated French translation from Pierre Machard <pmachard@debian.org>
5411 (Closes: #226886)
5412 * Add colons to apt-get's "kept back"/"upgraded"/"downgraded" messages
5413 (Closes: #226813)
5414 * Fix typo in apt-cache(8) (Closes: #226351)
5415 * Clearer error message in place of "...has no available version, but
5416 exists in the database" (Closes: #212203)
5417 * Patch from Oliver Kurth <oku@masqmail.cx> to use AC_CACHE_VAL for
5418 GLIBC_VER to make cross-compilation easier (Closes: #221528)
5419 * Add example preferences file (Closes: #220799)
5420 * Updated Greek translation from Konstantinos Margaritis <markos@debian.org>
5421 (Closes: #227205)
5422 * Updated Spanish translation of man pages from Ruben Porras
5423 <nahoo82@telefonica.net> (Closes: #227729)
5424
5425 -- Matt Zimmerman <mdz@debian.org> Fri, 16 Jan 2004 10:54:39 -0800
5426
5427 apt (0.5.20) unstable; urgency=low
5428
5429 * Fixed German translations of "Suggested" from Christian Garbs
5430 <debian@cgarbs.de> (Closes: #197960)
5431 * Add an "apt-cache madison" command with an output format similar to
5432 the katie tool of the same name (but less functionality)
5433 * Fix debSourcesIndex::Describe() to correctly say "Sources" rather than
5434 "Packages"
5435
5436 -- Matt Zimmerman <mdz@debian.org> Sat, 3 Jan 2004 23:42:50 -0800
5437
5438 apt (0.5.19) unstable; urgency=low
5439
5440 * Fix Packages::Extensions support in apt-ftparchive generate
5441 (Closes: #225453)
5442
5443 -- Matt Zimmerman <mdz@debian.org> Sat, 3 Jan 2004 16:20:31 -0800
5444
5445 apt (0.5.18) unstable; urgency=low
5446
5447 * New no_NO.po file from Tollef Fog Heen <tfheen@debian.org> to fix
5448 encoding problems (Closes: #225602)
5449 * Have "apt-ftparchive release" strip the leading path component from
5450 the checksum entries
5451
5452 -- Matt Zimmerman <mdz@debian.org> Fri, 2 Jan 2004 11:24:35 -0800
5453
5454 apt (0.5.17) unstable; urgency=low
5455
5456 * Enable apt-ftparchive to generate Release files. Hopefully this will
5457 make it easier for folks to secure their apt-able packages
5458
5459 -- Matt Zimmerman <mdz@debian.org> Fri, 26 Dec 2003 12:53:21 -0800
5460
5461 apt (0.5.16) unstable; urgency=low
5462
5463 * po/de.po update from Michael Karcher <karcher@physik.fu-berlin.de>
5464 (Closes: #222560)
5465 * Update config.guess and config.sub from autotools-dev 20031007.1
5466 * Add knetbsd to buildlib/ostable (Closes: #212344)
5467 * Don't suggest apt-get -f install to correct broken build-deps; broken
5468 installed packages are rarely the cause (Closes: #220858)
5469 * Avoid clobbering configure.in if sed fails
5470
5471 -- Matt Zimmerman <mdz@debian.org> Wed, 24 Dec 2003 14:54:40 -0800
5472
5473 apt (0.5.15) unstable; urgency=low
5474
5475 * Spanish man pages, patch from Ruben Porras <nahoo82@telefonica.net>
5476 (Closes: #195444)
5477 - apt.es.8 wasn't included in the patch, but was referenced. Fetched
5478 version 1.3 from debian-doc cvs
5479 - Create doc/es/.cvsignore
5480 * Patch from Koblinger Egmont <egmont@uhulinux.hu> to fix
5481 pkgCache::PkgFileIterator::Label() to correctly refer to File->Label
5482 rather than File->Origin (Closes: #213311)
5483 * Add missing comma and space to German translation of "downgraded"
5484 (Closes: #213975)
5485 * Add missing comma in apt_preferences(5) (Closes: #215362)
5486 * Fix whitespace in French translation of "Yes, do as I say!", which
5487 made it tricky to type. Thanks to Sylvain Pasche
5488 <sylvain.pasche@switzerland.org> (Closes: #217152)
5489 * Let apt-get build-dep try alternatives if the installed package
5490 doesn't meet version requirements (Closes: #214736)
5491 * Fix version display for recommends (Closes: #219900)
5492 * Use isatty rather than ttyname for checking if stdin is a terminal.
5493 isatty has the advantage of not requiring /proc under Linux, and thus
5494 Closes: #221728
5495 * Correctly implement -n as a synonym for --names-only (Closes: #224515)
5496 * Update apt-cache(8)
5497 - Document --installed
5498 - --recursive applies to both depends and rdepends
5499 * Japanese translation of documentation from Kurasawa Nozomu <nabetaro@slug.jp>
5500 (Closes: #186235)
5501 * Clarify documentation of --no-upgrade in apt-get(8) (Closes: #219743)
5502 * Clean up and simplify some of the suggests/recommends display in apt-get
5503 * Use cvs update -d in debian/rules cvs-build rather than just update
5504 * Pass --preserve-envvar PATH --preserve-envvar CCACHE_DIR to debuild. apt
5505 takes a long time to build, and ccache helps
5506
5507 -- Matt Zimmerman <mdz@debian.org> Sat, 20 Dec 2003 16:34:30 -0800
5508
5509 apt (0.5.14) unstable; urgency=low
5510
5511 * apt-get build-dep, when trying to skip over the remaining elements of
5512 an or-expression, would accidentally inherit the version requirements of a
5513 later item in the or-expression. Fixed it.
5514 * Let apt-get build-dep try alternatives if the first dependency in an
5515 or-expression is not available
5516 * Add a Debug::BuildDeps to generate some trace output
5517 * Help apt-get build-dep produce more useful error messages
5518 * Process build-dependencies in forward rather than reverse order
5519 * Error out if an installed package is too new for a << or <=
5520 build-dependency
5521 * apt-get build-dep should now be able to handle almost any package with
5522 correct build-depends. The primary exception is build-dependencies on
5523 virtual packages with more than one provider, and these are
5524 discouraged for automated processing (but still common,
5525 unfortunately).
5526
5527 -- Matt Zimmerman <mdz@debian.org> Tue, 23 Sep 2003 22:57:31 -0400
5528
5529 apt (0.5.13) unstable; urgency=medium
5530
5531 * Document configuration file comment syntax in apt.conf(5)
5532 (Closes: #211262)
5533 * s/removed/installed/ in a comment in apt-get.cc
5534 * Move comment for ListParser::ParseDepends into the right place
5535 * Don't preserve ownership when copying config.guess and config.sub.
5536 This broke builds where the clean target was run with different
5537 privileges than the rest of the build (i.e., root) (Closes: #212183)
5538 * On second thought, don't copy config.guess and config.sub at all. I'd
5539 rather they always match what is in CVS.
5540
5541 -- Matt Zimmerman <mdz@debian.org> Mon, 22 Sep 2003 10:28:17 -0400
5542
5543 apt (0.5.12) unstable; urgency=low
5544
5545 * Exclude subdirectories named 'debian-installer' from the apt-cdrom
5546 search (Closes: #210485 -- release-critical)
5547
5548 -- Matt Zimmerman <mdz@debian.org> Thu, 11 Sep 2003 21:48:14 -0400
5549
5550 apt (0.5.11) unstable; urgency=low
5551
5552 * Updated pt_BR translations from Andre Luis Lopes <andrelop@debian.org>
5553 (Closes: #208302)
5554 * In apt.conf(5), give the fully qualified name of Dir::Bin::Methods,
5555 rather than just "methods"
5556 * Add new nb and nn translations from Petter Reinholdtsen <pere@hungry.com>
5557 * Clean up reportbug script a bit, and extend it to distinguish between a
5558 configuration file not existing and the user declining to submit it with
5559 the report
5560 * Add #include <langinfo.h> to cmdline/apt-get.cc. This apparently gets
5561 pulled in by something else with recent g++ and/or glibc, but is
5562 required when building on, e.g., stable
5563 * Patch from Koblinger Egmont <egmont@uhulinux.hu> to fix version
5564 comparisons with '~' (Closes: #205960)
5565 * Disable Russian translation until someone can review it
5566 (Closes: #207690)
5567
5568 -- Matt Zimmerman <mdz@debian.org> Wed, 10 Sep 2003 19:41:28 -0400
5569
5570 apt (0.5.10) unstable; urgency=low
5571
5572 * Correct the section in apt_preferences(5) on interpreting priorities
5573 to show that zero is not a valid priority, and print a warning if such
5574 a pin is encountered in the preferences file (Closes: #204971)
5575 * Regenerate French man pages from sgml source (Closes: #205886)
5576 * Get self-tests compiling again, updated for latest library API
5577 and g++ 3.3
5578 * Add version comparison tests for #194327 and #205960
5579 * Fix error message in version test to output versions in the order in
5580 which they were compared when the reverse comparison fails
5581 * Reference the source package bug page rather than the one for the
5582 binary package 'apt' in the man pages (Closes: #205290)
5583 * Updated Polish po file from Marcin Owsiany <porridge@debian.org>
5584 (Closes: #205950)
5585 * Mention some of the available frontends in apt-get(8) (Closes: #205829)
5586 * Add apt-config to SEE ALSO section of apt-get (Closes: #205036)
5587 * Add missing "lang" attributes to refentry tags in French man pages
5588 (apt-cdrom, apt-extracttemplates, apt-sortpkgs)
5589 * Change upgraded/newly installed/not fully installed or removed
5590 messages to be consistent and somewhat shorter (some translations
5591 exceeded 80 characters even in the simplest case)
5592 * Make APT::Get::Show-Upgraded (aka apt-get -u) default to true.
5593 * Updates to Dutch translation from Bart Cornelis <cobaco@linux.be>
5594 (Closes: #207656)
5595
5596 -- Matt Zimmerman <mdz@debian.org> Sun, 31 Aug 2003 21:12:39 -0400
5597
5598 apt (0.5.9) unstable; urgency=low
5599
5600 * Oh well, apt isn't going to make it into testing anytime soon due to
5601 new glibc and gcc deps, so we might as well fix more bugs
5602 * Fix typo in example ftp-archive.conf (Closes: #203295)
5603 * Mention default setting for --all-versions (Closes: #203298)
5604 * Patch from Otavio Salvador <otavio@debian.org> to have --version
5605 only print the version (and not usage as well) (Closes: #203418)
5606 * Patch from Otavio Salvador <otavio@debian.org> to switch from
5607 dh_installmanpages to dh_installman. Fixes the problem where the
5608 pt_BR man page was installed in the wrong location (Closes: #194558)
5609 * Move the French apt-ftparchive man page into apt-utils where it
5610 belongs. apt-utils Replaces: apt (<< 0.5.9)
5611 * Write records from "apt-cache show" using fwrite(3) rather than
5612 write(2), in case for some reason the entire record doesn't get
5613 written by a single write(2)
5614 * Add new French man pages to doc/fr/.cvsignore
5615 * Add freebsd to buildlib/ostable (Closes: #193430)
5616 * Avoid segfault if a package name is specified which consists
5617 entirely of characters which look like end tags ('+', '-')
5618 (Closes: #200425)
5619 * Patch from Otavio Salvador <otavio@debian.org> to avoid listing
5620 suggests/recommends for packages which are selected for installation
5621 at the same time as the package which suggests/recommends them
5622 (Closes: #200102)
5623 * Patch from Otavio Salvador <otavio@debian.org> to avoid listing
5624 suggests/recommends which are Provided by a package which is already
5625 installed (Closes: #200395)
5626 * Patch to update pt_BR man page for apt_preferences(5) from Andre Luis
5627 Lopes <andrelop@debian.org> (Closes: #202245)
5628 * Use nl_langinfo(YESEXPR) rather than comparing to the translated
5629 string "Y". Closes: #200953 and should make the prompting generally
5630 more robust in the face of i18n. In the particular case of #200953,
5631 it was being fooled because of signedness issues with toupper(3)
5632 (Closes: #194614)
5633 * apt Suggests: aptitude | synaptic | gnome-apt | wajig
5634 (Closes: #146667)
5635 * Clean up whitespace in translated strings in ru.po, which messed up
5636 indentation (some other translations probably have similar problems)
5637 (Closes: #194282)
5638 * Run ispell -h over the man page sources and fix a bunch of typos
5639 * Use debian/compat rather than DH_COMPAT
5640 * Update to debhelper compatibility level 3
5641 - remove ldconfig calls from debian/{postinst,postrm} as dh_makeshlibs
5642 will add them
5643 - echo 3 > debian/compat
5644 - Build-Depends: debhelper (>= 3)
5645 * Exclude '.#*' from cvs-build
5646 * Let the ftp method work with ftp servers which do not require a
5647 password (Closes: #199425)
5648 * Build-depend on debhelper >= 4.1.62, because we need the fix for
5649 #204731 in order for dh_installman to work correctly
5650 with our SGML man pages
5651 * Move dh_makeshlibs ahead of dh_installdeb so that its postinst
5652 fragments are properly substituted
5653
5654 -- Matt Zimmerman <mdz@debian.org> Sun, 10 Aug 2003 19:54:39 -0400
5655
5656 apt (0.5.8) unstable; urgency=medium
5657
5658 * urgency=medium because the changes since 0.5.5.1 are pretty safe as
5659 far as core functionality, 0.5.5.1 survived unstable for 10 days, and
5660 I don't want to delay apt's progress into testing any further. It's
5661 decidedly better than 0.5.4.
5662 * Clarify the meaning of the only-source option in apt-get(8)
5663 (Closes: #177258)
5664 * Updated French man pages from Philippe Batailler
5665 <philippe.batailler@free.fr> (Closes: #182194)
5666 * Give a warning if an illegal type abbreviation is used when looking up a
5667 configuration item (Closes: #168453)
5668 * Improve build-depends handling of virtual packages even further, so that
5669 it will now also try to satisfy build-depends on virtual packages if they
5670 are not installed. Note that this only works if there is only one
5671 package providing the virtual package, as in other cases (Closes: #165404)
5672 * Update config.guess and config.sub from autotools-dev 20030717.1
5673 * Tweak SGML in apt-extracttemplates.1.sgml so that literal '>' doesn't end
5674 up in output
5675 * Document SrcDirectory in apt-ftparchive.1.sgml (Closes: #156370)
5676 * Support TMPDIR in apt-extracttemplates (Closes: #191656)
5677 * Fix ru.po to use a capital letter for the translation of 'Y' so that
5678 YnPrompt works correctly (Closes: #200953). No other translations seem
5679 to have this problem
5680 * Regenerate POT file and sync .po files
5681 * Only try to clear stdin if it is a tty, to avoid looping if there is
5682 lots of stuff (perhaps an infinite amount) to read (Closes: #192228)
5683
5684 -- Matt Zimmerman <mdz@debian.org> Fri, 25 Jul 2003 20:21:53 -0400
5685
5686 apt (0.5.7) unstable; urgency=low
5687
5688 * Update control file to match overrides (apt priority important,
5689 libapt-pkg-dev section libdevel)
5690 * Silence the essential packages check if we are only downloading
5691 archives and not changing the system (Closes: #190862)
5692 * Skip version check if a build-dependency is provided by an installed package
5693 (Closes: #126938)
5694 * Have apt-cache show exit with an error if it cannot find any of the
5695 specified packages (Closes: #101490)
5696
5697 -- Matt Zimmerman <mdz@debian.org> Mon, 21 Jul 2003 23:43:24 -0400
5698
5699 apt (0.5.6) unstable; urgency=low
5700
5701 * Adam Heath <doogie@debian.org>
5702 - Fix segfault when handling /etc/apt/preferences. Closes: #192409.
5703 * Matt Zimmerman <mdz@debian.org>
5704 - Clean up some string handling, patch from Peter Lundkvist
5705 <p.lundkvist@telia.com> (Closes: #192225)
5706 - Don't fall off the end of the buffer when comparing versions.
5707 Patch from Koblinger Egmont <egmont@uhulinux.hu> (Closes: #194327)
5708 - Minor fixes to apt-ftparchive(1) (Closes: #118156)
5709 - Fix typo in apt-ftparchive help text (Closes: #119072)
5710 - More typos in apt-ftparchive help text (Closes: #190936)
5711 - Update config.guess, config.sub to latest versions
5712 - Modify the description for apt-utils to reflect the fact that it is not
5713 (any longer) infrequently used (Closes: #138045)
5714 - Make setup script for dselect method more explicit about
5715 overwriting sources.list (Closes: #151727)
5716 - Fix typo in apt-cache(8) (Closes: #161243)
5717 - Remove duplicate 'showpkg' from synopsis on apt-cache(8)
5718 (Closes: #175611)
5719 - Document in apt-get(8) the meaning of the '*' in ShowList, which is that
5720 the package is being purged (Closes: #182369)
5721 - Fix extra "/" character in apt.conf(5) (Closes: #185545)
5722 - Fix typo in tar error message (Closes: #191424)
5723 - Clarify description of 'search' on apt-cache(8) (Closes: #192216)
5724 - Fix incorrect path for 'partial' directory on apt-get(8)
5725 (Closes: #192933)
5726 - Fixes to pt_BR translation from Andre Luis Lopes <andrelop@ig.com.br>
5727 (Closes: #196669)
5728 - Updated apt_preferences(5) man page with many corrections and
5729 clarifications from Thomas Hood <jdthood@yahoo.co.uk>
5730 (Closes: #193336)
5731 - Fix SGML validation errors in apt-cache.8.sgml introduced in 0.5.5 or so
5732 - Add a simple example to apt-ftparchive(1) (Closes: #95257)
5733 - Add bug script for collecting configuration info (Closes: #176482)
5734
5735 -- Matt Zimmerman <mdz@debian.org> Mon, 21 Jul 2003 01:59:43 -0400
5736
5737 apt (0.5.5.1) unstable; urgency=low
5738
5739 * Move the target of the example docs from doc to binary. Closes:
5740 #192331
5741 * Fix api breakage that broke apt-ftparchive and apt-cache dumpavail, by
5742 backing out change that incorretly attempted to handle Package sections
5743 larger than 32k. Closes: #192373
5744 * Fix never-ending loop with apt-get install -V. Closes: #192355.
5745
5746 -- Adam Heath <doogie@debian.org> Mon, 19 May 2003 12:30:16 -0500
5747
5748 apt (0.5.5) unstable; urgency=low
5749
5750 * New deb version compare function, that has no integer limits, and
5751 supports pre-versions using ~. Code ported from dpkg.
5752 * Fix handling of [!arch] for build-dependencies. Closes: #88798, #149595
5753 * Fix handling of build-deps on unknown packages. Closes: #88664, #153307
5754 * "apt-get --arch-only build-dep" to install only architecture-
5755 dependent build dependencies. Bump minor shared lib number to reflect
5756 small change in BuildDepend API.
5757 * APT::Build-Essential configuration option (defaults to "build-essential")
5758 so that "apt-get build-dep" will ensure build essential packages are
5759 installed prior to installing other build-dependencies. Closes: #148879
5760 * LD_LIBRARY_PATH thing. Closes: #109430, #147529
5761 * /usr/doc reference in postinst. Closes: #126189
5762 * Doc updates. Closes: #120689
5763 * Possible apt-cache segfault. Closes: #120311, #118431, #117915, #135295,
5764 #131062, #136749
5765 * Print special message for EAI_AGAIN. Closes: #131397
5766 * libapt-pkg-dev needs to bring in the apt-inst library if linking
5767 is to work. Closes: #133943
5768 * Typos, Doc Stuff. Closes: #132772, #129970, #123642, #114892, #113786,
5769 #109591, #105920, #103678, #139752, #138186, #138054, #138050,
5770 #139994, #142955, #151654, #151834, #147611, #154268, #173971
5771 * Fix possibility for tag file parsing to fail in some unlikely situations.
5772 Closes: #139328
5773 * Use std C++ names for some header files. Closes: #128741
5774 * Do not check for free space if --no-download. Closes: #117856
5775 * Actually implement or group handling for 'upgrade'. Closes: #133950
5776 * "Internal Error, Couldn't configure pre-depend" is not actually an
5777 internal error, it is a packaging error and now it says so, and
5778 pinpoints the problem dependency. Closes: #155621
5779 * Allows failure to write to a pipe for post-invoke stuff. Closes: #89830
5780 * Use usr/share/doc for dhelp. Closes: #115701
5781 * --print-uris works with 'update'. Closes: #57070
5782 * Options Dpkg::MaxArgs,Dpkg::MaxArgBytes to allow a much longer dpkg
5783 command line.
5784 * Fixed 2 little OR group bugs, thanks to Yann Dirson. Closes: #143995,
5785 #142298
5786 * Allow an uninstalled package to be marked for removal on an install
5787 line (meaning not to automatically install it), also fix some dodgy
5788 handling of protected packages. Closes: #92287, #116011
5789 * Fix errant prefix matching in version selection. Closes: #105968
5790 * Ensure that all files needed to run APT as a user are readable and
5791 ignore roots umask for these files. Closes: #108801
5792 * Support larger config spaces. Closes: #111914
5793 * 'apt-get update' no longer does 'Building Dependency Tree'.
5794 * When matching regexs allways print a message. Change regex activation
5795 charset. Closes: #147817
5796 * Don't die if lines in sources.list are too long. Closes: #146846
5797 * Show file name on apt-extracttemplate error messges. Closes: #151835
5798 * i18n gettext stuff, based on work from Michael Piefel: Closes: #95933
5799 * Some highly unlikely memory faults. Closes: #155842
5800 * C++ stuff for G++3.2. Closes: #162617, #165515,
5801 * apt-config dumps sends to stdout not stderr now. Closes: #146294
5802 * Fix segfault in FindAny when /i is used, and there is no default.
5803 Closes: #165891
5804 * Add s390x to archtable. Closese: #160992.
5805 * Update config.sub/config.guess in cvs, and add support to debian/rules
5806 to update them from /usr/share/misc if they exist. Closes: #155014
5807 * Remove 'Sorry' from messages. Closes: #148824.
5808 * Change wording of 'additional disk space usage' message. Closes:
5809 #135021.
5810 * apt-extracttemplates now prepends the package name when extracting
5811 files. Closes: #132776
5812 * Add -n synonym for --names-only for apt-cache. Closes: #130689
5813 * Display both current version and new version in apt-get -s. Closes:
5814 #92358
5815 * Add an options and timeout config item to ssh/rsh. Closes: #90654
5816 * libapt-pkg-dev now depends on apt-utils. Closes: #133942.
5817 * Change verbose logging output of apt-ftparchive to go to stderr,
5818 instead of stdout. Also, errors that occur no longer go to stdout,
5819 but stderr. Closes: #161592
5820 * Test for timegm in configure. Closes: #165516.
5821 * s/st_mtime/mtime/ on our local stat structure in apt-ftparchive, to
5822 support compliation on platforms where st_mtime is a macro. Closes:
5823 #165518
5824 * Check the currently mounted cdrom, to see if it's the one we are
5825 interested in. Closes: #154602
5826 * Refer to reportbug instead of bug in the man pages. Closes: #173745
5827 * Link apt-inst to apt-pkg. Closes: #175055
5828 * New apt_preferences man page from Thomas Hood, Susan Kleinmann,
5829 and others.
5830 * Fix > 300 col screen segfault. Closes: #176052
5831 * Rebuild with gcc-3.2. Closes: #177752, #178008.
5832 * Fix build-dep handling of | dependencies.
5833 Closes: #98640, #145997, #158896, #172901
5834 * Double default value of APT::Cache-Limit, until such time as it
5835 can be made more dynamic. Closes: #178623.
5836 * Report uris with '.gz' when there are errors. Closes: #178435.
5837 * When installing build-deps, make sure the new version will
5838 satisfy build requirements. Closes: #178121
5839 * Split offline and guide documentation into apt-doc. This was done so
5840 that binary-arch builds do not require documention deps. Note, that
5841 apt-doc is not installed on upgrades.
5842 * Use doc-base, instead of dhelp directly. Closes: #110389
5843 * Change http message 'Waiting for file' to 'Waiting for headers'.
5844 Closes: #178537
5845 * Remove trailing lines on package lists in apt-get. Closes: #178736.
5846 * Fix origin pins for file:// uris. Closes: #189014.
5847 * Apply typo and syntax patch from bug to apt-cache.8.sgml. Closes:
5848 #155194
5849 * s/dpkg-preconfig/dpkg-preconfigure/ in examples/configure-index.
5850 Closes: #153734.
5851 * Fix some typos in the apt-get manual. Closes: #163932.
5852 * Apply patch from bug, to change frozen to testing, and then do it
5853 everywhere else. Closes: #165085.
5854 * Update es.po. Closes: #183111.
5855 * Add pt_BR translation of apt_preferences(5). Also, build fr manpages.
5856 Closes: #183904.
5857 * Add a vcg command to apt-cache, similiar to dotty. Closes: #150512.
5858 * Add option to apt-get to show versions of packages being
5859 upgraded/installed.
5860 * Be quiet in apt.post{inst,rm}. Closes: #70685.
5861 * apt-get now prints out suggested and recommended packages. Closes:
5862 #54982.
5863 * Insert some newlines in the cdrom change media message. Closes:
5864 #154601.
5865 * Add a rdepends command to apt-cache. Closes: #159864.
5866 * When building the dpkg command line, allow for 8192 chars to be used,
5867 instead of only 1024.
5868 * APT::Immediate-Configure had inverted semantics(false meant it was
5869 enabled). Closes: #173619.
5870 * Fix status file parser so that if a record is larger than 32k, the
5871 buffer size will be doubled, and the read attempted again. Closes:
5872 #174945.
5873
5874 -- Adam Heath <doogie@debian.org> Sun, 27 Apr 2003 01:23:12 -0500
5875
5876 apt (0.5.4) unstable; urgency=low
5877
5878 * M68k config.guess patch. Closes: #88913
5879 * Bi-yearly test on OpenBSD and Solaris
5880 * Doc updates. Closes: #89121, #89854, #99671, #98353, #95823, #93057,
5881 #97520, #102867, #101071, #102421, #101565, #98272, #106914,
5882 #105606, #105377
5883 * Various cosmetic code updates. Closes: #89066, #89066, #89152
5884 * Add "pre-auto" as an option for DSelect::Clean (run autoclean after
5885 update).
5886 * More patches from Alfredo for Vendors and more SHA-1 stuff
5887 * Fix for AJ's 'desire to remove perl-5.005' and possibly other
5888 similar situations. Closes: #56708, #59432
5889 * no_proxy and ftp. Closes: #89671
5890 * Philippe Batailler's man page patches.
5891 * Fix for display bug. Closes: #92033, #93652, #98468
5892 * Use more than 16bits for the dep ID. Some people ran out..
5893 Closes: #103020, #97809, #102951, #99974, #107362, #107395, #107362,
5894 #106911, #107395, #108968
5895 * Reordered some things to make dante and FTP happier. Closes: #92757
5896 * James R. Van Zandt's guide.sgml updates. Closes: #90027
5897 * apt-ftparchive copes with no uncompressed package files + contents.
5898 * French man pages from philippe batailler - well sort of. They
5899 don't build yet..
5900 * run-parts. Closes: #94286
5901 * 'apt-cache policy' preferences debug tool.
5902 * Whatever. Closes: #89762
5903 * libstdc++ and HURD. Closes: #92025
5904 * More apt-utils verbage. Closes: #86954
5905 * Fliped comparision operator. Closes: #94618
5906 * Used the right copyright file. Closes: #65691
5907 * Randolph's G++3 patches.
5908 * Fixed no_proxy tokanizing. Closes: #100046
5909 * Strip Config-Version when copying status to available. Closes: #97520
5910 * Segfault with missing source files. Closes: #100325
5911 * EINTR check. Closes: #102293
5912 * Various changes to the locking metholodgy for --print-uris.
5913 Closes: #100590
5914 * Lame LD_LIBRARY_PATH thing. Closes: #98928
5915 * apt-cache search searchs provide names too now. Closes: #98695
5916 * Checksum and long lines problem. Closes: #106591
5917 * .aptignr and empty files are just a warning. Closes: #97364
5918
5919 -- Jason Gunthorpe <jgg@debian.org> Sat, 18 Aug 2001 17:21:59 -0500
5920
5921 apt (0.5.3) unstable; urgency=low
5922
5923 * JoeyH's dpkg::preconfig not working. Closes: #88675
5924 * Fixed apt override disparity
5925 * Alfredo's SHA-1 and related patches
5926
5927 -- Jason Gunthorpe <jgg@debian.org> Sun, 4 Mar 2001 15:39:43 -0700
5928
5929 apt (0.5.2) unstable; urgency=low
5930
5931 * Fixed mention of /usr/doc in the long description
5932 * JoeyH's downgrade bug -- don't use 0.5.1
5933 * Doc bug. Closes: #88538
5934 * Fault in building release strings. Closes: #88533
5935
5936 -- Jason Gunthorpe <jgg@debian.org> Sun, 4 Mar 2001 15:39:43 -0700
5937
5938 apt (0.5.1) unstable; urgency=low
5939
5940 * Fixed #82894 again, or should be and.
5941 * Process the option string right. Closes: #86921
5942 * Don't eat the last command for pipes. Closes: #86923
5943 * Ignore .* for configuration directory processing. Closes: #86923
5944 * Alfredo's no_proxy patch
5945 * Documentation fixes. Closes: #87091
5946 * JoeyH's double slash bug. Closes: #87266
5947 * Unintitialized buffer and apt-ftparchive contents generation.
5948 Closes: #87612
5949 * Build-deps on virtual packages. Closes: #87639
5950 * Fixes glibc/libstdc++ symbol dependencies by including glibc and
5951 libstdc++ version info in the library soname and in the package
5952 provides. Closes: #87426
5953 * Updated soname version to 0.3.2
5954 * apt-extracttemplates moved from debconf into apt-utils
5955 * s390 archtable entry. Closes: #88232
5956 * Dan's segfault
5957 * Some instances where the status file can source a package in a
5958 non-sensical way. Closes: #87390
5959 * Work better if there are duplicate sources.list entries.
5960 * Fixed the resetting of Dir with "dir {};". Closes: #87323
5961
5962 -- Randolph Chung <tausq@debian.org> Sat, 3 Mar 2001 15:37:38 -0700
5963
5964 apt (0.5.0) unstable; urgency=low
5965
5966 * Fixed an obscure bug with missing final double new lines in
5967 package files
5968 * Changed the apt-cdrom index copy routine to use the new section
5969 rewriter
5970 * Added a package file sorter, apt-sortpkgs
5971 * Parse obsolete Optional dependencies.
5972 * Added Ben's rsh method. Closes: #57794
5973 * Added IPv6 FTP support and better DNS rotation support.
5974 * Include the server IP in error messages when using a DNS rotation.
5975 Closes: #64895
5976 * Made most of the byte counters into doubles to prevent 32bit overflow.
5977 Closes: #65349
5978 * HTTP Authorization. Closes: #61158
5979 * Ability to parse and return source index build depends from Randolph.
5980 * new 'apt-get build-dep' command from Randolph. Closes: #63982
5981 * Added apt-ftparchive the all dancing all singing FTP archive
5982 maintinance program
5983 * Allow version specifications with =1.2.4-3 and /2.2 or /stable postfixes
5984 in apt-get.
5985 * Removed useless internal cruft including the xstatus file.
5986 * Fixed config parser bugs. Closes: #67848, #71108
5987 * Brain Damanged apt-get config options changed, does not change the command
5988 line interface, except to allow --enable-* to undo a configuration
5989 option:
5990 No-Remove -> Remove
5991 No-Download -> Download
5992 No-Upgrade -> Upgrade
5993 * Made this fix configable (DSelect::CheckDir) and default to disabled:
5994 * No remove prompt if the archives dir has not changed. Closes: #55709
5995 Because it is stupid in the case where no files were downloaded due to
5996 a resumed-aborted install, or a full cache! Closes: #65952
5997 * Obscure divide by zero problem. Closes: #64394
5998 * Update sizetable for mips. Closes: #62288
5999 * Fixed a bug with passive FTP connections
6000 * Has sizetable entry for sparc64. Closes: #64869
6001 * Escape special characters in the ::Label section of the cdroms.lst
6002 * Created apt-utils and python-apt packages
6003 * Due to the new policy engine, the available file may contain entries
6004 from the status file. These are generated if the package is not obsolete
6005 but the policy engine prohibits using the version from the package files.
6006 They can be identified by the lack of a Filename field.
6007 * The new policy engine. Closes: #66509, #66944, #45122, #45094, #40006,
6008 #36223, #33468, #22551
6009 * Fixed deb-src line for non-us. Closes: #71501, #71601
6010 * Fixes for G++ 2.96, s/friend/friend class/
6011 * Fixed mis doc of APT::Get::Fix-Missing. Closes: #69269
6012 * Confirmed fix for missing new line problem. Closes: #69386
6013 * Fixed up dhelp files. Closes: #71312
6014 * Added some notes about dselect and offline usage. Closes: #66473, #38316
6015 * Lock files on read only file systems are ignored w/ warning.
6016 Closes: #61701
6017 * apt-get update foo now gives an error! Closes: #42891
6018 * Added test for shlibs on hurd. Closes: #71499
6019 * Clarified apt-cache document. Closes: #71934
6020 * DocBook SGML man pages and some improvements in the text..
6021 * sigwinch thing. Closes: #72382
6022 * Caching can be turned off by setting the cache file names blank.
6023 * Ignores arches it does not know about when autocleaning. Closes: #72862
6024 * New function in apt-config to return dirs, files, bools and integers.
6025 * Fixed an odd litle bug in MarkInstall and fixed it up to handle
6026 complex cases involving OR groups and provides.
6027 68754 describes confusing messages which are the result of this..
6028 Closes: #63149, #69394, #68754, #77683, #66806, #81486, #78712
6029 * Speeling mistake and return code for the 'wicked' resolver error
6030 Closes: #72621, #75226, #77464
6031 * Solved unable to upgrade libc6 from potato to woody due to 3 package
6032 libc6 dependency loop problem.
6033 * Leading sources.list spaces. Closes: #76010
6034 * Removed a possible infinite loop while processing installations.
6035 * Man page updates. Closes: #75411, #75560, #64292, #78469
6036 * ReduceSourceList bug. Closes: #76027
6037 * --only-source option. Closes: #76320
6038 * Typos. Closes: #77812, #77999
6039 * Different status messages. Closes: #76652, #78353
6040 * /etc/apt/apt.conf.d/ directory for Joey and Matt and pipe protocol 2
6041 * OS detection an support for the new pseduo standard of os-arch for the
6042 Architecture string. Also uses regexing.. Closes: #39227, #72349
6043 * Various i18n stuff. Note that this still needs some i18n wizard
6044 to do the last gettextization right. Closes: #62386
6045 * Fixed a problem with some odd http servers/proxies that did not return
6046 the content size in the header. Closes: #79878, #44379
6047 * Little acquire bugs. Closes: #77029, #55820
6048 * _POSIX_THREADS may not be defined to anything, just defined..
6049 Closes: #78996
6050 * Spelling of Ignore-Hold correctly. Closes: #78042
6051 * Unlock the dpkg db if in download only mode. Closes: #84851
6052 * Brendan O'Dea's dselect admindir stuff. Closes: #62811
6053 * Patch from BenC. Closes: #80810
6054 * Single output of some names in lists. Closes: #80498, #43286
6055 * Nice message for people who can't read syserror output. Closes: #84734
6056 * OR search function. Closes: #82894
6057 * User's guide updates. Closes: #82469
6058 * The AJ/JoeyH var/state to var/lib transition patch. Closes: #59094
6059 * Various CD bugs, again thanks to Greenbush
6060 Closes: #80946, #76547, #71810, #70049, #69482
6061 * Using potato debhelper. Closes: #57977
6062 * I cannot self-terminate. Closes: #74928
6063
6064 -- Jason Gunthorpe <jgg@debian.org> Wed, 21 Feb 2001 00:39:15 -0500
6065
6066 apt (0.3.19) frozen unstable; urgency=low
6067
6068 * Updates to apt-cdrom to support integrated non-us nicely, thanks to
6069 Paul Wade.
6070 * Fixed that apt-get/cdrom deadlock thing. Closes: #59853, #62945, #61976
6071 * Fixed hardcoded path. Closes: #59743
6072 * Fixed Jay's relative path bug
6073 * Allowed source only CDs. Closes: #58952
6074 * Space check is supressed if --print-uris is given. Closes: #58965
6075 * Clarified the documenation examples for non-us. Closes: #58646
6076 * Typo in the package description. Closes: #60230
6077 * Man Page typo. Closes: #60347
6078 * Typo in Algorithms.cc. Closes: #63577
6079 * Evil dotty function in apt-cache for generating dependency graphs
6080 with the as-yet-unpackaged GraphVis.
6081 * Appears to have been fixed in Janurary.. Closes: #57981
6082 * New config.guess/sub for the new archs. Closes: #60874
6083 * Fixed error reporting for certain kinds of resolution failures.
6084 Closes: #61327
6085 * Made autoclean respect 'q' settings. Closes: #63023
6086 * Fixed up the example sources.list. Closes: #63676
6087 * Added DPkg::FlushSTDIN to control the flushing of stdin before
6088 forking dpkg. Closes: #63991
6089
6090 -- Ben Gertzfield <che@debian.org> Fri, 12 May 2000 21:10:54 -0700
6091
6092 apt (0.3.18) frozen unstable; urgency=low
6093
6094 * Changes in the postinst script. Closes: #56855, #57237
6095 * Fixed bashism. Closes: #57216, #57335
6096 * Doc updates. Closes: #57772, #57069, #57331, #57833, #57896
6097
6098 -- Ben Gertzfield <che@debian.org> Sun, 13 Feb 2000 01:52:31 -0800
6099
6100 apt (0.3.17) unstable; urgency=low
6101
6102 * RFC 2732 usage for CDROM URIs and fixes to apt-cdrom
6103 * Fixed the configuration parser to not blow up if ; is in the config
6104 string
6105 * Applied visual patch to dselect install script . Closes #55214
6106 * Included the configure-index example
6107 * Minimal CD swaps
6108 * Library soname has increased
6109 * Fixed default sources.list to have correct URLs for potato when it
6110 becomes stable
6111 * Added a message about erasing sources.list to dselect setup script
6112 Closes: #55755
6113 * No remove prompt if the archives dir has not changed. Closes: #55709
6114 * Fixed inclusion of 2nd sample config file. Closes: #55374
6115 * Made file mtimes of 0 not confuse the methods If-Modifed-Since check.
6116 Closes: #55991
6117
6118 -- Ben Gertzfield <che@debian.org> Mon, 31 Jan 2000 12:12:40 -0800
6119
6120 apt (0.3.16) unstable; urgency=low
6121
6122 * Made --no-download work. Closes: #52993
6123 * Now compiles on OpenBSD, Solaris and HP-UX
6124 * Clarify segfault errors
6125 * More debhelper fixes. Closes: #52662, #54566, #52090, #53531, #54769
6126 * Fix for Joel's discovery of glibc removal behavoir.
6127 * Fix for Ben Collins file: uri from slink upgrade.
6128 * Fixed resume code in FTP. Closes: #54323
6129 * Take more precautions to prevent the corruption Joey Hess saw.
6130 * Fixed --no-list-cleanup
6131 * RFC 2732 URI parsing ([] for hostnames).
6132 * Typo in apt-cache man page. Closes: #54949
6133
6134 -- Ben Gertzfield <che@debian.org> Fri, 14 Jan 2000 08:04:15 -0800
6135
6136 apt (0.3.15) unstable; urgency=low
6137
6138 * Added DSelect::WaitAfterDownload Closes: #49549
6139 * Fixed cast error in byteswap macro and supporting code. Closes: #50093
6140 * Fixed buffer overflow for wide terminal sizes. Closes: #50295
6141 * Made -s and clean not do anything. Closes: #50238
6142 * Problem with Protected packages and the new OR code.
6143 * /usr/share/doc stuff. Closes: #51017, #50228, #51141
6144 * Remove doesn't require a package to be installable. Closes: #51175
6145 * FTP proxy touch ups in the mabn page. Closes: #51315, #51314
6146
6147 -- Ben Gertzfield <che@debian.org> Sat, 4 Dec 1999 21:17:24 -0800
6148
6149 apt (0.3.14) unstable; urgency=low
6150
6151 * Fix Perl or group pre-depends thing Closes: #46091, #46096, #46233, #45901
6152 * Fix handling of dpkg's conversions from < -> <= Closes: #46094, #47088
6153 * Make unparsable priorities non-fatal Closes: #46266, #46267, #46293, #46298
6154 * Fix handling of '/' for the dist name. Closes: #43830, #45640, #45692
6155 * Fixed 'Method gave a blank filename' error from IMS queries onto CDs.
6156 Closes: #45034, #45695, #46537
6157 * Made OR group handling in the problem resolver more elaborate. Closes: #45646
6158 * Added APT::Clean-Installed option. Closes: #45973
6159 * Moves the free space check to after the calculated size is printed.
6160 Closes: #46639, #47498
6161 * mipsel arch Closes: #47614
6162 * Beautified URI printing to not include passwords Closes: #46857
6163 * Fixed little problem with --no-download Closes: #47557
6164 * Tweaked Dselect 'update' script to re-gen the avail file even in the
6165 event of a failure Closes: #47112
6166 * Retries for source archives too Closes: #47529
6167 * Unmounts CDROMs iff it mounted them Closes: #45299
6168 * Checks for the partial directories before doing downloads Closes: #47392
6169 * no_proxy environment variable (http only!) Closes: #43476
6170 * apt-cache showsrc Closes: #45799
6171 * De-Refs Single Pure virtual packages. Closes: #42437, #43555
6172 * Regexs for install. Closes: #35304, #38835
6173 * Dependency reports now show OR group relations
6174 * Re-Install feature. Cloes: #46961, #37393, #38919
6175 * Locks archive directory on clean (woops)
6176 * Remove is not 'sticky'. Closes: #48392
6177 * Slightly more accurate 'can not find package' message. Closes: #48311
6178 * --trivial-only and --no-remove. Closes: #48518
6179 * Increased the cache size. Closes: #47648
6180 * Comment woopsie. Closes: #48789
6181 * Removes existing links when linking sources. Closes: #48775
6182 * Problem resolver does not install all virtual packages. Closes: #48591, #49252
6183 * Clearer usage message about 'source' Closes: #48858
6184 * Immediate configure internal error Closes: #49062, #48884
6185
6186 -- Ben Gertzfield <che@debian.org> Sun, 7 Nov 1999 20:21:25 -0800
6187
6188 apt (0.3.13) unstable; urgency=low
6189
6190 * Fix timestamp miss in FTP. Closes: #44363
6191 * Fix sorting of Kept packages. Closes: #44377
6192 * Fix Segfault for dselect-upgrade. Closes: #44436
6193 * Fix handling of '/' for the dist name. Closes #43830
6194 * Added APT::Get::Diff-Only and Tar-Only options. Closes #44384
6195 * Add commented-out deb-src URI to default sources.list file.
6196
6197 -- Ben Gertzfield <che@debian.org> Sun, 19 Sep 1999 18:54:20 -0700
6198
6199 apt (0.3.12) unstable; urgency=low
6200
6201 * Fix for typo in the dhelp index. Closes: #40377
6202 * Multiple media swap support
6203 * Purge support. Closes: #33291, #40694
6204 * Better handling of - remove notation. Closes: #41024
6205 * Purge support. Closes: #33291, #40694
6206 * Error code on failed update. Closes: #41053
6207 * apt-cdrom adds entries for source directories. Closes: #41231
6208 * Sorts the output of any list. Closes: #41107
6209 * Fixes the looping problem. Closes: #41784, #42414, #44022
6210 * Fixes the CRC mechanism to lowercase all strings. Closes: #41839
6211 * More checks to keep the display sane. Particularly when fail-over is
6212 used with local mirrors and CD-Roms. Closes: #42127, #43130, #43668
6213 * PThread lockup problem on certain sparc/m68k. Closes: #40628
6214 * apt-cdrom understands .gz Package files too. Closes: #42779
6215 * Spelling error in dselect method description. Closes: #43251
6216 * Added security to the default source list. Closes: #43356
6217
6218 -- Ben Gertzfield <che@debian.org> Fri, 3 Sep 1999 09:04:28 -0700
6219
6220 apt (0.3.11) unstable; urgency=low
6221
6222 * Fix for mis-parsed file: URIs. Closes: #40373, #40366, #40230
6223 * Fix for properly upgrading the system from perl 5.004 to 5.005
6224
6225 -- Ben Gertzfield <che@debian.org> Mon, 28 Jun 1999 21:06:44 -0700
6226
6227 apt (0.3.9) unstable; urgency=low
6228
6229 * Spelling error in cachefile.cc. Closes: #39885
6230 * Trailing slash in dselect install if you try to use the
6231 default config file. Closes: #40011
6232 * Simulate works for autoclean. Closes: #39141
6233 * Fixed spelling errors. Closes: #39673
6234 * Changed url parsing a bit. Closes: #40070, #40069
6235 * Version 0.3.8 will be for slink/hamm (GNU libc 2).
6236
6237 -- Ben Gertzfield <che@debian.org> Thu, 24 Jun 1999 18:02:52 -0700
6238
6239 apt (0.3.7) unstable; urgency=low
6240
6241 * Fixed missing text in the apt-get(8) page. Closes: #37596
6242 * Made --simulate and friends work with apt-get source. Closes: #37597, #37656
6243 * Fixed inclusion of man pages in the -doc/-dev package. Closes: #37633, #38651
6244 * Fixed handling of the -q option with not-entirely integer arguments
6245 Closes: #37499
6246 * Man page typo Closes: #37762
6247 * Fixed parsing of the Source: line. Closes: #37679
6248 * Dpkg/dpkg-hurd source bug. Closes: #38004, #38032
6249 * Added a check for an empty cache directory. Closes: #37963
6250 * Return a failure code if -d is given and packages fail to download.
6251 Closes: #38127
6252 * Arranged for an ftp proxy specifing an http server to work. See the
6253 important note in the sources.list man page.
6254 * Accounted for resumed files in the cps calculation. Closes: #36787
6255 * Deal with duplicate same version different packages. Closes: #30237
6256 * Added --no-download. Closes: #38095
6257 * Order of apt-cdrom dist detection. Closes: #38139
6258 * Fix apt-cdrom chop handling and missing lines. Closes: #37276
6259 * IPv6 http support
6260 * Suggests dpkg-dev for apt-get source. Closes: #38158
6261 * Fixed typo in apt-get help. Closes: #38712
6262 * Improved the error message in the case of broken held package. Closes: #38777
6263 * Fixed handling of MD5 failures
6264 * Documented list notation Closes: #39008
6265 * Change the 'b' to 'B'. Closes: #39007
6266
6267 -- Ben Gertzfield <che@debian.org> Sun, 20 Jun 1999 18:36:20 -0700
6268
6269 apt (0.3.6) unstable; urgency=low
6270
6271 * Note that 0.3.5 never made it out the door..
6272 * Fix for apt-cdrom and unusual disk label locations. Closes: #35571
6273 * Made APT print numbers in decimal. Closes: #35617, #37319
6274 * Buffer munching fix for FTP. Closes: #35868
6275 * Typo in sample config file. Closes: #35907
6276 * Fixed whitespace in version compares. Closes: #35968, #36283, #37051
6277 * Changed installed size counter to only count unpacked packages.
6278 Closes: #36201
6279 * apt-get source support. Closes: #23934, #27190
6280 * Renames .debs that fail MD5 checking, provides automatic corruption
6281 recovery. Closes: #35931
6282 * Fixed autoconf verison. Closes: #37305
6283 * Random Segfaulting. Closes: #37312, #37530
6284 * Fixed apt-cache man page. Closes: #36904
6285 * Added a newline to apt-cache showpkg. Closes: #36903
6286
6287 -- Ben Gertzfield <che@debian.org> Wed, 12 May 1999 09:18:49 -0700
6288
6289 apt (0.3.4) unstable; urgency=low
6290
6291 * Release for Ben while he is out of town.
6292 * Checked the size of partial files. Closes: #33705
6293 * apt-get should not print progress on non-tty. Closes: #34944
6294 * s/guide.text.gz/users-guide.txt.gz/ debian/control: Closes: #35207
6295 * Applied cdrom patches from Torsten. Closes: #35140, #35141
6296 * smbmounted cdrom fix. Closes: #35470
6297 * Changed ie to eg. Closes: #35196
6298
6299 -- Adam Heath <doogie@debian.org> Sun, 4 Apr 1999 18:26:44 -0500
6300
6301 apt (0.3.3) unstable; urgency=low
6302
6303 * Fixes bug with file:/ URIs and multi-CD handling. Closes: #34923
6304
6305 -- Ben Gertzfield <che@debian.org> Tue, 23 Mar 1999 12:15:44 -0800
6306
6307 apt (0.3.2) unstable; urgency=low
6308
6309 * Major release into unstable of v3
6310 * These bugs have been fixed, explanations are in the bug system, read
6311 the man pages as well..
6312 Closes: #21113, #22507, #22675, #22836, #22892, #32883, #33006, #34121,
6313 #23984, #24685, #24799, #25001, #25019, #34223, #34296, #34355,
6314 #24021, #25022, #25026, #25104, #25176, #31557, #31691, #31853,
6315 #25458, #26019, #26433, #26592, #26670, #27100, #27100, #27601,
6316 #28184, #28391, #28778, #29293, #29351, #27841, #28172, #30260,
6317 #29382, #29441, #29903, #29920, #29983, #30027, #30076, #30112,
6318 #31009, #31155, #31381, #31883, #32140, #32395, #32584. #34465,
6319 #30383, #30441, #30472, #30643, #30827, #30324, #36425, #34596
6320
6321 -- Ben Gertzfield <che@debian.org> Mon, 15 Mar 1999 19:14:25 -0800
6322
6323 apt (0.3.1) experimental; urgency=low
6324
6325 * Minor release of cvs version.
6326 * Added virtual package libapt-pkgx.x
6327
6328 -- Mitch Blevins <mblevin@debian.org> Wed, 10 Mar 1999 07:52:44 -0500
6329
6330 apt (0.3.0) experimental; urgency=low
6331
6332 * New experimental version.
6333
6334 -- Ben Gertzfield <che@debian.org> Tue, 15 Dec 1998 12:53:21 -0800
6335
6336 apt (0.1.9) frozen unstable; urgency=low
6337
6338 * Return to the wacky numbering for when we build 0.1.8 for hamm
6339 * Important bug related to APT on the Alpha fixed
6340 * apt-get dist-upgrade problems fixed
6341 * tiny patch for http method to fix an endless loop
6342 * nice fix from /usr/doc/lintian/ to remove rpath nastiness from
6343 libtool and add proper shared lib dependancies
6344 * now dh_shlibdeps is called with LD_LIBRARY_PATH=debian/tmp/usr/lib
6345 in case an old libpkg is installed while building APT to prevent
6346 spurious dependancies
6347
6348 -- Ben Gertzfield <che@debian.org> Thu, 5 Nov 1998 17:43:25 -0800
6349
6350 apt (0.1.7) unstable; urgency=low
6351
6352 * New build with libstdc++2.9.
6353 * Various fixes; read the Changelog.
6354
6355 -- Ben Gertzfield <che@debian.org> Thu, 15 Oct 1998 18:29:18 -0700
6356
6357 apt (0.1.6) unstable; urgency=low
6358
6359 * Various fixes in the FTP method for error checking. Fixes: #26188.
6360 * Spelling corrections in dselect method. Fixes: #25884
6361 * Fixes for compilation on alpha/ppc. Fixes: #25313, #26108.
6362 * No more bo releases: we're using a normal numbering system now.
6363
6364 -- Ben Gertzfield <che@debian.org> Tue, 8 Sep 1998 19:27:13 -0700
6365
6366 apt (0.1.5) unstable; urgency=low
6367
6368 * Changed sources.list to point to 'unstable' by default, as
6369 'frozen' no longer exists!
6370
6371 -- Ben Gertzfield <che@debian.org> Thu, 23 Jul 1998 22:00:18 -0700
6372
6373 apt (0.1.3) unstable; urgency=low
6374
6375 * New upstreamish version.
6376 * ftp method rewritten in C. Removes dependancies on all perl/perl
6377 related modules. This fixes many of the ftp method bugs.
6378
6379 -- Ben Gertzfield <che@debian.org> Thu, 16 Jul 1998 22:19:00 -0700
6380
6381 apt (0.1.1) unstable; urgency=low
6382
6383 * Release for unstable.
6384
6385 -- Ben Gertzfield <che@debian.org> Tue, 30 Jun 1998 20:48:30 -0700
6386
6387 apt (0.1) unstable; urgency=low
6388
6389 * Kludge to fix problem in libnet-perl with illegal anonymous
6390 FTP passwords.
6391 * Moved to unstable; apt is in a useable state now.
6392 * Fixed version numbering. From now on, numbering will be:
6393 0.1 (no actual release) -> 0.1.0bo (release for libc5) ->
6394 0.1.1 (release for unstable). Thanks, Manoj.
6395
6396 -- Ben Gertzfield <che@debian.org> Tue, 30 Jun 1998 20:40:58 -0700
6397
6398 apt (0.0.17-1) experimental; urgency=low
6399
6400 * Fixed problem with libc6 version compare
6401 * Scott's away for a while, so I'll be packaging apt for the time
6402 being.
6403
6404 -- Ben Gertzfield <che@debian.org> Thu, 25 Jun 1998 19:02:03 -0700
6405
6406 apt (0.0.16-1) experimental; urgency=low
6407
6408 * Modifications to make apt-get more friendly when backgrounded.
6409 * Updated documentation.
6410 * Updates to graphic widgets
6411
6412 -- Scott K. Ellis <scott@debian.org> Mon, 8 Jun 1998 11:22:02 -0400
6413
6414 apt (0.0.15-0.2bo) experimental; urgency=low
6415
6416 * Bo compilation
6417 * Bob Hilliards crash
6418
6419 -- Jason Gunthorpe <jgg@debian.org> Sun, 31 May 1998 20:18:35 -0600
6420
6421 apt (0.0.15-0.1bo) experimental; urgency=low
6422
6423 * Bo compilation
6424 * libstdc++272 patch
6425
6426 -- Jason Gunthorpe <jgg@debian.org> Sun, 31 May 1998 20:18:35 -0600
6427
6428 apt (0.0.15) experimental; urgency=low
6429
6430 * Clean up source tarball (no user-visible changes)
6431
6432 -- Scott K. Ellis <scott@debian.org> Tue, 26 May 1998 12:23:53 -0400
6433
6434 apt (0.0.14) experimental; urgency=low
6435
6436 * Updates in ordering code to make sure certain upgrades work correctly.
6437 * Made dselect/setup understand ftp as well as http
6438
6439 -- Scott K. Ellis <scott@debian.org> Wed, 20 May 1998 13:33:32 -0400
6440
6441 apt (0.0.13-bo1) experimental; urgency=low
6442
6443 * Bo compilation
6444
6445 -- Jason Gunthorpe <jgg@debian.org> Mon, 18 May 1998 15:10:49 -0600
6446
6447 apt (0.0.13) experimental; urgency=low
6448
6449 * Remove hardcoded egcc from debian/rules (#21575)
6450 * Fixes for ordering logic when system has a number of unpacked
6451 but unconfigured packages installed.
6452 * Spelling fix in dselect install method (#22556)
6453
6454 -- Scott K. Ellis <scott@debian.org> Sun, 17 May 1998 20:08:33 -0400
6455
6456 apt (0.0.12) experimental; urgency=low
6457
6458 * Fixed problems with package cache corruption.
6459 * Made to depend on libc6 >= 2.0.7pre1 due to timezone problems with
6460 earlier versions.
6461 * Interface and documentation improvements.
6462
6463 -- Scott K. Ellis <scott@debian.org> Sat, 16 May 1998 23:17:32 -0400
6464
6465 apt (0.0.11) experimental; urgency=low
6466
6467 * Change dependancies to pre-depends since breaking your packaging tools
6468 in the middle of an installation isn't very good.
6469 * Bug fixes to ftp method and general apt-get code
6470
6471 -- Scott K. Ellis <scott@debian.org> Fri, 15 May 1998 08:57:38 -0400
6472
6473 apt (0.0.10) experimental; urgency=low
6474
6475 * Run "dpkg --configure -a" after an aborted dselect install
6476 * Fixed problem with install looping
6477 * Support for authenticating proxys: (note this isn't terribly secure)
6478 http_proxy="http://user:pass@firewall:port/"
6479 * Substitute $ARCH in sources.list
6480 * Fixes in the resumption code for ftp
6481
6482 -- Scott K. Ellis <scott@debian.org> Tue, 12 May 1998 09:14:41 -0400
6483
6484 apt (0.0.9) experimental; urgency=low
6485
6486 * Added ftp support.
6487 * Various other less visible bug fixes.
6488 * Fixed problem with segfault when apt-get invoked in a non-existant
6489 directory (Bug #21863)
6490 * Bumped policy to 2.4.1
6491
6492 -- Scott K. Ellis <scott@debian.org> Fri, 1 May 1998 09:18:19 -0400
6493
6494 apt (0.0.8) experimental; urgency=low
6495
6496 * Fixed generated available file (Bug #21836)
6497 * Added download ETA (Bug #21774).
6498 * Fixed hardcoded ARCH (Bug #21751).
6499 * Fixed check on http_proxy (Bug #21795).
6500 * Added download speed indicator.
6501
6502 -- Scott K. Ellis <scott@debian.org> Mon, 27 Apr 1998 10:58:32 -0400
6503
6504 apt (0.0.7) experimental; urgency=low
6505
6506 * Remove libdeity and apt from package for now, since only apt-get and
6507 apt-cache are actually useful right now.
6508 * Clean up handling of package installation errors.
6509 * Added timeout to http transfers (#21269)
6510 * Updated setup for dselect/apt method.
6511 * Updated man pages
6512 * Long options (added in 0.0.6)
6513
6514 -- Scott K. Ellis <scott@debian.org> Tue, 21 Apr 1998 09:06:49 -0400
6515
6516 apt (0.0.6) experimental; urgency=low
6517
6518 * Spelling changes.
6519 * Revamped download status display.
6520 * Call apt-get clean after successful install in dselect.
6521 * Added "apt-get clean" which deletes package files from /var/cache/apt
6522
6523 -- Scott K. Ellis <scott@debian.org> Thu, 9 Apr 1998 15:13:59 -0400
6524
6525 apt (0.0.5) experimental; urgency=low
6526
6527 * Ignore signals while dpkg is running so we don't leave dpkg running in
6528 the background (#20804)
6529 * Check Packages as well as Packages.gz for file URIs (#20784)
6530 * Spelling cleanup (#20800)
6531 * Added -m option to permit upgrade to go on in the case of a bad mirror.
6532 This option may result in incomplete upgrades when used with -f.
6533
6534 -- Scott K. Ellis <scott@debian.org> Tue, 7 Apr 1998 12:40:29 -0400
6535
6536 apt (0.0.4) experimental; urgency=low
6537
6538 * New usage guide.
6539 * Various documentation updates and cleanup.
6540 * Added '-f' option to apt-get attempt to fix broken dependancies.
6541
6542 -- Scott K. Ellis <scott@debian.org> Sat, 4 Apr 1998 14:36:00 -0500
6543
6544 apt (0.0.3) experimental; urgency=low
6545
6546 * Added a shlibs.local file to prevent apt from depending on itself.
6547 * Updates to how apt-get handles bad states in installed packages.
6548 * Updated rules to make sure build works from a freshly checked out source
6549 archive. Building from CVS needs libtool/automake/autoconf, builds from
6550 the distributed source package should have no such dependancy.
6551
6552 -- Scott K. Ellis <scott@debian.org> Fri, 3 Apr 1998 11:49:47 -0500
6553
6554 apt (0.0.2) unstable; urgency=low
6555
6556 * Updates to apt-get and http binding for dselect method (apt).
6557 * Updating version number from 0.0.1, which was released only on IRC.
6558
6559 -- Scott K. Ellis <scott@debian.org> Fri, 3 Apr 1998 00:35:18 -0500
6560
6561 apt (0.0.1) unstable; urgency=low
6562
6563 * Initial Release.
6564
6565 -- Scott K. Ellis <scott@debian.org> Tue, 31 Mar 1998 12:49:28 -0500