public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2020-03-29 13:21 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-03-29 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     6c6ff2e8415071b9f2ce776a5619e271f84e75a4
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 29 09:27:19 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 29 09:29:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c6ff2e8

dev-python/autoflake: new package

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/autoflake/Manifest               |  1 +
 dev-python/autoflake/autoflake-1.3.1.ebuild | 31 +++++++++++++++++++++++++++++
 dev-python/autoflake/metadata.xml           | 20 +++++++++++++++++++
 3 files changed, 52 insertions(+)

diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
new file mode 100644
index 0000000..a55e724
--- /dev/null
+++ b/dev-python/autoflake/Manifest
@@ -0,0 +1 @@
+DIST autoflake-1.3.1.tar.gz 19756 BLAKE2B 8a172888a8c44483b8771b59bebda841e55455f544197e2f1bce08dfb7cb3dd54e8a616a15a3712609480bc484561ffa27aaa93d9b5e1a573bb1960df96ea9cf SHA512 763bcfc824412129901106ddcaf7104a2bfa5ee86b43d2822b51af5532ea0ac46466b64a004c099dc6fa2a96b23ae959e1ef1eb68c6be0c1e4c08ab9bf174e08

diff --git a/dev-python/autoflake/autoflake-1.3.1.ebuild b/dev-python/autoflake/autoflake-1.3.1.ebuild
new file mode 100644
index 0000000..752b394
--- /dev/null
+++ b/dev-python/autoflake/autoflake-1.3.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes"
+HOMEPAGE="
+	https://github.com/myint/autoflake
+	https://pypi.org/project/autoflake
+"
+SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	>=dev-python/pyflakes-1.1.0[${PYTHON_USEDEP}]
+"
+RDEPEND="${DEPEND}"
+
+python_test() {
+	"${EPYTHON}" test_autoflake.py || die
+}

diff --git a/dev-python/autoflake/metadata.xml b/dev-python/autoflake/metadata.xml
new file mode 100644
index 0000000..3fe5b4f
--- /dev/null
+++ b/dev-python/autoflake/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <longdescription>
+autoflake removes unused imports and unused variables from Python code. It makes use of pyflakes to do this.
+
+By default, autoflake only removes unused imports for modules that are part of the standard library. (Other modules may have side effects that make them unsafe to remove automatically.) Removal of unused variables is also disabled by default.
+
+autoflake also removes useless pass statements.
+  </longdescription>
+  <upstream>
+    <remote-id type="github">myint/autoflake</remote-id>
+    <remote-id type="pypi">autoflake</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
  2020-06-09 16:21 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-06-09 16:37 ` Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-06-09 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     54e61fccd6a034cdaad6d880ba7723098de7af19
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jun  9 16:19:20 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jun  9 16:19:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=54e61fcc

dev-python/autoflake: add py3_8

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

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

diff --git a/dev-python/autoflake/autoflake-1.3.1.ebuild b/dev-python/autoflake/autoflake-1.3.1.ebuild
index 752b394..e2c1cb6 100644
--- a/dev-python/autoflake/autoflake-1.3.1.ebuild
+++ b/dev-python/autoflake/autoflake-1.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2020-12-04 15:00 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-12-04 15:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8d0f82c9c5e7a082194bcecadb93180adc588c4b
Author:     Theo Anderson <telans <AT> posteo <DOT> de>
AuthorDate: Fri Dec  4 05:05:38 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Dec  4 05:05:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d0f82c9

dev-python/autoflake: bump to 1.4

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Theo Anderson <telans <AT> posteo.de>

 dev-python/autoflake/Manifest             |  1 +
 dev-python/autoflake/autoflake-1.4.ebuild | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
index a55e724e..871629d8 100644
--- a/dev-python/autoflake/Manifest
+++ b/dev-python/autoflake/Manifest
@@ -1 +1,2 @@
 DIST autoflake-1.3.1.tar.gz 19756 BLAKE2B 8a172888a8c44483b8771b59bebda841e55455f544197e2f1bce08dfb7cb3dd54e8a616a15a3712609480bc484561ffa27aaa93d9b5e1a573bb1960df96ea9cf SHA512 763bcfc824412129901106ddcaf7104a2bfa5ee86b43d2822b51af5532ea0ac46466b64a004c099dc6fa2a96b23ae959e1ef1eb68c6be0c1e4c08ab9bf174e08
+DIST autoflake-1.4.tar.gz 24219 BLAKE2B 622c82b9ab5e7fd68e8bc2678c5868282e605640e1c52d1a8f81fbaaba26dfb738ac1ceb9eb20195bb820256fbae27222953a5271130e74b8708988516e20e00 SHA512 53e542a765cbd18df7c35a90f16786e173bdc332b4410abfbc6d24f1009bf5d6f8a383e897e72558617bdf339573d8aa9b8de6901aac392caf48889aacf0c9a6

diff --git a/dev-python/autoflake/autoflake-1.4.ebuild b/dev-python/autoflake/autoflake-1.4.ebuild
new file mode 100644
index 00000000..d2b5ae13
--- /dev/null
+++ b/dev-python/autoflake/autoflake-1.4.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{7,8} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes"
+HOMEPAGE="
+	https://github.com/myint/autoflake
+	https://pypi.org/project/autoflake
+"
+SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=dev-python/pyflakes-1.1.0[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
+
+python_test() {
+	"${EPYTHON}" test_autoflake.py || die
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2021-06-15  7:11 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2021-06-15  7:11 UTC (permalink / raw
  To: gentoo-commits

commit:     f2240a2f2e417526271e826645a4688ee6698f58
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Jun 14 22:52:34 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 23:09:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2240a2f

dev-python/autoflake: drop 1.3.1

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/autoflake/Manifest               |  1 -
 dev-python/autoflake/autoflake-1.3.1.ebuild | 31 -----------------------------
 2 files changed, 32 deletions(-)

diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
index 871629d8a..1c009f0b6 100644
--- a/dev-python/autoflake/Manifest
+++ b/dev-python/autoflake/Manifest
@@ -1,2 +1 @@
-DIST autoflake-1.3.1.tar.gz 19756 BLAKE2B 8a172888a8c44483b8771b59bebda841e55455f544197e2f1bce08dfb7cb3dd54e8a616a15a3712609480bc484561ffa27aaa93d9b5e1a573bb1960df96ea9cf SHA512 763bcfc824412129901106ddcaf7104a2bfa5ee86b43d2822b51af5532ea0ac46466b64a004c099dc6fa2a96b23ae959e1ef1eb68c6be0c1e4c08ab9bf174e08
 DIST autoflake-1.4.tar.gz 24219 BLAKE2B 622c82b9ab5e7fd68e8bc2678c5868282e605640e1c52d1a8f81fbaaba26dfb738ac1ceb9eb20195bb820256fbae27222953a5271130e74b8708988516e20e00 SHA512 53e542a765cbd18df7c35a90f16786e173bdc332b4410abfbc6d24f1009bf5d6f8a383e897e72558617bdf339573d8aa9b8de6901aac392caf48889aacf0c9a6

diff --git a/dev-python/autoflake/autoflake-1.3.1.ebuild b/dev-python/autoflake/autoflake-1.3.1.ebuild
deleted file mode 100644
index fa87feaf1..000000000
--- a/dev-python/autoflake/autoflake-1.3.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{7,8} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes"
-HOMEPAGE="
-	https://github.com/myint/autoflake
-	https://pypi.org/project/autoflake
-"
-SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	>=dev-python/pyflakes-1.1.0[${PYTHON_USEDEP}]
-"
-RDEPEND="${DEPEND}"
-
-python_test() {
-	"${EPYTHON}" test_autoflake.py || die
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2023-12-31 15:28 David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2023-12-31 15:28 UTC (permalink / raw
  To: gentoo-commits

commit:     d0773205a742fb4851c23e8c144c5775ea690020
Author:     Tomás Carvalho <tomas <AT> thetimesweeper <DOT> com>
AuthorDate: Sat Dec 30 14:59:02 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 15:30:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d0773205

dev-python/autoflake: add 2.2.1, drop 1.4-r1

Signed-off-by: Tomás Carvalho <tomas <AT> thetimesweeper.com>

 dev-python/autoflake/Manifest                |  2 +-
 dev-python/autoflake/autoflake-1.4-r1.ebuild | 27 ---------------------------
 dev-python/autoflake/autoflake-2.2.1.ebuild  | 27 +++++++++++++++++++++++++++
 3 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
index 488179638d..2de21f6c25 100644
--- a/dev-python/autoflake/Manifest
+++ b/dev-python/autoflake/Manifest
@@ -1 +1 @@
-DIST autoflake-1.4.gh.tar.gz 24219 BLAKE2B 622c82b9ab5e7fd68e8bc2678c5868282e605640e1c52d1a8f81fbaaba26dfb738ac1ceb9eb20195bb820256fbae27222953a5271130e74b8708988516e20e00 SHA512 53e542a765cbd18df7c35a90f16786e173bdc332b4410abfbc6d24f1009bf5d6f8a383e897e72558617bdf339573d8aa9b8de6901aac392caf48889aacf0c9a6
+DIST autoflake-2.2.1.tar.gz 27377 BLAKE2B d669fd1954974f7237423d7dc67de044d737ba5a462b565f3307f1b6bdecefa6a6b2a6de437570e6a7772a692e894fb414e1ff05fc0aae7cbb3a0901ec9a0129 SHA512 02021b5f92edcdcb0b3c11132a46cf73dbc4b6e4efc4f5d5981b66bc5beafbef66a81229e65a727816ebda419c93399df14e9b6ba9f38a728f95a3455c1089f9

diff --git a/dev-python/autoflake/autoflake-1.4-r1.ebuild b/dev-python/autoflake/autoflake-1.4-r1.ebuild
deleted file mode 100644
index 901a3f1400..0000000000
--- a/dev-python/autoflake/autoflake-1.4-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes"
-HOMEPAGE="
-	https://github.com/myint/autoflake
-	https://pypi.org/project/autoflake/
-"
-SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-python/pyflakes-1.1.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests setup.py
-
-python_test() {
-	"${EPYTHON}" test_autoflake.py || die
-}

diff --git a/dev-python/autoflake/autoflake-2.2.1.ebuild b/dev-python/autoflake/autoflake-2.2.1.ebuild
new file mode 100644
index 0000000000..c3b7702a20
--- /dev/null
+++ b/dev-python/autoflake/autoflake-2.2.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..12} )
+DISTUTILS_USE_PEP517=hatchling
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Removes unused imports and unused variables from Python code"
+HOMEPAGE="https://github.com/PyCQA/autoflake/ https://pypi.org/project/autoflake/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/tomli-2.0.1
+		 >=dev-python/pyflakes-3.0.0"
+
+#pypi tarbal does not include tests
+RESTRICT="test"
+
+src_prepare() {
+		eapply_user
+		sed -Ei -e '/include/,/]/ { /(test_.*|LICENSE|README)/d }' pyproject.toml || die "Sed failed :-("
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2023-12-31 15:28 David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2023-12-31 15:28 UTC (permalink / raw
  To: gentoo-commits

commit:     9079af58bbde16d12e501efca9e1f008c1171bc1
Author:     Tomás Carvalho <tomas <AT> thetimesweeper <DOT> com>
AuthorDate: Sat Dec 30 17:28:37 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 17:29:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9079af58

dev-python/autoflake: disable py3.12

Signed-off-by: Tomás Carvalho <tomas <AT> thetimesweeper.com>

 dev-python/autoflake/autoflake-2.2.1.ebuild | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/dev-python/autoflake/autoflake-2.2.1.ebuild b/dev-python/autoflake/autoflake-2.2.1.ebuild
index c3b7702a20..9277cdd5b4 100644
--- a/dev-python/autoflake/autoflake-2.2.1.ebuild
+++ b/dev-python/autoflake/autoflake-2.2.1.ebuild
@@ -1,9 +1,8 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
-
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..12} )
+PYTHON_COMPAT=( python3_{8..11} )
 DISTUTILS_USE_PEP517=hatchling
 
 inherit distutils-r1 pypi
@@ -18,10 +17,14 @@ KEYWORDS="~amd64"
 RDEPEND=">=dev-python/tomli-2.0.1
 		 >=dev-python/pyflakes-3.0.0"
 
-#pypi tarbal does not include tests
-RESTRICT="test"
+distutils_enable_tests unittest
 
 src_prepare() {
-		eapply_user
-		sed -Ei -e '/include/,/]/ { /(test_.*|LICENSE|README)/d }' pyproject.toml || die "Sed failed :-("
+	sed -Ei -e '/include/,/]/ { /(test_.*|LICENSE|README)/d }' pyproject.toml || die "Sed failed :-("
+	default
+}
+
+python_test() {
+	# unit test
+	eunittest -p "test_autoflake.py"
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2023-12-31 15:28 David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2023-12-31 15:28 UTC (permalink / raw
  To: gentoo-commits

commit:     95cf7f3e66add02449da14669cca4789879ea4b7
Author:     Tomás Carvalho <tomas <AT> thetimesweeper <DOT> com>
AuthorDate: Sat Dec 30 15:00:05 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 15:30:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=95cf7f3e

dev-python/autoflake: update upstream metadata

Signed-off-by: Tomás Carvalho <tomas <AT> thetimesweeper.com>

 dev-python/autoflake/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/autoflake/metadata.xml b/dev-python/autoflake/metadata.xml
index b7eb2cd120..e010fd6ab8 100644
--- a/dev-python/autoflake/metadata.xml
+++ b/dev-python/autoflake/metadata.xml
@@ -14,7 +14,7 @@ By default, autoflake only removes unused imports for modules that are part of t
 autoflake also removes useless pass statements.
   </longdescription>
   <upstream>
-    <remote-id type="github">myint/autoflake</remote-id>
+    <remote-id type="github">PyCQA/autoflake</remote-id>
     <remote-id type="pypi">autoflake</remote-id>
   </upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2024-05-14 22:50 Julien Roy
  0 siblings, 0 replies; 9+ messages in thread
From: Julien Roy @ 2024-05-14 22:50 UTC (permalink / raw
  To: gentoo-commits

commit:     d6f527306f5ff780ba438344ffd0d64987925650
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 14 22:14:30 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 14 22:14:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6f52730

dev-python/autoflake: drop 2.2.1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/autoflake/Manifest               |  1 -
 dev-python/autoflake/autoflake-2.2.1.ebuild | 30 -----------------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
index 291c102604..6fd5785009 100644
--- a/dev-python/autoflake/Manifest
+++ b/dev-python/autoflake/Manifest
@@ -1,2 +1 @@
-DIST autoflake-2.2.1.tar.gz 27377 BLAKE2B d669fd1954974f7237423d7dc67de044d737ba5a462b565f3307f1b6bdecefa6a6b2a6de437570e6a7772a692e894fb414e1ff05fc0aae7cbb3a0901ec9a0129 SHA512 02021b5f92edcdcb0b3c11132a46cf73dbc4b6e4efc4f5d5981b66bc5beafbef66a81229e65a727816ebda419c93399df14e9b6ba9f38a728f95a3455c1089f9
 DIST autoflake-2.3.1.tar.gz 27642 BLAKE2B 5002b404c39a5a1e18c5dc6e8a70f958b9d02e412b9320ba4b801b1a20427110cd15363bb3e4acb25de4ceca77ce86d49c1c36cef5ba3e886fecffb996ef7b81 SHA512 bad9a34f253e1182f3128867eb8699c8c02b99f35479c1b65669f0411d7dff29fe477a267d0398e60a5e833530ace3cf28443a4b2a8924bd019447cc7ee8ab08

diff --git a/dev-python/autoflake/autoflake-2.2.1.ebuild b/dev-python/autoflake/autoflake-2.2.1.ebuild
deleted file mode 100644
index 9277cdd5b4..0000000000
--- a/dev-python/autoflake/autoflake-2.2.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=hatchling
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Removes unused imports and unused variables from Python code"
-HOMEPAGE="https://github.com/PyCQA/autoflake/ https://pypi.org/project/autoflake/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=dev-python/tomli-2.0.1
-		 >=dev-python/pyflakes-3.0.0"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-	sed -Ei -e '/include/,/]/ { /(test_.*|LICENSE|README)/d }' pyproject.toml || die "Sed failed :-("
-	default
-}
-
-python_test() {
-	# unit test
-	eunittest -p "test_autoflake.py"
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/
@ 2024-05-14 22:50 Julien Roy
  0 siblings, 0 replies; 9+ messages in thread
From: Julien Roy @ 2024-05-14 22:50 UTC (permalink / raw
  To: gentoo-commits

commit:     0e0445e817d79552041c60cdd8d35eca2cb36858
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 14 22:13:51 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 14 22:13:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e0445e8

dev-python/autoflake: add 2.3.1

Closes: https://bugs.gentoo.org/931370
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/autoflake/Manifest               |  1 +
 dev-python/autoflake/autoflake-2.3.1.ebuild | 30 +++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
index 2de21f6c25..291c102604 100644
--- a/dev-python/autoflake/Manifest
+++ b/dev-python/autoflake/Manifest
@@ -1 +1,2 @@
 DIST autoflake-2.2.1.tar.gz 27377 BLAKE2B d669fd1954974f7237423d7dc67de044d737ba5a462b565f3307f1b6bdecefa6a6b2a6de437570e6a7772a692e894fb414e1ff05fc0aae7cbb3a0901ec9a0129 SHA512 02021b5f92edcdcb0b3c11132a46cf73dbc4b6e4efc4f5d5981b66bc5beafbef66a81229e65a727816ebda419c93399df14e9b6ba9f38a728f95a3455c1089f9
+DIST autoflake-2.3.1.tar.gz 27642 BLAKE2B 5002b404c39a5a1e18c5dc6e8a70f958b9d02e412b9320ba4b801b1a20427110cd15363bb3e4acb25de4ceca77ce86d49c1c36cef5ba3e886fecffb996ef7b81 SHA512 bad9a34f253e1182f3128867eb8699c8c02b99f35479c1b65669f0411d7dff29fe477a267d0398e60a5e833530ace3cf28443a4b2a8924bd019447cc7ee8ab08

diff --git a/dev-python/autoflake/autoflake-2.3.1.ebuild b/dev-python/autoflake/autoflake-2.3.1.ebuild
new file mode 100644
index 0000000000..8612868bce
--- /dev/null
+++ b/dev-python/autoflake/autoflake-2.3.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=hatchling
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Removes unused imports and unused variables from Python code"
+HOMEPAGE="https://github.com/PyCQA/autoflake/ https://pypi.org/project/autoflake/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/tomli-2.0.1
+		 >=dev-python/pyflakes-3.0.0"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+	sed -Ei -e '/include/,/]/ { /(test_.*|LICENSE|README)/d }' pyproject.toml || die "Sed failed :-("
+	default
+}
+
+python_test() {
+	# unit test
+	eunittest -p "test_autoflake.py"
+}


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

end of thread, other threads:[~2024-05-14 22:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-15  7:11 [gentoo-commits] repo/proj/guru:master commit in: dev-python/autoflake/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2024-05-14 22:50 Julien Roy
2024-05-14 22:50 Julien Roy
2023-12-31 15:28 David Roman
2023-12-31 15:28 David Roman
2023-12-31 15:28 David Roman
2020-12-04 15:00 Andrew Ammerlaan
2020-06-09 16:21 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-09 16:37 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-03-29 13:21 Andrew Ammerlaan

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