[OpenSRF-GIT] OpenSRF branch master updated. 5084cdf861386bc0554e5814107763124a65e11d
Evergreen Git
git at git.evergreen-ils.org
Wed May 30 22:21:49 EDT 2012
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenSRF".
The branch, master has been updated
via 5084cdf861386bc0554e5814107763124a65e11d (commit)
via 984c76516e8e0ba62ee0ec9d1bb1e24db6682fcb (commit)
from f9f38b69c88ebb16c28646d4935031731e30dd54 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5084cdf861386bc0554e5814107763124a65e11d
Author: Dan Scott <dscott at laurentian.ca>
Date: Tue May 22 16:45:33 2012 -0400
Add "tar" to base prereqs to appease autotools
On a minimal install of Fedora 17, I was running into the perplexing
error message whilst running 'autoreconf -i':
libtoolize: can not copy `/usr/share/libtool/config/ltmain.sh' to `./'
This was confusing because a manual copy would, in fact, copy the file
just fine.
http://lists.gnu.org/archive/html/libtool/2009-07/msg00030.html finally
lead to enlightenment: autotools uses "tar" to copy files, not "cp".
Thus, to avoid similar head-scratching install problems in the future,
add "tar" to the base prerequisites for building OpenSRF (both to the
DEBs list and the RPMs list).
Signed-off-by: Dan Scott <dscott at laurentian.ca>
diff --git a/src/extras/Makefile.install b/src/extras/Makefile.install
index e69b49b..f4d5cf5 100644
--- a/src/extras/Makefile.install
+++ b/src/extras/Makefile.install
@@ -76,6 +76,7 @@ DEBS = \
python-dev\
python-libxml2\
python-setuptools\
+ tar\
zlib1g-dev
FEDORAS = \
@@ -136,7 +137,8 @@ FEDORAS = \
python-memcached \
python-setuptools \
python-simplejson \
- readline-devel
+ readline-devel \
+ tar
DEB_APACHE_MODS = \
ssl
commit 984c76516e8e0ba62ee0ec9d1bb1e24db6682fcb
Author: Dan Scott <dan at coffeecode.net>
Date: Tue May 22 02:26:04 2012 -0400
Update OS support in README / Makefile.install
Kick Debian Lenny, Ubuntu Hardy, and RHEL 5 / CentOS 5 to the curb.
Also change the name of the README to the more generic & instructive
"Installing OpenSRF" rather than "README for OpenSRF #.#.#".
Signed-off-by: Dan Scott <dan at coffeecode.net>
diff --git a/README b/README
index 9a895d9..f1f14c8 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-README for OpenSRF 2.0.2
-========================
+Installing OpenSRF
+==================
Preamble: referenced user accounts
----------------------------------
@@ -39,18 +39,12 @@ make -f src/extras/Makefile.install <osname>
Well-tested values for <osname> include:
- * `debian-lenny` for Debian 5.0
- * `debian-squeeze` for Debian 6.0.0
+ * `debian-squeeze` for Debian 6.0
* `ubuntu-hardy` for Ubuntu 8.04
* `ubuntu-lucid` for Ubuntu 10.04
* `ubuntu-precise` for Ubuntu 12.04
* `fedora` for Fedora 16
-Less-tested values for <osname> include:
-
- * `centos` for CentOS 5
- * `rhel` for Red Hat Enterprise Linux 5
-
Patches and suggestions for improvement from users of these distributions,
or others, are welcome!
diff --git a/src/extras/Makefile.install b/src/extras/Makefile.install
index b6c7373..e69b49b 100644
--- a/src/extras/Makefile.install
+++ b/src/extras/Makefile.install
@@ -4,76 +4,28 @@
#
# Makefile to install prerequisites for OpenSRF
#
-# Currently supports Debian (lenny/squeeze), Ubuntu (hardy/lucid/precise)
-# Working towards support of CentOS 5 / RHEL 5 and Fedora.
+# Currently supports Debian (squeeze), Ubuntu (lucid/precise)
+# and Fedora (16).
+#
# Installs Perl prereqs, libjs with Perl wrapper
#
# usage:
-# make -f Makefile.install debian-lenny
-# - or -
# make -f Makefile.install debian-squeeze
# - or -
-# make -f Makefile.install ubuntu-hardy
-# - or -
# make -f Makefile.install ubuntu-lucid
# - or -
# make -f Makefile.install ubuntu-precise
# - or -
-# make -f Makefile.install centos
-# - or -
-# make -f Makefile.install rhel
-# - or -
# make -f Makefile.install fedora
#
-# Notes:
-#
-# This makefile has been tested much more with Ubuntu and Debian than
-# CentOS, Fedora, or RHEL.
-#
# ---------------------------------------------------------------------
# Make any assumptions about the shell being used explicit
SHELL=/bin/bash
-# XXX
-# Gentoo needs explicit versions on many of these packages
-# to simulate a "blessed" set of packages
-
# 64 or 32 bit os?
LBITS=$(shell getconf LONG_BIT)
-# ejabberd is not packaged on CentOS/RHEL, so we have to
-# download the installable package from the source
-EJABBERD_VER=2.1.2
-EJABBERD_PKG=ejabberd-2.1.2-linux-x86-installer.bin
-EJABBERD_PKG_x64=ejabberd-2.1.2-linux-x86_64-installer.bin
-EJABBERD_HOST=http://www.process-one.net/downloads/ejabberd
-
-# Centos and Redhat will require the rpmforge repository mostly for memcache and perl modules
-RPMFORGE_PKG_x64=rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
-RPMFORGE_PKG=rpmforge-release-0.5.1-1.el5.rf.i386.rpm
-RPMFORGE_HOST=http://packages.sw.be/rpmforge-release
-
-# need newer libtool, autoconf, and automake on centos
-AUTOCONF_HOST=http://ftp.gnu.org/gnu/autoconf
-AUTOCONF_PKG=autoconf-2.65
-LIBTOOL_HOST=http://ftp.gnu.org/gnu/libtool
-LIBTOOL_PKG=libtool-2.2.6b
-AUTOMAKE_HOST=http://ftp.gnu.org/gnu/automake
-AUTOMAKE_PKG=automake-1.11
-
-# libmemcached is only packaged on newer distros
-LIBMEMCACHED=libmemcached-0.40
-LIBMEMCACHED_HOST=http://download.tangent.org
-
-# XML::LibXSLT fails due to old libxslt
-XSLT=libxslt-1.1.22
-XSLT_HOST=ftp://ftp.gnome.org/pub/GNOME/sources/libxslt/1.1
-
-# libxslt depends on a newer version of libxml2:
-XML2=libxml2-2.6.30
-XML2_HOST=ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6
-
APT_TOOL=aptitude -yq
# Debian dependencies
@@ -126,64 +78,6 @@ DEBS = \
python-setuptools\
zlib1g-dev
-CENTOS = \
- apr-util-devel \
- autoconf \
- automake \
- gcc \
- gcc-c++ \
- gdbm-devel \
- httpd-devel \
- less \
- libmemcache-devel \
- libtool \
- libxml2-devel \
- libxslt-devel \
- make \
- memcached \
- mod_perl \
- mod_ssl \
- ncurses \
- ncurses-devel \
- perl-Cache-Memcached \
- perl-Class-DBI-AbstractSearch \
- perl-Class-DBI-SQLite \
- perl-DateTime \
- perl-DateTime-Format-ISO8601 \
- perl-DateTime-Format-Mail \
- perl-DateTime-Set \
- perl-DateTime-TimeZone \
- perl-DBI \
- perl-Email-Send \
- perl-Error \
- perl-File-Find-Rule \
- perl-JSON-XS \
- perl-libwww-perl \
- perl-Log-Log4perl \
- perl-Memcached-libmemcached \
- perl-Module-Build \
- perl-Net-DNS \
- perl-Net-Server \
- perl-Template-Toolkit \
- perl-Test-Pod \
- perl-Tie-IxHash \
- perl-UNIVERSAL-require \
- perl-Unix-Syslog \
- perl-XML-Parser \
- psmisc \
- python-devel \
- python-setuptools\
- readline-devel \
- wget
-
-CENTOS_PERL = \
- Net::Jabber \
- Net::XMPP \
- RPC::XML \
- XML::LibXML \
- XML::LibXSLT \
- XML::Simple
-
FEDORAS = \
autoconf \
automake \
@@ -270,138 +164,24 @@ EXTRA_DEBS_UBUNTU_PRECISE = \
ncurses-dev \
libreadline-dev
-# generic CPAN modules:
-# * DateTime::Format::ISO8601 is packaged by both Debian Lenny and Ubuntu Intrepid
-# * JSON::XS is packaged by both Debian Lenny and Ubuntu Intrepid
-# * libnet-server-perl 0.97 is packaged on Debian Lenny and Ubuntu Intrepid
-# - is there a specific need for 0.90?
-CPAN_MODULES = \
- DateTime::Format::ISO8601 \
- RHANDOM/Net-Server-0.90.tar.gz \
- JSON::XS
-
-# libxml-libxml-perl on Debian Lenny and Ubuntu Intrepid is 1.66, which
-# has broken namespace handling. so we still need to install these from
-# CPAN. *sigh*
-CPAN_MODULES_XML = \
- XML::LibXML \
- XML::LibXSLT
-
# ----------------------------------------------------------------------------
all:
@echo "please specify an OS" && exit 0
-centos: install_rpmforge install_centos_rpms install_ejabberd install_buildutils install_libmemcached install_libxml2 install_libxslt install_centos_perl create_ld_local
-
-debian-lenny: generic_debian install_cpan_xml lenny install_libmemcached
debian-squeeze: generic_debian squeeze
-lenny: install_extra_debs
squeeze: install_extra_debs_squeeze
generic_debian: install_debs debian_sys_config
fedora: install_fedora_rpms
-rhel: centos
-
-ubuntu-hardy: generic_ubuntu install_cpan_xml hardy
ubuntu-lucid: generic_ubuntu lucid
ubuntu-precise: generic_ubuntu precise
-hardy: install_cpan install_libmemcached
lucid: install_extra_debs install_extra_debs_lucid
precise: install_extra_debs install_extra_debs_precise
generic_ubuntu: install_debs debian_sys_config
-# - COMMON TARGETS ---------------------------------------------------------
-
-# Install the CPAN modules
-install_cpan:
- for m in $(CPAN_MODULES); do perl -MCPAN -e "install \"$$m\";"; done
-
-# Install CPAN modules that need to be forced
-install_cpan_force:
- for m in $(CPAN_MODULES_FORCE); do perl -MCPAN -e "CPAN::Shell->force(qw#install $$m#);"; done
-
-# Install the CPAN XML modules
-install_cpan_xml:
- for m in $(CPAN_MODULES_XML); do perl -MCPAN -e "install \"$$m\";"; done
-
-# Install ejabberd from official project installer binary
-install_ejabberd:
- if [ $(LBITS) -eq 64 ]; then \
- if [ ! -f $(EJABBERD_PKG_x64).gz ]; then \
- wget $(EJABBERD_HOST)/$(EJABBERD_VER)/$(EJABBERD_PKG_x64).gz; \
- fi; \
- gunzip $(EJABBERD_PKG_x64).gz; \
- chmod u+x $(EJABBERD_PKG_x64); \
- ./$(EJABBERD_PKG_x64) --mode unattended --prefix /opt/ejabberd --adminpw opensrf ; \
- fi;
- if [ $(LBITS) -eq 32 ]; then \
- if [ ! -f $(EJABBERD_PKG).gz ]; then \
- wget $(EJABBERD_HOST)/$(EJABBERD_VER)/$(EJABBERD_PKG).gz; \
- fi; \
- gunzip $(EJABBERD_PKG).gz; \
- chmod u+x $(EJABBERD_PKG); \
- ./$(EJABBERD_PKG) --mode unattended --prefix /opt/ejabberd --adminpw opensrf ; \
- fi;
-
-# Install rpmforge for redhat and centos
-install_rpmforge:
- if [ $(LBITS) -eq 64 ]; then \
- if [ ! -f $(RPMFORGE_PKG_x64) ]; then \
- wget $(RPMFORGE_HOST)/$(RPMFORGE_PKG_x64) ; \
- yum -y remove subversion*i386 ; \
- fi; \
- rpm -Uvh --force ./$(RPMFORGE_PKG_x64) ; \
- fi;
- if [ $(LBITS) -eq 32 ]; then \
- if [ ! -f $(RPMFORGE_PKG) ]; then \
- wget $(RPMFORGE_HOST)/$(RPMFORGE_PKG) ; \
- fi; \
- rpm -Uvh --force ./$(RPMFORGE_PKG) ; \
- fi;
- yum update -y
-
-# Install automake, autoconf, and libtool
-install_buildutils:
- if [ ! -f $(LIBTOOL_PKG).tar.gz ]; then wget $(LIBTOOL_HOST)/$(LIBTOOL_PKG).tar.gz; fi;
- tar zxf $(LIBTOOL_PKG).tar.gz
- cd $(LIBTOOL_PKG) && ./configure --prefix=/usr && make && make install
-
- if [ ! -f $(AUTOCONF_PKG).tar.gz ]; then wget $(AUTOCONF_HOST)/$(AUTOCONF_PKG).tar.gz; fi;
- tar zxf $(AUTOCONF_PKG).tar.gz
- cd $(AUTOCONF_PKG) && ./configure --prefix=/usr && make && make install
-
- if [ ! -f $(AUTOMAKE_PKG).tar.gz ]; then wget $(AUTOMAKE_HOST)/$(AUTOMAKE_PKG).tar.gz; fi;
- tar zxf $(AUTOMAKE_PKG).tar.gz
- cd $(AUTOMAKE_PKG) && ./configure --prefix=/usr && make && make install
-
-# Install libmemcached from the official project source
-install_libmemcached:
- if [ ! -f $(LIBMEMCACHED).tar.gz ]; then wget $(LIBMEMCACHED_HOST)/$(LIBMEMCACHED).tar.gz; fi;
- tar xzf $(LIBMEMCACHED).tar.gz
- cd $(LIBMEMCACHED) && ./configure && make && make install
-
-# Install a newer version of libxslt
-install_libxslt:
- if [ ! -d $(XSLT) ]; then wget $(XSLT_HOST)/$(XSLT).tar.gz; fi;
- tar xzf $(XSLT).tar.gz
- cd $(XSLT) && ./configure --with-libxml-prefix=/usr/local && make && make install
-
-# Install a newer version of libxml2
-install_libxml2:
- if [ ! -d $(XML2) ]; then wget $(XML2_HOST)/$(XML2).tar.gz; fi;
- tar xzf $(XML2).tar.gz
- cd $(XML2) && ./configure && make && make install
-
-clean:
- make -C $(LIBJS_PERL) clean
- make -C $(XML2) clean
- make -C $(XSLT) clean
- make -f Makefile.ref -C js/src/ clean
-
-
# ------------------------------------------------------------------
# - DEBIAN ---------------------------------------------------------
@@ -437,24 +217,4 @@ install_extra_debs_precise:
install_fedora_rpms:
yum -y install $(FEDORAS)
-# CENTOS
-install_centos_rpms:
- yum -y install $(CENTOS)
- yum -y update
-
-install_centos_perl:
- for m in $(CENTOS_PERL_FORCE); do perl -MCPAN -e "CPAN::Shell->force(qw#install $$m#);"; done
- for m in $(CENTOS_PERL); do perl -MCPAN -e "install \"$$m\";"; done
- for m in $(CENTOS_PERL_VERSION); do perl -MCPAN -e "CPAN::Shell->install \"$$m\";"; done
- for m in $(CENTOS_PERL_NOTEST); do perl -MCPAN -e "CPAN::Shell->notest('install', \"$$m\";"; done
- for m in $(CENTOS_PERL_LOCAL); do LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/lib perl -MCPAN -e "install \"$$m\";"; done
-
-# We need to add /usr/local/lib to the ldconfig list of directories on CentOS,
-# if it is not already there
-create_ld_local:
- if [ "$$(ldconfig -v 2> /dev/null | grep '^/usr/local/lib' | wc -l)" -eq 0 ]; then \
- echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf; \
- ldconfig; \
- fi;
-
# vim:noet:sw=4:ts=4:
-----------------------------------------------------------------------
Summary of changes:
README | 12 +--
src/extras/Makefile.install | 250 +-----------------------------------------
2 files changed, 9 insertions(+), 253 deletions(-)
hooks/post-receive
--
OpenSRF
More information about the opensrf-commits
mailing list