[Python-modules-commits] r24887 - in packages/python-twitter/trunk/debian (6 files)
vbkaisetsu-guest at users.alioth.debian.org
vbkaisetsu-guest at users.alioth.debian.org
Fri Jun 21 02:59:33 UTC 2013
Date: Friday, June 21, 2013 @ 02:59:32
Author: vbkaisetsu-guest
Revision: 24887
update python-twitter to version 1.0-1
Modified:
packages/python-twitter/trunk/debian/changelog
packages/python-twitter/trunk/debian/control
packages/python-twitter/trunk/debian/patches/10_fix_shebang.patch
packages/python-twitter/trunk/debian/patches/20_remove_simplejson.patch
packages/python-twitter/trunk/debian/tweet.1
packages/python-twitter/trunk/debian/twitter-to-xhtml.1
Modified: packages/python-twitter/trunk/debian/changelog
===================================================================
--- packages/python-twitter/trunk/debian/changelog 2013-06-21 02:36:19 UTC (rev 24886)
+++ packages/python-twitter/trunk/debian/changelog 2013-06-21 02:59:32 UTC (rev 24887)
@@ -1,11 +1,22 @@
-python-twitter (0.8.2-3) UNRELEASED; urgency=low
+python-twitter (1.0-1) unstable; urgency=low
- * Use canonical URIs for Vcs-* fields.
- * Remove DM-Upload-Allowed; it's no longer used by the archive
- software.
+ * New upstream release (Closes: #712416)
+ - support Twitter API 1.1 (old API is not supported)
+ - remove GetPublicTimeline that is not supported
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 18:40:57 +0200
+ -- Koichi Akabe <vbkaisetsu at gmail.com> Thu, 20 Jun 2013 18:41:26 +0900
+python-twitter (0.8.5-1) unstable; urgency=low
+
+ * New upstream release
+ * debian/control
+ - change Homepage
+ - remove old style DMUA flag
+ * debian/tweet.1, debian/twitter-to-xhtml.1
+ - update documentations
+
+ -- Koichi Akabe <vbkaisetsu at gmail.com> Sat, 16 Feb 2013 15:34:03 +0900
+
python-twitter (0.8.2-2) unstable; urgency=low
* debian/patches/20_remove_simplejson.patch
Modified: packages/python-twitter/trunk/debian/control
===================================================================
--- packages/python-twitter/trunk/debian/control 2013-06-21 02:36:19 UTC (rev 24886)
+++ packages/python-twitter/trunk/debian/control 2013-06-21 02:59:32 UTC (rev 24887)
@@ -1,13 +1,13 @@
Source: python-twitter
Section: python
-Priority: extra
+Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Koichi Akabe <vbkaisetsu at gmail.com>
Build-Depends: debhelper (>= 9.0.0), python (>= 2.6.6-3), python-setuptools, python-oauth2
Standards-Version: 3.9.4
-Homepage: http://code.google.com/p/python-twitter/
+Homepage: https://github.com/bear/python-twitter
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-twitter/trunk/
-Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-twitter/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-twitter/trunk/
X-Python-Version: >= 2.6
Package: python-twitter
Modified: packages/python-twitter/trunk/debian/patches/10_fix_shebang.patch
===================================================================
--- packages/python-twitter/trunk/debian/patches/10_fix_shebang.patch 2013-06-21 02:36:19 UTC (rev 24886)
+++ packages/python-twitter/trunk/debian/patches/10_fix_shebang.patch 2013-06-21 02:59:32 UTC (rev 24887)
@@ -2,33 +2,33 @@
Scripts specify python2.4 as a shebang. This patch remove version
numbers from executable scripts and remove shebangs from non-executable
scripts.
-Last-Update: 2012-08-31
+Last-Update: 2013-06-20
---- python-twitter-0.8.2.orig/twitter.py
-+++ python-twitter-0.8.2/twitter.py
+--- python-twitter-1.0.orig/twitter.py
++++ python-twitter-1.0/twitter.py
@@ -1,4 +1,3 @@
--#!/usr/bin/python2.4
+-#!/usr/bin/env python
#
- # Copyright 2007 The Python-Twitter Developers
+ # vim: sw=2 ts=2 sts=2
#
---- python-twitter-0.8.2.orig/setup.py
-+++ python-twitter-0.8.2/setup.py
+--- python-twitter-1.0.orig/setup.py
++++ python-twitter-1.0/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.4
+#!/usr/bin/python
#
- # Copyright 2007 The Python-Twitter Developers
+ # Copyright 2007-2013 The Python-Twitter Developers
#
---- python-twitter-0.8.2.orig/examples/tweet.py
-+++ python-twitter-0.8.2/examples/tweet.py
+--- python-twitter-1.0.orig/examples/tweet.py
++++ python-twitter-1.0/examples/tweet.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.4
+#!/usr/bin/python
'''Post a message to twitter'''
---- python-twitter-0.8.2.orig/examples/twitter-to-xhtml.py
-+++ python-twitter-0.8.2/examples/twitter-to-xhtml.py
+--- python-twitter-1.0.orig/examples/twitter-to-xhtml.py
++++ python-twitter-1.0/examples/twitter-to-xhtml.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.4
+#!/usr/bin/python
Modified: packages/python-twitter/trunk/debian/patches/20_remove_simplejson.patch
===================================================================
--- packages/python-twitter/trunk/debian/patches/20_remove_simplejson.patch 2013-06-21 02:36:19 UTC (rev 24886)
+++ packages/python-twitter/trunk/debian/patches/20_remove_simplejson.patch 2013-06-21 02:59:32 UTC (rev 24887)
@@ -1,10 +1,10 @@
Description: remove simplejson from dependencies
setup.py specifies simplejson for dependencies, but it's merged to Python 2.6 and
later versions. This patch remove that dependency.
-Last-Update: 2012-09-25
+Last-Update: 2013-06-20
---- python-twitter-0.8.2.orig/setup.py
-+++ python-twitter-0.8.2/setup.py
+--- python-twitter-1.0.orig/setup.py
++++ python-twitter-1.0/setup.py
@@ -35,7 +35,7 @@ METADATA = dict(
# Extra package metadata to be used only if setuptools is installed
@@ -13,4 +13,4 @@
+ install_requires = ['setuptools', 'oauth2'],
include_package_data = True,
classifiers = [
- 'Development Status :: 4 - Beta',
+ 'Development Status :: 5 - Production/Stable',
Modified: packages/python-twitter/trunk/debian/tweet.1
===================================================================
--- packages/python-twitter/trunk/debian/tweet.1 2013-06-21 02:36:19 UTC (rev 24886)
+++ packages/python-twitter/trunk/debian/tweet.1 2013-06-21 02:59:32 UTC (rev 24887)
@@ -1,4 +1,4 @@
-.TH TWEET "1" "February 2008" "tweet" "User Commands"
+.TH TWEET "1" "February 2013" "tweet" "User Commands"
.SH NAME
\fBtweet\fR \- Text-based client for Twitter.
.SH SYNOPSIS
@@ -13,31 +13,34 @@
.HP
Options:
\fB\-h\fR \fB\-\-help\fR : print this help
- \fB\-\-username\fR : the twitter username [optional]
- \fB\-\-password\fR : the twitter password [optional]
+ \fB\-\-consumer\-key\fR : the twitter consumer key
+ \fB\-\-consumer\-secret\fR : the twitter consumer secret
+ \fB\-\-access\-key\fR : the twitter access token key
+ \fB\-\-access\-secret\fR : the twitter access token secret
+ \fB\-\-encoding\fR : the character set encoding used in input strings, e.g. "utf\-8". [optional]
+
.IP
.HP
Documentation:
-If the \fB\-\-username\fR or \fB\-\-password\fR command line arguments are present they
-will be used to authenticate to Twitter.
-.IP
If either of the command line flags are not present, the environment
variables TWEETUSERNAME and TWEETPASSWORD will then be checked for your
-username or password, respectively.
+consumer_key or consumer_secret, respectively.
.IP
If neither the command line flags nor the environment variables are
present, the .tweetrc file, if it exists, can be used to set the
-default username and password. The file should contain the
-following three lines, replacing *username* with your username, and
-*possword* with your password:
+default consumer_key and consumer_secret. The file should contain the
+following three lines, replacing *consumer_key* with your consumer key, and
+*consumer_secret* with your consumer secret:
.IP
A skeletal .tweetrc file:
.IP
[Tweet]
- username: *username*
- password: *password*
+ consumer_key: *consumer_key*
+ consumer_secret: *consumer_password*
+ access_key: *access_key*
+ access_secret: *access_password*
.IP
.SH "SEE ALSO"
- <http://code.google.com/p/python-twitter/>
+ <https://github.com/bear/python-twitter>
<http://www.twitter.com>
Modified: packages/python-twitter/trunk/debian/twitter-to-xhtml.1
===================================================================
--- packages/python-twitter/trunk/debian/twitter-to-xhtml.1 2013-06-21 02:36:19 UTC (rev 24886)
+++ packages/python-twitter/trunk/debian/twitter-to-xhtml.1 2013-06-21 02:59:32 UTC (rev 24887)
@@ -1,4 +1,4 @@
-.TH TWITTER-TO-XHTML "1" "February 2008" "twitter-to-xhtml" "User Commands"
+.TH TWITTER-TO-XHTML "1" "February 2013" "twitter-to-xhtml" "User Commands"
.SH NAME
\fBtwitter-to-xhtml\fR \- Fetches a users latest updates and stores in an XHTML file
.SH SYNOPSIS
@@ -17,5 +17,5 @@
\fB\-\-output\fR : the output file [default: stdout]
.IP
.SH "SEE ALSO"
- <http://code.google.com/p/python-twitter/>
+ <https://github.com/bear/python-twitter>
<http://www.twitter.com>
More information about the Python-modules-commits
mailing list