- Version update to 2.4.0:

* Fix parameter naming conflict: 'method_name' parameter from do_flickr_call() clashed with 'method_name' parameter required by the Flickr API method flickr.reflection.getMethodInfo (since 952c133
  * Fixed typos [ Pull request #86 ] (Daniel Hohard)
  * Fixed infinite recursion calling FlickrAccessToken.str()
  * Use latest pip and enable cache on travis [ Pull request #100 ] (Thijs Triemstra)
  * Properly include text files in setup.py [ Pull request #101 ] (Thijs Triemstra)
- Fix fdupes call

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flickrapi?expand=0&rev=13
This commit is contained in:
Tomáš Chvátal 2018-12-06 13:30:03 +00:00 committed by Git OBS Bridge
parent a9cc4172c6
commit bdceb5619d
4 changed files with 28 additions and 18 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:897bd7de9cd6ab878fa1a9816e4e58d317e447135e93d2f784ce9134610b7b99
size 28511

3
flickrapi-2.4.0.tar.gz Normal file
View File

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

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Thu Dec 6 13:28:39 UTC 2018 - Tomáš Chvátal <tchvatal@suse.com>
- Version update to 2.4.0:
* Fix parameter naming conflict: 'method_name' parameter from do_flickr_call() clashed with 'method_name' parameter required by the Flickr API method flickr.reflection.getMethodInfo (since 952c133
* Fixed typos [ Pull request #86 ] (Daniel Hohard)
* Fixed infinite recursion calling FlickrAccessToken.str()
* Use latest pip and enable cache on travis [ Pull request #100 ] (Thijs Triemstra)
* Properly include text files in setup.py [ Pull request #101 ] (Thijs Triemstra)
- Fix fdupes call
-------------------------------------------------------------------
Tue May 16 16:07:22 UTC 2017 - dmueller@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package python-flickrapi
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2018 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
@ -12,25 +12,24 @@
# 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/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-flickrapi
Version: 2.3
Version: 2.4.0
Release: 0
Url: http://stuvel.eu/projects/flickrapi
Summary: Python interface to Flickr
License: Python-2.0
Group: Development/Libraries/Python
Source0: https://pypi.io/packages/source/f/flickrapi/flickrapi-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: %{python_module requests }
BuildRequires: %{python_module requests-oauthlib }
BuildRequires: %{python_module requests-toolbelt }
BuildRequires: %{python_module setuptools }
BuildRequires: %{python_module six }
URL: http://stuvel.eu/projects/flickrapi
Source0: https://files.pythonhosted.org/packages/source/f/flickrapi/flickrapi-%{version}.tar.gz
BuildRequires: %{python_module requests-oauthlib}
BuildRequires: %{python_module requests-toolbelt}
BuildRequires: %{python_module requests}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: fdupes
BuildRequires: python-devel
BuildRequires: python-rpm-macros
@ -38,11 +37,11 @@ Requires: python-requests >= 2.4.3
Requires: python-requests-oauthlib >= 0.4.2
Requires: python-requests-toolbelt >= 0.3.1
Requires: python-six >= 1.8.0
BuildArch: noarch
%ifpython2
Provides: python-flickrapi-doc = %{version}
Obsoletes: python-flickrapi-doc < %{version}
%endif
BuildArch: noarch
%python_subpackages
%description
@ -61,11 +60,11 @@ sed -i "1d" flickrapi/__init__.py # Fix non-executable script
%install
%python_install
rm -rf %{buildroot}%{python_sitelib}/*.txt # Remove wrongly installed documentation
%fdupes %{buildroot}/%{_prefix}
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%defattr(-,root,root)
%doc LICENSE.txt README.md
%license LICENSE.txt
%doc README.md
%{python_sitelib}/*
%changelog