public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/TauonMusicBox/
Date: Thu, 18 Apr 2024 21:31:18 +0000 (UTC)	[thread overview]
Message-ID: <1713475864.b3dd9ae5e2b997506803ed530798649db554265b.davidroman@gentoo> (raw)
Message-ID: <20240418213118.9iSajgZ3PCJQkRXb0iCVj44lE8R3OOD8PiIlplED6_s@z> (raw)

commit:     b3dd9ae5e2b997506803ed530798649db554265b
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Thu Apr 18 21:30:51 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Apr 18 21:31:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3dd9ae5

media-sound/TauonMusicBox: drop 7.7.1, 7.7.2

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 .../TauonMusicBox/TauonMusicBox-7.7.1.ebuild       | 102 ------------------
 .../TauonMusicBox/TauonMusicBox-7.7.2.ebuild       | 114 ---------------------
 2 files changed, 216 deletions(-)

diff --git a/media-sound/TauonMusicBox/TauonMusicBox-7.7.1.ebuild b/media-sound/TauonMusicBox/TauonMusicBox-7.7.1.ebuild
deleted file mode 100644
index 4a820a6fb5..0000000000
--- a/media-sound/TauonMusicBox/TauonMusicBox-7.7.1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PLOCALES="cs de es fr_FR hu id it ja_JP nb_NO pl pt pt_BR pt_PT ru sv tr zh_CN"
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit cmake desktop distutils-r1 plocale
-
-DESCRIPTION="The desktop music player of today!"
-HOMEPAGE="https://tauonmusicbox.rocks/"
-
-if [[ ${PV} == *9999 ]]; then
-	EGIT_SUBMODULES=()
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Taiko2k/${PN}"
-else
-	SRC_URI="https://github.com/Taiko2k/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-PHAZOR_DEPS="
-	dev-libs/miniaudio
-	media-libs/flac
-	media-libs/libopenmpt
-	media-sound/mpg123
-	media-libs/opus
-	media-libs/opusfile
-	media-sound/wavpack
-	media-libs/libsamplerate
-	sci-libs/kissfft[-cpu_flags_x86_sse]
-"
-
-DEPEND="
-	dev-python/musicbrainzngs[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/PySDL2[${PYTHON_USEDEP}]
-	media-libs/mutagen[${PYTHON_USEDEP}]
-
-	${PHAZOR_DEPS}
-"
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="sys-devel/gettext"
-
-src_prepare() {
-	# Workaround. If PATCHES is used it would be applied to times and fail
-	eapply "${FILESDIR}/${PN}-fix-build-system.patch"
-
-	distutils-r1_src_prepare
-	cmake_src_prepare
-}
-
-src_configure() {
-	distutils-r1_src_configure
-	cmake_src_configure
-}
-
-src_compile() {
-	distutils-r1_src_compile
-	cmake_src_compile
-
-	build_locale() {
-		msgfmt -o "locale/${1}/LC_MESSAGES/tauon.mo" "locale/${1}/LC_MESSAGES/tauon.po" || die
-	}
-
-	plocale_for_each_locale build_locale
-}
-
-src_test() {
-	distutils-r1_src_test
-	cmake_src_test
-}
-
-python_install() {
-	dobin tauon.py
-	dolib.so  "${WORKDIR}/${P}_build/libphazor.so"
-
-	install_locale() {
-		insinto "/usr/share/locale/${1}/LC_MESSAGES"
-		doins "locale/${1}/LC_MESSAGES/tauon.mo"
-	}
-
-	plocale_for_each_locale install_locale
-
-	insinto "/usr/share/${PN}"
-	doins -r assets theme templates
-	doins input.txt
-	dosym "/usr/$(get_libdir)/libphazor.so" "/usr/share/${PN}/lib/libphazor.so"
-
-	sed -i 's/\/opt\/tauon-music-box\/tauonmb.sh/tauon.py/g' extra/tauonmb.desktop || die
-	domenu extra/tauonmb.desktop
-	doicon -s scalable extra/tauonmb.svg
-
-	distutils-r1_python_install
-}

diff --git a/media-sound/TauonMusicBox/TauonMusicBox-7.7.2.ebuild b/media-sound/TauonMusicBox/TauonMusicBox-7.7.2.ebuild
deleted file mode 100644
index ca5357061a..0000000000
--- a/media-sound/TauonMusicBox/TauonMusicBox-7.7.2.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PLOCALES="cs de es fr_FR hu id it ja_JP nb_NO pl pt pt_BR pt_PT ru sv tr zh_CN"
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit cmake desktop distutils-r1 optfeature plocale xdg
-
-DESCRIPTION="The desktop music player of today!"
-HOMEPAGE="https://tauonmusicbox.rocks/"
-
-if [[ ${PV} == *9999 ]]; then
-	EGIT_SUBMODULES=()
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Taiko2k/${PN}"
-else
-	SRC_URI="https://github.com/Taiko2k/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-PHAZOR_DEPS="
-	dev-libs/miniaudio
-	media-libs/flac
-	media-libs/libopenmpt
-	media-libs/opus
-	media-libs/opusfile
-	media-libs/libsamplerate
-	media-libs/libvorbis
-	media-sound/mpg123
-	media-sound/wavpack
-	sci-libs/kissfft[-cpu_flags_x86_sse]
-"
-
-DEPEND="
-	dev-python/musicbrainzngs[${PYTHON_USEDEP}]
-	dev-python/natsort[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/PySDL2[${PYTHON_USEDEP}]
-	dev-python/setproctitle[${PYTHON_USEDEP}]
-	dev-python/send2trash[${PYTHON_USEDEP}]
-	media-video/ffmpeg
-	media-libs/mutagen[${PYTHON_USEDEP}]
-	media-libs/sdl2-image
-
-	${PHAZOR_DEPS}
-"
-
-RDEPEND="
-	${DEPEND}
-
-	dev-libs/libappindicator
-"
-
-BDEPEND="sys-devel/gettext"
-
-src_prepare() {
-	distutils-r1_src_prepare
-	cmake_src_prepare
-}
-
-src_configure() {
-	distutils-r1_src_configure
-	cmake_src_configure
-}
-
-src_compile() {
-	distutils-r1_src_compile
-	cmake_src_compile
-
-	build_locale() {
-		msgfmt -o "locale/${1}/LC_MESSAGES/tauon.mo" "locale/${1}/LC_MESSAGES/tauon.po" || die
-	}
-
-	plocale_for_each_locale build_locale
-}
-
-src_test() {
-	distutils-r1_src_test
-	cmake_src_test
-}
-
-python_install() {
-	newbin tauon.py tauon
-	dolib.so  "${WORKDIR}/${P}_build/libphazor.so"
-	dosym "/usr/$(get_libdir)/libphazor.so" "/usr/share/${PN}/lib/libphazor.so"
-
-	install_locale() {
-		insinto "/usr/share/locale/${1}/LC_MESSAGES"
-		doins "locale/${1}/LC_MESSAGES/tauon.mo"
-	}
-
-	plocale_for_each_locale install_locale
-
-	insinto "/usr/share/${PN}"
-	doins -r assets theme templates
-	doins input.txt
-
-	sed -i 's/\/opt\/tauon-music-box\/tauonmb.sh/tauon/g' extra/tauonmb.desktop || die
-	sed -i 's/Actions=PlayPause;Previous;Next/Actions=PlayPause;Previous;Next;Stop/g' extra/tauonmb.desktop || die
-	domenu extra/tauonmb.desktop
-	doicon -s scalable extra/tauonmb.svg
-
-	distutils-r1_python_install
-}
-
-pkg_postinst() {
-	optfeature "last fm support" dev-python/pylast
-}


             reply	other threads:[~2024-04-18 21:31 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-18 21:35 David Roman [this message]
2024-04-18 21:31 ` [gentoo-commits] repo/proj/guru:dev commit in: media-sound/TauonMusicBox/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-09-07  0:12 David Roman
2024-09-07  9:22 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-08-31 21:19 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-08-31 21:35 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-08-31 21:19 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-08-31 21:35 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-08-06 14:10 Lucio Sauer
2024-08-06 14:07 [gentoo-commits] repo/proj/guru:dev " Lucio Sauer
2024-08-06 14:10 ` [gentoo-commits] repo/proj/guru:master " Lucio Sauer
2024-04-18 21:31 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-18 21:35 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-04-18 16:23 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-18 16:24 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-02-26 16:30 Viorel Munteanu
2024-02-23 23:40 Julien Roy
2024-02-23 13:10 David Roman
2024-02-23 12:24 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-02-23 13:11 ` [gentoo-commits] repo/proj/guru:master " 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=1713475864.b3dd9ae5e2b997506803ed530798649db554265b.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