Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (e8b693c27d087c79fcea2783e30464710a33f1f4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (e8b693c27d087c79fcea2783e30464710a33f1f4)
  • Date: Sat, 29 Jun 2019 10:26:38 +0000

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

crypto/nettle/HISTORY | 3 +++
crypto/nettle/UP_TRIGGERS | 20 ++++++++------------
editors/vim/DETAILS | 4 ++--
editors/vim/HISTORY | 3 +++
4 files changed, 16 insertions(+), 14 deletions(-)

New commits:
commit e8b693c27d087c79fcea2783e30464710a33f1f4
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

editors/vim: version 8.1.1608

commit 409045cb1f1ab48653014e1c713ec2e4d6040afd
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

crypto/nettle: add self check for dependent spells on update

diff --git a/crypto/nettle/HISTORY b/crypto/nettle/HISTORY
index 808b6d3..28ebf2a 100644
--- a/crypto/nettle/HISTORY
+++ b/crypto/nettle/HISTORY
@@ -1,3 +1,6 @@
+2019-06-29 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * UP_TRIGGERS: schedule self checks for dependent spells on update
+
2019-06-27 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 3.5.1

diff --git a/crypto/nettle/UP_TRIGGERS b/crypto/nettle/UP_TRIGGERS
index 1f59e0f..eaf6ecf 100755
--- a/crypto/nettle/UP_TRIGGERS
+++ b/crypto/nettle/UP_TRIGGERS
@@ -1,13 +1,9 @@
-if spell_ok $SPELL; then
- local NEW_SPELL_BRANCH="$(echo $VERSION | cut -d. -f1)" &&
- local OLD_SPELL_BRANCH="$(installed_version $SPELL | cut -d. -f1)" &&
-
- 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
- up_trigger $each check_self
- done
- fi
+local OLD_SPELL_VERSION=""
+spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
+if [ "${VERSION}" != "${OLD_SPELL_VERSION}" ]; then
+ message "This is an 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
+ up_trigger $each check_self
+ done
fi
diff --git a/editors/vim/DETAILS b/editors/vim/DETAILS
index 1619317..209b272 100755
--- a/editors/vim/DETAILS
+++ b/editors/vim/DETAILS
@@ -9,8 +9,8 @@ SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-scm"
SOURCE_IGNORE="volatile"
FORCE_DOWNLOAD="on"
else
- VERSION=8.1.1587
-
SOURCE_HASH=sha512:f7c31b545ce242e57fd128ce648bf802b40048e43519fbc5ce56f1412b909de49bdf2f458cf4452a7856dca5dc0ec369ad28ad1b060e1743b6974bbae4077dbd
+ VERSION=8.1.1608
+
SOURCE_HASH=sha512:a1ada056564131ff3cad1027a3c77df752127c2d635e37a0bccaa4bb224f82469d3766c081c7aec2270be9276c8f26486f50c4d48b21a11e86ec7d715691957b
SECURITY_PATCH=5
SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
diff --git a/editors/vim/HISTORY b/editors/vim/HISTORY
index cf99d4e..a6f12c6 100644
--- a/editors/vim/HISTORY
+++ b/editors/vim/HISTORY
@@ -1,3 +1,6 @@
+2019-06-29 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 8.1.1608
+
2019-06-24 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 8.1.1587




  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (e8b693c27d087c79fcea2783e30464710a33f1f4), Florian Franzmann, 06/29/2019

Archive powered by MHonArc 2.6.24.

Top of Page