From af745c9360a819c1b76c412329bf0218f2a92e305f80dbfc62362927c4812943 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 17 Jul 2018 07:48:10 +0000 Subject: [PATCH 1/2] Accepting request 623188 from home:apersaud:branches:devel:languages:python - specfile: * remove devel requirement - update to version 1.7.0: * A new param namespace object, which in future will allow subclasses of Parameterized to have much cleaner namespaces (#230). * Started testing on python 3.7-dev (#223). * param.version now provides functions to simplify dependants' setup.py/setup.cfg files (see pyviz/autover#49). OBS-URL: https://build.opensuse.org/request/show/623188 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-param?expand=0&rev=12 --- param-1.6.1.tar.gz | 3 --- param-1.7.0.tar.gz | 3 +++ python-param.changes | 14 ++++++++++++++ python-param.spec | 3 +-- 4 files changed, 18 insertions(+), 5 deletions(-) delete mode 100644 param-1.6.1.tar.gz create mode 100644 param-1.7.0.tar.gz diff --git a/param-1.6.1.tar.gz b/param-1.6.1.tar.gz deleted file mode 100644 index c232030..0000000 --- a/param-1.6.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a41e6fc6ff48f6a0c0403e97b500d7788f11c5b06278c93f3265510d5445115 -size 54805 diff --git a/param-1.7.0.tar.gz b/param-1.7.0.tar.gz new file mode 100644 index 0000000..2296d7e --- /dev/null +++ b/param-1.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02307e39323ec7c01aa8874e6512e67e441037a1527196fe4f1c4b00f931cae7 +size 56535 diff --git a/python-param.changes b/python-param.changes index e120b39..f1714d8 100644 --- a/python-param.changes +++ b/python-param.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Mon Jul 16 16:11:19 UTC 2018 - arun@gmx.de + +- specfile: + * remove devel requirement + +- update to version 1.7.0: + * A new param namespace object, which in future will allow + subclasses of Parameterized to have much cleaner namespaces + (#230). + * Started testing on python 3.7-dev (#223). + * param.version now provides functions to simplify dependants' + setup.py/setup.cfg files (see pyviz/autover#49). + ------------------------------------------------------------------- Fri May 11 23:11:13 UTC 2018 - arun@gmx.de diff --git a/python-param.spec b/python-param.spec index 251388d..32cf09c 100644 --- a/python-param.spec +++ b/python-param.spec @@ -18,14 +18,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-param -Version: 1.6.1 +Version: 1.7.0 Release: 0 Summary: Declarative Python programming using Parameters License: BSD-3-Clause Group: Development/Languages/Python URL: http://ioam.github.com/param/ Source: https://files.pythonhosted.org/packages/source/p/param/param-%{version}.tar.gz -BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros From e691cd5f2c02760239918da93282dc0327433e2b603d2cbd91b7017142369818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 17 Jul 2018 08:52:08 +0000 Subject: [PATCH 2/2] - Switch to github tarball and enable tests. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-param?expand=0&rev=13 --- param-1.7.0.tar.gz | 3 --- python-param.changes | 5 +++++ python-param.spec | 8 +++++++- v1.7.0.tar.gz | 3 +++ 4 files changed, 15 insertions(+), 4 deletions(-) delete mode 100644 param-1.7.0.tar.gz create mode 100644 v1.7.0.tar.gz diff --git a/param-1.7.0.tar.gz b/param-1.7.0.tar.gz deleted file mode 100644 index 2296d7e..0000000 --- a/param-1.7.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02307e39323ec7c01aa8874e6512e67e441037a1527196fe4f1c4b00f931cae7 -size 56535 diff --git a/python-param.changes b/python-param.changes index f1714d8..366119e 100644 --- a/python-param.changes +++ b/python-param.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Jul 17 08:51:50 UTC 2018 - tchvatal@suse.com + +- Switch to github tarball and enable tests. + ------------------------------------------------------------------- Mon Jul 16 16:11:19 UTC 2018 - arun@gmx.de diff --git a/python-param.spec b/python-param.spec index 32cf09c..686a073 100644 --- a/python-param.spec +++ b/python-param.spec @@ -24,7 +24,9 @@ Summary: Declarative Python programming using Parameters License: BSD-3-Clause Group: Development/Languages/Python URL: http://ioam.github.com/param/ -Source: https://files.pythonhosted.org/packages/source/p/param/param-%{version}.tar.gz +Source0: https://github.com/ioam/param/archive/v%{version}.tar.gz +BuildRequires: %{python_module nose} +BuildRequires: %{python_module numpy} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -45,6 +47,7 @@ as part of other projects. %prep %setup -q -n param-%{version} +sed -i -e 's:version=get_setup_version("param"):version="%{version}":g' setup.py %build %python_build @@ -53,6 +56,9 @@ as part of other projects. %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} +%check +%python_expand nosetests-%{$python_bin_suffix} + %files %{python_files} %license LICENSE.txt %doc README.rst diff --git a/v1.7.0.tar.gz b/v1.7.0.tar.gz new file mode 100644 index 0000000..3b1bbc3 --- /dev/null +++ b/v1.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324c97d35ba3c62bc1ac3057991604fbb18c04c6ebcbe5e8d1b6d61bf5ec3bc7 +size 86550