commit apfel for openSUSE:Factory

2020-05-06 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2020-05-06 11:04:20

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new.2738 (New)


Package is "apfel"

Wed May  6 11:04:20 2020 rev:12 rq:800519 version:3.0.4

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2019-06-26 
16:03:57.567623064 +0200
+++ /work/SRC/openSUSE:Factory/.apfel.new.2738/apfel.changes2020-05-06 
11:04:28.739289949 +0200
@@ -1,0 +2,10 @@
+Tue Apr 28 09:50:35 UTC 2020 - Atri Bhattacharya 
+
+- Add apfel-allow-disabling-pywrap.patch to support building
+  without building the python extensions and binaries; build
+  python bindings and python-based binaries only for distributions
+  supporting python2 since apfel does not support python3.
+- Add libtool BuildRequires and run autoreconf since patch touches
+  build files.
+
+---

New:

  apfel-allow-disabling-pywrap.patch



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.byJCs4/_old  2020-05-06 11:04:31.627296149 +0200
+++ /var/tmp/diff_new_pack.byJCs4/_new  2020-05-06 11:04:31.631296157 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apfel
 #
-# Copyright (c) 2019 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
@@ -16,8 +16,16 @@
 #
 
 
+# PYTHON BINDINGS INCOMPATIBLE WITH PYTHON3
+%if 0%{?suse_version} >= 1550
+%bcond_with pywrap
+%else
+%bcond_without pywrap
+%endif
+
+%define skip_python3 1
+
 %define soname libAPFEL0
-%define pypackage python-%{name}
 Name:   apfel
 Version:3.0.4
 Release:0
@@ -26,15 +34,21 @@
 Group:  Development/Libraries/C and C++
 URL:http://apfel.hepforge.org/
 Source: https://github.com/scarrazza/%{name}/archive/%{version}.tar.gz
+# PATCH-FIX-UPSTREAM apfel-allow-disabling-pywrap.patch badshah...@gmail.com 
-- Allow building with python extension disabled, for example due to lack of 
python2 support in the system
+Patch0: apfel-allow-disabling-pywrap.patch
 BuildRequires:  LHAPDF-devel
 BuildRequires:  gcc-c++
 BuildRequires:  gcc-fortran
-BuildRequires:  python-devel
-%if 0%{?suse_version} > 1320
 BuildRequires:  libboost_headers-devel
-%else
-BuildRequires:  boost-devel
+BuildRequires:  libtool
+BuildRequires:  python-rpm-macros
+%if %{with pywrap}
+BuildRequires:  %{python_module LHAPDF}
+BuildRequires:  %{python_module devel}
 %endif
+Requires:   python-LHAPDF
+
+%python_subpackages
 
 %description
 APFEL is a library to perform the combined QCD+QED DGLAP
@@ -50,44 +64,37 @@
 
 This package provides the shared libraries for %{name}.
 
-%package devel
+%package -n %{name}-devel
 Summary:Development files for Apfel, a PDF Evolution Library
 Group:  Development/Libraries/C and C++
 Requires:   %{soname} = %{version}
 Requires:   LHAPDF-devel
 Recommends: %{name}-doc = %{version}
 
-%description devel
+%description -n %{name}-devel
 APFEL is a library to perform the combined QCD+QED DGLAP
 evolution of parton distributions.
 
 This package provides the source files required to develop
 applications with %{name}.
 
-%package -n %{pypackage}
-Summary:A PDF Evolution Library
-Group:  Development/Languages/Python
-
-%description -n %{pypackage}
-APFEL is a library to perform the combined QCD+QED DGLAP
-evolution of parton distributions.
-
-This package provides the shared libraries for %{name}.
-
-%package doc
+%package -n %{name}-doc
 Summary:Documentation for APFEL, a PDF evolution library
 Group:  Documentation/Other
 
-%description doc
+%description -n %{name}-doc
 This package provides documentation for APFEL in PDF (Portable
 Document Format), a PDF (Probability Distribution Function) evolution
 library.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
-%configure --disable-static
+autoreconf -fvi
+%configure \
+  --disable-static \
+  %{!?with_pywrap:--disable-pywrap}
 make %{?_smp_mflags}
 
 %install
