root@jw:/usr/ports/sysutils/linuxfdisk# make => util-linux-2.11z.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch http://kernel.org/pub/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2 fetch: http://kernel.org/pub/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2: Not Found => Attempting to fetch http://ftp.ntu.edu.tw/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2 fetch: http://ftp.ntu.edu.tw/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2: size unknown fetch: http://ftp.ntu.edu.tw/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2: size of remote file is not known util-linux-2.11z.tar.bz2 61 B 578 kBps ===> Extracting for linuxfdisk-2.11z => SHA256 Checksum mismatch for util-linux-2.11z.tar.bz2. ===> Refetch for 1 more times files: util-linux-2.11z.tar.bz2 => util-linux-2.11z.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch http://kernel.org/pub/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2 fetch: http://kernel.org/pub/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2: Not Found => Attempting to fetch http://ftp.ntu.edu.tw/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2 fetch: http://ftp.ntu.edu.tw/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2: size unknown fetch: http://ftp.ntu.edu.tw/linux/utils/util-linux/old/util-linux-2.11z.tar.bz2: size of remote file is not known util-linux-2.11z.tar.bz2 61 B 602 kBps => SHA256 Checksum mismatch for util-linux-2.11z.tar.bz2. ===> Giving up on fetching files: util-linux-2.11z.tar.bz2 Make sure the Makefile and distinfo file (/media/dvlfiles/build/ports/sysutils/linuxfdisk/distinfo) are up to date. If you are absolutely sure you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** [checksum] Error code 1 Stop in /media/dvlfiles/build/ports/sysutils/linuxfdisk. *** [checksum] Error code 1 Stop in /media/dvlfiles/build/ports/sysutils/linuxfdisk.
Maintainer of sysutils/linuxfdisk, Please note that PR ports/176415 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/176415 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-ports-bugs->pclin I'll take it.
The proper fix, of course, is to update the port to newer version (it is also better due to changes in partitioning approaches, e.g. due to 4K boundary trend). But I can't do it in a few days. My proposition is to work around it: --- Makefile 2012-11-17 08:01:37.000000000 +0200 +++ Makefile 2013-02-25 16:18:00.409489825 +0200 @@ -8,9 +8,7 @@ PORTNAME= linuxfdisk PORTVERSION= 2.11z CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_KERNEL_ORG} \ - ftp://segfault.kiev.ua/pub/ -MASTER_SITE_SUBDIR= linux/utils/util-linux/old +MASTER_SITES= ftp://segfault.kiev.ua/pub/ DISTNAME= util-linux-${PORTVERSION} EXTRACT_SUFX= .tar.bz2 and then I'll do maintainer update as soon as really possible. -netch-
Author: pclin Date: Mon Feb 25 15:36:08 2013 New Revision: 312925 URL: http://svnweb.freebsd.org/changeset/ports/312925 Log: - Update MASTER_SITES [1] PR: ports/176415 Submitted by: Sayetsky Anton <vsjcfm@gmail.com> Approved by: Valentin Nechayev <netch@netch.kiev.ua> (maintainer) [1] Approved by: swills (mentor) Modified: head/sysutils/linuxfdisk/Makefile Modified: head/sysutils/linuxfdisk/Makefile ============================================================================== --- head/sysutils/linuxfdisk/Makefile Mon Feb 25 15:02:58 2013 (r312924) +++ head/sysutils/linuxfdisk/Makefile Mon Feb 25 15:36:08 2013 (r312925) @@ -1,16 +1,12 @@ -# New ports collection makefile for: linuxfdisk -# Date created: Mon Jun 16 14:52:38 UTC 2003 -# Whom: netch@netch.kiev.ua -# +# Created by: netch@netch.kiev.ua # $FreeBSD$ -# PORTNAME= linuxfdisk PORTVERSION= 2.11z CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_KERNEL_ORG} \ +MASTER_SITES= http://ftp.sunet.se/pub/Linux/kernel.org/linux/utils/util-linux/v2.11/ \ + http://ftp.be.debian.org/pub/linux/utils/util-linux/v2.11/ \ ftp://segfault.kiev.ua/pub/ -MASTER_SITE_SUBDIR= linux/utils/util-linux/old DISTNAME= util-linux-${PORTVERSION} EXTRACT_SUFX= .tar.bz2 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed and added two more mirror sites to prevent fetch failed. Thanks!