CVS:jgg Jason Gunthorpe <jgg@debian.org>
- The Mad Cow incarnate
+CVS:mdz Matt Zimmerman <mdz@debian.org>
+- Ongoing maintenance and coordination of development
+
+CVS:piefel Michael Piefel <piefel@debian.org>
+- i18n and l10n
+
+Michael Vogt <mvo@debian.org>
+- Development and bug fixes
+
+Past Contributors:
+
CVS:che Ben Gertzfield <che@debian.org>
- Packaging and Releases
CVS:tausq Randolph Chung <tausq@debian.org>
- Patches, Fixes, Debugging, GUIs and Releases
-Past Contributures:
+Isaac Jones <ijones@syntaxpolice.org> and Colin Walters <walters@debian.org>
+ Initial implementation of authentication support (Release.gpg)
Brian White <bcwhite@verisim.com> - Project originator
Tom Lees <tom@lpsg.demon.co.uk> - DPKG documentation and ideas
AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
dnl -- SET THIS TO THE RELEASE VERSION --
-AC_DEFINE_UNQUOTED(VERSION,"0.5.30ubuntu2")
+AC_DEFINE_UNQUOTED(VERSION,"0.5.32")
PACKAGE="apt"
AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
AC_SUBST(PACKAGE)
UpdateInterval=0
DownloadUpgradeableInterval=0
-RES=`apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages`
-eval $RES
+eval $(apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages)
+AutocleanInterval=$DownloadUpgradeableInterval
+eval $(apt-config shell AutocleanInterval APT::Periodic::Autoclean)
# laptop check, on_ac_power returns:
# 0 (true) System is on mains power
apt-get -qq -d dist-upgrade 2>/dev/null
update_stamp $DOWNLOAD_UPGRADEABLE_STAMP
fi
+
+AUTOCLEAN_STAMP=/var/lib/apt/periodic/autoclean-stamp
+if check_stamp $AUTOCLEAN_STAMP $AutocleanInterval; then
+ apt-get -qq autoclean
+ update_stamp $AUTOCLEAN_STAMP
+fi
+apt (0.5.32) unstable; urgency=low
+
+ * Call setlocale and bindtextdomain in the http method, so that the
+ messages are properly localised (Closes: #282700)
+
+ --
+
+apt (0.5.31) unstable; urgency=low
+
+ * New Romanian translation from Sorin Batariuc <sorin@bonbon.net>
+ (Closes: #281458)
+ * Merge changes from Hoary (0.5.30,0.5.30ubuntu2]
+ * Fix the example in apt_preferences(5) to match the text
+ (Closes: #222267)
+ * Add APT::Periodic::Autoclean setting, to allow "apt-get autoclean" to
+ be run periodically. This is useful with
+ APT::Periodic::Download-Upgradeable-Packages, and defaults to the same
+ value, so that the cache size is bounded
+
+ -- Matt Zimmerman <mdz@debian.org> Tue, 23 Nov 2004 12:53:04 -0800
+
apt (0.5.30ubuntu2) hoary; urgency=low
* bzip2 is now "Suggested" and it will detect if bzip2 is installed
Package: apt-utils
Architecture: any
-Depends: bzip2, ${shlibs:Depends}
+Depends: ${shlibs:Depends}
Priority: optional
Provides: ${libapt-inst:provides}
Replaces: apt (<< 0.5.9)
<programlisting>
Package: *
-Pin: release a=unstable, v=3.0
-Pin-Priority: 50
+Pin: release a=stable, v=3.0
+Pin-Priority: 500
</programlisting>
</listitem>
</itemizedlist>
int main()
{
+ setlocale(LC_ALL, "");
+ bindtextdomain(APT_DOMAIN, _config->FindDir("Dir::Locale").c_str());
+
HttpMethod Mth;
return Mth.Loop();