[Python-modules-commits] r16254 - in packages/tweepy/trunk/debian (9 files)

nomadium-guest at users.alioth.debian.org nomadium-guest at users.alioth.debian.org
Mon Mar 28 15:22:04 UTC 2011


    Date: Monday, March 28, 2011 @ 15:22:01
  Author: nomadium-guest
Revision: 16254

* Merge Build-Depends-Indep field with Build-Depends.
* Remove Recommends on ipython and add Depends on python-simplejson until
  python2.5 is supported.
* Fix Description.
* Remove unneeded file from -doc package.
* Add rst convenience symlink in -doc package.
* Implement get-orig-source target.
* Remove tweepyshell because it doesn't support OAuth features yet.

Added:
  packages/tweepy/trunk/debian/orig-tar.sh
Modified:
  packages/tweepy/trunk/debian/README.Debian
  packages/tweepy/trunk/debian/changelog
  packages/tweepy/trunk/debian/control
  packages/tweepy/trunk/debian/patches/01_use_python_oauth.diff
  packages/tweepy/trunk/debian/python-tweepy-doc.links
  packages/tweepy/trunk/debian/python-tweepy.install
  packages/tweepy/trunk/debian/rules
  packages/tweepy/trunk/debian/watch

Modified: packages/tweepy/trunk/debian/README.Debian
===================================================================
--- packages/tweepy/trunk/debian/README.Debian	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/README.Debian	2011-03-28 15:22:01 UTC (rev 16254)
@@ -1,10 +1,6 @@
 Tweepy for Debian
 ------------------
 
-* A bundled copy of python-oauth module from Leah Culver was removed.
-  Users relying on this copy when using Tweepy must install python-oauth
-  instead.
-
 * tweepyshell script is not included because it doesn't support OAuth
   and Twitter removed support for Basic Authentication since August 31, 
   2010.

Modified: packages/tweepy/trunk/debian/changelog
===================================================================
--- packages/tweepy/trunk/debian/changelog	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/changelog	2011-03-28 15:22:01 UTC (rev 16254)
@@ -2,4 +2,4 @@
 
   * Initial release. (Closes: #581602).
 
- -- Miguel Landaeta <miguel at miguel.cc>  Wed, 23 Mar 2011 23:39:47 -0430
+ -- Miguel Landaeta <miguel at miguel.cc>  Sun, 27 Mar 2011 16:48:37 -0430

Modified: packages/tweepy/trunk/debian/control
===================================================================
--- packages/tweepy/trunk/debian/control	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/control	2011-03-28 15:22:01 UTC (rev 16254)
@@ -3,8 +3,8 @@
 Uploaders: Miguel Landaeta <miguel at miguel.cc>
 Section: python
 Priority: optional
-Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~)
-Build-Depends-Indep: python-setuptools, python-sphinx, python-docutils
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~),
+ python-setuptools, python-sphinx, python-docutils
 Standards-Version: 3.9.1
 X-Python-Version: >= 2.4
 Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/tweepy/trunk
@@ -13,10 +13,9 @@
 
 Package: python-tweepy
 Architecture: all
-Depends: ${python:Depends}, python-oauth, ${misc:Depends}
-Recommends: ipython
+Depends: ${python:Depends}, python-oauth, python-simplejson, ${misc:Depends}
 Suggests: python-tweepy-doc
-Description: A Twitter library for Python
+Description: Twitter library for Python
  Tweepy is a Twitter and Identi.ca library for Python
  that can be used in desktop and web applications. It has the
  following features:

Added: packages/tweepy/trunk/debian/orig-tar.sh
===================================================================
--- packages/tweepy/trunk/debian/orig-tar.sh	                        (rev 0)
+++ packages/tweepy/trunk/debian/orig-tar.sh	2011-03-28 15:22:01 UTC (rev 16254)
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+TAR=tweepy_$2.orig.tar.gz
+
+# Just rename upstream source tarball
+mv $2 $TAR


Property changes on: packages/tweepy/trunk/debian/orig-tar.sh
___________________________________________________________________
Added: svn:executable
   + *

Modified: packages/tweepy/trunk/debian/patches/01_use_python_oauth.diff
===================================================================
--- packages/tweepy/trunk/debian/patches/01_use_python_oauth.diff	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/patches/01_use_python_oauth.diff	2011-03-28 15:22:01 UTC (rev 16254)
@@ -1,7 +1,6 @@
 Description: Use python-oauth installed on system
 Author: Miguel Landaeta <miguel at miguel.cc>
-Bug-Debian: http://bugs.debian.org/581602
-Forwarded: no
+Forwarded: not-needed
 Last-Update: 2011-03-23
 
 --- tweepy-1.7.1.orig/tweepy/auth.py

Modified: packages/tweepy/trunk/debian/python-tweepy-doc.links
===================================================================
--- packages/tweepy/trunk/debian/python-tweepy-doc.links	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/python-tweepy-doc.links	2011-03-28 15:22:01 UTC (rev 16254)
@@ -1 +1,2 @@
-usr/share/javascript/jquery/jquery.js  usr/share/doc/python-tweepy-doc/html/_static/jquery.js
+usr/share/javascript/jquery/jquery.js          usr/share/doc/python-tweepy-doc/html/_static/jquery.js
+usr/share/doc/python-tweepy-doc/html/_sources  usr/share/doc/python-tweepy-doc/rst

Modified: packages/tweepy/trunk/debian/python-tweepy.install
===================================================================
--- packages/tweepy/trunk/debian/python-tweepy.install	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/python-tweepy.install	2011-03-28 15:22:01 UTC (rev 16254)
@@ -1,4 +1,4 @@
 usr/lib/python2.*/*-packages/*
 
-#tweepyshell is disabled because it doesn't support oauth
+#tweepyshell is disabled because it doesn't support oauth yet
 #tweepyshell  usr/bin

Modified: packages/tweepy/trunk/debian/rules
===================================================================
--- packages/tweepy/trunk/debian/rules	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/rules	2011-03-28 15:22:01 UTC (rev 16254)
@@ -13,7 +13,7 @@
 	find debian/tmp -name oauth.py -delete
 
 override_dh_installdocs:
-	dh_installdocs -Xjquery
+	dh_installdocs -Xjquery -X.doctrees -X.buildinfo
 
 override_dh_compress:
 	dh_compress -X.py
@@ -21,3 +21,7 @@
 override_dh_auto_clean:
 	dh_auto_clean
 	rm -rf tweepy.egg-info build/html
+
+get-orig-source:
+	cd $(dir $(firstword $(MAKEFILE_LIST)))../ && \
+	uscan --no-conf --rename --force-download --destdir $(CURDIR)

Modified: packages/tweepy/trunk/debian/watch
===================================================================
--- packages/tweepy/trunk/debian/watch	2011-03-28 10:08:33 UTC (rev 16253)
+++ packages/tweepy/trunk/debian/watch	2011-03-28 15:22:01 UTC (rev 16254)
@@ -1,4 +1,4 @@
 version=3
 https://github.com/joshthecoder/tweepy/downloads \
  /joshthecoder/tweepy/tarball/([0-9\.]+) \
- debian
+ debian debian/orig-tar.sh




More information about the Python-modules-commits mailing list