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/qjackctl/, media-sound/qjackctl/files/
Date: Tue, 27 Feb 2024 10:47:41 +0000 (UTC)	[thread overview]
Message-ID: <1709030852.2ebacf9a0de2e2e760ab8f1e8bfaff9d11c2f61e.fordfrog@gentoo> (raw)

commit:     2ebacf9a0de2e2e760ab8f1e8bfaff9d11c2f61e
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 27 10:47:32 2024 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Feb 27 10:47:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ebacf9a

media-sound/qjackctl: dropped obsolete 0.9.12

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

 media-sound/qjackctl/Manifest                      |  1 -
 .../files/qjackctl-0.9.1-disable-git.patch         | 19 ---------
 media-sound/qjackctl/qjackctl-0.9.12.ebuild        | 47 ----------------------
 3 files changed, 67 deletions(-)

diff --git a/media-sound/qjackctl/Manifest b/media-sound/qjackctl/Manifest
index 1485206c04dc..240975309275 100644
--- a/media-sound/qjackctl/Manifest
+++ b/media-sound/qjackctl/Manifest
@@ -1,2 +1 @@
-DIST qjackctl-0.9.12.tar.gz 1277827 BLAKE2B 1fcfba82762c473f0012a137f6ddd13ae6e857d16fe8e0cad449afe6de1f1feb8a147b3441a00d20d887f1ed868e4fdddc598104f829ab2213ca8e9863c16951 SHA512 e5655b4f4a965761b81d2d08c1ad297bda6d2437aff97127dc22015f59fe916f1b10f4f492fe41b0d0678ed9de2a94de16c195ac608fb01e815e3ecb116bf958
 DIST qjackctl-0.9.13.tar.gz 1305333 BLAKE2B 940241df829a573ab33a950319debf5123538151853723141369b9ac47048bae84c58f3a70fe53ec7f98109914e78c49203410e241db22842c4f41f79ab6aba9 SHA512 89b9d5212654267030f30020085ad3dfe674a041e200796144d1441ba12630e963a06e405de5ab7c27d9ebc42fd8fa0a970bf59b91837dbc7580147db6adc9bc

diff --git a/media-sound/qjackctl/files/qjackctl-0.9.1-disable-git.patch b/media-sound/qjackctl/files/qjackctl-0.9.1-disable-git.patch
deleted file mode 100644
index 054715405952..000000000000
--- a/media-sound/qjackctl/files/qjackctl-0.9.1-disable-git.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -6,6 +6,7 @@ project(qjackctl
-   LANGUAGES C CXX)
- 
- set (CONFIG_VERSION ${PROJECT_VERSION})
-+#[[
- execute_process (
-   COMMAND git describe --tags --dirty --abbrev=6
-   OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT
-@@ -27,6 +28,8 @@ if (GIT_DESCRIBE_RESULT EQUAL 0)
- else ()
-   set (VERSION "${PROJECT_VERSION}")
- endif ()
-+]]
-+set (VERSION "${PROJECT_VERSION}")
- 
- set (PACKAGE_NAME "QjackCtl")
- set (PACKAGE_VERSION "${VERSION}")

diff --git a/media-sound/qjackctl/qjackctl-0.9.12.ebuild b/media-sound/qjackctl/qjackctl-0.9.12.ebuild
deleted file mode 100644
index e502a0385dfa..000000000000
--- a/media-sound/qjackctl/qjackctl-0.9.12.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg cmake
-
-DESCRIPTION="Qt GUI to control the JACK Audio Connection Kit and ALSA sequencer connections"
-HOMEPAGE="https://qjackctl.sourceforge.io/"
-SRC_URI="mirror://sourceforge/qjackctl/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="alsa dbus debug portaudio"
-
-BDEPEND="dev-qt/linguist-tools:5"
-DEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtwidgets:5
-	dev-qt/qtx11extras:5
-	dev-qt/qtxml:5
-	virtual/jack
-	alsa? ( media-libs/alsa-lib )
-	dbus? ( dev-qt/qtdbus:5 )
-	portaudio? ( media-libs/portaudio )
-"
-RDEPEND="${DEPEND}
-	dev-qt/qtsvg:5
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-0.9.1-disable-git.patch"
-)
-
-src_configure() {
-	local mycmakeargs=(
-		-DCONFIG_ALSA_SEQ=$(usex alsa 1 0)
-		-DCONFIG_DBUS=$(usex dbus 1 0)
-		-DCONFIG_DEBUG=$(usex debug 1 0)
-		-DCONFIG_PORTAUDIO=$(usex portaudio 1 0)
-		-DCONFIG_QT6=no
-	)
-	cmake_src_configure
-}


             reply	other threads:[~2024-02-27 10:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-27 10:47 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-24  9:26 [gentoo-commits] repo/gentoo:master commit in: media-sound/qjackctl/, media-sound/qjackctl/files/ Miroslav Šulc
2021-02-07  8:08 Miroslav Šulc
2017-09-21 14:33 Michael Palimaka
2017-05-09  7:14 Alexis Ballier

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=1709030852.2ebacf9a0de2e2e760ab8f1e8bfaff9d11c2f61e.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