[med-svn] r18090 - trunk/packages/phylip/trunk/debian

Andreas Tille tille at moszumanska.debian.org
Mon Sep 22 14:37:22 UTC 2014


Author: tille
Date: 2014-09-22 14:37:21 +0000 (Mon, 22 Sep 2014)
New Revision: 18090

Added:
   trunk/packages/phylip/trunk/debian/phylip.postinst
   trunk/packages/phylip/trunk/debian/phylip.postrm
Modified:
   trunk/packages/phylip/trunk/debian/changelog
   trunk/packages/phylip/trunk/debian/phylip.install
Log:
Force ldconfig call and upload to unstable


Modified: trunk/packages/phylip/trunk/debian/changelog
===================================================================
--- trunk/packages/phylip/trunk/debian/changelog	2014-09-22 14:36:26 UTC (rev 18089)
+++ trunk/packages/phylip/trunk/debian/changelog	2014-09-22 14:37:21 UTC (rev 18090)
@@ -1,4 +1,4 @@
-phylip (1:3.696+dfsg-1) UNRELEASED; urgency=medium
+phylip (1:3.696+dfsg-1) unstable; urgency=medium
 
   * New upstream version now with free license
   * cme fix dpkg-control
@@ -6,6 +6,7 @@
   * d/copyright:
      - DEP5 now with BSD-2-Clause license
      - exclude some binaries without source which are not needed
+  * Add bash_completion
 
  -- Andreas Tille <tille at debian.org>  Wed, 17 Sep 2014 19:35:06 +0200
 

Modified: trunk/packages/phylip/trunk/debian/phylip.install
===================================================================
--- trunk/packages/phylip/trunk/debian/phylip.install	2014-09-22 14:36:26 UTC (rev 18089)
+++ trunk/packages/phylip/trunk/debian/phylip.install	2014-09-22 14:37:21 UTC (rev 18090)
@@ -1,4 +1,5 @@
-exe/*			usr/lib/phylip/bin
-src/lib*.so*		usr/lib
-fonts/*			usr/share/phylip
-debian/bin/*		usr/bin
+exe/*				usr/lib/phylip/bin
+src/lib*.so*			usr/lib
+fonts/*				usr/share/phylip
+debian/bin/*			usr/bin
+debian/bash_completion/*	etc/bash_completion.d

Added: trunk/packages/phylip/trunk/debian/phylip.postinst
===================================================================
--- trunk/packages/phylip/trunk/debian/phylip.postinst	                        (rev 0)
+++ trunk/packages/phylip/trunk/debian/phylip.postinst	2014-09-22 14:37:21 UTC (rev 18090)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+	configure)
+		ldconfig
+	;;
+	*)
+	;;
+esac
+
+#DEBHELPER#

Added: trunk/packages/phylip/trunk/debian/phylip.postrm
===================================================================
--- trunk/packages/phylip/trunk/debian/phylip.postrm	                        (rev 0)
+++ trunk/packages/phylip/trunk/debian/phylip.postrm	2014-09-22 14:37:21 UTC (rev 18090)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+	remove)
+		ldconfig
+	;;
+	*)
+	;;
+esac
+
+#DEBHELPER#




More information about the debian-med-commit mailing list