public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/files/, app-crypt/wile/
@ 2018-02-18 18:42 Sebastian Pipping
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Pipping @ 2018-02-18 18:42 UTC (permalink / raw
  To: gentoo-commits

commit:     ec12b876de23f719afe476d61b3820ec8aa13902
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 18:40:56 2018 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 18:40:56 2018 +0000
URL:        https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=ec12b876

app-crypt/wile: 1.0.0

 app-crypt/wile/files/wile-1.0.0-josepy.patch | 80 ++++++++++++++++++++++++++++
 app-crypt/wile/wile-1.0.0.ebuild             | 33 ++++++++++++
 2 files changed, 113 insertions(+)

diff --git a/app-crypt/wile/files/wile-1.0.0-josepy.patch b/app-crypt/wile/files/wile-1.0.0-josepy.patch
new file mode 100644
index 0000000..04382c8
--- /dev/null
+++ b/app-crypt/wile/files/wile-1.0.0-josepy.patch
@@ -0,0 +1,80 @@
+From 4a7df693b83dbf8d1d3c5245ad9725e98d24b027 Mon Sep 17 00:00:00 2001
+From: Luka Matijevic <lumatijev@gmail.com>
+Date: Tue, 13 Feb 2018 13:50:55 +0100
+Subject: [PATCH 1/2] Fix JOSE dependency
+
+Starting with ACME version 0.21.0 implementation for JOSE was split out
+of ACME library into a separate package named josepy.
+
+Added josepy as a dependency to setup.py and fixed code according to
+this changes.
+
+https://pypi.python.org/pypi/josepy
+https://github.com/certbot/josepy
+---
+ setup.py         | 1 +
+ wile/__init__.py | 2 +-
+ wile/cert.py     | 2 +-
+ 3 files changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 7a8dc8d..5ed1f03 100755
+--- a/setup.py
++++ b/setup.py
+@@ -28,6 +28,7 @@ def read(filename):
+         'cryptography',
+         'setuptools_scm',  # for run-time version-detect
+         'paramiko',
++        'josepy',
+     ],
+     tests_require=[
+         'backports.tempfile;python_version<"3.0"',
+diff --git a/wile/__init__.py b/wile/__init__.py
+index 944b320..1445d10 100644
+--- a/wile/__init__.py
++++ b/wile/__init__.py
+@@ -4,7 +4,7 @@
+ 
+ import setuptools_scm
+ import click
+-from acme import jose
++import josepy as jose
+ from cryptography.hazmat.primitives import serialization
+ from cryptography.hazmat.backends import default_backend
+ from cryptography.hazmat.primitives.asymmetric import rsa
+diff --git a/wile/cert.py b/wile/cert.py
+index 4aba7c1..c9fc33b 100644
+--- a/wile/cert.py
++++ b/wile/cert.py
+@@ -13,7 +13,7 @@
+ from acme import challenges
+ from acme import messages
+ from acme import errors
+-from acme.jose.util import ComparableX509
++from josepy.util import ComparableX509
+ 
+ from . import reg
+ from . import argtypes
+
+From 62e18a5ef30cd1d88dc90ac5df99f9d66bea5eb1 Mon Sep 17 00:00:00 2001
+From: Luka Matijevic <lumatijev@gmail.com>
+Date: Wed, 14 Feb 2018 14:25:56 +0100
+Subject: [PATCH 2/2] Increased minimal acme version.
+
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 5ed1f03..3ad2397 100755
+--- a/setup.py
++++ b/setup.py
+@@ -22,7 +22,7 @@ def read(filename):
+     ],
+     install_requires=[
+         'six',
+-        'acme >= 0.16.0',
++        'acme >= 0.21.0',
+         'click >= 6.0',
+         'pyOpenSSL',
+         'cryptography',

diff --git a/app-crypt/wile/wile-1.0.0.ebuild b/app-crypt/wile/wile-1.0.0.ebuild
new file mode 100644
index 0000000..05beb72
--- /dev/null
+++ b/app-crypt/wile/wile-1.0.0.ebuild
@@ -0,0 +1,33 @@
+# 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_scm[${PYTHON_USEDEP}]
+	"
+RDEPEND="
+	>=app-crypt/acme-0.21[${PYTHON_USEDEP}]
+	app-crypt/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 )
+
+PATCHES=( "${FILESDIR}"/${P}-josepy.patch )


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

