Hello community,

here is the log from the commit of package python-sphinxcontrib-issuetracker 
for openSUSE:Factory checked in at 2013-01-20 08:18:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-issuetracker (Old)
 and      /work/SRC/openSUSE:Factory/.python-sphinxcontrib-issuetracker.new 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-sphinxcontrib-issuetracker", Maintainer is ""

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-sphinxcontrib-issuetracker/python-sphinxcontrib-issuetracker.changes
      2012-03-24 20:10:24.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-issuetracker.new/python-sphinxcontrib-issuetracker.changes
 2013-01-20 08:18:21.000000000 +0100
@@ -1,0 +2,17 @@
+Tue Jan 15 19:40:31 UTC 2013 - p.drou...@gmail.com
+
+- Initial python3 support
+
+-------------------------------------------------------------------
+Tue Jan 15 18:17:56 UTC 2013 - p.drou...@gmail.com
+- Update to version 0.10.1:
+  * Fix README rendering on PyPI
+  * #1: Fix test failure on Python 3
+- Update to version 0.10:
+  * Extension now hosted at
+    https://github.com/lunaryorn/sphinxcontrib-issuetracker
+  * Use requests library for HTTP requests
+  * Consider launchpad issues closed only if all referenced tasks are completed
+  * Support Python 3 (with exception of ``launchpad`` and ``debianbts`` 
trackers)
+
+-------------------------------------------------------------------
New Changes file:

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-issuetracker.new/python3-sphinxcontrib-issuetracker.changes
        2013-01-20 08:18:21.000000000 +0100
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Tue Jan 15 19:40:46 UTC 2013 - p.drou...@gmail.com
+
+- Initial python3 support
+

Old:
----
  sphinxcontrib-issuetracker-0.9.tar.gz

New:
----
  python3-sphinxcontrib-issuetracker.changes
  python3-sphinxcontrib-issuetracker.spec
  sphinxcontrib-issuetracker-0.10.1.tar.gz

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

Other differences:
------------------
++++++ python-sphinxcontrib-issuetracker.spec ++++++
--- /var/tmp/diff_new_pack.tXfw5H/_old  2013-01-20 08:18:22.000000000 +0100
+++ /var/tmp/diff_new_pack.tXfw5H/_new  2013-01-20 08:18:22.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-sphinxcontrib-issuetracker
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 Name:           python-sphinxcontrib-issuetracker
-Version:        0.9
+Version:        0.10.1
 Release:        0
 Url:            http://packages.python.org/sphinxcontrib-issuetracker
 Summary:        Sphinx integration with different issuetrackers
@@ -26,7 +26,9 @@
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
+BuildRequires: python-requests
 BuildRequires:  python-Sphinx
+Requires:      python-requests
 Requires:       python-Sphinx
 %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()")}
@@ -54,7 +56,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CREDITS LICENSE README
+%doc CREDITS LICENSE README.rst CHANGES.rst
 %{python_sitelib}/*
 
 %changelog

++++++ python3-sphinxcontrib-issuetracker.spec ++++++
#
# spec file for package python3-sphinxcontrib-issuetracker
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#

Name:           python3-sphinxcontrib-issuetracker
Version:        0.10.1
Release:        0
Url:            http://packages.python.org/sphinxcontrib-issuetracker
Summary:        Sphinx integration with different issuetrackers
License:        BSD-2-Clause
Group:          Development/Languages/Python
Source:         
http://pypi.python.org/packages/source/s/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python3
BuildRequires:  python3-devel
BuildRequires:  python3-distribute
BuildRequires:  python3-requests
BuildRequires:  python3-Sphinx
Requires:               python3-requests
Requires:       python3-Sphinx
BuildArch:      noarch

%description
A Sphinx extension to reference issues in issue trackers, either explicitly
with an "issue" role or optionally implicitly by issue ids like ``#10`` in
plaintext.

%prep
%setup -q -n sphinxcontrib-issuetracker-%{version}

%build
python3 setup.py build
#cd doc && make html && rm -r _build/html/.buildinfo # Build HTML documentation

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}

%check
python3 setup.py test

%files
%defattr(-,root,root,-)
%doc CREDITS LICENSE README.rst CHANGES.rst
%{python3_sitelib}/*

%changelog
++++++ sphinxcontrib-issuetracker-0.9.tar.gz -> 
sphinxcontrib-issuetracker-0.10.1.tar.gz ++++++
++++ 3173 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to