- update to version 1.9.0

- Update master for stable/stein
  - OpenDev Migration Patch
  - Use opendev repository
  - Dropping the py35 testing
  - Add Python 3 Train unit tests

OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Factory/python-futurist?expand=0&rev=11
This commit is contained in:
Dirk Mueller 2019-10-17 08:28:59 +00:00 committed by Git OBS Bridge
parent 997361bf29
commit 2bfbd70d7d
5 changed files with 22 additions and 12 deletions

View File

@ -1,8 +1,8 @@
<services> <services>
<service mode="disabled" name="renderspec"> <service mode="disabled" name="renderspec">
<param name="input-template">https://raw.githubusercontent.com/openstack/rpm-packaging/stable/stein/openstack/futurist/futurist.spec.j2</param> <param name="input-template">https://raw.githubusercontent.com/openstack/rpm-packaging/stable/train/openstack/futurist/futurist.spec.j2</param>
<param name="output-name">python-futurist.spec</param> <param name="output-name">python-futurist.spec</param>
<param name="requirements">https://raw.githubusercontent.com/openstack/futurist/stable/stein/requirements.txt</param> <param name="requirements">https://raw.githubusercontent.com/openstack/futurist/stable/train/requirements.txt</param>
<param name="changelog-email">cloud-devel@suse.de</param> <param name="changelog-email">cloud-devel@suse.de</param>
<param name="changelog-provider">gh,openstack,futurist</param> <param name="changelog-provider">gh,openstack,futurist</param>
</service> </service>

View File

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

3
futurist-1.9.0.tar.gz Normal file
View File

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

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Thu Oct 17 08:28:51 UTC 2019 - cloud-devel@suse.de
- update to version 1.9.0
- Update master for stable/stein
- OpenDev Migration Patch
- Use opendev repository
- Dropping the py35 testing
- Add Python 3 Train unit tests
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:00:23 UTC 2019 - cloud-devel@suse.de Mon Apr 8 14:00:23 UTC 2019 - cloud-devel@suse.de

View File

@ -17,21 +17,19 @@
Name: python-futurist Name: python-futurist
Version: 1.8.1 Version: 1.9.0
Release: 0 Release: 0
Summary: Useful additions to futures, from the future. Summary: Useful additions to futures, from the future.
License: Apache-2.0 License: Apache-2.0
Group: Development/Languages/Python Group: Development/Languages/Python
URL: https://launchpad.net/futurist URL: https://launchpad.net/futurist
Source0: https://files.pythonhosted.org/packages/source/f/futurist/futurist-1.8.1.tar.gz Source0: https://files.pythonhosted.org/packages/source/f/futurist/futurist-1.9.0.tar.gz
BuildRequires: openstack-macros BuildRequires: openstack-macros
BuildRequires: python2-PrettyTable >= 0.7.1 BuildRequires: python2-PrettyTable >= 0.7.1
BuildRequires: python2-Sphinx
BuildRequires: python2-contextlib2 >= 0.4.0 BuildRequires: python2-contextlib2 >= 0.4.0
BuildRequires: python2-eventlet BuildRequires: python2-eventlet
BuildRequires: python2-futures >= 3.0.0 BuildRequires: python2-futures >= 3.0.0
BuildRequires: python2-monotonic >= 0.6 BuildRequires: python2-monotonic >= 0.6
BuildRequires: python2-openstackdocstheme
BuildRequires: python2-oslotest BuildRequires: python2-oslotest
BuildRequires: python2-pbr >= 2.0.0 BuildRequires: python2-pbr >= 2.0.0
BuildRequires: python2-setuptools BuildRequires: python2-setuptools
@ -50,12 +48,12 @@ BuildRequires: python3-six >= 1.10.0
BuildRequires: python3-stestr BuildRequires: python3-stestr
BuildRequires: python3-testscenarios BuildRequires: python3-testscenarios
Requires: python-PrettyTable >= 0.7.1 Requires: python-PrettyTable >= 0.7.1
Requires: python-monotonic >= 0.6
Requires: python-six >= 1.10.0 Requires: python-six >= 1.10.0
BuildArch: noarch BuildArch: noarch
%ifpython2 %ifpython2
Requires: python-contextlib2 >= 0.4.0 Requires: python-contextlib2 >= 0.4.0
Requires: python-futures >= 3.0.0 Requires: python-futures >= 3.0.0
Requires: python-monotonic >= 0.6
%endif %endif
%python_subpackages %python_subpackages
@ -63,14 +61,16 @@ Requires: python-futures >= 3.0.0
Useful additions to futures, from the future. Useful additions to futures, from the future.
%prep %prep
%autosetup -p1 -n futurist-1.8.1 %autosetup -p1 -n futurist-1.9.0
%py_req_cleanup %py_req_cleanup
%build %build
%{python_build} %{python_build}
# generate html docs # generate html docs
PBR_VERSION=1.8.1 sphinx-build -b html doc/source doc/build/html PBR_VERSION=1.9.0 %sphinx_build -b html doc/source doc/build/html
# remove the sphinx-build leftovers
rm -r doc/build/html/.{doctrees,buildinfo}
%install %install
%{python_install} %{python_install}