Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (cb866ed0c7dd44d5fe0ce9aa848546e1b215327e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (cb866ed0c7dd44d5fe0ce9aa848546e1b215327e)
  • Date: Mon, 13 Feb 2012 08:23:55 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

video/ffmpeg/HISTORY | 3 +++
video/ffmpeg/UP_TRIGGERS | 11 +++++++----
2 files changed, 10 insertions(+), 4 deletions(-)

New commits:
commit cb866ed0c7dd44d5fe0ce9aa848546e1b215327e
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ffmpeg: corrected major version detection

diff --git a/video/ffmpeg/HISTORY b/video/ffmpeg/HISTORY
index e728572..f986aa7 100644
--- a/video/ffmpeg/HISTORY
+++ b/video/ffmpeg/HISTORY
@@ -1,3 +1,6 @@
+2012-02-13 Vlad Glagolev <stealth AT sourcemage.org>
+ * UP_TRIGGERS: corrected major version detection
+
2012-01-30 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* UP_TRIGGERS: added up_trigger to trigger dependees on major version
updates
* DETAILS: version 0.10, SECURITY_PATCH++, fixes CVE-2011-3929,
diff --git a/video/ffmpeg/UP_TRIGGERS b/video/ffmpeg/UP_TRIGGERS
index d074256..8fc029e 100755
--- a/video/ffmpeg/UP_TRIGGERS
+++ b/video/ffmpeg/UP_TRIGGERS
@@ -1,8 +1,12 @@
# up_trigger everything on major version updates
-local OLD_SPELL_VERSION=""
+local NEW_SPELL_BRANCH="" &&
+local OLD_SPELL_BRANCH="" &&
+
if spell_ok $SPELL; then
- OLD_SPELL_VERSION="$(installed_version $SPELL)"
- if test "${VERSION}" != "${OLD_SPELL_VERSION}"; then
+ NEW_SPELL_BRANCH="$(echo $VERSION | cut -d. -f1,2)" &&
+ OLD_SPELL_BRANCH="$(installed_version $SPELL | cut -d. -f1,2)" &&
+
+ if test "${NEW_SPELL_BRANCH}" != "${OLD_SPELL_BRANCH}"; then
message "This is a possibly incompatible update of ${SPELL}..."
message "Figuring out what spells need to be recast, this may take a
while."
for each in $(show_up_depends $SPELL 1); do
@@ -13,4 +17,3 @@ if spell_ok $SPELL; then
done
fi
fi
-



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (cb866ed0c7dd44d5fe0ce9aa848546e1b215327e), Vlad Glagolev, 02/13/2012

Archive powered by MHonArc 2.6.24.

Top of Page