initial commit
This commit is contained in:
commit
afe7c6fe15
9 changed files with 56 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 @@
|
|||
libreant (0.2.2-1) testing; urgency=low
|
||||
|
||||
* Initial release. (Closes: #XXXXXX)
|
||||
|
||||
-- boyska <piuttosto@logorroici.org> Fri, 11 Dec 2015 17:55:12 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
25
debian/control
vendored
Normal file
25
debian/control
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
Source: libreant
|
||||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: boyska <piuttosto@logorroici.org>
|
||||
Build-Depends: debhelper (>= 9), dh-python, python-all (>=2.6), python-setuptools,
|
||||
python-fsdb,
|
||||
python-flask-authbone (>= 0.2),
|
||||
python-click, python-elasticsearch, python-flask, python-flask-babel, python-flask-script,
|
||||
python-opensearch,
|
||||
python-peewee,
|
||||
python-flask-bootstrap
|
||||
Standards-Version: 3.9.4
|
||||
|
||||
Package: python-libreant
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${python:Depends},
|
||||
python-fsdb,
|
||||
python-flask-authbone (>= 0.2),
|
||||
python-click, python-elasticsearch, python-flask, python-flask-babel, python-flask-script,
|
||||
python-opensearch,
|
||||
python-peewee,
|
||||
python-flask-bootstrap
|
||||
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 = libreant
|
||||
|
||||
%:
|
||||
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/libreant/libreant-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
|
Loading…
Reference in a new issue