From d75505584ac96b6894e69d9c859153971de224cb Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sat, 28 Jul 2007 04:21:52 +0100 Subject: [PATCH] Add an attempt at debian packaging --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/copyright | 34 ++++++++++++++++++++++++++++++++++ debian/dirs | 2 ++ debian/docs | 1 + debian/rules | 6 ++++++ 7 files changed, 64 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..b05cddaa --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +terminator (0.1-1) unstable; urgency=low + + * Initial release + + -- Chris Jones Sat, 28 Jul 2007 04:12:30 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7ed6ff82 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..19308d10 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: terminator +Section: optional +Priority: extra +Maintainer: Chris Jones +Build-Depends: cdbs, debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: terminator +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, python-vte +Description: Terminator, multiple GNOME terminals in one window + Terminator, multiple terminals in one window. This is a little + project to produce an efficient way of filling a large area of + screen space with terminals. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..b2b66ac1 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Chris Jones on +Sat, 28 Jul 2007 04:12:30 +0100. + +It was downloaded from https://launchpad.net/terminator/trunk/0.1/+download/terminator-0.1.tar.bzr2 + +Upstream Author(s): + + Chris Jones + +Copyright: + + + +License: + + 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 version 2. + + 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, Chris Jones and +is licensed under the GPL, see above. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 00000000..ca882bbb --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..e845566c --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..b92114f2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +# Add here any variable or target overrides you need.