Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (408482f5b3eb216af8624a7fcbbd7624d3f152e9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (408482f5b3eb216af8624a7fcbbd7624d3f152e9)
  • Date: Fri, 15 May 2020 19:01:05 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

devel/go/DEPENDS | 3 +++
devel/go/HISTORY | 3 +++
libs/gcompat/BUILD | 11 ++++++++++-
libs/gcompat/DETAILS | 1 +
libs/gcompat/HISTORY | 3 +++
5 files changed, 20 insertions(+), 1 deletion(-)

New commits:
commit 408482f5b3eb216af8624a7fcbbd7624d3f152e9
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

go: Add missing dependency for boostrapping with musl

commit f53677bdf6fd9955365955fcbca571810f899809
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

gcompat: Fix linker path, PATCHLEVEL++

diff --git a/devel/go/DEPENDS b/devel/go/DEPENDS
index 3a9370d..95c0ddd 100755
--- a/devel/go/DEPENDS
+++ b/devel/go/DEPENDS
@@ -1,3 +1,6 @@
+case "$HOST" in *-musl)
+ depends gcompat ;;
+esac &&
depends SYSTEM-LOGGER &&
depends bison &&
depends gcc &&
diff --git a/devel/go/HISTORY b/devel/go/HISTORY
index ea0bd41..99b180d 100644
--- a/devel/go/HISTORY
+++ b/devel/go/HISTORY
@@ -1,3 +1,6 @@
+2020-05-15 Ismael Luceno <ismael AT iodev.co.uk>
+ * DEPENDS: Added missing dependency for bootstrapping with musl
+
2020-04-11 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 1.14.2

diff --git a/libs/gcompat/BUILD b/libs/gcompat/BUILD
index 8eb5214..f3016cc 100755
--- a/libs/gcompat/BUILD
+++ b/libs/gcompat/BUILD
@@ -1 +1,10 @@
-make $OPTS
+case "$HOST" in
+i[3456]86-*) arch=i386 ;;
+x86_64-x32-*) arch=x32 ;;
+x86_64-*) arch=x86_64 ;;
+*)
+ echo "Unknown architecture for $HOST."
+ return 1
+esac &&
+make $OPTS \
+ LINKER_PATH="/lib/ld-musl-$arch.so.1"
diff --git a/libs/gcompat/DETAILS b/libs/gcompat/DETAILS
index 2d7da75..fc8437d 100755
--- a/libs/gcompat/DETAILS
+++ b/libs/gcompat/DETAILS
@@ -1,5 +1,6 @@
SPELL=gcompat
VERSION=0.4.0
+ PATCHLEVEL=1
SOURCE="$SPELL-$VERSION.tar.gz"
WEB_SITE="https://code.foxkit.us/adelie/gcompat";

SOURCE_URL[0]="https://github.com/AdelieLinux/$SPELL/archive/$VERSION.tar.gz";
diff --git a/libs/gcompat/HISTORY b/libs/gcompat/HISTORY
index 8e896a5..d6f46dd 100644
--- a/libs/gcompat/HISTORY
+++ b/libs/gcompat/HISTORY
@@ -1,2 +1,5 @@
+2020-05-15 Ismael Luceno <ismael AT iodev.co.uk>
+ * DETAILS, BUILD: Fixed linker path, PATCHLEVEL++
+
2019-09-17 Ismael Luceno <ismael AT sourcemage.org>
* BUILD, CONFLICTS, DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (408482f5b3eb216af8624a7fcbbd7624d3f152e9), Ismael Luceno, 05/15/2020

Archive powered by MHonArc 2.6.24.

Top of Page