1
0

Accepting request 701790 from home:pgajdos

- version update to 3.5
  * Fix DM endpoint handling
- added patches
  fix test for PostDirectMessage endpoint with new data
  + python-python-twitter-fix-test.patch
- run tests

OBS-URL: https://build.opensuse.org/request/show/701790
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-twitter?expand=0&rev=7
This commit is contained in:
2019-05-09 12:53:32 +00:00
committed by Git OBS Bridge
parent 2c96980327
commit 91a689b385
5 changed files with 58 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-python-twitter
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 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
@@ -17,23 +17,32 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%ifarch %{ix86}
# (type(resp[0]) is int) is not true for python 2.7, as it is long
%define skip -k 'not (testGetFollowerIDsPaged or testGetFollowersIDs or testGetRetweeters)'
%endif
%define oldpython python
Name: python-python-twitter
Version: 3.4.2
Version: 3.5
Release: 0
Summary: A Python wrapper around the Twitter API
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/bear/python-twitter
Source: https://files.pythonhosted.org/packages/source/p/python-twitter/python-twitter-%{version}.tar.gz
Source: https://github.com/bear/python-twitter/archive/v%{version}.tar.gz
# https://github.com/bear/python-twitter/commit/f7eb83d9dca3ba0ee93e629ba5322732f99a3a30
# fix test for PostDirectMessage endpoint with new data
Patch0: python-python-twitter-fix-test.patch
BuildRequires: %{python_module pytest-runner}
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module future}
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests-oauthlib}
BuildRequires: %{python_module requests}
BuildRequires: %{python_module responses}
# /SECTION
BuildRequires: fdupes
Requires: python-future
@@ -55,7 +64,9 @@ which can be used using this library.
%prep
%setup -q -n python-twitter-%{version}
sed -i '1s/#!//' twitter/*.py
%patch0 -p1
sed -i -e '/^#!\/usr\/bin\/env/d' twitter/*.py
echo %skip
%build
%python_build
@@ -64,8 +75,11 @@ sed -i '1s/#!//' twitter/*.py
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest %{?skip}
%files %{python_files}
%doc AUTHORS.rst CHANGES README.rst GAE.rst
%doc AUTHORS.rst CHANGES README.rst GAE.rst NOTICE
%license LICENSE
%{python_sitelib}/*