Skip to content
Commits on Source (17)
Metadata-Version: 1.1
Name: OBITools
Version: 1.2.11
Version: 1.2.12
Summary: Scripts and library for sequence analysis
Home-page: http://metabarcoding.org/obitools
Author: Eric Coissac
......
obitools (1.2.11+dfsg-1) unstable; urgency=low
obitools (1.2.12+dfsg-1) unstable; urgency=low
* Initial release (Closes: #783833)
-- Andreas Tille <tille@debian.org> Mon, 12 Feb 2018 00:31:32 +0100
-- Andreas Tille <tille@debian.org> Mon, 21 Jan 2019 21:25:12 +0100
......@@ -3,19 +3,21 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Olivier Sallou <osallou@debian.org>,
Andreas Tille <tille@debian.org>
Section: python
#Testsuite needs more work
#Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 12~),
dh-python,
python-dev,
python-sphinx,
cython,
ipython,
python-wheel
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/obitools.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/obitools.git
python-wheel,
python-virtualenv
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/obitools
Vcs-Git: https://salsa.debian.org/med-team/obitools.git
Homepage: https://pypi.python.org/pypi/OBITools
X-Python-Version: >= 2.7
Package: obitools
Architecture: amd64
......
This diff is collapsed.
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#DH_VERBOSE = 1
# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
......@@ -10,26 +8,18 @@ include /usr/share/dpkg/default.mk
# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
# package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
export PYBUILD_NAME=obitools
# main packaging script based on dh7 syntax
%:
dh $@ --with python2,sphinxdoc
override_dh_install:
dh_install
dh $@ --with python2,sphinxdoc --buildsystem=pybuild
override_dh_clean:
dh_clean
rm -rf build
rm -f doc/sphinx/build_dir.txt
override_dh_auto_install:
PYTHONPATH=$(shell pybuild --print build_dir --interpreter python) \
http_proxy='127.0.0.1:9' \
dh_auto_install
......@@ -38,7 +38,7 @@ import obitools.version
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo',
'sphinx.ext.coverage', 'sphinx.ext.viewcode',
'sphinx.ext.graphviz', 'sphinx.ext.inheritance_diagram',
'sphinx.ext.pngmath',
'sphinx.ext.imgmath',
# 'matplotlib.sphinxext.mathmpl',
# 'matplotlib.sphinxext.only_directives',
# 'matplotlib.sphinxext.plot_directive',
......
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
......@@ -19,7 +19,7 @@ from os import path
PACKAGE = "OBITools"
VERSION = "1.2.11"
VERSION = "1.2.12"
AUTHOR = 'Eric Coissac'
EMAIL = 'eric@coissac.eu'
URL = 'http://metabarcoding.org/obitools'
......
major = 1
minor = 2
serial= '11'
serial= '12'
version = "%2d.%02d %s" % (major,minor,serial)