b520bc1
%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4)
b520bc1
%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1)
b520bc1
68eba64
%if 0%{?fedora} < 20 && 0%{?rhel} < 7
3a95c26
# Private libraries are not be exposed globally by RPM
3a95c26
%{?filter_provides_in: %filter_provides_in %{php_extdir}/.*\.so$}
3a95c26
%{?filter_setup}
68eba64
%endif
68eba64
3a95c26
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}%{php_extdir}/.*\\.so$
68eba64
%if "%{php_version}" < "5.6"
68eba64
%global ini_name    %{name}.ini
68eba64
%else
68eba64
%global ini_name    40-%{name}.ini
68eba64
%endif
3a95c26
14f001e
Name:           uuid
87e9335
Version:        1.6.2
5e63ecf
Release:        33%{?dist}
14f001e
Summary:        Universally Unique Identifier library
14f001e
License:        MIT
14f001e
Group:          System Environment/Libraries
14f001e
URL:            http://www.ossp.org/pkg/lib/uuid/
14f001e
Source0:        ftp://ftp.ossp.org/pkg/lib/uuid/uuid-%{version}.tar.gz
af65830
Patch0:         uuid-1.6.1-ossp.patch
b869866
Patch1:         uuid-1.6.1-mkdir.patch
3a95c26
Patch2:         uuid-1.6.2-php54.patch
b869866
d306e5a
# rhbz#829532
d306e5a
Patch3:         uuid-1.6.2-hwaddr.patch
d306e5a
e3a6634
# do not strip binaries
e3a6634
Patch4:         uuid-1.6.2-nostrip.patch
852f701
Patch5: uuid-1.6.2-manfix.patch
eaf1ca2
Patch6: uuid-aarch64.patch
e3a6634
14f001e
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
af65830
BuildRequires:  libtool
14f001e
b327abc
Obsoletes:      %{name}-pgsql < 1.6.2-24
0a1b505
14f001e
%description
14f001e
OSSP uuid is a ISO-C:1999 application programming interface (API)
14f001e
and corresponding command line interface (CLI) for the generation
14f001e
of DCE 1.1, ISO/IEC 11578:1996 and RFC 4122 compliant Universally
14f001e
Unique Identifier (UUID). It supports DCE 1.1 variant UUIDs of version
14f001e
1 (time and node based), version 3 (name based, MD5), version 4
14f001e
(random number based) and version 5 (name based, SHA-1). Additional
14f001e
API bindings are provided for the languages ISO-C++:1998, Perl:5 and
14f001e
PHP:4/5. Optional backward compatibility exists for the ISO-C DCE-1.1
14f001e
and Perl Data::UUID APIs.
14f001e
14f001e
%package devel
14f001e
Summary:        Development support for Universally Unique Identifier library
14f001e
Group:          Development/Libraries
9d61cad
Requires:       pkgconfig
14f001e
Requires:       %{name} = %{version}-%{release}
14f001e
14f001e
%description devel
14f001e
Development headers and libraries for OSSP uuid.
14f001e
14f001e
%package c++
14f001e
Summary:        C++ support for Universally Unique Identifier library
14f001e
Group:          System Environment/Libraries
14f001e
Requires:       %{name} = %{version}-%{release}
14f001e
14f001e
%description c++
14f001e
C++ libraries for OSSP uuid.
14f001e
14f001e
%package c++-devel
14f001e
Summary:        C++ development support for Universally Unique Identifier library
14f001e
Group:          Development/Libraries
14f001e
Requires:       %{name}-c++ = %{version}-%{release}
14f001e
Requires:       %{name}-devel = %{version}-%{release}
14f001e
14f001e
%description c++-devel
14f001e
C++ development headers and libraries for OSSP uuid.
14f001e
14f001e
%package perl
14f001e
Summary:        Perl support for Universally Unique Identifier library
14f001e
Group:          Development/Libraries
11f8bc2
BuildRequires:  perl(Data::UUID)
c71568f
BuildRequires:  perl(ExtUtils::MakeMaker)
e06fa89
BuildRequires:  perl(Test::More)
14f001e
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
14f001e
Requires:       %{name} = %{version}-%{release}
11f8bc2
Requires:       perl(Data::UUID)
14f001e
14f001e
%description perl
11f8bc2
Perl OSSP uuid module.
14f001e
14f001e
%package php
14f001e
Summary:        PHP support for Universally Unique Identifier library
14f001e
Group:          Development/Libraries
af65830
BuildRequires:  php-devel
14f001e
Requires:       %{name} = %{version}-%{release}
32e26a3
%if 0%{?php_zend_api:1}
b520bc1
Requires: php(zend-abi) = %{php_zend_api}
b520bc1
Requires: php(api) = %{php_core_api}
b520bc1
%else
b520bc1
Requires: php-api = %{php_apiver}
b520bc1
%endif
14f001e
14f001e
%description php
14f001e
PHP OSSP uuid module.
14f001e
14f001e
%package dce
14f001e
Summary:        DCE support for Universally Unique Identifier library
14f001e
Group:          Development/Libraries
14f001e
Requires:       %{name} = %{version}-%{release}
14f001e
14f001e
%description dce
14f001e
DCE OSSP uuid library.
14f001e
14f001e
%package dce-devel
14f001e
Summary:        DCE development support for Universally Unique Identifier library
14f001e
Group:          Development/Libraries
14f001e
Requires:       %{name}-dce = %{version}-%{release}
14f001e
Requires:       %{name}-devel = %{version}-%{release}
14f001e
14f001e
%description dce-devel
14f001e
DCE development headers and libraries for OSSP uuid.
14f001e
14f001e
%prep
14f001e
%setup -q
b481530
%patch0 -p1
b869866
%patch1 -p1
3a95c26
%patch2 -p1 -b .php54
d306e5a
%patch3 -p1 -b .hwaddr
e3a6634
%patch4 -p1 -b .nostrip
852f701
%patch5 -p1 -b .manfix
eaf1ca2
%patch6 -p1 -b .aarch64
b481530
14f001e
%build
14f001e
# Build the library.
a44dbd3
export LIB_NAME=libossp-uuid.la
a44dbd3
export DCE_NAME=libossp-uuid_dce.la
a44dbd3
export CXX_NAME=libossp-uuid++.la
cfd2c9c
export PHP_NAME=$(pwd)/php/modules/ossp-uuid.so
cfd2c9c
export PGSQL_NAME=$(pwd)/pgsql/libossp-uuid.so
6d7ae7f
export CFLAGS="$RPM_OPT_FLAGS"
6d7ae7f
export CXXFLAGS="$RPM_OPT_FLAGS"
14f001e
%configure \
14f001e
    --disable-static \
