chiark / gitweb /
Initial debianisation of 0.2
authormartin f. krafft <madduck@debian.org>
Tue, 12 Aug 2008 17:33:05 +0000 (14:33 -0300)
committermartin f. krafft <madduck@debian.org>
Tue, 12 Aug 2008 17:33:05 +0000 (14:33 -0300)
Signed-off-by: martin f. krafft <madduck@debian.org>
debian/.gitignore [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/dirs [new file with mode: 0644]
debian/docs [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644 (file)
index 0000000..94c5c39
--- /dev/null
@@ -0,0 +1,3 @@
+/files
+/*.log
+/topgit
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..7b5f7aa
--- /dev/null
@@ -0,0 +1,6 @@
+topgit (0.2-1) unstable; urgency=low
+
+  * Initial release (closes: #494710).
+
+ -- martin f. krafft <madduck@debian.org>  Mon, 11 Aug 2008 17:32:48 -0300
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..ab2dd5e
--- /dev/null
@@ -0,0 +1,22 @@
+Source: topgit
+Section: devel
+Priority: optional
+Maintainer: martin f. krafft <madduck@debian.org>
+Build-Depends: debhelper (>= 7), quilt
+Standards-Version: 3.8.0
+Homepage: http://repo.or.cz/w/topgit.git
+Vcs-Git: git://git.debian.org/git/collab-maint/topgit.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/topgit.git
+
+Package: topgit
+Architecture: all
+Depends: git-core
+Description: a Git patch queue manager
+ TopGit manages a patch queue using Git topic branches, one patch per
+ branch. It allows for patch dependencies and can thus manage
+ non-linear patch series.
+ .
+ TopGit is a minimal layer on top of Git, which does not limit use of
+ Git's functionality (such as the index). It rigorously keeps history
+ until a patch is accepted upstream. It is also fully usable across
+ distributed repositories.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..0afa1d4
--- /dev/null
@@ -0,0 +1,33 @@
+This package was debianized by martin f. krafft <madduck@debian.org> on
+Mon, 11 Aug 2008 17:32:48 -0300.
+
+It was downloaded from <http://repo.or.cz/w/topgit.git>
+
+Upstream Author:
+
+    Petr Baudis <pasky@suse.cz>
+
+Copyright:
+
+    Copyright © 2008 Petr Baudis <pasky@suse.cz>
+
+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; either version 2 of the License.
+
+    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) 2008, martin f. krafft <madduck@debian.org> and
+is licensed under the GPL, see above.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644 (file)
index 0000000..0f9bb2e
--- /dev/null
@@ -0,0 +1,3 @@
+usr/bin
+usr/share/topgit
+usr/share/topgit
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..e845566
--- /dev/null
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..b1edf6f
--- /dev/null
@@ -0,0 +1,44 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/quilt/quilt.make
+
+build: build-stamp
+build-stamp: patch
+       dh_testdir
+       $(MAKE) PREFIX=/usr
+       touch $@
+
+clean: unpatch
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp
+       $(MAKE) clean
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       dh_installdirs
+       $(MAKE) DESTDIR=$(CURDIR)/debian/topgit PREFIX=/usr install
+       rm -f $(wildcard $(CURDIR)/debian/topgit/usr/share/topgit/*.txt)
+
+
+binary-arch: build install
+binary-indep: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs
+       dh_installdocs
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure