Hello community,
here is the log from the commit of package python-pgmagick for openSUSE:Factory
checked in at 2019-06-25 22:21:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pgmagick (Old)
and /work/SRC/openSUSE:Factory/.python-pgmagick.new.4615 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pgmagick"
Tue Jun 25 22:21:57 2019 rev:2 rq:711741 version:0.7.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pgmagick/python-pgmagick.changes
2018-05-15 10:33:21.676277887 +0200
+++
/work/SRC/openSUSE:Factory/.python-pgmagick.new.4615/python-pgmagick.changes
2019-06-25 22:21:57.801112820 +0200
@@ -1,0 +2,5 @@
+Mon Jun 24 09:44:27 UTC 2019 - Bernhard Wiedemann <[email protected]>
+
+- Add reproducible.patch to sort dir entries (boo#1041090)
+
+-------------------------------------------------------------------
New:
----
reproducible.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pgmagick.spec ++++++
--- /var/tmp/diff_new_pack.G2BJ1i/_old 2019-06-25 22:21:58.429113682 +0200
+++ /var/tmp/diff_new_pack.G2BJ1i/_new 2019-06-25 22:21:58.433113687 +0200
@@ -26,6 +26,8 @@
License: MIT
Group: Development/Languages/Python
Source:
https://files.pythonhosted.org/packages/source/p/pgmagick/pgmagick-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM https://github.com/hhatto/pgmagick/pull/47
+Patch0: reproducible.patch
BuildRequires: boost-devel
BuildRequires: fdupes
BuildRequires: pkgconfig(GraphicsMagick++)
@@ -48,6 +50,7 @@
%prep
%setup -q -n pgmagick-%{version}
+%patch0 -p1
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
++++++ reproducible.patch ++++++
Index: pgmagick-0.7.4/setup.py
===================================================================
--- pgmagick-0.7.4.orig/setup.py
+++ pgmagick-0.7.4/setup.py
@@ -218,7 +218,7 @@ setup(name='pgmagick',
packages=find_packages(),
ext_modules=[
Extension('pgmagick._pgmagick',
- sources=glob.glob('./src/*.cpp'),
+ sources=sorted(glob.glob('./src/*.cpp')),
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries,