Skip to Content.
Sympa Menu

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

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 (a20391be132c48184d27d24c6039c9ba93214f7e)
  • Date: Mon, 16 Mar 2015 16:50:15 -0500

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

audio-libs/aubio/HISTORY | 3 +++
audio-libs/aubio/UP_TRIGGERS | 18 ++++++++++++++++++
2 files changed, 21 insertions(+)

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

aubio: added triggers for upgrading

diff --git a/audio-libs/aubio/HISTORY b/audio-libs/aubio/HISTORY
index a23df2c..c998398 100644
--- a/audio-libs/aubio/HISTORY
+++ b/audio-libs/aubio/HISTORY
@@ -1,3 +1,6 @@
+2015-03-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * UP_TRIGGERS: added, for correct update on branch changing
+
2014-03-24 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS, DEPENDS: version 0.4.1
* BUILD, INSTALL: use waf
diff --git a/audio-libs/aubio/UP_TRIGGERS b/audio-libs/aubio/UP_TRIGGERS
new file mode 100755
index 0000000..e75f355
--- /dev/null
+++ b/audio-libs/aubio/UP_TRIGGERS
@@ -0,0 +1,18 @@
+# up_trigger everything on branch updates
+
+if spell_ok $SPELL; then
+ local NEW_SPELL_BRANCH="$(echo $VERSION | cut -d. -f1,2)" &&
+ local OLD_SPELL_BRANCH="$(installed_version $SPELL | cut -d. -f1,2)" &&
+
+ if test "${NEW_SPELL_BRANCH}" != "${OLD_SPELL_BRANCH}"; then
+ message "${MESSAGE_COLOR}This is a possibly incompatible update of
$SPELL..." &&
+ message "Figuring out what spells need to be recast, this may take a
while.${DEFAULT_COLOR}" &&
+
+ for each in $(show_up_depends $SPELL 1); do
+ if gaze -q install $each | xargs readelf -d 2> /dev/null |
+ grep -q "NEEDED.*libaubio\.so"; then
+ up_trigger $each cast_self
+ fi
+ done
+ fi
+fi



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a20391be132c48184d27d24c6039c9ba93214f7e), Vlad Glagolev, 03/16/2015

Archive powered by MHonArc 2.6.24.

Top of Page