Skip to Content.
Sympa Menu

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

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 (c52c935f065bce3834c89862c19b179dd51955f7)
  • Date: Thu, 30 May 2019 19:00:11 +0000

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

audio-libs/dssi/HISTORY | 3 +++
audio-libs/dssi/PRE_BUILD | 13 ++++++++-----
gnome2-libs/libxklavier/HISTORY | 3 +++
gnome2-libs/libxklavier/PRE_BUILD | 3 +++
4 files changed, 17 insertions(+), 5 deletions(-)

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

dssi: Fix applying of patches

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

libxklavier: Fix build against musl

diff --git a/audio-libs/dssi/HISTORY b/audio-libs/dssi/HISTORY
index 0db7662..541a2d8 100644
--- a/audio-libs/dssi/HISTORY
+++ b/audio-libs/dssi/HISTORY
@@ -1,3 +1,6 @@
+2019-05-30 Ismael Luceno <ismael AT sourcemage.org>
+ * PRE_BUILD: Fixed applying of patches
+
2018-09-09 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.1.1

diff --git a/audio-libs/dssi/PRE_BUILD b/audio-libs/dssi/PRE_BUILD
index 93c3276..070ade8 100755
--- a/audio-libs/dssi/PRE_BUILD
+++ b/audio-libs/dssi/PRE_BUILD
@@ -2,10 +2,13 @@ default_pre_build &&
cd $SOURCE_DIRECTORY &&

# Prevent configure & build of unselected components
-if [[ $DSSI_HOST == n ]]; then
- patch -p0 < $SCRIPT_DIRECTORY/configure-none.diff
+case "$DSSI_HOST:$DSSI_PLUGINS" in
+n:*)
+ patch -p0 < $SCRIPT_DIRECTORY/configure-none.diff &&
sedit 's/SUBDIRS =.*/SUBDIRS = tests/' Makefile.in
-elif [[ $DSSI_PLUGINS == n ]]; then
- patch -p0 < $SCRIPT_DIRECTORY/configure-host.diff
+ ;;
+y:n)
+ patch -p0 < $SCRIPT_DIRECTORY/configure-host.diff &&
sedit 's/SUBDIRS =.*/SUBDIRS = jack-dssi-host tests/' Makefile.in
-fi
+ ;;
+esac
diff --git a/gnome2-libs/libxklavier/HISTORY b/gnome2-libs/libxklavier/HISTORY
index f7c8a6f..5e7caec 100644
--- a/gnome2-libs/libxklavier/HISTORY
+++ b/gnome2-libs/libxklavier/HISTORY
@@ -1,3 +1,6 @@
+2019-05-30 Ismael Luceno <ismael AT sourcemage.org>
+ * PRE_BUILD: Fixed build against musl
+
2019-01-06 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 5.3

diff --git a/gnome2-libs/libxklavier/PRE_BUILD
b/gnome2-libs/libxklavier/PRE_BUILD
new file mode 100755
index 0000000..c179f78
--- /dev/null
+++ b/gnome2-libs/libxklavier/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+sedit 's!maybe_os in$!& linux-musl*|\\!' build-aux/config.sub



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (c52c935f065bce3834c89862c19b179dd51955f7), Ismael Luceno, 05/30/2019

Archive powered by MHonArc 2.6.24.

Top of Page