Hello community,
here is the log from the commit of package python-feedgenerator for
openSUSE:Factory checked in at 2020-02-14 16:39:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-feedgenerator (Old)
and /work/SRC/openSUSE:Factory/.python-feedgenerator.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-feedgenerator"
Fri Feb 14 16:39:37 2020 rev:3 rq:774240 version:1.9.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-feedgenerator/python-feedgenerator.changes
2018-12-13 19:47:53.420743984 +0100
+++
/work/SRC/openSUSE:Factory/.python-feedgenerator.new.26092/python-feedgenerator.changes
2020-02-14 16:39:45.527665469 +0100
@@ -1,0 +2,9 @@
+Sun Feb 9 20:10:45 UTC 2020 - BenoƮt Monin <[email protected]>
+
+- update to version 1.9.1:
+ * Remove unnecessary files from source distribution
+ * Update PyPI classifiers
+- remove separate license file: now included in source tarball
+- add fix_encoding_in_setup_py.patch to fix build failure
+
+-------------------------------------------------------------------
Old:
----
LICENSE
feedgenerator-1.9.tar.gz
New:
----
feedgenerator-1.9.1.tar.gz
fix_encoding_in_setup_py.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-feedgenerator.spec ++++++
--- /var/tmp/diff_new_pack.NuLwQn/_old 2020-02-14 16:39:46.423665968 +0100
+++ /var/tmp/diff_new_pack.NuLwQn/_new 2020-02-14 16:39:46.423665968 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-feedgenerator
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-feedgenerator
-Version: 1.9
+Version: 1.9.1
Release: 0
Summary: Standalone version of django.utilsfeedgenerator, compatible
with Py3k
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/getpelican/feedgenerator
Source:
https://files.pythonhosted.org/packages/source/f/feedgenerator/feedgenerator-%{version}.tar.gz
-Source1:
https://raw.githubusercontent.com/getpelican/feedgenerator/master/LICENSE
+Patch0: fix_encoding_in_setup_py.patch
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
@@ -43,8 +43,7 @@
%prep
%setup -q -n feedgenerator-%{version}
-# add the missing licence
-cp %{SOURCE1} LICENSE
+%autopatch -p1
%build
%python_build
++++++ feedgenerator-1.9.tar.gz -> feedgenerator-1.9.1.tar.gz ++++++
++++ 490070 lines of diff (skipped)
++++++ fix_encoding_in_setup_py.patch ++++++
--- feedgenerator-1.9.1.orig/setup.py
+++ feedgenerator-1.9.1/setup.py
@@ -3,12 +3,14 @@
# Using setuptools rather than distutils to get the `develop` command
from setuptools import setup
+# Needed to specify the encoding
+from io import open
NAME = 'feedgenerator'
PACKAGES = ['feedgenerator', 'feedgenerator.django',
'feedgenerator.django.utils']
DESCRIPTION = 'Standalone version of django.utils.feedgenerator'
-LONG_DESCRIPTION = open('README.rst').read()
+LONG_DESCRIPTION = open('README.rst', encoding='utf-8').read()
URL = "https://github.com/getpelican/feedgenerator"