[Python-modules-commits] r5766 - in packages/pyme/trunk/debian (5 files)

arnau at users.alioth.debian.org arnau at users.alioth.debian.org
Mon Jun 30 16:06:57 UTC 2008


    Date: Monday, June 30, 2008 @ 16:06:55
  Author: arnau
Revision: 5766

* New upstream release.
* debian/control:
  + Update Standards-Version to 3.8.0.
  + Wrap Uploaders and Build-Depends fields.
* debian/copyright:
  + Update copyright years.
* debian/patches:
  + Drop 02_gpgme.patch because it has been applied upstream.
  + Update 01_makefile.patch.

Modified:
  packages/pyme/trunk/debian/changelog
  packages/pyme/trunk/debian/control
  packages/pyme/trunk/debian/copyright
  packages/pyme/trunk/debian/patches/01_makefile.patch
Deleted:
  packages/pyme/trunk/debian/patches/02_gpgme.patch

Modified: packages/pyme/trunk/debian/changelog
===================================================================
--- packages/pyme/trunk/debian/changelog	2008-06-30 09:19:58 UTC (rev 5765)
+++ packages/pyme/trunk/debian/changelog	2008-06-30 16:06:55 UTC (rev 5766)
@@ -1,3 +1,17 @@
+pyme (0.8.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    + Update Standards-Version to 3.8.0.
+    + Wrap Uploaders and Build-Depends fields.
+  * debian/copyright:
+    + Update copyright years.
+  * debian/patches:
+    + Drop 02_gpgme.patch because it has been applied upstream.
+    + Update 01_makefile.patch.
+
+ -- Arnaud Fontaine <arnau at debian.org>  Mon, 30 Jun 2008 18:03:16 +0200
+
 pyme (0.7.0-4) unstable; urgency=low
 
   [ Arnaud Fontaine ]

Modified: packages/pyme/trunk/debian/control
===================================================================
--- packages/pyme/trunk/debian/control	2008-06-30 09:19:58 UTC (rev 5765)
+++ packages/pyme/trunk/debian/control	2008-06-30 16:06:55 UTC (rev 5766)
@@ -2,13 +2,20 @@
 Section: python
 Priority: optional
 Maintainer: Arnaud Fontaine <arnau at debian.org>
-Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>, Gustavo Franco <stratus at debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.42), python-all-dev (>= 2.3.5-7), python-central (>= 0.4.17), patchutils (>= 0.2.25), libgpgme11-dev, swig
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>,
+           Gustavo Franco <stratus at debian.org>
+Build-Depends: debhelper (>= 5.0.37.2),
+               cdbs (>= 0.4.42),
+               python-all-dev (>= 2.3.5-11),
+               python-central (>= 0.4.17),
+               patchutils (>= 0.2.25),
+               libgpgme11-dev,
+               swig
 Homepage: http://pyme.sourceforge.net
 XS-Python-Version: all
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyme/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pyme/trunk/?op=log
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 
 Package: python-pyme
 Architecture: any

Modified: packages/pyme/trunk/debian/copyright
===================================================================
--- packages/pyme/trunk/debian/copyright	2008-06-30 09:19:58 UTC (rev 5765)
+++ packages/pyme/trunk/debian/copyright	2008-06-30 16:06:55 UTC (rev 5766)
@@ -11,7 +11,7 @@
 
 Copyright:
 
-Copyright (C) 2004 Igor Belyi <belyi at users.sourceforge.net>
+Copyright (C) 2004-2008 Igor Belyi <belyi at users.sourceforge.net>
 Copyright (C) 2002 John Goerzen <jgoerzen at complete.org>
 
    This  library is  free  software; you  can  redistribute it  and/or

