From owner-svn-ports-all@freebsd.org Thu Oct 1 15:00:25 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 49D2C42AE87; Thu, 1 Oct 2020 15:00:25 +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 4C2GWs0D3qz4FN1; Thu, 1 Oct 2020 15:00:25 +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 DF7F512648; Thu, 1 Oct 2020 15:00: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 091F0ObD068203; Thu, 1 Oct 2020 15:00:24 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 091F0OIZ068201; Thu, 1 Oct 2020 15:00:24 GMT (envelope-from se@FreeBSD.org) Message-Id: <202010011500.091F0OIZ068201@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: Thu, 1 Oct 2020 15:00:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550841 - in head/net/tableutil: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/net/tableutil: . files X-SVN-Commit-Revision: 550841 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: Thu, 01 Oct 2020 15:00:25 -0000 Author: se Date: Thu Oct 1 15:00:23 2020 New Revision: 550841 URL: https://svnweb.freebsd.org/changeset/ports/550841 Log: Fix build with -fno-common While here add license (ISCL/OpenBSD) with text extracted from source files (identical license text in all files). Added: head/net/tableutil/files/ head/net/tableutil/files/LICENSE.txt (contents, props changed) head/net/tableutil/files/patch-conf__variable.h (contents, props changed) Modified: head/net/tableutil/Makefile Modified: head/net/tableutil/Makefile ============================================================================== --- head/net/tableutil/Makefile Thu Oct 1 14:42:38 2020 (r550840) +++ head/net/tableutil/Makefile Thu Oct 1 15:00:23 2020 (r550841) @@ -3,11 +3,15 @@ PORTNAME= tableutil PORTVERSION= 0.6 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://expiretable.fnord.se/ MAINTAINER= jameskamlyn@gmail.com COMMENT= Utility for converting and aggregating lists of IP addresses + +LICENSE= ISCL +LICENSE_FILE= ${PATCHDIR}/LICENSE.txt PLIST_FILES= bin/tableutil man/man1/tableutil.1.gz Added: head/net/tableutil/files/LICENSE.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tableutil/files/LICENSE.txt Thu Oct 1 15:00:23 2020 (r550841) @@ -0,0 +1,13 @@ +Copyright (c) 2005 Henrik Gustafsson + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Added: head/net/tableutil/files/patch-conf__variable.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tableutil/files/patch-conf__variable.h Thu Oct 1 15:00:23 2020 (r550841) @@ -0,0 +1,9 @@ +--- conf_variable.h.orig 2005-08-01 08:39:48 UTC ++++ conf_variable.h +@@ -46,6 +46,5 @@ struct variable *variable_invert(struct variable *rhs) + void variable_save_cidr(char *file, struct variable *rhs); + void variable_save_range(char *file, struct variable *rhs); + void variable_save_single(char *file, struct variable *rhs); +-variable_list_t variable_list; + + #endif /*_CONF_VARIABLE_H_*/