mirror of
https://github.com/xcat2/xcat-dep.git
synced 2024-11-21 17:11:45 +00:00
update the steps for build postgresql 9.1.5 on sles11sp2 and add the modified spec file
Former-commit-id: 8d1cde42a7e3924bfe5155095b3152a8733d1261
This commit is contained in:
parent
ed9974b8f3
commit
1ca6d1da23
@ -1,29 +1,74 @@
|
||||
This information is to build postgresql 9.1.X on a Redhat6 machine. postgresql9.1 will not officially be in a distro until Redhat7 and SLES 12, so for PCM to use it we need to build for the current Redhat6.3 which we will release xCAT/PCM produce.
|
||||
|
||||
1) Need to install rpmbuild from the disto and gcc on your build machine
|
||||
2)Must have uuid_devel, did not see to be in the Redhat6.3 distro.
|
||||
I downloaded from
|
||||
http://pkgs.org/centos-6-rhel-6/centos-rhel-x86_64/uuid-devel-1.6.1-10.el6.x86_64.rpm/download/
|
||||
rpm -ivn uuid-devel-1.6.1-10.el6.x86_64.rpm
|
||||
[RHEL6]
|
||||
1) Need to install rpmbuild from the distro and gcc on your build machine
|
||||
2) Must have uuid-devel, did not see to be in the Redhat6.3 distro.
|
||||
* Downloaded the packages from
|
||||
http://pkgs.org/centos-6-rhel-6/centos-rhel-x86_64/uuid-devel-1.6.1-10.el6.x86_64.rpm/download/
|
||||
* On x86_64, there's already an existed prebuilt rpm package available
|
||||
rpm -ivh uuid-devel-1.6.1-10.el6.x86_64.rpm
|
||||
* On ppc64, need to download the source rpm and rebuild it with the spec provided by xCAT.
|
||||
rpm -ivh uuid-1.6.1-10.el6.src.rpm
|
||||
cd /root/rpmbuild/SPECS
|
||||
backup uuid.spec to uuid.spec.orig
|
||||
cp uuid.spec provided by xCAT in this directory to /root/rpmbuild/SPECS
|
||||
rpmbuild -ba /root/rpmbuild/SPECS/uuid.spec
|
||||
rpm -ivh /root/rpmbuild/RPMS/ppc64/uuid-devel-1.6.1-10.el6.ppc64.rpm
|
||||
|
||||
3) Use the below website to download src rpms for postgresql91. I picked the latest
|
||||
PTF level 9.1.5.
|
||||
http://yum.postgresql.org/srpms/9.1/redhat/rhel-6-x86_64/
|
||||
From here I got postgresql91-9.1.5-1PGDG.rhel6.src.rpm
|
||||
|
||||
4)Run rpm -ivh postgresql91-9.1.5-1PGDG.rhel6.src.rpm to install the source rpms no the build machine.
|
||||
4) Run rpm -ivh postgresql91-9.1.5-1PGDG.rhel6.src.rpm to install the source rpms on the build machine.
|
||||
|
||||
|
||||
5)When you installed the source rpm, it put the data in /root/rpmbuild
|
||||
5) When you installed the source rpm, it put the data in /root/rpmbuild
|
||||
cd /root/rpmbuild/SPECS
|
||||
cp postgresql-9.1.spec postgresql-9.1.spec.org
|
||||
cp postgresql-9.1.spec postgresql-9.1.spec.orig
|
||||
We have modified the spec that Fedora16 used to build postgresql91, so
|
||||
that all the commands and code will go in the normal locations and provide
|
||||
that spec here
|
||||
cp postgresql-9.1.spec provided by xCAT in this directory to /root/rpmbuild/SPECS
|
||||
|
||||
6)If not building 9.1.5-1 then modifiy /root/rpmbuild/SPECS/postgresql-9.1.spec and change the VERSION: and RELEASE: line to match your level of postgresql.
|
||||
|
||||
6) build the rpms
|
||||
rpmbuild -ba postgresql-9.1.spec
|
||||
|
||||
7) Packages required by PCM on RHEL:
|
||||
- postgresql, postgresql-libs, postgresql-server, postgresql-contrib
|
||||
|
||||
[SLES11]
|
||||
1) Need to install rpmbuild from the distro and gcc on your build machine, and we need SLES11 SP2 SDK1 iso to install extra build dependencies
|
||||
2) Must have uuid-devel, we can get it from "server:database:postgresql" project on OBS (OpenSUSE Build Service)
|
||||
* Download the packages from repository for SLE_11_SP2_Update
|
||||
- libossp-uuid16-1.6.2-36.1
|
||||
- libossp-uuid_dce16-1.6.2-36.1
|
||||
- libossp-uuid++16-1.6.2-36.1
|
||||
- uuid-devel
|
||||
* Or just add the repository
|
||||
zypper ar http://download.opensuse.org/repositories/server:/database:/postgresql/SLE_11_SP2_Update/ postgresql_build
|
||||
zypper install uuid-devel
|
||||
|
||||
3) Download the src rpms for postgresql from "openSUSE" project on OBS
|
||||
* wget http://download.opensuse.org/repositories/openSUSE:/12.2:/Update/standard/src/postgresql-libs-9.1.5-7.8.1.src.rpm
|
||||
* wget http://download.opensuse.org/repositories/openSUSE:/12.2:/Update/standard/src/postgresql-9.1.5-7.8.1.src.rpm
|
||||
|
||||
4) Run rpm -ivh postgresql-9.1.5-7.8.1.src.rpm/postgresql-libs-9.1.5-7.8.1.src.rpm to install the source rpms on the build machine
|
||||
|
||||
5) When you installed the source rpm, it put the data in /usr/src/packages
|
||||
cd /usr/src/packages/SPECS
|
||||
cp postgresql.spec postgresql.spec.orig
|
||||
We have modified the spec that OpenSUSE12.2 used to build postgresql to disable regression test.
|
||||
cp postgresql-9.1.spec.sles provided by xCAT in this directory to /usr/src/packages/SPECS
|
||||
|
||||
6) build the rpms
|
||||
rpmbuild -ba postgresql-libs.spec
|
||||
rpmbuild -ba postgresql-9.1.spec.sles
|
||||
|
||||
7) Packages required by PCM on SLES:
|
||||
- postgresql, postgresql-libs, postgresql-server, postgresql-contrib
|
||||
- libossp-uuid16
|
||||
|
||||
|
||||
Note: If not building 9.1.5-x then modifiy postgresql-9.1.spec and change the VERSION: and RELEASE: line to match your level of postgresql.
|
||||
|
||||
|
1772
postgres91/postgresql-9.1.spec.sles
Normal file
1772
postgres91/postgresql-9.1.spec.sles
Normal file
File diff suppressed because it is too large
Load Diff
332
postgres91/uuid.spec
Normal file
332
postgres91/uuid.spec
Normal file
@ -0,0 +1,332 @@
|
||||
%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4)
|
||||
%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1)
|
||||
|
||||
Name: uuid
|
||||
Version: 1.6.1
|
||||
Release: 10%{?dist}
|
||||
Summary: Universally Unique Identifier library
|
||||
License: MIT
|
||||
Group: System Environment/Libraries
|
||||
URL: http://www.ossp.org/pkg/lib/uuid/
|
||||
Source0: ftp://ftp.ossp.org/pkg/lib/uuid/uuid-%{version}.tar.gz
|
||||
Patch0: uuid-1.6.1-ossp.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: libtool
|
||||
|
||||
%description
|
||||
OSSP uuid is a ISO-C:1999 application programming interface (API)
|
||||
and corresponding command line interface (CLI) for the generation
|
||||
of DCE 1.1, ISO/IEC 11578:1996 and RFC 4122 compliant Universally
|
||||
Unique Identifier (UUID). It supports DCE 1.1 variant UUIDs of version
|
||||
1 (time and node based), version 3 (name based, MD5), version 4
|
||||
(random number based) and version 5 (name based, SHA-1). Additional
|
||||
API bindings are provided for the languages ISO-C++:1998, Perl:5 and
|
||||
PHP:4/5. Optional backward compatibility exists for the ISO-C DCE-1.1
|
||||
and Perl Data::UUID APIs.
|
||||
|
||||
%package devel
|
||||
Summary: Development support for Universally Unique Identifier library
|
||||
Group: Development/Libraries
|
||||
Requires: pkgconfig
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
Development headers and libraries for OSSP uuid.
|
||||
|
||||
#%package c++
|
||||
#Summary: C++ support for Universally Unique Identifier library
|
||||
#Group: System Environment/Libraries
|
||||
#Requires: %{name} = %{version}-%{release}
|
||||
|
||||
#%description c++
|
||||
#C++ libraries for OSSP uuid.
|
||||
|
||||
#%package c++-devel
|
||||
#Summary: C++ development support for Universally Unique Identifier library
|
||||
#Group: Development/Libraries
|
||||
#Requires: %{name}-c++ = %{version}-%{release}
|
||||
#Requires: %{name}-devel = %{version}-%{release}
|
||||
|
||||
#%description c++-devel
|
||||
#C++ development headers and libraries for OSSP uuid.
|
||||
|
||||
#%package perl
|
||||
#Summary: Perl support for Universally Unique Identifier library
|
||||
#Group: Development/Libraries
|
||||
#BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
#BuildRequires: perl(Test::More)
|
||||
#Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
#Requires: %{name} = %{version}-%{release}
|
||||
|
||||
#%description perl
|
||||
#Perl OSSP uuid modules, which includes a Data::UUID replacement.
|
||||
|
||||
#%package php
|
||||
#Summary: PHP support for Universally Unique Identifier library
|
||||
#Group: Development/Libraries
|
||||
#BuildRequires: php-devel
|
||||
#Requires: %{name} = %{version}-%{release}
|
||||
#%if 0%{?php_zend_api}
|
||||
#Requires: php(zend-abi) = %{php_zend_api}
|
||||
#Requires: php(api) = %{php_core_api}
|
||||
#%else
|
||||
#Requires: php-api = %{php_apiver}
|
||||
#%endif
|
||||
|
||||
#%description php
|
||||
#PHP OSSP uuid module.
|
||||
|
||||
#%package pgsql
|
||||
#Summary: PostgreSQL support for Universally Unique Identifier library
|
||||
#Group: Development/Libraries
|
||||
#BuildRequires: postgresql-devel
|
||||
#Requires: %{_libdir}/pgsql
|
||||
#Requires: %{_datadir}/pgsql
|
||||
#Requires: %{name} = %{version}-%{release}
|
||||
|
||||
#%description pgsql
|
||||
#PostgreSQL OSSP uuid module.
|
||||
|
||||
#%package dce
|
||||
#Summary: DCE support for Universally Unique Identifier library
|
||||
#Group: Development/Libraries
|
||||
#Requires: %{name} = %{version}-%{release}
|
||||
|
||||
#%description dce
|
||||
#DCE OSSP uuid library.
|
||||
|
||||
#%package dce-devel
|
||||
#Summary: DCE development support for Universally Unique Identifier library
|
||||
#Group: Development/Libraries
|
||||
#Requires: %{name}-dce = %{version}-%{release}
|
||||
#Requires: %{name}-devel = %{version}-%{release}
|
||||
|
||||
#%description dce-devel
|
||||
#DCE development headers and libraries for OSSP uuid.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
# Build the library.
|
||||
export LIB_NAME=libossp-uuid.la
|
||||
export DCE_NAME=libossp-uuid_dce.la
|
||||
export CXX_NAME=libossp-uuid++.la
|
||||
export PHP_NAME=$(pwd)/php/modules/ossp-uuid.so
|
||||
export PGSQL_NAME=$(pwd)/pgsql/libossp-uuid.so
|
||||
%configure \
|
||||
--disable-static \
|
||||
--without-perl \
|
||||
--without-php \
|
||||
--with-dce \
|
||||
--with-cxx \
|
||||
--with-pgsql
|
||||
|
||||
make LIBTOOL=/usr/bin/libtool %{?_smp_mflags}
|
||||
|
||||
# Build the Perl module.
|
||||
#pushd perl
|
||||
#%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" COMPAT=1
|
||||
#%{__perl} -pi -e 's/^\tLD_RUN_PATH=[^\s]+\s*/\t/' Makefile
|
||||
#make %{?_smp_mflags}
|
||||
#popd
|
||||
|
||||
# Build the PHP module.
|
||||
#pushd php
|
||||
#export PHP_RPATH=no
|
||||
#phpize
|
||||
#CFLAGS="$RPM_OPT_FLAGS -I.. -L.. -L../.libs"
|
||||
#%configure --enable-uuid
|
||||
#make %{?_smp_mflags}
|
||||
#popd
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||
chmod 755 $RPM_BUILD_ROOT%{_libdir}/*.so.*.*.*
|
||||
|
||||
# Install the Perl modules.
|
||||
#pushd perl
|
||||
#make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
|
||||
#find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
|
||||
#find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||
#find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||
|
||||
#%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
#popd
|
||||
|
||||
# Install the PHP module.
|
||||
#pushd php
|
||||
#make install INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
#rm -f $RPM_BUILD_ROOT%{php_extdir}/*.a
|
||||
#popd
|
||||
|
||||
# Put the php config bit into place
|
||||
#%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
|
||||
#%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini
|
||||
#; Enable %{name} extension module
|
||||
#extension=%{name}.so
|
||||
#__EOF__
|
||||
|
||||
|
||||
|
||||
%check
|
||||
make check
|
||||
|
||||
#pushd perl
|
||||
#LD_LIBRARY_PATH=../.libs make test
|
||||
#popd
|
||||
|
||||
#pushd php
|
||||
#LD_LIBRARY_PATH=../.libs make test
|
||||
#popd
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
#%post c++ -p /sbin/ldconfig
|
||||
|
||||
#%post dce -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
#%postun c++ -p /sbin/ldconfig
|
||||
|
||||
#%postun dce -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS ChangeLog HISTORY NEWS PORTING README SEEALSO THANKS TODO USERS
|
||||
%{_bindir}/uuid
|
||||
%{_libdir}/libossp-uuid.so.*
|
||||
%{_mandir}/man1/*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/uuid-config
|
||||
%{_includedir}/uuid.h
|
||||
%{_libdir}/libossp-uuid.so
|
||||
%{_libdir}/pkgconfig/ossp-uuid.pc
|
||||
%{_mandir}/man3/ossp-uuid.3*
|
||||
|
||||
#%files c++
|
||||
#%defattr(-,root,root,-)
|
||||
#%{_libdir}/libossp-uuid++.so.*
|
||||
|
||||
#%files c++-devel
|
||||
#%defattr(-,root,root,-)
|
||||
#%{_includedir}/uuid++.hh
|
||||
#%{_libdir}/libossp-uuid++.so
|
||||
#%{_mandir}/man3/uuid++.3*
|
||||
|
||||
#%files perl
|
||||
#%defattr(-,root,root,-)
|
||||
#%{perl_vendorarch}/auto/*
|
||||
#%{perl_vendorarch}/Data*
|
||||
#%{perl_vendorarch}/OSSP*
|
||||
#%{_mandir}/man3/Data::UUID.3*
|
||||
#%{_mandir}/man3/OSSP::uuid.3*
|
||||
|
||||
#%files php
|
||||
#%defattr(-,root,root,-)
|
||||
#%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini
|
||||
#%{php_extdir}/%{name}.so
|
||||
|
||||
#%files pgsql
|
||||
#%defattr(-,root,root,-)
|
||||
#%{_libdir}/pgsql/*
|
||||
#%{_datadir}/pgsql/*
|
||||
|
||||
#%files dce
|
||||
#%defattr(-,root,root,-)
|
||||
#%{_libdir}/libossp-uuid_dce.so.*
|
||||
|
||||
#%files dce-devel
|
||||
#%defattr(-,root,root,-)
|
||||
#%{_includedir}/uuid_dce.h
|
||||
#%{_libdir}/libossp-uuid_dce.so
|
||||
|
||||
%changelog
|
||||
* Mon Feb 1 2010 Stepan Kasal <skasal@redhat.com> - 1.6.1-10
|
||||
- silence rpmlint by using $(pwd) instead of shell variable RPM_SOURCE_DIR
|
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.6.1-9
|
||||
- rebuild against perl 5.10.1
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Mon Jul 13 2009 Remi Collet <Fedora@FamilleCollet.com> - 1.6.1-7
|
||||
- rebuild for new PHP 5.3.0 ABI (20090626)
|
||||
- add PHP ABI check
|
||||
- use php_extdir
|
||||
- add php configuration file (/etc/php.d/uuid.ini)
|
||||
|
||||
* Thu May 7 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-6
|
||||
- Using plain old "Requires: pkgconfig" instead -- see my post to
|
||||
fedora-devel-list made today.
|
||||
|
||||
* Mon May 4 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-5
|
||||
- Replace expensive %%{_libdir}/pkgconfig dependency in uuid-devel
|
||||
with pkgconfig%%{_isa} for Fedora >= 11 (#484849).
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.1-3
|
||||
- Rebuild for new perl
|
||||
|
||||
* Thu Mar 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.1-2
|
||||
- forgot to cvs add patch
|
||||
|
||||
* Thu Mar 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.1-1
|
||||
- 1.6.1
|
||||
|
||||
* Thu Mar 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.0-4
|
||||
- rebuild for new perl
|
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.6.0-3
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.6.0-2
|
||||
- Rebuild for selinux ppc32 issue.
|
||||
|
||||
* Tue Jul 24 2007 Steven Pritchard <steve@kspei.com> 1.6.0-1
|
||||
- Update to 1.6.0.
|
||||
- BR Test::More.
|
||||
|
||||
* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 1.5.1-3
|
||||
- Fix find option order.
|
||||
- Use fixperms macro instead of our own chmod incantation.
|
||||
- BR ExtUtils::MakeMaker.
|
||||
|
||||
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 1.5.1-2
|
||||
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
||||
|
||||
* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 1.5.1-1
|
||||
- Update to 1.5.1.
|
||||
|
||||
* Sat Jul 29 2006 Steven Pritchard <steve@kspei.com> 1.5.0-1
|
||||
- Update to 1.5.0.
|
||||
- Rename libuuid* to libossp-uuid*, uuid.3 to ossp-uuid.3, and uuid.pc
|
||||
to ossp-uuid.pc to avoid conflicts with e2fsprogs-devel (#198520).
|
||||
- Clean out the pgsql directory. (Some cruft shipped with this release.)
|
||||
|
||||
* Wed May 24 2006 Steven Pritchard <steve@kspei.com> 1.4.2-4
|
||||
- Remove static php module.
|
||||
|
||||
* Tue May 23 2006 Steven Pritchard <steve@kspei.com> 1.4.2-3
|
||||
- Force use of system libtool.
|
||||
- Make libs executable.
|
||||
|
||||
* Tue May 23 2006 Steven Pritchard <steve@kspei.com> 1.4.2-2
|
||||
- License is MIT(-ish).
|
||||
|
||||
* Fri May 19 2006 Steven Pritchard <steve@kspei.com> 1.4.2-1
|
||||
- Initial packaging attempt.
|
Loading…
Reference in New Issue
Block a user