Modified: packages/pyme/trunk/debian/patches/01_makefile.patch
===================================================================
--- packages/pyme/trunk/debian/patches/01_makefile.patch	2008-06-30 09:19:58 UTC (rev 5765)
+++ packages/pyme/trunk/debian/patches/01_makefile.patch	2008-06-30 16:06:55 UTC (rev 5766)
@@ -1,37 +1,14 @@
---- Makefile.old	2006-01-12 14:59:52.000000000 +0100
-+++ Makefile	2006-01-12 11:54:19.000000000 +0100
-@@ -62,21 +62,11 @@
+--- a/Makefile	2008-06-23 00:22:34.000000000 +0900
++++ b/Makefile	2008-06-23 00:23:11.000000000 +0900
+@@ -75,9 +75,9 @@
+ reallyclean: clean
+ 	rm -f doc/*.html doc/gpgme/*.html $(CFILE) $(PYPATH)/$(PYFILE) $(HFILE)
  
- docs:
+-docs: build
++docs:
  	rm -f doc/*.html
 -	cd doc; for MOD in $(DOCMODS); do PYTHONPATH=`echo ../build/lib*` pydoc -w $$MOD; done
 +	cd doc; for MOD in $(DOCMODS); do PYTHONPATH=`echo ../build/lib* | sed 's/\ /:/g'` pydoc -w $$MOD; done
- 
--nondeb-dist: reallyclean
-+dist: reallyclean
- 	rm -rf ../pyme-$(PYMEVERS)
- 	mkdir ../pyme-$(PYMEVERS)
- 	tar -c --exclude="debian" --exclude="CVS" * | tar -x -C ../pyme-$(PYMEVERS)
- 	tar -czf ../pyme-$(PYMEVERS).tar.gz -C .. pyme-$(PYMEVERS)
- 	rm -rf ../pyme-$(PYMEVERS)
--
--dist:
--	fakeroot debian/rules clean
--	fakeroot debian/rules binary
--	fakeroot debian/rules clean
--	rm -rf ../pyme-$(PYMEVERS)
--	mkdir ../pyme-$(PYMEVERS)
--	tar -c --exclude="CVS" * | tar -x -C ../pyme-$(PYMEVERS)
--	tar -czf ../pyme-$(PYMEVERS).tar.gz -C .. pyme-$(PYMEVERS)
--	rm -rf ../pyme-$(PYMEVERS)
---- Makefile.old	2006-02-03 00:16:30.000000000 +0100
-+++ Makefile	2006-02-03 00:16:51.000000000 +0100
-@@ -50,7 +50,7 @@
- 
- clean:
- 	python setup.py clean --all
--	rm -rf build build2.2 build2.3 build2.4 setup.cfg
-+	rm -rf build build2.3 build2.4 setup.cfg
- 	rm -f `find . -name "*~"` `find . -name "*.pyc"` `find . -name "*.so"`
- 	find . -name auth -exec rm -vf {}/password {}/username \;
- 
+ ifneq (, $(PYSRCURL))
+ 	cd doc; for MOD in $(DOCMODS); do sed -i -e "s#\"file:.*/site-packages/\(pyme/.*\)\">[^<]*</a>#\"$(PYSRCURL)\">\1</a>#" $$MOD.html; done
+ endif

Deleted: packages/pyme/trunk/debian/patches/02_gpgme.patch
===================================================================
--- packages/pyme/trunk/debian/patches/02_gpgme.patch	2008-06-30 09:19:58 UTC (rev 5765)
+++ packages/pyme/trunk/debian/patches/02_gpgme.patch	2008-06-30 16:06:55 UTC (rev 5766)
@@ -1,10 +0,0 @@
---- gpgme.i.old	2006-04-12 22:16:21.000000000 +0200
-+++ gpgme.i	2006-04-12 22:16:36.000000000 +0200
-@@ -35,6 +35,7 @@
-     return NULL;
-   }
- }
-+%typemap(freearg) const char * "";
- 
- // Release returned buffers as necessary.
- %typemap(newfree) char * "free($1);";




More information about the Python-modules-commits mailing list