public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2021-07-27 16:45 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2021-07-27 16:45 UTC (permalink / raw
  To: gentoo-commits

commit:     ea5cc5099553a7d684aeec41d3d6020af87f0ecd
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Tue Jul 27 16:43:11 2021 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Tue Jul 27 16:43:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea5cc509

dev-python/pydub: new package (0.25.1)

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/Manifest            |  1 +
 dev-python/pydub/metadata.xml        |  8 ++++++++
 dev-python/pydub/pydub-0.25.1.ebuild | 22 ++++++++++++++++++++++
 3 files changed, 31 insertions(+)

diff --git a/dev-python/pydub/Manifest b/dev-python/pydub/Manifest
new file mode 100644
index 000000000..debead705
--- /dev/null
+++ b/dev-python/pydub/Manifest
@@ -0,0 +1 @@
+DIST pydub-0.25.1.tar.gz 27555582 BLAKE2B 5a7aa4af4f2bb75306c3eef7052e403a09f6dc638e2805f7dd9269cb12149fec3962ab9b84b6c6744de75c34bde0cbe6daab711a8df050eb9861c21e70e98ef6 SHA512 8c3fb3714c4b0aed37ba7ab6727776bf4cd7568c1f5060cf43c30ede8da2ce4b498fb83326daa19ef44635250d552295407289c3945681e028eedde1b2b418e0

diff --git a/dev-python/pydub/metadata.xml b/dev-python/pydub/metadata.xml
new file mode 100644
index 000000000..cbe3c6a53
--- /dev/null
+++ b/dev-python/pydub/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person">
+		<email>smaniotto.nicola@gmail.com</email>
+		<name>Nicola Smaniotto</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
new file mode 100644
index 000000000..613b9b83c
--- /dev/null
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Manipulate audio with an simple and easy high level interface"
+HOMEPAGE="http://pydub.com/"
+SRC_URI="https://github.com/jiaaro/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests unittest
+
+python_test() {
+	eunittest test/
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2021-07-28  8:47 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2021-07-28  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     62f75ba4b54d232156ae5850e6555c26d4f6f16c
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Wed Jul 28 08:46:47 2021 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Wed Jul 28 08:47:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=62f75ba4

dev-python/pydub: add 0.25.1 test dep and optfeature

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/pydub-0.25.1.ebuild | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
index 613b9b83c..cf4e8d002 100644
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -1,11 +1,11 @@
 # Copyright 2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=8
+EAPI=7
 
 PYTHON_COMPAT=( python3_{8..9} )
 
-inherit distutils-r1
+inherit distutils-r1 optfeature
 
 DESCRIPTION="Manipulate audio with an simple and easy high level interface"
 HOMEPAGE="http://pydub.com/"
@@ -17,6 +17,18 @@ KEYWORDS="~amd64"
 
 distutils_enable_tests unittest
 
+BDEPEND="
+	test? (
+		media-video/ffmpeg
+	)
+	"
+
 python_test() {
 	eunittest test/
 }
+
+pkg_postinst() {
+	optfeature "opening and saving non-wav files - like mp3" media-video/ffmpeg
+	#optfeature "playing audio" dev-python/simpleaudio # upstream suggests this, not available in gentoo or guru
+	optfeature "playing audio" dev-python/pyaudio
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2021-07-31  8:16 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2021-07-31  8:16 UTC (permalink / raw
  To: gentoo-commits

commit:     21337ef4d3003b02e2e4ff045a99797b46783703
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Sat Jul 31 08:15:50 2021 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Sat Jul 31 08:16:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=21337ef4

dev-python/pydub: fix 0.25.1 distutils_enable_tests

Closes: https://bugs.gentoo.org/805239
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/pydub-0.25.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
index cf4e8d002..5fcb65306 100644
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -15,14 +15,14 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 
-distutils_enable_tests unittest
-
 BDEPEND="
 	test? (
 		media-video/ffmpeg
 	)
 	"
 
+distutils_enable_tests unittest
+
 python_test() {
 	eunittest test/
 }


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2021-08-03 10:40 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2021-08-03 10:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5dbd72618d54edda232005e00662851393194945
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Tue Aug  3 10:40:09 2021 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Tue Aug  3 10:40:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5dbd7261

dev-python/pydub: add 0.25.1 ffmpeg USE

Closes: https://bugs.gentoo.org/806264
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/pydub-0.25.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
index 5fcb65306..84210e78f 100644
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~amd64"
 
 BDEPEND="
 	test? (
-		media-video/ffmpeg
+		media-video/ffmpeg[mp3,vorbis]
 	)
 	"
 


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2022-05-29 20:17 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2022-05-29 20:17 UTC (permalink / raw
  To: gentoo-commits

commit:     d31f4fe9d9d2b9a0bc33e6d957596b20c7a2a54d
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Sun May 29 20:13:58 2022 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Sun May 29 20:17:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d31f4fe9

dev-python/pydub: update EAPI 7 -> 8, enable py3.10

Closes: https://bugs.gentoo.org/848261
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/pydub-0.25.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
index 84210e78f..179ea5542 100644
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1 optfeature
 


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2023-01-11 18:21 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2023-01-11 18:21 UTC (permalink / raw
  To: gentoo-commits

commit:     d80883cb0990bce58a86961cfe855cb0b4db83c4
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Wed Jan 11 14:45:58 2023 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Wed Jan 11 18:21:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d80883cb

dev-python/pydub: enable py3.11

Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/pydub-0.25.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
index 179ea5542..a24613a2d 100644
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1 optfeature
 


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/
@ 2024-02-07 10:26 Nicola Smaniotto
  0 siblings, 0 replies; 7+ messages in thread
From: Nicola Smaniotto @ 2024-02-07 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     70ca63e294cb548c27419d11d9b080d369c452e8
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Wed Feb  7 10:19:44 2024 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Wed Feb  7 10:19:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=70ca63e2

dev-python/pydub: enable py3.12

Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/pydub/pydub-0.25.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
index 32e4a3527d..2b619ab7c3 100644
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ b/dev-python/pydub/pydub-0.25.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1 optfeature


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-02-07 10:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-27 16:45 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pydub/ Nicola Smaniotto
  -- strict thread matches above, loose matches on Subject: below --
2021-07-28  8:47 Nicola Smaniotto
2021-07-31  8:16 Nicola Smaniotto
2021-08-03 10:40 Nicola Smaniotto
2022-05-29 20:17 Nicola Smaniotto
2023-01-11 18:21 Nicola Smaniotto
2024-02-07 10:26 Nicola Smaniotto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox