From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/
Date: Tue, 15 Oct 2024 23:27:18 +0000 (UTC) [thread overview]
Message-ID: <1729025188.ee2f691f7943df6d1a831257cb7924a8b07ed5d9.davidroman@gentoo> (raw)
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
-}
next reply other threads:[~2024-10-15 23:27 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-15 23:27 David Roman [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-29 14:06 [gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/ David Roman
2024-10-15 23:27 David Roman
2024-10-15 23:27 David Roman
2024-09-29 18:00 David Roman
2024-09-29 18:00 David Roman
2024-09-27 11:41 David Roman
2024-09-20 19:26 David Roman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1729025188.ee2f691f7943df6d1a831257cb7924a8b07ed5d9.davidroman@gentoo \
--to=davidroman96@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox