[open-ils-commits] [GIT] Evergreen ILS branch rel_2_1 updated. 6491a6f758cf95451689289d7aa53e9888eeda66
Evergreen Git
git at git.evergreen-ils.org
Sat Sep 10 12:40:03 EDT 2011
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 "Evergreen ILS".
The branch, rel_2_1 has been updated
via 6491a6f758cf95451689289d7aa53e9888eeda66 (commit)
via 2f99e0c105780b8f8435220d03e04f491c861be1 (commit)
via 7589f7d55127c571d8fafa63f71543692e85fb5f (commit)
from fc421fef282526fab33f1d3f162e22a9c9893a05 (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 6491a6f758cf95451689289d7aa53e9888eeda66
Author: Dan Scott <dscott at laurentian.ca>
Date: Sat Sep 10 12:36:14 2011 -0400
Remove references to Fedora 13 and 14
Fedora 13 has not been supported for months, Fedora 14 is about to lose
support. Simplifies README and prereq installer a bit.
Signed-off-by: Dan Scott <dscott at laurentian.ca>
diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install
index d029588..19177e5 100644
--- a/Open-ILS/src/extras/Makefile.install
+++ b/Open-ILS/src/extras/Makefile.install
@@ -4,7 +4,7 @@
#
# Makefile to install prerequisites for OpenSRF and Evergreen
#
-# Currently supports Debian (squeeze), Ubuntu (lucid), and Fedora (14).
+# Currently supports Debian (squeeze), Ubuntu (lucid), and Fedora (15).
# Working towards support of CentOS 5 / RHEL 5.
# Installs Perl prereqs, libjs with Perl wrapper, libdbi, libdbi-drivers, and libyaz
#
@@ -13,7 +13,7 @@
# - or -
# make -f Makefile.install ubuntu-lucid
# - or -
-# make -f Makefile.install fedora14
+# make -f Makefile.install fedora15
# - or -
# make -f Makefile.install centos
# - or -
@@ -270,8 +270,7 @@ centos: install_centos_pgsql centos_like
rhel: install_redhat_pgsql centos_like
centos_like: install_centos_rpms install_yaz install_cpan_marc install install_centos_perl create_ld_local install_cpan_safe install_cpan_force
-fedora14: install_fedora_rpms install_cpan install_cpan_fedora install_cpan_marc install_js_sm install_cpan_force
-fedora15: fedora14
+fedora15: install_fedora_rpms install_cpan install_cpan_fedora install_cpan_marc install_js_sm install_cpan_force
debian-squeeze: squeeze generic_debian
squeeze: install_pgsql_client_debs_90 install_extra_debs_squeeze
@@ -307,7 +306,7 @@ install_cpan_force:
install_cpan_safe:
for m in $(CPAN_MODULES_SAFE); do perl -MCPAN -e "install \"$$m\";"; done
-# Install the CPAN modules for Fedora 13
+# Install the CPAN modules for Fedora
install_cpan_fedora:
for m in $(FEDORA_CPAN); do \
echo "force install $$m" | perl -MCPAN -e shell;\
@@ -411,7 +410,7 @@ install_extra_encode:
# ------------------------------------------------------------------
-# FEDORA 13
+# FEDORA
install_fedora_rpms:
yum -y update
yum -y install $(FEDORA_RPMS)
diff --git a/README b/README
index a50ee83..921ec8c 100644
--- a/README
+++ b/README
@@ -26,9 +26,6 @@ deb http://backports.debian.org/debian-backports squeeze-backports main contrib
deb http://archive.ubuntu.com/ubuntu lucid-backports main universe multiverse restricted
------------------------------------------------------------------------------
+
- * On Fedora 14, follow the http://yum.pgrpms.org/howtoyum.php[instructions
- in the Yum HOWTO] to enable the PostgreSQL RPM Building Project yum
- repository.
* Fedora 15 comes with PostgreSQL 9, so no additional steps are required.
+
3. On Debian and Ubuntu, run `aptitude update` to retrieve the new packages
@@ -38,7 +35,7 @@ deb http://archive.ubuntu.com/ubuntu lucid-backports main universe multiverse re
installer.
5. Issue the following commands as the root user to install prerequisites
using the Makefile.install prerequisite installer, substituting
- `debian-squeeze`, `fedora15`, `fedora14`, `ubuntu-lucid`, `centos`, or
+ `debian-squeeze`, `fedora15`, `ubuntu-lucid`, `centos`, or
`rhel` for <osname> below:
+
[source, bash]
commit 2f99e0c105780b8f8435220d03e04f491c861be1
Author: Dan Scott <dscott at laurentian.ca>
Date: Sat Sep 10 12:28:32 2011 -0400
Refresh dynamic link cache after libjs install
The build of SpiderMonkey can fail if it can't find the freshly
installed libjs library, so run ldconfig after building libjs to avoid
that bit o' fun.
Signed-off-by: Dan Scott <dscott at laurentian.ca>
diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install
index d7347a4..d029588 100644
--- a/Open-ILS/src/extras/Makefile.install
+++ b/Open-ILS/src/extras/Makefile.install
@@ -340,6 +340,7 @@ install_libjs:
cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib/ && \
cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib/; \
fi;
+ ldconfig
install_spidermonkey:
if [ ! -f $(LIBJS_PERL).tar.gz ]; then wget $(LIBJS_PERL_URL); fi;
commit 7589f7d55127c571d8fafa63f71543692e85fb5f
Author: Dan Scott <dscott at laurentian.ca>
Date: Sat Sep 10 12:27:41 2011 -0400
Fix prerequisite install on Fedora 15
The postgresql package shipped in Fedora proper is just called
'postgresql-devel', so get that right.
Also, try to put 64-bit libraries in the right directory.
Signed-off-by: Dan Scott <dscott at laurentian.ca>
diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install
index 12f4161..d7347a4 100644
--- a/Open-ILS/src/extras/Makefile.install
+++ b/Open-ILS/src/extras/Makefile.install
@@ -178,7 +178,7 @@ FEDORA_RPMS = \
perl-Text-CSV \
perl-Text-CSV_XS \
perl-XML-Writer \
- postgresql90-devel \
+ postgresql-devel \
readline-devel \
tcp_wrappers-devel \
wget \
@@ -333,8 +333,13 @@ install_libjs:
mkdir -p $(JS_INSTALL_PREFIX)/include/js/
cp js/src/*.h $(JS_INSTALL_PREFIX)/include/js/
cp js/src/*.tbl $(JS_INSTALL_PREFIX)/include/js/
- cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib/
- cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib/
+ if [ ! -z $(FEDORA_64) ]; then \
+ cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib64/ && \
+ cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib64/; \
+ else \
+ cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib/ && \
+ cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib/; \
+ fi;
install_spidermonkey:
if [ ! -f $(LIBJS_PERL).tar.gz ]; then wget $(LIBJS_PERL_URL); fi;
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/extras/Makefile.install | 23 ++++++++++++++---------
README | 5 +----
2 files changed, 15 insertions(+), 13 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list