Hello community,

here is the log from the commit of package python-oslo.i18n for 
openSUSE:Factory checked in at 2015-08-27 08:54:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-oslo.i18n (Old)
 and      /work/SRC/openSUSE:Factory/.python-oslo.i18n.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-oslo.i18n"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-oslo.i18n/python-oslo.i18n.changes        
2015-07-03 00:17:21.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-oslo.i18n.new/python-oslo.i18n.changes   
2015-08-27 08:54:49.000000000 +0200
@@ -1,0 +2,63 @@
+Fri Jul 31 06:30:28 UTC 2015 - [email protected]
+
+- Unify spec file #2
+
+-------------------------------------------------------------------
+Wed Jul 29 10:29:24 UTC 2015 - [email protected]
+
+- Unify spec file. Use fedora compatible files macros
+
+-------------------------------------------------------------------
+Tue Jul 28 12:52:42 UTC 2015 - [email protected]
+
+- update to 2.2.0:
+  * Imported Translations from Transifex
+  * Updated from global requirements
+  * Fix mock use for 1.1.0
+  * Add requirements for pre-release test scripts
+  * Imported Translations from Transifex
+
+-------------------------------------------------------------------
+Wed Jul 15 07:14:37 UTC 2015 - [email protected]
+
+- update to 2.1.0:
+  * Support contextual and plural form of gettext functions
+  * Imported Translations from Transifex
+  * clarify translation policy
+  * Add tox target to find missing requirements
+  * Imported Translations from Transifex
+
+-------------------------------------------------------------------
+Wed Jun 24 07:08:03 UTC 2015 - [email protected]
+
+- update to 2.0.0:
+  * Updated from global requirements
+  * Remove oslo namespace package
+
+-------------------------------------------------------------------
+Fri Jun 12 15:07:36 UTC 2015 - [email protected]
+
+- Further reducing diff
+
+-------------------------------------------------------------------
+Fri Jun 12 15:04:45 UTC 2015 - [email protected]
+
+- Reduce diff between SUSE and RDO packaging:
+  * Add extra oslo.i18n-doc package
+
+-------------------------------------------------------------------
+Tue Jun  2 15:51:16 UTC 2015 - [email protected]
+
+- update to 1.7.0:
+  * Advertise support for Python3.4 / Remove support for Python 3.3
+  * Updated from global requirements
+  * Misplaced parenthesis causing confusion
+  * Remove run_cross_tests.sh
+  * Imported Translations from Transifex
+  * Uncap library requirements for liberty
+  * Standardize setup.cfg summary for oslo libs
+  * Updated from global requirements
+  * Move to hacking 0.10
+  * Update guideline doc of multiple use msg case
+
+-------------------------------------------------------------------

Old:
----
  oslo.i18n-1.5.0.tar.gz

New:
----
  oslo.i18n-2.2.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-oslo.i18n.spec ++++++
--- /var/tmp/diff_new_pack.cNEspy/_old  2015-08-27 08:54:49.000000000 +0200
+++ /var/tmp/diff_new_pack.cNEspy/_new  2015-08-27 08:54:49.000000000 +0200
@@ -16,48 +16,66 @@
 #
 
 
+%global sname oslo.i18n
+
 Name:           python-oslo.i18n
-Version:        1.5.0
+Version:        2.2.0
 Release:        0
-Summary:        osloi18n library
+Summary:        OpenStack i18n library
 License:        Apache-2.0
 Group:          Development/Languages/Python
-Url:            http://launchpad.net/oslo
-Source:         
https://pypi.python.org/packages/source/o/oslo.i18n/oslo.i18n-%{version}.tar.gz
+Url:            https://launchpad.net/%{sname}
+Source0:        
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
 BuildRequires:  python-Babel
 BuildRequires:  python-oslotest
 BuildRequires:  python-pbr
+BuildRequires:  python-setuptools
 Requires:       python-Babel >= 1.3
-Requires:       python-six >= 1.9
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
+Requires:       python-six >= 1.9.0
 BuildArch:      noarch
-%endif
 
 %description
-The oslo.i18n library contain utilities for working with
-internationalization (i18n) features, especially translation for text
-strings in an application or library.
+The oslo.i18n library contain utilities for working with internationalization
+(i18n) features, especially translation for text strings in an application
+or library.
+
+%package doc
+Summary:        Documentation for OpenStack i18n library
+Group:          Development/Languages/Python
+BuildRequires:  python-Sphinx
+BuildRequires:  python-oslosphinx
+
+%description doc
+Documentation for the oslo.i18n library.
 
 %prep
-%setup -q -n oslo.i18n-%{version}
+%setup -q -n %{sname}-%{version}
 
 %build
-python setup.py build
+%{__python2} setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%{__python2} setup.py install --skip-build --root %{buildroot}
+
+# generate html docs
+sphinx-build doc/source html
+# remove the sphinx-build leftovers
+rm -rf html/.{doctrees,buildinfo}
 
 %check
-export PYTHONPATH="%{python_sitelib}:%{buildroot}%{python_sitelib}"
+export PYTHONPATH="%{python2_sitelib}:%{buildroot}%{python2_sitelib}"
 export PYTHON="python -S"
 testr init && testr run --parallel
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS LICENSE README.rst ChangeLog
-%{python_sitelib}/*
+%doc AUTHORS ChangeLog CONTRIBUTING.rst HACKING.rst LICENSE PKG-INFO README.rst
+%{python2_sitelib}/oslo_i18n
+%{python2_sitelib}/*.egg-info
+
+%files doc
+%doc html
+%doc LICENSE
 
 %changelog

++++++ oslo.i18n-1.5.0.tar.gz -> oslo.i18n-2.2.0.tar.gz ++++++
++++ 1616 lines of diff (skipped)


Reply via email to