[Python-modules-commits] r22464 - in packages/tweepy/trunk/debian (7 files)
nomadium-guest at users.alioth.debian.org
nomadium-guest at users.alioth.debian.org
Fri Jul 27 02:06:06 UTC 2012
Date: Friday, July 27, 2012 @ 02:06:05
Author: nomadium-guest
Revision: 22464
* New upstream release. (Closes: #669881, #681905).
* Update watch file.
* Update copyright file.
Modified:
packages/tweepy/trunk/debian/changelog
packages/tweepy/trunk/debian/control
packages/tweepy/trunk/debian/copyright
packages/tweepy/trunk/debian/orig-tar.sh
packages/tweepy/trunk/debian/python-tweepy-doc.links
packages/tweepy/trunk/debian/rules
packages/tweepy/trunk/debian/watch
Modified: packages/tweepy/trunk/debian/changelog
===================================================================
--- packages/tweepy/trunk/debian/changelog 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/changelog 2012-07-27 02:06:05 UTC (rev 22464)
@@ -1,8 +1,11 @@
-tweepy (1.7.1-3) UNRELEASED; urgency=low
+tweepy (1.10-1) UNRELEASED; urgency=low
+ * New upstream release. (Closes: #669881, #681905).
* Update Homepage field. (Closes: #653895).
+ * Update watch file.
+ * Update copyright file.
- -- Miguel Landaeta <miguel at miguel.cc> Sun, 01 Jan 2012 12:41:36 -0430
+ -- Miguel Landaeta <miguel at miguel.cc> Thu, 26 Jul 2012 22:18:01 -0430
tweepy (1.7.1-2) unstable; urgency=low
Modified: packages/tweepy/trunk/debian/control
===================================================================
--- packages/tweepy/trunk/debian/control 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/control 2012-07-27 02:06:05 UTC (rev 22464)
@@ -5,7 +5,7 @@
Priority: optional
Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~),
python-docutils, python-setuptools, python-sphinx
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
X-Python-Version: >= 2.4
Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/tweepy/trunk
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/tweepy/trunk/
@@ -30,7 +30,7 @@
Architecture: all
Section: doc
Depends: ${misc:Depends}
-Recommends: libjs-jquery
+Recommends: libjs-jquery, libjs-underscore
Description: Documentation for python-tweepy module
Documentation for Tweepy that is a Twitter and Identi.ca
library for Python that can be used in desktop and web
Modified: packages/tweepy/trunk/debian/copyright
===================================================================
--- packages/tweepy/trunk/debian/copyright 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/copyright 2012-07-27 02:06:05 UTC (rev 22464)
@@ -1,10 +1,10 @@
-Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=173
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: tweepy
Upstream-Contact: Joshua Roesslein <jroesslein at gmail.com>
-Source: https://github.com/joshthecoder/tweepy/archives/master
+Source: https://github.com/tweepy/tweepy/tags
Files: *
-Copyright: © 2009-2011, Joshua Roesslein <jroesslein at gmail.com>
+Copyright: © 2009-2012, Joshua Roesslein <jroesslein at gmail.com>
License: Expat
Files: tweepy/oauth.py
@@ -12,7 +12,7 @@
License: Expat
Files: debian/*
-Copyright: © 2011, Miguel Landaeta <miguel at miguel.cc>
+Copyright: © 2011-2012, Miguel Landaeta <miguel at miguel.cc>
License: Expat
License: Expat
Modified: packages/tweepy/trunk/debian/orig-tar.sh
===================================================================
--- packages/tweepy/trunk/debian/orig-tar.sh 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/orig-tar.sh 2012-07-27 02:06:05 UTC (rev 22464)
@@ -1,7 +1,14 @@
#!/bin/sh -e
# called by uscan with '--upstream-version' <version> <file>
+ZIP=tweepy_$2.zip
TAR=tweepy_$2.orig.tar.gz
+DIR=tweepy-tweepy-*
# Just rename upstream source tarball
-mv $2 $TAR
+mv $2 $ZIP
+
+# Repack
+unzip $ZIP $DIR
+GZIP=-9 tar --numeric-owner --group 0 --owner 0 -zcvf $TAR $DIR
+rm -rf $DIR $ZIP
Modified: packages/tweepy/trunk/debian/python-tweepy-doc.links
===================================================================
--- packages/tweepy/trunk/debian/python-tweepy-doc.links 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/python-tweepy-doc.links 2012-07-27 02:06:05 UTC (rev 22464)
@@ -1,2 +1,3 @@
usr/share/javascript/jquery/jquery.js usr/share/doc/python-tweepy-doc/html/_static/jquery.js
+usr/share/javascript/underscore/underscore.js usr/share/doc/python-tweepy-doc/html/_static/underscore.js
usr/share/doc/python-tweepy-doc/html/_sources usr/share/doc/python-tweepy-doc/rst
Modified: packages/tweepy/trunk/debian/rules
===================================================================
--- packages/tweepy/trunk/debian/rules 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/rules 2012-07-27 02:06:05 UTC (rev 22464)
@@ -4,7 +4,7 @@
override_dh_auto_build:
dh_auto_build
- cd doc && sphinx-build -b html . ../build/html
+ cd docs && sphinx-build -b html . ../build/html
rst2man debian/tweepyshell.rst tweepyshell.1
override_dh_auto_install:
@@ -13,7 +13,7 @@
find debian/tmp -name oauth.py -delete
override_dh_installdocs:
- dh_installdocs -Xjquery -X.doctrees -X.buildinfo
+ dh_installdocs -Xjquery -X.doctrees -X.buildinfo -Xunderscore
override_dh_compress:
dh_compress -X.py
Modified: packages/tweepy/trunk/debian/watch
===================================================================
--- packages/tweepy/trunk/debian/watch 2012-07-27 01:53:02 UTC (rev 22463)
+++ packages/tweepy/trunk/debian/watch 2012-07-27 02:06:05 UTC (rev 22464)
@@ -1,4 +1,4 @@
version=3
-https://github.com/joshthecoder/tweepy/downloads \
- /joshthecoder/tweepy/tarball/([0-9\.]+) \
+https://github.com/tweepy/tweepy/tags \
+ /tweepy/tweepy/zipball/(.+) \
debian debian/orig-tar.sh
More information about the Python-modules-commits
mailing list