Initial commit

Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
This commit is contained in:
Paul Belanger 2012-10-13 13:12:47 -04:00
commit 0d183034c0
10 changed files with 102 additions and 0 deletions

6
debian/README.Debian vendored Normal file
View File

@ -0,0 +1,6 @@
zuul for Debian
---------------
<possible notes regarding this package - if none, delete this file>
-- Paul Belanger <paul.belanger@polybeacon.com> Fri, 12 Oct 2012 15:24:59 -0400

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
zuul (1.0-1) UNRELEASED; urgency=low
* Initial release
-- Paul Belanger <paul.belanger@polybeacon.com> Fri, 12 Oct 2012 19:55:53 -0400

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
8

22
debian/control vendored Normal file
View File

@ -0,0 +1,22 @@
Source: zuul
Maintainer: Paul Belanger <paul.belanger@polybeacon.com>
Section: python
Priority: optional
Build-Depends: debhelper (>= 8.0.0),
python (>= 2.6)
Build-Depends-Indep:
python-git (>= 0.3.2~RC1),
python-jenkins,
python-lockfile,
python-nose,
python-paramiko,
python-paste,
python-setuptools,
python-webob,
python-yaml
Standards-Version: 3.9.1
Package: zuul
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: Trunk gating system

36
debian/copyright vendored Normal file
View File

@ -0,0 +1,36 @@
Format: http://dep.debian.net/deps/dep5
Upstream-Name: zuul
Source: <url://example.com>
Files: *
Copyright: <years> <put author's name and email here>
<years> <likewise for another author>
License: <special license>
<Put the license of the package here indented by 1 space>
<This follows the format of Description: lines in control file>
.
<Including paragraphs>
# If you want to use GPL v2 or later for the /debian/* files use
# the following clauses, or change it to suit. Delete these two lines
Files: debian/*
Copyright: 2012 Paul Belanger <paul.belanger@polybeacon.com>
License: GPL-2+
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, or
(at your option) any later version.
.
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 program. If not, see <http://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.

1
debian/docs vendored Normal file
View File

@ -0,0 +1 @@
README

9
debian/gbp.conf vendored Normal file
View File

@ -0,0 +1,9 @@
[DEFAULT]
cleaner = /bin/true
[git-buildpackage]
export-dir = ../build-area/
tarball-dir = ../tarballs/
overlay = True
pristine-tar = False
compression = gzip

19
debian/rules vendored Executable file
View File

@ -0,0 +1,19 @@
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@ --with-python2
override_dh_auto_install:
python setup.py install --root=debian/zuul --install-layout=deb --install-lib=/usr/share/zuul --install-scripts=/usr/share/zuul
override_dh_auto_build:
override_dh_auto_test:
nosetests
get-orig-source:
@@[ -d ../tarballs/. ] || mkdir -p ../tarballs
uscan --verbose --force-download --rename --destdir=../tarballs

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

2
debian/watch vendored Normal file
View File

@ -0,0 +1,2 @@
version=3
http://tarballs.openstack.org/zuul/zuul-([0-9.]*).tar.gz debian