15
0

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
This commit is contained in:
Jan Matejek
2017-07-12 13:57:59 +00:00
committed by Git OBS Bridge
commit f5ee7361b4
7 changed files with 121 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.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
*.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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

15
_service Normal file
View File

@@ -0,0 +1,15 @@
<services>
<service mode="disabled" name="tar_scm">
<param name="filename">python-openqa_client</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="url">git://github.com/os-autoinst/openQA-python-client.git</param>
<param name="scm">git</param>
<param name="revision">1.3.0</param>
<param name="changesgenerate">enable</param>
</service>
<service mode="disabled" name="recompress">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
<service mode="disabled" name="set_version"/>
</services>

4
_servicedata Normal file
View File

@@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://github.com/os-autoinst/openQA-python-client.git</param>
<param name="changesrevision">184e6c8415ef3b0667caf8f8a440007d6b98ba93</param></service></servicedata>

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51d95a9f6a3ab47578106c57549642c598687f86c551240c716671a85d1d247a
size 12772

View File

@@ -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

55
python-openqa_client.spec Normal file
View File

@@ -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