[Python-modules-commits] r5136 - in packages/python-processing/trunk/debian (4 files)

morph-guest at users.alioth.debian.org morph-guest at users.alioth.debian.org
Thu Apr 24 17:50:49 UTC 2008


    Date: Thursday, April 24, 2008 @ 17:50:46
  Author: morph-guest
Revision: 5136

upgrade to 0.52

Modified:
  packages/python-processing/trunk/debian/changelog
  packages/python-processing/trunk/debian/patches/10_fix_index_html.dpatch
  packages/python-processing/trunk/debian/watch
Deleted:
  packages/python-processing/trunk/debian/uscan-ziprepack.sh

Modified: packages/python-processing/trunk/debian/changelog
===================================================================
--- packages/python-processing/trunk/debian/changelog	2008-04-24 05:38:07 UTC (rev 5135)
+++ packages/python-processing/trunk/debian/changelog	2008-04-24 17:50:46 UTC (rev 5136)
@@ -1,3 +1,15 @@
+python-processing (0.52-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/watch
+    - removed call to uscan-ziprepack.sh
+  * debian/uscan-ziprepack.sh
+    - removed since uscan support zip format now
+  * debian/patches/10_fix_index_html.dpatch
+    - updated to new upstream code
+
+ -- Sandro Tosi <matrixhasu at gmail.com>  Thu, 24 Apr 2008 19:46:17 +0200
+
 python-processing (0.51-1) unstable; urgency=low
 
   [ Sandro Tosi ]

Modified: packages/python-processing/trunk/debian/patches/10_fix_index_html.dpatch
===================================================================
--- packages/python-processing/trunk/debian/patches/10_fix_index_html.dpatch	2008-04-24 05:38:07 UTC (rev 5135)
+++ packages/python-processing/trunk/debian/patches/10_fix_index_html.dpatch	2008-04-24 17:50:46 UTC (rev 5136)
@@ -6,22 +6,22 @@
 
 @DPATCH@
 diff -urNad python-processing~/index.html python-processing/index.html
---- python-processing~/index.html	2008-01-03 13:30:10.000000000 +0100
-+++ python-processing/index.html	2008-03-12 01:26:18.108624701 +0100
+--- python-processing~/index.html	2008-04-15 16:30:40.000000000 +0200
++++ python-processing/index.html	2008-04-24 19:25:55.120937630 +0200
 @@ -44,11 +44,11 @@
- <div class="section">
- <h1><a id="links" name="links">Links</a></h1>
- <ul class="simple">
--<li><a class="reference" href="./doc/index.html">Documentation</a></li>
--<li><a class="reference" href="./doc/INSTALL.html">Installation instructions</a></li>
--<li><a class="reference" href="./doc/CHANGES.html">Changelog</a></li>
--<li><a class="reference" href="./doc/THANKS.html">Acknowledgments</a></li>
--<li><a class="reference" href="./doc/COPYING.html">BSD Licence</a></li>
-+<li><a class="reference" href="/usr/share/doc/python-processing/doc/index.html">Documentation</a></li>
-+<li><a class="reference" href="/usr/share/doc/python-processing/doc/INSTALL.html">Installation instructions</a></li>
-+<li><a class="reference" href="/usr/share/doc/python-processing/doc/CHANGES.html">Changelog</a></li>
-+<li><a class="reference" href="/usr/share/doc/python-processing/doc/THANKS.html">Acknowledgments</a></li>
-+<li><a class="reference" href="/usr/share/doc/python-processing/doc/COPYING.html">BSD Licence</a></li>
- </ul>
- <p>The project is hosted at</p>
- <ul class="simple">
+ <div class="section">
+ <h1><a id="links" name="links">Links</a></h1>
+ <ul class="simple">
+-<li><a class="reference" href="./doc/index.html">Documentation</a></li>
+-<li><a class="reference" href="./doc/INSTALL.html">Installation instructions</a></li>
+-<li><a class="reference" href="./doc/CHANGES.html">Changelog</a></li>
+-<li><a class="reference" href="./doc/THANKS.html">Acknowledgments</a></li>
+-<li><a class="reference" href="./doc/COPYING.html">BSD Licence</a></li>
++<li><a class="reference" href="/usr/share/doc/python-processing/doc/index.html">Documentation</a></li>
++<li><a class="reference" href="/usr/share/doc/python-processing/doc/INSTALL.html">Installation instructions</a></li>
++<li><a class="reference" href="/usr/share/doc/python-processing/doc/CHANGES.html">Changelog</a></li>
++<li><a class="reference" href="/usr/share/doc/python-processing/doc/THANKS.html">Acknowledgments</a></li>
++<li><a class="reference" href="/usr/share/doc/python-processing/doc/COPYING.html">BSD Licence</a></li>
+ </ul>
+ <p>The project is hosted at</p>
+ <ul class="simple">

Deleted: packages/python-processing/trunk/debian/uscan-ziprepack.sh
===================================================================
--- packages/python-processing/trunk/debian/uscan-ziprepack.sh	2008-04-24 05:38:07 UTC (rev 5135)
+++ packages/python-processing/trunk/debian/uscan-ziprepack.sh	2008-04-24 17:50:46 UTC (rev 5136)
@@ -1,50 +0,0 @@
-#!/bin/bash -e
-
-# Simple helper-script for uscan to repackage a .zip file into a tar.gz.
-#
-# Example debian/watch content:
-#    version=3
-#    http://foo.bar.com/fuzz/fuddl-(.*).zip debian debian/uscan-ziprepack.sh
-#
-# I hereby put this script into public domain.
-# Bernd Zeimetz <bzed at debian.org>, Dec 13 2007
-
-
-#command --upstream-version version filename
-[ $# -eq 3 ] || exit 255
-version="$2"
-filename="$3"
-source=`dpkg-parsechangelog  | grep ^Source | awk '{print $2}'`
-destdir=`echo ${filename} | sed 's,/[^/]*$,,'`
-if [ "${destdir}" = "${filename}" ]; then
-    destdir=`pwd`
-fi
-tarball=${source}_${version}.orig.tar.gz
-TMP="tmp__${RANDOM}"
-
-mkdir ${TMP}
-unzip -d ${TMP} ${filename}
-
-
-contentcount=`ls ${TMP} | grep -c '[^*$]'`
-if [ ${contentcount} -eq 1 ]; then
-#if there's only one folder in the temp directory....
-    cd ${TMP}
-    tar cvf - * | gzip -9 > ../${tarball}
-    cd ..
-    rm -rf ${TMP}
-elif [ ${contentcount} -gt 1 ]; then
-#upstream forgot to add a subdir to the zip
-    mv ${TMP} ${source}-${version}.orig
-    tar cvf - ${source}-${version}.orig | gzip -9 > ${tarball}
-else
-#weird.
-    echo 'Empty zip file or an weird error happened.'
-    unzip -l ${filename}
-    exit 255
-fi
-
-mv ${tarball} ${destdir}
-rm ${filename}
-echo "Tarball dropped to ${destdir}/${tarball}"
-

Modified: packages/python-processing/trunk/debian/watch
===================================================================
--- packages/python-processing/trunk/debian/watch	2008-04-24 05:38:07 UTC (rev 5135)
+++ packages/python-processing/trunk/debian/watch	2008-04-24 17:50:46 UTC (rev 5136)
@@ -1,3 +1,3 @@
 version=3
 
-http://pypi.python.org/packages/source/p/processing/processing-(.*)\.zip debian debian/uscan-ziprepack.sh
+http://pypi.python.org/packages/source/p/processing/processing-(.*)\.zip




More information about the Python-modules-commits mailing list