@@ -99,9 +106,9 @@
 # FIX env BASED SCRIPT INTERPRETER
 sed -Ei "1{s|#\!\s*/usr/bin/env bash|#\!/bin/bash|}" 
%{buildroot}%{_bindir}/apfel-config
 
-# REMOVE README FROM NON-STD LOCATIONS, INSTALL IT USING %%doc INSTEAD
+# REMOVE INSTALLED README, INSTALL IT USING %%doc INSTEAD
+rm -fr %{buildroot}%{_datadir}/doc/apfel/README
 rm -fr %{buildroot}%{_datadir}/apfel/README
-rm -fr %{buildroot}%{_datadir}/doc/apfel
 
 %post   -n %{soname} -p /sbin/ldconfig
 %postun -n %{soname} -p /sbin/ldconfig
@@ -109,7 +116,7 @@
 %files -n 

commit apfel for openSUSE:Factory

2019-06-26 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2019-06-26 16:03:57

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new.4615 (New)


Package is "apfel"

Wed Jun 26 16:03:57 2019 rev:11 rq:711917 version:3.0.4

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2019-01-24 
14:10:15.095581245 +0100
+++ /work/SRC/openSUSE:Factory/.apfel.new.4615/apfel.changes2019-06-26 
16:03:57.567623064 +0200
@@ -1,0 +2,7 @@
+Tue Jun 25 09:36:25 UTC 2019 - Atri Bhattacharya 
+
+- Update to version 3.0.4:
+  + New release for use with the latest version of HELL (no more
+changes documented by upstream).
+
+---

Old:

  3.0.3.tar.gz

New:

  3.0.4.tar.gz



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.j1OX5V/_old  2019-06-26 16:03:58.483624360 +0200
+++ /var/tmp/diff_new_pack.j1OX5V/_new  2019-06-26 16:03:58.487624366 +0200
@@ -19,7 +19,7 @@
 %define soname libAPFEL0
 %define pypackage python-%{name}
 Name:   apfel
-Version:3.0.3
+Version:3.0.4
 Release:0
 Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0-or-later

++ 3.0.3.tar.gz -> 3.0.4.tar.gz ++
/work/SRC/openSUSE:Factory/apfel/3.0.3.tar.gz 
/work/SRC/openSUSE:Factory/.apfel.new.4615/3.0.4.tar.gz differ: char 13, line 1




commit apfel for openSUSE:Factory

2019-01-24 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2019-01-24 14:10:14

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new.28833 (New)


Package is "apfel"

Thu Jan 24 14:10:14 2019 rev:10 rq:665694 version:3.0.3

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2018-07-18 
22:56:35.122434509 +0200
+++ /work/SRC/openSUSE:Factory/.apfel.new.28833/apfel.changes   2019-01-24 
14:10:15.095581245 +0100
@@ -1,0 +2,17 @@
+Sun Jan 13 16:42:39 UTC 2019 - Jan Engelhardt 
+
+- Update descriptions.
+
+---
+Sat Jan 12 15:15:56 UTC 2019 - badshah...@gmail.com
+
+- Install pre-generated PDF manual as part of a new -doc package.
+- Move ListFunctions binary into -devel package: apfel-config,
+  already being installed as part of the devel package, is partly
+  broken without this.
+- Change `env` based script interpreter in apfel-config to
+  directly call /bin/bash instead.
+- Use %%license macro to install the license file.
+- Run spec-cleaner for minor specfile cleanups
+
+---



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.brpVr3/_old  2019-01-24 14:10:16.043580154 +0100
+++ /var/tmp/diff_new_pack.brpVr3/_new  2019-01-24 14:10:16.047580149 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package apfel
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,31 +12,29 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define soname libAPFEL0
 %define pypackage python-%{name}
-
 Name:   apfel
 Version:3.0.3
 Release:0
 Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0-or-later
 Group:  Development/Libraries/C and C++
-Url:http://apfel.hepforge.org/
+URL:http://apfel.hepforge.org/
 Source: https://github.com/scarrazza/%{name}/archive/%{version}.tar.gz
 BuildRequires:  LHAPDF-devel
 BuildRequires:  gcc-c++
 BuildRequires:  gcc-fortran
+BuildRequires:  python-devel
 %if 0%{?suse_version} > 1320
 BuildRequires:  libboost_headers-devel
 %else
 BuildRequires:  boost-devel
 %endif
-BuildRequires:  python-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 APFEL is a library to perform the combined QCD+QED DGLAP 
@@ -57,6 +55,7 @@
 Group:  Development/Libraries/C and C++
 Requires:   %{soname} = %{version}
 Requires:   LHAPDF-devel
+Recommends: %{name}-doc = %{version}
 
 %description devel
 APFEL is a library to perform the combined QCD+QED DGLAP 
@@ -75,6 +74,15 @@
 
 This package provides the shared libraries for %{name}.
 
+%package doc
+Summary:Documentation for APFEL, a PDF evolution library
+Group:  Documentation/Other
+
+%description doc
+This package provides documentation for APFEL in PDF (Portable
+Document Format), a PDF (Probability Distribution Function) evolution
+library.
+
 %prep
 %setup -q
 
@@ -86,7 +94,10 @@
 %make_install
 
 # REMOVE libtool ARCHIVES
-rm %{buildroot}%{_libdir}/*.la
+find %{buildroot} -type f -name "*.la" -delete -print
+
+# FIX env BASED SCRIPT INTERPRETER
+sed -Ei "1{s|#\!\s*/usr/bin/env bash|#\!/bin/bash|}" 
%{buildroot}%{_bindir}/apfel-config
 
 # REMOVE README FROM NON-STD LOCATIONS, INSTALL IT USING %%doc INSTEAD
 rm -fr %{buildroot}%{_datadir}/apfel/README
@@ -96,25 +107,26 @@
 %postun -n %{soname} -p /sbin/ldconfig
 
 %files -n %{soname}
-%defattr(-,root,root)
 %{_libdir}/*.so.*
 
 %files devel
-%defattr(-,root,root)
 %{_includedir}/APFEL/
-%doc AUTHORS ChangeLog NEWS README COPYING
+%license COPYING
+%doc AUTHORS ChangeLog NEWS README
 %{_bindir}/CheckAPFEL
 %{_bindir}/%{name}-config
+%{_bindir}/ListFunctions
 %{_libdir}/*.so
 
 %files -n %{pypackage}
-%defattr(-,root,root)
 %{_bindir}/%{name}
-%{_bindir}/ListFunctions
 %{python_sitearch}/%{name}.py
 # COMPILED OBJECT FILE CONTAINS BUILDROOT
 %exclude %{python_sitearch}/%{name}.pyc
 %{python_sitearch}/_%{name}.so
 %{python_sitearch}/APFEL-*py%{py_ver}.egg-info
 
+%files doc
+%doc doc/pdfs/manual.pdf
+
 %changelog




commit apfel for openSUSE:Factory

2018-07-18 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2018-07-18 22:55:55

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Wed Jul 18 22:55:55 2018 rev:9 rq:623450 version:3.0.3

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2018-03-29 
11:56:33.804310838 +0200
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2018-07-18 
22:56:35.122434509 +0200
@@ -1,0 +2,6 @@
+Sat Jul 14 16:58:46 UTC 2018 - badshah...@gmail.com
+
+- Update to version 3.0.3:
+  + Undocumented bug fixes.
+
+---

Old:

  3.0.2.tar.gz

New:

  3.0.3.tar.gz



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.PPuhGE/_old  2018-07-18 22:56:35.658432732 +0200
+++ /var/tmp/diff_new_pack.PPuhGE/_new  2018-07-18 22:56:35.662432719 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apfel
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,10 +20,10 @@
 %define pypackage python-%{name}
 
 Name:   apfel
-Version:3.0.2
+Version:3.0.3
 Release:0
 Summary:A Probability Distribution Function Evolution Library
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://apfel.hepforge.org/
 Source: https://github.com/scarrazza/%{name}/archive/%{version}.tar.gz

++ 3.0.2.tar.gz -> 3.0.3.tar.gz ++
/work/SRC/openSUSE:Factory/apfel/3.0.2.tar.gz 
/work/SRC/openSUSE:Factory/.apfel.new/3.0.3.tar.gz differ: char 12, line 1




commit apfel for openSUSE:Factory

2018-03-29 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2018-03-29 11:56:32

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Thu Mar 29 11:56:32 2018 rev:8 rq:591662 version:3.0.2

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2017-10-31 
15:43:38.462554856 +0100
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2018-03-29 
11:56:33.804310838 +0200
@@ -1,0 +2,7 @@
+Mon Mar 26 19:15:46 UTC 2018 - stefan.bru...@rwth-aachen.de
+
+- Drop Qt4 BuildRequires, ApfelGUI has been deprecated in version 2.7
+  and removed subsequently
+- Build on all archs
+
+---



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.2KsUSJ/_old  2018-03-29 11:56:34.580282818 +0200
+++ /var/tmp/diff_new_pack.2KsUSJ/_new  2018-03-29 11:56:34.584282674 +0200
@@ -35,10 +35,8 @@
 %else
 BuildRequires:  boost-devel
 %endif
-BuildRequires:  libqt4-devel
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-ExclusiveArch:  x86_64 s390x
 
 %description
 APFEL is a library to perform the combined QCD+QED DGLAP 




commit apfel for openSUSE:Factory

2017-10-31 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2017-10-31 15:43:37

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Tue Oct 31 15:43:37 2017 rev:7 rq:537492 version:3.0.2

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2017-07-12 
19:36:49.949343554 +0200
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2017-10-31 
15:43:38.462554856 +0100
@@ -1,0 +2,6 @@
+Sat Oct 28 15:23:17 UTC 2017 - badshah...@gmail.com
+
+- Update to version 3.0.2:
+  + Update list-func function.
+
+---

Old:

  3.0.1.tar.gz

New:

  3.0.2.tar.gz



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.gdhzRI/_old  2017-10-31 15:43:39.346522812 +0100
+++ /var/tmp/diff_new_pack.gdhzRI/_new  2017-10-31 15:43:39.346522812 +0100
@@ -20,7 +20,7 @@
 %define pypackage python-%{name}
 
 Name:   apfel
-Version:3.0.1
+Version:3.0.2
 Release:0
 Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0+

++ 3.0.1.tar.gz -> 3.0.2.tar.gz ++
/work/SRC/openSUSE:Factory/apfel/3.0.1.tar.gz 
/work/SRC/openSUSE:Factory/.apfel.new/3.0.2.tar.gz differ: char 126, line 1




commit apfel for openSUSE:Factory

2017-07-12 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2017-07-12 19:36:35

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Wed Jul 12 19:36:35 2017 rev:6 rq:509678 version:3.0.1

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2017-04-12 
17:59:54.616294852 +0200
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2017-07-12 
19:36:49.949343554 +0200
@@ -1,0 +2,6 @@
+Tue Jul 11 22:48:56 UTC 2017 - badshah...@gmail.com
+
+- Update to version 3.0.1:
+  * Fixing bug in the upwards VFNS evolution of alpha.
+
+---

Old:

  3.0.0.tar.gz

New:

  3.0.1.tar.gz



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.EYAjCc/_old  2017-07-12 19:36:50.513263896 +0200
+++ /var/tmp/diff_new_pack.EYAjCc/_new  2017-07-12 19:36:50.517263331 +0200
@@ -20,7 +20,7 @@
 %define pypackage python-%{name}
 
 Name:   apfel
-Version:3.0.0
+Version:3.0.1
 Release:0
 Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0+

++ 3.0.0.tar.gz -> 3.0.1.tar.gz ++
/work/SRC/openSUSE:Factory/apfel/3.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.apfel.new/3.0.1.tar.gz differ: char 21, line 1




commit apfel for openSUSE:Factory

2017-04-12 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2017-04-12 17:37:43

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Wed Apr 12 17:37:43 2017 rev:5 rq:487349 version:3.0.0

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2017-02-03 
17:31:32.505007903 +0100
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2017-04-12 
17:59:54.616294852 +0200
@@ -1,0 +2,21 @@
+Wed Apr  5 17:30:37 UTC 2017 - badshah...@gmail.com
+
+- Update to version 3.0.0:
+  * Implementation of the full NLO QCD+QED correction in the DGLAP
+evolution and in the DIS structure functions.
+  * Interfacing APFEL to HELL (v.1.1) for the computation of the
+ZM small-x resummed structure functions.
+  * Optimisation of the caching for PDFs and structure functions.
+  * Completed external evolution operator when QED corrections are
+enabled.
+  * Update of the documentation.
+  * Clean up of the code.
+  * Minor bug fixes and adjustments.
+
+---
+Wed Apr  5 16:08:07 UTC 2017 - badshah...@gmail.com
+
+- Add BuildRequires: libboost_headers-devel or boost-devel as
+  appropriate to the openSUSE versions to fix builds.
+
+---

Old:

  2.7.2.tar.gz

New:

  3.0.0.tar.gz



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.m7goZS/_old  2017-04-12 17:59:55.392185123 +0200
+++ /var/tmp/diff_new_pack.m7goZS/_new  2017-04-12 17:59:55.396184558 +0200
@@ -20,7 +20,7 @@
 %define pypackage python-%{name}
 
 Name:   apfel
-Version:2.7.2
+Version:3.0.0
 Release:0
 Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0+
@@ -30,6 +30,11 @@
 BuildRequires:  LHAPDF-devel
 BuildRequires:  gcc-c++
 BuildRequires:  gcc-fortran
+%if 0%{?suse_version} > 1320
+BuildRequires:  libboost_headers-devel
+%else
+BuildRequires:  boost-devel
+%endif
 BuildRequires:  libqt4-devel
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ 2.7.2.tar.gz -> 3.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/apfel/2.7.2.tar.gz 
/work/SRC/openSUSE:Factory/.apfel.new/3.0.0.tar.gz differ: char 30, line 1




commit apfel for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2017-02-02 15:41:11

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2016-08-10 
19:56:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2017-02-03 
17:31:32.505007903 +0100
@@ -1,0 +2,5 @@
+Fri Jan 27 14:13:52 UTC 2017 - b...@suse.com
+
+- enable build on s390x
+
+---



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.1FZrJm/_old  2017-02-03 17:31:33.012936013 +0100
+++ /var/tmp/diff_new_pack.1FZrJm/_new  2017-02-03 17:31:33.016935447 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package apfel
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -33,7 +33,7 @@
 BuildRequires:  libqt4-devel
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-ExclusiveArch:  x86_64
+ExclusiveArch:  x86_64 s390x
 
 %description
 APFEL is a library to perform the combined QCD+QED DGLAP 




commit apfel for openSUSE:Factory

2016-08-10 Thread h_root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2016-08-10 19:56:02

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2016-02-17 
12:09:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2016-08-10 
19:56:04.0 +0200
@@ -1,0 +2,17 @@
+Mon Aug  8 19:29:45 UTC 2016 - badshah...@gmail.com
+
+- Update to version 2.7.2:
+  + Full intrinsic charm contributions up to O(as) in both NC and
+CC sectors.
+  + Possibility to set the heavy quark thresholds different from
+the heavy quark masses in both the pole and the MSbar schemes.
+  + New and more accurate parametrization of the O(as^2) NC
+massive coefficient functions over a wider range in Q^2.
+  + Implementation of the cached PDF evolution.
+  + Fix of minor bugs and minor improvements.
+  + Update of the documentation.
+- Upstream now also installs README in /usr/share/apfel; delete
+  from both non-standard locations and use %doc to package it
+  instead.
+
+---

Old:

  2.7.0.tar.gz

New:

  2.7.2.tar.gz



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.A2kkcj/_old  2016-08-10 19:56:05.0 +0200
+++ /var/tmp/diff_new_pack.A2kkcj/_new  2016-08-10 19:56:05.0 +0200
@@ -20,7 +20,7 @@
 %define pypackage python-%{name}
 
 Name:   apfel
-Version:2.7.0
+Version:2.7.2
 Release:0
 Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0+
@@ -85,7 +85,8 @@
 # REMOVE libtool ARCHIVES
 rm %{buildroot}%{_libdir}/*.la
 
-# REMOVE README FROM A NON-STD LOCATION, INSTALL IT USING %%doc INSTEAD
+# REMOVE README FROM NON-STD LOCATIONS, INSTALL IT USING %%doc INSTEAD
+rm -fr %{buildroot}%{_datadir}/apfel/README
 rm -fr %{buildroot}%{_datadir}/doc/apfel
 
 %post   -n %{soname} -p /sbin/ldconfig
@@ -112,8 +113,5 @@
 %exclude %{python_sitearch}/%{name}.pyc
 %{python_sitearch}/_%{name}.so
 %{python_sitearch}/APFEL-*py%{py_ver}.egg-info
-%dir %{_datadir}/apfel
-%{_datadir}/%{name}/gen_info.py
-%{_datadir}/%{name}/*.info
 
 %changelog

++ 2.7.0.tar.gz -> 2.7.2.tar.gz ++
/work/SRC/openSUSE:Factory/apfel/2.7.0.tar.gz 
/work/SRC/openSUSE:Factory/.apfel.new/2.7.2.tar.gz differ: char 13, line 1




commit apfel for openSUSE:Factory

2016-02-17 Thread h_root
Hello community,

here is the log from the commit of package apfel for openSUSE:Factory checked 
in at 2016-02-17 10:26:06

Comparing /work/SRC/openSUSE:Factory/apfel (Old)
 and  /work/SRC/openSUSE:Factory/.apfel.new (New)


Package is "apfel"

Changes:

--- /work/SRC/openSUSE:Factory/apfel/apfel.changes  2016-02-11 
12:37:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.apfel.new/apfel.changes 2016-02-17 
12:09:32.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb 15 10:22:47 UTC 2016 - jeng...@inai.de
+
+- Expand PDF acronym in summaries
+- Drop author list from description, openSUSE does not do this
+  since many many months.
+
+---



Other differences:
--
++ apfel.spec ++
--- /var/tmp/diff_new_pack.Ng6o1O/_old  2016-02-17 12:09:33.0 +0100
+++ /var/tmp/diff_new_pack.Ng6o1O/_new  2016-02-17 12:09:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package apfel
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 Name:   apfel
 Version:2.7.0
 Release:0
-Summary:A PDF Evolution Library
+Summary:A Probability Distribution Function Evolution Library
 License:GPL-3.0+
 Group:  Development/Libraries/C and C++
 Url:http://apfel.hepforge.org/
@@ -37,46 +37,38 @@
 
 %description
 APFEL is a library to perform the combined QCD+QED DGLAP 
-evolution of parton distributions. It is written and maintained 
-by Valerio Bertone (CERN), Stefano Carrazza (Milano) and
-Juan Rojo (CERN).
+evolution of parton distributions.
 
 %package -n %{soname}
-Summary:A PDF Evolution Library
-Group:  Development/Libraries/C and C++
+Summary:A Probability Distribution Function Evolution Library
+Group:  System/Libraries
 
 %description -n %{soname}
 APFEL is a library to perform the combined QCD+QED DGLAP 
-evolution of parton distributions. It is written and maintained 
-by Valerio Bertone (CERN), Stefano Carrazza (Milano) and
-Juan Rojo (CERN).
+evolution of parton distributions.
 
 This package provides the shared libraries for %{name}.
 
 %package devel
-Summary:A PDF Evolution Library
+Summary:Development files for Apfel, a PDF Evolution Library
 Group:  Development/Libraries/C and C++
 Requires:   %{soname} = %{version}
 Requires:   LHAPDF-devel
 
 %description devel
 APFEL is a library to perform the combined QCD+QED DGLAP 
-evolution of parton distributions. It is written and maintained 
-by Valerio Bertone (CERN), Stefano Carrazza (Milano) and
-Juan Rojo (CERN).
+evolution of parton distributions.
 
 This package provides the source files required to develop
 applications with %{name}.
 
 %package -n %{pypackage}
 Summary:A PDF Evolution Library
-Group:  Development/Libraries/C and C++
+Group:  Development/Languages/Python
 
 %description -n %{pypackage}
 APFEL is a library to perform the combined QCD+QED DGLAP 
-evolution of parton distributions. It is written and maintained 
-by Valerio Bertone (CERN), Stefano Carrazza (Milano) and
-Juan Rojo (CERN).
+evolution of parton distributions.
 
 This package provides the shared libraries for %{name}.
 
@@ -96,11 +88,8 @@
 # REMOVE README FROM A NON-STD LOCATION, INSTALL IT USING %%doc INSTEAD
 rm -fr %{buildroot}%{_datadir}/doc/apfel
 
-%post -n %{soname}
-/sbin/ldconfig
-
-%postun -n %{soname}
-/sbin/ldconfig
+%post   -n %{soname} -p /sbin/ldconfig
+%postun -n %{soname} -p /sbin/ldconfig
 
 %files -n %{soname}
 %defattr(-,root,root)