From owner-svn-ports-all@freebsd.org Wed Sep 23 09:23:45 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA69D3F3DCA; Wed, 23 Sep 2020 09:23:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BxCR55tzHz4Wv0; Wed, 23 Sep 2020 09:23:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 95208E15A; Wed, 23 Sep 2020 09:23:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08N9Nj5l062751; Wed, 23 Sep 2020 09:23:45 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08N9Nir2062747; Wed, 23 Sep 2020 09:23:44 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009230923.08N9Nir2062747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Wed, 23 Sep 2020 09:23:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549673 - in head/lang/snobol4: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/lang/snobol4: . files X-SVN-Commit-Revision: 549673 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Sep 2020 09:23:46 -0000 Author: se Date: Wed Sep 23 09:23:44 2020 New Revision: 549673 URL: https://svnweb.freebsd.org/changeset/ports/549673 Log: Upgrade to version 2.1.6 Added: head/lang/snobol4/files/LICENSE (contents, props changed) Deleted: head/lang/snobol4/files/patch-include_macros.h Modified: head/lang/snobol4/Makefile head/lang/snobol4/distinfo head/lang/snobol4/files/patch-Makefile2.m4 Modified: head/lang/snobol4/Makefile ============================================================================== --- head/lang/snobol4/Makefile Wed Sep 23 08:56:16 2020 (r549672) +++ head/lang/snobol4/Makefile Wed Sep 23 09:23:44 2020 (r549673) @@ -2,31 +2,33 @@ # $FreeBSD$ PORTNAME= snobol4 -PORTVERSION= 2.0 -PORTREVISION= 1 +PORTVERSION= 2.1.6 CATEGORIES= lang MASTER_SITES= ftp://ftp.ultimate.com/snobol/ MAINTAINER= ports@FreeBSD.org COMMENT= Port of Macro SNOBOL4, supports full SNOBOL4 plus SPITBOL +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${PATCHDIR}/LICENSE + +USES= gmake libedit HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} \ --snolibdir=${PREFIX}/lib/${PORTNAME} CONFIGURE_ENV+= DL_EXT=".so" -USES= gmake -PLIST_SUB+= VERSION=${PORTVERSION} ALL_TARGET= xsnobol4 +LDFLAGS+= -L${PREFIX}/lib DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} +PLIST_SUB+= VERSION=${PORTVERSION} PORTDOCS= * OPTIONS_DEFINE= DOCS + post-patch: @${REINPLACE_CMD} 's:[^=]*\.tmp$$:${WRKSRC}/&:' ${WRKSRC}/configure - @${REINPLACE_CMD} '/grep/s/$$/| egrep -v "built-in|command line"/' \ - ${WRKSRC}/cc-M @${REINPLACE_CMD} 's:../snobol4:../xsnobol4:' \ ${WRKSRC}/doc/Makefile ${WRKSRC}/modules/*/Makefile @${REINPLACE_CMD} -e 's::${PREFIX}/bin:' \ Modified: head/lang/snobol4/distinfo ============================================================================== --- head/lang/snobol4/distinfo Wed Sep 23 08:56:16 2020 (r549672) +++ head/lang/snobol4/distinfo Wed Sep 23 09:23:44 2020 (r549673) @@ -1,2 +1,3 @@ -SHA256 (snobol4-2.0.tar.gz) = 94ae7af4fcaa9139954c6d530ca91f25ffd7a69ff45f1ba52b52095bbdf6631f -SIZE (snobol4-2.0.tar.gz) = 903436 +TIMESTAMP = 1600849218 +SHA256 (snobol4-2.1.6.tar.gz) = ae9306ac523bd99b8881860e31b5b779e87652d4a416fff50277b11dfbc8001e +SIZE (snobol4-2.1.6.tar.gz) = 907278 Added: head/lang/snobol4/files/LICENSE ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/snobol4/files/LICENSE Wed Sep 23 09:23:44 2020 (r549673) @@ -0,0 +1,25 @@ +Copyright © 1993-2020, Philip L. Budne +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Modified: head/lang/snobol4/files/patch-Makefile2.m4 ============================================================================== --- head/lang/snobol4/files/patch-Makefile2.m4 Wed Sep 23 08:56:16 2020 (r549672) +++ head/lang/snobol4/files/patch-Makefile2.m4 Wed Sep 23 09:23:44 2020 (r549673) @@ -1,17 +1,17 @@ ---- Makefile2.m4.orig 2014-12-31 08:04:21.000000000 +0100 -+++ Makefile2.m4 2015-01-24 16:39:40.000000000 +0100 -@@ -614,8 +614,8 @@ snopea.1: snopea snolib/snopea.sno snobo +--- Makefile2.m4.orig 2020-06-22 02:02:06 UTC ++++ Makefile2.m4 +@@ -615,8 +615,8 @@ snopea.1: snopea snolib/snopea.sno snobol4 snopea.1.html: snopea snolib/snopea.sno snobol4 $(SNOPEA) snopea snopea.1.html --$(GENERATED_DOCS_DOCDIR): snopea snolib/snopea.sno snobol4 +-docs $(GENERATED_DOCS_DOCDIR): snopea snolib/snopea.sno snobol4 always - cd doc; make -+$(GENERATED_DOCS_DOCDIR): snopea snolib/snopea.sno xsnobol4 -+ cd doc; $(MAKE) ++docs $(GENERATED_DOCS_DOCDIR): snopea snolib/snopea.sno xsnobol4 always ++ cd doc; ${MAKE} - ################# - # installation -@@ -628,17 +628,18 @@ INSTALL_H=[include]/h.h [include]/snotyp + always: + +@@ -631,17 +631,18 @@ INSTALL_H=[include]/h.h [include]/snotypes.h [include] # generated SNOLIB files (host.sno generated at top level) GENSNOLIB=host.sno config.sno @@ -35,7 +35,7 @@ $(INSTALL) -d $(MAN1DIR) for F in $(GENERATED_DOCS_DOCDIR1); do \ $(INSTALL) -m 644 $$F $(MAN1DIR); \ -@@ -664,15 +665,12 @@ install: snobol4 sdb timing.out $(GENERA +@@ -668,15 +669,12 @@ install: snobol4 sdb timing.out $(GENERATED_DOCS) for F in $(SNOLIB_FILES); do \ $(INSTALL) -m 644 $$F $(SNOLIB_LIB); \ done @@ -51,4 +51,4 @@ + for F in doc/load.txt doc/*.html; do \ $(INSTALL) -m 644 $$F $(DOC_DIR); \ done - ifdef([INSTALL_SYSDEP], INSTALL_SYSDEP + ifdef([INSTALL_SYSDEP],[ ]INSTALL_SYSDEP