sm-commit AT lists.ibiblio.org
Subject: Source Mage code commit list
List archive
[[SM-Commit] ] GIT changes to master grimoire by Treeve Jelbert (c92578416afac4a3bff73ecc58b2c1b299a5340e)
- From: Treeve Jelbert <scm AT sourcemage.org>
- To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
- Subject: [[SM-Commit] ] GIT changes to master grimoire by Treeve Jelbert (c92578416afac4a3bff73ecc58b2c1b299a5340e)
- Date: Tue, 7 Jan 2025 12:22:21 +0000
GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:
audio-libs/libsamplerate/HISTORY | 3 +++
audio-libs/libsamplerate/PRE_BUILD | 3 ++-
crypto/libsasl/HISTORY | 3 +++
crypto/libsasl/PRE_BUILD | 3 ++-
graphics-libs/libpgf/DEPENDS | 2 +-
graphics-libs/libpgf/HISTORY | 3 +++
graphics-libs/libpgf/PRE_BUILD | 4 +++-
libs/libqrencode/HISTORY | 3 +++
libs/libqrencode/PRE_BUILD | 4 ++++
9 files changed, 24 insertions(+), 4 deletions(-)
New commits:
commit c92578416afac4a3bff73ecc58b2c1b299a5340e
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
libsasl - no .la files
commit ce24ad5be76513f1625adb809c46019c103e3dfa
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
libsamplerate - no .la files
commit 3af7db3bee2332301a7beedf7d49ad0c9b49b22d
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
libqrencode - prevent .la files
commit 67283316e3bf05a6ad9018b682ca36412d4ef9d2
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
libpgf - prevent .la files
diff --git a/audio-libs/libsamplerate/HISTORY
b/audio-libs/libsamplerate/HISTORY
index adc05a1..e420c31 100644
--- a/audio-libs/libsamplerate/HISTORY
+++ b/audio-libs/libsamplerate/HISTORY
@@ -1,3 +1,6 @@
+2025-01-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * PRE_BUILD: prevent .la files
+
2022-07-27 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS: switch to PKG-CONFIG provider (automated)
diff --git a/audio-libs/libsamplerate/PRE_BUILD
b/audio-libs/libsamplerate/PRE_BUILD
index 1355119..c3879b2 100755
--- a/audio-libs/libsamplerate/PRE_BUILD
+++ b/audio-libs/libsamplerate/PRE_BUILD
@@ -1,3 +1,4 @@
default_pre_build &&
cd "$SOURCE_DIRECTORY" &&
-sedit 's!maybe_os in$!& linux-musl*|\\!' Cfg/config.sub
+sedit 's!maybe_os in$!& linux-musl*|\\!' Cfg/config.sub &&
+patch_bundled_libtool Cfg/ltmain.sh
diff --git a/crypto/libsasl/HISTORY b/crypto/libsasl/HISTORY
index b722f52..b06ddc0 100644
--- a/crypto/libsasl/HISTORY
+++ b/crypto/libsasl/HISTORY
@@ -1,3 +1,6 @@
+2025-01-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * PRE_BUILD: prevent .la files
+
2024-12-10 Treeve Jelbert <treeve AT sourcemage.org>
* PRE_BUILD: added, fix build
diff --git a/crypto/libsasl/PRE_BUILD b/crypto/libsasl/PRE_BUILD
index e6aacfc..eb02b36 100755
--- a/crypto/libsasl/PRE_BUILD
+++ b/crypto/libsasl/PRE_BUILD
@@ -2,4 +2,5 @@ default_pre_build &&
cd $SOURCE_DIRECTORY &&
# fixes from blfs
sed '/saslint/a #include <time.h>' -i lib/saslutil.c &&
-sed '/plugin_common/a #include <time.h>' -i plugins/cram.c
+sed '/plugin_common/a #include <time.h>' -i plugins/cram.c &&
+patch_bundled_libtool config/ltmain.sh
diff --git a/graphics-libs/libpgf/DEPENDS b/graphics-libs/libpgf/DEPENDS
index b38f1fe..09b0d44 100755
--- a/graphics-libs/libpgf/DEPENDS
+++ b/graphics-libs/libpgf/DEPENDS
@@ -1,6 +1,6 @@
+depends slibtool LIBTOOL=slibtool-shared &&
depends autoconf &&
depends automake &&
-depends libtool &&
depends dos2unix &&
optional_depends doxygen '' '' 'build documentation'
diff --git a/graphics-libs/libpgf/HISTORY b/graphics-libs/libpgf/HISTORY
index a90533a..4e6f06e 100644
--- a/graphics-libs/libpgf/HISTORY
+++ b/graphics-libs/libpgf/HISTORY
@@ -1,3 +1,6 @@
+2025-01-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * PRE_BUILD: prevent .la files
+
2024-07-21 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 7.21.7
* BUILD INSTALL: deleted
diff --git a/graphics-libs/libpgf/PRE_BUILD b/graphics-libs/libpgf/PRE_BUILD
index 49d9c31..59b1190 100755
--- a/graphics-libs/libpgf/PRE_BUILD
+++ b/graphics-libs/libpgf/PRE_BUILD
@@ -6,4 +6,6 @@ ln -s README.txt README &&
dos2unix * src/* include/* &&
rm *.bz2 &&
autoupdate &&
-autoreconf -f -i --symlink
+autoreconf -fis &&
+patch_configure_libtool_override &&
+patch_bundled_libtool
diff --git a/libs/libqrencode/HISTORY b/libs/libqrencode/HISTORY
index 1e6db40..bde64a3 100644
--- a/libs/libqrencode/HISTORY
+++ b/libs/libqrencode/HISTORY
@@ -1,3 +1,6 @@
+2025-01-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * PRE_BUILD: prevent .la files
+
2018-10-03 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 4.1.1
diff --git a/libs/libqrencode/PRE_BUILD b/libs/libqrencode/PRE_BUILD
new file mode 100755
index 0000000..8112610
--- /dev/null
+++ b/libs/libqrencode/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+patch_configure_libtool_override &&
+patch_bundled_libtool use/ltmain.sh
- [[SM-Commit] ] GIT changes to master grimoire by Treeve Jelbert (c92578416afac4a3bff73ecc58b2c1b299a5340e), Treeve Jelbert, 01/07/2025
Archive powered by MHonArc 2.6.24.