From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cadence/
Date: Sat, 25 Jun 2022 09:31:25 +0000 (UTC) [thread overview]
Message-ID: <1656149482.98385427e12b119bc7c900bd84b4d7249c701eba.fordfrog@gentoo> (raw)
commit: 98385427e12b119bc7c900bd84b4d7249c701eba
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 25 09:31:17 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Jun 25 09:31:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98385427
media-sound/cadence: dropped obsolete 0.9.1-r2
Bug: https://bugs.gentoo.org/853607
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/cadence/Manifest | 1 -
media-sound/cadence/cadence-0.9.1-r2.ebuild | 93 -----------------------------
2 files changed, 94 deletions(-)
diff --git a/media-sound/cadence/Manifest b/media-sound/cadence/Manifest
index 2542a4389457..924b685f62f4 100644
--- a/media-sound/cadence/Manifest
+++ b/media-sound/cadence/Manifest
@@ -1,2 +1 @@
-DIST cadence-0.9.1.tar.gz 2202272 BLAKE2B 0f96a3eadc90540ef455e3b9c9abe1b8dc0d912936642c77e52a3704367f06e870b4cbe0bee78482436b9b099063c66b0b04007e8905b7eaf213d6b2f9aa08d1 SHA512 daa9df947f0198522172451ec3d2a0e138de5245d4fa849c89ae17fc141388467bdb2e5b1ed191d1db372f4d1c02a8f1c32458c20b893d413af8fdce72ee9219
DIST cadence-0.9.2.tar.gz 2202164 BLAKE2B a5422e4d74618e2e45d9c6f275393a6e918783fc37d60a54142725aa54e691435c41f76dd0346fae7684c452988b07a18d817902abd917dbceaff5fb4aaa6c47 SHA512 d8a1b52c361e3e18a193d1c283bb69abe18ce667b554fc53cb9b752d92747269145144ae512895ffbb5df76efe8671cfc0782f29e59d0d7cd3d97c97240bdecf
diff --git a/media-sound/cadence/cadence-0.9.1-r2.ebuild b/media-sound/cadence/cadence-0.9.1-r2.ebuild
deleted file mode 100644
index a6a6a44e2de5..000000000000
--- a/media-sound/cadence/cadence-0.9.1-r2.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-inherit python-single-r1 xdg desktop
-
-DESCRIPTION="Collection of tools useful for audio production"
-HOMEPAGE="https://kxstudio.linuxaudio.org/Applications:Cadence"
-
-if [[ ${PV} == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/falkTX/Cadence.git"
-else
- SRC_URI="https://github.com/falkTX/Cadence/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64"
- S="${WORKDIR}/Cadence-${PV}"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="a2jmidid pulseaudio opengl"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-CDEPEND="
- ${PYTHON_DEPS}
- $(python_gen_cond_dep '
- dev-python/dbus-python[${PYTHON_USEDEP}]
- dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,${PYTHON_USEDEP}]
- ')
- media-sound/jack_capture
- virtual/jack
- a2jmidid? ( media-sound/a2jmidid[dbus] )
- pulseaudio? ( || ( media-sound/pulseaudio-daemon[jack] <media-sound/pulseaudio-15.99.1[daemon(+),jack] ) )
-"
-RDEPEND="${CDEPEND}"
-DEPEND="${CDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-fix-clang.patch
- "${FILESDIR}"/${P}-fix-qt5.15.patch
-)
-
-src_prepare() {
- sed -i -e "s/python3/${EPYTHON}/" \
- data/cadence \
- data/cadence-aloop-daemon \
- data/cadence-jacksettings \
- data/cadence-logs \
- data/cadence-render \
- data/cadence-session-start \
- data/catarina \
- data/catia \
- data/claudia \
- data/claudia-launcher || die "sed failed"
-
- default
-}
-
-src_compile() {
- myemakeargs=(PREFIX="${EPREFIX}/usr"
- SKIP_STRIPPING=true
- )
-
- emake "${myemakeargs[@]}"
-}
-
-src_install() {
- emake PREFIX="${EPREFIX}/usr" DESTDIR="${ED}" install
-
- python_fix_shebang "${ED}"
-
- # Clean up stuff that shouldn't be installed
- rm -rf "${ED}"/etc/X11/xinit/xinitrc.d/61cadence-session-inject
- rm -rf "${ED}"/etc/xdg/autostart/cadence-session-start.desktop
- rm -rf "${ED}"/usr/share/applications/*.desktop
-
- if use !pulseaudio; then
- rm -rf "${ED}"/usr/bin/cadence-pulse2{jack,loopback}
- rm -rf "${ED}"/usr/share/cadence/pulse2{jack, loopback}
- fi
- # Depend on ladish which is not in the tree
- rm -rf "${ED}"/usr/bin/claudia{,-launcher}
- rm -rf "${ED}"/usr/share/cadence/icons/claudia-hicolor/
-
- # Replace desktop entries with QA issues with these
- make_desktop_entry cadence Cadence cadence "AudioVideo;AudioVideoEditing;Qt"
- make_desktop_entry catia Catia catia "AudioVideo;AudioVideoEditing;Qt"
- make_desktop_entry catarina Catarina catarina "AudioVideo;AudioVideoEditing;Qt"
-}
next reply other threads:[~2022-06-25 9:31 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-25 9:31 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-08 7:01 [gentoo-commits] repo/gentoo:master commit in: media-sound/cadence/ Miroslav Šulc
2023-06-19 6:47 Miroslav Šulc
2023-06-19 6:47 Miroslav Šulc
2023-05-29 13:11 Andreas Sturmlechner
2022-07-27 4:57 Miroslav Šulc
2022-07-27 4:48 Miroslav Šulc
2022-06-25 8:54 Agostino Sarubbo
2022-06-18 17:58 Miroslav Šulc
2022-03-08 13:31 Sam James
2021-06-03 19:15 Sam James
2021-03-21 14:27 Miroslav Šulc
2020-10-03 14:55 Miroslav Šulc
2020-08-10 13:52 Agostino Sarubbo
2020-07-08 6:58 Miroslav Šulc
2020-07-08 6:58 Miroslav Šulc
2020-02-09 16:31 Michał Górny
2019-12-16 7:46 Agostino Sarubbo
2019-12-13 10:48 Miroslav Šulc
2019-11-18 9:20 Miroslav Šulc
2019-11-13 11:01 Miroslav Šulc
2019-11-13 9:52 Miroslav Šulc
2019-11-08 12:09 Miroslav Šulc
2019-11-07 16:27 Miroslav Šulc
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=1656149482.98385427e12b119bc7c900bd84b4d7249c701eba.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--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