14f001e
    --without-perl \
14f001e
    --without-php \
14f001e
    --with-dce \
14f001e
    --with-cxx \
e9a222f
    --without-pgsql
14f001e
6d7ae7f
make LIBTOOL=/usr/bin/libtool CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" %{?_smp_mflags}
14f001e
14f001e
# Build the Perl module.
14f001e
pushd perl
11f8bc2
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" COMPAT=0
14f001e
%{__perl} -pi -e 's/^\tLD_RUN_PATH=[^\s]+\s*/\t/' Makefile
14f001e
make %{?_smp_mflags}
14f001e
popd
14f001e
14f001e
# Build the PHP module.
14f001e
pushd php
b520bc1
export PHP_RPATH=no
14f001e
phpize
14f001e
CFLAGS="$RPM_OPT_FLAGS -I.. -L.. -L../.libs"
14f001e
%configure --enable-uuid
6d7ae7f
make CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" %{?_smp_mflags}
14f001e
popd
14f001e
14f001e
%install
14f001e
rm -rf $RPM_BUILD_ROOT
14f001e
14f001e
make install DESTDIR=$RPM_BUILD_ROOT
14f001e
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la $RPM_BUILD_ROOT%{_libdir}/*.a
14f001e
chmod 755 $RPM_BUILD_ROOT%{_libdir}/*.so.*.*.*
14f001e
14f001e
# Install the Perl modules.
14f001e
pushd perl
14f001e
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
14f001e
14f001e
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
14f001e
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
c71568f
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
14f001e
c71568f
%{_fixperms} $RPM_BUILD_ROOT/*
14f001e
popd
14f001e
14f001e
# Install the PHP module.
14f001e
pushd php
14f001e
make install INSTALL_ROOT=$RPM_BUILD_ROOT
b520bc1
rm -f $RPM_BUILD_ROOT%{php_extdir}/*.a
14f001e
popd
14f001e
b520bc1
# Put the php config bit into place
b520bc1
%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
68eba64
%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{ini_name}
b520bc1
; Enable %{name} extension module
b520bc1
extension=%{name}.so
b520bc1
__EOF__
b520bc1
b520bc1
b520bc1
14f001e
%check
14f001e
make check
14f001e
14f001e
pushd perl
14f001e
LD_LIBRARY_PATH=../.libs make test
11f8bc2
# Check that current Data::UUID is compatible with old compat layer
11f8bc2
perl -MData::UUID -e 'print "Testing compatibility of Data::UUID version $Data::UUID::VERSION\n";'
11f8bc2
LD_LIBRARY_PATH=../.libs make test TEST_FILES=uuid_compat.ts
14f001e
popd
14f001e
14f001e
pushd php
14f001e
LD_LIBRARY_PATH=../.libs make test
14f001e
popd
3a95c26
# Simple extension load test (no test run in make test)
3a95c26
LD_LIBRARY_PATH=.libs php -n -d extension_dir=php/modules -d extension=uuid.so -m | grep uuid
14f001e
14f001e
%clean
14f001e
rm -rf $RPM_BUILD_ROOT
14f001e
14f001e
%post -p /sbin/ldconfig
14f001e
14f001e
%post c++ -p /sbin/ldconfig
14f001e
14f001e
%post dce -p /sbin/ldconfig
14f001e
14f001e
%postun -p /sbin/ldconfig
14f001e
14f001e
%postun c++ -p /sbin/ldconfig
14f001e
14f001e
%postun dce -p /sbin/ldconfig
14f001e
14f001e
%files
14f001e
%defattr(-,root,root,-)
14f001e
%doc AUTHORS ChangeLog HISTORY NEWS PORTING README SEEALSO THANKS TODO USERS
14f001e
%{_bindir}/uuid
b481530
%{_libdir}/libossp-uuid.so.*
14f001e
%{_mandir}/man1/*
87e9335
%exclude %{_mandir}/man1/uuid-config.*
14f001e
14f001e
%files devel
14f001e
%defattr(-,root,root,-)
14f001e
%{_bindir}/uuid-config
14f001e
%{_includedir}/uuid.h
b481530
%{_libdir}/libossp-uuid.so
b481530
%{_libdir}/pkgconfig/ossp-uuid.pc
b481530
%{_mandir}/man3/ossp-uuid.3*
87e9335
%{_mandir}/man1/uuid-config.*
14f001e
14f001e
%files c++
14f001e
%defattr(-,root,root,-)
b481530
%{_libdir}/libossp-uuid++.so.*
14f001e
14f001e
%files c++-devel
14f001e
%defattr(-,root,root,-)
14f001e
%{_includedir}/uuid++.hh
b481530
%{_libdir}/libossp-uuid++.so
14f001e
%{_mandir}/man3/uuid++.3*
14f001e
14f001e
%files perl
14f001e
%defattr(-,root,root,-)
14f001e
%{perl_vendorarch}/auto/*
14f001e
%{perl_vendorarch}/OSSP*
14f001e
%{_mandir}/man3/OSSP::uuid.3*
14f001e
14f001e
%files php
14f001e
%defattr(-,root,root,-)
68eba64
%config(noreplace) %{_sysconfdir}/php.d/%{ini_name}
b520bc1
%{php_extdir}/%{name}.so
14f001e
14f001e
%files dce
14f001e
%defattr(-,root,root,-)
b481530
%{_libdir}/libossp-uuid_dce.so.*
14f001e
14f001e
%files dce-devel
14f001e
%defattr(-,root,root,-)
14f001e
%{_includedir}/uuid_dce.h
b481530
%{_libdir}/libossp-uuid_dce.so
14f001e
14f001e
%changelog
5e63ecf
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.6.2-33
5e63ecf
- Perl 5.24 rebuild
5e63ecf
17864a6
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.2-32
17864a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
17864a6
9a12e68
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-31
9a12e68
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9a12e68
215f8a5
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.6.2-30
215f8a5
- Perl 5.22 rebuild
215f8a5
72d8e06
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.6.2-29
72d8e06
- Rebuilt for GCC 5 C++11 ABI change
72d8e06
f24979f
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.6.2-28
f24979f
- Perl 5.20 rebuild
f24979f
63ccc02
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-27
63ccc02
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
63ccc02
68eba64
* Thu Jun 19 2014 Remi Collet <rcollet@redhat.com> - 1.6.2-26
68eba64
- rebuild for https://fedoraproject.org/wiki/Changes/Php56
68eba64
- add numerical prefix to PHP extension configuration file
68eba64
0ba3b8a
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-25
0ba3b8a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0ba3b8a
b327abc
* Wed Oct 30 2013 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-24
0a1b505
- drop uuid-pgsql subpackage, it is outdated and does not work, use 
0a1b505
  uuid-ossp module from postgresql-contrib instead
0a1b505
11f8bc2
* Mon Sep 16 2013 Paul Howarth <paul@city-fan.org> - 1.6.2-23
11f8bc2
- drop the perl(Data::UUID) compatibility shim and require the real thing
11f8bc2
  instead (#998591)
11f8bc2
f14a613
* Thu Sep 12 2013 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-22
f14a613
- rebuild for postgresql api change
f14a613
eaf1ca2
* Wed Aug 14 2013 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-21
eaf1ca2
- fix aarch64 support (#926687)
eaf1ca2
470c71d
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-20
470c71d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
470c71d
82d43de
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.6.2-19
82d43de
- Perl 5.18 rebuild
82d43de
852f701
* Thu May 30 2013 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-18
026f1b6
- describe -r in man page
852f701
Remi Collet 468e07f
* Fri Mar 22 2013 Remi Collet <rcollet@redhat.com> - 1.6.2-17
Remi Collet 468e07f
- rebuild for http://fedoraproject.org/wiki/Features/Php55
Remi Collet 468e07f
95375c5
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-16
95375c5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
95375c5
cf68ca4
* Tue Nov 06 2012 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-15
cf68ca4
- make uuid-php compatible with php 5.4 (#873594)
cf68ca4
8238483
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-14
8238483
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8238483
08be0b4
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1.6.2-13
08be0b4
- Perl 5.16 rebuild
08be0b4
6d7ae7f
* Tue Jun 19 2012 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-12
6d7ae7f
- enforce usage of our c(xx)flags
6d7ae7f
e3a6634
* Tue Jun 19 2012 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-11
e3a6634
- fix debuginfo
e3a6634
d306e5a
* Tue Jun 19 2012 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-10
d306e5a
- fix generation of MAC address based uuids (#829532), 
d306e5a
  patch by Philip Prindeville
d306e5a
8452c8b
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.6.2-9
8452c8b
- Perl 5.16 rebuild
8452c8b
3a95c26
* Thu Jan 19 2012 Remi Collet <remi@fedoraproject.org> - 1.6.2-8
3a95c26
- build against php 5.4, with patch
3a95c26
- add filter_provides to avoid private-shared-object-provides shout.so
3a95c26
- add minimal %%check for php extension
3a95c26
98d9d6d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-7
98d9d6d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
98d9d6d
a160079
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.6.2-6
a160079
- Perl mass rebuild
a160079
32e26a3
* Sat May 14 2011 Iain Arnell <iarnell@gmail.com> 1.6.2-5
32e26a3
- fix php_zend_api check
32e26a3
b869866
* Thu Mar 03 2011 Karsten Hopp <karsten@redhat.com> 1.6.2-4
b869866
- fix build
b869866
05278c7
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-3
05278c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
05278c7
ca35696
* Wed Jun 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.6.2-2
ca35696
- Mass rebuild with perl-5.12.0
ca35696
87e9335
* Wed Apr 21 2010 Michal Hlavinka <mhlavink@redhat.com> - 1.6.2-1
87e9335
- updated to 1.6.2
87e9335
- uuid-config man page moved to sub-package containing uuid-config (#562838)
87e9335
cfd2c9c
* Mon Feb  1 2010 Stepan Kasal <skasal@redhat.com> - 1.6.1-10
cfd2c9c
- silence rpmlint by using $(pwd) instead of shell variable RPM_SOURCE_DIR
cfd2c9c
0ee36c6
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.6.1-9
0ee36c6
- rebuild against perl 5.10.1
0ee36c6
ad8282b
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-8
ad8282b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ad8282b
b520bc1
* Mon Jul 13 2009 Remi Collet <Fedora@FamilleCollet.com> - 1.6.1-7
b520bc1
- rebuild for new PHP 5.3.0 ABI (20090626)
b520bc1
- add PHP ABI check
b520bc1
- use php_extdir
b520bc1
- add php configuration file (/etc/php.d/uuid.ini)
b520bc1
9d61cad
* Thu May  7 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-6
9d61cad
- Using plain old "Requires: pkgconfig" instead -- see my post to
9d61cad
  fedora-devel-list made today.
9d61cad
dcf4b9e
* Mon May  4 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-5
dcf4b9e
- Replace expensive %%{_libdir}/pkgconfig dependency in uuid-devel
dcf4b9e
  with pkgconfig%%{_isa} for Fedora >= 11 (#484849).
dcf4b9e
aa45e25
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-4
aa45e25
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
aa45e25
bcaed99
* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.1-3
dcf4b9e
- Rebuild for new perl
bcaed99
382fe71
* Thu Mar  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.1-2
382fe71
- forgot to cvs add patch
382fe71
af65830
* Thu Mar  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.1-1
af65830
- 1.6.1
af65830
ff78d00
* Thu Mar  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.0-4
ff78d00
- rebuild for new perl
ff78d00
add9722
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.6.0-3
add9722
- Autorebuild for GCC 4.3
add9722
a7e7259
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.6.0-2
a7e7259
- Rebuild for selinux ppc32 issue.
a7e7259
e06fa89
* Tue Jul 24 2007 Steven Pritchard <steve@kspei.com> 1.6.0-1
e06fa89
- Update to 1.6.0.
e06fa89
- BR Test::More.
e06fa89
c71568f
* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 1.5.1-3
c71568f
- Fix find option order.
c71568f
- Use fixperms macro instead of our own chmod incantation.
c71568f
- BR ExtUtils::MakeMaker.
c71568f
7225379
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 1.5.1-2
7225379
 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
7225379
a44dbd3
* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 1.5.1-1
a44dbd3
- Update to 1.5.1.
a44dbd3
b481530
* Sat Jul 29 2006 Steven Pritchard <steve@kspei.com> 1.5.0-1
b481530
- Update to 1.5.0.
b481530
- Rename libuuid* to libossp-uuid*, uuid.3 to ossp-uuid.3, and uuid.pc
b481530
  to ossp-uuid.pc to avoid conflicts with e2fsprogs-devel (#198520).
b481530
- Clean out the pgsql directory.  (Some cruft shipped with this release.)
b481530
14f001e
* Wed May 24 2006 Steven Pritchard <steve@kspei.com> 1.4.2-4
14f001e
- Remove static php module.
14f001e
14f001e
* Tue May 23 2006 Steven Pritchard <steve@kspei.com> 1.4.2-3
14f001e
- Force use of system libtool.
14f001e
- Make libs executable.
14f001e
14f001e
* Tue May 23 2006 Steven Pritchard <steve@kspei.com> 1.4.2-2
14f001e
- License is MIT(-ish).
14f001e
14f001e
* Fri May 19 2006 Steven Pritchard <steve@kspei.com> 1.4.2-1
14f001e
- Initial packaging attempt.