14
0
forked from pool/python-beren

Accepting request 750339 from Application:ERP:Tryton:5.0

Thanks for the hint, Tom

OBS-URL: https://build.opensuse.org/request/show/750339
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-beren?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal
2019-11-29 10:18:09 +00:00
committed by Git OBS Bridge
commit 4fdc842d14
5 changed files with 96 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

3
beren-0.6.2.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:96b6fd6b40533e576b0d7bd4a66dc59bffb6ac75452fe84370e61f62530a6a2a
size 24345

11
python-beren.changes Normal file
View File

@@ -0,0 +1,11 @@
-------------------------------------------------------------------
Mon Oct 21 10:19:24 UTC 2019 - Axel Braun <axel.braun@gmx.de>
- rename to python-beren
version 0.6.2
-------------------------------------------------------------------
Mon Aug 26 19:19:47 UTC 2019 - Axel Braun <axel.braun@gmx.de>
- version 0.5.6
initial build on OBS

58
python-beren.spec Normal file
View File

@@ -0,0 +1,58 @@
#
# spec file for package python-beren
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 Dr. Axel Braun <DocB@opensuse.org>
#
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%define modname beren
Name: python-%{modname}
Version: 0.6.2
Release: 0
Summary: Provides a REST client targeted at Orthanc REST API endpoints
License: GPL-3.0-or-later
Group: Development/Languages/Python
URL: https://github.com/teffalump/beren
Source: https://files.pythonhosted.org/packages/source/b/%{modname}/%{modname}-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module apiron >= 2.5.0 }
BuildRequires: fdupes
Requires: python-apiron >= 2.5.0
%python_subpackages
%description
python-beren provides a REST client targeted at Orthanc REST API endpoints
%prep
%setup -q -n %{modname}-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{python_sitelib}
%files %{python_files}
%license LICENSE
%doc README.md
%{python3_sitelib}/*
%changelog