From owner-svn-ports-head@freebsd.org Mon Jun 15 17:54:35 2020 Return-Path: Delivered-To: svn-ports-head@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 522B433B718; Mon, 15 Jun 2020 17:54:35 +0000 (UTC) (envelope-from zeising@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 49lzVg0ttFz40Xr; Mon, 15 Jun 2020 17:54:35 +0000 (UTC) (envelope-from zeising@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 F2E35217AF; Mon, 15 Jun 2020 17:54:34 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05FHsYUa026553; Mon, 15 Jun 2020 17:54:34 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05FHsX3S026548; Mon, 15 Jun 2020 17:54:33 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <202006151754.05FHsX3S026548@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 15 Jun 2020 17:54:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538926 - in head/sysutils: . pwol X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/sysutils: . pwol X-SVN-Commit-Revision: 538926 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2020 17:54:35 -0000 Author: zeising Date: Mon Jun 15 17:54:33 2020 New Revision: 538926 URL: https://svnweb.freebsd.org/changeset/ports/538926 Log: sysutils/pwol: Add new ports Add sysutils/pwol, a small tool that can be used to send WoL packages to wake up hosts or groups of hosts. It can also act as a WoL gateway when you need to forward such packages but don't have a router that supports it. PR: 247251 Submitted by: Peter Eriksson Added: head/sysutils/pwol/ head/sysutils/pwol/Makefile (contents, props changed) head/sysutils/pwol/distinfo (contents, props changed) head/sysutils/pwol/pkg-descr (contents, props changed) head/sysutils/pwol/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jun 15 17:50:27 2020 (r538925) +++ head/sysutils/Makefile Mon Jun 15 17:54:33 2020 (r538926) @@ -939,6 +939,7 @@ SUBDIR += pv SUBDIR += pwd_unmkdb SUBDIR += pwgen + SUBDIR += pwol SUBDIR += pwsafe SUBDIR += pxattr SUBDIR += py-analyzemft Added: head/sysutils/pwol/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pwol/Makefile Mon Jun 15 17:54:33 2020 (r538926) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= pwol +DISTVERSIONPREFIX= v +DISTVERSION= 1.5.1 +CATEGORIES= sysutils + +MAINTAINER= pen@lysator.liu.se +COMMENT= Peter's Wake-on-LAN Tool + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= ptrrkssn + +GNU_CONFIGURE= yes + +.include Added: head/sysutils/pwol/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pwol/distinfo Mon Jun 15 17:54:33 2020 (r538926) @@ -0,0 +1,3 @@ +TIMESTAMP = 1592164662 +SHA256 (ptrrkssn-pwol-v1.5.1_GH0.tar.gz) = d9217e24e6ce4ee40836d42ed57a059a33e75debc288c8a23d1b02ac98e4f4ac +SIZE (ptrrkssn-pwol-v1.5.1_GH0.tar.gz) = 72962 Added: head/sysutils/pwol/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pwol/pkg-descr Mon Jun 15 17:54:33 2020 (r538926) @@ -0,0 +1,9 @@ +This is a port of pwol, Peter's Wake-on-Lan tool + +This is a simple tool to send WoL packets to wake up +hosts. No more, no less. + +WWW: https://github.com/ptrrkssn/pwol + +- Peter Eriksson +pen@lysator.liu.se Added: head/sysutils/pwol/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pwol/pkg-plist Mon Jun 15 17:54:33 2020 (r538926) @@ -0,0 +1,4 @@ +bin/pwol +man/man1/pwol.1.gz +man/man5/pwol.conf.5.gz +@sample etc/pwol.conf.sample