[Pkg-freeipa-devel] [Git][freeipa-team/pytest-sourceorder][master] 2 commits: Bump version to 0.5

Timo Aaltonen gitlab at salsa.debian.org
Thu May 3 10:34:47 BST 2018


Timo Aaltonen pushed to branch master at FreeIPA packaging / pytest-sourceorder


Commits:
5d9bfc06 by Petr Viktorin at 2016-01-26T13:07:40+01:00
Bump version to 0.5

- - - - -
f2aadfb5 by Timo Aaltonen at 2016-03-28T09:33:59+03:00
initial packaging

- - - - -


9 changed files:

- + debian/changelog
- + debian/compat
- + debian/control
- + debian/copyright
- + debian/rules
- + debian/source/format
- + debian/watch
- python-pytest-sourceorder.spec
- setup.py


Changes:

=====================================
debian/changelog
=====================================
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pytest-sourceorder (0.5-1) unstable; urgency=low
+
+  * Initial release. (Closes: #819408)
+
+ -- Timo Aaltonen <tjaalton at debian.org>  Mon, 28 Mar 2016 08:46:03 +0300


=====================================
debian/compat
=====================================
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9


=====================================
debian/control
=====================================
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: pytest-sourceorder
+Maintainer: Debian FreeIPA Team <pkg-freeipa-devel at lists.alioth.debian.org>
+Uploaders: Timo Aaltonen <tjaalton at debian.org>
+Section: python
+Priority: optional
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+ python3-all,
+ python3-setuptools,
+Standards-Version: 3.9.7
+Homepage: https://fedorahosted.org/python-pytest-sourceorder/
+Vcs-Git: https://anonscm.debian.org/git/pkg-freeipa/pytest-sourceorder.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-freeipa/pytest-sourceorder.git
+
+Package: python-pytest-sourceorder
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Test-ordering plugin for pytest (Python 2)
+ A pytest plugin for ensuring tests within a class are run in source order.
+ .
+ This package installes the library for Python 2.
+
+Package: python3-pytest-sourceorder
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Test-ordering plugin for pytest3 (Python 3)
+ A pytest plugin for ensuring tests within a class are run in source order.
+ .
+ This package installes the library for Python 3.


=====================================
debian/copyright
=====================================
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: pytest-sourceorder
+Source: https://fedorahosted.org/python-pytest-sourceorder/
+
+Files: *
+Copyright: 2013-2015 Red Hat Inc.
+License: GPL-3
+
+Files: debian/*
+Copyright: 2016 Timo Aaltonen <tjaalton at debian.org>
+License: GPL-3
+
+License: GPL-3
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".


=====================================
debian/rules
=====================================
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.8.5 at
+# Mon, 28 Mar 2016 08:46:03 +0300
+export PYBUILD_NAME=pytest-sourceorder
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+


=====================================
debian/source/format
=====================================
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+1.0


=====================================
debian/watch
=====================================
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# please also check http://pypi.debian.net/pytest-sourceorder/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/pytest-sourceorder/pytest-sourceorder-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file


=====================================
python-pytest-sourceorder.spec
=====================================
--- a/python-pytest-sourceorder.spec
+++ b/python-pytest-sourceorder.spec
@@ -12,12 +12,12 @@
 
 %global srcname pytest-sourceorder
 %global modulename pytest_sourceorder
-%global srcversion 0.4
+%global srcversion 0.5
 %global versionedname %{srcname}-%{srcversion}
 
 Name: python-%{srcname}
 Version: %{srcversion}
-Release: 3%{?dist}
+Release: 1%{?dist}
 Summary: Test-ordering plugin for pytest
 
 License: GPLv3+
@@ -123,11 +123,14 @@ popd
 %doc README.rst
 %{python3_sitelib}/%{modulename}-%{version}-py%{python3_version}.egg-info
 %{python3_sitelib}/%{modulename}.py
-%{python3_sitelib}/__pycache__/%{modulename}.cpython-3?.py*
+%{python3_sitelib}/__pycache__/%{modulename}.cpython-3*.py*
 %endif
 
 
 %changelog
+* Mon Mar 2 2015 Petr Viktorin <encukou at gmail.com> - 0.5-1
+- Add support for parametrized tests under Python 3
+
 * Mon Mar 2 2015 Petr Viktorin <encukou at gmail.com> - 0.4-3
 - Don't use licence macro on RHEL 6
 


=====================================
setup.py
=====================================
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ with io.open('README.rst', 'rt', encoding='utf-8') as f:
 
 setup_args = dict(
     name = "pytest-sourceorder",
-    version = "0.4",
+    version = "0.5",
     description = "Test-ordering plugin for pytest",
     long_description = readme_contents,
     url = "https://fedorahosted.org/python-pytest-sourceorder/",



View it on GitLab: https://salsa.debian.org/freeipa-team/pytest-sourceorder/compare/78981cbc636dd574527ee0a68d9f57526fec3493...f2aadfb5b6b0977859fb25ea677e7f6235ecf66b

---
View it on GitLab: https://salsa.debian.org/freeipa-team/pytest-sourceorder/compare/78981cbc636dd574527ee0a68d9f57526fec3493...f2aadfb5b6b0977859fb25ea677e7f6235ecf66b
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/pkg-freeipa-devel/attachments/20180503/cc33eacc/attachment-0001.html>


More information about the Pkg-freeipa-devel mailing list