Bug 182019 - archivers/zip: Updated mirror site
Summary: archivers/zip: Updated mirror site
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-11 19:30 UTC by A.J.
Modified: 2013-09-14 08:00 UTC (History)
0 users

See Also:


Attachments
file.diff (408 bytes, patch)
2013-09-11 19:30 UTC, A.J.
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description A.J. 2013-09-11 19:30:00 UTC
Current distfile mirror is inoperational. New mirror works.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-11 19:30:08 UTC
Class Changed
From-To: maintainer-update->change-request

Fix category (submitter is not maintainer) (via the GNATS Auto Assign 
Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-11 19:30:09 UTC
Maintainer of archivers/zip,

Please note that PR ports/182019 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/182019

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-11 19:30:10 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 A.J. "Fonz" van Werven 2013-09-11 19:33:46 UTC
Edwin Groothuis wrote:

> Maintainer of archivers/zip,
> 
> Please note that PR ports/182019 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/182019
> 
> -- 
> Edwin Groothuis via the GNATS Auto Assign Tool
> edwin@FreeBSD.org


Submitted it myself.

AvW

-- 
I'm not completely useless, I can be used as a bad example.
Comment 5 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-09-14 06:47:11 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

I'll take it.
Comment 6 dfilter service freebsd_committer freebsd_triage 2013-09-14 07:51:07 UTC
Author: sunpoet
Date: Sat Sep 14 06:50:59 2013
New Revision: 327223
URL: http://svnweb.freebsd.org/changeset/ports/327223

Log:
  - Update MASTER_SITES
  - While I'm here:
    - Cleanup Makefile header
    - Add LICENSE
    - Convert to new options framework
    - Simplify PORTDOCS installation
  
  PR:		ports/182019
  Submitted by:	A. J. <freebsd@skysmurf.nl> (maintainer)

Modified:
  head/archivers/zip/Makefile

Modified: head/archivers/zip/Makefile
==============================================================================
--- head/archivers/zip/Makefile	Sat Sep 14 06:48:02 2013	(r327222)
+++ head/archivers/zip/Makefile	Sat Sep 14 06:50:59 2013	(r327223)
@@ -1,20 +1,22 @@
-# New ports collection makefile for:	Info-ZIP
-# Date created:				22 Dec 1994
-# Whom:					Andrey Chernov <ache@FreeBSD.org>
-#
+# Created by: Andrey Chernov <ache@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	zip
 PORTVERSION=	3.0
 CATEGORIES=	archivers
 MASTER_SITES=	SF/info${PORTNAME}/Zip%203.x%20%28latest%29/${PORTVERSION} \
-		ftp://ftp.skysmurf.nl/FreeBSD/distfiles/
+		http://www.skysmurf.nl/comp/FreeBSD/distfiles/
 DISTNAME=	${PORTNAME}${PORTVERSION:S/.//g}
 
 MAINTAINER=	freebsd@skysmurf.nl
 COMMENT=	Create/update ZIP files compatible with PKZIP
 
+# License is BSD-based, but not identical, so intall with documentation
+LICENSE=	BSD
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+OPTIONS_DEFINE=	DOCS
+
 MAKEFILE=	unix/Makefile
 ALL_TARGET=	generic
 
@@ -22,18 +24,16 @@ PLIST_FILES=	bin/zip bin/zipcloak bin/zi
 MAN1=		zip.1 zipcloak.1 zipnote.1 zipsplit.1
 PORTDOCS=	*
 
+.include <bsd.port.options.mk>
 
 do-install:
 .for p in ${PLIST_FILES:T}
 	${INSTALL_PROGRAM} ${WRKSRC}/${p} ${PREFIX}/bin
 	${INSTALL_MAN} ${WRKSRC}/man/${p}.1 ${MANPREFIX}/man/man1
 .endfor
-.if !defined(NOPORTDOCS)
-	@${MKDIR} ${DOCSDIR}
-# License is BSD-based, but not identical, so intall with documentation
-. for d in CHANGES LICENSE README* TODO WHATSNEW WHERE
-	${INSTALL_DATA} ${WRKSRC}/${d} ${DOCSDIR}
-. endfor
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+	cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES README* TODO WHATSNEW WHERE ${DOCSDIR}
 .endif
 
 .include <bsd.port.mk>
_______________________________________________
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"
Comment 7 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-09-14 07:51:37 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!