From f75843e08b1f47e894d45e027e0ad520e58217d0f6ed324cd4537b3deb89b8dd Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 06:19:32 +0000 Subject: [PATCH 1/8] - Don't build with python2 (and thus we don't need unittest2 in Factory). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=13 --- python-osc-tiny.changes | 6 ++++++ python-osc-tiny.spec | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/python-osc-tiny.changes b/python-osc-tiny.changes index 686b5c5..478cfb9 100644 --- a/python-osc-tiny.changes +++ b/python-osc-tiny.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Jun 22 06:18:40 UTC 2020 - Matej Cepl + +- Don't build with python2 (and thus we don't need unittest2 + in Factory). + ------------------------------------------------------------------- Tue Jun 2 14:00:34 UTC 2020 - pgajdos@suse.com diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index 2eb182a..ab6d29e 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -17,7 +17,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%bcond_without python2 +%define skip_python2 1 Name: python-osc-tiny Version: 0.2.2 Release: 0 From 22e19b4f1e33a101ed8d93ca2b38ef148acdc30440dd58315a9adac9c0f4d756 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 06:32:17 +0000 Subject: [PATCH 2/8] Fix SPEC file OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=14 --- python-osc-tiny.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index ab6d29e..86f163d 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -17,7 +17,6 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%define skip_python2 1 Name: python-osc-tiny Version: 0.2.2 Release: 0 From da6cb2afdbc51dd2238b1d719b962005049ad04389ee59e83f415a4ef719e094 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 06:34:42 +0000 Subject: [PATCH 3/8] Fix SPEC file OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=15 --- python-osc-tiny.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index 86f163d..43f844f 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -17,6 +17,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} +@build_with python2 Name: python-osc-tiny Version: 0.2.2 Release: 0 From b0c62a6c95cdeb3be111eb67cbd147a3758e9984028f57bcfbdfb5baf1dcef03 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 06:36:36 +0000 Subject: [PATCH 4/8] Fix SPEC file OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=16 --- python-osc-tiny.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index 43f844f..f8a8389 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -17,7 +17,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -@build_with python2 +%bcond_with python2 Name: python-osc-tiny Version: 0.2.2 Release: 0 From e36a2b116a4ddcc0db293a2ba910966c7eb4cb727b00d888259106ccdbe50d0d Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 11:42:35 +0000 Subject: [PATCH 5/8] Make Python2 conditional OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=17 --- python-osc-tiny.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index f8a8389..fd4e4d8 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -17,7 +17,12 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} + +%if 0%{?suse_version} > 1500 %bcond_with python2 +%else +%bcond_without python2 +%endif Name: python-osc-tiny Version: 0.2.2 Release: 0 From a9e56f726a05636d8e57a496399a18fc486a15a968f71a5c6ada730e8b633b55 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 11:43:02 +0000 Subject: [PATCH 6/8] Fix changes OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=18 --- python-osc-tiny.changes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-osc-tiny.changes b/python-osc-tiny.changes index 478cfb9..ffb4ba9 100644 --- a/python-osc-tiny.changes +++ b/python-osc-tiny.changes @@ -1,8 +1,8 @@ ------------------------------------------------------------------- Mon Jun 22 06:18:40 UTC 2020 - Matej Cepl -- Don't build with python2 (and thus we don't need unittest2 - in Factory). +- Don't build with python2 (and thus we don't need unittest2) + in Factory. ------------------------------------------------------------------- Tue Jun 2 14:00:34 UTC 2020 - pgajdos@suse.com From 1a46e0c5a464b2ec698394fe29ff7bd72847a127419a1aa3ea05ef2ec942bb17 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 22 Jun 2020 13:13:24 +0000 Subject: [PATCH 7/8] Accepting request 816368 from devel:languages:python revert OBS-URL: https://build.opensuse.org/request/show/816368 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=19 --- python-osc-tiny.changes | 6 ------ python-osc-tiny.spec | 5 ----- 2 files changed, 11 deletions(-) diff --git a/python-osc-tiny.changes b/python-osc-tiny.changes index ffb4ba9..686b5c5 100644 --- a/python-osc-tiny.changes +++ b/python-osc-tiny.changes @@ -1,9 +1,3 @@ -------------------------------------------------------------------- -Mon Jun 22 06:18:40 UTC 2020 - Matej Cepl - -- Don't build with python2 (and thus we don't need unittest2) - in Factory. - ------------------------------------------------------------------- Tue Jun 2 14:00:34 UTC 2020 - pgajdos@suse.com diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index fd4e4d8..2eb182a 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -17,12 +17,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} - -%if 0%{?suse_version} > 1500 -%bcond_with python2 -%else %bcond_without python2 -%endif Name: python-osc-tiny Version: 0.2.2 Release: 0 From f92aaf233a0c40514e27d499d323df32d22f502e8b7259594ee29a1d3abf51ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Mon, 29 Jun 2020 07:54:42 +0000 Subject: [PATCH 8/8] Accepting request 817606 from home:apritschet:branches:openSUSE:Factory Version update to 0.2.3 adds the `distributions` extension OBS-URL: https://build.opensuse.org/request/show/817606 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=20 --- osc-tiny-0.2.2.tar.gz | 3 --- osc-tiny-0.2.3.tar.gz | 3 +++ python-osc-tiny.changes | 6 ++++++ python-osc-tiny.spec | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) delete mode 100644 osc-tiny-0.2.2.tar.gz create mode 100644 osc-tiny-0.2.3.tar.gz diff --git a/osc-tiny-0.2.2.tar.gz b/osc-tiny-0.2.2.tar.gz deleted file mode 100644 index a341041..0000000 --- a/osc-tiny-0.2.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cd776c72b82892bae6a8438a7ca63ef597272ca1eed2d17d732974cbe0ca7b3 -size 35108 diff --git a/osc-tiny-0.2.3.tar.gz b/osc-tiny-0.2.3.tar.gz new file mode 100644 index 0000000..a20db0a --- /dev/null +++ b/osc-tiny-0.2.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609633edfd1dd825391dcfcf3b11067aab8faa58d22963116284f201879baad5 +size 35934 diff --git a/python-osc-tiny.changes b/python-osc-tiny.changes index 686b5c5..e38d7e0 100644 --- a/python-osc-tiny.changes +++ b/python-osc-tiny.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Jun 29 06:38:31 UTC 2020 - Andreas Hasenkopf + +- version update to 0.2.3 + * Added the `distributions` extension + ------------------------------------------------------------------- Tue Jun 2 14:00:34 UTC 2020 - pgajdos@suse.com diff --git a/python-osc-tiny.spec b/python-osc-tiny.spec index 2eb182a..ead4189 100644 --- a/python-osc-tiny.spec +++ b/python-osc-tiny.spec @@ -1,7 +1,7 @@ # # spec file for package python-osc-tiny # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-osc-tiny -Version: 0.2.2 +Version: 0.2.3 Release: 0 Summary: Client API for openSUSE BuildService License: MIT