commit 39eec87cab7e4ebd29622785f1df5d20e65fac8a8f7656826ddc9b077925fef5 Author: Jan Matejek Date: Wed Jul 12 13:57:59 2017 +0000 Accepting request 508959 from home:mimi_vx python openqa client OBS-URL: https://build.opensuse.org/request/show/508959 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-openqa_client?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..37a8eaa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,24 @@ +*.changes merge=merge-changes +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8b731c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.obscpio +*.osc +_build.* +.pbuild diff --git a/_service b/_service new file mode 100644 index 0000000..e01d320 --- /dev/null +++ b/_service @@ -0,0 +1,15 @@ + + + python-openqa_client + @PARENT_TAG@ + git://github.com/os-autoinst/openQA-python-client.git + git + 1.3.0 + enable + + + xz + *.tar + + + diff --git a/_servicedata b/_servicedata new file mode 100644 index 0000000..f62dd72 --- /dev/null +++ b/_servicedata @@ -0,0 +1,4 @@ + + + git://github.com/os-autoinst/openQA-python-client.git + 184e6c8415ef3b0667caf8f8a440007d6b98ba93 \ No newline at end of file diff --git a/python-openqa_client-1.3.0.tar.xz b/python-openqa_client-1.3.0.tar.xz new file mode 100644 index 0000000..592faf9 --- /dev/null +++ b/python-openqa_client-1.3.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d95a9f6a3ab47578106c57549642c598687f86c551240c716671a85d1d247a +size 12772 diff --git a/python-openqa_client.changes b/python-openqa_client.changes new file mode 100644 index 0000000..125bcd1 --- /dev/null +++ b/python-openqa_client.changes @@ -0,0 +1,20 @@ +------------------------------------------------------------------- +Sat Jul 08 15:38:41 UTC 2017 - mimi.vx@gmail.com + +- Update to version 1.3.0: + * Drop functions I deprecated months ago + * update constants from upstream + * use tuples not lists for constants + * fix a one item tuple + * update gitignore + * drop unnecessary comment + * Add version to __init__.py and add a release script + * Update README to mention const module + * Add a CHANGELOG to prepare for a proper release +- move to singlespec + +------------------------------------------------------------------- +Mon Jun 29 12:31:41 UTC 2015 - lnussel@suse.de + +- initial package + diff --git a/python-openqa_client.spec b/python-openqa_client.spec new file mode 100644 index 0000000..e1263c1 --- /dev/null +++ b/python-openqa_client.spec @@ -0,0 +1,55 @@ +# +# spec file for package python-openqa_client +# +# Copyright (c) 2017 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 +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-openqa_client +Version: 1.3.0 +Release: 0 +Summary: Python openQA client library +License: GPL-2.0+ +Group: Development/Languages/Python +Url: https://github.com/os-autoinst/openQA-python-client +Source: https://github.com/os-autoinst/openQA-python-client/%{name}-%{version}.tar.xz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-requests +Requires: python-six +BuildArch: noarch +%python_subpackages + +%description +This is a client for the openQA API, based on requests. + +%prep +%setup -q + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc README.md +%license COPYING +%{python_sitelib}/* +%pycache_only %{python_sitelib}/*/__pycache__/* + +%changelog