[med-svn] [Git][med-team/q2-cutadapt][master] 6 commits: New upstream version 2022.2.0

Andreas Tille (@tille) gitlab at salsa.debian.org
Tue Jul 19 16:20:41 BST 2022



Andreas Tille pushed to branch master at Debian Med / q2-cutadapt


Commits:
4c4f9bc8 by Andreas Tille at 2022-07-19T17:17:24+02:00
New upstream version 2022.2.0
- - - - -
bb28bae5 by Andreas Tille at 2022-07-19T17:17:24+02:00
routine-update: New upstream version

- - - - -
67fe4ff2 by Andreas Tille at 2022-07-19T17:17:26+02:00
Update upstream source from tag 'upstream/2022.2.0'

Update to upstream version '2022.2.0'
with Debian dir a4e2c0d3e634f5f11112dbeab85142ef1d2841c6
- - - - -
46c95646 by Andreas Tille at 2022-07-19T17:17:26+02:00
routine-update: Standards-Version: 4.6.1

- - - - -
35ebffef by Andreas Tille at 2022-07-19T17:18:52+02:00
Adjust versioned (Build-)Depends

- - - - -
b724c423 by Andreas Tille at 2022-07-19T17:20:07+02:00
Upload to unstable

- - - - -


12 changed files:

- LICENSE
- debian/changelog
- debian/control
- q2_cutadapt/__init__.py
- q2_cutadapt/_demux.py
- q2_cutadapt/_trim.py
- q2_cutadapt/_version.py
- q2_cutadapt/plugin_setup.py
- q2_cutadapt/tests/__init__.py
- q2_cutadapt/tests/test_demux.py
- q2_cutadapt/tests/test_trim.py
- setup.py


Changes:

=====================================
LICENSE
=====================================
@@ -1,6 +1,6 @@
 BSD 3-Clause License
 
-Copyright (c) 2017-2021, QIIME 2 development team.
+Copyright (c) 2017-2022, QIIME 2 development team.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without


=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+q2-cutadapt (2022.2.0-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream version
+  * Standards-Version: 4.6.1 (routine-update)
+  * Adjust versioned (Build-)Depends
+
+ -- Andreas Tille <tille at debian.org>  Tue, 19 Jul 2022 17:18:59 +0200
+
 q2-cutadapt (2021.8.0-1) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/control
=====================================
@@ -10,9 +10,9 @@ Build-Depends: debhelper-compat (= 13),
                python3-pytest-cov,
                python3-pandas,
                cutadapt (>= 2.3),
-               qiime (>= 2021.8.0),
-               q2-types (>= 2021.8.0)
-Standards-Version: 4.6.0
+               qiime (>= 2022.2.0),
+               q2-types (>= 2022.2.0)
+Standards-Version: 4.6.1
 Vcs-Browser: https://salsa.debian.org/med-team/q2-cutadapt
 Vcs-Git: https://salsa.debian.org/med-team/q2-cutadapt.git
 Homepage: https://qiime2.org/
@@ -27,8 +27,8 @@ Depends: ${shlibs:Depends},
          python3-pandas,
          cutadapt,
          pigz,
-         qiime (>= 2021.8.0),
-         q2-types (>= 2021.8.0)
+         qiime (>= 2022.2.0),
+         q2-types (>= 2022.2.0)
 Description: QIIME 2 plugin to work with adapters in sequence data
  QIIME 2 is a powerful, extensible, and decentralized microbiome analysis
  package with a focus on data and analysis transparency. QIIME 2 enables


=====================================
q2_cutadapt/__init__.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_cutadapt/_demux.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_cutadapt/_trim.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_cutadapt/_version.py
=====================================
@@ -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: 2021.8.0)"
-    git_full = "ca9ebf26c396e42120d9e9b8e0f6a1c3905b689d"
-    git_date = "2021-09-09 18:35:28 +0000"
+    git_refnames = " (tag: 2022.2.0)"
+    git_full = "ab5c3a2851dc52f63a0850a439da93a5c19e232a"
+    git_date = "2022-02-18 19:02:01 +0000"
     keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
     return keywords
 


=====================================
q2_cutadapt/plugin_setup.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_cutadapt/tests/__init__.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_cutadapt/tests/test_demux.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_cutadapt/tests/test_trim.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
setup.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #



View it on GitLab: https://salsa.debian.org/med-team/q2-cutadapt/-/compare/8d79104fdc270c8809326b1dcb12bff5df112fd0...b724c4232406aa759aade0e039efed4356176a62

-- 
View it on GitLab: https://salsa.debian.org/med-team/q2-cutadapt/-/compare/8d79104fdc270c8809326b1dcb12bff5df112fd0...b724c4232406aa759aade0e039efed4356176a62
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/20220719/d698510b/attachment-0001.htm>


More information about the debian-med-commit mailing list