summaryrefslogtreecommitdiffstats
path: root/deps/telepathy/signon-plugin-oauth2
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2017-12-22 00:32:25 +0100
committer Eric Hameleers <alien@slackware.com>2017-12-22 00:32:25 +0100
commitefc2d632e715498adf632904e2425a5d89e1e44f (patch)
tree2673594b744349e0baab4fbe5f46f838ec45558c /deps/telepathy/signon-plugin-oauth2
parent9afd0194103f57a1a0a3cc843f26b6406ec4fc27 (diff)
downloadktown-efc2d632e715498adf632904e2425a5d89e1e44f.tar.gz
ktown-efc2d632e715498adf632904e2425a5d89e1e44f.tar.xz
deps/telepathy: updates and recompilations
Diffstat (limited to 'deps/telepathy/signon-plugin-oauth2')
-rw-r--r--deps/telepathy/signon-plugin-oauth2/.url (renamed from deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.url)2
-rwxr-xr-xdeps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.SlackBuild19
2 files changed, 10 insertions, 11 deletions
diff --git a/deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.url b/deps/telepathy/signon-plugin-oauth2/.url
index 3c331e3..e49023b 100644
--- a/deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.url
+++ b/deps/telepathy/signon-plugin-oauth2/.url
@@ -1 +1 @@
-https://gitlab.com/accounts-sso/signon-plugin-oauth2/repository/archive.tar.gz?ref=3dec32c5c640838db827a962c7866e6983657e1c
+https://gitlab.com/accounts-sso/signon-plugin-oauth2/repository/VERSION_0.24/archive.tar.gz
diff --git a/deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.SlackBuild b/deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.SlackBuild
index cb6a9bc..536a60c 100755
--- a/deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.SlackBuild
+++ b/deps/telepathy/signon-plugin-oauth2/signon-plugin-oauth2.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright 2015, 2016 Eric Hameleers, Eindhoven, NL
+# Copyright 2015, 2016, 2017 Eric Hameleers, Eindhoven, NL
# Copyright 2015 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
@@ -23,25 +23,24 @@
PKGNAM=signon-plugin-oauth2
-VERSION=${VERSION:-"3dec32c_20160414git"}
+VERSION=${VERSION:-"0.24"}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:--j7}
# Automatically determine the architecture we're building on:
-MARCH=$( uname -m )
if [ -z "$ARCH" ]; then
- case "$MARCH" in
- i?86) export ARCH=i486 ;;
- armv7hl) export ARCH=$MARCH ;;
- arm*) export ARCH=arm ;;
+ case "$(uname -m)" in
+ i?86) ARCH=i586 ;;
+ arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
# Unless $ARCH is already set, use uname -m for all other archs:
- *) export ARCH=$MARCH ;;
+ *) ARCH=$(uname -m) ;;
esac
+ export ARCH
fi
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "s390" ]; then
SLKCFLAGS="-O2"