diff options
author | Andraž Levstik | 2011-12-10 17:35:03 +0100 |
---|---|---|
committer | Andraž Levstik | 2011-12-10 17:35:03 +0100 |
commit | 9e8e251fc33ab2174f21419d8b690522f9b3e535 (patch) | |
tree | 4b0558314712e06cdfff5da174ef4e50f42f98c6 /ftp-libs | |
parent | 802559d6dad22b4bb5d755be737e129fe61b2765 (diff) |
libtorrent: update to 0.13.0
Diffstat (limited to 'ftp-libs')
-rwxr-xr-x | ftp-libs/libtorrent/DETAILS | 4 | ||||
-rw-r--r-- | ftp-libs/libtorrent/HISTORY | 4 | ||||
-rwxr-xr-x | ftp-libs/libtorrent/UP_TRIGGERS | 12 |
3 files changed, 18 insertions, 2 deletions
diff --git a/ftp-libs/libtorrent/DETAILS b/ftp-libs/libtorrent/DETAILS index 1b22696579..84ddbe9be7 100755 --- a/ftp-libs/libtorrent/DETAILS +++ b/ftp-libs/libtorrent/DETAILS @@ -1,12 +1,12 @@ SPELL=libtorrent - VERSION=0.12.9 + VERSION=0.13.0 SOURCE=$SPELL-$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION SOURCE_URL[0]=http://libtorrent.rakshasa.no/downloads/$SOURCE WEB_SITE=http://libtorrent.rakshasa.no ENTERED=20050117 LICENSE[0]=GPL - SOURCE_HASH=sha512:dde2c4edbf08edce5bcb2c3487b8a5952a1e84f84ccd2c54e3f6530571b87bd994f4fc0e8175e0188adf831f562c9c35ae8b7f318d81543c590a1eb37151774c + SOURCE_HASH=sha512:fc7c7dfdfff9005d88fde0cbdb443be266a9e236ae77a70c05221f741590a83b38f65a454a915278daacf6faa041e7a89d0dab2dbf1e5c35ab642b2d4b157107 KEYWORDS="bittorrent ftp libs" SHORT='LibTorrent is a BitTorrent library written in C++ for *nix.' cat << EOF diff --git a/ftp-libs/libtorrent/HISTORY b/ftp-libs/libtorrent/HISTORY index be93708ff8..2c84299e05 100644 --- a/ftp-libs/libtorrent/HISTORY +++ b/ftp-libs/libtorrent/HISTORY @@ -1,3 +1,7 @@ +2011-12-10 Andraž "ruskie" Levstik <ruskie+f03a580f@codemages.net> + * DETAILS: updated spell to 0.13.0 + * UP_TRIGGERS: incompatible update + 2011-09-20 Arjan Bouter <abouter@sourcemage.org> * DETAILS: updated spell to 0.12.9 * PRE_BUILD, gcc44.patch: removed patch, no longer needed diff --git a/ftp-libs/libtorrent/UP_TRIGGERS b/ftp-libs/libtorrent/UP_TRIGGERS new file mode 100755 index 0000000000..6577381805 --- /dev/null +++ b/ftp-libs/libtorrent/UP_TRIGGERS @@ -0,0 +1,12 @@ +local OLD_SPELL_VERSION="" +if spell_ok $SPELL; then + OLD_SPELL_VERSION="$(installed_version $SPELL)" + if test "${VERSION}" != "${OLD_SPELL_VERSION}"; 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); do + up_trigger $each cast_self + done + fi +fi + |