[Python-modules-commits] r30036 - in packages/blinker/trunk/debian (11 files)
kitterman at users.alioth.debian.org
kitterman at users.alioth.debian.org
Sat Aug 2 19:11:54 UTC 2014
Date: Saturday, August 2, 2014 @ 19:11:53
Author: kitterman
Revision: 30036
* Team upload
* Add python3-blinker binary package
- python3-all added to Build-Depends
* Switch dh buildsystem to pybuild
- dh-python added to Build-Depends
* debian/control, debian/rules:
- Enable tests during build
* Repack tarball to also remove sourceless docs/html/searchindex.js
* Update debian/repack.sh to also remove docs/html/searchindex.js
* Move documentation into a separate binary for use with both the python
and python3 versions of the package
- Add python-blinker-doc to debian/control
- Move debian/python-blinker.docs to debian/python-blinker-doc.docs
- Move debian/python-blinker.links to debian/python-blinker-doc.links and
update links for new package name
- Have python-blinker and python3-blinker Suggest python-blinker-doc
* Fix DEP-5 format errors in debian/copyright
* Add DPMT Vcs-* fields to debian/control
* Bump standards version to 3.9.5 without further change
Added:
packages/blinker/trunk/debian/python-blinker-doc.docs
packages/blinker/trunk/debian/python-blinker-doc.links
packages/blinker/trunk/debian/python-blinker.install
packages/blinker/trunk/debian/python3-blinker.install
Modified:
packages/blinker/trunk/debian/changelog
packages/blinker/trunk/debian/control
packages/blinker/trunk/debian/copyright
packages/blinker/trunk/debian/repack.sh
packages/blinker/trunk/debian/rules
Deleted:
packages/blinker/trunk/debian/python-blinker.docs
packages/blinker/trunk/debian/python-blinker.links
Modified: packages/blinker/trunk/debian/changelog
===================================================================
--- packages/blinker/trunk/debian/changelog 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/changelog 2014-08-02 19:11:53 UTC (rev 30036)
@@ -1,3 +1,33 @@
+blinker (1.3.dfsg2-1) unstable; urgency=low
+
+ * Team upload
+
+ [ Piotr Ożarowski ]
+ * Add python3-blinker binary package
+ - python3-all added to Build-Depends
+ * Switch dh buildsystem to pybuild
+ - dh-python added to Build-Depends
+
+ [ Michael Terry ]
+ * debian/control, debian/rules:
+ - Enable tests during build
+
+ [ Scott Kitterman ]
+ * Repack tarball to also remove sourceless docs/html/searchindex.js
+ * Update debian/repack.sh to also remove docs/html/searchindex.js
+ * Move documentation into a separate binary for use with both the python
+ and python3 versions of the package
+ - Add python-blinker-doc to debian/control
+ - Move debian/python-blinker.docs to debian/python-blinker-doc.docs
+ - Move debian/python-blinker.links to debian/python-blinker-doc.links and
+ update links for new package name
+ - Have python-blinker and python3-blinker Suggest python-blinker-doc
+ * Fix DEP-5 format errors in debian/copyright
+ * Add DPMT Vcs-* fields to debian/control
+ * Bump standards version to 3.9.5 without further change
+
+ -- Scott Kitterman <scott at kitterman.com> Sat, 02 Aug 2014 13:55:34 -0400
+
blinker (1.3.dfsg1-1) unstable; urgency=low
* New upstream version 1.3.dfsg1
Modified: packages/blinker/trunk/debian/control
===================================================================
--- packages/blinker/trunk/debian/control 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/control 2014-08-02 19:11:53 UTC (rev 30036)
@@ -3,16 +3,47 @@
Uploaders: OndÅej Surý <ondrej at debian.org>
Section: python
Priority: optional
-Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 7)
-Standards-Version: 3.9.4
+Build-Depends: python-all (>= 2.6.6-3), python3-all, debhelper (>= 7), dh-python, python-nose
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/blinker/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/blinker/trunk/
+Standards-Version: 3.9.5
Homepage: http://pythonhosted.org/blinker/
Package: python-blinker
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
+Suggests: python-blinker-doc
Description: Fast, simple object-to-object and broadcast signaling library
Blinker provides a fast dispatching system that allows any number of
interested parties to subscribe to events, or "signals".
.
Signal receivers can subscribe to specific senders or receive signals
sent by any sender.
+ .
+ This package contains the Python 2 version.
+
+Package: python3-blinker
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Suggests: python-blinker-doc
+Description: fast, simple object-to-object and broadcast signaling library
+ Blinker provides a fast dispatching system that allows any number of
+ interested parties to subscribe to events, or "signals".
+ .
+ Signal receivers can subscribe to specific senders or receive signals
+ sent by any sender.
+ .
+ This package contains the Python 3 version.
+
+Package: python-blinker-doc
+Section: doc
+Architecture: all
+Depends: libjs-sphinxdoc, ${misc:Depends}
+Description: Documentation for the blinker signaling library
+ Blinker provides a fast dispatching system that allows any number of
+ interested parties to subscribe to events, or "signals".
+ .
+ Signal receivers can subscribe to specific senders or receive signals
+ sent by any sender.
+ .
+ This package contains the documentation for blinker.
Modified: packages/blinker/trunk/debian/copyright
===================================================================
--- packages/blinker/trunk/debian/copyright 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/copyright 2014-08-02 19:11:53 UTC (rev 30036)
@@ -11,7 +11,7 @@
License: BSD3
Files: docs/html/_static/*.css
-Copyright (c) 2007-2011 by the Sphinx team (see AUTHORS file).
+Copyright: (c) 2007-2011 by the Sphinx team (see AUTHORS file).
License: BSD
Files: debian/*
@@ -43,7 +43,7 @@
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
-
+ .
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
Added: packages/blinker/trunk/debian/python-blinker-doc.docs
===================================================================
--- packages/blinker/trunk/debian/python-blinker-doc.docs (rev 0)
+++ packages/blinker/trunk/debian/python-blinker-doc.docs 2014-08-02 19:11:53 UTC (rev 30036)
@@ -0,0 +1,3 @@
+docs/html
+AUTHORS
+README
Added: packages/blinker/trunk/debian/python-blinker-doc.links
===================================================================
--- packages/blinker/trunk/debian/python-blinker-doc.links (rev 0)
+++ packages/blinker/trunk/debian/python-blinker-doc.links 2014-08-02 19:11:53 UTC (rev 30036)
@@ -0,0 +1,5 @@
+/usr/share/javascript/sphinxdoc/1.0/underscore.js /usr/share/doc/python-blinker-doc/html/_static/underscore.js
+/usr/share/javascript/sphinxdoc/1.0/jquery.js /usr/share/doc/python-blinker-doc/html/_static/jquery.js
+/usr/share/javascript/sphinxdoc/1.0/searchtools.js /usr/share/doc/python-blinker-doc/html/_static/searchtools.js
+/usr/share/javascript/sphinxdoc/1.0/doctools.js /usr/share/doc/python-blinker-doc/html/_static/doctools.js
+/usr/share/doc/python-blinker-doc/html/_sources /usr/share/doc/python-blinker-doc/rst
Deleted: packages/blinker/trunk/debian/python-blinker.docs
===================================================================
--- packages/blinker/trunk/debian/python-blinker.docs 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/python-blinker.docs 2014-08-02 19:11:53 UTC (rev 30036)
@@ -1,3 +0,0 @@
-docs/html
-AUTHORS
-README
Added: packages/blinker/trunk/debian/python-blinker.install
===================================================================
--- packages/blinker/trunk/debian/python-blinker.install (rev 0)
+++ packages/blinker/trunk/debian/python-blinker.install 2014-08-02 19:11:53 UTC (rev 30036)
@@ -0,0 +1 @@
+/usr/lib/python2.*
Deleted: packages/blinker/trunk/debian/python-blinker.links
===================================================================
--- packages/blinker/trunk/debian/python-blinker.links 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/python-blinker.links 2014-08-02 19:11:53 UTC (rev 30036)
@@ -1,5 +0,0 @@
-/usr/share/javascript/sphinxdoc/1.0/underscore.js /usr/share/doc/python-blinker/html/_static/underscore.js
-/usr/share/javascript/sphinxdoc/1.0/jquery.js /usr/share/doc/python-blinker/html/_static/jquery.js
-/usr/share/javascript/sphinxdoc/1.0/searchtools.js /usr/share/doc/python-blinker/html/_static/searchtools.js
-/usr/share/javascript/sphinxdoc/1.0/doctools.js /usr/share/doc/python-blinker/html/_static/doctools.js
-/usr/share/doc/python-blinker/html/_sources /usr/share/doc/python-blinker/rst
Added: packages/blinker/trunk/debian/python3-blinker.install
===================================================================
--- packages/blinker/trunk/debian/python3-blinker.install (rev 0)
+++ packages/blinker/trunk/debian/python3-blinker.install 2014-08-02 19:11:53 UTC (rev 30036)
@@ -0,0 +1 @@
+/usr/lib/python3.*
Modified: packages/blinker/trunk/debian/repack.sh
===================================================================
--- packages/blinker/trunk/debian/repack.sh 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/repack.sh 2014-08-02 19:11:53 UTC (rev 30036)
@@ -27,6 +27,7 @@
zcat "${orig_file_path}" | \
tar --wildcards \
--delete '*/_static/*.js' | \
+ --delete '*/searchindex.js' | \
gzip -c > $dfsg_file_path
echo "File $OPT_FILE repackaged successfully to $dfsg_file_path"
Modified: packages/blinker/trunk/debian/rules
===================================================================
--- packages/blinker/trunk/debian/rules 2014-08-02 18:20:47 UTC (rev 30035)
+++ packages/blinker/trunk/debian/rules 2014-08-02 19:11:53 UTC (rev 30036)
@@ -1,9 +1,7 @@
#!/usr/bin/make -f
-# This file was automatically generated by stdeb 0.6.0+git at
-# Mon, 04 Mar 2013 11:44:57 +0100
-
%:
- dh $@ --with python2 --buildsystem=python_distutils
+ dh $@ --with python2,python3 --buildsystem=pybuild
-
+override_dh_auto_test:
+ nosetests
More information about the Python-modules-commits
mailing list