debian/0000755000000000000000000000000012262410146007164 5ustar debian/changelog0000644000000000000000000000470712262356635011062 0ustar turses (0.2.20-1) unstable; urgency=low * New upstream release * debian/control + Bump Standards-Version to 3.9.5 (no changes) -- Daniel Echeverry Wed, 04 Dec 2013 20:55:46 -0500 turses (0.2.18-1) unstable; urgency=low * New upstream release -- Daniel Echeverry Fri, 23 Aug 2013 21:29:03 -0500 turses (0.2.16-1) unstable; urgency=low * New upstream release * debian/control + Update python-tweepy (>= 2.1) in B-D due to upstream change * debian/copyright + Extend copyright holders years * debian/patches + Patch setup.py to accept future versions of python-tweepy instead of requiring exactly version 2.1, which would cause a build failure if ever python-tweepy got updated; 02_change_strict_version_python-tweepy.diff -- Daniel Echeverry Fri, 09 Aug 2013 18:34:38 -0500 turses (0.2.15-2) unstable; urgency=medium * Added missing dependency on python-pkg-resources (Closes: #718508) + Set urgency to medium since this is a RC bug found in testing * Added myself to Uploaders -- Ryan Kavanagh Thu, 01 Aug 2013 16:59:26 -0400 turses (0.2.15-1) unstable; urgency=low * Team upload. * New upstream release -- Ryan Kavanagh Wed, 10 Jul 2013 08:16:34 -0400 turses (0.2.14-1) unstable; urgency=low * Team upload. [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. [ Ryan Kavanagh ] * New upstream release * Update people's copyright years * Fix broken Vcs-Browser entry to point to turses packaging instead of archmage packaging. * Drop dont_install_tests.diff, applied upstream * turses requires tweepy (>= 2.0), bump the build-dependency version * Set the home directory to ./debian-tmp-sphinx during documentation build: Sphinx creates an instance of the tweepy.config.Configuration class, which creates the ${HOME}/.turses directory if it doesn't exist. This causes a FTBFS if ${HOME} is non-existent and can't be created. -- Ryan Kavanagh Tue, 09 Jul 2013 17:00:53 -0400 turses (0.2.11-2) unstable; urgency=low * debian/patches + Add dont_install_test_files.diff to avoid the installation of breakable test files -- Daniel Echeverry Tue, 09 Apr 2013 21:09:36 -0500 turses (0.2.11-1) unstable; urgency=low * Initial release (Closes: #672649) -- Daniel Echeverry Sat, 26 Jan 2013 16:38:55 -0500 debian/turses-doc.docs0000644000000000000000000000002212075560072012126 0ustar build/sphinx/html debian/compat0000644000000000000000000000000212075560072010370 0ustar 9 debian/turses-doc.doc-base0000644000000000000000000000100212075560072012652 0ustar Document: turses Title: Twitter client for the console Author: Alejandro Gómez Abstract: This part of the documentation will help you using turses. turses is a Twitter client with a sexy curses interface written in Python. It's based on Tyrs by Nicolas Paris. The goal of the project is to build a full-featured, lightweight, and extremely configurable Twitter client. Section: Network/Communication Format: HTML Index: /usr/share/doc/turses-doc/html/index.html Files: /usr/share/doc/turses-doc/html/*.html debian/rules0000755000000000000000000000145312167122510010246 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 %: dh $@ --buildsystem=python_distutils --with=python2,sphinxdoc override_dh_auto_clean: rm -rf $(CURDIR)/build rm -rf $(CURDIR)/turses.1 rm -rf $(CURDIR)/turses.egg-info override_dh_clean: dh_clean rm -fr debian-sphinx-tmp find . -name '*.pyc' -delete override_dh_auto_build: dh_auto_build # The $$HOME directory isn't guaranteed to exist at build time. # This causes a FTBFS since sphinx creates an instance of the # Configuration class, which tries to create $${HOME}/.turses # if it doesn't exist. [ -d debian-sphinx-tmp ] || mkdir debian-sphinx-tmp HOME=debian-sphinx-tmp python setup.py build_sphinx override_dh_installman: rst2man docs/user/manpage.rst turses.1 dh_installman override_dh_installchangelogs: dh_installchangelogs HISTORY.rst debian/turses.manpages0000644000000000000000000000001112075560072012224 0ustar turses.1 debian/turses-doc.links0000644000000000000000000000007712101375674012332 0ustar /usr/share/doc/turses-doc/html /usr/share/doc/turses/html debian/copyright0000644000000000000000000000403112201307511011107 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: turses Source: https://github.com/alejandrogomez/turses Files: * Copyright: 2012 Alejandro Gomez 2012 Nicolas Paris 2012 Sascha Kruse 2012 Poapfel 2012 Giannis Damigos 2012 Joe di Castro 2012 Paul Ivanov 2012 replicant 2012-2013 turses contributors License: GPL-3.0+ Files: turses/api/base.py Copyright: 2007 Python-Twitter Developers License: Apache-2.0 Files: debian/* Copyright: 2012-2013 Daniel Echeverry 2013 Ryan Kavanagh License: GPL-3.0+ License: GPL-3.0+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. debian/patches/0000755000000000000000000000000012262407575010627 5ustar debian/patches/02_change_strict_version_python-tweepy.diff0000644000000000000000000000056412201574100021243 0ustar Description: Change the strict version depency on python-tweepy Forwarded: No Author: Daniel Echeverry Last-Update: 2013-08-10 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ NAME = "turses" REQUIREMENTS = [ "oauth2", "urwid", - "tweepy==2.1", + "tweepy>=2.1", ] if version_info[:2] == (2, 6): REQUIREMENTS.append("argparse") debian/patches/series0000644000000000000000000000011712201573730012031 0ustar 02_change_strict_version_python-tweepy.diff 01_build_doc_without_internet.diff debian/patches/01_build_doc_without_internet.diff0000644000000000000000000000065112075560072017374 0ustar Description: Build doc whithout Internet. Forwarded: No Author: Daniel Echeverry Last-Update: 2013-01-16 --- a/docs/conf.py +++ b/docs/conf.py @@ -239,7 +239,3 @@ # How to display URL addresses: 'footnote', 'no', or 'inline'. #texinfo_show_urls = 'footnote' - - -# Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} debian/control0000644000000000000000000000356112262407571010604 0ustar Source: turses Section: net Priority: optional Maintainer: Python Applications Packaging Team Uploaders: Daniel Echeverry , Ryan Kavanagh Build-Depends: debhelper (>= 9), python-all (>= 2.6.6-3~), python-docutils, python-mock, python-nose, python-oauth2, python-setuptools, python-sphinx (>= 1.0.7+dfsg), python-tweepy (>= 2.1), python-urwid X-Python-Version: >= 2.6 Standards-Version: 3.9.5 Homepage: https://github.com/alejandrogomez/turses Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/turses/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/turses/trunk/ Package: turses Architecture: all Depends: python-oauth2, python-pkg-resources, python-tweepy, python-urwid, ${misc:Depends}, ${python:Depends} Recommends: turses-doc Description: Twitter client for the console turses is a Twitter client with a sexy curses interface written in Python. It's based on Tyrs by Nicolas Paris. The goal of the project is to build a full-featured, lightweight, and extremely configurable Twitter client. . Some features: - Multiple timelines (buffers) - Multi-column - Tweet, Reply, Retweet - Delete tweet, Follow/Unfollow - Favorite/Unfavorite - Direct Messages - Open URLs in browser - Multiple accounts - Fully customizable - View any user's tweets Package: turses-doc Architecture: all Section: doc Depends: ${sphinxdoc:Depends}, ${misc:Depends} Suggests: turses Description: Documentation for Turses Twitter client for console turses is a Twitter client with a sexy curses interface written in Python. It's based on Tyrs by Nicolas Paris. The goal of the project is to build a full-featured, lightweight, and extremely configurable Twitter client. . This package contains the turses documentation in various formats: HTML, Info and plain text. debian/turses.docs0000644000000000000000000000001312075560072011363 0ustar README.rst debian/source/0000755000000000000000000000000012262407575010500 5ustar debian/source/format0000644000000000000000000000001412075560072011700 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000015112075560072010220 0ustar version=3 https://github.com/alejandrogomez/turses/tags .*/v?(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz)) debian/turses.install0000644000000000000000000000004012075560072012101 0ustar usr/lib/python2* usr/bin/turses