[med-svn] [python-bd2k] 03/03: collapse changelog

Michael Crusoe misterc-guest at moszumanska.debian.org
Sat Feb 10 16:01:21 UTC 2018


This is an automated email from the git hooks/post-receive script.

misterc-guest pushed a commit to branch master
in repository python-bd2k.

commit c8a8cef5c8ed9caabba0a34af134d724ff87b81d
Author: Michael R. Crusoe <michael.crusoe at gmail.com>
Date:   Sat Feb 10 07:39:22 2018 -0800

    collapse changelog
---
 debian/changelog                                  | 18 ++++++------------
 debian/control                                    |  9 ++++++---
 debian/patches/accept_any_boto.patch              | 16 ++++++++--------
 debian/patches/change_package_name_to_bd2k.patch  |  2 ++
 debian/patches/no_boto_test.patch                 |  6 +++---
 debian/patches/setupcfg_pytest_section_name.patch |  2 ++
 6 files changed, 27 insertions(+), 26 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9893bab..9bdf709 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,19 +1,13 @@
-python-bd2k (1.14~alpha1.37-3) unstable; urgency=medium
+python-bd2k (1.14~alpha1.43-1) UNRELEASED; urgency=medium
 
+  [ Michael R. Crusoe ]
+  * latest upstream
+
+  [ Steffen Moeller ]
   * Reupload with no functional changes
   * Added prior omitted patch to git repository
-
- -- Steffen Moeller <moeller at debian.org>  Tue, 31 Jan 2017 18:57:37 +0100
-
-python-bd2k (1.14~alpha1.37-2) UNRELEASED; urgency=medium
-
   * Python3 package is not installable because of a syntax error
   * Activated autotests for python2 only.
-
- -- Steffen Moeller <moeller at debian.org>  Sat, 14 Jan 2017 15:46:12 +0100
-
-python-bd2k (1.14~alpha1.37-1) unstable; urgency=medium
-
   * Initial release (Closes: #851341)
 
- -- Steffen Moeller <moeller at debian.org>  Fri, 13 Jan 2017 19:31:02 +0100
+ -- Michael R. Crusoe <michael.crusoe at gmail.com>  Sat, 10 Feb 2018 07:38:01 -0800
diff --git a/debian/control b/debian/control
index 21da2c8..528cb8f 100644
--- a/debian/control
+++ b/debian/control
@@ -1,20 +1,23 @@
 Source: python-bd2k
 Section: python
 Priority: extra
-Maintainer: Steffen Moeller <moeller at debian.org>
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Steffen Moeller <moeller at debian.org>,
+            Michael R. Crusoe <michael.crusoe at gmail.com>
 Build-Depends: debhelper (>= 9), dh-python, python-all, python-setuptools, python3-all, python3-setuptools,
   python-boto,
   python-dill,
   python-lockfile,
   python-mock,
-  python-pytest
+  python-pytest,
+  python-future
 # Test not performing correctly.
 #  python-boto, python3-boto,
 #  python-dill, python3-dill,
 #  python-lockfile, python3-lockfile,
 #  python-mock, python3-mock,
 #  python-pytest, python3-pytest
-Standards-Version: 3.9.8
+Standards-Version: 4.1.3
 Homepage: https://github.com/BD2KGenomics/bd2k-python-lib
 X-Python-Version: >= 2.6
 #X-Python3-Version: >= 3.2
diff --git a/debian/patches/accept_any_boto.patch b/debian/patches/accept_any_boto.patch
index cb83227..c77f60f 100644
--- a/debian/patches/accept_any_boto.patch
+++ b/debian/patches/accept_any_boto.patch
@@ -1,19 +1,19 @@
-Index: bd2k-python-lib-1.14a1.dev29/setup.py
-===================================================================
---- bd2k-python-lib-1.14a1.dev29.orig/setup.py
-+++ bd2k-python-lib-1.14a1.dev29/setup.py
-@@ -17,10 +17,10 @@ kwargs = dict(
+Author: Michael R. Crusoe <michael.crusoe at gmail.com>
+Descriptions: Loosen dependencies
+--- python-bd2k.orig/setup.py
++++ python-bd2k/setup.py
+@@ -17,10 +17,10 @@
      packages=find_packages( 'src' ),
-     install_requires=[ ],
+     install_requires=[ 'future' ],
      tests_require=[
 -        'pytest==2.7.2',
 -        'mock==1.0.1',
 -        'lockfile==0.11.0',
--        'boto==2.38.0' ],
+-        'boto==2.38.0'],
 +        'pytest>=2.7.2',
 +        'mock>=1.0.1',
 +        'lockfile>=0.11.0',
-+        'boto>=2.38.0' ],
++        'boto>=2.38.0'],
      namespace_packages=[ 'bd2k' ] )
  
  from setuptools.command.test import test as TestCommand
diff --git a/debian/patches/change_package_name_to_bd2k.patch b/debian/patches/change_package_name_to_bd2k.patch
index 6e3dc33..4c1826d 100644
--- a/debian/patches/change_package_name_to_bd2k.patch
+++ b/debian/patches/change_package_name_to_bd2k.patch
@@ -1,3 +1,5 @@
+Author: Michael R. Crusoe <michael.crusoe at gmail.com>
+Description: Normalize package name
 Index: python-bd2k/setup.py
 ===================================================================
 --- python-bd2k.orig/setup.py
diff --git a/debian/patches/no_boto_test.patch b/debian/patches/no_boto_test.patch
index ea68a0f..895f58d 100644
--- a/debian/patches/no_boto_test.patch
+++ b/debian/patches/no_boto_test.patch
@@ -1,8 +1,8 @@
-Index: python-bd2k/src/bd2k/util/ec2/test/test_credentials.py
-===================================================================
+Author: Steffen Moeller <moeller at debian.org>
+Description: 
 --- python-bd2k.orig/src/bd2k/util/ec2/test/test_credentials.py
 +++ python-bd2k/src/bd2k/util/ec2/test/test_credentials.py
-@@ -15,34 +15,36 @@ def get_access_key( ):
+@@ -16,34 +16,36 @@
      return None if provider._credential_expiry_time is None else provider.get_access_key( ) 
  
  
diff --git a/debian/patches/setupcfg_pytest_section_name.patch b/debian/patches/setupcfg_pytest_section_name.patch
index 52de248..ff1571b 100644
--- a/debian/patches/setupcfg_pytest_section_name.patch
+++ b/debian/patches/setupcfg_pytest_section_name.patch
@@ -1,3 +1,5 @@
+Author: Michael R. Crusoe <michael.crusoe at gmail.com>
+Description: silence error
 Index: bd2k-python-lib-1.14a1.dev29/setup.cfg
 ===================================================================
 --- bd2k-python-lib-1.14a1.dev29.orig/setup.cfg

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-bd2k.git



More information about the debian-med-commit mailing list