diff options
author | Tommi Virtanen <tv@eagain.net> | 2007-06-04 14:23:00 +0300 |
---|---|---|
committer | Tommi Virtanen <tv@eagain.net> | 2007-08-28 21:38:49 -0700 |
commit | 3a0530a0886e1c1934c7db4702fb02b6a60e1d6d (patch) | |
tree | 93a5b152bbb52c2f1c63dfef0790672007917cf7 | |
parent | Search PATH for git-shell, don't assume /usr/bin. (diff) | |
download | gitosis-dakkar-3a0530a0886e1c1934c7db4702fb02b6a60e1d6d.tar.gz gitosis-dakkar-3a0530a0886e1c1934c7db4702fb02b6a60e1d6d.tar.bz2 gitosis-dakkar-3a0530a0886e1c1934c7db4702fb02b6a60e1d6d.zip |
Add debianization.
-rw-r--r-- | .gitignore | 10 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control.in | 15 | ||||
-rw-r--r-- | debian/copyright | 24 | ||||
-rw-r--r-- | debian/pycompat | 1 | ||||
-rwxr-xr-x | debian/rules | 7 |
7 files changed, 64 insertions, 0 deletions
@@ -4,3 +4,13 @@ /.pydoctor.pickle /apidocs /gitosis/test/tmp + +# debianization +/debian/control +/debian/files +/debian/*.substvars +/debian/*.debhelper +/debian/gitosis +/build +/dist +/python-build-stamp-* diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8b2d715 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +gitosis (0.0.1) unstable; urgency=low + + * Initial Release. + + -- Tommi Virtanen <tv@debian.org> Mon, 4 Jun 2007 12:49:11 +0300 + 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.in b/debian/control.in new file mode 100644 index 0000000..905284d --- /dev/null +++ b/debian/control.in @@ -0,0 +1,15 @@ +Source: gitosis +Section: admin +Priority: optional +Maintainer: Tommi Virtanen <tv@debian.org> +Standards-Version: 3.7.2 +Build-Depends: @cdbs@ + +Package: gitosis +Section: admin +Architecture: all +Depends: ${python:Depends}, python-setuptools +Description: git repository hosting application + Manage git repositories, provide access to them over SSH, with tight + access control and not needing shell account. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..791827d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +This package was debianized by Tommi Virtanen <tv@eagain.net> on +Tue, 28 Aug 2007 21:32:22 -0700. + +It was originally downloaded from http://eagain.net/software/gitosis/ + +Upstream Author: Tommi Virtanen <tv@eagain.net> + +Copyright: + + Gitosis -- git repository hosting application + Copyright (C) 2007 Tommi Virtanen + + 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 2 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. + +On Debian Linux systems, the complete text of the GNU General Public +License can be found in '/usr/share/common-licenses/GPL'. diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..28b3be2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- + +DEB_PYTHON_SYSTEM := pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk |