diff options
-rw-r--r-- | debian/changelog | 30 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 17 | ||||
-rw-r--r-- | debian/copyright | 41 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rw-r--r-- | debian/patches/bash-completion-debian-rename.patch | 20 | ||||
-rw-r--r-- | debian/patches/series | 1 | ||||
-rwxr-xr-x | debian/rules | 16 | ||||
-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, 132 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9d5be66 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,30 @@ +transmission-remote-cli (1.3-1) unstable; urgency=low + + * New upstream release + - Add support for Transmission 2.52 + - Add bash completion file + * Bump debhelper to v9 + + -- Jonathan McCrohan <jmccrohan@gmail.com> Fri, 25 May 2012 01:46:06 +0100 + +transmission-remote-cli (1.2.2-1) unstable; urgency=low + + * New upstream release + + -- Jonathan McCrohan <jmccrohan@gmail.com> Sat, 12 May 2012 12:45:01 +0100 + +transmission-remote-cli (1.2.1-1) unstable; urgency=low + + * New upstream release + * Update upstream details in debian/copyright + * Demote transmission-cli from Depends to Recommends + * Add optional Python modules to Recommends + * Install upstream NEWS file as upstream changelog + + -- Jonathan McCrohan <jmccrohan@gmail.com> Mon, 30 Apr 2012 01:06:36 +0100 + +transmission-remote-cli (1.2-1) unstable; urgency=low + + * Initial release (Closes: #663017) + + -- Jonathan McCrohan <jmccrohan@gmail.com> Wed, 25 Apr 2012 15:25:44 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..f81207f --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: transmission-remote-cli +Section: net +Priority: optional +Maintainer: Jonathan McCrohan <jmccrohan@gmail.com> +Build-Depends: debhelper (>= 9), bash-completion +Standards-Version: 3.9.3 +Homepage: https://github.com/fagga/transmission-remote-cli + +Package: transmission-remote-cli +Architecture: all +Depends: python, ${misc:Depends} +Recommends: transmission-cli, python-geoip, python-adns, python-ipy +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..364fe8a --- /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 Benjamin <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/bash-completion-debian-rename.patch b/debian/patches/bash-completion-debian-rename.patch new file mode 100644 index 0000000..6bdd589 --- /dev/null +++ b/debian/patches/bash-completion-debian-rename.patch @@ -0,0 +1,20 @@ +Description: Rename Bash completion function to conform to Debian name +Author: Jonathan McCrohan <jmccrohan@gmail.com> +Date: Fri May 25 01:33:32 IST 2012 +--- +--- transmission-remote-cli-1.3.orig/transmission-remote-cli-bash-completion.sh ++++ transmission-remote-cli-1.3/transmission-remote-cli-bash-completion.sh +@@ -1,6 +1,6 @@ + #!/bin/bash + +-_transmission-remote-cli.py () { ++_transmission-remote-cli () { + local cur prev opts + + _get_comp_words_by_ref cur prev +@@ -14,4 +14,4 @@ _transmission-remote-cli.py () { + fi + } + +-complete -F _transmission-remote-cli.py transmission-remote-cli.py ++complete -F _transmission-remote-cli transmission-remote-cli diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..f71ba2f --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +bash-completion-debian-rename.patch diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..edae779 --- /dev/null +++ b/debian/rules @@ -0,0 +1,16 @@ +#!/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 + +override_dh_installchangelogs: + dh_installchangelogs -k NEWS + +%: + dh $@ --with bash-completion 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\.]+) |