Summary: | [security/gnutls] MASTER_SITES is wrong because of extra .x on PORTVERSION | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Joseph Mingrone <jrm> | ||||
Component: | Individual Port(s) | Assignee: | Mark Felder <feld> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Some People | CC: | cjpm, feld | ||||
Priority: | --- | Flags: | bugzilla:
maintainer-feedback?
(bdrewery) |
||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Also Mk/bsd.sites.mk needs a review .if !defined(IGNORE_MASTER_SITE_GNUPG) MASTER_SITE_GNUPG+= \ http://mirror.tje.me.uk/pub/mirrors/ftp.gnupg.org/%SUBDIR%/ \ http://dotsrc.org/%SUBDIR%/ \ ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://ftp.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://mirror.cict.fr/gnupg/%SUBDIR%/ \ http://artfiles.org/gnupg.org/%SUBDIR%/ \ ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://ftp.crysys.hu/pub/gnupg/%SUBDIR%/ \ ftp://ftp.hi.is/pub/mirrors/gnupg/%SUBDIR%/ \ http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://ftp.sunet.se/pub/security/gnupg/%SUBDIR%/ \ ftp://mirror.switch.ch/mirror/gnupg/%SUBDIR%/ \ http://www.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ http://www.ring.gr.jp/pub/net/gnupg/%SUBDIR%/ \ ftp://ftp.gnupg.org/gcrypt/%SUBDIR%/ .endif A commit references this bug: Author: feld Date: Fri Aug 14 20:38:39 UTC 2015 New revision: 394256 URL: https://svnweb.freebsd.org/changeset/ports/394256 Log: Update MASTER_SITES to fix fetching problem due to abnormal version number PR: 202332 Changes: head/security/gnutls/Makefile (In reply to Carlos J Puga Medina from comment #1) I agree, some of those sites are dead. I have a fix coming soon for that too. A commit references this bug: Author: feld Date: Fri Aug 14 20:44:21 UTC 2015 New revision: 394257 URL: https://svnweb.freebsd.org/changeset/ports/394257 Log: MFH: r394256 Update MASTER_SITES to fix fetching problem due to abnormal version number PR: 202332 Approved by: ports-secteam (with hat) Changes: _U branches/2015Q3/ branches/2015Q3/security/gnutls/Makefile A commit references this bug: Author: feld Date: Fri Aug 14 20:59:30 UTC 2015 New revision: 394258 URL: https://svnweb.freebsd.org/changeset/ports/394258 Log: Update MASTER_SITE_GNUPG I took all of the mirrors I could find and ran them against sysutils/fastest_sites from a server in a datacenter in Chicago. It removed a few dead mirrors and I have added a few new ones. Hopefully this provides a better overall experience. New order is roughly: UK, NL, IE, DE, etc PR: 202332 Changes: head/Mk/bsd.sites.mk |
Created attachment 159876 [details] fix MASTER_SITES MASTER_SITES was set based on PORTVERSION, but with a new .x on the end of PORTVERSION, MASTER_SITES was broken. The attached patch sets the correct directory for MASTER_SITES.