forked from pool/python-wptools
Accepting request 558346 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/558346 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-wptools?expand=0&rev=2
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
Index: wptools-0.4/setup.py
|
Index: wptools-0.4.5/setup.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- wptools-0.4.orig/setup.py
|
--- wptools-0.4.5.orig/setup.py
|
||||||
+++ wptools-0.4/setup.py
|
+++ wptools-0.4.5/setup.py
|
||||||
@@ -2,8 +2,6 @@
|
@@ -2,8 +2,6 @@
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
@@ -13,7 +13,7 @@ Index: wptools-0.4/setup.py
|
|||||||
|
|
||||||
@@ -12,7 +10,16 @@ setup(
|
@@ -12,7 +10,16 @@ setup(
|
||||||
name='wptools',
|
name='wptools',
|
||||||
version='0.4',
|
version='0.4.5',
|
||||||
description='Wikipedia tools (for Humans)',
|
description='Wikipedia tools (for Humans)',
|
||||||
- long_description=readme + '\n\n' + history,
|
- long_description=readme + '\n\n' + history,
|
||||||
+ long_description=
|
+ long_description=
|
||||||
|
|||||||
@@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 19 09:55:52 UTC 2017 - badshah400@gmail.com
|
||||||
|
|
||||||
|
- Update to version 0.4.5:
|
||||||
|
* Fixed TypeError on Windows 10 (gh#siznax/wptools#95)
|
||||||
|
* Fixed RESTBase LookupError on slash titles
|
||||||
|
(gh#siznax/wptools#94)
|
||||||
|
* Added boxterm param for more Infobox reach
|
||||||
|
(gh#siznax/wptools#91)
|
||||||
|
* Improved stress tests, wptool CLI script output
|
||||||
|
* Fixed get_imageinfo() issue (gh#siznax/wptools#93)
|
||||||
|
* Getting ALL Wikidata (gh#siznax/wptools#56)
|
||||||
|
* Surfaced redirects, disambiguation links
|
||||||
|
(gh#siznax/wptools#25)
|
||||||
|
* Increased test coverage to 95%, pylint score 10.0
|
||||||
|
* Added more page data, split off expensive queries
|
||||||
|
* Implemented basic category and site functionality
|
||||||
|
* Changed page._WIKIPROPS to wikidata.LABELS
|
||||||
|
* Refactored attributes to only cache, data, flags, params
|
||||||
|
* Unified Wikimedia APIs access pattern via wptools.core
|
||||||
|
- Rebase python-wptools-avoid-reading-readme.patch to apply
|
||||||
|
cleanly against updated sources.
|
||||||
|
- Run tests (BuildRequires: python3-unittest2); this only works
|
||||||
|
with py3 unittest module, so only enable tests conditionally.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 25 07:47:36 UTC 2017 - aloisio@gmx.com
|
Wed Oct 25 07:47:36 UTC 2017 - aloisio@gmx.com
|
||||||
|
|
||||||
|
|||||||
@@ -19,12 +19,12 @@
|
|||||||
%define pyname wptools
|
%define pyname wptools
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-wptools
|
Name: python-wptools
|
||||||
Version: 0.4
|
Version: 0.4.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Wikipedia tools (for Humans)
|
Summary: Wikipedia tools (for Humans)
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/siznax/wptools/
|
Url: https://github.com/siznax/wptools/
|
||||||
Source: https://files.pythonhosted.org/packages/source/w/wptools/%{pyname}-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/w/wptools/%{pyname}-%{version}.tar.gz
|
||||||
# PATCH-FIX-UPSTREAM python-wptools-avoid-reading-readme.patch badshah400@gmail.com -- README.rst contains numerous spurious characters that are not readable in ascii. Skip reading this file in setup.py and manually insert a long description text instead
|
# PATCH-FIX-UPSTREAM python-wptools-avoid-reading-readme.patch badshah400@gmail.com -- README.rst contains numerous spurious characters that are not readable in ascii. Skip reading this file in setup.py and manually insert a long description text instead
|
||||||
Patch0: python-wptools-avoid-reading-readme.patch
|
Patch0: python-wptools-avoid-reading-readme.patch
|
||||||
@@ -32,6 +32,7 @@ BuildRequires: %{python_module devel}
|
|||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
BuildRequires: python3-unittest2
|
||||||
Requires: python-certifi >= 2017.7.27.1
|
Requires: python-certifi >= 2017.7.27.1
|
||||||
Requires: python-html2text >= 2016.9.19
|
Requires: python-html2text >= 2016.9.19
|
||||||
Requires: python-lxml >= 3.8.0
|
Requires: python-lxml >= 3.8.0
|
||||||
@@ -62,6 +63,12 @@ sed -i '1d' scripts/wptool.py
|
|||||||
%python_install
|
%python_install
|
||||||
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
|
%check
|
||||||
|
# TESTS ONLY WORK WITH PY3 UNITTEST
|
||||||
|
%ifpython3
|
||||||
|
%python_exec setup.py test
|
||||||
|
%endif
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc HISTORY.rst LICENSE README.rst
|
%doc HISTORY.rst LICENSE README.rst
|
||||||
%python3_only %{_bindir}/wptool
|
%python3_only %{_bindir}/wptool
|
||||||
|
|||||||
3
wptools-0.4.5.tar.gz
Normal file
3
wptools-0.4.5.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5de6e109873cf601e7a0b2176ed4f0af53e4064ce031314642007a0655ef68ae
|
||||||
|
size 28384
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:376569b3c9808e66db64e0f06f58655faf88685f33258606cc8fb4787da19e68
|
|
||||||
size 26278
|
|
||||||
Reference in New Issue
Block a user