Skip to content
Commits on Source (8)
q2-metadata (2019.7.0+dfsg-1) UNRELEASED; urgency=medium
* New upstream version
* debhelper-compat 12
* Standards-Version: 4.4.0
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Specify the required version of qiime, q2templates, and q2-types
* Fix typos in d/rules (should be js instead of css)
* Add autopkgtest (run build-time tests for the moment)
-- Liubov Chuprikova <chuprikovalv@gmail.com> Fri, 06 Sep 2019 14:32:02 +0200
q2-metadata (2019.4.0+dfsg-1) unstable; urgency=medium
q2-metadata (2019.10.0+dfsg-1) UNRELEASED; urgency=medium
* Initial release (Closes: #930755)
-- Liubov Chuprikova <chuprikovalv@gmail.com> Wed, 19 Jun 2019 18:26:16 +0200
-- Liubov Chuprikova <chuprikovalv@gmail.com> Tue, 12 Nov 2019 09:28:02 +0100
......@@ -13,8 +13,8 @@ Build-Depends: debhelper-compat (= 12),
libjs-jquery-datatables,
qiime (>= 2019.7.0),
q2templates (>= 2019.7.0),
q2-types (>= 2019.7.0)
Standards-Version: 4.4.0
q2-types
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/med-team/q2-metadata
Vcs-Git: https://salsa.debian.org/med-team/q2-metadata.git
Homepage: https://qiime2.org/
......
......@@ -7,6 +7,35 @@ Files: *
Copyright: 2016-2019 QIIME 2 development team
License: BSD-3-clause
Files: q2_metadata/templates/tabulate/*
Copyright: 2015-2019 Tobias Ahlin
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Files: versioneer.py
Copyright: Brian Warner
License: PublicDomain
To make Versioneer easier to embed, all its code is dedicated to the public
domain. The `_version.py` that it creates is also in the public domain.
Specifically, both are released under the Creative Commons "Public Domain
Dedication" license (CC0-1.0), as described in
https://creativecommons.org/publicdomain/zero/1.0/ .
Files: debian/*
Copyright: 2019 Liubov Chuprikova <chuprikovalv@gmail.com>
Andreas Tille <tille@debian.org>
......
......@@ -19,5 +19,5 @@ export PYBUILD_AFTER_INSTALL=ln -vsf \
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test -- -s custom --test-args="cd {build_dir}; py.test-3 --cov=q2_metadata"
dh_auto_test -- -a custom --test-args="cd {build_dir}; py.test-3 --cov=q2_metadata"
endif
......@@ -42,3 +42,4 @@ Reference:
DOI: 10.1038/s41587-019-0209-9
URL: https://www.nature.com/articles/s41587-019-0209-9
eprint: https://www.nature.com/articles/s41587-019-0209-9.pdf
Repository: https://github.com/qiime2/q2-metadata
......@@ -23,9 +23,9 @@ def get_keywords():
# setup.py/versioneer.py will grep for the variable names, so they must
# each be defined on a line of their own. _version.py will just call
# get_keywords().
git_refnames = " (tag: 2019.7.0)"
git_full = "086878c99a3d75dbafa6df1cccdc78b32f1e0fa3"
git_date = "2019-07-30 18:15:51 +0000"
git_refnames = " (tag: 2019.10.0)"
git_full = "76fc6b114c16abcf7cc6fb8299557c3b8f6e140e"
git_date = "2019-11-01 01:04:25 +0000"
keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
return keywords
......