initial commit
This commit is contained in:
commit
c2e49268e4
9 changed files with 49 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-fsdb/
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
fsdb (0.3.3-1) testing; urgency=low
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- boyska <piuttosto@logorroici.org> Thu, 10 Dec 2015 18:26:19 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
14
debian/control
vendored
Normal file
14
debian/control
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
Source: fsdb
|
||||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: boyska <piuttosto@logorroici.org>
|
||||
Build-Depends: debhelper (>= 9~), dh-python, python-all (>=2.6.6-3~), python-setuptools
|
||||
Standards-Version: 3.9.4
|
||||
X-Python-Version: >= 2.7
|
||||
|
||||
Package: python-fsdb
|
||||
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-
|
10
debian/rules
vendored
Executable file
10
debian/rules
vendored
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
# export DH_VERBOSE = 1
|
||||
export PYBUILD_NAME = fsdb
|
||||
|
||||
%:
|
||||
dh $@ --with python2 --buildsystem pybuild
|
||||
|
||||
override_dh_auto_test:
|
||||
true
|
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/Fsdb/Fsdb-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
|
Loading…
Reference in a new issue