Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/, media-sound/patchage/files/
Date: Fri, 24 Jun 2022 17:08:54
Message-Id: 1656090514.41512d646a73e1b1f54e3d318992d87cfdeeaa99.fordfrog@gentoo
1 commit: 41512d646a73e1b1f54e3d318992d87cfdeeaa99
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 17:08:34 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 17:08:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41512d64
7
8 media-sound/patchage: removed obsolete 1.0.4
9
10 Bug: https://bugs.gentoo.org/850559
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/patchage/Manifest | 1 -
14 .../files/patchage-1.0.4-fix-compilation.patch | 48 ----------------------
15 media-sound/patchage/patchage-1.0.4.ebuild | 45 --------------------
16 3 files changed, 94 deletions(-)
17
18 diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
19 index 001fd616cfc9..8fca8a198910 100644
20 --- a/media-sound/patchage/Manifest
21 +++ b/media-sound/patchage/Manifest
22 @@ -1,2 +1 @@
23 -DIST patchage-1.0.4.tar.bz2 661824 BLAKE2B 3e56b7513e19e0acb1ef524ba7d7754699abdb6a968547f7a545c8651f23a33c209b9728dae01d839022ec380185a1673ff58733c1553007a6a3b7c889aa7f03 SHA512 665d81ca16c1052f71c3037d2ad8f9a6120b09a323999468484dda1b4c4b567c36728ebe38c54152406b63a4107f04764d0dede52302bc7a7b124e82132749fb
24 DIST patchage-1.0.6.tar.bz2 664841 BLAKE2B 72d0de6d12e07ec160f4c59c51f138e1220a1b8994bdab90f56dd715bf16b6f561836d184ec5d5077de3bc7bb5c6778ea2b7bcbf0b33230be662f2b729eac568 SHA512 b7aedcb07da0c81842929833ab93a0b20c08e465bf05ebb4e47670d295c0d4d0d50f0f74001d9264c2c23ef08d3881232e7622ecf101d1d53ffcae2f8c0f31d3
25
26 diff --git a/media-sound/patchage/files/patchage-1.0.4-fix-compilation.patch b/media-sound/patchage/files/patchage-1.0.4-fix-compilation.patch
27 deleted file mode 100644
28 index aace519e630d..000000000000
29 --- a/media-sound/patchage/files/patchage-1.0.4-fix-compilation.patch
30 +++ /dev/null
31 @@ -1,48 +0,0 @@
32 -diff --git a/src/JackDbusDriver.cpp b/src/JackDbusDriver.cpp
33 -index 23c12f2..f49a522 100644
34 ---- a/src/JackDbusDriver.cpp
35 -+++ b/src/JackDbusDriver.cpp
36 -@@ -24,6 +24,7 @@
37 - #include "SignalDirection.hpp"
38 - #include "make_jack_driver.hpp"
39 - #include "warnings.hpp"
40 -+#include "AudioDriver.hpp"
41 -
42 - PATCHAGE_DISABLE_FMT_WARNINGS
43 - #include <fmt/core.h>
44 -@@ -61,7 +62,7 @@ namespace {
45 - class JackDriver : public AudioDriver
46 - {
47 - public:
48 -- explicit JackDriver(ILog& log, EventSink emit_event);
49 -+ explicit JackDriver(ILog& log, Driver::EventSink emit_event);
50 -
51 - JackDriver(const JackDriver&) = delete;
52 - JackDriver& operator=(const JackDriver&) = delete;
53 -@@ -75,7 +76,7 @@ public:
54 - void attach(bool launch_daemon) override;
55 - void detach() override;
56 - bool is_attached() const override;
57 -- void refresh(const EventSink& sink) override;
58 -+ void refresh(const Driver::EventSink& sink) override;
59 - bool connect(const PortID& tail_id, const PortID& head_id) override;
60 - bool disconnect(const PortID& tail_id, const PortID& head_id) override;
61 -
62 -@@ -129,7 +130,7 @@ private:
63 - dbus_uint64_t _graph_version;
64 - };
65 -
66 --JackDriver::JackDriver(ILog& log, EventSink emit_event)
67 -+JackDriver::JackDriver(ILog& log, Driver::EventSink emit_event)
68 - : AudioDriver{std::move(emit_event)}
69 - , _log(log)
70 - , _dbus_error()
71 -@@ -584,7 +585,7 @@ JackDriver::is_attached() const
72 - }
73 -
74 - void
75 --JackDriver::refresh(const EventSink& sink)
76 -+JackDriver::refresh(const Driver::EventSink& sink)
77 - {
78 - DBusMessage* reply_ptr = nullptr;
79 - DBusMessageIter iter = {};
80
81 diff --git a/media-sound/patchage/patchage-1.0.4.ebuild b/media-sound/patchage/patchage-1.0.4.ebuild
82 deleted file mode 100644
83 index b9a415d93c20..000000000000
84 --- a/media-sound/patchage/patchage-1.0.4.ebuild
85 +++ /dev/null
86 @@ -1,45 +0,0 @@
87 -# Copyright 1999-2021 Gentoo Authors
88 -# Distributed under the terms of the GNU General Public License v2
89 -
90 -EAPI=7
91 -PYTHON_COMPAT=( python3_{7,8,9} )
92 -PYTHON_REQ_USE='threads(+)'
93 -inherit waf-utils python-any-r1 xdg
94 -
95 -DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
96 -HOMEPAGE="http://drobilla.net/software/patchage"
97 -SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
98 -
99 -LICENSE="GPL-2"
100 -SLOT="0"
101 -KEYWORDS="amd64 x86"
102 -IUSE="alsa debug jack-dbus"
103 -
104 -BDEPEND="
105 - ${PYTHON_DEPS}
106 - dev-libs/boost
107 - virtual/pkgconfig
108 -"
109 -RDEPEND="dev-cpp/glibmm:2
110 - dev-cpp/gtkmm:2.4
111 - media-libs/ganv
112 - virtual/jack
113 - alsa? ( media-libs/alsa-lib )
114 - jack-dbus? (
115 - dev-libs/dbus-glib
116 - sys-apps/dbus
117 - )"
118 -DEPEND="${RDEPEND}"
119 -
120 -DOCS=( AUTHORS NEWS README.md )
121 -
122 -PATCHES=(
123 - "${FILESDIR}/${P}-fix-compilation.patch"
124 -)
125 -
126 -src_configure() {
127 - waf-utils_src_configure \
128 - $(use debug && echo "--debug") \
129 - $(use alsa || echo "--no-alsa") \
130 - $(use jack-dbus && echo "--jack-dbus")
131 -}