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/guitarix/
Date: Mon, 01 Feb 2021 09:02:36
Message-Id: 1612170136.b353fb388a3138be6b860cb9afc90964e6c37185.fordfrog@gentoo
1 commit: b353fb388a3138be6b860cb9afc90964e6c37185
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 09:02:16 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 09:02:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b353fb38
7
8 media-sound/guitarix: removed obsolete 0.41.0
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/guitarix/Manifest | 1 -
14 media-sound/guitarix/guitarix-0.41.0.ebuild | 86 -----------------------------
15 2 files changed, 87 deletions(-)
16
17 diff --git a/media-sound/guitarix/Manifest b/media-sound/guitarix/Manifest
18 index 734320f450c..382ae905b96 100644
19 --- a/media-sound/guitarix/Manifest
20 +++ b/media-sound/guitarix/Manifest
21 @@ -1,2 +1 @@
22 -DIST guitarix2-0.41.0.tar.xz 70865716 BLAKE2B d3caa51f297153c16df624ababaffc1405ddb10f04ae01672720bb2229d4be3426b33f75021b1862f996fb09466eaad008f748b42cb8382f08d14e23758cfc9b SHA512 27fe6f2b87c8913feafae1c17472150d37df46ed3437b033cd22f509edf67420fb8f4024e404d5bec901a687dbe948acda702bf37cb0c738feb5b3b8e5ebb8aa
23 DIST guitarix2-0.42.1.tar.xz 71825372 BLAKE2B 06b2a19d68e77c622eea222e3f0658d9f89c6c8377e9b0442d581e14342f82f97948ca0ebb7ff40f4abd6cab0c9ba582fa6f43f74cad5e112d2e762445f2ab43 SHA512 66a71b4d66e0cbcff7feeceae6317c016e497626c9fde3ca44e1f06e42d9021b2857151660c1c49832cc8e6f2aa27de68dfea67d4e896c7e89f84865f8ba1eb0
24
25 diff --git a/media-sound/guitarix/guitarix-0.41.0.ebuild b/media-sound/guitarix/guitarix-0.41.0.ebuild
26 deleted file mode 100644
27 index aad4f7690df..00000000000
28 --- a/media-sound/guitarix/guitarix-0.41.0.ebuild
29 +++ /dev/null
30 @@ -1,86 +0,0 @@
31 -# Copyright 2019-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_{7,8} )
37 -PYTHON_REQ_USE='threads(+)'
38 -
39 -inherit python-any-r1 waf-utils xdg
40 -
41 -MY_P="${PN}2-${PV}"
42 -
43 -DESCRIPTION="Virtual guitar amplifier for Linux"
44 -HOMEPAGE="https://guitarix.org/"
45 -SRC_URI="mirror://sourceforge/guitarix/guitarix/${MY_P}.tar.xz"
46 -
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="amd64"
50 -IUSE="bluetooth debug lv2 nls nsm +standalone zeroconf"
51 -REQUIRED_USE="|| ( lv2 standalone )"
52 -
53 -COMMON_DEPEND="dev-cpp/eigen:3
54 - dev-cpp/glibmm:2
55 - dev-cpp/gtkmm:3.0
56 - dev-libs/glib:2
57 - >=media-libs/libsndfile-1.0.17
58 - >=media-libs/zita-convolver-3:=
59 - media-libs/zita-resampler
60 - >=net-misc/curl-7.26.0
61 - >=sci-libs/fftw-3.1.2:3.0=
62 - x11-libs/gtk+:3
63 - lv2? ( media-libs/lv2 )
64 - standalone? (
65 - dev-libs/boost:=
66 - media-libs/liblrdf
67 - media-libs/lilv
68 - virtual/jack
69 - bluetooth? ( net-wireless/bluez )
70 - nsm? ( media-libs/liblo )
71 - zeroconf? ( net-dns/avahi )
72 - )
73 -"
74 -# roboto fonts are required for correct ui rendering
75 -RDEPEND="${COMMON_DEPEND}
76 - standalone? (
77 - media-fonts/roboto
78 - )
79 -"
80 -DEPEND="${COMMON_DEPEND}
81 - ${PYTHON_DEPS}
82 - dev-lang/sassc
83 - virtual/pkgconfig
84 - nls? (
85 - dev-util/intltool
86 - sys-devel/gettext
87 - )
88 -"
89 -
90 -DOCS=( changelog README )
91 -
92 -PATCHES=(
93 - "${FILESDIR}"/${P}-nostrip.patch
94 -)
95 -
96 -src_configure() {
97 - local myconf=(
98 - --cxxflags-debug=""
99 - --cxxflags-release="-DNDEBUG"
100 - --ldflags="${LDFLAGS}"
101 - --enable-lfs
102 - --lib-dev
103 - --no-desktop-update
104 - --no-faust
105 - --no-ldconfig
106 - --shared-lib
107 - $(use_enable nls)
108 - $(usex bluetooth "" "--no-bluez")
109 - $(usex debug "--debug" "")
110 - $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" "--no-lv2 --no-lv2-gui")
111 - $(usex nsm "" "--no-nsm")
112 - $(usex standalone "" "--no-standalone")
113 - $(usex zeroconf "" "--no-avahi")
114 - )
115 - waf-utils_src_configure "${myconf[@]}"
116 -}