]> git.saurik.com Git - apt.git/commitdiff
* methods/makefile:
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 30 Jul 2007 19:48:03 +0000 (21:48 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 30 Jul 2007 19:48:03 +0000 (21:48 +0200)
  - install lzma symlink method (for full lzma support)
* debian/control:
  - suggest "lzma"

configure.in
debian/changelog
debian/control
methods/makefile

index ad913f53e6a18df04936c81a79ac8a8a291ae482..c3345139006816e9a1319508383289e3cc2a49cc 100644 (file)
@@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib)
 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.7.4")
+AC_DEFINE_UNQUOTED(VERSION,"0.7.5")
 PACKAGE="apt"
 AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
 AC_SUBST(PACKAGE)
index 7f8d8f0dd0154ec7ce95895e83560f9bd490629b..3cac980a9fea07ff8b74a0c14ebca882f1351a7a 100644 (file)
@@ -11,6 +11,10 @@ apt (0.7.5) UNRELEASED; urgency=low
     - support a list of sections for:
       APT::Install-Recommends-Sections
       APT::Never-MarkAuto-Sections
+  * methods/makefile:
+    - install lzma symlink method (for full lzma support)
+  * debian/control:
+    - suggest "lzma"
 
  -- Otavio Salvador <otavio@ossystems.com.br>  Wed, 25 Jul 2007 20:16:46 -0300
 
index 76e5b1a19c53b991f1cafa2a7cceecdd70465758..742e8ca5c8b1e5cd7e50c810a04b4f20d22a34ab 100644 (file)
@@ -14,7 +14,7 @@ Depends: ${shlibs:Depends}, debian-archive-keyring
 Priority: important
 Replaces: libapt-pkg-doc (<< 0.3.7), libapt-pkg-dev (<< 0.3.7)
 Provides: ${libapt-pkg:provides}
-Suggests: aptitude | synaptic | gnome-apt | wajig, dpkg-dev, apt-doc, bzip2
+Suggests: aptitude | synaptic | gnome-apt | wajig, dpkg-dev, apt-doc, bzip2, lzma
 Section: admin
 Description: Advanced front-end for dpkg
  This is Debian's next generation front-end for the dpkg package manager.
index f178cbbeac3344c796a1be5b1cc44e9771a112f6..f0fd4e414c0da291c7973ac8f1c103a85fc7ff5f 100644 (file)
@@ -80,9 +80,9 @@ LIB_MAKES = apt-pkg/makefile
 SOURCE = rsh.cc
 include $(PROGRAM_H)
 
-# SSH and vzip2 method symlink
-binary: $(BIN)/ssh $(BIN)/bzip2
-veryclean: clean-$(BIN)/ssh clean-$(BIN)/bzip2
+# SSH and bzip2 method symlink
+binary: $(BIN)/ssh $(BIN)/bzip2 $(BIN)/lzma
+veryclean: clean-$(BIN)/ssh clean-$(BIN)/bzip2 clean-$(BIN)/lzma
 $(BIN)/ssh:
        echo "Installing ssh method link"
        ln -fs rsh $(BIN)/ssh
@@ -92,5 +92,10 @@ clean-$(BIN)/ssh:
 $(BIN)/bzip2:
        echo "Installing bzip2 method link"
        ln -fs gzip $(BIN)/bzip2
+$(BIN)/lzma:
+       echo "Installing lzma method link"
+       ln -fs gzip $(BIN)/lzma
 clean-$(BIN)/bzip2:
        -rm $(BIN)/bzip2
+clean-$(BIN)/lzma:
+       -rm $(BIN)/lzma