* [gentoo-commits] repo/proj/guru:dev commit in: media-sound/r128gain/
@ 2020-04-10 14:46 YOSHIOKA Takuma
0 siblings, 0 replies; 3+ messages in thread
From: YOSHIOKA Takuma @ 2020-04-10 14:46 UTC (permalink / raw
To: gentoo-commits
commit: 55ae2b33cf0bcf6801eeb896a9a9789e5b2f937f
Author: YOSHIOKA Takuma <lo48576 <AT> hard-wi <DOT> red>
AuthorDate: Fri Apr 10 14:23:23 2020 +0000
Commit: YOSHIOKA Takuma <lo48576 <AT> hard-wi <DOT> red>
CommitDate: Fri Apr 10 14:38:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=55ae2b33
media-sound/r128gain: new package
Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: YOSHIOKA Takuma <lo48576 <AT> hard-wi.red>
media-sound/r128gain/Manifest | 1 +
media-sound/r128gain/metadata.xml | 14 ++++++++++++++
media-sound/r128gain/r128gain-1.0.1.ebuild | 22 ++++++++++++++++++++++
3 files changed, 37 insertions(+)
diff --git a/media-sound/r128gain/Manifest b/media-sound/r128gain/Manifest
new file mode 100644
index 0000000..d0835dc
--- /dev/null
+++ b/media-sound/r128gain/Manifest
@@ -0,0 +1 @@
+DIST r128gain-1.0.1.tar.gz 34015 BLAKE2B bed1fcc2a82d76e41c5e65e891a0c34680785e69b146da13ea2206b30bc0b8696beb8b24b536fe2ecbfab493d53aa238e87f588aa284e16f4ec0c9c08eda74f5 SHA512 feafb2529356f345fe86d033dbd49754b47c5835a4e7bc9e2a54e1e352af08d22091d3cf8684e55be3746a5711b9c47cb0e143feb30baaefc07c1bc8a3370328
diff --git a/media-sound/r128gain/metadata.xml b/media-sound/r128gain/metadata.xml
new file mode 100644
index 0000000..9b5e1f8
--- /dev/null
+++ b/media-sound/r128gain/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lo48576@hard-wi.red</email>
+ <name>YOSHIOKA Takuma</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">desbma/r128gain</remote-id>
+ </upstream>
+ <longdescription lang="en">
+ r128gain is a multi platform command line tool to scan your audio files and tag them with loudness metadata (ReplayGain v2 or Opus R128 gain format), to allow playback of several tracks or albums at a similar loudness level.
+ </longdescription>
+</pkgmetadata>
diff --git a/media-sound/r128gain/r128gain-1.0.1.ebuild b/media-sound/r128gain/r128gain-1.0.1.ebuild
new file mode 100644
index 0000000..8c0975e
--- /dev/null
+++ b/media-sound/r128gain/r128gain-1.0.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# dev-python/crcmod-1.7-r3::gentoo does not support python3_8 as of 2020-04-10.
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast audio loudness scanner & tagger (ReplayGain v2 / R128)"
+HOMEPAGE="https://github.com/desbma/r128gain"
+SRC_URI="https://github.com/desbma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RDEPEND="${PYTHON_DEPS}
+ >=dev-python/crcmod-1.7[${PYTHON_USEDEP}]
+ >=dev-python/tqdm-4.28.1[${PYTHON_USEDEP}]
+ >=media-libs/mutagen-1.43[${PYTHON_USEDEP}]
+ virtual/ffmpeg"
+DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-sound/r128gain/
@ 2020-04-11 7:50 Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2020-04-11 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 18b54e567064be3f616f8c9445b7a5a1ff9aad32
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Apr 11 07:49:54 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Apr 11 07:49:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=18b54e56
media-sound/r128gain: add DISTUTILS_USE_SETUPTOOLS=rdepend
otherwise prints a warning
Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-sound/r128gain/r128gain-1.0.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/media-sound/r128gain/r128gain-1.0.1.ebuild b/media-sound/r128gain/r128gain-1.0.1.ebuild
index 8c0975e..85d18f2 100644
--- a/media-sound/r128gain/r128gain-1.0.1.ebuild
+++ b/media-sound/r128gain/r128gain-1.0.1.ebuild
@@ -5,6 +5,7 @@ EAPI=7
# dev-python/crcmod-1.7-r3::gentoo does not support python3_8 as of 2020-04-10.
PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-sound/r128gain/
@ 2020-09-13 11:26 YOSHIOKA Takuma
0 siblings, 0 replies; 3+ messages in thread
From: YOSHIOKA Takuma @ 2020-09-13 11:26 UTC (permalink / raw
To: gentoo-commits
commit: cce6a32d3525f4aabbbcaf55cc7418fe61b5fc8e
Author: YOSHIOKA Takuma <lo48576 <AT> hard-wi <DOT> red>
AuthorDate: Sun Sep 13 09:51:40 2020 +0000
Commit: YOSHIOKA Takuma <lo48576 <AT> hard-wi <DOT> red>
CommitDate: Sun Sep 13 11:24:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cce6a32d
media-sound/r128gain: remove package
The package depends on ffmpeg-python but it doesn't exist in gentoo
repo. I don't know why it had worked in my environment, but I noticed
now it doesn't work as expected.
media-sound/loudgain is available as an alternative.
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: YOSHIOKA Takuma <lo48576 <AT> hard-wi.red>
media-sound/r128gain/Manifest | 1 -
media-sound/r128gain/metadata.xml | 14 --------------
media-sound/r128gain/r128gain-1.0.1.ebuild | 23 -----------------------
3 files changed, 38 deletions(-)
diff --git a/media-sound/r128gain/Manifest b/media-sound/r128gain/Manifest
deleted file mode 100644
index d0835dcd..00000000
--- a/media-sound/r128gain/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST r128gain-1.0.1.tar.gz 34015 BLAKE2B bed1fcc2a82d76e41c5e65e891a0c34680785e69b146da13ea2206b30bc0b8696beb8b24b536fe2ecbfab493d53aa238e87f588aa284e16f4ec0c9c08eda74f5 SHA512 feafb2529356f345fe86d033dbd49754b47c5835a4e7bc9e2a54e1e352af08d22091d3cf8684e55be3746a5711b9c47cb0e143feb30baaefc07c1bc8a3370328
diff --git a/media-sound/r128gain/metadata.xml b/media-sound/r128gain/metadata.xml
deleted file mode 100644
index 9b5e1f82..00000000
--- a/media-sound/r128gain/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>lo48576@hard-wi.red</email>
- <name>YOSHIOKA Takuma</name>
- </maintainer>
- <upstream>
- <remote-id type="github">desbma/r128gain</remote-id>
- </upstream>
- <longdescription lang="en">
- r128gain is a multi platform command line tool to scan your audio files and tag them with loudness metadata (ReplayGain v2 or Opus R128 gain format), to allow playback of several tracks or albums at a similar loudness level.
- </longdescription>
-</pkgmetadata>
diff --git a/media-sound/r128gain/r128gain-1.0.1.ebuild b/media-sound/r128gain/r128gain-1.0.1.ebuild
deleted file mode 100644
index 85d18f2b..00000000
--- a/media-sound/r128gain/r128gain-1.0.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# dev-python/crcmod-1.7-r3::gentoo does not support python3_8 as of 2020-04-10.
-PYTHON_COMPAT=( python3_{6,7} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Fast audio loudness scanner & tagger (ReplayGain v2 / R128)"
-HOMEPAGE="https://github.com/desbma/r128gain"
-SRC_URI="https://github.com/desbma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RDEPEND="${PYTHON_DEPS}
- >=dev-python/crcmod-1.7[${PYTHON_USEDEP}]
- >=dev-python/tqdm-4.28.1[${PYTHON_USEDEP}]
- >=media-libs/mutagen-1.43[${PYTHON_USEDEP}]
- virtual/ffmpeg"
-DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-09-13 11:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-13 11:26 [gentoo-commits] repo/proj/guru:dev commit in: media-sound/r128gain/ YOSHIOKA Takuma
-- strict thread matches above, loose matches on Subject: below --
2020-04-11 7:50 Andrew Ammerlaan
2020-04-10 14:46 YOSHIOKA Takuma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox