[med-svn] [Git][med-team/pyqi][master] 8 commits: Fix clean target

Andreas Tille gitlab at salsa.debian.org
Mon Mar 30 12:43:39 BST 2020



Andreas Tille pushed to branch master at Debian Med / pyqi


Commits:
a2e490b4 by Andreas Tille at 2020-03-30T13:09:52+02:00
Fix clean target

- - - - -
833d47b7 by Andreas Tille at 2020-03-30T13:10:08+02:00
routine-update: Standards-Version: 4.5.0

- - - - -
d471c29f by Andreas Tille at 2020-03-30T13:10:14+02:00
routine-update: Add salsa-ci file

- - - - -
81050eee by Andreas Tille at 2020-03-30T13:10:14+02:00
routine-update: Rules-Requires-Root: no

- - - - -
f6f8881e by Andreas Tille at 2020-03-30T13:10:15+02:00
debian/copyright: use spaces rather than tabs to start continuation lines.

Fixes: lintian: tab-in-license-text
See-also: https://lintian.debian.org/tags/tab-in-license-text.html

- - - - -
b16feb00 by Andreas Tille at 2020-03-30T13:10:29+02:00
Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse.

Fixes: lintian: upstream-metadata-file-is-missing
See-also: https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html

- - - - -
940e98b5 by Andreas Tille at 2020-03-30T13:32:31+02:00
enable Python 3.8 in 2to3 patch

- - - - -
cfeb9f32 by Andreas Tille at 2020-03-30T13:43:27+02:00
Candidate for removal

- - - - -


7 changed files:

- debian/changelog
- debian/control
- debian/copyright
- debian/patches/2to3.patch
- debian/rules
- + debian/salsa-ci.yml
- + debian/upstream/metadata


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,19 @@
+pyqi (0.3.2+dfsg-5) UNRELEASED; urgency=medium
+
+  * Fix clean target, enable Python 3.8 in 2to3 patch
+    Closes: #954500
+  * Standards-Version: 4.5.0 (routine-update)
+  * Add salsa-ci file (routine-update)
+  * Rules-Requires-Root: no (routine-update)
+  * debian/copyright: use spaces rather than tabs to start continuation
+    lines.
+  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
+    Repository-Browse.
+  Candidate for removal since no rdepends any more and remaining:
+    ImportError: cannot import name 'parse_qs' from 'cgi' (/usr/lib/python3.8/cgi.py)
+
+ -- Andreas Tille <tille at debian.org>  Mon, 30 Mar 2020 13:08:59 +0200
+
 pyqi (0.3.2+dfsg-4) unstable; urgency=medium
 
   * Use 2to3 to port to Python3


=====================================
debian/control
=====================================
@@ -13,10 +13,11 @@ Build-Depends: debhelper-compat (= 12),
                python3-setuptools,
                sphinx-common,
                libjs-sphinxdoc
-Standards-Version: 4.4.0
+Standards-Version: 4.5.0
 Vcs-Browser: https://salsa.debian.org/med-team/pyqi
 Vcs-Git: https://salsa.debian.org/med-team/pyqi.git
 Homepage: https://pypi.python.org/pypi/pyqi/
+Rules-Requires-Root: no
 
 Package: pyqi
 Architecture: all


=====================================
debian/copyright
=====================================
@@ -14,14 +14,14 @@ License: BSDlike
  .
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions are met:
-	* Redistributions of source code must retain the above copyright
-	  notice, this list of conditions and the following disclaimer.
-	* Redistributions in binary form must reproduce the above copyright
-	  notice, this list of conditions and the following disclaimer in the
-	  documentation and/or other materials provided with the distribution.
-	* Neither the name BiPy nor the names of its contributors may be used to
-	  endorse or promote products derived from this software without specific
-	  prior written permission.
+ 	* Redistributions of source code must retain the above copyright
+ 	  notice, this list of conditions and the following disclaimer.
+ 	* Redistributions in binary form must reproduce the above copyright
+ 	  notice, this list of conditions and the following disclaimer in the
+ 	  documentation and/or other materials provided with the distribution.
+ 	* Neither the name BiPy nor the names of its contributors may be used to
+ 	  endorse or promote products derived from this software without specific
+ 	  prior written permission.
  .
     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED


=====================================
debian/patches/2to3.patch
=====================================
@@ -742,23 +742,25 @@ Last-Update: Wed, 11 Sep 2019 11:43:51 +0200
  
  #-----------------------------------------------------------------------------
  # Copyright (c) 2013, The BiPy Development Team.
-@@ -32,7 +32,7 @@ classes = """
+@@ -32,8 +32,8 @@ classes = """
      Topic :: Software Development :: Libraries :: Application Frameworks
      Topic :: Software Development :: User Interfaces 
      Programming Language :: Python
 -    Programming Language :: Python :: 2.7
+-    Programming Language :: Python :: 3.3
 +    Programming Language :: Python :: 3.7
-     Programming Language :: Python :: 3.3
++    Programming Language :: Python :: 3.8
      Programming Language :: Python :: Implementation :: CPython
      Operating System :: OS Independent
+     Operating System :: POSIX
 @@ -43,8 +43,8 @@ classifiers = [s.strip() for s in classe
  
  # Verify Python version
  ver = '.'.join(map(str, [sys.version_info.major, sys.version_info.minor]))
 -if ver not in ['2.7', '3.3']:
 -    sys.stderr.write("Only Python 2.7 and 3.3 are supported.")
-+if ver not in ['3.7', '3.3']:
-+    sys.stderr.write("Only Python 3.7 and 3.3 are supported.")
++if ver not in ['3.7', '3.8']:
++    sys.stderr.write("Only Python 3.7 and 3.8 are supported.")
      sys.exit(1)
  
  long_description = """pyqi (canonically pronounced pie chee) is a Python framework designed to support wrapping general commands in multiple types of interfaces, including at the command line, HTML, and API levels."""


=====================================
debian/rules
=====================================
@@ -12,3 +12,7 @@ override_dh_auto_build:
 override_dh_auto_clean:
 	dh_auto_clean || true
 	cd doc && make clean
+
+override_dh_clean:
+	dh_clean
+	rm -rf .pybuild


=====================================
debian/salsa-ci.yml
=====================================
@@ -0,0 +1,4 @@
+---
+include:
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml


=====================================
debian/upstream/metadata
=====================================
@@ -0,0 +1,4 @@
+Bug-Database: https://github.com/bipy/pyqi/issues
+Bug-Submit: https://github.com/bipy/pyqi/issues/new
+Repository: https://github.com/bipy/pyqi.git
+Repository-Browse: https://github.com/bipy/pyqi



View it on GitLab: https://salsa.debian.org/med-team/pyqi/-/compare/2ffe04496faccc14c028872972df12740e41a2c4...cfeb9f324f548e4dc0b3f9e6af02dd3c80e09517

-- 
View it on GitLab: https://salsa.debian.org/med-team/pyqi/-/compare/2ffe04496faccc14c028872972df12740e41a2c4...cfeb9f324f548e4dc0b3f9e6af02dd3c80e09517
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/20200330/ed3d8e4f/attachment-0001.html>


More information about the debian-med-commit mailing list