Add debianization.
This commit is contained in:
parent
2c8eeb7d3b
commit
3a0530a088
7 changed files with 64 additions and 0 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -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-*
|
||||
|
|
6
debian/changelog
vendored
Normal file
6
debian/changelog
vendored
Normal file
|
@ -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
|
||||
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
5
|
15
debian/control.in
vendored
Normal file
15
debian/control.in
vendored
Normal file
|
@ -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.
|
||||
|
24
debian/copyright
vendored
Normal file
24
debian/copyright
vendored
Normal file
|
@ -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'.
|
1
debian/pycompat
vendored
Normal file
1
debian/pycompat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
2
|
7
debian/rules
vendored
Executable file
7
debian/rules
vendored
Executable file
|
@ -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
|
Loading…
Reference in a new issue