diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 16 | ||||
-rw-r--r-- | debian/copyright | 41 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rw-r--r-- | debian/patches/0001-manpage-Escape-minus-signs.patch | 37 | ||||
-rw-r--r-- | debian/patches/series | 1 | ||||
-rwxr-xr-x | debian/rules | 13 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/transmission-remote-cli.manpages | 1 | ||||
-rw-r--r-- | debian/watch | 2 |
11 files changed, 120 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..952e0d9 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +transmission-remote-cli (1.1.1-1) unstable; urgency=low + + * Initial release (Closes: #663017) + + -- Jonathan McCrohan <jmccrohan@gmail.com> Thu, 19 Apr 2012 23:35:13 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..08d5af7 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: transmission-remote-cli +Section: net +Priority: optional +Maintainer: Jonathan McCrohan <jmccrohan@gmail.com> +Build-Depends: debhelper (>= 8) +Standards-Version: 3.9.3 +Homepage: https://github.com/fagga/transmission-remote-cli + +Package: transmission-remote-cli +Architecture: all +Depends: python, transmission-cli, ${misc:Depends} +Description: ncurses interface for the Transmission BitTorrent daemon + transmission-remote-cli is an ncurses interface for controlling the + Transmission BitTorrent daemon. It is a full featured client, providing the + ability to upload, queue and delete torrent files, monitor downloads and adjust + speed limits. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5198dbc --- /dev/null +++ b/debian/copyright @@ -0,0 +1,41 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: transmission-remote-cli +Source: https://github.com/fagga/transmission-remote-cli/ + +Files: * +Copyright: 2008-2012 Ben Thompson <fagga@gmx.de> +License: GPL-3 + 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 <http://www.gnu.org/licenses/> + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + +Files: debian/* +Copyright: 2012 Jonathan McCrohan <jmccrohan@gmail.com> +License: GPL-2+ + This package 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 2 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 <http://www.gnu.org/licenses/> + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..8913f46 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +NEWS +README.md diff --git a/debian/patches/0001-manpage-Escape-minus-signs.patch b/debian/patches/0001-manpage-Escape-minus-signs.patch new file mode 100644 index 0000000..ea16489 --- /dev/null +++ b/debian/patches/0001-manpage-Escape-minus-signs.patch @@ -0,0 +1,37 @@ +From: Jonathan McCrohan <jmccrohan@gmail.com> +Date: Sat, 21 Apr 2012 20:40:12 +0100 +Description: manpage: Escape minus signs. + Found by Debian linitan checker: hyphen-used-as-minus-sign +--- + transmission-remote-cli.1 | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/transmission-remote-cli.1 b/transmission-remote-cli.1 +index 3f57ebc..771ad1f 100644 +--- a/transmission-remote-cli.1 ++++ b/transmission-remote-cli.1 +@@ -56,7 +56,7 @@ No configuration file is created automatically, you have to do this somehow. How + .Ed + If you don't like the default configuration file path ~/.config/transmission-remote-cli/settings.cfg, change it: + .Bd -literal -offset indent +-$ transmission-remote-cli.py -f ~/.trclirc --create-config ++$ transmission-remote-cli.py \-f ~/.trclirc \-\-create-config + + .Ed + Calling transmission-remote +@@ -67,9 +67,9 @@ transmission-remote-cli forwards all arguments after '--' to transmission-remote + .Ed + Some examples: + .Bd -literal -offset indent +-$ transmission-remote-cli.py -- -l +-$ transmission-remote-cli.py -- -t 2 -i +-$ transmission-remote-cli.py -- -as ++$ transmission-remote-cli.py \-\- \-l ++$ transmission-remote-cli.py \-\- \-t 2 \-i ++$ transmission-remote-cli.py \-\- \-as + + .Ed + Add torrents +-- +1.7.9.5 + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..1371d00 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +0001-manpage-Escape-minus-signs.patch diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a9f54ba --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +override_dh_install: + mv transmission-remote-cli.py transmission-remote-cli + dh_install transmission-remote-cli /usr/bin/ + dh_install + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/transmission-remote-cli.manpages b/debian/transmission-remote-cli.manpages new file mode 100644 index 0000000..dc8473f --- /dev/null +++ b/debian/transmission-remote-cli.manpages @@ -0,0 +1 @@ +transmission-remote-cli.1 diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..98a7045 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://github.com/fagga/transmission-remote-cli/tags .*/tarball/v(\d[\d\.]+) |