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-plugins/noise-repellent/
Date: Thu, 22 Apr 2021 20:52:12
Message-Id: 1619124711.3a1070ed81b5fa755f91035cf3b57629bf9b7b73.fordfrog@gentoo
1 commit: 3a1070ed81b5fa755f91035cf3b57629bf9b7b73
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 22 20:51:36 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 22 20:51:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a1070ed
7
8 media-plugins/noise-repellent: new ebuild
9
10 thanks to Winston (Winny) Weinert (https://github.com/winny-/winny-overlay)
11
12 Package-Manager: Portage-3.0.18, Repoman-3.0.3
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 media-plugins/noise-repellent/Manifest | 1 +
16 media-plugins/noise-repellent/metadata.xml | 12 +++++++++
17 .../noise-repellent/noise-repellent-0.1.5.ebuild | 29 ++++++++++++++++++++++
18 3 files changed, 42 insertions(+)
19
20 diff --git a/media-plugins/noise-repellent/Manifest b/media-plugins/noise-repellent/Manifest
21 new file mode 100644
22 index 00000000000..bccad515ddd
23 --- /dev/null
24 +++ b/media-plugins/noise-repellent/Manifest
25 @@ -0,0 +1 @@
26 +DIST noise-repellent-0.1.5.tar.gz 29973 BLAKE2B b840df30a5b374be7df2797f970e115083aa97e1ba4219466a659d29ff5791f34c8d7f7352cfb615ea8d109b92a27b47b29ca1dd6b77031a6f7fd3f15e2ddf5f SHA512 85fcafdaead400efa3ba9e87f2ecf96c02a41334f933902d456a2d5e714e72ef4124e68534f87b60421ef7139bea4e5e768a89d5ed13e6fcf95a9923cc89e383
27
28 diff --git a/media-plugins/noise-repellent/metadata.xml b/media-plugins/noise-repellent/metadata.xml
29 new file mode 100644
30 index 00000000000..10c7c11cfd8
31 --- /dev/null
32 +++ b/media-plugins/noise-repellent/metadata.xml
33 @@ -0,0 +1,12 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="project">
38 + <email>proaudio@g.o</email>
39 + <name>Gentoo ProAudio Project</name>
40 + </maintainer>
41 + <upstream>
42 + <remote-id type="github">lucianodato/noise-repellent</remote-id>
43 + <bugs-to>https://github.com/lucianodato/noise-repellent/issues</bugs-to>
44 + </upstream>
45 +</pkgmetadata>
46
47 diff --git a/media-plugins/noise-repellent/noise-repellent-0.1.5.ebuild b/media-plugins/noise-repellent/noise-repellent-0.1.5.ebuild
48 new file mode 100644
49 index 00000000000..7f2850c0a3b
50 --- /dev/null
51 +++ b/media-plugins/noise-repellent/noise-repellent-0.1.5.ebuild
52 @@ -0,0 +1,29 @@
53 +# Copyright 2020-2021 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +inherit meson multilib
59 +
60 +DESCRIPTION="An lv2 plug-in for broadband noise reduction"
61 +HOMEPAGE="https://github.com/lucianodato/noise-repellent"
62 +SRC_URI="https://github.com/lucianodato/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
63 +
64 +LICENSE="LGPL-3+"
65 +SLOT="0"
66 +KEYWORDS="~amd64"
67 +
68 +BEPEND="
69 + media-libs/lv2
70 +"
71 +RDEPEND="
72 + sci-libs/fftw:3.0
73 +"
74 +DEPEND="${RDEPEND}"
75 +
76 +src_configure() {
77 + local emesonargs=(
78 + --prefix="${EPREFIX}/usr/$(get_libdir)/lv2"
79 + )
80 + meson_src_configure
81 +}