Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.56 grimoire by George Sherwood (985d0cfd936ebba0d58db8f38ac17f7159ce9af0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-0.56 grimoire by George Sherwood (985d0cfd936ebba0d58db8f38ac17f7159ce9af0)
  • Date: Sun, 12 Jun 2011 10:42:05 -0500

GIT changes to stable-0.56 grimoire by George Sherwood
<gsherwood AT sourcemage.org>:

libs/libevent/HISTORY | 4 ++++
libs/libevent/UP_TRIGGERS | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 985d0cfd936ebba0d58db8f38ac17f7159ce9af0
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: George Sherwood <gsherwood AT sourcemage.org>

libevent: Don't fail if libevent isn't already installed (Bug #15992)
Only check versions if libevent is installed
(cherry picked from commit c47c919c656ff34e66bd1fba98966596362f5aa9)

diff --git a/libs/libevent/HISTORY b/libs/libevent/HISTORY
index b0f294c..632f9c7 100644
--- a/libs/libevent/HISTORY
+++ b/libs/libevent/HISTORY
@@ -1,3 +1,7 @@
+2011-06-06 Eric Sandall <sandalle AT sourcemage.org>
+ * UP_TRIGGERS: Don't fail if libevent isn't already installed (Bug
#15992)
+ Only check versions if libevent is installed
+
2011-04-30 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.0.11; corrected gpg sig url
* DEPENDS: added, for openssl optional dependency
diff --git a/libs/libevent/UP_TRIGGERS b/libs/libevent/UP_TRIGGERS
index f5b5446..b8aa116 100755
--- a/libs/libevent/UP_TRIGGERS
+++ b/libs/libevent/UP_TRIGGERS
@@ -1,8 +1,8 @@
# up_trigger everything on major version updates

-spell_ok $SPELL && local OLD_SPELL_VERSION="$(installed_version $SPELL)" &&
+spell_ok $SPELL && local OLD_SPELL_VERSION="$(installed_version $SPELL)"

-if [[ "${VERSION:0:1}" != "${OLD_SPELL_VERSION:0:1}" ]]; then
+if spell_ok $SPELL && [[ "${VERSION:0:1}" != "${OLD_SPELL_VERSION:0:1}" ]];
then
message "This is a possibly incompatible update of $SPELL..." &&
message "Figuring out what spells need to be recast, this may take a
while." &&




  • [SM-Commit] GIT changes to stable-0.56 grimoire by George Sherwood (985d0cfd936ebba0d58db8f38ac17f7159ce9af0), George Sherwood, 06/12/2011

Archive powered by MHonArc 2.6.24.

Top of Page