diff options
author | Michael Vogt <egon@bottom> | 2006-06-26 16:06:38 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-06-26 16:06:38 +0200 |
commit | f983dc86621eb7b0554efc4b35091179c3fdb72d (patch) | |
tree | 7b3c0274eacdc0fb14fd9cd4ac9f93ca498986f1 /debian | |
parent | dfa8d6b21806c76df2e53555c577e8d2029186c4 (diff) | |
parent | 6b6afec3673bd1685e62a5c4b1803531a44add82 (diff) |
* merged the auto-remove branch
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 16 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 14 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 83135ec08..e48fb77d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,22 @@ -apt (0.6.44.1exp1) experimental; urgency=low +apt (0.6.44.2exp1) experimental; urgency=low * added support for i18n of the package descriptions + * added support for aptitude like auto-install tracking (a HUGE + HUGE thanks to Daniel Burrows who made this possible, if you meet + him, please give him a HUG and tell him how great he his!) * synced with the http://people.debian.org/~mvo/bzr/apt/debian-sid branch * build from http://people.debian.org/~mvo/bzr/apt/debian-experimental - * merged patch from Otavio (thanks!) to better support translations - that need the full language-code (like pt_BR) -- Michael Vogt <mvo@debian.org> Tue, 6 Jun 2006 19:31:31 +0200 +apt (0.6.44.1-0.1) unstable; urgency=low + + * Non-maintainer upload. + * Don't give an error when parsing empty Packages/Sources files. + (Closes: #366931, #367086, #370160) + + -- Steinar H. Gunderson <sesse@debian.org> Fri, 9 Jun 2006 00:52:21 +0200 + apt (0.6.44.1) unstable; urgency=low * apt-pkg/acquire-item.cc: @@ -330,6 +339,7 @@ apt (0.6.37) breezy; urgency=low * Add Welsh translation from Dafydd Harries (daf@muse.19inch.net--2005/apt--main--0--patch-1) * Change debian/bugscript to use #!/bin/bash (Closes: #313402) + * Fix a incorrect example in the man-page (closes: #282918) -- Matt Zimmerman <mdz@ubuntu.com> Tue, 24 May 2005 14:38:25 -0700 diff --git a/debian/rules b/debian/rules index a8bf88762..044f742d0 100755 --- a/debian/rules +++ b/debian/rules @@ -338,4 +338,4 @@ arch-build: mkdir -p debian/arch-build/apt-$(APT_DEBVER) tar -c --exclude=arch-build --no-recursion -f - `bzr inventory` | (cd debian/arch-build/$(PKG)-$(APT_DEBVER);tar xf -) $(MAKE) -C debian/arch-build/apt-$(APT_DEBVER) startup doc - (cd debian/arch-build/apt-$(APT_DEBVER); $(DEB_BUILD_PROG)) + (cd debian/arch-build/apt-$(APT_DEBVER); $(DEB_BUILD_PROG); dpkg-genchanges -S > ../apt_$(APT_DEBVER)_source.changes) |