Skip to Content.
Sympa Menu

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

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 (b915e80dfd34f52f41bdb9b04d8376bc2960b861)
  • Date: Mon, 1 Aug 2022 17:16:14 +0000

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

crypto/ca-certificates/HISTORY | 3 +++
crypto/ca-certificates/INSTALL | 4 +++-
video/pipewire/DEPENDS | 8 +++++---
video/pipewire/HISTORY | 3 +++
4 files changed, 14 insertions(+), 4 deletions(-)

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

pipewire: enable opus only for scm for now

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

ca-certificates: Add staging for ca-certificates.conf

Workaround for a bug in castfs which causes a ENOENT error when opening
an existing file for truncation.

diff --git a/crypto/ca-certificates/HISTORY b/crypto/ca-certificates/HISTORY
index a5b87fb..27884b5 100644
--- a/crypto/ca-certificates/HISTORY
+++ b/crypto/ca-certificates/HISTORY
@@ -1,3 +1,6 @@
+2022-08-01 Ismael Luceno <ismael AT sourcemage.org>
+ * INSTALL: added staging for ca-certificates.conf
+
2022-05-26 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 20211016

diff --git a/crypto/ca-certificates/INSTALL b/crypto/ca-certificates/INSTALL
index 4359d6b..7f566d8 100755
--- a/crypto/ca-certificates/INSTALL
+++ b/crypto/ca-certificates/INSTALL
@@ -8,7 +8,9 @@ cp -vpr usr/share/doc/ca-certificates/*
$INSTALL_ROOT/usr/share/doc/ca-certifica
cp -vpr usr/sbin/* $INSTALL_ROOT/usr/sbin &&

cd $INSTALL_ROOT/usr/share/ca-certificates &&
-find . -name '*.crt' | sort | cut -b3- >
$INSTALL_ROOT/etc/ca-certificates.conf &&
+tmp=$(mktemp) &&
+find . -name '*.crt' | sort | cut -b3- > "$tmp" &&
+mv "$tmp" "$INSTALL_ROOT"/etc/ca-certificates.conf &&

mkdir -p $INSTALL_ROOT/etc/ssl/certs &&
chmod 0755 $INSTALL_ROOT/etc/ssl/certs
diff --git a/video/pipewire/DEPENDS b/video/pipewire/DEPENDS
index 81b81ff..819afa8 100755
--- a/video/pipewire/DEPENDS
+++ b/video/pipewire/DEPENDS
@@ -13,14 +13,16 @@ if is_depends_enabled $SPELL gst-plugins-base-1.0;then
depends glib2
fi &&

-
optional_depends avahi avahi={en,dis}abled 'for service-discovery support'
&&
optional_depends alsa-lib pipewire-alsa={en,dis}abled 'ALSA sound support'
&&
optional_depends bluez5 bluez5={en,dis}abled 'Bluetooth support' &&
if is_depends_enabled $SPELL bluez5; then
depends sbc &&
- optional_depends opus 'bluez5-codec-opus=enabled'
'bluez5-codec-opus=disabled' \
- 'for Opus codec support in Bluetooth module'
+ # XXX opus not available yet, as of 0.3.56
+ if [[ "${PIPEWIRE_BRANCH}" == "scm" ]]; then
+ optional_depends opus bluez5-codec-opus={enabled,disabled} \
+ 'for Opus codec support in Bluetooth module'
+ fi
fi &&
optional_depends JACK-DRIVER pipewire-jack={en,dis}abled 'jack integration'
&&
optional_depends LIBAVCODEC ffmpeg={en,dis}abled 'AV decoding' &&
diff --git a/video/pipewire/HISTORY b/video/pipewire/HISTORY
index 7a5d9a5..72dc97b 100644
--- a/video/pipewire/HISTORY
+++ b/video/pipewire/HISTORY
@@ -1,3 +1,6 @@
+2022-08-01 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: enable opus dependency only for scm
+
2022-07-23 Pavel Vinogradov <public AT sourcemage.org>
* DEPENDS: pkgconfig -> PKG-CONFIG




  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b915e80dfd34f52f41bdb9b04d8376bc2960b861), Ismael Luceno, 08/01/2022

Archive powered by MHonArc 2.6.24.

Top of Page