* [bug#32635] Use https in 'gnu/packages/mp3.scm'
@ 2018-09-04 19:02 Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 1/2] gnu: eyed3: Update home page Alex Vong
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Alex Vong @ 2018-09-04 19:02 UTC (permalink / raw)
To: 32635; +Cc: alexvong1995
[-- Attachment #1: Type: text/plain, Size: 173 bytes --]
Tags: patch
Hello,
The following patches update urls in 'gnu/packages/mp3.scm' to use
https. For the package 'eyed3', I update it to use the redirected url.
Cheers,
Alex
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#32635] [PATCH 1/2] gnu: eyed3: Update home page.
2018-09-04 19:02 [bug#32635] Use https in 'gnu/packages/mp3.scm' Alex Vong
@ 2018-09-04 19:06 ` Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 2/2] gnu: mp3: Use HTTPS where possible Alex Vong
2018-09-05 12:58 ` bug#32635: Use https in 'gnu/packages/mp3.scm' 宋文武
2 siblings, 0 replies; 4+ messages in thread
From: Alex Vong @ 2018-09-04 19:06 UTC (permalink / raw)
To: 32635; +Cc: alexvong1995
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0001-gnu-eyed3-Update-home-page.patch --]
[-- Type: text/x-diff, Size: 966 bytes --]
From ffe7fd23fb4b5c1af848f3a51fc18ed9cebe47d5 Mon Sep 17 00:00:00 2001
From: Alex Vong <alexvong1995@gmail.com>
Date: Wed, 5 Sep 2018 02:10:48 +0800
Subject: [PATCH 1/2] gnu: eyed3: Update home page.
* gnu/packages/mp3.scm (eyed3)[home-page]: Update to redirected.
---
gnu/packages/mp3.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm
index 579127d06..fb919c6e6 100644
--- a/gnu/packages/mp3.scm
+++ b/gnu/packages/mp3.scm
@@ -491,7 +491,7 @@ specifically mp3 files containing ID3 metadata (i.e. song info). It provides a
command-line tool (eyeD3) and a Python library (import eyed3) that can be used
to write your own applications or plugins that are callable from the
command-line tool.")
- (home-page "http://eyed3.nicfit.net/")
+ (home-page "https://eyed3.readthedocs.io/en/latest/")
(license license:gpl2+)))
(define-public chromaprint
--
2.18.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#32635] [PATCH 2/2] gnu: mp3: Use HTTPS where possible.
2018-09-04 19:02 [bug#32635] Use https in 'gnu/packages/mp3.scm' Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 1/2] gnu: eyed3: Update home page Alex Vong
@ 2018-09-04 19:06 ` Alex Vong
2018-09-05 12:58 ` bug#32635: Use https in 'gnu/packages/mp3.scm' 宋文武
2 siblings, 0 replies; 4+ messages in thread
From: Alex Vong @ 2018-09-04 19:06 UTC (permalink / raw)
To: 32635; +Cc: alexvong1995
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0002-gnu-mp3-Use-HTTPS-where-possible.patch --]
[-- Type: text/x-diff, Size: 3295 bytes --]
From e8b78839d99a6f1b66f405f90644bb3c0fe69f06 Mon Sep 17 00:00:00 2001
From: Alex Vong <alexvong1995@gmail.com>
Date: Wed, 5 Sep 2018 02:16:53 +0800
Subject: [PATCH 2/2] gnu: mp3: Use HTTPS where possible.
* gnu/packages/mp3.scm (libmad)[home-page]: Use HTTPS.
(libid3tag)[home-page]: Likewise.
(mp3info)[source, home-page]: Likewise.
(mpg123)[source]: Likewise.
(libmpcdec)[source, home-page]: Likewise.
---
gnu/packages/mp3.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm
index fb919c6e6..c9effbafa 100644
--- a/gnu/packages/mp3.scm
+++ b/gnu/packages/mp3.scm
@@ -84,7 +84,7 @@ fully implemented.
This package contains the library.")
(license license:gpl2+)
- (home-page "http://www.underbit.com/products/mad/")))
+ (home-page "https://www.underbit.com/products/mad/")))
(define-public libid3tag
(package
@@ -105,7 +105,7 @@ This package contains the library.")
"Libid3tag is a library for reading ID3 tags, both ID3v1 and the various
versions of ID3v2.")
(license license:gpl2+)
- (home-page "http://www.underbit.com/products/mad/")))
+ (home-page "https://www.underbit.com/products/mad/")))
(define-public id3lib
(package
@@ -184,7 +184,7 @@ Speex, WavPack TrueAudio, WAV, AIFF, MP4 and ASF files.")
(source (origin
(method url-fetch)
(uri (string-append
- "http://ibiblio.org"
+ "https://ibiblio.org"
"/pub/linux/apps/sound/mp3-utils/mp3info/mp3info-"
version ".tgz"))
(sha256
@@ -231,7 +231,7 @@ Speex, WavPack TrueAudio, WAV, AIFF, MP4 and ASF files.")
(inputs
`(("gtk+" ,gtk+-2)
("ncurses" ,ncurses)))
- (home-page "http://www.ibiblio.org/mp3info/")
+ (home-page "https://www.ibiblio.org/mp3info/")
(synopsis "MP3 technical info viewer and ID3 1.x tag editor")
(description
"MP3Info is a little utility used to read and modify the ID3 tags of MP3
@@ -309,7 +309,7 @@ This package contains the binary.")
(uri (list (string-append "mirror://sourceforge/mpg123/mpg123/"
version "/mpg123-" version ".tar.bz2")
(string-append
- "http://www.mpg123.org/download/mpg123-"
+ "https://www.mpg123.org/download/mpg123-"
version ".tar.bz2")))
(sha256
(base32
@@ -413,7 +413,7 @@ for album and track information.")
(source (origin
(method url-fetch)
(uri (string-append
- "http://files.musepack.net/source/libmpcdec-"
+ "https://files.musepack.net/source/libmpcdec-"
version ".tar.bz2"))
(sha256
(base32
@@ -424,7 +424,7 @@ for album and track information.")
"This library supports decoding of the Musepack (MPC) audio compression
format.")
(license license:bsd-3)
- (home-page "http://musepack.net")))
+ (home-page "https://musepack.net")))
(define-public mpc123
(package
--
2.18.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#32635: Use https in 'gnu/packages/mp3.scm'
2018-09-04 19:02 [bug#32635] Use https in 'gnu/packages/mp3.scm' Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 1/2] gnu: eyed3: Update home page Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 2/2] gnu: mp3: Use HTTPS where possible Alex Vong
@ 2018-09-05 12:58 ` 宋文武
2 siblings, 0 replies; 4+ messages in thread
From: 宋文武 @ 2018-09-05 12:58 UTC (permalink / raw)
To: Alex Vong; +Cc: 32635-done
Alex Vong <alexvong1995@gmail.com> writes:
> Tags: patch
>
> Hello,
>
> The following patches update urls in 'gnu/packages/mp3.scm' to use
> https. For the package 'eyed3', I update it to use the redirected url.
>
> Cheers,
> Alex
Thanks for the patches, pushed :-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-09-05 13:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-04 19:02 [bug#32635] Use https in 'gnu/packages/mp3.scm' Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 1/2] gnu: eyed3: Update home page Alex Vong
2018-09-04 19:06 ` [bug#32635] [PATCH 2/2] gnu: mp3: Use HTTPS where possible Alex Vong
2018-09-05 12:58 ` bug#32635: Use https in 'gnu/packages/mp3.scm' 宋文武
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.