From owner-svn-ports-all@freebsd.org Tue Sep 29 20:27:24 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 8A38A42F05F; Tue, 29 Sep 2020 20:27:24 +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 4C19t42v8Lz4D1Q; Tue, 29 Sep 2020 20:27:24 +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 2DCC9146A0; Tue, 29 Sep 2020 20:27:24 +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 08TKROFL077577; Tue, 29 Sep 2020 20:27:24 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08TKRNjC077574; Tue, 29 Sep 2020 20:27:23 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009292027.08TKRNjC077574@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: Tue, 29 Sep 2020 20:27:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550617 - in head/lang/ficl: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/lang/ficl: . files X-SVN-Commit-Revision: 550617 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: Tue, 29 Sep 2020 20:27:24 -0000 Author: se Date: Tue Sep 29 20:27:23 2020 New Revision: 550617 URL: https://svnweb.freebsd.org/changeset/ports/550617 Log: Fix build with -fno-common While here extract the license text from doc/license.html into a text file. Added: head/lang/ficl/files/LICENSE.txt (contents, props changed) head/lang/ficl/files/patch-ficlplatform_unix.h (contents, props changed) Modified: head/lang/ficl/Makefile head/lang/ficl/files/patch-vm.c Modified: head/lang/ficl/Makefile ============================================================================== --- head/lang/ficl/Makefile Tue Sep 29 20:03:39 2020 (r550616) +++ head/lang/ficl/Makefile Tue Sep 29 20:27:23 2020 (r550617) @@ -3,21 +3,17 @@ PORTNAME= ficl PORTVERSION= 4.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-all/${PORTNAME}${PORTVERSION:C/([[:digit:]]+\.[[:digit:]]+)\.0/\1/} MAINTAINER= pavelivolkov@gmail.com COMMENT= Forth Inspired Command Language -LICENSE= unknown -LICENSE_NAME= BSD-style -LICENSE_TEXT= Description of the license can be obtained from the following URL: http://ficl.sourceforge.net/license.html -LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${PATCHDIR}/LICENSE.txt -OPTIONS_DEFINE= DOCS - -ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= this port is not tested on anything other than i386 and amd64 USE_LDCONFIG= YES @@ -29,8 +25,10 @@ PLIST_FILES= bin/${PORTNAME} include/ficl.h include/fi include/ficltokens.h lib/lib${PORTNAME}.so \ lib/lib${PORTNAME}.so.${PORTVERSION} lib/lib${PORTNAME}.a -PORTDOCS= * PORTDATA= * +PORTDOCS= * + +OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin Added: head/lang/ficl/files/LICENSE.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ficl/files/LICENSE.txt Tue Sep 29 20:27:23 2020 (r550617) @@ -0,0 +1,24 @@ +Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +2. 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 AUTHOR 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 AUTHOR 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. Added: head/lang/ficl/files/patch-ficlplatform_unix.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ficl/files/patch-ficlplatform_unix.h Tue Sep 29 20:27:23 2020 (r550617) @@ -0,0 +1,11 @@ +--- ficlplatform/unix.h.orig 2010-09-15 18:29:10 UTC ++++ ficlplatform/unix.h +@@ -13,7 +13,7 @@ + #else + #define FICL_PLATFORM_ALIGNMENT (4) + #endif +-#define FICL_PLATFORM_INLINE inline ++#define FICL_PLATFORM_INLINE static inline + + #define FICL_PLATFORM_HAS_FTRUNCATE (1) + #if defined(__amd64__) Modified: head/lang/ficl/files/patch-vm.c ============================================================================== --- head/lang/ficl/files/patch-vm.c Tue Sep 29 20:03:39 2020 (r550616) +++ head/lang/ficl/files/patch-vm.c Tue Sep 29 20:27:23 2020 (r550617) @@ -1,6 +1,6 @@ --- vm.c.orig 2010-09-13 18:43:04 UTC +++ vm.c -@@ -280,12 +280,12 @@ void ficlVmInnerLoop(ficlVm *vm, ficlWor +@@ -280,12 +280,12 @@ void ficlVmInnerLoop(ficlVm *vm, ficlWord *fw) if (once) count = 1;