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