* [PATCH 0/1] Update letsencrypt and acme to 0.1.1. @ 2015-12-21 19:17 Leo Famulari 2015-12-21 19:17 ` [PATCH 1/1] gnu: letsencrypt and acme: Update " Leo Famulari 0 siblings, 1 reply; 4+ messages in thread From: Leo Famulari @ 2015-12-21 19:17 UTC (permalink / raw) To: guix-devel These packages should be updated together. Tested by renewing my certificates. Leo Famulari (1): gnu: letsencrypt and acme: Update to 0.1.1. gnu/packages/tls.scm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) -- 2.6.2 ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] gnu: letsencrypt and acme: Update to 0.1.1. 2015-12-21 19:17 [PATCH 0/1] Update letsencrypt and acme to 0.1.1 Leo Famulari @ 2015-12-21 19:17 ` Leo Famulari 2015-12-21 19:22 ` Thompson, David 0 siblings, 1 reply; 4+ messages in thread From: Leo Famulari @ 2015-12-21 19:17 UTC (permalink / raw) To: guix-devel These packages should be updated together. * gnu/packages/tls.scm (letsencrypt): Update to 0.1.1. [source]: Use pypi-uri. * gnu/packages/tls.scm (acme): Update to 0.1.1. [source]: Use pypi-uri. --- gnu/packages/tls.scm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index e539686..5789534 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -351,14 +351,13 @@ security, and applying best practice development processes.") (define-public acme (package (name "acme") - (version "0.1.0") + (version "0.1.1") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/a/acme/acme-" - version ".tar.gz")) + (uri (pypi-uri "acme" version)) (sha256 (base32 - "0fj0m04zzdxx23vazl00ilqyl3jxqq9c9p4x61pfz1zps7nbzsy3")))) + "1yv0gy8akaqp5p2wjpfj8r5i0da04a9qdmlh06rczdkrmk6q680w")))) (build-system python-build-system) (arguments `(#:python ,python-2)) @@ -384,14 +383,13 @@ security, and applying best practice development processes.") (define-public letsencrypt (package (name "letsencrypt") - (version "0.1.0") + (version "0.1.1") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/l/" - "letsencrypt/letsencrypt-" version ".tar.gz")) + (uri (pypi-uri "letsencrypt" version)) (sha256 (base32 - "1zb96xz32k6ai41h5m1l22qi47y71dq69dcmbz7vfm6jfrhjgxl1")))) + "1kia3wk66lxyi2fghp9sd7cqgr5qiwdfayz153hi4wpa3q1q8rwf")))) (build-system python-build-system) (arguments `(#:python ,python-2)) -- 2.6.2 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] gnu: letsencrypt and acme: Update to 0.1.1. 2015-12-21 19:17 ` [PATCH 1/1] gnu: letsencrypt and acme: Update " Leo Famulari @ 2015-12-21 19:22 ` Thompson, David 2015-12-21 19:36 ` Leo Famulari 0 siblings, 1 reply; 4+ messages in thread From: Thompson, David @ 2015-12-21 19:22 UTC (permalink / raw) To: Leo Famulari; +Cc: guix-devel On Mon, Dec 21, 2015 at 2:17 PM, Leo Famulari <leo@famulari.name> wrote: > These packages should be updated together. > > * gnu/packages/tls.scm (letsencrypt): Update to 0.1.1. > [source]: Use pypi-uri. > * gnu/packages/tls.scm (acme): Update to 0.1.1. > [source]: Use pypi-uri. > --- > gnu/packages/tls.scm | 14 ++++++-------- > 1 file changed, 6 insertions(+), 8 deletions(-) > > diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm > index e539686..5789534 100644 > --- a/gnu/packages/tls.scm > +++ b/gnu/packages/tls.scm > @@ -351,14 +351,13 @@ security, and applying best practice development processes.") > (define-public acme > (package > (name "acme") > - (version "0.1.0") > + (version "0.1.1") > (source (origin > (method url-fetch) > - (uri (string-append "https://pypi.python.org/packages/source/a/acme/acme-" > - version ".tar.gz")) > + (uri (pypi-uri "acme" version)) > (sha256 > (base32 > - "0fj0m04zzdxx23vazl00ilqyl3jxqq9c9p4x61pfz1zps7nbzsy3")))) > + "1yv0gy8akaqp5p2wjpfj8r5i0da04a9qdmlh06rczdkrmk6q680w")))) > (build-system python-build-system) > (arguments > `(#:python ,python-2)) > @@ -384,14 +383,13 @@ security, and applying best practice development processes.") > (define-public letsencrypt > (package > (name "letsencrypt") > - (version "0.1.0") > + (version "0.1.1") > (source (origin > (method url-fetch) > - (uri (string-append "https://pypi.python.org/packages/source/l/" > - "letsencrypt/letsencrypt-" version ".tar.gz")) > + (uri (pypi-uri "letsencrypt" version)) > (sha256 > (base32 > - "1zb96xz32k6ai41h5m1l22qi47y71dq69dcmbz7vfm6jfrhjgxl1")))) > + "1kia3wk66lxyi2fghp9sd7cqgr5qiwdfayz153hi4wpa3q1q8rwf")))) > (build-system python-build-system) > (arguments > `(#:python ,python-2)) > -- > 2.6.2 > > LGTM, thanks! ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] gnu: letsencrypt and acme: Update to 0.1.1. 2015-12-21 19:22 ` Thompson, David @ 2015-12-21 19:36 ` Leo Famulari 0 siblings, 0 replies; 4+ messages in thread From: Leo Famulari @ 2015-12-21 19:36 UTC (permalink / raw) To: Thompson, David; +Cc: guix-devel On Mon, Dec 21, 2015 at 02:22:52PM -0500, Thompson, David wrote: > On Mon, Dec 21, 2015 at 2:17 PM, Leo Famulari <leo@famulari.name> wrote: > > These packages should be updated together. > > > > * gnu/packages/tls.scm (letsencrypt): Update to 0.1.1. > > [source]: Use pypi-uri. > > * gnu/packages/tls.scm (acme): Update to 0.1.1. > > [source]: Use pypi-uri. > > --- > > gnu/packages/tls.scm | 14 ++++++-------- > > 1 file changed, 6 insertions(+), 8 deletions(-) > > > > diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm > > index e539686..5789534 100644 > > --- a/gnu/packages/tls.scm > > +++ b/gnu/packages/tls.scm > > @@ -351,14 +351,13 @@ security, and applying best practice development processes.") > > (define-public acme > > (package > > (name "acme") > > - (version "0.1.0") > > + (version "0.1.1") > > (source (origin > > (method url-fetch) > > - (uri (string-append "https://pypi.python.org/packages/source/a/acme/acme-" > > - version ".tar.gz")) > > + (uri (pypi-uri "acme" version)) > > (sha256 > > (base32 > > - "0fj0m04zzdxx23vazl00ilqyl3jxqq9c9p4x61pfz1zps7nbzsy3")))) > > + "1yv0gy8akaqp5p2wjpfj8r5i0da04a9qdmlh06rczdkrmk6q680w")))) > > (build-system python-build-system) > > (arguments > > `(#:python ,python-2)) > > @@ -384,14 +383,13 @@ security, and applying best practice development processes.") > > (define-public letsencrypt > > (package > > (name "letsencrypt") > > - (version "0.1.0") > > + (version "0.1.1") > > (source (origin > > (method url-fetch) > > - (uri (string-append "https://pypi.python.org/packages/source/l/" > > - "letsencrypt/letsencrypt-" version ".tar.gz")) > > + (uri (pypi-uri "letsencrypt" version)) > > (sha256 > > (base32 > > - "1zb96xz32k6ai41h5m1l22qi47y71dq69dcmbz7vfm6jfrhjgxl1")))) > > + "1kia3wk66lxyi2fghp9sd7cqgr5qiwdfayz153hi4wpa3q1q8rwf")))) > > (build-system python-build-system) > > (arguments > > `(#:python ,python-2)) > > -- > > 2.6.2 > > > > > > LGTM, thanks! Pushed as ef9006451f. ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-21 19:36 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-12-21 19:17 [PATCH 0/1] Update letsencrypt and acme to 0.1.1 Leo Famulari 2015-12-21 19:17 ` [PATCH 1/1] gnu: letsencrypt and acme: Update " Leo Famulari 2015-12-21 19:22 ` Thompson, David 2015-12-21 19:36 ` Leo Famulari
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.