debian/0000755000000000000000000000000012231332776007174 5ustar debian/rules0000755000000000000000000000023011352005541010235 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_install: dh_auto_install -- --install-scripts=/usr/share/episoder \ --install-lib=/usr/share/episoder debian/compat0000644000000000000000000000000211212076005010356 0ustar 7 debian/copyright0000644000000000000000000000213512226637401011125 0ustar This package was debianized by Stefan Ott It was downloaded from http://code.ott.net/projects/episoder/ Upstream Author: Stefan Ott Copyright: Copyright © 2004-2013 Stefan Ott License: 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 program 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 . For the full license, see /usr/share/common-licenses/GPL-2. The Debian packaging is: Copyright (C) 2009-2013 Stefan Ott and is licensed under the GPL version 2, see '/usr/share/common-licenses/GPL-2.' debian/examples0000644000000000000000000000001612226655576010744 0ustar home.episoder debian/control0000644000000000000000000000202612231332674010574 0ustar Source: episoder Maintainer: Stefan Ott Uploaders: Python Applications Packaging Team Section: python Priority: optional Build-Depends: debhelper (>= 7.0.50) Build-Depends-Indep: python, python-support, python-yaml, python-sqlalchemy, python-argparse, python-tvdb-api Standards-Version: 3.9.4 Homepage: http://code.ott.net/projects/episoder/ Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/episoder/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/episoder/trunk/ Package: episoder Architecture: all Depends: ${python:Depends}, python-yaml, python-sqlalchemy, ${misc:Depends}, python-argparse, python-tvdb-api Suggests: cron Description: TV show episode reminder episoder is a tool to tell you about new episodes of your favourite TV shows. It does so by parsing online TV show episode guides. . Currently episoder can use data from epguides.com and thetvdb.com. It tells you whenever a new episode of a show listed on one of those sites is aired. debian/links0000644000000000000000000000005511212342105010220 0ustar usr/share/episoder/episoder usr/bin/episoder debian/watch0000644000000000000000000000022612226642672010230 0ustar # watch control file for uscan # Compulsory line, this is a version 3 file version=3 http://code.ott.net/projects/episoder .*episoder-(.*)\.tar\.gz debian/patches/0000755000000000000000000000000012231332776010623 5ustar debian/patches/series0000644000000000000000000000011712226643120012027 0ustar 01_do-not-install-doc-files.patch 02_awk-file-path.patch 03_manpage-path.patch debian/patches/02_awk-file-path.patch0000644000000000000000000000052212226656644014604 0ustar Install the epguides AWK helper to the proper path --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # awk parser awkfile = path.join('extras', 'episoder_helper_epguides.awk') -files.append(('extras', [awkfile])) +files.append((path.join('share', 'episoder', 'extras'), [awkfile])) setup( name = 'episoder', version = '0.7.0', debian/patches/03_manpage-path.patch0000644000000000000000000000051012226654643014510 0ustar Install the man page to the proper path --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # man page manpage = 'episoder.1' -files.append((path.join('man', 'man1'), ['episoder.1'])) +files.append((path.join('share', 'man', 'man1'), ['episoder.1'])) # awk parser awkfile = path.join('extras', 'episoder_helper_epguides.awk') debian/patches/01_do-not-install-doc-files.patch0000644000000000000000000000075212226656556016670 0ustar Don't install upstream documentation into /usr --- a/setup.py +++ b/setup.py @@ -13,12 +13,6 @@ awkfile = path.join('extras', 'episoder_helper_epguides.awk') files.append(('extras', [awkfile])) -# documentation -for file in [ 'AUTHORS', 'CHANGELOG', 'COPYING', 'README' ]: - files.append((path.join('doc', 'episoder'), [file])) - -files.append((path.join('doc', 'episoder', 'examples'), [ 'home.episoder' ])) - setup( name = 'episoder', version = '0.7.0', license = 'GPLv3', debian/source/0000755000000000000000000000000012231332776010474 5ustar debian/source/format0000644000000000000000000000001411352006024011665 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000243612231332716011045 0ustar episoder (0.7.0-1) unstable; urgency=low [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. [ Stefan Ott ] * New upstream release * Bumped Standards-Version to 3.9.4, no changes needed * debian/control: - Updated upstream homepage - Updated package description - Added dependencies for python-argparse and python-tvdb-api - Dropped dependency for python-beautifulsoup * debian/copyright: - Updated upstream homepage - Updated copyright line - Changed upstream license to GPLv3 * debian/watch: use new upstream homepage * debian/docs: - Don't try to install README.tvcom which was dropped from upstream - Moved examples to debian/examples * debian/patches: - Refreshed 01_do-not-install-doc-files.patch - Added 02_awk-file-path.patch - Added 03_manpage-path.patch -- Stefan Ott Mon, 14 Oct 2013 02:34:47 +0200 episoder (0.6.5-1) unstable; urgency=low * New upstream release * Bumped Standards-Version to 3.9.1, no changes needed * debian/watch: Removed workaround for google code -- Stefan Ott Wed, 06 Oct 2010 03:09:01 +0200 episoder (0.6.4-1) unstable; urgency=low * Initial official debian package closes: #322969 -- Stefan Ott Fri, 25 Jun 2010 04:24:36 +0200 debian/docs0000644000000000000000000000001712226655552010051 0ustar README AUTHORS