* update python-urwid, python-urwidtrees
@ 2016-08-23 5:14 Troy Sankey
2016-08-23 10:45 ` Mark H Weaver
0 siblings, 1 reply; 2+ messages in thread
From: Troy Sankey @ 2016-08-23 5:14 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1.1: Type: text/plain, Size: 368 bytes --]
Also throwing in a third patch to update comments in the alot package
definition. It's related because it's the same note as in python-urwidtrees:
author only distributes via github, not pypi.
FWIW, I'm submitting these to fix a cosmetic bug in alot. I also did check the
other consumer of python-urwid (khal), and it does not seem to break anything.
Troy
[-- Attachment #1.2: 0003-gnu-alot-Fixup-comments.patch --]
[-- Type: text/x-diff, Size: 1653 bytes --]
From fdc5364cce561e7a5067e0bec256899847f82a41 Mon Sep 17 00:00:00 2001
From: Troy Sankey <sankeytms@gmail.com>
Date: Sat, 13 Aug 2016 12:09:22 -0400
Subject: [PATCH 3/3] gnu: alot: Fixup comments.
* gnu/packages/mail.scm (alot): Add note about distribution method,
and adhere to double semi-colon norm.
---
gnu/packages/mail.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 99af845..bec3bc5 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -408,7 +408,9 @@ attachments, create new maildirs, and so on.")
(version "0.3.7")
(source (origin
(method url-fetch)
- ; v0.3.7 not on PyPi yet, so use github instead
+ ;; package author intends on distributing via github rather
+ ;; than pypi:
+ ;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
(uri (string-append "https://github.com/pazz/alot/archive/"
version ".tar.gz"))
(file-name (string-append "alot-" version ".tar.gz"))
@@ -418,8 +420,8 @@ attachments, create new maildirs, and so on.")
(build-system python-build-system)
(arguments
`(#:tests? #f ; no tests
- ; python 3 is unsupported, more info:
- ; https://github.com/pazz/alot/blob/0.3.7/docs/source/faq.rst
+ ;; python 3 is unsupported, more info:
+ ;; https://github.com/pazz/alot/blob/0.3.7/docs/source/faq.rst
#:python ,python-2))
(inputs
`(("python2-magic" ,python2-magic)
--
2.9.2
[-- Attachment #1.3: 0002-gnu-python-urwidtrees-Update-to-1.0.2.patch --]
[-- Type: text/x-diff, Size: 1526 bytes --]
From 213f3035df3ea8caa1695debfcf6ea946ff4dc01 Mon Sep 17 00:00:00 2001
From: Troy Sankey <sankeytms@gmail.com>
Date: Sat, 13 Aug 2016 12:08:05 -0400
Subject: [PATCH 2/3] gnu: python-urwidtrees: Update to 1.0.2.
* gnu/packages/python.scm (python-urwidtrees): Update to 1.0.2. Add note about
distribution method.
---
gnu/packages/python.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index cd90c52..79b67a5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4521,14 +4521,18 @@ features useful for text console applications.")
(define-public python-urwidtrees
(package
(name "python-urwidtrees")
- (version "1.0.1.1")
+ (version "1.0.2")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "urwidtrees" version))
+ ;; package author intends on distributing via github rather than pypi:
+ ;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
+ (uri (string-append "https://github.com/pazz/urwidtrees/archive/"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1zcvy12s7h3fazf33d6y7b4v19p8hg95xqwhqlmw6jz9fq76v9h8"))))
+ "0d30lyd3s2a97rhqfax5w9ssqds2z6aydqx3c6j2c2lk3cb4ngvh"))))
(build-system python-build-system)
(arguments
'(#:tests? #f)) ; no tests
--
2.9.2
[-- Attachment #1.4: 0001-gnu-python-urwid-Update-to-1.3.1.patch --]
[-- Type: text/x-diff, Size: 1496 bytes --]
From a6c47dc9631948ade8436acd42bfe898a920e9be Mon Sep 17 00:00:00 2001
From: Troy Sankey <sankeytms@gmail.com>
Date: Fri, 12 Aug 2016 23:33:24 -0400
Subject: [PATCH 1/3] gnu: python-urwid: Update to 1.3.1.
* gnu/packages/python.scm (python-urwid): Update to 1.3.1.
---
gnu/packages/python.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index eb949fa..cd90c52 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4487,21 +4487,21 @@ and written in Python.")
(define-public python-urwid
(package
(name "python-urwid")
- (version "1.3.0")
+ (version "1.3.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "urwid" version))
(sha256
(base32
- "18mb0yy94sjc434rd61m2sfnw27sa0nyrszpj5a9r9zh7fnlzw19"))))
+ "18cnd1wdjcas08x5qwa5ayw6jsfcn33w4d9f7q3s29fy6qzc1kng"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
;; Disable failing test. Bug filed upstream:
;; https://github.com/wardi/urwid/issues/164
- ;; TODO: check again for python-urwid > 1.3.0 or python > 3.4.3.
+ ;; TODO: check again for python-urwid > 1.3.1 or python > 3.4.3.
(add-after 'unpack 'disable-failing-test
(lambda _
(substitute* "urwid/tests/test_event_loops.py"
--
2.9.2
[-- Attachment #2: signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iQIcBAABCAAGBQJXu9usAAoJEIRGmXXw0dCUrdAQAKn6PW07naWWX3shhHIJJt1K
VIkWu94TsejDx7dCzV+iT6R29TA++BMrYAvsf8IJktY/wn1glLWEJJWKpJmFkY+9
vHAdh8JcNjbv1gwrC0753K25rWbgoOJH3kwoKx9em6R9clBa0L06mx5excPXg7AH
euGcsPHp7L33OFKVLb1wGFrnia7C5fcRnYB159oJc44WTQVomxLnHyfs4ysMYWxr
NN9J7tMovEtgcEKKbzcix7m3Y2In+r9EyMGX/9CEa/6wkmQwKZ3Ja6RKGHvgM2+6
VJLi+K5UPZR4arPZDFxtNXA45mEdQmqjsD9W/Iciz+UpZbtgQvRyoaSX0QxFO8DQ
5aUkwGSNvRsOUgoce4A4uibov8rmZ6bq+fFHzdfqYuGfNpFydH1eA8XwacByzt8h
s/QxnqOKhXEoxHERe/vvdHVOJhe6+JHf9/8bVYOsdxffyjK1oHXGxXshjX4QeeD+
Btr6uzKOtJJfzFzIU3FN9R8tUN2F7dCTtM0BfB3lM0pK+IOao09c9c5vd9Zm0lSn
sLQ9k8jt5TjbdrzLJalNZGZKi1UxHl6krXPgaWAecAPKSlnDTmfQ5GNqenx8pD6J
a6ueOZ6S8R0VF4mkJnp837lQPiCTY32GOODilXUY8FJ0MRDHsWOsH95kaEjAmURZ
JXtrf78wb6E0zDUltoRq
=lYLJ
-----END PGP SIGNATURE-----
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: update python-urwid, python-urwidtrees
2016-08-23 5:14 update python-urwid, python-urwidtrees Troy Sankey
@ 2016-08-23 10:45 ` Mark H Weaver
0 siblings, 0 replies; 2+ messages in thread
From: Mark H Weaver @ 2016-08-23 10:45 UTC (permalink / raw)
To: Troy Sankey; +Cc: guix-devel
Troy Sankey <sankeytms@gmail.com> writes:
> Also throwing in a third patch to update comments in the alot package
> definition. It's related because it's the same note as in python-urwidtrees:
> author only distributes via github, not pypi.
>
> FWIW, I'm submitting these to fix a cosmetic bug in alot. I also did check the
> other consumer of python-urwid (khal), and it does not seem to break anything.
>
> Troy
>
> From fdc5364cce561e7a5067e0bec256899847f82a41 Mon Sep 17 00:00:00 2001
> From: Troy Sankey <sankeytms@gmail.com>
> Date: Sat, 13 Aug 2016 12:09:22 -0400
> Subject: [PATCH 3/3] gnu: alot: Fixup comments.
> From 213f3035df3ea8caa1695debfcf6ea946ff4dc01 Mon Sep 17 00:00:00 2001
> From: Troy Sankey <sankeytms@gmail.com>
> Date: Sat, 13 Aug 2016 12:08:05 -0400
> Subject: [PATCH 2/3] gnu: python-urwidtrees: Update to 1.0.2.
> From a6c47dc9631948ade8436acd42bfe898a920e9be Mon Sep 17 00:00:00 2001
> From: Troy Sankey <sankeytms@gmail.com>
> Date: Fri, 12 Aug 2016 23:33:24 -0400
> Subject: [PATCH 1/3] gnu: python-urwid: Update to 1.3.1.
Pushed, thanks! :)
Mark
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-08-23 10:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-23 5:14 update python-urwid, python-urwidtrees Troy Sankey
2016-08-23 10:45 ` Mark H Weaver
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.