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