Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 6B5607A282 for ; Sat, 17 Dec 2016 13:39:42 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 200A9855D5; Sat, 17 Dec 2016 13:39:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A3F73855E1 for ; Sat, 17 Dec 2016 13:39:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id qJdvyZ0OaFyg for ; Sat, 17 Dec 2016 13:39:41 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2E78D855D5 for ; Sat, 17 Dec 2016 13:39:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2C223FBA6; Sat, 17 Dec 2016 13:39:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1481981981157790" MIME-Version: 1.0 Date: Sat, 17 Dec 2016 13:39:41 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/lang/racket To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20161217133941.2C223FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1481981981157790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat Dec 17 13:39:41 UTC 2016 Modified Files: pkgsrc/lang/racket: Makefile Log Message: Fixed pkglint warnings. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/lang/racket/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1481981981157790 Content-Disposition: inline Content-Length: 2030 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/racket/Makefile diff -u pkgsrc/lang/racket/Makefile:1.54 pkgsrc/lang/racket/Makefile:1.55 --- pkgsrc/lang/racket/Makefile:1.54 Mon Dec 12 12:08:57 2016 +++ pkgsrc/lang/racket/Makefile Sat Dec 17 13:39:41 2016 @@ -1,16 +1,16 @@ -# $NetBSD: Makefile,v 1.54 2016/12/12 12:08:57 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2016/12/17 13:39:41 rillig Exp $ PKGNAME= racket-6.7 -DISTNAME= $(PKGNAME_NOREV)-src +DISTNAME= ${PKGNAME_NOREV}-src CATEGORIES= lang -MASTER_SITES_PLT= http://download.racket-lang.org/installers/$(PKGVERSION_NOREV)/ \ - http://www.eecs.northwestern.edu/racket/$(PKGVERSION_NOREV)/ \ - http://www.cs.utah.edu/plt/installers/$(PKGVERSION_NOREV)/ \ - http://mirror.informatik.uni-tuebingen.de/mirror/racket/$(PKGVERSION_NOREV)/ \ - ftp://infogroep.be/pub/racket/installers/$(PKGVERSION_NOREV)/ +MASTER_SITES_PLT= http://download.racket-lang.org/installers/${PKGVERSION_NOREV}/ \ + http://www.eecs.northwestern.edu/racket/${PKGVERSION_NOREV}/ \ + http://www.cs.utah.edu/plt/installers/${PKGVERSION_NOREV}/ \ + http://mirror.informatik.uni-tuebingen.de/mirror/racket/${PKGVERSION_NOREV}/ \ + ftp://infogroep.be/pub/racket/installers/${PKGVERSION_NOREV}/ # Pre-release: #MASTER_SITES_PLT= http://pre-release.racket-lang.org/installers/ -MASTER_SITES= $(MASTER_SITES_PLT) +MASTER_SITES= ${MASTER_SITES_PLT} EXTRACT_SUFX= .tgz MAINTAINER= asau@inbox.ru @@ -20,7 +20,7 @@ LICENSE= gnu-lgpl-v2 CONFLICTS+= drscheme-[0-9]* mzscheme-[0-9]* racket-textual-[0-9]* -WRKSRC= $(WRKDIR)/$(PKGNAME_NOREV) +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} GNU_CONFIGURE= yes CONFIGURE_DIRS= src @@ -47,8 +47,8 @@ REPLACE_RACKET+= share/pkgs/racket-doc/f REPLACE_INTERPRETER+= racket REPLACE.racket.old= .*racket -REPLACE.racket.new= $(LOCALBASE)/bin/racket -REPLACE_FILES.racket= $(REPLACE_RACKET) +REPLACE.racket.new= ${LOCALBASE}/bin/racket +REPLACE_FILES.racket= ${REPLACE_RACKET} .include "../../databases/sqlite3/buildlink3.mk" .include "../../devel/pango/buildlink3.mk" --_----------=_1481981981157790--