python3 supported
This commit is contained in:
parent
d8642ff19c
commit
f7d5fe2db9
4 changed files with 24 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -12,3 +12,4 @@
|
|||
debian/files
|
||||
debian/python-fsdb/
|
||||
debian/python-fsdb-doc/
|
||||
debian/python3-fsdb/
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
fsdb (1.2.2-3) testing; urgency=medium
|
||||
|
||||
* both python2 and python3
|
||||
|
||||
-- boyska <piuttosto@logorroici.org> Sat, 26 Mar 2016 22:07:20 -0400
|
||||
|
||||
fsdb (1.2.2-2) testing; urgency=medium
|
||||
|
||||
* add documentation
|
||||
|
|
18
debian/control
vendored
18
debian/control
vendored
|
@ -2,14 +2,16 @@ Source: fsdb
|
|||
Section: python
|
||||
Priority: optional
|
||||
Maintainer: boyska <piuttosto@logorroici.org>
|
||||
Build-Depends: debhelper (>= 9~), dh-python, python-all (>=2.6.6-3~), python-setuptools, python-nose, python-sphinx
|
||||
Build-Depends: debhelper (>= 9~), dh-python, python-all (>=2.6.6-3~), python3-all, python-setuptools, python3-setuptools, python-nose, python3-nose, python-sphinx
|
||||
Standards-Version: 3.9.7
|
||||
X-Python-Version: >= 2.7
|
||||
X-Python-Version: >= 2.6
|
||||
X-Python3-Version: >= 3.3
|
||||
Testsuite: autopkgtest
|
||||
|
||||
Package: python-fsdb
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${python:Depends}
|
||||
Suggests: python-fsdb-doc
|
||||
Description: python implementation of a Content Addressable Storage
|
||||
Fsdb is small library to implement a content addressable storage based
|
||||
on cryptographic hash. It is compatible with python 2.6-3.5.
|
||||
|
@ -18,6 +20,18 @@ Description: python implementation of a Content Addressable Storage
|
|||
problems such as duplicates handling and directories with too many files
|
||||
.
|
||||
|
||||
Package: python3-fsdb
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${python3:Depends}
|
||||
Suggests: python-fsdb-doc
|
||||
Description: python3 implementation of a Content Addressable Storage
|
||||
Fsdb is small library to implement a content addressable storage based
|
||||
on cryptographic hash. It is compatible with python 2.6-3.5.
|
||||
Using the library is very simple: you add files and you get URIs, which
|
||||
can then be used to retrieve them. It allows the developer to forget about
|
||||
problems such as duplicates handling and directories with too many files
|
||||
.
|
||||
|
||||
Package: python-fsdb-doc
|
||||
Architecture: all
|
||||
Section: doc
|
||||
|
|
2
debian/rules
vendored
2
debian/rules
vendored
|
@ -5,7 +5,7 @@ export PYBUILD_NAME = fsdb
|
|||
export PYBUILD_SYSTEM = distutils
|
||||
|
||||
%:
|
||||
dh $@ --with python2,sphinxdoc --buildsystem pybuild
|
||||
dh $@ --with python2,python3,sphinxdoc --buildsystem pybuild
|
||||
|
||||
override_dh_auto_build:
|
||||
dh_auto_build
|
||||
|
|
Loading…
Reference in a new issue