initial commit
This commit is contained in:
commit
001f03dff5
9 changed files with 44 additions and 0 deletions
13
.gitignore
vendored
Normal file
13
.gitignore
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# avoid orig package pollution
|
||||||
|
/*
|
||||||
|
!.gitignore
|
||||||
|
!/debian
|
||||||
|
|
||||||
|
# real files to ignore
|
||||||
|
.*.sw*
|
||||||
|
.*~
|
||||||
|
*.substvars
|
||||||
|
*.log
|
||||||
|
*.debhelper
|
||||||
|
debian/files
|
||||||
|
debian/python-*/
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
visitor (0.1.2-1) testing; urgency=low
|
||||||
|
|
||||||
|
* Initial release. (Closes: #XXXXXX)
|
||||||
|
|
||||||
|
-- boyska <piuttosto@logorroici.org> Sun, 13 Dec 2015 11:40:12 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
9
|
13
debian/control
vendored
Normal file
13
debian/control
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
Source: visitor
|
||||||
|
Section: net
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: boyska <piuttosto@logorroici.org>
|
||||||
|
Build-Depends: debhelper (>= 9), dh-python, python-all (>=2.6), python-setuptools
|
||||||
|
Standards-Version: 3.9.4
|
||||||
|
|
||||||
|
Package: python-visitor
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${misc:Depends}, ${python:Depends}
|
||||||
|
Description: skel
|
||||||
|
skeleton, fill me
|
||||||
|
.
|
1
debian/format
vendored
Normal file
1
debian/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
1
debian/pyversions
vendored
Normal file
1
debian/pyversions
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
2.7-
|
6
debian/rules
vendored
Executable file
6
debian/rules
vendored
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
export PYBUILD_NAME = visitor
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ --with python2
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
3
debian/watch
vendored
Normal file
3
debian/watch
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
version=3
|
||||||
|
opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
|
||||||
|
https://pypi.debian.net/visitor/visitor-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
|
Loading…
Reference in a new issue