[Python-apps-commits] r9091 - in packages/hg-git/trunk/debian (changelog patches postinst)

fqj1994-guest at users.alioth.debian.org fqj1994-guest at users.alioth.debian.org
Wed Sep 5 03:04:33 UTC 2012


    Date: Wednesday, September 5, 2012 @ 03:04:30
  Author: fqj1994-guest
Revision: 9091

new upstream release 0.3.3

Added:
  packages/hg-git/trunk/debian/postinst
Modified:
  packages/hg-git/trunk/debian/changelog
Deleted:
  packages/hg-git/trunk/debian/patches/

Modified: packages/hg-git/trunk/debian/changelog
===================================================================
--- packages/hg-git/trunk/debian/changelog	2012-09-04 21:34:38 UTC (rev 9090)
+++ packages/hg-git/trunk/debian/changelog	2012-09-05 03:04:30 UTC (rev 9091)
@@ -1,3 +1,11 @@
+hg-git (0.3.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Patches token from upstream are dropped.
+  * Add postinst script.
+
+ -- Qijiang Fan <fqj1994 at gmail.com>  Wed, 05 Sep 2012 10:49:40 +0800
+
 hg-git (0.3.2-2) unstable; urgency=low
 
   * Backport a patch from upstream to handle incorrect 

Added: packages/hg-git/trunk/debian/postinst
===================================================================
--- packages/hg-git/trunk/debian/postinst	                        (rev 0)
+++ packages/hg-git/trunk/debian/postinst	2012-09-05 03:04:30 UTC (rev 9091)
@@ -0,0 +1,17 @@
+#!/bin/sh
+case "$1" in
+	configure)
+		echo 'mercurial-git extension is disabled by default.'
+		echo 'You can follow the instructions in /usr/share/doc/mercurial-git/README.Debian to enable it.'
+		;;
+
+	abort-upgrade|abort-remove|abort-deconfigure)
+		;;
+
+	*)
+		echo "postinst called with unknown argument \`$1'" >&2
+		exit 1
+		;;
+esac
+
+#DEBHELPER#




More information about the Python-apps-commits mailing list