summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2018-02-26 21:57:25 +0100
committerSebastian Pipping <sping@gentoo.org>2018-02-26 21:57:25 +0100
commitc2f9d35351adc0d54d70b664a7136b0a03427d3f (patch)
treeda20e72eec97eb501eb778f017e46afaa7bc9aa0 /app-crypt
parentapp-crypt/wile: 1.0.0-r1 with webroot fixed (diff)
downloadbetagarden-c2f9d35351adc0d54d70b664a7136b0a03427d3f.tar.gz
betagarden-c2f9d35351adc0d54d70b664a7136b0a03427d3f.tar.bz2
betagarden-c2f9d35351adc0d54d70b664a7136b0a03427d3f.zip
app-crypt/wile: 1.0.1, remove old
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/wile/Manifest4
-rw-r--r--app-crypt/wile/files/wile-0.3.1-setup.patch46
-rw-r--r--app-crypt/wile/files/wile-1.0.0-fix-webroot.patch39
-rw-r--r--app-crypt/wile/files/wile-1.0.0-josepy.patch80
-rw-r--r--app-crypt/wile/wile-0.3.1.ebuild31
-rw-r--r--app-crypt/wile/wile-0.3.2.ebuild29
-rw-r--r--app-crypt/wile/wile-1.0.1.ebuild (renamed from app-crypt/wile/wile-1.0.0-r1.ebuild)4
7 files changed, 1 insertions, 232 deletions
diff --git a/app-crypt/wile/Manifest b/app-crypt/wile/Manifest
index 3ec38f1..7a939e6 100644
--- a/app-crypt/wile/Manifest
+++ b/app-crypt/wile/Manifest
@@ -1,3 +1 @@
-DIST wile-0.3.1.tar.gz 19822 SHA256 1c273f5365189cb304b483ca7b9c2fa07b6f7981c966e4c1d38a599e7279466a SHA512 02e85bba3d91a6292bcf10eb23aefe7f4e5600914063b9fc9166734f76a47a209b19a4deed25c97a9795e54e6100bb0031dc36420cbb5f6bdc43c82fec6a0f57 WHIRLPOOL 0f109aa15b252eb8cdc95bab35d0d39131762f5c23937e2246abf5dbe052121b63563ddfcbe526319e85805c4b37fa70179ab1bc7e020b004149307919f8b9ed
-DIST wile-0.3.2.tar.gz 21455 SHA256 f3fe11194828ed908efb92e2a119645c7d0c839d6c6d6bd476a7c264deb77758 SHA512 1fc024014ca458ed057b102022ee419566cb5abe322ea5176f54c87b1f520a90f9cb8778fb13644cdeb110d8f7aae052122067fcb3c58ae4ec4ac011562d44b7 WHIRLPOOL 0e30f82eaa541dcd98b6aeaeae9fba9b21db6aa11567fb70f4c93594a36cb548a932ef0301dacbbeb0094b2e9dd59d94a85f1222cc8207e0e93ea9dbd375844e
-DIST wile-1.0.0.tar.gz 27839 SHA256 a14f6ae46ce1a12636b41be9a187346eef223e3178f8782fcd90d61f30b0fc1a SHA512 ab4840296619f0404922dcf28c91e047fca4ccb3f71ba22e4bca198139062bf8894f6c6111650adbc6e3c5cdf36c28bcf2881a41ea91f6740205374c4b5ba088 WHIRLPOOL 2555a07eaa08ad38974d2f0bc4e3162a44e5febaaac356f77b6e6a1105aa2841e5cb2fbbcf08c82feaef4827d60a5df4019b4ff11b1ccdc83ab0dc1a2b319577
+DIST wile-1.0.1.tar.gz 28767 SHA256 0355bc5516fd48a0183a8aa147fcbd1f90d896102d1b4e6f51111bfb2e2ab7a6 SHA512 8ea7e17297bf4af9724b16d2e36676f2ab4ad51b098354c12dac13ab8445d49d80a3aa36bd5dba9c04b520dfceae21e66f49086bb9c183bdc1eac2b38e8d5a3c WHIRLPOOL 9d3b702d0d8aebca2446969e10e21e52ebfe68999ffcb5a4bbb868cda5a60111054934cadbe62bb9b6cd240ebe91c27f27ebcd21c0b255e7c9fd1f62ad2c4945
diff --git a/app-crypt/wile/files/wile-0.3.1-setup.patch b/app-crypt/wile/files/wile-0.3.1-setup.patch
deleted file mode 100644
index 76072b4..0000000
--- a/app-crypt/wile/files/wile-0.3.1-setup.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 120fbe77e695c39744e4e620e24aa57585f5ee57 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebastian@pipping.org>
-Date: Fri, 24 Feb 2017 19:56:34 +0100
-Subject: [PATCH] Fix "./setup.py build" for when there is no .git around
-
----
- setup.py | 13 ++++++++++---
- 1 file changed, 10 insertions(+), 3 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 3ed03c2..cfce972 100755
---- a/setup.py
-+++ b/setup.py
-@@ -1,15 +1,14 @@
- #!/usr/bin/python
- import os
-+import sys
- from setuptools import setup
-
-
- def read(filename):
- return open(os.path.join(os.path.dirname(__file__), filename)).read()
-
--setup(
-+config = dict(
- name="wile",
-- use_scm_version=True,
-- setup_requires=['setuptools_scm'],
- author="Leo Antunes",
- author_email="leo@costela.net",
- description=("A stripped down Let's Encrypt (ACME) client"),
-@@ -42,3 +41,11 @@ setup(
- 'Topic :: Utilities',
- ],
- )
-+
-+if 'sdist' in sys.argv:
-+ config.update(dict(
-+ use_scm_version=True,
-+ setup_requires=['setuptools_scm'],
-+ ))
-+
-+setup(**config)
---
-2.11.1
-
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
deleted file mode 100644
index 39c9d30..0000000
--- a/app-crypt/wile/files/wile-1.0.0-fix-webroot.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-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/files/wile-1.0.0-josepy.patch b/app-crypt/wile/files/wile-1.0.0-josepy.patch
deleted file mode 100644
index 04382c8..0000000
--- a/app-crypt/wile/files/wile-1.0.0-josepy.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-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-0.3.1.ebuild b/app-crypt/wile/wile-0.3.1.ebuild
deleted file mode 100644
index e70d9a3..0000000
--- a/app-crypt/wile/wile-0.3.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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 )
-
-PATCHES=( "${FILESDIR}"/${P}-setup.patch )
diff --git a/app-crypt/wile/wile-0.3.2.ebuild b/app-crypt/wile/wile-0.3.2.ebuild
deleted file mode 100644
index ac538f6..0000000
--- a/app-crypt/wile/wile-0.3.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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 )
diff --git a/app-crypt/wile/wile-1.0.0-r1.ebuild b/app-crypt/wile/wile-1.0.1.ebuild
index aabfe2c..f0c0752 100644
--- a/app-crypt/wile/wile-1.0.0-r1.ebuild
+++ b/app-crypt/wile/wile-1.0.1.ebuild
@@ -30,7 +30,3 @@ RDEPEND="
DOCS=( README.md )
-PATCHES=(
- "${FILESDIR}"/${P}-josepy.patch
- "${FILESDIR}"/${P}-fix-webroot.patch
-)