Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (160ec30d7d5517395693c6bc96439c32046a701e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (160ec30d7d5517395693c6bc96439c32046a701e)
  • Date: Thu, 5 Jan 2023 00:04:47 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

libs/liboauth/DEPENDS | 3 +++
libs/liboauth/DETAILS | 10 ++++++++++
libs/liboauth/HISTORY | 3 +++
libs/liboauth/PREPARE | 2 ++
libs/liboauth/PRE_BUILD | 12 +++++++++++-
5 files changed, 29 insertions(+), 1 deletion(-)

New commits:
commit 160ec30d7d5517395693c6bc96439c32046a701e
Author: Conner Clere <connerclere AT gmail.com>
Commit: Pavel Vinogradov <public AT sourcemage.org>

liboauth: add scm branch

diff --git a/libs/liboauth/DEPENDS b/libs/liboauth/DEPENDS
new file mode 100755
index 0000000..01895f1
--- /dev/null
+++ b/libs/liboauth/DEPENDS
@@ -0,0 +1,3 @@
+if [[ "${LIBOAUTH_BRANCH}" == "scm" ]]; then
+ depends git
+fi
diff --git a/libs/liboauth/DETAILS b/libs/liboauth/DETAILS
index a44258a..dc14297 100755
--- a/libs/liboauth/DETAILS
+++ b/libs/liboauth/DETAILS
@@ -1,9 +1,19 @@
+. "${GRIMOIRE}/FUNCTIONS"
SPELL=liboauth
+if [[ "${LIBOAUTH_BRANCH}" == "scm" ]]; then
+ VERSION=$(get_scm_version)
+ SOURCE="${SPELL}-git.tar.xz"
+ FORCE_DOWNLOAD="on"
+ SOURCE_URL[0]="git_http://github.com/x42/${SPELL}.git:${SPELL}-git:master";
+ SOURCE_IGNORE="volatile"
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-git"
+else
VERSION=1.0.3

SOURCE_HASH=sha512:5a13818dbb3e0df76f7a3fde451eff4f90c9bebfe2076a294921af0c07c2b0789f717f0f862ac6961562d4227e016dc198ddd7efb9c7ac599c3bfbcdb2ac33fa
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/$SOURCE
+fi
LICENSE[0]=MIT
WEB_SITE=http://liboauth.sourceforge.net/
ENTERED=20110929
diff --git a/libs/liboauth/HISTORY b/libs/liboauth/HISTORY
index 49ab8f1..8672474 100644
--- a/libs/liboauth/HISTORY
+++ b/libs/liboauth/HISTORY
@@ -1,3 +1,6 @@
+2023-01-04 Conner Clere <connerclere AT gmail.com>
+ * DEPENDS, DETAILS, PRE_BUILD, PREPARE: add scm branch
+
2019-05-25 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 1.0.3
* PRE_BUILD: Fixed build against musl
diff --git a/libs/liboauth/PREPARE b/libs/liboauth/PREPARE
new file mode 100755
index 0000000..e38d86f
--- /dev/null
+++ b/libs/liboauth/PREPARE
@@ -0,0 +1,2 @@
+. "${GRIMOIRE}/FUNCTIONS" &&
+prepare_select_branch stable scm
diff --git a/libs/liboauth/PRE_BUILD b/libs/liboauth/PRE_BUILD
index 3c8cac2..2aa8459 100755
--- a/libs/liboauth/PRE_BUILD
+++ b/libs/liboauth/PRE_BUILD
@@ -1,3 +1,13 @@
default_pre_build &&
cd "$SOURCE_DIRECTORY" &&
-sedit 's!maybe_os in$!& linux-musl*|\\!' config.sub
+if [[ "${LIBOAUTH_BRANCH}" == "stable" ]]; then
+ sedit 's!maybe_os in$!& linux-musl*|\\!' config.sub
+else
+ touch ltconfig &&
+ libtoolize --force --copy --automake &&
+ aclocal -I m4 &&
+ autoheader &&
+ automake --foreign --copy --add-missing &&
+ touch depcomp &&
+ autoconf
+fi



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (160ec30d7d5517395693c6bc96439c32046a701e), Pavel Vinogradov, 01/04/2023

Archive powered by MHonArc 2.6.24.

Top of Page