* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/
@ 2017-03-04 16:51 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2017-03-04 16:51 UTC (permalink / raw
To: gentoo-commits
commit: b6abde02de25a8a9e6e68c848639a5d835802a2e
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 16:50:01 2017 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 16:50:12 2017 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=b6abde02
app-crypt/wile: Limit to Python 2.7
https://github.com/costela/wile/issues/16
app-crypt/wile/wile-0.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/wile/wile-0.3.1.ebuild b/app-crypt/wile/wile-0.3.1.ebuild
index 1381370..e70d9a3 100644
--- a/app-crypt/wile/wile-0.3.1.ebuild
+++ b/app-crypt/wile/wile-0.3.1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Stripped down letsencrypt (ACME) client"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/
@ 2017-03-10 18:36 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2017-03-10 18:36 UTC (permalink / raw
To: gentoo-commits
commit: c487a942df0515729381200dd8f06da413a64960
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 18:35:20 2017 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 18:35:46 2017 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=c487a942
app-crypt/wile: 0.3.2
app-crypt/wile/wile-0.3.2.ebuild | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/app-crypt/wile/wile-0.3.2.ebuild b/app-crypt/wile/wile-0.3.2.ebuild
new file mode 100644
index 0000000..ac538f6
--- /dev/null
+++ b/app-crypt/wile/wile-0.3.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+inherit distutils-r1
+
+DESCRIPTION="Stripped down letsencrypt (ACME) client"
+HOMEPAGE="https://github.com/costela/wile"
+SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+ dev-python/six[${PYTHON_USEDEP}]
+ dev-python/click[${PYTHON_USEDEP}]
+ dev-python/pyopenssl[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ "
+RDEPEND="${DEPEND}
+ >=app-crypt/acme-0.6[${PYTHON_USEDEP}]
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ "
+
+DOCS=( README.md )
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/
@ 2018-03-15 23:42 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2018-03-15 23:42 UTC (permalink / raw
To: gentoo-commits
commit: 56f267ce4a12e7c34930927c3bbd0ad1b307d3fb
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 15 23:40:07 2018 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Thu Mar 15 23:41:47 2018 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=56f267ce
app-crypt/wile: Address sandbox violation
.. by depending on post-stable version of setuptools.
Compile error was:
distutils.errors.DistutilsError: Setup script exited with error: SandboxViolation:
open('/var/tmp/portage/app-crypt/wile-1.0.1/work/wile-1.0.1-python2_7/lib/ptr.py', 'wb') {}
app-crypt/wile/wile-1.0.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-crypt/wile/wile-1.0.1.ebuild b/app-crypt/wile/wile-1.0.1.ebuild
index f0c0752..7579bb5 100644
--- a/app-crypt/wile/wile-1.0.1.ebuild
+++ b/app-crypt/wile/wile-1.0.1.ebuild
@@ -16,6 +16,7 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
+ >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
dev-python/setuptools_scm[${PYTHON_USEDEP}]
"
RDEPEND="
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/
@ 2018-12-15 16:07 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2018-12-15 16:07 UTC (permalink / raw
To: gentoo-commits
commit: f008f929be68308aedb5eb6cf3b5e06d21946a03
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 15 16:06:19 2018 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Dec 15 16:07:49 2018 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=f008f929
app-crypt/wile: 1.0.5
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
app-crypt/wile/wile-1.0.5.ebuild | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/app-crypt/wile/wile-1.0.5.ebuild b/app-crypt/wile/wile-1.0.5.ebuild
new file mode 100644
index 0000000..8d8b140
--- /dev/null
+++ b/app-crypt/wile/wile-1.0.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+inherit distutils-r1
+
+DESCRIPTION="Stripped down letsencrypt (ACME) client"
+HOMEPAGE="https://github.com/costela/wile"
+SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+ >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ "
+RDEPEND="
+ >app-crypt/acme-0.22[${PYTHON_USEDEP}]
+ dev-python/josepy[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+ <dev-python/click-7[${PYTHON_USEDEP}]
+ dev-python/pyopenssl[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/paramiko[${PYTHON_USEDEP}]
+ "
+
+DOCS=( README.md )
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/
@ 2019-07-07 22:45 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2019-07-07 22:45 UTC (permalink / raw
To: gentoo-commits
commit: a6fdc1b771c01753132da271944db7093d93c791
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 7 22:45:18 2019 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Jul 7 22:45:18 2019 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=a6fdc1b7
app-crypt/wile: 1.0.6
app-crypt/wile/wile-1.0.6.ebuild | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/app-crypt/wile/wile-1.0.6.ebuild b/app-crypt/wile/wile-1.0.6.ebuild
new file mode 100644
index 0000000..136c258
--- /dev/null
+++ b/app-crypt/wile/wile-1.0.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+inherit distutils-r1
+
+DESCRIPTION="Stripped down letsencrypt (ACME) client"
+HOMEPAGE="https://github.com/costela/wile"
+SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+ dev-python/pytest-runner[${PYTHON_USEDEP}]
+ >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ "
+RDEPEND="
+ >app-crypt/acme-0.22[${PYTHON_USEDEP}]
+ dev-python/josepy[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+ <dev-python/click-7[${PYTHON_USEDEP}]
+ dev-python/pyopenssl[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/paramiko[${PYTHON_USEDEP}]
+ "
+
+DOCS=( README.md )
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/
@ 2020-03-31 17:20 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2020-03-31 17:20 UTC (permalink / raw
To: gentoo-commits
commit: d3860b1c94b7d87610130d61b15cfa2ac3b5c114
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 31 17:14:28 2020 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Mar 31 17:17:13 2020 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=d3860b1c
app-crypt/wile: Drop old + py3[67]
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
app-crypt/wile/wile-1.0.1.ebuild | 33 ----------------------
app-crypt/wile/wile-1.0.5.ebuild | 32 ---------------------
.../{wile-1.0.6.ebuild => wile-1.0.6-r1.ebuild} | 12 ++++++--
3 files changed, 9 insertions(+), 68 deletions(-)
diff --git a/app-crypt/wile/wile-1.0.1.ebuild b/app-crypt/wile/wile-1.0.1.ebuild
deleted file mode 100644
index 7579bb5..0000000
--- a/app-crypt/wile/wile-1.0.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit distutils-r1
-
-DESCRIPTION="Stripped down letsencrypt (ACME) client"
-HOMEPAGE="https://github.com/costela/wile"
-SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
- >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
- dev-python/setuptools_scm[${PYTHON_USEDEP}]
- "
-RDEPEND="
- >=app-crypt/acme-0.21[${PYTHON_USEDEP}]
- dev-python/josepy[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
- dev-python/click[${PYTHON_USEDEP}]
- dev-python/pyopenssl[${PYTHON_USEDEP}]
- dev-python/cryptography[${PYTHON_USEDEP}]
- dev-python/paramiko[${PYTHON_USEDEP}]
- "
-
-DOCS=( README.md )
-
diff --git a/app-crypt/wile/wile-1.0.5.ebuild b/app-crypt/wile/wile-1.0.5.ebuild
deleted file mode 100644
index 8d8b140..0000000
--- a/app-crypt/wile/wile-1.0.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit distutils-r1
-
-DESCRIPTION="Stripped down letsencrypt (ACME) client"
-HOMEPAGE="https://github.com/costela/wile"
-SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
- >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
- dev-python/setuptools_scm[${PYTHON_USEDEP}]
- "
-RDEPEND="
- >app-crypt/acme-0.22[${PYTHON_USEDEP}]
- dev-python/josepy[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
- <dev-python/click-7[${PYTHON_USEDEP}]
- dev-python/pyopenssl[${PYTHON_USEDEP}]
- dev-python/cryptography[${PYTHON_USEDEP}]
- dev-python/paramiko[${PYTHON_USEDEP}]
- "
-
-DOCS=( README.md )
diff --git a/app-crypt/wile/wile-1.0.6.ebuild b/app-crypt/wile/wile-1.0.6-r1.ebuild
similarity index 78%
rename from app-crypt/wile/wile-1.0.6.ebuild
rename to app-crypt/wile/wile-1.0.6-r1.ebuild
index 136c258..4951382 100644
--- a/app-crypt/wile/wile-1.0.6.ebuild
+++ b/app-crypt/wile/wile-1.0.6-r1.ebuild
@@ -1,9 +1,11 @@
-# Copyright 1999-2019 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
inherit distutils-r1
DESCRIPTION="Stripped down letsencrypt (ACME) client"
@@ -17,8 +19,8 @@ IUSE=""
DEPEND="
dev-python/pytest-runner[${PYTHON_USEDEP}]
- >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ test? ( dev-python/testfixtures[${PYTHON_USEDEP}] )
"
RDEPEND="
>app-crypt/acme-0.22[${PYTHON_USEDEP}]
@@ -31,3 +33,7 @@ RDEPEND="
"
DOCS=( README.md )
+
+RESTRICT="test"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-03-31 17:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-31 17:20 [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/ Sebastian Pipping
-- strict thread matches above, loose matches on Subject: below --
2019-07-07 22:45 Sebastian Pipping
2018-12-15 16:07 Sebastian Pipping
2018-03-15 23:42 Sebastian Pipping
2017-03-10 18:36 Sebastian Pipping
2017-03-04 16:51 Sebastian Pipping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox