[open-ils-commits] r19118 - in tags/rel_1_6_1_6: . Open-ILS/src/perlmods/OpenILS Open-ILS/src/sql/Pg (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Jan 4 21:27:00 EST 2011
Author: miker
Date: 2011-01-04 21:26:59 -0500 (Tue, 04 Jan 2011)
New Revision: 19118
Added:
tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/1.6.1.5-1.6.1.6-db-upgrade.sql
Modified:
tags/rel_1_6_1_6/ChangeLog
tags/rel_1_6_1_6/Open-ILS/src/perlmods/OpenILS/Application.pm
tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql
tags/rel_1_6_1_6/README
Log:
version bumps and upgrade script
Modified: tags/rel_1_6_1_6/ChangeLog
===================================================================
--- tags/rel_1_6_1_6/ChangeLog 2011-01-05 02:20:00 UTC (rev 19117)
+++ tags/rel_1_6_1_6/ChangeLog 2011-01-05 02:26:59 UTC (rev 19118)
@@ -1 +1,13 @@
-#ChangeLog
+2011-01-04 miker
+
+ * Patch from Robert Soulliere to backport Class::DBI version
+ checking from 2.0:
+ https://bugs.launchpad.net/evergreen/+bug/692717
+
+ * Addressing https://bugs.launchpad.net/evergreen/+bug/696078 where
+ deleted/inactive records are included in the freshmeat feed.
+
+2011-01-05 miker
+
+ * .: Tagging 1.6.1.6
+
Modified: tags/rel_1_6_1_6/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_1_6/Open-ILS/src/perlmods/OpenILS/Application.pm 2011-01-05 02:20:00 UTC (rev 19117)
+++ tags/rel_1_6_1_6/Open-ILS/src/perlmods/OpenILS/Application.pm 2011-01-05 02:26:59 UTC (rev 19118)
@@ -6,7 +6,7 @@
sub ils_version {
# version format is "x-y-z-p", for example "1-2-1-0" for Evergreen 1.2.1.0
# For branches, format is "x-y-z"
- return "1-6-1";
+ return "1-6-1-6";
}
__PACKAGE__->register_method(
Modified: tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql 2011-01-05 02:20:00 UTC (rev 19117)
+++ tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql 2011-01-05 02:26:59 UTC (rev 19118)
@@ -51,7 +51,7 @@
install_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
);
-INSERT INTO config.upgrade_log (version) VALUES ('1.6'); -- miker
+INSERT INTO config.upgrade_log (version) VALUES ('1.6.1.6');
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
Added: tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/1.6.1.5-1.6.1.6-db-upgrade.sql
===================================================================
--- tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/1.6.1.5-1.6.1.6-db-upgrade.sql (rev 0)
+++ tags/rel_1_6_1_6/Open-ILS/src/sql/Pg/1.6.1.5-1.6.1.6-db-upgrade.sql 2011-01-05 02:26:59 UTC (rev 19118)
@@ -0,0 +1,18 @@
+/*
+ * Copyright (C) 2010 Equinox Software, Inc.
+ * Mike Rylander <miker at esilibrary.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+INSERT INTO config.upgrade_log(version) VALUES ('1.6.1.6');
+
Modified: tags/rel_1_6_1_6/README
===================================================================
--- tags/rel_1_6_1_6/README 2011-01-05 02:20:00 UTC (rev 19117)
+++ tags/rel_1_6_1_6/README 2011-01-05 02:26:59 UTC (rev 19118)
@@ -1,11 +1,11 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.1.6
Installing prerequisites:
========================
Evergreen has a number of prerequisite packages that must be installed
before you can successfully configure, compile, and install Evergreen.
-1. Begin by installing the most recent version of OpenSRF (1.1 or later).
+1. Begin by installing the most recent version of OpenSRF (1.6 or later).
You can download OpenSRF releases from
http://evergreen-ils.org/downloads
@@ -40,7 +40,7 @@
Once you have configured and compiled Evergreen, issue the following
command as the root user to install Evergreen:
-make STAFF_CLIENT_BUILD_ID=rel_1_6_0_0 install
+make STAFF_CLIENT_BUILD_ID=rel_1_6_1_6 install
This will install Evergreen, including example configuration files in
/openils/conf/ that you can use as templates for your own configuration files.
More information about the open-ils-commits
mailing list