Remove Debian packaging, downstream has deviated too much anyway
This commit is contained in:
parent
9e1cbc0d8d
commit
2d971ca95c
8 changed files with 1 additions and 110 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -5,13 +5,3 @@
|
|||
/apidocs
|
||||
/gitosis/test/tmp
|
||||
/.coverage
|
||||
|
||||
# debianization
|
||||
/debian/control
|
||||
/debian/files
|
||||
/debian/*.substvars
|
||||
/debian/*.debhelper
|
||||
/debian/gitosis
|
||||
/build
|
||||
/dist
|
||||
/python-build-stamp-*
|
||||
|
|
|
@ -30,8 +30,7 @@ And install it via::
|
|||
|
||||
python setup.py install
|
||||
|
||||
Though you may want to use e.g. ``--prefix=``. For Debian/Ubuntu
|
||||
users, the source is debianized.
|
||||
Though you may want to use e.g. ``--prefix=``.
|
||||
|
||||
|
||||
Setting up
|
||||
|
|
23
debian/changelog
vendored
23
debian/changelog
vendored
|
@ -1,23 +0,0 @@
|
|||
gitosis (0.2) unstable; urgency=low
|
||||
|
||||
* Fix initial push syntax in README. Needs to say "refs/heads/".
|
||||
* Clean up more files in debian/rules.
|
||||
* Mark the generated egg as non-zip-safe.
|
||||
* Ensure "git init" doesn't write to stdout, and confuse a push.
|
||||
The repository autocreation functionality ends up sending the
|
||||
stdout to the client side, and there a very confused git push
|
||||
can't make any sense of the protocol.
|
||||
* Adjust README to make adduser create the home directory.
|
||||
* Avoid missing configuration file trouble on initial run
|
||||
of gitosis-init (and hence, gitosis-run-hook).
|
||||
* Allow using email address in SSH public key user fields.
|
||||
* Make sure ~git/.ssh exists in gitosis-init.
|
||||
|
||||
-- Tommi Virtanen <tv@debian.org> Mon, 3 Sep 2007 23:28:23 -0700
|
||||
|
||||
gitosis (0.1) unstable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
-- Tommi Virtanen <tv@debian.org> Mon, 4 Jun 2007 12:49:11 +0300
|
||||
|
1
debian/compat
vendored
1
debian/compat
vendored
|
@ -1 +0,0 @@
|
|||
5
|
15
debian/control.in
vendored
15
debian/control.in
vendored
|
@ -1,15 +0,0 @@
|
|||
Source: gitosis
|
||||
Section: admin
|
||||
Priority: optional
|
||||
Maintainer: Tommi Virtanen <tv@debian.org>
|
||||
Standards-Version: 3.7.2
|
||||
Build-Depends: @cdbs@, python-setuptools (>= 0.6c5)
|
||||
|
||||
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 accounts.
|
||||
|
24
debian/copyright
vendored
24
debian/copyright
vendored
|
@ -1,24 +0,0 @@
|
|||
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
1
debian/pycompat
vendored
|
@ -1 +0,0 @@
|
|||
2
|
34
debian/rules
vendored
34
debian/rules
vendored
|
@ -1,34 +0,0 @@
|
|||
#!/usr/bin/make -f
|
||||
# -*- mode: makefile; coding: utf-8 -*-
|
||||
|
||||
ifeq ($(wildcard debian/control),)
|
||||
ifeq ($(DEB_AUTO_UPDATE_DEBIAN_CONTROL),)
|
||||
advice_about_control := yes
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(advice_about_control),yes)
|
||||
advice-on-debian-control %::
|
||||
@echo "It seems you are building from pristine source and"
|
||||
@echo "debian/control is missing. It will be autogenerated"
|
||||
@echo "if you say:"
|
||||
@echo
|
||||
@echo " ./debian/rules generate"
|
||||
@echo
|
||||
@exit 1
|
||||
else
|
||||
|
||||
DEB_PYTHON_SYSTEM := pysupport
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/python-distutils.mk
|
||||
|
||||
clean::
|
||||
rm -rf dist gitosis.egg-info
|
||||
endif
|
||||
|
||||
|
||||
generate::
|
||||
# I wish this was atomic
|
||||
cp debian/control.in debian/control
|
||||
fakeroot env DEB_AUTO_UPDATE_DEBIAN_CONTROL=1 ./debian/rules clean
|
Loading…
Reference in a new issue