public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/
Date: Wed, 30 Nov 2022 08:29:52 +0000 (UTC)	[thread overview]
Message-ID: <1669796970.44b3cce7344c3d1b1a40d0330a8d2757da9149a9.fordfrog@gentoo> (raw)

commit:     44b3cce7344c3d1b1a40d0330a8d2757da9149a9
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 08:27:49 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 08:29:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b3cce7

media-sound/terminatorx: removed obsolete 4.1.0

Bug: https://bugs.gentoo.org/880707
Closes: https://bugs.gentoo.org/740522
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-sound/terminatorx/Manifest                   |  1 -
 .../files/terminatorx-4.1.0-metadata-dir.patch     | 13 -----
 media-sound/terminatorx/terminatorx-4.1.0.ebuild   | 65 ----------------------
 3 files changed, 79 deletions(-)

diff --git a/media-sound/terminatorx/Manifest b/media-sound/terminatorx/Manifest
index 292976ca1edc..c09151992ce3 100644
--- a/media-sound/terminatorx/Manifest
+++ b/media-sound/terminatorx/Manifest
@@ -1,2 +1 @@
-DIST terminatorX-4.1.0.tar.bz2 1832295 BLAKE2B a328d05bb0c3c88719eb711dcf3f50eac08cd140e3225f42633744b39ce49f3e074263997ec21b2cc245740fa3f672a19b89d929fad1d0131981988fc80f37fc SHA512 2dc87bdbb4f4d24e10f0c8fac99b4ccecac6036c6dc950184cbdd1d05fe0a4c723ea1b04c49837fb0aa8f149ca9d2fb5d2c42f5109031184980a14fe549312fc
 DIST terminatorX-4.2.0.tar.bz2 1821474 BLAKE2B dc86555bdb0d837d12144b392cf6a1cdf707268a3634940bed66792432ef014d168dbee2fd540a253ad369ff4aeaf5d0b7dfb252f3c97550a2c4af5ad1a58945 SHA512 e10ac7acd91441dabad80ae7c144b56f39ebfb4c76f0e3bfab093937c69d2c6b0834a68a0a216994898ae05a7f9ae5ebac0b1fa52d65d627b7ed01785fc55941

diff --git a/media-sound/terminatorx/files/terminatorx-4.1.0-metadata-dir.patch b/media-sound/terminatorx/files/terminatorx-4.1.0-metadata-dir.patch
deleted file mode 100644
index 3f873271e00b..000000000000
--- a/media-sound/terminatorx/files/terminatorx-4.1.0-metadata-dir.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index cd70e20..5b9a142 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -362,7 +362,7 @@ EXTRA_DIST = COPYING-DOCS\
- # Destkop Entry
- desktopdir = $(datadir)/applications
- desktop_DATA = terminatorX.desktop
--appdatadir = $(datarootdir)/appdata
-+appdatadir = $(datarootdir)/metadata
- appdata_DATA = terminatorX.appdata.xml 
- mimedir = $(datadir)/mime-info
- mime_DATA = terminatorX.mime terminatorX.keys

diff --git a/media-sound/terminatorx/terminatorx-4.1.0.ebuild b/media-sound/terminatorx/terminatorx-4.1.0.ebuild
deleted file mode 100644
index a5e5fd161367..000000000000
--- a/media-sound/terminatorx/terminatorx-4.1.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit gnome2
-
-MY_P=${P/terminatorx/terminatorX}
-
-DESCRIPTION="Realtime audio synthesizer allowing you to 'scratch' on sampled audio data"
-HOMEPAGE="https://terminatorx.org/"
-# this is the original location but there is an issue with their certificate so mirroring the file
-#SRC_URI="https://terminatorx.org/dist/${MY_P}.tar.bz2"
-SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-# Making X optional fails when disabled: https://bugs.gentoo.org/636832
-IUSE="alsa debug jack mad pulseaudio vorbis sox"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-RDEPEND="
-	alsa? ( media-libs/alsa-lib )
-	jack? ( virtual/jack )
-	mad? ( media-sound/madplay )
-	pulseaudio? ( media-sound/pulseaudio )
-	vorbis? ( media-libs/libvorbis )
-	sox? ( media-sound/sox
-		media-sound/mpg123 )
-	x11-libs/gtk+:3
-	>=dev-libs/glib-2.2:2
-
-	x11-libs/libXi
-	x11-libs/libXxf86dga
-
-	dev-libs/libxml2:2
-	media-libs/audiofile:=
-	media-libs/ladspa-sdk
-	media-libs/liblrdf
-	media-plugins/cmt-plugins
-"
-DEPEND="${RDEPEND}
-	x11-base/xorg-proto
-	app-text/gnome-doc-utils
-	virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-	"${FILESDIR}/${P}-metadata-dir.patch"
-)
-
-src_configure() {
-	gnome2_src_configure \
-		--enable-x11 \
-		$(use_enable alsa) \
-		$(use_enable debug) \
-		$(use_enable jack) \
-		$(use_enable mad) \
-		$(use_enable pulseaudio pulse) \
-		$(use_enable vorbis) \
-		$(use_enable sox)
-}


             reply	other threads:[~2022-11-30  8:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-30  8:29 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-10-29 16:21 [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/ Miroslav Šulc
2018-03-11 15:17 Pacho Ramos
2017-07-16 10:17 Pacho Ramos
2016-08-27 15:36 Sergei Trofimovich

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=1669796970.44b3cce7344c3d1b1a40d0330a8d2757da9149a9.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