diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2007-11-05 19:11:44 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2007-11-05 19:11:44 -0500 |
commit | 045faa3a5004d5c4192d0b85bae2a7bc2494ca47 (patch) | |
tree | 57b910dac71edd9e52adcc6f9853f5a9eabc2542 /debian | |
parent | 6614bf0d5078b213ff215e5af39da4ef2ccefedd (diff) | |
parent | f102c1b3160e304e086544652e166e884547616b (diff) |
Merge branch 'master' of ssh://git.kitenet.net/srv/git/kitenet.net/etckeeper
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 14 | ||||
-rw-r--r-- | debian/copyright | 5 | ||||
-rwxr-xr-x | debian/rules | 30 |
5 files changed, 55 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..51dc153 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ + (0.1) unstable; urgency=low + + * First release. + + -- Joey Hess <joeyh@debian.org> diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..81b5c35 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: +Section: utils +Priority: optional +Build-Depends: debhelper (>= 5) +Maintainer: Joey Hess <joeyh@debian.org> +Standards-Version: 3.7.2 +Homepage: +Vcs-Git: + +Package: +Architecture: all +Section: +Depends: +Description: diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..24c49f0 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,5 @@ +Files: * +Copyright: (c) 2007 Joey Hess <joeyh@debian.org> +License: GPL-2+ + On Debian systems, the complete text of the GPL can be found in + /usr/share/common-licenses/GPL. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cc95420 --- /dev/null +++ b/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f + +build: + +clean: + dh_testdir + dh_testroot + dh_clean + +binary-arch: build + +binary-indep: build + dh_testdir + dh_testroot + dh_clean -k + dh_install + dh_installdocs + dh_installexamples + dh_installman + dh_installchangelogs + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary |