From: martin f. krafft Date: Tue, 12 Aug 2008 17:33:05 +0000 (-0300) Subject: Initial debianisation of 0.2 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?p=topgit.git;a=commitdiff_plain;h=d46cf2755b2362f54c30e58961f01b8b02788efc Initial debianisation of 0.2 Signed-off-by: martin f. krafft --- diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..94c5c39 --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,3 @@ +/files +/*.log +/topgit diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..7b5f7aa --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +topgit (0.2-1) unstable; urgency=low + + * Initial release (closes: #494710). + + -- martin f. krafft Mon, 11 Aug 2008 17:32:48 -0300 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ab2dd5e --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: topgit +Section: devel +Priority: optional +Maintainer: martin f. krafft +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 index 0000000..0afa1d4 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by martin f. krafft on +Mon, 11 Aug 2008 17:32:48 -0300. + +It was downloaded from + +Upstream Author: + + Petr Baudis + +Copyright: + + Copyright © 2008 Petr Baudis + +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 and +is licensed under the GPL, see above. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..0f9bb2e --- /dev/null +++ b/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/topgit +usr/share/topgit diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b1edf6f --- /dev/null +++ b/debian/rules @@ -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