diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-04-05 01:33:45 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-04-05 08:59:51 +0200 |
commit | a9b559dd105216e16397158daf3ea0f4a33e5da7 (patch) | |
tree | a932abe8e98f67ec818f5a4710bdc203efe89a9f /source/ap/sc-im | |
parent | df9b2cc1642e4d976aa5f9dbcd3e953d8717a265 (diff) | |
download | current-a9b559dd105216e16397158daf3ea0f4a33e5da7.tar.gz |
Sun Apr 5 01:33:45 UTC 202020200405013345
kde/calligra-2.9.11-x86_64-34.txz: Rebuilt.
Recompiled against glew-2.2.0.
The libGLEW.so.2.2 .soname (rather than libGLEW.so.2) gets me every time.
Thanks to marrowsuck for the bug report.
l/libdvdread-6.1.1-x86_64-1.txz: Upgraded.
x/mesa-20.0.4-x86_64-2.txz: Rebuilt.
Recompiled against glew-2.2.0.
Diffstat (limited to 'source/ap/sc-im')
-rwxr-xr-x | source/ap/sc-im/fetch-sc-im.sh | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/source/ap/sc-im/fetch-sc-im.sh b/source/ap/sc-im/fetch-sc-im.sh new file mode 100755 index 00000000..32e2ecbd --- /dev/null +++ b/source/ap/sc-im/fetch-sc-im.sh @@ -0,0 +1,47 @@ +#!/bin/sh + +# Copyright 2019, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Pull a stable branch + patches +BRANCH=${1:-freeze} + +# Clear download area: +rm -rf sc-im + +# Clone repository: +git clone https://github.com/andmarti1424/sc-im + +# checkout $BRANCH: +( cd sc-im + git checkout $BRANCH || exit 1 +) + +HEADISAT="$( cd sc-im && git log -1 --format=%h )" +DATE="$( cd sc-im && git log -1 --format=%ad --date=format:%Y%m%d )" +# Cleanup. We're not packing up the whole git repo. +( cd sc-im && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) +mv sc-im sc-im-${DATE}_${HEADISAT} +tar cf sc-im-${DATE}_${HEADISAT}.tar sc-im-${DATE}_${HEADISAT} +plzip -9 -f sc-im-${DATE}_${HEADISAT}.tar +rm -rf sc-im-${DATE}_${HEADISAT} +echo +echo "sc-im branch $BRANCH with HEAD at $HEADISAT packaged as sc-im-${DATE}_${HEADISAT}.tar.lz" +echo |