[Python-modules-commits] r12710 - in packages/genshi/trunk/debian (7 files)

arnau at users.alioth.debian.org arnau at users.alioth.debian.org
Fri Apr 23 07:39:51 UTC 2010


    Date: Friday, April 23, 2010 @ 07:39:48
  Author: arnau
Revision: 12710

New upstream release 0.6

Added:
  packages/genshi/trunk/debian/pycompat
Modified:
  packages/genshi/trunk/debian/changelog
  packages/genshi/trunk/debian/control
  packages/genshi/trunk/debian/copyright
  packages/genshi/trunk/debian/rules
  packages/genshi/trunk/debian/source/format
  packages/genshi/trunk/debian/watch

Modified: packages/genshi/trunk/debian/changelog
===================================================================
--- packages/genshi/trunk/debian/changelog	2010-04-22 21:35:30 UTC (rev 12709)
+++ packages/genshi/trunk/debian/changelog	2010-04-23 07:39:48 UTC (rev 12710)
@@ -1,3 +1,19 @@
+genshi (0.6-1) unstable; urgency=low
+
+  * New upstream release. Closes: #578759.
+    + debian/rules:
+      - Enable building C extension which has now been disabled by
+        default.
+  * Switch to dpkg-source 3.0 (quilt) format.
+  * debian/control:
+    + Bump Standards-Version to 3.8.4. No changes needed.
+  * debian/watch:
+    + Use FTP passive mode.
+  * debian/copyright:
+    + Update copyright years.
+
+ -- Arnaud Fontaine <arnau at debian.org>  Fri, 23 Apr 2010 08:03:08 +0100
+
 genshi (0.5.1-2) unstable; urgency=low
 
   * debian/control:

Modified: packages/genshi/trunk/debian/control
===================================================================
--- packages/genshi/trunk/debian/control	2010-04-22 21:35:30 UTC (rev 12709)
+++ packages/genshi/trunk/debian/control	2010-04-23 07:39:48 UTC (rev 12710)
@@ -8,7 +8,7 @@
                python-all-dev (>= 2.4),
                python-support (>= 0.7.1),
                python-setuptools (>= 0.6b3)
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Homepage: http://genshi.edgewall.org/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/genshi/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/genshi/trunk/

Modified: packages/genshi/trunk/debian/copyright
===================================================================
--- packages/genshi/trunk/debian/copyright	2010-04-22 21:35:30 UTC (rev 12709)
+++ packages/genshi/trunk/debian/copyright	2010-04-23 07:39:48 UTC (rev 12710)
@@ -5,7 +5,7 @@
 
 Author: Edgewall Software <info at edgewall.org>
 
-Copyright: 2006-2008 Edgewall Software
+Copyright: 2006-2010 Edgewall Software
    All rights reserved.
 
    Redistribution and use in source  and binary forms, with or without
@@ -36,7 +36,7 @@
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY  WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-The   Debian    packaging   is   (C)    2006-2008,   Arnaud   Fontaine
-<arnau at debian.org> and  is licensed under the GPL.  On Debian systems,
+The   Debian    packaging   is   (C)    2006-2010,   Arnaud   Fontaine
+<arnau at debian.org> and is licensed  under the GPL.  On Debian systems,
 the complete  text of the GNU  General Public License can  be found in
 `/usr/share/common-licenses/GPL'.

Added: packages/genshi/trunk/debian/pycompat
===================================================================
--- packages/genshi/trunk/debian/pycompat	                        (rev 0)
+++ packages/genshi/trunk/debian/pycompat	2010-04-23 07:39:48 UTC (rev 12710)
@@ -0,0 +1 @@
+2

Modified: packages/genshi/trunk/debian/rules
===================================================================
--- packages/genshi/trunk/debian/rules	2010-04-22 21:35:30 UTC (rev 12709)
+++ packages/genshi/trunk/debian/rules	2010-04-23 07:39:48 UTC (rev 12710)
@@ -13,5 +13,40 @@
 DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed
 DEB_DESTDIR=debian/python-genshi
 
+# Enable the C extension
+DEB_PYTHON_SETUP_CMD += --with-speedups
+
 clean::
-	-rm -rf Genshi.egg-info
+	-rm -rf $(CURDIR)/Genshi.egg-info
+
+## SVN snapshot (changelog entry with a version: a.b.c~svnREVISION-d)
+## Get the source  from the SVN upstream repository,  then generate the
+## documentation (which is  in the release tarballs but  not in the SVN
+## repository and requires  python-docutils and python-epydoc packages)
+## and finally create the tarball
+#SVN_URL := https://svn.edgewall.org/repos/genshi/trunk
+#SVN_REVISION := $(shell echo $(DEB_UPSTREAM_VERSION)|sed 's/.*~svn\([0-9]*\)/\1/')
+#SVN_DEB_TARBALL_DIR := $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
+#SVN_DEB_TARBALL :=  $(CURDIR)/../$(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz
+#
+## Adapted to CDBS and Genshi from:
+##  http://wiki.debian.org/SandroTosi/Svn_get-orig-source
+#get-orig-source:
+#	-rm -rf $(SVN_DEB_TARBALL_DIR) $(SVN_DEB_TARBALL)
+#
+#	svn export -r $(SVN_REVISION) $(SVN_URL) $(SVN_DEB_TARBALL_DIR)
+#
+#	( cd $(SVN_DEB_TARBALL_DIR) && python setup.py build_doc )
+#
+#	# Get rid of byte-compile files created when building the
+#	# documentation
+#	find $(SVN_DEB_TARBALL_DIR) -name '*.pyc' -exec rm '{}' \;
+#
+#	GZIP='--best --no-name' tar czf $(SVN_DEB_TARBALL) -C $(SVN_DEB_TARBALL_DIR)/../ \
+#		$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
+#
+#	-rm -rf $(SVN_DEB_TARBALL_DIR)
+#
+#	echo "Created: $(SVN_DEB_TARBALL)"
+#
+#.PHONY: get-orig-source

Modified: packages/genshi/trunk/debian/source/format
===================================================================
--- packages/genshi/trunk/debian/source/format	2010-04-22 21:35:30 UTC (rev 12709)
+++ packages/genshi/trunk/debian/source/format	2010-04-23 07:39:48 UTC (rev 12710)
@@ -1 +1 @@
-1.0
+3.0 (quilt)

Modified: packages/genshi/trunk/debian/watch
===================================================================
--- packages/genshi/trunk/debian/watch	2010-04-22 21:35:30 UTC (rev 12709)
+++ packages/genshi/trunk/debian/watch	2010-04-23 07:39:48 UTC (rev 12710)
@@ -1,2 +1,2 @@
 version=3
-ftp://ftp.edgewall.com/pub/genshi/ Genshi-([0-9._-]*)\.tar\.gz
+opts=pasv ftp://ftp.edgewall.com/pub/genshi/Genshi-([0-9._-]*)\.tar\.gz




More information about the Python-modules-commits mailing list