summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLadislav Hagara2012-01-19 18:24:51 +0100
committerLadislav Hagara2012-01-19 18:24:51 +0100
commite1ab319715de4e38fe58f4e3074ad843fea70db9 (patch)
tree7d069e40b0d0430d94326ea80c99a352deb21fa0
parent9116ea03148ba3f2793654df6823535250e65d2e (diff)
libzip 0.10
-rwxr-xr-xarchive-libs/libzip/DETAILS4
-rw-r--r--archive-libs/libzip/HISTORY4
-rwxr-xr-xarchive-libs/libzip/UP_TRIGGERS9
3 files changed, 15 insertions, 2 deletions
diff --git a/archive-libs/libzip/DETAILS b/archive-libs/libzip/DETAILS
index 3453eca9fb..825daac2ce 100755
--- a/archive-libs/libzip/DETAILS
+++ b/archive-libs/libzip/DETAILS
@@ -1,6 +1,6 @@
SPELL=libzip
- VERSION=0.9.3
- SOURCE_HASH=sha512:e10e563d79dbe633e8dc10e47c4b724be08d1d15176f46ba0dc433c6a8697484a55c2778d37ce93fbf760ca27a6d12268520d1af79aa0fa3e6926648ccd161e5
+ VERSION=0.10
+ SOURCE_HASH=sha512:5d42fae92d04dae038c416debabfb11293d66ad886a0189b7409c15efe36b759a8908c7b492084e252d1a0a5a9fe142cc97a5e339e4fd936253189a6097dc710
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://www.nih.at/libzip
diff --git a/archive-libs/libzip/HISTORY b/archive-libs/libzip/HISTORY
index 62809521b7..c1b185f44a 100644
--- a/archive-libs/libzip/HISTORY
+++ b/archive-libs/libzip/HISTORY
@@ -1,3 +1,7 @@
+2012-01-19 Ladislav Hagara <hgr@vabo.cz>
+ * DETAILS: 0.10
+ * UP_TRIGGERS: added, libzip.so.1 -> libzip.so.2
+
2010-06-27 Treeve Jelbert <treeve@sourcemage.org>
* DETAILS: version 0.9.3
diff --git a/archive-libs/libzip/UP_TRIGGERS b/archive-libs/libzip/UP_TRIGGERS
new file mode 100755
index 0000000000..abfbe0ef57
--- /dev/null
+++ b/archive-libs/libzip/UP_TRIGGERS
@@ -0,0 +1,9 @@
+local OLD_SPELL_VERSION=""
+spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
+if [ "${VERSION:0:4}" != "${OLD_SPELL_VERSION:0:4}" ]; 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 cast_self
+ done
+fi