* bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL.
@ 2017-05-11 2:41 Ethan R. Jones
2017-05-11 2:41 ` bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL Ethan R. Jones
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Ethan R. Jones @ 2017-05-11 2:41 UTC (permalink / raw)
To: 26872; +Cc: Ethan R. Jones
---
gnu/packages/password-utils.scm | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 9daacd871..1f563b31d 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -197,8 +197,14 @@ passwords that could be guessed by crack by filtering them out, at source.")
(source (origin
(method url-fetch)
(uri (list
- (string-append "https://fedorahosted.org/releases/l/i/"
- name "/" name "-" version ".tar.bz2")
+ (string-append "https://github.com/"
+ name
+ "/"
+ name
+ "/releases/download/"
+ name "-" version
+ "/"
+ name "-" version ".tar.bz2")
(string-append "https://launchpad.net/libpwquality/trunk/"
version "/+download/"
name "-" version ".tar.bz2")))
@@ -212,7 +218,8 @@ passwords that could be guessed by crack by filtering them out, at source.")
(inputs
`(("cracklib" ,cracklib)))
(synopsis "Password quality checker")
- (home-page "https://fedorahosted.org/libpwquality/")
+ ;; Fedorahosted was retired, there's no known home page currently.
+ (home-page "https://github.com/libpwquality/libpwquality")
(description
"Libpwquality is a library for password quality checking and generation of
random passwords that pass the checks.")
--
2.12.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL.
2017-05-11 2:41 bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL Ethan R. Jones
@ 2017-05-11 2:41 ` Ethan R. Jones
2017-05-11 3:49 ` Leo Famulari
2017-05-11 2:41 ` bug#26872: [PATCH 3/4] gnu: python2-dogtail: fix homepage URL python-kitchen: fix " Ethan R. Jones
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Ethan R. Jones @ 2017-05-11 2:41 UTC (permalink / raw)
To: 26873; +Cc: Ethan R. Jones
---
gnu/packages/fonts.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index c1f0786df..9dae47aa8 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -321,8 +321,8 @@ sans-serif designed for on-screen reading. It is used by GNOME@tie{}3.")
(version "2.00.1")
(source (origin
(method url-fetch)
- (uri (string-append "https://fedorahosted.org/releases/l/i/"
- "liberation-fonts/liberation-fonts-ttf-"
+ (uri (string-append "http://releases.pagure.org/liberation-fonts/"
+ "liberation-fonts-ttf-"
version ".tar.gz"))
(sha256
(base32
@@ -355,7 +355,7 @@ sans-serif designed for on-screen reading. It is used by GNOME@tie{}3.")
`(("source" ,source)
("tar" ,tar)
("gzip" ,gzip)))
- (home-page "https://fedorahosted.org/liberation-fonts/")
+ (home-page "https://pagure.io/liberation-fonts/")
(synopsis
"Fonts compatible with Arial, Times New Roman, and Courier New")
(description
--
2.12.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#26872: [PATCH 3/4] gnu: python2-dogtail: fix homepage URL python-kitchen: fix homepage URL.
2017-05-11 2:41 bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL Ethan R. Jones
2017-05-11 2:41 ` bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL Ethan R. Jones
@ 2017-05-11 2:41 ` Ethan R. Jones
2017-05-11 3:51 ` Leo Famulari
2017-05-11 2:41 ` bug#26872: [PATCH 4/4] gnu: libaio: fix source URL Ethan R. Jones
2017-05-11 3:48 ` bug#26872: [PATCH 1/4] gnu: libpwquality: " Leo Famulari
3 siblings, 1 reply; 8+ messages in thread
From: Ethan R. Jones @ 2017-05-11 2:41 UTC (permalink / raw)
To: 26872; +Cc: Ethan R. Jones
---
gnu/packages/python.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 60d3868e9..4d30fa0f9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1353,7 +1353,8 @@ Python 3.3+.")
(build-system python-build-system)
(arguments `(#:python ,python-2
#:tests? #f)) ; invalid command "test"
- (home-page "https://fedorahosted.org/dogtail/")
+ ;; Currently no offical homepage.
+ (home-page "https://pypi.python.org/pypi/dogtail/")
(synopsis "GUI test tool and automation framework written in Python")
(description
"Dogtail is a GUI test tool and automation framework written in Python.
@@ -2641,7 +2642,7 @@ version numbers.")
(build-system python-build-system)
(propagated-inputs
`(("python-chardet" ,python-chardet)))
- (home-page "https://fedorahosted.org/kitchen")
+ (home-page "https://pythonhosted.org/kitchen/")
(synopsis "Python API for snippets")
(description "@code{kitchen} module provides a python API for all sorts of
little useful snippets of code that everybody ends up writing for their projects
--
2.12.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#26872: [PATCH 4/4] gnu: libaio: fix source URL
2017-05-11 2:41 bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL Ethan R. Jones
2017-05-11 2:41 ` bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL Ethan R. Jones
2017-05-11 2:41 ` bug#26872: [PATCH 3/4] gnu: python2-dogtail: fix homepage URL python-kitchen: fix " Ethan R. Jones
@ 2017-05-11 2:41 ` Ethan R. Jones
2017-05-11 3:50 ` Leo Famulari
2017-05-11 3:48 ` bug#26872: [PATCH 1/4] gnu: libpwquality: " Leo Famulari
3 siblings, 1 reply; 8+ messages in thread
From: Ethan R. Jones @ 2017-05-11 2:41 UTC (permalink / raw)
To: 26872; +Cc: Ethan R. Jones
---
gnu/packages/linux.scm | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 61c960bfb..61aaf5332 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2686,9 +2686,7 @@ Linux Device Mapper multipathing driver:
(method url-fetch)
(uri (list
(string-append "mirror://debian/pool/main/liba/libaio/"
- name "_" version ".orig.tar.gz")
- (string-append "https://fedorahosted.org/releases/l/i/libaio/"
- name "-" version ".tar.gz")))
+ name "_" version ".orig.tar.gz")))
(sha256
(base32
"0zjzfkwd1kdvq6zpawhzisv7qbq1ffs343i5fs9p498pcf7046g0"))))
--
2.12.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL.
2017-05-11 2:41 bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL Ethan R. Jones
` (2 preceding siblings ...)
2017-05-11 2:41 ` bug#26872: [PATCH 4/4] gnu: libaio: fix source URL Ethan R. Jones
@ 2017-05-11 3:48 ` Leo Famulari
3 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2017-05-11 3:48 UTC (permalink / raw)
To: Ethan R. Jones; +Cc: 26872
[-- Attachment #1: Type: text/plain, Size: 1279 bytes --]
On Wed, May 10, 2017 at 10:41:37PM -0400, Ethan R. Jones wrote:
Thanks! Pushed as c18594dd95f98624b09b51ef5f8aea0a0d4d1743 with the
following cosmetic changes:
First, I filled out all the details in the commit message so it meets
our conventions:
gnu: libpwquality: Update source and home-page URLs.
* gnu/packages/password-utils.scm (libpwquality)[source]: Update URL.
[home-page]: Update URL.
Signed-off-by: Leo Famulari <leo@famulari.name>
This "ChangeLog" format is mentioned in the Guix manual under
'Submitting Patches'. I usually read older, similar commits when I'm
unsure.
> (uri (list
> - (string-append "https://fedorahosted.org/releases/l/i/"
> - name "/" name "-" version ".tar.bz2")
> + (string-append "https://github.com/"
> + name
> + "/"
> + name
> + "/releases/download/"
> + name "-" version
> + "/"
> + name "-" version ".tar.bz2")
I collapsed this to use fewer lines.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL.
2017-05-11 2:41 ` bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL Ethan R. Jones
@ 2017-05-11 3:49 ` Leo Famulari
0 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2017-05-11 3:49 UTC (permalink / raw)
To: Ethan R. Jones; +Cc: 26873-done
[-- Attachment #1: Type: text/plain, Size: 1335 bytes --]
On Wed, May 10, 2017 at 10:41:38PM -0400, Ethan R. Jones wrote:
> ---
> gnu/packages/fonts.scm | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
> index c1f0786df..9dae47aa8 100644
> --- a/gnu/packages/fonts.scm
> +++ b/gnu/packages/fonts.scm
> @@ -321,8 +321,8 @@ sans-serif designed for on-screen reading. It is used by GNOME@tie{}3.")
> (version "2.00.1")
> (source (origin
> (method url-fetch)
> - (uri (string-append "https://fedorahosted.org/releases/l/i/"
> - "liberation-fonts/liberation-fonts-ttf-"
> + (uri (string-append "http://releases.pagure.org/liberation-fonts/"
I made this use HTTPS...
> + "liberation-fonts-ttf-"
> version ".tar.gz"))
> (sha256
> (base32
> @@ -355,7 +355,7 @@ sans-serif designed for on-screen reading. It is used by GNOME@tie{}3.")
> `(("source" ,source)
> ("tar" ,tar)
> ("gzip" ,gzip)))
> - (home-page "https://fedorahosted.org/liberation-fonts/")
> + (home-page "https://pagure.io/liberation-fonts/")
... and pushed as 779669abfd68489b7b3c9efe0ff5af5e672a390c. Thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#26872: [PATCH 4/4] gnu: libaio: fix source URL
2017-05-11 2:41 ` bug#26872: [PATCH 4/4] gnu: libaio: fix source URL Ethan R. Jones
@ 2017-05-11 3:50 ` Leo Famulari
0 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2017-05-11 3:50 UTC (permalink / raw)
To: Ethan R. Jones; +Cc: 26872
[-- Attachment #1: Type: text/plain, Size: 933 bytes --]
On Wed, May 10, 2017 at 10:41:40PM -0400, Ethan R. Jones wrote:
> ---
> gnu/packages/linux.scm | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
> index 61c960bfb..61aaf5332 100644
> --- a/gnu/packages/linux.scm
> +++ b/gnu/packages/linux.scm
> @@ -2686,9 +2686,7 @@ Linux Device Mapper multipathing driver:
> (method url-fetch)
> (uri (list
> (string-append "mirror://debian/pool/main/liba/libaio/"
> - name "_" version ".orig.tar.gz")
> - (string-append "https://fedorahosted.org/releases/l/i/libaio/"
> - name "-" version ".tar.gz")))
> + name "_" version ".orig.tar.gz")))
Pushed (with a modified commit message) as
4929a0617a118068cc43819f6b7dd85eafadbf61. Thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#26872: [PATCH 3/4] gnu: python2-dogtail: fix homepage URL python-kitchen: fix homepage URL.
2017-05-11 2:41 ` bug#26872: [PATCH 3/4] gnu: python2-dogtail: fix homepage URL python-kitchen: fix " Ethan R. Jones
@ 2017-05-11 3:51 ` Leo Famulari
0 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2017-05-11 3:51 UTC (permalink / raw)
To: Ethan R. Jones; +Cc: 26872-done
[-- Attachment #1: Type: text/plain, Size: 1223 bytes --]
On Wed, May 10, 2017 at 10:41:39PM -0400, Ethan R. Jones wrote:
I split this into two commits: one per package.
> ---
> gnu/packages/python.scm | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index 60d3868e9..4d30fa0f9 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -1353,7 +1353,8 @@ Python 3.3+.")
> (build-system python-build-system)
> (arguments `(#:python ,python-2
> #:tests? #f)) ; invalid command "test"
> - (home-page "https://fedorahosted.org/dogtail/")
> + ;; Currently no offical homepage.
> + (home-page "https://pypi.python.org/pypi/dogtail/")
Pushed as 5ee684ff2f1eadf292cac572e9e02aef5d2cdd35
> @@ -2641,7 +2642,7 @@ version numbers.")
> (build-system python-build-system)
> (propagated-inputs
> `(("python-chardet" ,python-chardet)))
> - (home-page "https://fedorahosted.org/kitchen")
> + (home-page "https://pythonhosted.org/kitchen/")
I found the GitHub repo where this is being developed by Fedora, so I
changed it to use that URL in cb542830a23926a3df321b37d9e2aa914ea7b8c0.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-05-11 3:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-11 2:41 bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL Ethan R. Jones
2017-05-11 2:41 ` bug#26873: [PATCH 2/4] gnu: font-liberation: fix source and homepage URL Ethan R. Jones
2017-05-11 3:49 ` Leo Famulari
2017-05-11 2:41 ` bug#26872: [PATCH 3/4] gnu: python2-dogtail: fix homepage URL python-kitchen: fix " Ethan R. Jones
2017-05-11 3:51 ` Leo Famulari
2017-05-11 2:41 ` bug#26872: [PATCH 4/4] gnu: libaio: fix source URL Ethan R. Jones
2017-05-11 3:50 ` Leo Famulari
2017-05-11 3:48 ` bug#26872: [PATCH 1/4] gnu: libpwquality: " Leo Famulari
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).