public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-12 23:40 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-12 23:40 UTC (permalink / raw
  To: gentoo-commits

commit:     62fc27f2328fb506f4cdc8330864023bac1d581c
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 23:40:09 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 23:40:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62fc27f2

app-shells/thefuck: Initial version

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 +
 app-shells/thefuck/metadata.xml       | 11 +++++++++++
 app-shells/thefuck/thefuck-3.4.ebuild | 30 ++++++++++++++++++++++++++++++
 3 files changed, 42 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
new file mode 100644
index 0000000..36cee96
--- /dev/null
+++ b/app-shells/thefuck/Manifest
@@ -0,0 +1 @@
+DIST thefuck-3.4.tar.gz 781871 SHA256 ce98f6219e64b6e9e9f2cad22fa1bac121a5d79f3a530d9b2cb8bc61a629904f SHA512 8d78a91d3320230fbd47bdd79ad352bf7b5c9bc2f7d41bd8382177e650f9e01d1660c0620e443a3bb7e36c193c73ea3aaaab5f2e5bc1b469b8d919602b8c1d4f WHIRLPOOL 44408d18caae4c41e51360cdce720d2514f4288fbc2a70f7894718b2c14caa9c0baa7df3d28501e3421be2ff7e69a7293f2b4822003e1f7cacbaa55a1b1e8b78

diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
new file mode 100644
index 0000000..f7e2bc9
--- /dev/null
+++ b/app-shells/thefuck/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mrueg@gentoo.org</email>
+		<name>Manuel Rüger</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">nvbn/thefuck</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/app-shells/thefuck/thefuck-3.4.ebuild b/app-shells/thefuck/thefuck-3.4.ebuild
new file mode 100644
index 0000000..d75c92f
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-13 11:40 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-13 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     c33ed760788bda18e5f00396bf777f6eec69e45e
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 11:38:26 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 11:38:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c33ed760

app-shells/thefuck: Remove pip dependency in setup.py

Gentoo-Bug: 577274

Package-Manager: portage-2.2.28

 app-shells/thefuck/thefuck-3.4.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/app-shells/thefuck/thefuck-3.4.ebuild b/app-shells/thefuck/thefuck-3.4.ebuild
index d75c92f..15c70cf 100644
--- a/app-shells/thefuck/thefuck-3.4.ebuild
+++ b/app-shells/thefuck/thefuck-3.4.ebuild
@@ -25,6 +25,11 @@ DEPEND="test? ( ${RDEPEND}
 	dev-python/pytest[${PYTHON_USEDEP}] )
 	dev-python/setuptools[${PYTHON_USEDEP}]"
 
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
 python_test() {
 	py.test || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-13 11:40 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-13 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     11e600b401d7a9b4c1ba79e90f0cbd121d8786f3
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 11:39:54 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 11:39:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e600b4

app-shells/thefuck: Remove old

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 -
 app-shells/thefuck/thefuck-3.4.ebuild | 35 -----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index b7ac14b..d29f5bf 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.4.tar.gz 781871 SHA256 ce98f6219e64b6e9e9f2cad22fa1bac121a5d79f3a530d9b2cb8bc61a629904f SHA512 8d78a91d3320230fbd47bdd79ad352bf7b5c9bc2f7d41bd8382177e650f9e01d1660c0620e443a3bb7e36c193c73ea3aaaab5f2e5bc1b469b8d919602b8c1d4f WHIRLPOOL 44408d18caae4c41e51360cdce720d2514f4288fbc2a70f7894718b2c14caa9c0baa7df3d28501e3421be2ff7e69a7293f2b4822003e1f7cacbaa55a1b1e8b78
 DIST thefuck-3.5.tar.gz 782640 SHA256 eaa6b6466634ab4c87506a1404871af5bfd013043157b335165a63da3b14d90e SHA512 b1d5c542e25dc88ddceef98cd067f3bd48023c4ca5ee33ea61c76ad089ca85d0f440b212633ad99f9e7caa2ca56da8ba236c481cacfb50fd07dec44e896a0a71 WHIRLPOOL dd8e7bde96b45e61874f519db52550f82aa269a1e0df94271bb58bd6605e1165e1e6e8682c257ca8129ebff2955c0014b71a0191a360ad035d4de2e17fab4ba8

diff --git a/app-shells/thefuck/thefuck-3.4.ebuild b/app-shells/thefuck/thefuck-3.4.ebuild
deleted file mode 100644
index 15c70cf..0000000
--- a/app-shells/thefuck/thefuck-3.4.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-13 11:40 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-13 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     aa66ef2b132513d6afc9691191c56389ca5ae7e6
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 11:39:38 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 11:39:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa66ef2b

app-shells/thefuck: Version bump

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 +
 app-shells/thefuck/thefuck-3.5.ebuild | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 36cee96..b7ac14b 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.4.tar.gz 781871 SHA256 ce98f6219e64b6e9e9f2cad22fa1bac121a5d79f3a530d9b2cb8bc61a629904f SHA512 8d78a91d3320230fbd47bdd79ad352bf7b5c9bc2f7d41bd8382177e650f9e01d1660c0620e443a3bb7e36c193c73ea3aaaab5f2e5bc1b469b8d919602b8c1d4f WHIRLPOOL 44408d18caae4c41e51360cdce720d2514f4288fbc2a70f7894718b2c14caa9c0baa7df3d28501e3421be2ff7e69a7293f2b4822003e1f7cacbaa55a1b1e8b78
+DIST thefuck-3.5.tar.gz 782640 SHA256 eaa6b6466634ab4c87506a1404871af5bfd013043157b335165a63da3b14d90e SHA512 b1d5c542e25dc88ddceef98cd067f3bd48023c4ca5ee33ea61c76ad089ca85d0f440b212633ad99f9e7caa2ca56da8ba236c481cacfb50fd07dec44e896a0a71 WHIRLPOOL dd8e7bde96b45e61874f519db52550f82aa269a1e0df94271bb58bd6605e1165e1e6e8682c257ca8129ebff2955c0014b71a0191a360ad035d4de2e17fab4ba8

diff --git a/app-shells/thefuck/thefuck-3.5.ebuild b/app-shells/thefuck/thefuck-3.5.ebuild
new file mode 100644
index 0000000..15c70cf
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.5.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-14 21:03 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-14 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     51e7cb84151e9c3adcfc0e4536cfcb9f357d8874
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 21:03:23 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 21:03:23 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51e7cb84

app-shells/thefuck: Version bump

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 +
 app-shells/thefuck/thefuck-3.6.ebuild | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index d29f5bf..86bfa28 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.5.tar.gz 782640 SHA256 eaa6b6466634ab4c87506a1404871af5bfd013043157b335165a63da3b14d90e SHA512 b1d5c542e25dc88ddceef98cd067f3bd48023c4ca5ee33ea61c76ad089ca85d0f440b212633ad99f9e7caa2ca56da8ba236c481cacfb50fd07dec44e896a0a71 WHIRLPOOL dd8e7bde96b45e61874f519db52550f82aa269a1e0df94271bb58bd6605e1165e1e6e8682c257ca8129ebff2955c0014b71a0191a360ad035d4de2e17fab4ba8
+DIST thefuck-3.6.tar.gz 782923 SHA256 a83e2e3ff65b36a7e0d3330e853610c0da9cd2ffd5a001d9e51ad6146c558674 SHA512 630825f2a635fa8039df2b71e3a3d1c95280f48b1277f31f010a8c4adf1cd08ddbd6cff1ffae19856f27585f36c473d3c70eb30ca8e5e4cf8b159705398793bf WHIRLPOOL 17fc409d6114fb89527251888c40e05731932f192dedaefd33cd18e64c2b46980ad8a1c14a6f3bca02cfa223cde61216e2051afc458cca195919e3da94d08d91

diff --git a/app-shells/thefuck/thefuck-3.6.ebuild b/app-shells/thefuck/thefuck-3.6.ebuild
new file mode 100644
index 0000000..15c70cf
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.6.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-14 21:03 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-14 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     680ec044f30c98c6f304cbb554968727111383a6
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 21:03:40 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 21:03:40 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=680ec044

app-shells/thefuck: Remove old

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 -
 app-shells/thefuck/thefuck-3.5.ebuild | 35 -----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 86bfa28..1429396 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.5.tar.gz 782640 SHA256 eaa6b6466634ab4c87506a1404871af5bfd013043157b335165a63da3b14d90e SHA512 b1d5c542e25dc88ddceef98cd067f3bd48023c4ca5ee33ea61c76ad089ca85d0f440b212633ad99f9e7caa2ca56da8ba236c481cacfb50fd07dec44e896a0a71 WHIRLPOOL dd8e7bde96b45e61874f519db52550f82aa269a1e0df94271bb58bd6605e1165e1e6e8682c257ca8129ebff2955c0014b71a0191a360ad035d4de2e17fab4ba8
 DIST thefuck-3.6.tar.gz 782923 SHA256 a83e2e3ff65b36a7e0d3330e853610c0da9cd2ffd5a001d9e51ad6146c558674 SHA512 630825f2a635fa8039df2b71e3a3d1c95280f48b1277f31f010a8c4adf1cd08ddbd6cff1ffae19856f27585f36c473d3c70eb30ca8e5e4cf8b159705398793bf WHIRLPOOL 17fc409d6114fb89527251888c40e05731932f192dedaefd33cd18e64c2b46980ad8a1c14a6f3bca02cfa223cde61216e2051afc458cca195919e3da94d08d91

diff --git a/app-shells/thefuck/thefuck-3.5.ebuild b/app-shells/thefuck/thefuck-3.5.ebuild
deleted file mode 100644
index 15c70cf..0000000
--- a/app-shells/thefuck/thefuck-3.5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-25 15:00 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-25 15:00 UTC (permalink / raw
  To: gentoo-commits

commit:     510c6f3b652724b6fb86461c17e93001b979e5cf
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 25 14:49:12 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Mar 25 15:00:28 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=510c6f3b

app-shells/thefuck: Remove old

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 -
 app-shells/thefuck/thefuck-3.6.ebuild | 35 -----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index ac408f7..b05b9b8 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.6.tar.gz 782923 SHA256 a83e2e3ff65b36a7e0d3330e853610c0da9cd2ffd5a001d9e51ad6146c558674 SHA512 630825f2a635fa8039df2b71e3a3d1c95280f48b1277f31f010a8c4adf1cd08ddbd6cff1ffae19856f27585f36c473d3c70eb30ca8e5e4cf8b159705398793bf WHIRLPOOL 17fc409d6114fb89527251888c40e05731932f192dedaefd33cd18e64c2b46980ad8a1c14a6f3bca02cfa223cde61216e2051afc458cca195919e3da94d08d91
 DIST thefuck-3.7.tar.gz 783470 SHA256 6e7efdc51baa5bfeecf38fc1e6ecdaf07b90168a6ced79cbf50fe6ff0e0adb1e SHA512 736a0656e9bce2efdfabdede6a3d4e11b9ced324ffe6435a16475c0d5e0a04b4240be66aebdd5512d04b32a2a6c91be929e36ddcf3a7d62e59f195df33505e6c WHIRLPOOL dd901df50c767f08b98d1a4e3fc1ef086a0961911976a7c1fb6f121ea0d4df9512955ee8c3c5106760045f60d7cbb168b07be0e348db53a584e876194630e574

diff --git a/app-shells/thefuck/thefuck-3.6.ebuild b/app-shells/thefuck/thefuck-3.6.ebuild
deleted file mode 100644
index 15c70cf..0000000
--- a/app-shells/thefuck/thefuck-3.6.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-03-25 15:00 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-03-25 15:00 UTC (permalink / raw
  To: gentoo-commits

commit:     512cef79dfb7d092e5034e1780b69041542363e0
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 25 14:48:22 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Mar 25 15:00:28 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=512cef79

app-shells/thefuck: Version bump to 3.7

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 +
 app-shells/thefuck/thefuck-3.7.ebuild | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 1429396..ac408f7 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.6.tar.gz 782923 SHA256 a83e2e3ff65b36a7e0d3330e853610c0da9cd2ffd5a001d9e51ad6146c558674 SHA512 630825f2a635fa8039df2b71e3a3d1c95280f48b1277f31f010a8c4adf1cd08ddbd6cff1ffae19856f27585f36c473d3c70eb30ca8e5e4cf8b159705398793bf WHIRLPOOL 17fc409d6114fb89527251888c40e05731932f192dedaefd33cd18e64c2b46980ad8a1c14a6f3bca02cfa223cde61216e2051afc458cca195919e3da94d08d91
+DIST thefuck-3.7.tar.gz 783470 SHA256 6e7efdc51baa5bfeecf38fc1e6ecdaf07b90168a6ced79cbf50fe6ff0e0adb1e SHA512 736a0656e9bce2efdfabdede6a3d4e11b9ced324ffe6435a16475c0d5e0a04b4240be66aebdd5512d04b32a2a6c91be929e36ddcf3a7d62e59f195df33505e6c WHIRLPOOL dd901df50c767f08b98d1a4e3fc1ef086a0961911976a7c1fb6f121ea0d4df9512955ee8c3c5106760045f60d7cbb168b07be0e348db53a584e876194630e574

diff --git a/app-shells/thefuck/thefuck-3.7.ebuild b/app-shells/thefuck/thefuck-3.7.ebuild
new file mode 100644
index 0000000..15c70cf
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-04-19 20:42 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-04-19 20:42 UTC (permalink / raw
  To: gentoo-commits

commit:     0674a95fd5affefa0043768526f2444547f4fe9f
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 19 20:36:50 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Apr 19 20:42:23 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0674a95f

app-shells/thefuck: Version bump to 3.8

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 +
 app-shells/thefuck/thefuck-3.8.ebuild | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index b05b9b8..d45a364 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.7.tar.gz 783470 SHA256 6e7efdc51baa5bfeecf38fc1e6ecdaf07b90168a6ced79cbf50fe6ff0e0adb1e SHA512 736a0656e9bce2efdfabdede6a3d4e11b9ced324ffe6435a16475c0d5e0a04b4240be66aebdd5512d04b32a2a6c91be929e36ddcf3a7d62e59f195df33505e6c WHIRLPOOL dd901df50c767f08b98d1a4e3fc1ef086a0961911976a7c1fb6f121ea0d4df9512955ee8c3c5106760045f60d7cbb168b07be0e348db53a584e876194630e574
+DIST thefuck-3.8.tar.gz 784189 SHA256 210605275f582eb6e3aa604f4e4909c0c350053fffd963ecedacfc5733cf9bd3 SHA512 4e324fd0044a7ca78a96a744583b2d1357db142ee3b5fd174a76db52e82e788e899be2dceb1184f903f663711dc8ce82298cbc3a5b8704b8bf1903692e05a962 WHIRLPOOL 65f6a05dcf4f03a8bf9f036a560a4200b58990e13c88fb5e4ba4fae733a1166f9dd65721cf1626044ae576526c57d58a3ba230a2ef1bff8186d9a0b47a691273

diff --git a/app-shells/thefuck/thefuck-3.8.ebuild b/app-shells/thefuck/thefuck-3.8.ebuild
new file mode 100644
index 0000000..15c70cf
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.8.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-04-29 20:31 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-04-29 20:31 UTC (permalink / raw
  To: gentoo-commits

commit:     5817738bc12e71b556da09be4a7a46ee8a4f7f30
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 20:31:14 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 20:31:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5817738b

Remove old

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 -
 app-shells/thefuck/thefuck-3.7.ebuild | 35 -----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index f3c7a69..5ca796c 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1,2 @@
-DIST thefuck-3.7.tar.gz 783470 SHA256 6e7efdc51baa5bfeecf38fc1e6ecdaf07b90168a6ced79cbf50fe6ff0e0adb1e SHA512 736a0656e9bce2efdfabdede6a3d4e11b9ced324ffe6435a16475c0d5e0a04b4240be66aebdd5512d04b32a2a6c91be929e36ddcf3a7d62e59f195df33505e6c WHIRLPOOL dd901df50c767f08b98d1a4e3fc1ef086a0961911976a7c1fb6f121ea0d4df9512955ee8c3c5106760045f60d7cbb168b07be0e348db53a584e876194630e574
 DIST thefuck-3.8.tar.gz 784189 SHA256 210605275f582eb6e3aa604f4e4909c0c350053fffd963ecedacfc5733cf9bd3 SHA512 4e324fd0044a7ca78a96a744583b2d1357db142ee3b5fd174a76db52e82e788e899be2dceb1184f903f663711dc8ce82298cbc3a5b8704b8bf1903692e05a962 WHIRLPOOL 65f6a05dcf4f03a8bf9f036a560a4200b58990e13c88fb5e4ba4fae733a1166f9dd65721cf1626044ae576526c57d58a3ba230a2ef1bff8186d9a0b47a691273
 DIST thefuck-3.9.tar.gz 785337 SHA256 8edf64dac320095194850d6e570466c07592f1012bfe35db84b8027ae7169a3c SHA512 7dd678982fe7706da15be011689f67f91e67d9ec62edb88ae4a1ea5923a8891168a5363466f6a6d4b321df792ad20c7c14c2408b832a61dd02ef1c020553b3c2 WHIRLPOOL 7344afd8e77397073fc8bdb7b58155fb2a1307eb155e3ed52b966aef43d70c6e7ea9425d47220783d7090a60467e3e172e74bdb1be7543fa4bd787a6f5538464

diff --git a/app-shells/thefuck/thefuck-3.7.ebuild b/app-shells/thefuck/thefuck-3.7.ebuild
deleted file mode 100644
index 15c70cf..0000000
--- a/app-shells/thefuck/thefuck-3.7.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-04-29 20:31 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-04-29 20:31 UTC (permalink / raw
  To: gentoo-commits

commit:     1c0d5f33eac8638956da5e9c383bf109e714bfb3
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 20:30:56 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 20:30:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c0d5f33

Version bump to 3.9

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest           |  1 +
 app-shells/thefuck/thefuck-3.9.ebuild | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index d45a364..f3c7a69 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
 DIST thefuck-3.7.tar.gz 783470 SHA256 6e7efdc51baa5bfeecf38fc1e6ecdaf07b90168a6ced79cbf50fe6ff0e0adb1e SHA512 736a0656e9bce2efdfabdede6a3d4e11b9ced324ffe6435a16475c0d5e0a04b4240be66aebdd5512d04b32a2a6c91be929e36ddcf3a7d62e59f195df33505e6c WHIRLPOOL dd901df50c767f08b98d1a4e3fc1ef086a0961911976a7c1fb6f121ea0d4df9512955ee8c3c5106760045f60d7cbb168b07be0e348db53a584e876194630e574
 DIST thefuck-3.8.tar.gz 784189 SHA256 210605275f582eb6e3aa604f4e4909c0c350053fffd963ecedacfc5733cf9bd3 SHA512 4e324fd0044a7ca78a96a744583b2d1357db142ee3b5fd174a76db52e82e788e899be2dceb1184f903f663711dc8ce82298cbc3a5b8704b8bf1903692e05a962 WHIRLPOOL 65f6a05dcf4f03a8bf9f036a560a4200b58990e13c88fb5e4ba4fae733a1166f9dd65721cf1626044ae576526c57d58a3ba230a2ef1bff8186d9a0b47a691273
+DIST thefuck-3.9.tar.gz 785337 SHA256 8edf64dac320095194850d6e570466c07592f1012bfe35db84b8027ae7169a3c SHA512 7dd678982fe7706da15be011689f67f91e67d9ec62edb88ae4a1ea5923a8891168a5363466f6a6d4b321df792ad20c7c14c2408b832a61dd02ef1c020553b3c2 WHIRLPOOL 7344afd8e77397073fc8bdb7b58155fb2a1307eb155e3ed52b966aef43d70c6e7ea9425d47220783d7090a60467e3e172e74bdb1be7543fa4bd787a6f5538464

diff --git a/app-shells/thefuck/thefuck-3.9.ebuild b/app-shells/thefuck/thefuck-3.9.ebuild
new file mode 100644
index 0000000..15c70cf
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.9.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-07-07 12:25 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-07-07 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     baf51e80863ebe3e4d41372d6619fba60302d462
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  7 12:24:32 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jul  7 12:24:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf51e80

app-shells/thefuck: Version bump to 3.10

Package-Manager: portage-2.2.28

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.10.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 5ca796c..883cf42 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
+DIST thefuck-3.10.tar.gz 786180 SHA256 4cdad2040325f73918f00e65822ce21c202e178173606452ed0c730d8c447210 SHA512 fa77177388e311834d5cae9e6264eebaf1b7e52f90a5fa5fd4c3a1858448c4a3288fabd7f08e604b81db1f759f25e7c0403e21ed9772ec517f2f8e8a5163441f WHIRLPOOL cb488dce6d0fa4ec5c760120f908eedf062933d3fb84643e83ef13d6fc29178085b6f960a97cbcd8b38500cec373cdda6a10bee77433f5aa76aa672bf7adf3bf
 DIST thefuck-3.8.tar.gz 784189 SHA256 210605275f582eb6e3aa604f4e4909c0c350053fffd963ecedacfc5733cf9bd3 SHA512 4e324fd0044a7ca78a96a744583b2d1357db142ee3b5fd174a76db52e82e788e899be2dceb1184f903f663711dc8ce82298cbc3a5b8704b8bf1903692e05a962 WHIRLPOOL 65f6a05dcf4f03a8bf9f036a560a4200b58990e13c88fb5e4ba4fae733a1166f9dd65721cf1626044ae576526c57d58a3ba230a2ef1bff8186d9a0b47a691273
 DIST thefuck-3.9.tar.gz 785337 SHA256 8edf64dac320095194850d6e570466c07592f1012bfe35db84b8027ae7169a3c SHA512 7dd678982fe7706da15be011689f67f91e67d9ec62edb88ae4a1ea5923a8891168a5363466f6a6d4b321df792ad20c7c14c2408b832a61dd02ef1c020553b3c2 WHIRLPOOL 7344afd8e77397073fc8bdb7b58155fb2a1307eb155e3ed52b966aef43d70c6e7ea9425d47220783d7090a60467e3e172e74bdb1be7543fa4bd787a6f5538464

diff --git a/app-shells/thefuck/thefuck-3.10.ebuild b/app-shells/thefuck/thefuck-3.10.ebuild
new file mode 100644
index 0000000..15c70cf
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.10.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-07-09 13:53 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-07-09 13:53 UTC (permalink / raw
  To: gentoo-commits

commit:     5c9d10a793c670dd5808bff87d72cd018cfaf9ab
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  9 13:53:27 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Jul  9 13:53:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9d10a7

app-shells/thefuck: Keyword ~x86

Gentoo-Bug: #577556

Package-Manager: portage-2.3.0

 app-shells/thefuck/thefuck-3.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/thefuck/thefuck-3.10.ebuild b/app-shells/thefuck/thefuck-3.10.ebuild
index 15c70cf..b841c8c 100644
--- a/app-shells/thefuck/thefuck-3.10.ebuild
+++ b/app-shells/thefuck/thefuck-3.10.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1
 DESCRIPTION="Magnificent app which corrects your previous console command"
 HOMEPAGE="https://github.com/nvbn/thefuck"
 SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-07-09 13:54 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-07-09 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     95ab7709e18b7602de789b97b4034ea63e6f2740
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  9 13:54:15 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Jul  9 13:54:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ab7709

app-shells/thefuck: Remove old

Package-Manager: portage-2.3.0

 app-shells/thefuck/Manifest           |  2 --
 app-shells/thefuck/thefuck-3.8.ebuild | 35 -----------------------------------
 app-shells/thefuck/thefuck-3.9.ebuild | 35 -----------------------------------
 3 files changed, 72 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 883cf42..91104e9 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1 @@
 DIST thefuck-3.10.tar.gz 786180 SHA256 4cdad2040325f73918f00e65822ce21c202e178173606452ed0c730d8c447210 SHA512 fa77177388e311834d5cae9e6264eebaf1b7e52f90a5fa5fd4c3a1858448c4a3288fabd7f08e604b81db1f759f25e7c0403e21ed9772ec517f2f8e8a5163441f WHIRLPOOL cb488dce6d0fa4ec5c760120f908eedf062933d3fb84643e83ef13d6fc29178085b6f960a97cbcd8b38500cec373cdda6a10bee77433f5aa76aa672bf7adf3bf
-DIST thefuck-3.8.tar.gz 784189 SHA256 210605275f582eb6e3aa604f4e4909c0c350053fffd963ecedacfc5733cf9bd3 SHA512 4e324fd0044a7ca78a96a744583b2d1357db142ee3b5fd174a76db52e82e788e899be2dceb1184f903f663711dc8ce82298cbc3a5b8704b8bf1903692e05a962 WHIRLPOOL 65f6a05dcf4f03a8bf9f036a560a4200b58990e13c88fb5e4ba4fae733a1166f9dd65721cf1626044ae576526c57d58a3ba230a2ef1bff8186d9a0b47a691273
-DIST thefuck-3.9.tar.gz 785337 SHA256 8edf64dac320095194850d6e570466c07592f1012bfe35db84b8027ae7169a3c SHA512 7dd678982fe7706da15be011689f67f91e67d9ec62edb88ae4a1ea5923a8891168a5363466f6a6d4b321df792ad20c7c14c2408b832a61dd02ef1c020553b3c2 WHIRLPOOL 7344afd8e77397073fc8bdb7b58155fb2a1307eb155e3ed52b966aef43d70c6e7ea9425d47220783d7090a60467e3e172e74bdb1be7543fa4bd787a6f5538464

diff --git a/app-shells/thefuck/thefuck-3.8.ebuild b/app-shells/thefuck/thefuck-3.8.ebuild
deleted file mode 100644
index 15c70cf..0000000
--- a/app-shells/thefuck/thefuck-3.8.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}

diff --git a/app-shells/thefuck/thefuck-3.9.ebuild b/app-shells/thefuck/thefuck-3.9.ebuild
deleted file mode 100644
index 15c70cf..0000000
--- a/app-shells/thefuck/thefuck-3.9.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-08-17 21:31 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-08-17 21:31 UTC (permalink / raw
  To: gentoo-commits

commit:     49bd71bec1ca1b7116a297c48ae8f01469859768
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 21:31:12 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 21:31:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49bd71be

app-shells/thefuck: Version bump to 3.11

Package-Manager: portage-2.3.0

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.11.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 91104e9..678519d 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.10.tar.gz 786180 SHA256 4cdad2040325f73918f00e65822ce21c202e178173606452ed0c730d8c447210 SHA512 fa77177388e311834d5cae9e6264eebaf1b7e52f90a5fa5fd4c3a1858448c4a3288fabd7f08e604b81db1f759f25e7c0403e21ed9772ec517f2f8e8a5163441f WHIRLPOOL cb488dce6d0fa4ec5c760120f908eedf062933d3fb84643e83ef13d6fc29178085b6f960a97cbcd8b38500cec373cdda6a10bee77433f5aa76aa672bf7adf3bf
+DIST thefuck-3.11.tar.gz 796095 SHA256 77ee25d0da7c3b5e373c2811c3a4d625de4c635094e960b9f9c60dc490650213 SHA512 774041c5bb54457add90ed071555a0f6215f43501e9ad359af4e1525df34daa3d35de17ccc93f0c74985c107560c0f86e2db52d58265c4f78d31c69015359631 WHIRLPOOL 5eaf7e56100f601146ffd19090463c132ec66a9fcf71340979094df04d8179ddc6624a3c420c114c330e7fafcfbcaeebc1bca462382368a289b75d606f581698

diff --git a/app-shells/thefuck/thefuck-3.11.ebuild b/app-shells/thefuck/thefuck-3.11.ebuild
new file mode 100644
index 0000000..b841c8c
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.11.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-09-03 17:18 Mike Gilbert
  0 siblings, 0 replies; 51+ messages in thread
From: Mike Gilbert @ 2016-09-03 17:18 UTC (permalink / raw
  To: gentoo-commits

commit:     e1b546021750dbf9e36e0c441ce8fd1480a6244a
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 17:18:54 2016 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 17:18:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1b54602

app-shells/thefuck: depend on virtual/python-pathlib

Package-Manager: portage-2.3.0_p24

 app-shells/thefuck/thefuck-3.10.ebuild | 2 +-
 app-shells/thefuck/thefuck-3.11.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/thefuck/thefuck-3.10.ebuild b/app-shells/thefuck/thefuck-3.10.ebuild
index b841c8c..ee24672 100644
--- a/app-shells/thefuck/thefuck-3.10.ebuild
+++ b/app-shells/thefuck/thefuck-3.10.ebuild
@@ -16,7 +16,7 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="test"
 
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
 	dev-python/psutil[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]
 	dev-python/decorator[${PYTHON_USEDEP}]

diff --git a/app-shells/thefuck/thefuck-3.11.ebuild b/app-shells/thefuck/thefuck-3.11.ebuild
index b841c8c..ee24672 100644
--- a/app-shells/thefuck/thefuck-3.11.ebuild
+++ b/app-shells/thefuck/thefuck-3.11.ebuild
@@ -16,7 +16,7 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="test"
 
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
 	dev-python/psutil[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]
 	dev-python/decorator[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-09-04 14:04 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-09-04 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     4d32296e212ff223c2e07ea04e7bbc3c2fd8f57c
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 14:04:11 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 14:04:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d32296e

app-shells/thefuck: Remove old

Package-Manager: portage-2.3.0

 app-shells/thefuck/Manifest            |  1 -
 app-shells/thefuck/thefuck-3.10.ebuild | 35 ----------------------------------
 app-shells/thefuck/thefuck-3.11.ebuild | 35 ----------------------------------
 3 files changed, 71 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 678519d..5464086 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.10.tar.gz 786180 SHA256 4cdad2040325f73918f00e65822ce21c202e178173606452ed0c730d8c447210 SHA512 fa77177388e311834d5cae9e6264eebaf1b7e52f90a5fa5fd4c3a1858448c4a3288fabd7f08e604b81db1f759f25e7c0403e21ed9772ec517f2f8e8a5163441f WHIRLPOOL cb488dce6d0fa4ec5c760120f908eedf062933d3fb84643e83ef13d6fc29178085b6f960a97cbcd8b38500cec373cdda6a10bee77433f5aa76aa672bf7adf3bf
 DIST thefuck-3.11.tar.gz 796095 SHA256 77ee25d0da7c3b5e373c2811c3a4d625de4c635094e960b9f9c60dc490650213 SHA512 774041c5bb54457add90ed071555a0f6215f43501e9ad359af4e1525df34daa3d35de17ccc93f0c74985c107560c0f86e2db52d58265c4f78d31c69015359631 WHIRLPOOL 5eaf7e56100f601146ffd19090463c132ec66a9fcf71340979094df04d8179ddc6624a3c420c114c330e7fafcfbcaeebc1bca462382368a289b75d606f581698

diff --git a/app-shells/thefuck/thefuck-3.10.ebuild b/app-shells/thefuck/thefuck-3.10.ebuild
deleted file mode 100644
index ee24672..00000000
--- a/app-shells/thefuck/thefuck-3.10.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}

diff --git a/app-shells/thefuck/thefuck-3.11.ebuild b/app-shells/thefuck/thefuck-3.11.ebuild
deleted file mode 100644
index ee24672..00000000
--- a/app-shells/thefuck/thefuck-3.11.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-09-04 14:04 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-09-04 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     56008b715e79867a6341e5009519365fa3f89259
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 14:03:47 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 14:04:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56008b71

app-shells/thefuck: Fix dependencies for python2.7

Gentoo-Bug: 589110

Package-Manager: portage-2.3.0

 app-shells/thefuck/thefuck-3.11-r1.ebuild | 36 +++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/app-shells/thefuck/thefuck-3.11-r1.ebuild b/app-shells/thefuck/thefuck-3.11-r1.ebuild
new file mode 100644
index 00000000..e1d61c7
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.11-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2016-09-04 14:36 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2016-09-04 14:36 UTC (permalink / raw
  To: gentoo-commits

commit:     15fc979d97545f958c0d5eb354890868a9b01e4f
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 14:36:25 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 14:36:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15fc979d

app-shells/thefuck: Add python3.5 support

Package-Manager: portage-2.3.0

 app-shells/thefuck/thefuck-3.11-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/thefuck/thefuck-3.11-r1.ebuild b/app-shells/thefuck/thefuck-3.11-r1.ebuild
index e1d61c7..aa305bc 100644
--- a/app-shells/thefuck/thefuck-3.11-r1.ebuild
+++ b/app-shells/thefuck/thefuck-3.11-r1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4})
+PYTHON_COMPAT=(python{2_7,3_4,3_5})
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-01-11 16:57 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-01-11 16:57 UTC (permalink / raw
  To: gentoo-commits

commit:     56cfc287d26b0ebf0d55c33c0062df39a353caad
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 16:56:08 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 16:57:30 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56cfc287

app-shells/thefuck: Version bump to 3.14

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.14.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 5464086..a630b99 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.11.tar.gz 796095 SHA256 77ee25d0da7c3b5e373c2811c3a4d625de4c635094e960b9f9c60dc490650213 SHA512 774041c5bb54457add90ed071555a0f6215f43501e9ad359af4e1525df34daa3d35de17ccc93f0c74985c107560c0f86e2db52d58265c4f78d31c69015359631 WHIRLPOOL 5eaf7e56100f601146ffd19090463c132ec66a9fcf71340979094df04d8179ddc6624a3c420c114c330e7fafcfbcaeebc1bca462382368a289b75d606f581698
+DIST thefuck-3.14.tar.gz 801989 SHA256 5757d7ba05ead08e867ab6b41e34d6f27fe38d5bb8af1ffc097aeed5ccc9c72f SHA512 b6963e4ab6de7c98bf324498f8f4ac2049a038bf50a856dcfe14570fa6351c9eba3ce9b9f30745ae37578750f8978003875682ffecefdc29e7baeee36d2fba3a WHIRLPOOL 795ba476b615d7b1de02c7e86679782af68fb698c31aae6115d380c330a5e0c43c5226a3a5af48ba9d3371ac14726ce1450437a8969bc109bf72f84e18f7f9d8

diff --git a/app-shells/thefuck/thefuck-3.14.ebuild b/app-shells/thefuck/thefuck-3.14.ebuild
new file mode 100644
index 00000000..cbacf20
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.14.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4,3_5})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-01-11 16:59 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-01-11 16:59 UTC (permalink / raw
  To: gentoo-commits

commit:     d2396a2bd791c3123d4b402ecb30e98831560066
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 16:58:54 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 16:58:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2396a2b

app-shells/thefuck: Add pytest-mock dependency

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-shells/thefuck/thefuck-3.14.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-shells/thefuck/thefuck-3.14.ebuild b/app-shells/thefuck/thefuck-3.14.ebuild
index cbacf20..ff7ff99 100644
--- a/app-shells/thefuck/thefuck-3.14.ebuild
+++ b/app-shells/thefuck/thefuck-3.14.ebuild
@@ -22,7 +22,8 @@ RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
 	dev-python/colorama[${PYTHON_USEDEP}]
 	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
 DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
 	dev-python/setuptools[${PYTHON_USEDEP}]"
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-03-15 15:14 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-03-15 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     cf5c97767aefa7dcd40df8907cd43ede8c5fb6ea
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 15 15:13:25 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Mar 15 15:14:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf5c9776

app-shells/thefuck: Remove old

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 app-shells/thefuck/Manifest               |  1 -
 app-shells/thefuck/thefuck-3.11-r1.ebuild | 35 -------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index a22a6fbce87..136dcaa80b1 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1,2 @@
-DIST thefuck-3.11.tar.gz 796095 SHA256 77ee25d0da7c3b5e373c2811c3a4d625de4c635094e960b9f9c60dc490650213 SHA512 774041c5bb54457add90ed071555a0f6215f43501e9ad359af4e1525df34daa3d35de17ccc93f0c74985c107560c0f86e2db52d58265c4f78d31c69015359631 WHIRLPOOL 5eaf7e56100f601146ffd19090463c132ec66a9fcf71340979094df04d8179ddc6624a3c420c114c330e7fafcfbcaeebc1bca462382368a289b75d606f581698
 DIST thefuck-3.14.tar.gz 801989 SHA256 5757d7ba05ead08e867ab6b41e34d6f27fe38d5bb8af1ffc097aeed5ccc9c72f SHA512 b6963e4ab6de7c98bf324498f8f4ac2049a038bf50a856dcfe14570fa6351c9eba3ce9b9f30745ae37578750f8978003875682ffecefdc29e7baeee36d2fba3a WHIRLPOOL 795ba476b615d7b1de02c7e86679782af68fb698c31aae6115d380c330a5e0c43c5226a3a5af48ba9d3371ac14726ce1450437a8969bc109bf72f84e18f7f9d8
 DIST thefuck-3.15.tar.gz 810304 SHA256 30d0c1e2c2540396c9719316f2f0d14fa1820ee8c71d6f160bc4d50283d0aaef SHA512 6b7ba1fcf94e08c572d7ec0c3e03517d1596088fb5e00f4300c75e038aa87d8f57cbfbb2a37aea7932498d513c33353a568a3e83e168d73ebee51f9c283b4889 WHIRLPOOL 17bd375c75d8a772b843370a0e04da4f321ce87b815b81c6a742376c2084f22be04a7f399be5bab494e7064ddf063680af8686830fda0ede7e8f3887e524329e

diff --git a/app-shells/thefuck/thefuck-3.11-r1.ebuild b/app-shells/thefuck/thefuck-3.11-r1.ebuild
deleted file mode 100644
index da09887da1c..00000000000
--- a/app-shells/thefuck/thefuck-3.11-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-03-15 15:14 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-03-15 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     21ed05da13a913befc3f6b1e2a3bf8631c6a7938
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 15 15:13:02 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Mar 15 15:14:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21ed05da

app-shells/thefuck: Version bump to 3.15

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.15.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index a630b9909a3..a22a6fbce87 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
 DIST thefuck-3.11.tar.gz 796095 SHA256 77ee25d0da7c3b5e373c2811c3a4d625de4c635094e960b9f9c60dc490650213 SHA512 774041c5bb54457add90ed071555a0f6215f43501e9ad359af4e1525df34daa3d35de17ccc93f0c74985c107560c0f86e2db52d58265c4f78d31c69015359631 WHIRLPOOL 5eaf7e56100f601146ffd19090463c132ec66a9fcf71340979094df04d8179ddc6624a3c420c114c330e7fafcfbcaeebc1bca462382368a289b75d606f581698
 DIST thefuck-3.14.tar.gz 801989 SHA256 5757d7ba05ead08e867ab6b41e34d6f27fe38d5bb8af1ffc097aeed5ccc9c72f SHA512 b6963e4ab6de7c98bf324498f8f4ac2049a038bf50a856dcfe14570fa6351c9eba3ce9b9f30745ae37578750f8978003875682ffecefdc29e7baeee36d2fba3a WHIRLPOOL 795ba476b615d7b1de02c7e86679782af68fb698c31aae6115d380c330a5e0c43c5226a3a5af48ba9d3371ac14726ce1450437a8969bc109bf72f84e18f7f9d8
+DIST thefuck-3.15.tar.gz 810304 SHA256 30d0c1e2c2540396c9719316f2f0d14fa1820ee8c71d6f160bc4d50283d0aaef SHA512 6b7ba1fcf94e08c572d7ec0c3e03517d1596088fb5e00f4300c75e038aa87d8f57cbfbb2a37aea7932498d513c33353a568a3e83e168d73ebee51f9c283b4889 WHIRLPOOL 17bd375c75d8a772b843370a0e04da4f321ce87b815b81c6a742376c2084f22be04a7f399be5bab494e7064ddf063680af8686830fda0ede7e8f3887e524329e

diff --git a/app-shells/thefuck/thefuck-3.15.ebuild b/app-shells/thefuck/thefuck-3.15.ebuild
new file mode 100644
index 00000000000..906bf65fd17
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.15.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_4,3_5})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-04-15 17:04 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-04-15 17:04 UTC (permalink / raw
  To: gentoo-commits

commit:     215dffe54f27a95219ac3132b7aa973874ccef06
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 15 17:04:06 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Apr 15 17:04:06 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=215dffe5

app-shells/thefuck: Version bump to 3.16

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.16.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 136dcaa80b1..b8fb485b233 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
 DIST thefuck-3.14.tar.gz 801989 SHA256 5757d7ba05ead08e867ab6b41e34d6f27fe38d5bb8af1ffc097aeed5ccc9c72f SHA512 b6963e4ab6de7c98bf324498f8f4ac2049a038bf50a856dcfe14570fa6351c9eba3ce9b9f30745ae37578750f8978003875682ffecefdc29e7baeee36d2fba3a WHIRLPOOL 795ba476b615d7b1de02c7e86679782af68fb698c31aae6115d380c330a5e0c43c5226a3a5af48ba9d3371ac14726ce1450437a8969bc109bf72f84e18f7f9d8
 DIST thefuck-3.15.tar.gz 810304 SHA256 30d0c1e2c2540396c9719316f2f0d14fa1820ee8c71d6f160bc4d50283d0aaef SHA512 6b7ba1fcf94e08c572d7ec0c3e03517d1596088fb5e00f4300c75e038aa87d8f57cbfbb2a37aea7932498d513c33353a568a3e83e168d73ebee51f9c283b4889 WHIRLPOOL 17bd375c75d8a772b843370a0e04da4f321ce87b815b81c6a742376c2084f22be04a7f399be5bab494e7064ddf063680af8686830fda0ede7e8f3887e524329e
+DIST thefuck-3.16.tar.gz 812419 SHA256 536582810a522144c8bc1ce69b3882979841af1b7aa61e9b245d2b216b77304b SHA512 f6c383fddcc40d11914b095eb9e00e856c5374ffbbb495f6f07a532e5f6458f8051a2881c80e85c743a7a876c6a70aaa78140aa09cbb1b78460a959752d88aca WHIRLPOOL 5a9895c011f943b92be1bd63bc0ea6fa486a8f2eed08394f7e06c1e28dd849a8222e34ced5342e4a60cf5c8e7acbfa61f8bc618abfebf42513b37f9ec36b72b1

diff --git a/app-shells/thefuck/thefuck-3.16.ebuild b/app-shells/thefuck/thefuck-3.16.ebuild
new file mode 100644
index 00000000000..e7a29582bd7
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.16.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-05-12 15:19 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-05-12 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     1364933a81293543b5212a942e837e8ae97975fe
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 15:17:56 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri May 12 15:17:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1364933a

app-shells/thefuck: Version bump to 3.18

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.18.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index b8fb485b233..fd512eb8977 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1,4 @@
 DIST thefuck-3.14.tar.gz 801989 SHA256 5757d7ba05ead08e867ab6b41e34d6f27fe38d5bb8af1ffc097aeed5ccc9c72f SHA512 b6963e4ab6de7c98bf324498f8f4ac2049a038bf50a856dcfe14570fa6351c9eba3ce9b9f30745ae37578750f8978003875682ffecefdc29e7baeee36d2fba3a WHIRLPOOL 795ba476b615d7b1de02c7e86679782af68fb698c31aae6115d380c330a5e0c43c5226a3a5af48ba9d3371ac14726ce1450437a8969bc109bf72f84e18f7f9d8
 DIST thefuck-3.15.tar.gz 810304 SHA256 30d0c1e2c2540396c9719316f2f0d14fa1820ee8c71d6f160bc4d50283d0aaef SHA512 6b7ba1fcf94e08c572d7ec0c3e03517d1596088fb5e00f4300c75e038aa87d8f57cbfbb2a37aea7932498d513c33353a568a3e83e168d73ebee51f9c283b4889 WHIRLPOOL 17bd375c75d8a772b843370a0e04da4f321ce87b815b81c6a742376c2084f22be04a7f399be5bab494e7064ddf063680af8686830fda0ede7e8f3887e524329e
 DIST thefuck-3.16.tar.gz 812419 SHA256 536582810a522144c8bc1ce69b3882979841af1b7aa61e9b245d2b216b77304b SHA512 f6c383fddcc40d11914b095eb9e00e856c5374ffbbb495f6f07a532e5f6458f8051a2881c80e85c743a7a876c6a70aaa78140aa09cbb1b78460a959752d88aca WHIRLPOOL 5a9895c011f943b92be1bd63bc0ea6fa486a8f2eed08394f7e06c1e28dd849a8222e34ced5342e4a60cf5c8e7acbfa61f8bc618abfebf42513b37f9ec36b72b1
+DIST thefuck-3.18.tar.gz 812586 SHA256 c6175c45ac82b1abe552f28a05b9b369f864a763d4d60178c1fde584209e5bf7 SHA512 26a8abb705bd05f09375f3f0dbb0ab3f554e79ab8ba85023edf92252141ff23a11993bf75d582a59c598e3c22e7864cf72823b29be1abab347be2a5d5322a43b WHIRLPOOL c8912634dfe8ec73dc3673991fbc8a12089a9eed6f89d1f977b6f93ceacaecd8d3123df63cc4f4f7203423a0990bbf635dc46205f23c82a51e92afc3009004fb

diff --git a/app-shells/thefuck/thefuck-3.18.ebuild b/app-shells/thefuck/thefuck-3.18.ebuild
new file mode 100644
index 00000000000..b5689f8ca0c
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.18.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-05-12 15:19 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-05-12 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     08e90103bc892628c81f76db418896db69631d43
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 15:18:14 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri May 12 15:18:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e90103

app-shells/thefuck: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-shells/thefuck/Manifest            |  2 --
 app-shells/thefuck/thefuck-3.14.ebuild | 35 ----------------------------------
 app-shells/thefuck/thefuck-3.15.ebuild | 35 ----------------------------------
 3 files changed, 72 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index fd512eb8977..d0da1489e25 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,4 +1,2 @@
-DIST thefuck-3.14.tar.gz 801989 SHA256 5757d7ba05ead08e867ab6b41e34d6f27fe38d5bb8af1ffc097aeed5ccc9c72f SHA512 b6963e4ab6de7c98bf324498f8f4ac2049a038bf50a856dcfe14570fa6351c9eba3ce9b9f30745ae37578750f8978003875682ffecefdc29e7baeee36d2fba3a WHIRLPOOL 795ba476b615d7b1de02c7e86679782af68fb698c31aae6115d380c330a5e0c43c5226a3a5af48ba9d3371ac14726ce1450437a8969bc109bf72f84e18f7f9d8
-DIST thefuck-3.15.tar.gz 810304 SHA256 30d0c1e2c2540396c9719316f2f0d14fa1820ee8c71d6f160bc4d50283d0aaef SHA512 6b7ba1fcf94e08c572d7ec0c3e03517d1596088fb5e00f4300c75e038aa87d8f57cbfbb2a37aea7932498d513c33353a568a3e83e168d73ebee51f9c283b4889 WHIRLPOOL 17bd375c75d8a772b843370a0e04da4f321ce87b815b81c6a742376c2084f22be04a7f399be5bab494e7064ddf063680af8686830fda0ede7e8f3887e524329e
 DIST thefuck-3.16.tar.gz 812419 SHA256 536582810a522144c8bc1ce69b3882979841af1b7aa61e9b245d2b216b77304b SHA512 f6c383fddcc40d11914b095eb9e00e856c5374ffbbb495f6f07a532e5f6458f8051a2881c80e85c743a7a876c6a70aaa78140aa09cbb1b78460a959752d88aca WHIRLPOOL 5a9895c011f943b92be1bd63bc0ea6fa486a8f2eed08394f7e06c1e28dd849a8222e34ced5342e4a60cf5c8e7acbfa61f8bc618abfebf42513b37f9ec36b72b1
 DIST thefuck-3.18.tar.gz 812586 SHA256 c6175c45ac82b1abe552f28a05b9b369f864a763d4d60178c1fde584209e5bf7 SHA512 26a8abb705bd05f09375f3f0dbb0ab3f554e79ab8ba85023edf92252141ff23a11993bf75d582a59c598e3c22e7864cf72823b29be1abab347be2a5d5322a43b WHIRLPOOL c8912634dfe8ec73dc3673991fbc8a12089a9eed6f89d1f977b6f93ceacaecd8d3123df63cc4f4f7203423a0990bbf635dc46205f23c82a51e92afc3009004fb

diff --git a/app-shells/thefuck/thefuck-3.14.ebuild b/app-shells/thefuck/thefuck-3.14.ebuild
deleted file mode 100644
index 906bf65fd17..00000000000
--- a/app-shells/thefuck/thefuck-3.14.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}

diff --git a/app-shells/thefuck/thefuck-3.15.ebuild b/app-shells/thefuck/thefuck-3.15.ebuild
deleted file mode 100644
index 906bf65fd17..00000000000
--- a/app-shells/thefuck/thefuck-3.15.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-08-21 11:58 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-08-21 11:58 UTC (permalink / raw
  To: gentoo-commits

commit:     18f709684f3ee9682dce96b3d905d21374d56906
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 21 11:49:50 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Aug 21 11:57:52 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f70968

app-shells/thefuck: Version bump to 3.21

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.21.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index d0da1489e25..cd7581baf55 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
 DIST thefuck-3.16.tar.gz 812419 SHA256 536582810a522144c8bc1ce69b3882979841af1b7aa61e9b245d2b216b77304b SHA512 f6c383fddcc40d11914b095eb9e00e856c5374ffbbb495f6f07a532e5f6458f8051a2881c80e85c743a7a876c6a70aaa78140aa09cbb1b78460a959752d88aca WHIRLPOOL 5a9895c011f943b92be1bd63bc0ea6fa486a8f2eed08394f7e06c1e28dd849a8222e34ced5342e4a60cf5c8e7acbfa61f8bc618abfebf42513b37f9ec36b72b1
 DIST thefuck-3.18.tar.gz 812586 SHA256 c6175c45ac82b1abe552f28a05b9b369f864a763d4d60178c1fde584209e5bf7 SHA512 26a8abb705bd05f09375f3f0dbb0ab3f554e79ab8ba85023edf92252141ff23a11993bf75d582a59c598e3c22e7864cf72823b29be1abab347be2a5d5322a43b WHIRLPOOL c8912634dfe8ec73dc3673991fbc8a12089a9eed6f89d1f977b6f93ceacaecd8d3123df63cc4f4f7203423a0990bbf635dc46205f23c82a51e92afc3009004fb
+DIST thefuck-3.21.tar.gz 814519 SHA256 02e8db472200160bccfd882531f26117f09eae1da0f0bad0b068aa1c16759f70 SHA512 a75f05d7847305c53720399e039b2f5317756f1295f036eb6b3d476dc2a6ee694c5a28c7ec03f153474fbc33165edd3255cd567236f83634642f2f423e95e1a1 WHIRLPOOL df35c2bd76df422eb0763234673b3225d45eec74b755418a791bac753fbcc9955fb694dfbca53187f6d623c6a1b4d7e133bc0c8005f077d3d963741c177a77f9

diff --git a/app-shells/thefuck/thefuck-3.21.ebuild b/app-shells/thefuck/thefuck-3.21.ebuild
new file mode 100644
index 00000000000..b5689f8ca0c
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.21.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-09-08 22:12 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-09-08 22:12 UTC (permalink / raw
  To: gentoo-commits

commit:     e8c8d9fccc2266c371fcf401a97adb01a2f87cdf
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  8 22:11:39 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Sep  8 22:11:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8c8d9fc

app-shells/thefuck: Remove old

Package-Manager: Portage-2.3.8, Repoman-2.3.2

 app-shells/thefuck/Manifest            |  2 --
 app-shells/thefuck/thefuck-3.16.ebuild | 35 ----------------------------------
 app-shells/thefuck/thefuck-3.18.ebuild | 35 ----------------------------------
 3 files changed, 72 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 4695de47a4f..068288f363f 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,4 +1,2 @@
-DIST thefuck-3.16.tar.gz 812419 SHA256 536582810a522144c8bc1ce69b3882979841af1b7aa61e9b245d2b216b77304b SHA512 f6c383fddcc40d11914b095eb9e00e856c5374ffbbb495f6f07a532e5f6458f8051a2881c80e85c743a7a876c6a70aaa78140aa09cbb1b78460a959752d88aca WHIRLPOOL 5a9895c011f943b92be1bd63bc0ea6fa486a8f2eed08394f7e06c1e28dd849a8222e34ced5342e4a60cf5c8e7acbfa61f8bc618abfebf42513b37f9ec36b72b1
-DIST thefuck-3.18.tar.gz 812586 SHA256 c6175c45ac82b1abe552f28a05b9b369f864a763d4d60178c1fde584209e5bf7 SHA512 26a8abb705bd05f09375f3f0dbb0ab3f554e79ab8ba85023edf92252141ff23a11993bf75d582a59c598e3c22e7864cf72823b29be1abab347be2a5d5322a43b WHIRLPOOL c8912634dfe8ec73dc3673991fbc8a12089a9eed6f89d1f977b6f93ceacaecd8d3123df63cc4f4f7203423a0990bbf635dc46205f23c82a51e92afc3009004fb
 DIST thefuck-3.21.tar.gz 814519 SHA256 02e8db472200160bccfd882531f26117f09eae1da0f0bad0b068aa1c16759f70 SHA512 a75f05d7847305c53720399e039b2f5317756f1295f036eb6b3d476dc2a6ee694c5a28c7ec03f153474fbc33165edd3255cd567236f83634642f2f423e95e1a1 WHIRLPOOL df35c2bd76df422eb0763234673b3225d45eec74b755418a791bac753fbcc9955fb694dfbca53187f6d623c6a1b4d7e133bc0c8005f077d3d963741c177a77f9
 DIST thefuck-3.23.tar.gz 1353847 SHA256 36b0af52219a56dc34bb085e75afa822c479c5c05b9393598effc2c1b3c5eb32 SHA512 893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814 WHIRLPOOL 88c0d7ffcb4d9a902cba8a54bfbf5939daa2c9d573bc6b7b3c326504dd57345041987b4ee0da2b0f3aaa97f687e9ff143d8e3fffddb68b69e9f8768078bbc2e0

diff --git a/app-shells/thefuck/thefuck-3.16.ebuild b/app-shells/thefuck/thefuck-3.16.ebuild
deleted file mode 100644
index e7a29582bd7..00000000000
--- a/app-shells/thefuck/thefuck-3.16.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}

diff --git a/app-shells/thefuck/thefuck-3.18.ebuild b/app-shells/thefuck/thefuck-3.18.ebuild
deleted file mode 100644
index b5689f8ca0c..00000000000
--- a/app-shells/thefuck/thefuck-3.18.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-09-08 22:12 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-09-08 22:12 UTC (permalink / raw
  To: gentoo-commits

commit:     4c109551b5d0ae1ce1b7ac9cf4b012208147bbca
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  8 22:11:13 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Sep  8 22:11:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c109551

app-shells/thefuck: Version bump to 3.23

Package-Manager: Portage-2.3.8, Repoman-2.3.2

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.23.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index cd7581baf55..4695de47a4f 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1,4 @@
 DIST thefuck-3.16.tar.gz 812419 SHA256 536582810a522144c8bc1ce69b3882979841af1b7aa61e9b245d2b216b77304b SHA512 f6c383fddcc40d11914b095eb9e00e856c5374ffbbb495f6f07a532e5f6458f8051a2881c80e85c743a7a876c6a70aaa78140aa09cbb1b78460a959752d88aca WHIRLPOOL 5a9895c011f943b92be1bd63bc0ea6fa486a8f2eed08394f7e06c1e28dd849a8222e34ced5342e4a60cf5c8e7acbfa61f8bc618abfebf42513b37f9ec36b72b1
 DIST thefuck-3.18.tar.gz 812586 SHA256 c6175c45ac82b1abe552f28a05b9b369f864a763d4d60178c1fde584209e5bf7 SHA512 26a8abb705bd05f09375f3f0dbb0ab3f554e79ab8ba85023edf92252141ff23a11993bf75d582a59c598e3c22e7864cf72823b29be1abab347be2a5d5322a43b WHIRLPOOL c8912634dfe8ec73dc3673991fbc8a12089a9eed6f89d1f977b6f93ceacaecd8d3123df63cc4f4f7203423a0990bbf635dc46205f23c82a51e92afc3009004fb
 DIST thefuck-3.21.tar.gz 814519 SHA256 02e8db472200160bccfd882531f26117f09eae1da0f0bad0b068aa1c16759f70 SHA512 a75f05d7847305c53720399e039b2f5317756f1295f036eb6b3d476dc2a6ee694c5a28c7ec03f153474fbc33165edd3255cd567236f83634642f2f423e95e1a1 WHIRLPOOL df35c2bd76df422eb0763234673b3225d45eec74b755418a791bac753fbcc9955fb694dfbca53187f6d623c6a1b4d7e133bc0c8005f077d3d963741c177a77f9
+DIST thefuck-3.23.tar.gz 1353847 SHA256 36b0af52219a56dc34bb085e75afa822c479c5c05b9393598effc2c1b3c5eb32 SHA512 893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814 WHIRLPOOL 88c0d7ffcb4d9a902cba8a54bfbf5939daa2c9d573bc6b7b3c326504dd57345041987b4ee0da2b0f3aaa97f687e9ff143d8e3fffddb68b69e9f8768078bbc2e0

diff --git a/app-shells/thefuck/thefuck-3.23.ebuild b/app-shells/thefuck/thefuck-3.23.ebuild
new file mode 100644
index 00000000000..59434fe1c28
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.23.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{3_4,3_5,3_6})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-09-20 13:58 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-09-20 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     a7f644930f10b6ffad03b3d918366b88b0230471
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 20 13:58:09 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Sep 20 13:58:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f64493

app-shells/thefuck: Remove old

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 app-shells/thefuck/Manifest            |  1 -
 app-shells/thefuck/thefuck-3.21.ebuild | 35 ----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 068288f363f..ff75625daf8 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.21.tar.gz 814519 SHA256 02e8db472200160bccfd882531f26117f09eae1da0f0bad0b068aa1c16759f70 SHA512 a75f05d7847305c53720399e039b2f5317756f1295f036eb6b3d476dc2a6ee694c5a28c7ec03f153474fbc33165edd3255cd567236f83634642f2f423e95e1a1 WHIRLPOOL df35c2bd76df422eb0763234673b3225d45eec74b755418a791bac753fbcc9955fb694dfbca53187f6d623c6a1b4d7e133bc0c8005f077d3d963741c177a77f9
 DIST thefuck-3.23.tar.gz 1353847 SHA256 36b0af52219a56dc34bb085e75afa822c479c5c05b9393598effc2c1b3c5eb32 SHA512 893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814 WHIRLPOOL 88c0d7ffcb4d9a902cba8a54bfbf5939daa2c9d573bc6b7b3c326504dd57345041987b4ee0da2b0f3aaa97f687e9ff143d8e3fffddb68b69e9f8768078bbc2e0

diff --git a/app-shells/thefuck/thefuck-3.21.ebuild b/app-shells/thefuck/thefuck-3.21.ebuild
deleted file mode 100644
index b5689f8ca0c..00000000000
--- a/app-shells/thefuck/thefuck-3.21.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' python2_7)"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-10-19 14:50 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-10-19 14:50 UTC (permalink / raw
  To: gentoo-commits

commit:     6dbb026d478135132faf863ff5ebe31ee11146c4
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 19 14:50:29 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Oct 19 14:50:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dbb026d

app-shells/thefuck: Version bump to 3.24

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.24.ebuild | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index ff75625daf8..0d77927195f 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.23.tar.gz 1353847 SHA256 36b0af52219a56dc34bb085e75afa822c479c5c05b9393598effc2c1b3c5eb32 SHA512 893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814 WHIRLPOOL 88c0d7ffcb4d9a902cba8a54bfbf5939daa2c9d573bc6b7b3c326504dd57345041987b4ee0da2b0f3aaa97f687e9ff143d8e3fffddb68b69e9f8768078bbc2e0
+DIST thefuck-3.24.tar.gz 1360450 SHA256 686867f264ee34d9287814dde0e9ca5debb322deeaf0ac6773ec06f823d7c0b4 SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d WHIRLPOOL 395eb03bf8ec1504909631a7e88e2761d7778742fb52d6fd567ee4c3c1ec9186726550dde23b2234a93064d6317065852236fb83fd4bfcdb733a4d2aa7cee2e8

diff --git a/app-shells/thefuck/thefuck-3.24.ebuild b/app-shells/thefuck/thefuck-3.24.ebuild
new file mode 100644
index 00000000000..59434fe1c28
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.24.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{3_4,3_5,3_6})
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+	dev-python/pytest[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}] )
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-11-21 18:05 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-11-21 18:05 UTC (permalink / raw
  To: gentoo-commits

commit:     7d364a26057a9fb37095a2dac626a58c55e5a1dd
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 21 18:05:03 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 18:05:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d364a26

app-shells/thefuck: Unmaintain

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 app-shells/thefuck/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
index f7e2bc9ec43..8010e62df65 100644
--- a/app-shells/thefuck/metadata.xml
+++ b/app-shells/thefuck/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>mrueg@gentoo.org</email>
-		<name>Manuel Rüger</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<upstream>
 		<remote-id type="github">nvbn/thefuck</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-11-24 23:09 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2017-11-24 23:09 UTC (permalink / raw
  To: gentoo-commits

commit:     e12834a7f4a7009450d68cd465964aece45602c9
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 23:07:32 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 23:09:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12834a7

app-shells/thefuck: remove 3.23

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 app-shells/thefuck/Manifest            |  1 -
 app-shells/thefuck/thefuck-3.23.ebuild | 35 ----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 0d77927195f..ca20cd21ebf 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.23.tar.gz 1353847 SHA256 36b0af52219a56dc34bb085e75afa822c479c5c05b9393598effc2c1b3c5eb32 SHA512 893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814 WHIRLPOOL 88c0d7ffcb4d9a902cba8a54bfbf5939daa2c9d573bc6b7b3c326504dd57345041987b4ee0da2b0f3aaa97f687e9ff143d8e3fffddb68b69e9f8768078bbc2e0
 DIST thefuck-3.24.tar.gz 1360450 SHA256 686867f264ee34d9287814dde0e9ca5debb322deeaf0ac6773ec06f823d7c0b4 SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d WHIRLPOOL 395eb03bf8ec1504909631a7e88e2761d7778742fb52d6fd567ee4c3c1ec9186726550dde23b2234a93064d6317065852236fb83fd4bfcdb733a4d2aa7cee2e8

diff --git a/app-shells/thefuck/thefuck-3.23.ebuild b/app-shells/thefuck/thefuck-3.23.ebuild
deleted file mode 100644
index 59434fe1c28..00000000000
--- a/app-shells/thefuck/thefuck-3.23.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{3_4,3_5,3_6})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2017-11-25 13:38 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2017-11-25 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     1e436f321483e3b85b3c289d9bf638dbf2a4d75f
Author:     Nils Freydank <holgersson <AT> posteo <DOT> de>
AuthorDate: Sat Nov 25 13:16:24 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 13:38:12 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e436f32

app-shells/thefuck: Version bump to 3.25 and add proxied maintainer

Closes: https://github.com/gentoo/gentoo/pull/6294
Package-Manager: Portage-2.3.16, Repoman-2.3.6

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/metadata.xml        |  9 +++++++-
 app-shells/thefuck/thefuck-3.25.ebuild | 41 ++++++++++++++++++++++++++++++++++
 3 files changed, 50 insertions(+), 1 deletion(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index ca20cd21ebf..a642f807299 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.24.tar.gz 1360450 SHA256 686867f264ee34d9287814dde0e9ca5debb322deeaf0ac6773ec06f823d7c0b4 SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d WHIRLPOOL 395eb03bf8ec1504909631a7e88e2761d7778742fb52d6fd567ee4c3c1ec9186726550dde23b2234a93064d6317065852236fb83fd4bfcdb733a4d2aa7cee2e8
+DIST thefuck-3.25.tar.gz 1362279 BLAKE2B 52b3f1c8756b6981c0528fd77c18256957dd5d628ea37801b9c9abf6114e1cef8af53d9d1dd50fc7c88fad7bd628dc8373aa70dbc6933c07c63b7da31eb5d95a SHA512 c7b215358c09e1fa5e6aae519e7d6c3fd50027b4c72bb1c128786cd2cff707196f2b9b2a23dfed34d841874caab9463791e82c9083f6aac9c90f26d12a4d4598

diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
index 8010e62df65..e02f8f7384b 100644
--- a/app-shells/thefuck/metadata.xml
+++ b/app-shells/thefuck/metadata.xml
@@ -1,7 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>holgersson@posteo.de</email>
+		<name>Nils Freydank</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="github">nvbn/thefuck</remote-id>
 	</upstream>

diff --git a/app-shells/thefuck/thefuck-3.25.ebuild b/app-shells/thefuck/thefuck-3.25.ebuild
new file mode 100644
index 00000000000..7c1efbcfc50
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.25.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+	)"
+
+python_prepare_all() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2018-04-26  1:08 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2018-04-26  1:08 UTC (permalink / raw
  To: gentoo-commits

commit:     4fa1af7b447d2beb81a1d6b8f2ab9b44d6b32745
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 26 01:07:56 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 01:07:56 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa1af7b

app-shells/thefuck: Version bump to 3.26

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.26.ebuild | 41 ++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index ba5e4489595..9ecc9ce95de 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
 DIST thefuck-3.24.tar.gz 1360450 BLAKE2B 38a4a0484220eb92e75d164958f7a1db9d3828268a352da7a99ea79487869a39c88cdb65a315a49f71cd70a8d3ce488b1b692c241dff7329fc27c16ba33ce81f SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d
 DIST thefuck-3.25.tar.gz 1362279 BLAKE2B 52b3f1c8756b6981c0528fd77c18256957dd5d628ea37801b9c9abf6114e1cef8af53d9d1dd50fc7c88fad7bd628dc8373aa70dbc6933c07c63b7da31eb5d95a SHA512 c7b215358c09e1fa5e6aae519e7d6c3fd50027b4c72bb1c128786cd2cff707196f2b9b2a23dfed34d841874caab9463791e82c9083f6aac9c90f26d12a4d4598
+DIST thefuck-3.26.tar.gz 1365778 BLAKE2B 3266fc5a1e351df1ccd13bfb6def6254194a05a94c7bf2bdcafb9c75414fce23b479eb1ac866333e8aef7d51bc609fc00aad8508e4cf0f0d959632744330e734 SHA512 2dbcc7ba0adb24b3f7d80d0c575a4ed515508e0ab5bc2fc4eb9ba82ad36325af1784eb9c241794ce0e038ed8e99042eb21cc3b29eeaa273517aebc7205ab787f

diff --git a/app-shells/thefuck/thefuck-3.26.ebuild b/app-shells/thefuck/thefuck-3.26.ebuild
new file mode 100644
index 00000000000..09a7b70b6e7
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.26.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+	)"
+
+python_prepare_all() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2018-05-24 20:36 Patrice Clement
  0 siblings, 0 replies; 51+ messages in thread
From: Patrice Clement @ 2018-05-24 20:36 UTC (permalink / raw
  To: gentoo-commits

commit:     4744eede230d3b7bf7b7f92724740d3f336e54ae
Author:     Nils Freydank <holgersson <AT> posteo <DOT> de>
AuthorDate: Thu May 24 19:50:53 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu May 24 20:36:46 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4744eede

app-shells/thefuck: version bump to 3.27 and EAPI=7.

Package-Manager: Portage-2.3.38, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8568

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/thefuck-3.27.ebuild | 41 ++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 9ecc9ce95de..125b8b02f84 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1,4 @@
 DIST thefuck-3.24.tar.gz 1360450 BLAKE2B 38a4a0484220eb92e75d164958f7a1db9d3828268a352da7a99ea79487869a39c88cdb65a315a49f71cd70a8d3ce488b1b692c241dff7329fc27c16ba33ce81f SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d
 DIST thefuck-3.25.tar.gz 1362279 BLAKE2B 52b3f1c8756b6981c0528fd77c18256957dd5d628ea37801b9c9abf6114e1cef8af53d9d1dd50fc7c88fad7bd628dc8373aa70dbc6933c07c63b7da31eb5d95a SHA512 c7b215358c09e1fa5e6aae519e7d6c3fd50027b4c72bb1c128786cd2cff707196f2b9b2a23dfed34d841874caab9463791e82c9083f6aac9c90f26d12a4d4598
 DIST thefuck-3.26.tar.gz 1365778 BLAKE2B 3266fc5a1e351df1ccd13bfb6def6254194a05a94c7bf2bdcafb9c75414fce23b479eb1ac866333e8aef7d51bc609fc00aad8508e4cf0f0d959632744330e734 SHA512 2dbcc7ba0adb24b3f7d80d0c575a4ed515508e0ab5bc2fc4eb9ba82ad36325af1784eb9c241794ce0e038ed8e99042eb21cc3b29eeaa273517aebc7205ab787f
+DIST thefuck-3.27.tar.gz 1367120 BLAKE2B a840ac3e8f6807df632948e2fe2789a47bdcfececfd4a9bb0f1836bbaa641501e13c559221b9a2f25bbd93505c8b03db102636e480ece116a42c46f341d5cd35 SHA512 766c589f0e99a9773e74094e91c6a74d00e5be8b7241680ad664ecc3f549b597416bc7a4d289f399ed3a0d9ccad629ed78bb983edc809664c303c687ea1eec1a

diff --git a/app-shells/thefuck/thefuck-3.27.ebuild b/app-shells/thefuck/thefuck-3.27.ebuild
new file mode 100644
index 00000000000..9216446f6dd
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.27.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+	)"
+
+python_prepare_all() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	py.test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2018-05-24 20:36 Patrice Clement
  0 siblings, 0 replies; 51+ messages in thread
From: Patrice Clement @ 2018-05-24 20:36 UTC (permalink / raw
  To: gentoo-commits

commit:     8cfb9268dac86d22aed69bd4b9e216cb8caccfd0
Author:     Nils Freydank <holgersson <AT> posteo <DOT> de>
AuthorDate: Thu May 24 19:52:09 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu May 24 20:36:48 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cfb9268

app-shells/thefuck: drop old versions.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-shells/thefuck/Manifest            |  3 ---
 app-shells/thefuck/thefuck-3.24.ebuild | 35 -----------------------------
 app-shells/thefuck/thefuck-3.25.ebuild | 41 ----------------------------------
 app-shells/thefuck/thefuck-3.26.ebuild | 41 ----------------------------------
 4 files changed, 120 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 125b8b02f84..307d8b12f5b 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,4 +1 @@
-DIST thefuck-3.24.tar.gz 1360450 BLAKE2B 38a4a0484220eb92e75d164958f7a1db9d3828268a352da7a99ea79487869a39c88cdb65a315a49f71cd70a8d3ce488b1b692c241dff7329fc27c16ba33ce81f SHA512 d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d
-DIST thefuck-3.25.tar.gz 1362279 BLAKE2B 52b3f1c8756b6981c0528fd77c18256957dd5d628ea37801b9c9abf6114e1cef8af53d9d1dd50fc7c88fad7bd628dc8373aa70dbc6933c07c63b7da31eb5d95a SHA512 c7b215358c09e1fa5e6aae519e7d6c3fd50027b4c72bb1c128786cd2cff707196f2b9b2a23dfed34d841874caab9463791e82c9083f6aac9c90f26d12a4d4598
-DIST thefuck-3.26.tar.gz 1365778 BLAKE2B 3266fc5a1e351df1ccd13bfb6def6254194a05a94c7bf2bdcafb9c75414fce23b479eb1ac866333e8aef7d51bc609fc00aad8508e4cf0f0d959632744330e734 SHA512 2dbcc7ba0adb24b3f7d80d0c575a4ed515508e0ab5bc2fc4eb9ba82ad36325af1784eb9c241794ce0e038ed8e99042eb21cc3b29eeaa273517aebc7205ab787f
 DIST thefuck-3.27.tar.gz 1367120 BLAKE2B a840ac3e8f6807df632948e2fe2789a47bdcfececfd4a9bb0f1836bbaa641501e13c559221b9a2f25bbd93505c8b03db102636e480ece116a42c46f341d5cd35 SHA512 766c589f0e99a9773e74094e91c6a74d00e5be8b7241680ad664ecc3f549b597416bc7a4d289f399ed3a0d9ccad629ed78bb983edc809664c303c687ea1eec1a

diff --git a/app-shells/thefuck/thefuck-3.24.ebuild b/app-shells/thefuck/thefuck-3.24.ebuild
deleted file mode 100644
index 59434fe1c28..00000000000
--- a/app-shells/thefuck/thefuck-3.24.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{3_4,3_5,3_6})
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-	dev-python/pytest[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}] )
-	dev-python/setuptools[${PYTHON_USEDEP}]"
-
-src_prepare() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	py.test || die
-}

diff --git a/app-shells/thefuck/thefuck-3.25.ebuild b/app-shells/thefuck/thefuck-3.25.ebuild
deleted file mode 100644
index 7c1efbcfc50..00000000000
--- a/app-shells/thefuck/thefuck-3.25.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-	)"
-
-python_prepare_all() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	py.test || die
-}

diff --git a/app-shells/thefuck/thefuck-3.26.ebuild b/app-shells/thefuck/thefuck-3.26.ebuild
deleted file mode 100644
index 09a7b70b6e7..00000000000
--- a/app-shells/thefuck/thefuck-3.26.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-	)"
-
-python_prepare_all() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2019-01-19  3:35 Thomas Deutschmann
  0 siblings, 0 replies; 51+ messages in thread
From: Thomas Deutschmann @ 2019-01-19  3:35 UTC (permalink / raw
  To: gentoo-commits

commit:     5d169df189e914e1c63cd9ef28df531fc2a0b024
Author:     Andrew Attali <me <AT> aphypnise <DOT> eu>
AuthorDate: Tue Jan  8 09:41:22 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Jan 19 03:34:53 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d169df1

app-shells/thefuck: bump to 3.28

Also added python 3.7 as supported version.
Taked over the proxy maint as requested by the former.

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Andrew Attali <me <AT> aphypnise.eu>
Closes: https://github.com/gentoo/gentoo/pull/10775
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 app-shells/thefuck/Manifest            |  1 +
 app-shells/thefuck/metadata.xml        |  4 ++--
 app-shells/thefuck/thefuck-3.28.ebuild | 41 ++++++++++++++++++++++++++++++++++
 3 files changed, 44 insertions(+), 2 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 307d8b12f5b..c41029c3faa 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1 +1,2 @@
 DIST thefuck-3.27.tar.gz 1367120 BLAKE2B a840ac3e8f6807df632948e2fe2789a47bdcfececfd4a9bb0f1836bbaa641501e13c559221b9a2f25bbd93505c8b03db102636e480ece116a42c46f341d5cd35 SHA512 766c589f0e99a9773e74094e91c6a74d00e5be8b7241680ad664ecc3f549b597416bc7a4d289f399ed3a0d9ccad629ed78bb983edc809664c303c687ea1eec1a
+DIST thefuck-3.28.tar.gz 1369230 BLAKE2B 0825ead15eae174b08bc2608ff64e1cd5993484a8aa6cc5cd1f6dbb3a856898e7c77eb9d5f92884f01261cf5cc5b00696c6e706a6553ce661866689e3d94d746 SHA512 6c3edcfff604567a18209bf46aceb662ed4549efd0e3b0daee1abee8a93fbe3ff4dfa260eb74c3d560b3a798e3cc90f911072d694a0d986a09c8581e951421d2

diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
index e02f8f7384b..302e34ce061 100644
--- a/app-shells/thefuck/metadata.xml
+++ b/app-shells/thefuck/metadata.xml
@@ -2,8 +2,8 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>holgersson@posteo.de</email>
-		<name>Nils Freydank</name>
+		<email>me@aphypnise.eu</email>
+		<name>Andrew Attali</name>
 	</maintainer>
 	<maintainer type="project">
 		<email>proxy-maint@gentoo.org</email>

diff --git a/app-shells/thefuck/thefuck-3.28.ebuild b/app-shells/thefuck/thefuck-3.28.ebuild
new file mode 100644
index 00000000000..4cd6c3ca4a5
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.28.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{4,5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+	)"
+
+python_prepare_all() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	py.test -vv || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2020-12-03  7:21 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2020-12-03  7:21 UTC (permalink / raw
  To: gentoo-commits

commit:     7d960010c929b679a57a5ccdeb11eb16137f5c08
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 07:12:55 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 07:21:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d960010

app-shells/thefuck: add Python 3.8, 3.9

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.28.ebuild | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/app-shells/thefuck/thefuck-3.28.ebuild b/app-shells/thefuck/thefuck-3.28.ebuild
index d7199bc7ffe..ffcc66f3c8a 100644
--- a/app-shells/thefuck/thefuck-3.28.ebuild
+++ b/app-shells/thefuck/thefuck-3.28.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 
@@ -14,8 +14,6 @@ SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
 	dev-python/psutil[${PYTHON_USEDEP}]
@@ -24,12 +22,13 @@ RDEPEND="
 	dev-python/colorama[${PYTHON_USEDEP}]
 	dev-python/pyte[${PYTHON_USEDEP}]"
 DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
 	test? (
-		${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/mock[${PYTHON_USEDEP}]
 		dev-python/pytest-mock[${PYTHON_USEDEP}]
-	)"
+	)
+"
+
+distutils_enable_tests pytest
 
 python_prepare_all() {
 	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2020-12-03  7:21 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2020-12-03  7:21 UTC (permalink / raw
  To: gentoo-commits

commit:     bc660ab7669eecffca30e4ac7b11cd5e775da161
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 07:21:03 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 07:21:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc660ab7

app-shells/thefuck: bump to 3.30

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/Manifest                                     | 1 +
 app-shells/thefuck/thefuck-3.28.ebuild                          | 5 -----
 app-shells/thefuck/{thefuck-3.28.ebuild => thefuck-3.30.ebuild} | 0
 3 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index c41029c3faa..d6ed1e34c90 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,3 @@
 DIST thefuck-3.27.tar.gz 1367120 BLAKE2B a840ac3e8f6807df632948e2fe2789a47bdcfececfd4a9bb0f1836bbaa641501e13c559221b9a2f25bbd93505c8b03db102636e480ece116a42c46f341d5cd35 SHA512 766c589f0e99a9773e74094e91c6a74d00e5be8b7241680ad664ecc3f549b597416bc7a4d289f399ed3a0d9ccad629ed78bb983edc809664c303c687ea1eec1a
 DIST thefuck-3.28.tar.gz 1369230 BLAKE2B 0825ead15eae174b08bc2608ff64e1cd5993484a8aa6cc5cd1f6dbb3a856898e7c77eb9d5f92884f01261cf5cc5b00696c6e706a6553ce661866689e3d94d746 SHA512 6c3edcfff604567a18209bf46aceb662ed4549efd0e3b0daee1abee8a93fbe3ff4dfa260eb74c3d560b3a798e3cc90f911072d694a0d986a09c8581e951421d2
+DIST thefuck-3.30.tar.gz 1383210 BLAKE2B 9d6a7ba2712b5cea0146315f5023a104667531928ade93c4aee1f210f06755efb3488b82ce2bc63adf9ce41aec91528bbb6ee4212adb5eca2af53cacf4510a67 SHA512 99b270d0aa535673c09e7e932212af4ded5639fcf30ad0aeedc89a54e94c0a072a37883b1a1a56301efb82ea1c72cf53d4dacf2e83edcafcf4fbaa55ecd35f3a

diff --git a/app-shells/thefuck/thefuck-3.28.ebuild b/app-shells/thefuck/thefuck-3.28.ebuild
index ffcc66f3c8a..c55322df315 100644
--- a/app-shells/thefuck/thefuck-3.28.ebuild
+++ b/app-shells/thefuck/thefuck-3.28.ebuild
@@ -32,10 +32,5 @@ distutils_enable_tests pytest
 
 python_prepare_all() {
 	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-
 	distutils-r1_python_prepare_all
 }
-
-python_test() {
-	py.test -vv || die
-}

diff --git a/app-shells/thefuck/thefuck-3.28.ebuild b/app-shells/thefuck/thefuck-3.30.ebuild
similarity index 100%
copy from app-shells/thefuck/thefuck-3.28.ebuild
copy to app-shells/thefuck/thefuck-3.30.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2020-12-03  7:22 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2020-12-03  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     4148dbff75c707eff7f843438581b84088532d29
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 07:21:56 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 07:21:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4148dbff

app-shells/thefuck: cleanup old

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/Manifest            |  1 -
 app-shells/thefuck/thefuck-3.27.ebuild | 42 ----------------------------------
 2 files changed, 43 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index d6ed1e34c90..9e438e0b48b 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,3 +1,2 @@
-DIST thefuck-3.27.tar.gz 1367120 BLAKE2B a840ac3e8f6807df632948e2fe2789a47bdcfececfd4a9bb0f1836bbaa641501e13c559221b9a2f25bbd93505c8b03db102636e480ece116a42c46f341d5cd35 SHA512 766c589f0e99a9773e74094e91c6a74d00e5be8b7241680ad664ecc3f549b597416bc7a4d289f399ed3a0d9ccad629ed78bb983edc809664c303c687ea1eec1a
 DIST thefuck-3.28.tar.gz 1369230 BLAKE2B 0825ead15eae174b08bc2608ff64e1cd5993484a8aa6cc5cd1f6dbb3a856898e7c77eb9d5f92884f01261cf5cc5b00696c6e706a6553ce661866689e3d94d746 SHA512 6c3edcfff604567a18209bf46aceb662ed4549efd0e3b0daee1abee8a93fbe3ff4dfa260eb74c3d560b3a798e3cc90f911072d694a0d986a09c8581e951421d2
 DIST thefuck-3.30.tar.gz 1383210 BLAKE2B 9d6a7ba2712b5cea0146315f5023a104667531928ade93c4aee1f210f06755efb3488b82ce2bc63adf9ce41aec91528bbb6ee4212adb5eca2af53cacf4510a67 SHA512 99b270d0aa535673c09e7e932212af4ded5639fcf30ad0aeedc89a54e94c0a072a37883b1a1a56301efb82ea1c72cf53d4dacf2e83edcafcf4fbaa55ecd35f3a

diff --git a/app-shells/thefuck/thefuck-3.27.ebuild b/app-shells/thefuck/thefuck-3.27.ebuild
deleted file mode 100644
index 18cc02e0331..00000000000
--- a/app-shells/thefuck/thefuck-3.27.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-	)"
-
-python_prepare_all() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	py.test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2020-12-03 11:10 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2020-12-03 11:10 UTC (permalink / raw
  To: gentoo-commits

commit:     56f4d0e8622d4a6728f85e160b7c3fdd8be30333
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 11:09:55 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 11:09:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56f4d0e8

app-shells/thefuck: mark ALLARCHES

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
index 302e34ce061..0af76b219fa 100644
--- a/app-shells/thefuck/metadata.xml
+++ b/app-shells/thefuck/metadata.xml
@@ -9,6 +9,7 @@
 		<email>proxy-maint@gentoo.org</email>
 		<name>Proxy Maintainers</name>
 	</maintainer>
+	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">nvbn/thefuck</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2022-04-16 19:35 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2022-04-16 19:35 UTC (permalink / raw
  To: gentoo-commits

commit:     facb50abf6a814957e83b18d9ab76f92b10f4de4
Author:     Matt Jolly <Matt.Jolly <AT> footclan <DOT> ninja>
AuthorDate: Fri Apr 15 09:07:49 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 19:35:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=facb50ab

app-shells/thefuck: add 3.32, drop 3.28

Signed-off-by: Matt Jolly <Matt.Jolly <AT> footclan.ninja>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/Manifest                                     | 2 +-
 app-shells/thefuck/{thefuck-3.28.ebuild => thefuck-3.32.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 9e438e0b48bb..0a964bcc6797 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1,2 @@
-DIST thefuck-3.28.tar.gz 1369230 BLAKE2B 0825ead15eae174b08bc2608ff64e1cd5993484a8aa6cc5cd1f6dbb3a856898e7c77eb9d5f92884f01261cf5cc5b00696c6e706a6553ce661866689e3d94d746 SHA512 6c3edcfff604567a18209bf46aceb662ed4549efd0e3b0daee1abee8a93fbe3ff4dfa260eb74c3d560b3a798e3cc90f911072d694a0d986a09c8581e951421d2
 DIST thefuck-3.30.tar.gz 1383210 BLAKE2B 9d6a7ba2712b5cea0146315f5023a104667531928ade93c4aee1f210f06755efb3488b82ce2bc63adf9ce41aec91528bbb6ee4212adb5eca2af53cacf4510a67 SHA512 99b270d0aa535673c09e7e932212af4ded5639fcf30ad0aeedc89a54e94c0a072a37883b1a1a56301efb82ea1c72cf53d4dacf2e83edcafcf4fbaa55ecd35f3a
+DIST thefuck-3.32.tar.gz 1234795 BLAKE2B f62aca1601b2cec4cc14dc63f6d7e7fffc8ab0e1cf88e44c3170ec6744998e97e97813e9dc6aaccc0a850b0a15f958483da24bcf1d176e43bad1b2272272e7a0 SHA512 961b9b6dc374cc0b854698455f688cf110adb21cfebd4cb645eb5f1ce11c14de6699bb4d40de86a5f9461273cbfc2eea318a9d437f803dc578dd431966cf26c1

diff --git a/app-shells/thefuck/thefuck-3.28.ebuild b/app-shells/thefuck/thefuck-3.32.ebuild
similarity index 100%
rename from app-shells/thefuck/thefuck-3.28.ebuild
rename to app-shells/thefuck/thefuck-3.32.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2022-04-16 19:35 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2022-04-16 19:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1f85998fe1fdbd46223f9aa243cdc3a27aa69670
Author:     Matt Jolly <Matt.Jolly <AT> footclan <DOT> ninja>
AuthorDate: Fri Apr 15 09:11:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 19:35:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f85998f

app-shells/thefuck: update EAPI 7 -> 8

Also add Python 3.10 to PYTHON_COMPAT

Signed-off-by: Matt Jolly <Matt.Jolly <AT> footclan.ninja>
Closes: https://github.com/gentoo/gentoo/pull/25035
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.32.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/thefuck/thefuck-3.32.ebuild b/app-shells/thefuck/thefuck-3.32.ebuild
index 340119972b2e..a9b8c5c10ea2 100644
--- a/app-shells/thefuck/thefuck-3.32.ebuild
+++ b/app-shells/thefuck/thefuck-3.32.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2022-04-16 19:35 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2022-04-16 19:35 UTC (permalink / raw
  To: gentoo-commits

commit:     2eb3eddfd14f89775f9d4d00a112d1922a3922d2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 16 19:34:08 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 19:35:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb3eddf

app-shells/thefuck: disable py3.7

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.32.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/thefuck/thefuck-3.32.ebuild b/app-shells/thefuck/thefuck-3.32.ebuild
index a9b8c5c10ea2..9cd54f344eb2 100644
--- a/app-shells/thefuck/thefuck-3.32.ebuild
+++ b/app-shells/thefuck/thefuck-3.32.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8,9,10} )
+PYTHON_COMPAT=( python3_{8,9,10} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2022-08-15  4:42 John Helmert III
  0 siblings, 0 replies; 51+ messages in thread
From: John Helmert III @ 2022-08-15  4:42 UTC (permalink / raw
  To: gentoo-commits

commit:     9b6316bcdba4aa91afcecb5c20a530a869e9415d
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 04:38:26 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 04:40:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b6316bc

app-shells/thefuck: retire proxy maintainer

Only seems to have 1 commit, from Jan 2019.

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 app-shells/thefuck/metadata.xml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml
index cb126650e951..44ab2f15bdfb 100644
--- a/app-shells/thefuck/metadata.xml
+++ b/app-shells/thefuck/metadata.xml
@@ -1,14 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person" proxied="yes">
-		<email>me@aphypnise.eu</email>
-		<name>Andrew Attali</name>
-	</maintainer>
-	<maintainer type="project" proxied="proxy">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">nvbn/thefuck</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2022-08-15  4:45 John Helmert III
  0 siblings, 0 replies; 51+ messages in thread
From: John Helmert III @ 2022-08-15  4:45 UTC (permalink / raw
  To: gentoo-commits

commit:     84cc843cb3f03af6adef424d511c0a9e956a8dca
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 04:45:05 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 04:45:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84cc843c

app-shells/thefuck: drop 3.30

Bug: https://bugs.gentoo.org/795291
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 app-shells/thefuck/Manifest            |  1 -
 app-shells/thefuck/thefuck-3.30.ebuild | 41 ----------------------------------
 2 files changed, 42 deletions(-)

diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest
index 0a964bcc6797..c7bfaeb70daa 100644
--- a/app-shells/thefuck/Manifest
+++ b/app-shells/thefuck/Manifest
@@ -1,2 +1 @@
-DIST thefuck-3.30.tar.gz 1383210 BLAKE2B 9d6a7ba2712b5cea0146315f5023a104667531928ade93c4aee1f210f06755efb3488b82ce2bc63adf9ce41aec91528bbb6ee4212adb5eca2af53cacf4510a67 SHA512 99b270d0aa535673c09e7e932212af4ded5639fcf30ad0aeedc89a54e94c0a072a37883b1a1a56301efb82ea1c72cf53d4dacf2e83edcafcf4fbaa55ecd35f3a
 DIST thefuck-3.32.tar.gz 1234795 BLAKE2B f62aca1601b2cec4cc14dc63f6d7e7fffc8ab0e1cf88e44c3170ec6744998e97e97813e9dc6aaccc0a850b0a15f958483da24bcf1d176e43bad1b2272272e7a0 SHA512 961b9b6dc374cc0b854698455f688cf110adb21cfebd4cb645eb5f1ce11c14de6699bb4d40de86a5f9461273cbfc2eea318a9d437f803dc578dd431966cf26c1

diff --git a/app-shells/thefuck/thefuck-3.30.ebuild b/app-shells/thefuck/thefuck-3.30.ebuild
deleted file mode 100644
index 997ad592129c..000000000000
--- a/app-shells/thefuck/thefuck-3.30.ebuild
+++ /dev/null
@@ -1,41 +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,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	py.test -vv || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2023-05-01  7:16 Arthur Zamarin
  0 siblings, 0 replies; 51+ messages in thread
From: Arthur Zamarin @ 2023-05-01  7:16 UTC (permalink / raw
  To: gentoo-commits

commit:     6e1f6f236fa199a093920192693c1a7d1915f19e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 07:13:37 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May  1 07:16:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1f6f23

app-shells/thefuck: PEP517, deselect failing tests

Closes: https://bugs.gentoo.org/804148
Closes: https://bugs.gentoo.org/886163
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.32-r1.ebuild | 45 +++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/app-shells/thefuck/thefuck-3.32-r1.ebuild b/app-shells/thefuck/thefuck-3.32-r1.ebuild
new file mode 100644
index 000000000000..8d692b84c0fd
--- /dev/null
+++ b/app-shells/thefuck/thefuck-3.32-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9,10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Magnificent app which corrects your previous console command"
+HOMEPAGE="https://github.com/nvbn/thefuck"
+SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/psutil[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/pyte[${PYTHON_USEDEP}]"
+DEPEND="
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# failing tests because of trying to access portage's home dir
+	tests/test_conf.py
+	tests/entrypoints/test_not_configured.py
+	tests/test_utils.py::test_get_all_executables_exclude_paths
+	tests/test_utils.py::TestCache
+)
+
+python_prepare_all() {
+	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2023-05-01  7:16 Arthur Zamarin
  0 siblings, 0 replies; 51+ messages in thread
From: Arthur Zamarin @ 2023-05-01  7:16 UTC (permalink / raw
  To: gentoo-commits

commit:     13bb1bfda518b80831500f1933396185f3fd414a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 07:15:33 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May  1 07:16:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13bb1bfd

app-shells/thefuck: enable py3.11

Closes: https://bugs.gentoo.org/896630
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.32-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/thefuck/thefuck-3.32-r1.ebuild b/app-shells/thefuck/thefuck-3.32-r1.ebuild
index 8d692b84c0fd..bfee9daa1a8c 100644
--- a/app-shells/thefuck/thefuck-3.32-r1.ebuild
+++ b/app-shells/thefuck/thefuck-3.32-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2023-05-29 23:50 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2023-05-29 23:50 UTC (permalink / raw
  To: gentoo-commits

commit:     45d8f38b4a4a44fbab57d4bdc8770d2b8e775a75
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 23:49:36 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 29 23:49:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45d8f38b

app-shells/thefuck: Keyword 3.32-r1 arm64, #906374

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.32-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/thefuck/thefuck-3.32-r1.ebuild b/app-shells/thefuck/thefuck-3.32-r1.ebuild
index bfee9daa1a8c..63211e454c00 100644
--- a/app-shells/thefuck/thefuck-3.32-r1.ebuild
+++ b/app-shells/thefuck/thefuck-3.32-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
 	dev-python/psutil[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/
@ 2024-05-22 13:19 Matt Jolly
  0 siblings, 0 replies; 51+ messages in thread
From: Matt Jolly @ 2024-05-22 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     e283e16f5954988cedb5c08e667ab7cd507db47d
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Sun May 12 04:23:31 2024 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Wed May 22 13:17:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e283e16f

app-shells/thefuck: drop 3.32

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 app-shells/thefuck/thefuck-3.32.ebuild | 36 ----------------------------------
 1 file changed, 36 deletions(-)

diff --git a/app-shells/thefuck/thefuck-3.32.ebuild b/app-shells/thefuck/thefuck-3.32.ebuild
deleted file mode 100644
index 078c37a9f1aa..000000000000
--- a/app-shells/thefuck/thefuck-3.32.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Magnificent app which corrects your previous console command"
-HOMEPAGE="https://github.com/nvbn/thefuck"
-SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/psutil[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pyte[${PYTHON_USEDEP}]"
-DEPEND="
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die
-	distutils-r1_python_prepare_all
-}


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

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

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-03  7:21 [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-05-22 13:19 Matt Jolly
2023-05-29 23:50 Sam James
2023-05-01  7:16 Arthur Zamarin
2023-05-01  7:16 Arthur Zamarin
2022-08-15  4:45 John Helmert III
2022-08-15  4:42 John Helmert III
2022-04-16 19:35 Sam James
2022-04-16 19:35 Sam James
2022-04-16 19:35 Sam James
2020-12-03 11:10 Sam James
2020-12-03  7:22 Sam James
2020-12-03  7:21 Sam James
2019-01-19  3:35 Thomas Deutschmann
2018-05-24 20:36 Patrice Clement
2018-05-24 20:36 Patrice Clement
2018-04-26  1:08 Manuel Rüger
2017-11-25 13:38 David Seifert
2017-11-24 23:09 Michael Palimaka
2017-11-21 18:05 Manuel Rüger
2017-10-19 14:50 Manuel Rüger
2017-09-20 13:58 Manuel Rüger
2017-09-08 22:12 Manuel Rüger
2017-09-08 22:12 Manuel Rüger
2017-08-21 11:58 Manuel Rüger
2017-05-12 15:19 Manuel Rüger
2017-05-12 15:19 Manuel Rüger
2017-04-15 17:04 Manuel Rüger
2017-03-15 15:14 Manuel Rüger
2017-03-15 15:14 Manuel Rüger
2017-01-11 16:59 Manuel Rüger
2017-01-11 16:57 Manuel Rüger
2016-09-04 14:36 Manuel Rüger
2016-09-04 14:04 Manuel Rüger
2016-09-04 14:04 Manuel Rüger
2016-09-03 17:18 Mike Gilbert
2016-08-17 21:31 Manuel Rüger
2016-07-09 13:54 Manuel Rüger
2016-07-09 13:53 Manuel Rüger
2016-07-07 12:25 Manuel Rüger
2016-04-29 20:31 Manuel Rüger
2016-04-29 20:31 Manuel Rüger
2016-04-19 20:42 Manuel Rüger
2016-03-25 15:00 Manuel Rüger
2016-03-25 15:00 Manuel Rüger
2016-03-14 21:03 Manuel Rüger
2016-03-14 21:03 Manuel Rüger
2016-03-13 11:40 Manuel Rüger
2016-03-13 11:40 Manuel Rüger
2016-03-13 11:40 Manuel Rüger
2016-03-12 23:40 Manuel Rüger

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