* [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/files/, app-crypt/wile/
@ 2018-02-20 13:30 Sebastian Pipping
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Pipping @ 2018-02-20 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     21826684ea951274c2d63efc89b2b28f9d6395bc
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 20 13:28:23 2018 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Feb 20 13:28:27 2018 +0000
URL:        https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=21826684

app-crypt/wile: 1.0.0-r1 with webroot fixed

Related issue:
https://github.com/costela/wile/issues/32

 app-crypt/wile/files/wile-1.0.0-fix-webroot.patch  | 39 ++++++++++++++++++++++
 .../{wile-1.0.0.ebuild => wile-1.0.0-r1.ebuild}    |  5 ++-
 2 files changed, 43 insertions(+), 1 deletion(-)

diff --git a/app-crypt/wile/files/wile-1.0.0-fix-webroot.patch b/app-crypt/wile/files/wile-1.0.0-fix-webroot.patch
new file mode 100644
index 0000000..39c9d30
--- /dev/null
+++ b/app-crypt/wile/files/wile-1.0.0-fix-webroot.patch
@@ -0,0 +1,39 @@
+From f6d355f14363ed3ce6bf44d4d9ab3140bc0ec247 Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping <sebastian@pipping.org>
+Date: Mon, 19 Feb 2018 20:21:24 +0100
+Subject: [PATCH] Fix storing of webroot validation for local folders (issue
+ #32)
+
+Function os.open was used with the signature of __builtin__.open.
+So string mode "wb" ended up as the flags parameter to os.open,
+resulting in "TypeError: an integer is required".
+---
+ wile/cert.py | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/wile/cert.py b/wile/cert.py
+index c9fc33b..f8b85aa 100644
+--- a/wile/cert.py
++++ b/wile/cert.py
+@@ -262,6 +262,7 @@ def _store_webroot_validation(ctx, webroot, ssh_private_key, challb, val):
+                 raise
+ 
+         chall_mod = os
++        chall_open = open
+     else:
+         sftp = sftp_helper.cachedSFTPfactory(user=webroot.remote_user, host=webroot.remote_host,
+                                              port=webroot.remote_port, private_key=ssh_private_key)
+@@ -269,8 +270,9 @@ def _store_webroot_validation(ctx, webroot, ssh_private_key, challb, val):
+         sftp.makedirs(os.path.join(webroot.path, challb.URI_ROOT_PATH))
+ 
+         chall_mod = sftp
++        chall_open = chall_mod.open
+ 
+-    with chall_mod.open(chall_path, 'wb') as outf:
++    with chall_open(chall_path, 'wb') as outf:
+         logger.info('storing validation to %s', os.path.basename(chall_path))
+         outf.write(b(val))
+         # TODO: this may cause a race-condition with paramiko teardown code.
+-- 
+2.16.1
+

diff --git a/app-crypt/wile/wile-1.0.0.ebuild b/app-crypt/wile/wile-1.0.0-r1.ebuild
similarity index 90%
rename from app-crypt/wile/wile-1.0.0.ebuild
rename to app-crypt/wile/wile-1.0.0-r1.ebuild
index b579a01..aabfe2c 100644
--- a/app-crypt/wile/wile-1.0.0.ebuild
+++ b/app-crypt/wile/wile-1.0.0-r1.ebuild
@@ -30,4 +30,7 @@ RDEPEND="
 
 DOCS=( README.md )
 
-PATCHES=( "${FILESDIR}"/${P}-josepy.patch )
+PATCHES=(
+	"${FILESDIR}"/${P}-josepy.patch
+	"${FILESDIR}"/${P}-fix-webroot.patch
+)


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

end of thread, other threads:[~2018-02-20 13:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-20 13:30 [gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/files/, app-crypt/wile/ Sebastian Pipping
  -- strict thread matches above, loose matches on Subject: below --
2018-02-18 18:42 Sebastian Pipping

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