summaryrefslogtreecommitdiff
path: root/lasso.spec
diff options
context:
space:
mode:
Diffstat (limited to 'lasso.spec')
-rw-r--r--lasso.spec602
1 files changed, 602 insertions, 0 deletions
diff --git a/lasso.spec b/lasso.spec
new file mode 100644
index 0000000..60c82ab
--- /dev/null
+++ b/lasso.spec
@@ -0,0 +1,602 @@
+%global with_java 0
+%global with_php 0
+%global with_perl 1
+# The Lasso build system requires python, especially the binding generators
+%global with_python 1
+%global with_python2 0
+%global with_python3 0
+%global with_wsf 0
+%global obsolete_old_lang_subpackages 0
+
+%if %{with_php}
+%if "%{php_version}" < "5.6"
+%global ini_name %{name}.ini
+%else
+%global ini_name 40-%{name}.ini
+%endif
+%endif
+
+%if (0%{?fedora} > 0 && 0%{?fedora} <= 29) || (0%{?rhel} > 0 && 0%{?rhel} <= 7)
+ %global obsolete_old_lang_subpackages 1
+%endif
+
+%if %{with_python}
+ %if (0%{?fedora} > 0 && 0%{?fedora} < 32) || (0%{?rhel} > 0 && 0%{?rhel} <= 7)
+ %global with_python2 1
+ %endif
+
+ %if 0%{?fedora} || 0%{?rhel} >= 8
+ %global with_python3 1
+ %endif
+%endif
+
+%global configure_args %{nil}
+%global configure_args %{configure_args} --with-default-sign-algo=rsa-sha256 --with-min-hash-algo=sha256
+
+%if !%{with_java}
+ %global configure_args %{configure_args} --disable-java
+%endif
+
+%if !%{with_perl}
+ %global configure_args %{configure_args} --disable-perl
+%endif
+
+%if %{with_php}
+ %global configure_args %{configure_args} --enable-php5=yes --with-php5-config-dir=%{php_inidir}
+%else
+ %global configure_args %{configure_args} --enable-php5=no
+%endif
+
+%if %{with_wsf}
+ %global configure_args %{configure_args} --enable-wsf --with-sasl2=%{_prefix}/sasl2
+%endif
+
+%if !%{with_python}
+ %global configure_args %{configure_args} --disable-python
+%endif
+
+
+Summary: Liberty Alliance Single Sign On
+Name: lasso
+Version: 2.7.0
+Release: 8%{?dist}
+License: GPLv2+
+URL: http://lasso.entrouvert.org/
+Source: http://dev.entrouvert.org/lasso/lasso-%{version}.tar.gz
+
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: check-devel
+BuildRequires: glib2-devel
+BuildRequires: gtk-doc
+BuildRequires: libtool
+BuildRequires: libtool-ltdl-devel
+BuildRequires: libxml2-devel
+BuildRequires: openssl-devel
+BuildRequires: swig
+BuildRequires: xmlsec1-devel
+BuildRequires: xmlsec1-openssl-devel
+BuildRequires: zlib-devel
+%if %{with_wsf}
+BuildRequires: cyrus-sasl-devel
+%endif
+
+Requires: xmlsec1
+
+# lasso upstream no longer supports java bindings
+# see https://dev.entrouvert.org/issues/45876#change-289747
+# and https://dev.entrouvert.org/issues/51418
+Obsoletes: java-lasso < %{version}-%{release}
+
+Patch0001: 0001-Fix-lasso_query_sign-HMAC-other-than-SHA1-54037.patch
+Patch0002: 0002-tests-Move-test08_lasso_key-and-test07_saml2_query_v.patch
+Patch0003: 0003-Make-the-default-signature-method-and-the-minimal-ha.patch
+Patch0004: 0004-Mass-replace-LASSO_SIGNATURE_METHOD_RSA_SHA1-with-la.patch
+Patch0005: 0005-Check-if-the-signature-method-is-allowed-in-addition.patch
+Patch0006: 0006-python-Skip-the-DSA-key-test-unless-SHA-1-is-configu.patch
+Patch0007: 0007-test13_test_lasso_server_load_metadata-Don-t-verify-.patch
+Patch0008: autogen.noconfig
+Patch0009: 0009-lasso_saml20_login_process_response_status_and_asser.patch
+
+%description
+Lasso is a library that implements the Liberty Alliance Single Sign On
+standards, including the SAML and SAML2 specifications. It allows to handle
+the whole life-cycle of SAML based Federations, and provides bindings
+for multiple languages.
+
+%package devel
+Summary: Lasso development headers and documentation
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for Lasso.
+
+%if %{with_perl}
+%package -n perl-%{name}
+Summary: Liberty Alliance Single Sign On (lasso) Perl bindings
+BuildRequires: perl-devel
+BuildRequires: perl-generators
+BuildRequires: perl(Error)
+BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires: perl(strict)
+BuildRequires: perl(Test::More)
+BuildRequires: perl(warnings)
+BuildRequires: perl(XSLoader)
+Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description -n perl-%{name}
+Perl language bindings for the lasso (Liberty Alliance Single Sign On) library.
+%endif
+
+%if %{with_java}
+%package -n java-%{name}
+Summary: Liberty Alliance Single Sign On (lasso) Java bindings
+Buildrequires: java-1.8.0-openjdk-devel
+BuildRequires: jpackage-utils
+Requires: java-headless
+Requires: jpackage-utils
+Requires: %{name}%{?_isa} = %{version}-%{release}
+%if %{obsolete_old_lang_subpackages}
+Provides: %{name}-java = %{version}-%{release}
+Provides: %{name}-java%{?_isa} = %{version}-%{release}
+Obsoletes: %{name}-java < %{version}-%{release}
+%endif
+
+%description -n java-%{name}
+Java language bindings for the lasso (Liberty Alliance Single Sign On) library.
+%endif
+
+%if %{with_php}
+%package -n php-%{name}
+Summary: Liberty Alliance Single Sign On (lasso) PHP bindings
+BuildRequires: expat-devel
+BuildRequires: php-devel
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: php(zend-abi) = %{php_zend_api}
+Requires: php(api) = %{php_core_api}
+
+%description -n php-%{name}
+PHP language bindings for the lasso (Liberty Alliance Single Sign On) library.
+
+%endif
+
+%if %{with_python2}
+%package -n python2-%{name}
+%{?python_provide:%python_provide python2-%{name}}
+Summary: Liberty Alliance Single Sign On (lasso) Python bindings
+BuildRequires: python2
+BuildRequires: python2-devel
+%if 0%{?rhel} && 0%{?rhel} <= 7
+BuildRequires: python-lxml
+%else
+BuildRequires: python2-lxml
+%endif
+BuildRequires: python2-six
+Requires: python2
+Requires: %{name}%{?_isa} = %{version}-%{release}
+%if %{obsolete_old_lang_subpackages}
+Provides: %{name}-python = %{version}-%{release}
+Provides: %{name}-python%{?_isa} = %{version}-%{release}
+Obsoletes: %{name}-python < %{version}-%{release}
+%endif
+
+%description -n python2-%{name}
+Python language bindings for the lasso (Liberty Alliance Single Sign On)
+library.
+%endif
+
+%if %{with_python3}
+%package -n python3-%{name}
+%{?python_provide:%python_provide python3-%{name}}
+Summary: Liberty Alliance Single Sign On (lasso) Python bindings
+BuildRequires: python3
+BuildRequires: python3-devel
+BuildRequires: python3-lxml
+BuildRequires: python3-six
+BuildRequires: make
+Requires: python3
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description -n python3-%{name}
+Python language bindings for the lasso (Liberty Alliance Single Sign On)
+library.
+%endif
+
+%prep
+%autosetup -p1
+
+# Remove any python script shebang lines (unless they refer to python3)
+sed -i -E -e '/^#![[:blank:]]*(\/usr\/bin\/env[[:blank:]]+python[^3]?\>)|(\/usr\/bin\/python[^3]?\>)/d' \
+ `grep -r -l -E '^#![[:blank:]]*(/usr/bin/python[^3]?)|(/usr/bin/env[[:blank:]]+python[^3]?)' *`
+
+%build
+export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk
+./autogen.sh
+%if 0%{?with_python2}
+ %configure %{configure_args} --with-python=%{__python2}
+ pushd lasso
+ make %{?_smp_mflags} CFLAGS="%{optflags}"
+ popd
+ pushd bindings/python
+ make %{?_smp_mflags} CFLAGS="%{optflags}"
+ make check CK_TIMEOUT_MULTIPLIER=5
+ mkdir py2
+ mv lasso.py .libs/_lasso.so py2
+ popd
+ make clean
+%endif
+
+%if 0%{?with_python3}
+ %configure %{configure_args} --with-python=%{__python3}
+%else
+ %configure %{configure_args}
+%endif
+%make_build CFLAGS="%{optflags}"
+
+%check
+make check CK_TIMEOUT_MULTIPLIER=10 VERBOSE=yes
+
+%install
+#install -m 755 -d %{buildroot}%{_datadir}/gtk-doc/html
+
+make install exec_prefix=%{_prefix} DESTDIR=%{buildroot}
+find %{buildroot} -type f -name '*.la' -exec rm -f {} \;
+find %{buildroot} -type f -name '*.a' -exec rm -f {} \;
+
+%if 0%{?with_python2}
+ # Install Python 2 files saved from first build
+ install -d -m 0755 %{buildroot}/%{python2_sitearch}
+ install -m 0644 bindings/python/py2/lasso.py %{buildroot}/%{python2_sitearch}
+ install -m 0755 bindings/python/py2/_lasso.so %{buildroot}/%{python2_sitearch}
+%endif
+
+# Perl subpackage
+%if %{with_perl}
+find %{buildroot} \( -name perllocal.pod -o -name .packlist \) -exec rm -v {} \;
+
+find %{buildroot}/usr/lib*/perl5 -type f -print |
+ sed "s@^%{buildroot}@@g" > %{name}-perl-filelist
+if [ "$(cat %{name}-perl-filelist)X" = "X" ] ; then
+ echo "ERROR: EMPTY FILE LIST"
+ exit -1
+fi
+%endif
+
+# PHP subpackage
+%if %{with_php}
+install -m 755 -d %{buildroot}%{_datadir}/php/%{name}
+mv %{buildroot}%{_datadir}/php/lasso.php %{buildroot}%{_datadir}/php/%{name}
+
+# rename the PHP config file when needed (PHP 5.6+)
+if [ "%{name}.ini" != "%{ini_name}" ]; then
+ mv %{buildroot}%{php_inidir}/%{name}.ini \
+ %{buildroot}%{php_inidir}/%{ini_name}
+fi
+%endif
+
+# Remove bogus doc files
+rm -fr %{buildroot}%{_defaultdocdir}/%{name}
+
+%ldconfig_scriptlets
+
+%files
+%{_libdir}/liblasso.so.3*
+%doc AUTHORS NEWS README
+%license COPYING
+
+%files devel
+%{_libdir}/liblasso.so
+%{_libdir}/pkgconfig/lasso.pc
+%{_includedir}/%{name}
+
+%if %{with_perl}
+%files -n perl-%{name} -f %{name}-perl-filelist
+%endif
+
+%if %{with_java}
+%files -n java-%{name}
+%{_libdir}/java/libjnilasso.so
+%{_javadir}/lasso.jar
+%endif
+
+%if %{with_php}
+%files -n php-%{name}
+%{php_extdir}/lasso.so
+%config(noreplace) %{php_inidir}/%{ini_name}
+%dir %{_datadir}/php/%{name}
+%{_datadir}/php/%{name}/lasso.php
+%endif
+
+%if %{with_python2}
+%files -n python2-%{name}
+%{python2_sitearch}/lasso.py*
+%{python2_sitearch}/_lasso.so
+%endif
+
+%if %{with_python3}
+%files -n python3-%{name}
+%{python3_sitearch}/lasso.py*
+%{python3_sitearch}/_lasso.so
+%{python3_sitearch}/__pycache__/*
+%endif
+
+%changelog
+* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com>
+- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
+ Related: rhbz#1991688
+
+* Mon Jun 28 2021 Jakub Hrozek <jhrozek@redhat.com> - 2.7.0-7
+- Fix dead code issue
+- Resolves: rhbz#1966606: CVE-2021-28091 lasso: XML signature wrapping
+ vulnerability when parsing SAML responses
+
+* Thu Jul 29 2021 Jakub Hrozek <jhrozek@redhat.com> - 2.7.0-6
+- Resolves: rhbz#1984822 - lasso: FTBFS in test suite due to short test
+ timeout (potentially OpenSSL-related)
+
+* Mon Jun 28 2021 Jakub Hrozek <jhrozek@redhat.com> - 2.7.0-5
+- Don't run configure twice
+- Resolves: rhbz#1935987 - lasso implements and/or uses the deprecated
+ SHA-1 algorithm by default
+
+* Thu Jun 24 2021 Jakub Hrozek <jhrozek@redhat.com> - 2.7.0-4
+- Resolves: rhbz#1935987 - lasso implements and/or uses the deprecated
+ SHA-1 algorithm by default
+
+* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.7.0-3
+- Rebuilt for RHEL 9 BETA for openssl 3.0
+ Related: rhbz#1971065
+
+* Fri Jun 4 2021 Jakub Hrozek <jhrozek@redhat.com> - 2.7.0-2
+- Rebuild with openssl3, presumably in a buildroot with xmlsec1
+ linked against openssl3
+- Resolves: rhbz#1962052 - lasso: Port to OpenSSL 3.0
+
+* Wed Jun 2 2021 Jakub Hrozek <jhrozek@redhat.com> - 2.7.0-1
+- Lasso 2.7.0
+- Resolves: rhbz#1966606: CVE-2021-28091 lasso: XML signature wrapping
+ vulnerability when parsing SAML responses
+- Remove java bindings
+
+* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.6.1-9
+- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
+
+* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Thu Aug 13 2020 Jakub Hrozek <jhrozek@redhat.com> - 2.6.1-7
+- Temporarily build with OpenJDK 8
+- upstream ticket for OpenJDK11 support: https://dev.entrouvert.org/issues/45876
+
+* Fri Aug 07 2020 Jeff Law <law@redhat.com> - 2.6.1-6
+- Revert last change. I lost the patchfile and I can't reproduce the gcc-11
+ problem which almost certainly prompted it
+
+* Fri Aug 07 2020 Jeff Law <law@redhat.com> - 2.6.1-5
+- Fix format string problem
+
+* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-4
+- Second attempt - Rebuilt for
+ https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 2.6.1-2
+- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
+
+* Fri Jul 03 2020 Xavier Bachelot <xavier@bachelot.org> - 2.6.1-1
+- Update to 2.6.1
+
+* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.6.0-23
+- Perl 5.32 rebuild
+
+* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-22
+- Rebuilt for Python 3.9
+
+* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-21
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Fri Jan 17 2020 Jakub Hrozek <jhrozek@redhat.com>
+- Resolves: #1778645 - lasso-2.6.0-19.fc32 FTBFS:
+ non_regression_tests.c:240:51: error: initializer
+ element is not constant
+
+* Mon Sep 2 2019 Jakub Hrozek <jhrozek@redhat.com> - 2.6.0-19
+- Resolves: #1730010 - lasso includes "Destination" attribute in SAML
+ AuthnRequest populated with SP
+ AssertionConsumerServiceURL when ECP workflow
+ is used which leads to IdP-side errors
+
+* Sun Sep 1 2019 Jakub Hrozek <jhrozek@redhat.com> - 2.6.0-18
+- Let tests run longer
+- Resolves: #1743888 - lasso unit tests time out on slower arches (e.g. arm)
+
+* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-17
+- Rebuilt for Python 3.8
+
+* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Mon Jun 17 2019 Jakub Hrozek <jhrozek@redhat.com> - 2.6.0-15
+- Use the upstream patch that uses a self-signed cert in tests
+- Related: #1705700 - lasso FTBFS because an expired certificate is
+ used in the tests
+- Resolves: #1634266 - ECP signature check fails with
+ LASSO_DS_ERROR_SIGNATURE_NOT_FOUND when assertion
+ signed instead of response
+
+* Tue Jun 04 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.6.0-14
+- Perl 5.30 re-rebuild updated packages
+
+* Mon Jun 3 2019 Jakub Hrozek <jhrozek@redhat.com> - 2.6.0-13
+- Don't use the expired certificate the tarball provides for tests
+- Resolves: #1705700 - lasso FTBFS because an expired certificate is
+ used in the tests
+
+* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.6.0-12
+- Perl 5.30 rebuild
+
+* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Tue Dec 04 2018 Xavier Bachelot <xavier@bachelot.org> - 2.6.0-10
+- Specfile clean up:
+ - Consolidate BuildRequires
+ - Remove Group: tags
+ - Uppercase and move Url: tag
+ - Use %%license for COPYING
+ - Use %%make_build
+ - Use %%autosetup
+ - Don't glob soname to prevent unintentionnal soname bump
+ - Use %%ldconfig_scriptlets
+ - Specify all perl dependencies in BR:s
+ - Drop useless %%attr in php-lasso sub-package
+
+* Mon Dec 03 2018 Xavier Bachelot <xavier@bachelot.org> - 2.6.0-9
+- Generate perl requires/provides.
+
+* Tue Jul 17 2018 <jdennis@redhat.com> - 2.6.0-8
+- more py2/py3 build dependencies fixes
+
+* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Sat Jul 7 2018 <jdennis@redhat.com> - 2.6.0-6
+- Modify configure to search for versioned python
+- Resolves: rhbz#1598047
+
+* Wed Jul 04 2018 Petr Pisar <ppisar@redhat.com> - 2.6.0-5
+- Perl 5.28 rebuild
+
+* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-4
+- Rebuilt for Python 3.7
+
+* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.6.0-3
+- Perl 5.28 rebuild
+
+* Wed Jun 27 2018 <jdennis@redhat.com> - 2.6.0-2
+- fix language bindings package names to comply with guidelines,
+ instead of %%{name}-lang use lang-%%{name}
+- fix conditional logic used to build on rhel
+
+* Tue Jun 26 2018 <jdennis@redhat.com> - 2.6.0-1
+- Upgrade to latest upstream
+- Build using Python3, add python3 subpackage
+- Resolves: rhbz#1592416 Enable perl subpackage
+
+* Wed May 2 2018 John Dennis <jdennis@redhat.com> - 2.5.1-13
+- add xmlsec1 version dependency
+
+* Tue May 1 2018 John Dennis <jdennis@redhat.com> - 2.5.1-12
+- Resolves: rhbz#1542126, rhbz#1556016
+- xmlsec removed SOAP support, reimplement missing xmlSecSoap* in Lasso
+
+* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Fri Jan 05 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.5.1-10
+- Update Python 2 dependency declarations to new packaging standards
+ (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
+
+* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.5.1-9
+- Add Provides for the old name without %%_isa
+
+* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.5.1-8
+- Python 2 binary package renamed to python2-lasso
+ See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
+
+* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
+
+* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-4
+- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
+
+* Thu Jun 30 2016 John Dennis <jdennis@redhat.com> - 2.5.1-3
+- disbable PHP binding because PHP-7 is now the default and lasso
+ only knows how to build with PHP-5
+
+* Wed Jun 15 2016 John Dennis <jdennis@redhat.com> - 2.5.1-2
+- fix CFLAGS override in configure
+
+* Mon Feb 22 2016 John Dennis <jdennis@redhat.com> - 2.5.1-1
+- Upgrade to upstream 2.5.1 release
+ See Changelog for details, mostly bugs fixes,
+ most signficant is proper support of SHA-2
+ Resolves: #1295472
+ Resolves: #1303573
+- Add java_binding_lasso_log.patch to fix "make check" failure during rpmbuild
+ upstream commit d8e3ae8
+
+* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
+* Mon Sep 14 2015 John Dennis <jdennis@redhat.com> - 2.5.0-1
+- Upgrade to new upstream 2.5.0 release
+ Includes ECP support
+
+* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
+* Mon Mar 23 2015 Rob Crittenden <rcritten@redhat.com> - 2.4.1-3
+- Add BuildRequires on libtool
+- Add -fPIC to LDFLAGS
+- Disable perl bindings, it fails to build on x86.
+
+* Fri Jan 23 2015 Simo Sorce <simo@redhat.com> - 2.4.1-2
+- Enable perl bindings
+- Also add support for building with automake 1.15
+- Fix build issues on rawhide due to missing build dep on perl(Error)
+
+* Thu Aug 28 2014 Simo Sorce <simo@redhat.com> - 2.4.1-1
+- New upstream relase 2.4.1
+- Drop patches as they have all been integrated upstream
+
+* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Fri Jun 20 2014 Remi Collet <rcollet@redhat.com> - 2.4.0-4
+- rebuild for https://fedoraproject.org/wiki/Changes/Php56
+- add numerical prefix to extension configuration file
+- drop unneeded dependency on pecl
+- add provides php-lasso
+
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Fri Apr 25 2014 Simo Sorce <simo@redhat.com> - 2.4.0-2
+- Fixes for arches where pointers and integers do not have the same size
+ (ppc64, s390, etc..)
+
+* Mon Apr 14 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.4.0-1
+- Use OpenJDK instead of GCJ for java bindings
+
+* Sat Jan 11 2014 Simo Sorce <simo@redhat.com> 2.4.0-0
+- Update to final 2.4.0 version
+- Drop all patches, they are now included in 2.4.0
+- Change Source URI
+
+* Mon Dec 9 2013 Simo Sorce <simo@redhat.com> 2.3.6-0.20131125.5
+- Add patches to fix rpmlint license issues
+- Add upstream patches to fix some build issues
+
+* Thu Dec 5 2013 Simo Sorce <simo@redhat.com> 2.3.6-0.20131125.4
+- Add patch to support automake-1.14 for rawhide
+
+* Mon Nov 25 2013 Simo Sorce <simo@redhat.com> 2.3.6-0.20131125.3
+- Initial packaging
+- Based on the spec file by Jean-Marc Liger <jmliger@siris.sorbonne.fr>
+- Code is updated to latest master via a jumbo patch while waiting for
+ official upstream release.
+- Jumbo patch includes also additional patches sent to upstream list)
+ to build on Fedora 20
+- Perl bindings are disabled as they fail to build
+- Disable doc building as it doesn't ork correctly for now