* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-09-20 19:26 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-20 19:26 UTC (permalink / raw
To: gentoo-commits
commit: aa664d5463845d0e6490531ddbc0e20f246c427a
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Fri Sep 20 07:01:56 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep 20 07:04:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa664d54
media-sound/fooyin: new package, add 0.7.0, 9999
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/Manifest | 1 +
media-sound/fooyin/fooyin-0.7.0.ebuild | 80 ++++++++++++++++++++++++++++++++++
media-sound/fooyin/fooyin-9999.ebuild | 80 ++++++++++++++++++++++++++++++++++
media-sound/fooyin/metadata.xml | 15 +++++++
4 files changed, 176 insertions(+)
diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
new file mode 100644
index 000000000..5362f220a
--- /dev/null
+++ b/media-sound/fooyin/Manifest
@@ -0,0 +1 @@
+DIST fooyin-0.7.0.tar.gz 1575492 BLAKE2B 0c06fb301b43de3f718efba479159cb5be7182a1a60371a04da27ebd302fb500816b10b841184290a428e08f46034cb4fe71185dbabb408637080eb2fb99ebf9 SHA512 70220d0503e473b347633d1d602d95fed4b78f4f2b7caa3b4a75854e622182eecd622b9f92434030097f5ab0926f305a948d16c0f776536b4ab562f94fe5bd76
diff --git a/media-sound/fooyin/fooyin-0.7.0.ebuild b/media-sound/fooyin/fooyin-0.7.0.ebuild
new file mode 100644
index 000000000..00094d24b
--- /dev/null
+++ b/media-sound/fooyin/fooyin-0.7.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="A customizable music player, Qt clone of foobar2000"
+HOMEPAGE="https://www.fooyin.org/"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
+else
+ SRC_URI="
+ https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.tar.gz
+ "
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="alsa pipewire sdl test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+ || ( alsa pipewire sdl )
+"
+
+RDEPEND="
+ dev-libs/icu:=
+ dev-libs/kdsingleapplication
+ dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
+ media-libs/taglib
+ media-video/ffmpeg:=
+ alsa? ( media-libs/alsa-lib )
+ pipewire? ( media-video/pipewire:= )
+ sdl? ( media-libs/libsdl2 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? ( dev-cpp/gtest )
+"
+
+src_prepare() {
+ sed -i CMakeLists.txt \
+ -e "s|/doc/${PN}|/doc/${PF}|g" \
+ -e '/option(BUILD_TESTING/aenable_testing()' \
+ || die
+
+ sed \
+ -e "s#:/audio#data/audio#g" \
+ -i \
+ tests/tagwritertest.cpp \
+ tests/tagreadertest.cpp \
+ || die
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ -DBUILD_CCACHE=OFF
+ -DBUILD_LIBVGM=OFF
+ -DINSTALL_HEADERS=ON
+ $(cmake_use_find_package alsa ALSA)
+ $(cmake_use_find_package pipewire PipeWire)
+ $(cmake_use_find_package sdl SDL2)
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
+
+ cmake_src_test
+}
diff --git a/media-sound/fooyin/fooyin-9999.ebuild b/media-sound/fooyin/fooyin-9999.ebuild
new file mode 100644
index 000000000..00094d24b
--- /dev/null
+++ b/media-sound/fooyin/fooyin-9999.ebuild
@@ -0,0 +1,80 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="A customizable music player, Qt clone of foobar2000"
+HOMEPAGE="https://www.fooyin.org/"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
+else
+ SRC_URI="
+ https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.tar.gz
+ "
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="alsa pipewire sdl test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+ || ( alsa pipewire sdl )
+"
+
+RDEPEND="
+ dev-libs/icu:=
+ dev-libs/kdsingleapplication
+ dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
+ media-libs/taglib
+ media-video/ffmpeg:=
+ alsa? ( media-libs/alsa-lib )
+ pipewire? ( media-video/pipewire:= )
+ sdl? ( media-libs/libsdl2 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? ( dev-cpp/gtest )
+"
+
+src_prepare() {
+ sed -i CMakeLists.txt \
+ -e "s|/doc/${PN}|/doc/${PF}|g" \
+ -e '/option(BUILD_TESTING/aenable_testing()' \
+ || die
+
+ sed \
+ -e "s#:/audio#data/audio#g" \
+ -i \
+ tests/tagwritertest.cpp \
+ tests/tagreadertest.cpp \
+ || die
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ -DBUILD_CCACHE=OFF
+ -DBUILD_LIBVGM=OFF
+ -DINSTALL_HEADERS=ON
+ $(cmake_use_find_package alsa ALSA)
+ $(cmake_use_find_package pipewire PipeWire)
+ $(cmake_use_find_package sdl SDL2)
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
+
+ cmake_src_test
+}
diff --git a/media-sound/fooyin/metadata.xml b/media-sound/fooyin/metadata.xml
new file mode 100644
index 000000000..77f97de37
--- /dev/null
+++ b/media-sound/fooyin/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sighunter@gmx.de</email>
+ <name>Sebastian Engel</name>
+ </maintainer>
+ <use>
+ <flag name="pipewire">Enable sound support via native PipeWire backend</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">fooyin/fooyin</remote-id>
+ </upstream>
+</pkgmetadata>
+
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-09-27 11:41 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-27 11:41 UTC (permalink / raw
To: gentoo-commits
commit: 47c19dd10b3dd49cf131822011a0afaedee6c40e
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Fri Sep 27 08:20:19 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep 27 08:20:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47c19dd1
media-sound/fooyin: add 0.7.2
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/Manifest | 1 +
media-sound/fooyin/fooyin-0.7.2.ebuild | 89 ++++++++++++++++++++++++++++++++++
2 files changed, 90 insertions(+)
diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
index c01c3e5fb..648657161 100644
--- a/media-sound/fooyin/Manifest
+++ b/media-sound/fooyin/Manifest
@@ -1,2 +1,3 @@
DIST fooyin-0.7.0.tar.gz 1575492 BLAKE2B 0c06fb301b43de3f718efba479159cb5be7182a1a60371a04da27ebd302fb500816b10b841184290a428e08f46034cb4fe71185dbabb408637080eb2fb99ebf9 SHA512 70220d0503e473b347633d1d602d95fed4b78f4f2b7caa3b4a75854e622182eecd622b9f92434030097f5ab0926f305a948d16c0f776536b4ab562f94fe5bd76
DIST fooyin-0.7.1.tar.gz 1584531 BLAKE2B e6ef313e45a5834eb4a0f331f45d803ae09a723acac08fc52bb77996c32fba38c4f7a49c8c3f6e96ecdcc30523a45d184217c59f4d1d7e8221fcd92f492c7c29 SHA512 0925f4f8db43446bdd62e2ad2df34f6e60dab5d27dd0423fd9d4ff6b50556bcebb658140303ae0697dbff97762e48a21ed2d5918f23782bd098161aefaddb248
+DIST fooyin-0.7.2.tar.gz 1592767 BLAKE2B 548200ebf635f69c085cb6c1bb87dece374ce68173386f2fbfc0abe6b3594dfde35fc01beb542e6a90146a5e27c9e0ac58e319eb5a7a9d184d3a87f9ee185ecf SHA512 aed08bca5f8e56843fa844f874efa6d59d4213b7f3c2852a620518097c19fa5a68205d7234a3563e32fa383456648e4fb0719a2973b4ec9a55d4e14af56314eb
diff --git a/media-sound/fooyin/fooyin-0.7.2.ebuild b/media-sound/fooyin/fooyin-0.7.2.ebuild
new file mode 100644
index 000000000..fb1680cf6
--- /dev/null
+++ b/media-sound/fooyin/fooyin-0.7.2.ebuild
@@ -0,0 +1,89 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="A customizable music player, Qt clone of foobar2000"
+HOMEPAGE="https://www.fooyin.org/"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
+else
+ SRC_URI="
+ https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.tar.gz
+ "
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="alsa +archive openmpt pipewire sdl test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+ || ( alsa pipewire sdl )
+"
+
+RDEPEND="
+ dev-libs/icu:=
+ dev-libs/kdsingleapplication
+ dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
+ dev-qt/qtsvg:6
+ media-libs/taglib
+ media-video/ffmpeg:=
+ alsa? ( media-libs/alsa-lib )
+ archive? ( app-arch/libarchive:= )
+ openmpt? ( media-libs/libopenmpt )
+ pipewire? ( media-video/pipewire:= )
+ sdl? ( media-libs/libsdl2 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? ( dev-cpp/gtest )
+"
+
+src_prepare() {
+ sed -i CMakeLists.txt \
+ -e "s|/doc/${PN}|/doc/${PF}|g" \
+ -e '/option(BUILD_TESTING/aenable_testing()' \
+ || die
+
+ sed \
+ -e "s#:/audio#data/audio#g" \
+ -i \
+ tests/tagwritertest.cpp \
+ tests/tagreadertest.cpp \
+ || die
+
+ cmake_src_prepare
+}
+
+# libvgm, sndfile and libgme dependencies can currently not be satisfied,
+# so building their input plugins is unconditionally disabled for now.
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_ALSA=$(usex alsa)
+ -DBUILD_TESTING=$(usex test)
+ -DBUILD_CCACHE=OFF
+ -DBUILD_LIBVGM=OFF
+ -DCMAKE_DISABLE_FIND_PACKAGE_LIBGME=ON
+ -DCMAKE_DISABLE_FIND_PACKAGE_SndFile=ON
+ -DINSTALL_HEADERS=ON
+ $(cmake_use_find_package archive LibArchive)
+ $(cmake_use_find_package openmpt OpenMpt)
+ $(cmake_use_find_package pipewire PipeWire)
+ $(cmake_use_find_package sdl SDL2)
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
+
+ cmake_src_test
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-09-29 18:00 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-29 18:00 UTC (permalink / raw
To: gentoo-commits
commit: f2db4c29874fb3f52889643972d6fc12e40cfe42
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Sat Sep 28 12:01:31 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Sep 28 12:01:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2db4c29
media-sound/fooyin: add 0.7.3
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/Manifest | 1 +
media-sound/fooyin/fooyin-0.7.3.ebuild | 89 ++++++++++++++++++++++++++++++++++
2 files changed, 90 insertions(+)
diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
index 648657161..b40e46ee7 100644
--- a/media-sound/fooyin/Manifest
+++ b/media-sound/fooyin/Manifest
@@ -1,3 +1,4 @@
DIST fooyin-0.7.0.tar.gz 1575492 BLAKE2B 0c06fb301b43de3f718efba479159cb5be7182a1a60371a04da27ebd302fb500816b10b841184290a428e08f46034cb4fe71185dbabb408637080eb2fb99ebf9 SHA512 70220d0503e473b347633d1d602d95fed4b78f4f2b7caa3b4a75854e622182eecd622b9f92434030097f5ab0926f305a948d16c0f776536b4ab562f94fe5bd76
DIST fooyin-0.7.1.tar.gz 1584531 BLAKE2B e6ef313e45a5834eb4a0f331f45d803ae09a723acac08fc52bb77996c32fba38c4f7a49c8c3f6e96ecdcc30523a45d184217c59f4d1d7e8221fcd92f492c7c29 SHA512 0925f4f8db43446bdd62e2ad2df34f6e60dab5d27dd0423fd9d4ff6b50556bcebb658140303ae0697dbff97762e48a21ed2d5918f23782bd098161aefaddb248
DIST fooyin-0.7.2.tar.gz 1592767 BLAKE2B 548200ebf635f69c085cb6c1bb87dece374ce68173386f2fbfc0abe6b3594dfde35fc01beb542e6a90146a5e27c9e0ac58e319eb5a7a9d184d3a87f9ee185ecf SHA512 aed08bca5f8e56843fa844f874efa6d59d4213b7f3c2852a620518097c19fa5a68205d7234a3563e32fa383456648e4fb0719a2973b4ec9a55d4e14af56314eb
+DIST fooyin-0.7.3.tar.gz 1602824 BLAKE2B d4b120ef3cf39e8598cb5b5e5c3bf17223e60f2fb7507fcfa8d4946f596e2e55c1e293835d29727ba7e4b3749982ffd4192d21e8583b34df124af5aa635cc2b4 SHA512 09edba0e9874ba204b6167222003d907c091df277b628cac3492f9647c3484afc3a61a3ac1bb3cf6d4f7b210e48541d8f5c865fde66039d098c4e90280e57f07
diff --git a/media-sound/fooyin/fooyin-0.7.3.ebuild b/media-sound/fooyin/fooyin-0.7.3.ebuild
new file mode 100644
index 000000000..fb1680cf6
--- /dev/null
+++ b/media-sound/fooyin/fooyin-0.7.3.ebuild
@@ -0,0 +1,89 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="A customizable music player, Qt clone of foobar2000"
+HOMEPAGE="https://www.fooyin.org/"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
+else
+ SRC_URI="
+ https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.tar.gz
+ "
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="alsa +archive openmpt pipewire sdl test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+ || ( alsa pipewire sdl )
+"
+
+RDEPEND="
+ dev-libs/icu:=
+ dev-libs/kdsingleapplication
+ dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
+ dev-qt/qtsvg:6
+ media-libs/taglib
+ media-video/ffmpeg:=
+ alsa? ( media-libs/alsa-lib )
+ archive? ( app-arch/libarchive:= )
+ openmpt? ( media-libs/libopenmpt )
+ pipewire? ( media-video/pipewire:= )
+ sdl? ( media-libs/libsdl2 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? ( dev-cpp/gtest )
+"
+
+src_prepare() {
+ sed -i CMakeLists.txt \
+ -e "s|/doc/${PN}|/doc/${PF}|g" \
+ -e '/option(BUILD_TESTING/aenable_testing()' \
+ || die
+
+ sed \
+ -e "s#:/audio#data/audio#g" \
+ -i \
+ tests/tagwritertest.cpp \
+ tests/tagreadertest.cpp \
+ || die
+
+ cmake_src_prepare
+}
+
+# libvgm, sndfile and libgme dependencies can currently not be satisfied,
+# so building their input plugins is unconditionally disabled for now.
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_ALSA=$(usex alsa)
+ -DBUILD_TESTING=$(usex test)
+ -DBUILD_CCACHE=OFF
+ -DBUILD_LIBVGM=OFF
+ -DCMAKE_DISABLE_FIND_PACKAGE_LIBGME=ON
+ -DCMAKE_DISABLE_FIND_PACKAGE_SndFile=ON
+ -DINSTALL_HEADERS=ON
+ $(cmake_use_find_package archive LibArchive)
+ $(cmake_use_find_package openmpt OpenMpt)
+ $(cmake_use_find_package pipewire PipeWire)
+ $(cmake_use_find_package sdl SDL2)
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
+
+ cmake_src_test
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-09-29 18:00 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-29 18:00 UTC (permalink / raw
To: gentoo-commits
commit: 513bc2ca8cad038f638816b25ded7fb172e8398d
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Sat Sep 28 12:02:35 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Sep 28 12:02:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=513bc2ca
media-sound/fooyin: drop 0.7.0
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/Manifest | 1 -
media-sound/fooyin/fooyin-0.7.0.ebuild | 80 ----------------------------------
2 files changed, 81 deletions(-)
diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
index b40e46ee7..db5960924 100644
--- a/media-sound/fooyin/Manifest
+++ b/media-sound/fooyin/Manifest
@@ -1,4 +1,3 @@
-DIST fooyin-0.7.0.tar.gz 1575492 BLAKE2B 0c06fb301b43de3f718efba479159cb5be7182a1a60371a04da27ebd302fb500816b10b841184290a428e08f46034cb4fe71185dbabb408637080eb2fb99ebf9 SHA512 70220d0503e473b347633d1d602d95fed4b78f4f2b7caa3b4a75854e622182eecd622b9f92434030097f5ab0926f305a948d16c0f776536b4ab562f94fe5bd76
DIST fooyin-0.7.1.tar.gz 1584531 BLAKE2B e6ef313e45a5834eb4a0f331f45d803ae09a723acac08fc52bb77996c32fba38c4f7a49c8c3f6e96ecdcc30523a45d184217c59f4d1d7e8221fcd92f492c7c29 SHA512 0925f4f8db43446bdd62e2ad2df34f6e60dab5d27dd0423fd9d4ff6b50556bcebb658140303ae0697dbff97762e48a21ed2d5918f23782bd098161aefaddb248
DIST fooyin-0.7.2.tar.gz 1592767 BLAKE2B 548200ebf635f69c085cb6c1bb87dece374ce68173386f2fbfc0abe6b3594dfde35fc01beb542e6a90146a5e27c9e0ac58e319eb5a7a9d184d3a87f9ee185ecf SHA512 aed08bca5f8e56843fa844f874efa6d59d4213b7f3c2852a620518097c19fa5a68205d7234a3563e32fa383456648e4fb0719a2973b4ec9a55d4e14af56314eb
DIST fooyin-0.7.3.tar.gz 1602824 BLAKE2B d4b120ef3cf39e8598cb5b5e5c3bf17223e60f2fb7507fcfa8d4946f596e2e55c1e293835d29727ba7e4b3749982ffd4192d21e8583b34df124af5aa635cc2b4 SHA512 09edba0e9874ba204b6167222003d907c091df277b628cac3492f9647c3484afc3a61a3ac1bb3cf6d4f7b210e48541d8f5c865fde66039d098c4e90280e57f07
diff --git a/media-sound/fooyin/fooyin-0.7.0.ebuild b/media-sound/fooyin/fooyin-0.7.0.ebuild
deleted file mode 100644
index 00094d24b..000000000
--- a/media-sound/fooyin/fooyin-0.7.0.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="A customizable music player, Qt clone of foobar2000"
-HOMEPAGE="https://www.fooyin.org/"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
-else
- SRC_URI="
- https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="alsa pipewire sdl test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
- || ( alsa pipewire sdl )
-"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/kdsingleapplication
- dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
- media-libs/taglib
- media-video/ffmpeg:=
- alsa? ( media-libs/alsa-lib )
- pipewire? ( media-video/pipewire:= )
- sdl? ( media-libs/libsdl2 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-src_prepare() {
- sed -i CMakeLists.txt \
- -e "s|/doc/${PN}|/doc/${PF}|g" \
- -e '/option(BUILD_TESTING/aenable_testing()' \
- || die
-
- sed \
- -e "s#:/audio#data/audio#g" \
- -i \
- tests/tagwritertest.cpp \
- tests/tagreadertest.cpp \
- || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DBUILD_CCACHE=OFF
- -DBUILD_LIBVGM=OFF
- -DINSTALL_HEADERS=ON
- $(cmake_use_find_package alsa ALSA)
- $(cmake_use_find_package pipewire PipeWire)
- $(cmake_use_find_package sdl SDL2)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
-
- cmake_src_test
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-10-15 23:27 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-10-15 23:27 UTC (permalink / raw
To: gentoo-commits
commit: ee2f691f7943df6d1a831257cb7924a8b07ed5d9
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Tue Oct 15 16:51:41 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct 15 20:46:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ee2f691f
media-sound/fooyin: drop 0.7.1, 0.7.2
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/Manifest | 2 -
media-sound/fooyin/fooyin-0.7.1.ebuild | 89 ----------------------------------
media-sound/fooyin/fooyin-0.7.2.ebuild | 89 ----------------------------------
3 files changed, 180 deletions(-)
diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
index db5960924..1ab25b4b1 100644
--- a/media-sound/fooyin/Manifest
+++ b/media-sound/fooyin/Manifest
@@ -1,3 +1 @@
-DIST fooyin-0.7.1.tar.gz 1584531 BLAKE2B e6ef313e45a5834eb4a0f331f45d803ae09a723acac08fc52bb77996c32fba38c4f7a49c8c3f6e96ecdcc30523a45d184217c59f4d1d7e8221fcd92f492c7c29 SHA512 0925f4f8db43446bdd62e2ad2df34f6e60dab5d27dd0423fd9d4ff6b50556bcebb658140303ae0697dbff97762e48a21ed2d5918f23782bd098161aefaddb248
-DIST fooyin-0.7.2.tar.gz 1592767 BLAKE2B 548200ebf635f69c085cb6c1bb87dece374ce68173386f2fbfc0abe6b3594dfde35fc01beb542e6a90146a5e27c9e0ac58e319eb5a7a9d184d3a87f9ee185ecf SHA512 aed08bca5f8e56843fa844f874efa6d59d4213b7f3c2852a620518097c19fa5a68205d7234a3563e32fa383456648e4fb0719a2973b4ec9a55d4e14af56314eb
DIST fooyin-0.7.3.tar.gz 1602824 BLAKE2B d4b120ef3cf39e8598cb5b5e5c3bf17223e60f2fb7507fcfa8d4946f596e2e55c1e293835d29727ba7e4b3749982ffd4192d21e8583b34df124af5aa635cc2b4 SHA512 09edba0e9874ba204b6167222003d907c091df277b628cac3492f9647c3484afc3a61a3ac1bb3cf6d4f7b210e48541d8f5c865fde66039d098c4e90280e57f07
diff --git a/media-sound/fooyin/fooyin-0.7.1.ebuild b/media-sound/fooyin/fooyin-0.7.1.ebuild
deleted file mode 100644
index fb1680cf6..000000000
--- a/media-sound/fooyin/fooyin-0.7.1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="A customizable music player, Qt clone of foobar2000"
-HOMEPAGE="https://www.fooyin.org/"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
-else
- SRC_URI="
- https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="alsa +archive openmpt pipewire sdl test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
- || ( alsa pipewire sdl )
-"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/kdsingleapplication
- dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
- dev-qt/qtsvg:6
- media-libs/taglib
- media-video/ffmpeg:=
- alsa? ( media-libs/alsa-lib )
- archive? ( app-arch/libarchive:= )
- openmpt? ( media-libs/libopenmpt )
- pipewire? ( media-video/pipewire:= )
- sdl? ( media-libs/libsdl2 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-src_prepare() {
- sed -i CMakeLists.txt \
- -e "s|/doc/${PN}|/doc/${PF}|g" \
- -e '/option(BUILD_TESTING/aenable_testing()' \
- || die
-
- sed \
- -e "s#:/audio#data/audio#g" \
- -i \
- tests/tagwritertest.cpp \
- tests/tagreadertest.cpp \
- || die
-
- cmake_src_prepare
-}
-
-# libvgm, sndfile and libgme dependencies can currently not be satisfied,
-# so building their input plugins is unconditionally disabled for now.
-src_configure() {
- local mycmakeargs=(
- -DBUILD_ALSA=$(usex alsa)
- -DBUILD_TESTING=$(usex test)
- -DBUILD_CCACHE=OFF
- -DBUILD_LIBVGM=OFF
- -DCMAKE_DISABLE_FIND_PACKAGE_LIBGME=ON
- -DCMAKE_DISABLE_FIND_PACKAGE_SndFile=ON
- -DINSTALL_HEADERS=ON
- $(cmake_use_find_package archive LibArchive)
- $(cmake_use_find_package openmpt OpenMpt)
- $(cmake_use_find_package pipewire PipeWire)
- $(cmake_use_find_package sdl SDL2)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
-
- cmake_src_test
-}
diff --git a/media-sound/fooyin/fooyin-0.7.2.ebuild b/media-sound/fooyin/fooyin-0.7.2.ebuild
deleted file mode 100644
index fb1680cf6..000000000
--- a/media-sound/fooyin/fooyin-0.7.2.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="A customizable music player, Qt clone of foobar2000"
-HOMEPAGE="https://www.fooyin.org/"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
-else
- SRC_URI="
- https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="alsa +archive openmpt pipewire sdl test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
- || ( alsa pipewire sdl )
-"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/kdsingleapplication
- dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
- dev-qt/qtsvg:6
- media-libs/taglib
- media-video/ffmpeg:=
- alsa? ( media-libs/alsa-lib )
- archive? ( app-arch/libarchive:= )
- openmpt? ( media-libs/libopenmpt )
- pipewire? ( media-video/pipewire:= )
- sdl? ( media-libs/libsdl2 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-src_prepare() {
- sed -i CMakeLists.txt \
- -e "s|/doc/${PN}|/doc/${PF}|g" \
- -e '/option(BUILD_TESTING/aenable_testing()' \
- || die
-
- sed \
- -e "s#:/audio#data/audio#g" \
- -i \
- tests/tagwritertest.cpp \
- tests/tagreadertest.cpp \
- || die
-
- cmake_src_prepare
-}
-
-# libvgm, sndfile and libgme dependencies can currently not be satisfied,
-# so building their input plugins is unconditionally disabled for now.
-src_configure() {
- local mycmakeargs=(
- -DBUILD_ALSA=$(usex alsa)
- -DBUILD_TESTING=$(usex test)
- -DBUILD_CCACHE=OFF
- -DBUILD_LIBVGM=OFF
- -DCMAKE_DISABLE_FIND_PACKAGE_LIBGME=ON
- -DCMAKE_DISABLE_FIND_PACKAGE_SndFile=ON
- -DINSTALL_HEADERS=ON
- $(cmake_use_find_package archive LibArchive)
- $(cmake_use_find_package openmpt OpenMpt)
- $(cmake_use_find_package pipewire PipeWire)
- $(cmake_use_find_package sdl SDL2)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
-
- cmake_src_test
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-10-15 23:27 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-10-15 23:27 UTC (permalink / raw
To: gentoo-commits
commit: cf6f23d55971f0b5800428926a637b7cf76576ef
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Tue Oct 15 20:30:12 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct 15 20:46:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf6f23d5
media-sound/fooyin: add 0.8.1
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/Manifest | 1 +
media-sound/fooyin/fooyin-0.8.1.ebuild | 93 ++++++++++++++++++++++++++++++++++
2 files changed, 94 insertions(+)
diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
index 1ab25b4b1..e2390f8bc 100644
--- a/media-sound/fooyin/Manifest
+++ b/media-sound/fooyin/Manifest
@@ -1 +1,2 @@
DIST fooyin-0.7.3.tar.gz 1602824 BLAKE2B d4b120ef3cf39e8598cb5b5e5c3bf17223e60f2fb7507fcfa8d4946f596e2e55c1e293835d29727ba7e4b3749982ffd4192d21e8583b34df124af5aa635cc2b4 SHA512 09edba0e9874ba204b6167222003d907c091df277b628cac3492f9647c3484afc3a61a3ac1bb3cf6d4f7b210e48541d8f5c865fde66039d098c4e90280e57f07
+DIST fooyin-0.8.1.tar.gz 1743303 BLAKE2B aa393dea6eca447320782fd4b766cda9cf6379150eb80451dfe63707fa51b48605daf082abf6e041da7bf5c384ee702d109f915daf4872f1dec927f0705958e3 SHA512 0204d7fe713d0f4f2602b56d51c7808fd4d14fae8405e77ceabb76cb64201a54a20411395fd648b333782889730e77525f96a20293dd7feb68db2b65973c7d3e
diff --git a/media-sound/fooyin/fooyin-0.8.1.ebuild b/media-sound/fooyin/fooyin-0.8.1.ebuild
new file mode 100644
index 000000000..c55958905
--- /dev/null
+++ b/media-sound/fooyin/fooyin-0.8.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="A customizable music player, Qt clone of foobar2000"
+HOMEPAGE="https://www.fooyin.org/"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
+else
+ SRC_URI="
+ https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.tar.gz
+ "
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="alsa +archive openmpt +pipewire +replaygain sdl sndfile test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+ || ( alsa pipewire sdl )
+"
+
+RDEPEND="
+ dev-libs/icu:=
+ dev-libs/kdsingleapplication
+ dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
+ dev-qt/qtsvg:6
+ media-libs/taglib
+ media-video/ffmpeg:=
+ alsa? ( media-libs/alsa-lib )
+ archive? ( app-arch/libarchive:= )
+ openmpt? ( media-libs/libopenmpt )
+ pipewire? ( media-video/pipewire:= )
+ replaygain? ( media-libs/libebur128:= )
+ sdl? ( media-libs/libsdl2 )
+ sndfile? ( media-libs/libsndfile )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-qt/qttools:6[linguist]
+ test? ( dev-cpp/gtest )
+"
+
+src_prepare() {
+ sed -i CMakeLists.txt \
+ -e "s|/doc/${PN}|/doc/${PF}|g" \
+ -e '/option(BUILD_TESTING/aenable_testing()' \
+ || die
+
+ sed \
+ -e "s#:/audio#data/audio#g" \
+ -i \
+ tests/tagwritertest.cpp \
+ tests/tagreadertest.cpp \
+ || die
+
+ cmake_src_prepare
+}
+
+# libvgm and libgme dependencies can currently not be satisfied,
+# so building their input plugins is unconditionally disabled for now.
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_ALSA=$(usex alsa)
+ -DBUILD_TESTING=$(usex test)
+ -DBUILD_CCACHE=OFF
+ -DBUILD_LIBVGM=OFF
+ -DCMAKE_DISABLE_FIND_PACKAGE_LIBGME=ON
+ -DINSTALL_HEADERS=ON
+ $(cmake_use_find_package archive LibArchive)
+ $(cmake_use_find_package openmpt OpenMpt)
+ $(cmake_use_find_package pipewire PipeWire)
+ $(cmake_use_find_package replaygain Ebur128)
+ $(cmake_use_find_package sdl SDL2)
+ $(cmake_use_find_package sndfile SndFile)
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
+
+ cmake_src_test
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-10-15 23:27 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-10-15 23:27 UTC (permalink / raw
To: gentoo-commits
commit: 58b414113caf2270e6c97da693cf72e9cd08b938
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Tue Oct 15 16:50:27 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct 15 20:46:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58b41411
media-sound/fooyin: Update 9999 for RGScan and libsndfile
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/fooyin-9999.ebuild | 10 +++++++---
media-sound/fooyin/metadata.xml | 1 +
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/media-sound/fooyin/fooyin-9999.ebuild b/media-sound/fooyin/fooyin-9999.ebuild
index fb1680cf6..c55958905 100644
--- a/media-sound/fooyin/fooyin-9999.ebuild
+++ b/media-sound/fooyin/fooyin-9999.ebuild
@@ -22,7 +22,7 @@ fi
LICENSE="GPL-3"
SLOT="0"
-IUSE="alsa +archive openmpt pipewire sdl test"
+IUSE="alsa +archive openmpt +pipewire +replaygain sdl sndfile test"
RESTRICT="!test? ( test )"
REQUIRED_USE="
|| ( alsa pipewire sdl )
@@ -39,10 +39,13 @@ RDEPEND="
archive? ( app-arch/libarchive:= )
openmpt? ( media-libs/libopenmpt )
pipewire? ( media-video/pipewire:= )
+ replaygain? ( media-libs/libebur128:= )
sdl? ( media-libs/libsdl2 )
+ sndfile? ( media-libs/libsndfile )
"
DEPEND="${RDEPEND}"
BDEPEND="
+ dev-qt/qttools:6[linguist]
test? ( dev-cpp/gtest )
"
@@ -62,7 +65,7 @@ src_prepare() {
cmake_src_prepare
}
-# libvgm, sndfile and libgme dependencies can currently not be satisfied,
+# libvgm and libgme dependencies can currently not be satisfied,
# so building their input plugins is unconditionally disabled for now.
src_configure() {
local mycmakeargs=(
@@ -71,12 +74,13 @@ src_configure() {
-DBUILD_CCACHE=OFF
-DBUILD_LIBVGM=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_LIBGME=ON
- -DCMAKE_DISABLE_FIND_PACKAGE_SndFile=ON
-DINSTALL_HEADERS=ON
$(cmake_use_find_package archive LibArchive)
$(cmake_use_find_package openmpt OpenMpt)
$(cmake_use_find_package pipewire PipeWire)
+ $(cmake_use_find_package replaygain Ebur128)
$(cmake_use_find_package sdl SDL2)
+ $(cmake_use_find_package sndfile SndFile)
)
cmake_src_configure
diff --git a/media-sound/fooyin/metadata.xml b/media-sound/fooyin/metadata.xml
index 447459daf..aeca16e91 100644
--- a/media-sound/fooyin/metadata.xml
+++ b/media-sound/fooyin/metadata.xml
@@ -9,6 +9,7 @@
<flag name="archive">Build the libarchive input plugin using <pkg>app-arch/libarchive</pkg></flag>
<flag name="openmpt">Build the OpenMPT input plugin using <pkg>media-libs/libopenmpt</pkg></flag>
<flag name="pipewire">Enable sound support via native PipeWire backend</flag>
+ <flag name="replaygain">Enable support for Replay Gain scanning using <pkg>media-libs/libebur128</pkg> instead of using ffmpeg</flag>
</use>
<upstream>
<remote-id type="github">fooyin/fooyin</remote-id>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
@ 2024-10-29 14:06 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-10-29 14:06 UTC (permalink / raw
To: gentoo-commits
commit: 97df0a4e489e116043033120d0fe2d452a5a593d
Author: Sebastian Engel <sighunter <AT> gmx <DOT> de>
AuthorDate: Sun Oct 27 20:26:09 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Oct 27 20:26:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=97df0a4e
media-sound/fooyin: Add a new dependency to 9999 version
Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de>
media-sound/fooyin/fooyin-9999.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/media-sound/fooyin/fooyin-9999.ebuild b/media-sound/fooyin/fooyin-9999.ebuild
index c55958905..9c8c28fc5 100644
--- a/media-sound/fooyin/fooyin-9999.ebuild
+++ b/media-sound/fooyin/fooyin-9999.ebuild
@@ -32,6 +32,7 @@ RDEPEND="
dev-libs/icu:=
dev-libs/kdsingleapplication
dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
+ dev-qt/qtimageformats:6
dev-qt/qtsvg:6
media-libs/taglib
media-video/ffmpeg:=
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-29 14:06 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-20 19:26 [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2024-09-27 11:41 David Roman
2024-09-29 18:00 David Roman
2024-09-29 18:00 David Roman
2024-10-15 23:27 David Roman
2024-10-15 23:27 David Roman
2024-10-15 23:27 David Roman
2024-10-29 14:06 David Roman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox