[med-svn] [Git][med-team/q2cli][master] 4 commits: d/watch needs to exclude dev
Andreas Tille (@tille)
gitlab at salsa.debian.org
Mon Dec 1 11:57:03 GMT 2025
Andreas Tille pushed to branch master at Debian Med / q2cli
Commits:
b855499f by Andreas Tille at 2025-12-01T12:00:23+01:00
d/watch needs to exclude dev
- - - - -
de159840 by Andreas Tille at 2025-12-01T12:55:23+01:00
New upstream version 2025.10.1
- - - - -
25df0d18 by Andreas Tille at 2025-12-01T12:55:24+01:00
Update upstream source from tag 'upstream/2025.10.1'
Update to upstream version '2025.10.1'
with Debian dir d38d68cca76b18153439504548a79c6442ad95d6
- - - - -
3b8aed0f by Andreas Tille at 2025-12-01T12:56:33+01:00
Import production release instead of develpment snapshot
- - - - -
5 changed files:
- debian/changelog
- debian/control
- debian/watch
- pyproject.toml
- q2cli/builtin/tools.py
Changes:
=====================================
debian/changelog
=====================================
@@ -1,4 +1,4 @@
-q2cli (2026.1.0.dev0-1) UNRELEASED; urgency=medium
+q2cli (2025.10.1-1) UNRELEASED; urgency=medium
* Team upload.
* d/watch: version=5
=====================================
debian/control
=====================================
@@ -10,7 +10,7 @@ Build-Depends: debhelper-compat (= 13),
python3-all,
python3-pytest <!nocheck>,
python3-setuptools,
- qiime (>= 2026.1),
+ qiime (>= 2025.10),
python3-click
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/med-team/q2cli
@@ -23,8 +23,8 @@ Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
- q2-feature-table (>= 2026.1),
- qiime (>= 2026.1),
+ q2-feature-table (>= 2025.10),
+ qiime (>= 2025.10),
python3-setuptools,
python3-click
Description: Click-based command line interface for QIIME 2
=====================================
debian/watch
=====================================
@@ -1,5 +1,5 @@
Version: 5
-Template: Github
-Owner: qiime2
-Project: q2cli
+Source: https://github.com/qiime2/@PACKAGE@/tags
+Matching-Pattern: (?:.*?/)?v?(\d[\d.]+)@ARCHIVE_EXT@
+Filenamemangle: s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%@PACKAGE at -$1.tar.gz%
=====================================
pyproject.toml
=====================================
@@ -28,7 +28,7 @@ build-backend = "setuptools.build_meta"
[tool.versioningit.vcs]
method = "git-archive"
-describe-subst = "2026.1.0.dev0"
+describe-subst = "2025.10.1"
default-tag = "0.0.1"
[tool.versioningit.next-version]
=====================================
q2cli/builtin/tools.py
=====================================
@@ -1640,9 +1640,18 @@ def annotation_fetch(input_path, name, verbose):
click.echo(CONFIG.cfg_style('type', "type")+": ", nl=False)
click.echo(annotation.annotation_type)
if verbose:
- click.echo('', nl=True)
- click.echo(CONFIG.cfg_style('type', "contents")+": ", nl=False)
- click.echo(annotation.contents)
+ if annotation.annotation_type == 'Signature':
+ click.echo('', nl=True)
+ click.echo(CONFIG.cfg_style('type', "signer_name")+": ", nl=False)
+ click.echo(annotation.signer_name)
+ click.echo(CONFIG.cfg_style('type', "signer_email")+": ", nl=False)
+ click.echo(annotation.signer_email)
+ click.echo(CONFIG.cfg_style('type', "fingerprint")+": ", nl=False)
+ click.echo(annotation.fingerprint)
+ else:
+ click.echo('', nl=True)
+ click.echo(CONFIG.cfg_style('type', "contents")+": ", nl=False)
+ click.echo(annotation.contents)
@tools.command(
View it on GitLab: https://salsa.debian.org/med-team/q2cli/-/compare/4839bab6471115e1504d8e47d4a144fe6536a06c...3b8aed0fd3f2a8de5aa6c73f6a258ec27b865cb9
--
View it on GitLab: https://salsa.debian.org/med-team/q2cli/-/compare/4839bab6471115e1504d8e47d4a144fe6536a06c...3b8aed0fd3f2a8de5aa6c73f6a258ec27b865cb9
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20251201/e6ab647a/attachment-0001.htm>
More information about the debian-med-commit
mailing list