[Python-apps-commits] r8238 - in packages/graphite-carbon/trunk/debian (5 files)

hggh-guest at users.alioth.debian.org hggh-guest at users.alioth.debian.org
Mon Feb 27 19:14:26 UTC 2012


    Date: Monday, February 27, 2012 @ 19:14:25
  Author: hggh-guest
Revision: 8238

changed dpkg-statoverride; ready for upload

Modified:
  packages/graphite-carbon/trunk/debian/changelog
  packages/graphite-carbon/trunk/debian/control
  packages/graphite-carbon/trunk/debian/copyright
  packages/graphite-carbon/trunk/debian/graphite-carbon.postinst
  packages/graphite-carbon/trunk/debian/graphite-carbon.postrm

Modified: packages/graphite-carbon/trunk/debian/changelog
===================================================================
--- packages/graphite-carbon/trunk/debian/changelog	2012-02-26 22:40:24 UTC (rev 8237)
+++ packages/graphite-carbon/trunk/debian/changelog	2012-02-27 19:14:25 UTC (rev 8238)
@@ -1,5 +1,5 @@
-graphite-carbon (0.9.9-1) UNRELEASED; urgency=low
+graphite-carbon (0.9.9-1) unstable; urgency=low
 
   * Initial release (Closes: #651233)
 
- -- Jonas Genannt <jonas.genannt at capi2name.de>  Tue, 17 Jan 2012 20:35:27 +0100
+ -- Jonas Genannt <jonas.genannt at capi2name.de>  Mon, 27 Feb 2012 20:05:06 +0100

Modified: packages/graphite-carbon/trunk/debian/control
===================================================================
--- packages/graphite-carbon/trunk/debian/control	2012-02-26 22:40:24 UTC (rev 8237)
+++ packages/graphite-carbon/trunk/debian/control	2012-02-27 19:14:25 UTC (rev 8238)
@@ -4,7 +4,7 @@
 Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
 Uploaders: Jonas Genannt <jonas.genannt at capi2name.de>
 Build-Depends: debhelper (>= 8), python-all (>= 2.6.6-3~)
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: https://launchpad.net/graphite
 Vcs-Svn: svn://svn.debian.org/python-apps/packages/graphite-carbon/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/graphite-carbon/trunk/

Modified: packages/graphite-carbon/trunk/debian/copyright
===================================================================
--- packages/graphite-carbon/trunk/debian/copyright	2012-02-26 22:40:24 UTC (rev 8237)
+++ packages/graphite-carbon/trunk/debian/copyright	2012-02-27 19:14:25 UTC (rev 8238)
@@ -1,4 +1,4 @@
-Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5/copyright-format.xml?revision=248
+Format-Specification: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Contact: Chris Davis <chrismd at gmail.com>
 Source: http://pypi.python.org/pypi/carbon/
 Upstream-Name: Carbon

Modified: packages/graphite-carbon/trunk/debian/graphite-carbon.postinst
===================================================================
--- packages/graphite-carbon/trunk/debian/graphite-carbon.postinst	2012-02-26 22:40:24 UTC (rev 8237)
+++ packages/graphite-carbon/trunk/debian/graphite-carbon.postinst	2012-02-27 19:14:25 UTC (rev 8238)
@@ -13,7 +13,9 @@
 	fi
 
 	for i in $DIRS; do
-		chown _graphite:_graphite $i
+		if ! dpkg-statoverride --list $i >/dev/null 2>&1; then
+			dpkg-statoverride --update --add _graphite _graphite 0755 $i
+		fi
 	done
 fi
 

Modified: packages/graphite-carbon/trunk/debian/graphite-carbon.postrm
===================================================================
--- packages/graphite-carbon/trunk/debian/graphite-carbon.postrm	2012-02-26 22:40:24 UTC (rev 8237)
+++ packages/graphite-carbon/trunk/debian/graphite-carbon.postrm	2012-02-27 19:14:25 UTC (rev 8238)
@@ -14,6 +14,11 @@
 	if [ "$RET" = "true" ]; then
 		rm -rf /var/lib/graphite/whisper
 	fi
+	for i in $DIRS; do
+		if dpkg-statoverride --list $i >/dev/null 2>&1; then
+			dpkg-statoverride --remove $i
+		fi
+	done
 fi
 
 #DEBHELPER#




More information about the Python-apps-commits mailing list