From owner-svn-ports-all@freebsd.org Sun Sep 22 08:08:15 2019 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 EBDF8F90CF; Sun, 22 Sep 2019 08:08:15 +0000 (UTC) (envelope-from rodrigo@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) server-signature RSA-PSS (4096 bits) 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 46bg7M5zjQz4TXL; Sun, 22 Sep 2019 08:08:15 +0000 (UTC) (envelope-from rodrigo@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 B1957237C7; Sun, 22 Sep 2019 08:08:15 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8M88F0t046892; Sun, 22 Sep 2019 08:08:15 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8M88EKh046888; Sun, 22 Sep 2019 08:08:14 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201909220808.x8M88EKh046888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Sun, 22 Sep 2019 08:08:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512560 - in head/sysutils/battmond: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/sysutils/battmond: . files X-SVN-Commit-Revision: 512560 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.29 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: Sun, 22 Sep 2019 08:08:16 -0000 Author: rodrigo Date: Sun Sep 22 08:08:14 2019 New Revision: 512560 URL: https://svnweb.freebsd.org/changeset/ports/512560 Log: Upgrade sysutils/battmond to v0.4 Add license BSD2CLAUSE Change the distfile location to GITHUB Update maintainer email to Major changes: - Add support for suspend instead of halt (-z) PR: 238336 Submitted by: ntarmos (maintainer) Modified: head/sysutils/battmond/Makefile head/sysutils/battmond/distinfo head/sysutils/battmond/files/patch-Makefile head/sysutils/battmond/pkg-descr Modified: head/sysutils/battmond/Makefile ============================================================================== --- head/sysutils/battmond/Makefile Sun Sep 22 08:05:00 2019 (r512559) +++ head/sysutils/battmond/Makefile Sun Sep 22 08:08:14 2019 (r512560) @@ -2,12 +2,17 @@ # $FreeBSD$ PORTNAME= battmond -PORTVERSION= 0.3 +DISTVERSION= 0.4 CATEGORIES= sysutils -MASTER_SITES= http://ntarmos.dyndns.org/Software/FreeBSD/ -MAINTAINER= ntarmos@cs.uoi.gr +MAINTAINER= ntarmos@gmail.com COMMENT= Daemon monitoring the battery level of ACPI-enabled laptops + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= ntarmos +GH_TAGNAME= 0.4 PLIST_FILES= sbin/battmond \ etc/rc.d/battmond \ Modified: head/sysutils/battmond/distinfo ============================================================================== --- head/sysutils/battmond/distinfo Sun Sep 22 08:05:00 2019 (r512559) +++ head/sysutils/battmond/distinfo Sun Sep 22 08:08:14 2019 (r512560) @@ -1,2 +1,3 @@ -SHA256 (battmond-0.3.tar.gz) = 2a97fcd0fe665f7e47fcea551f4e3d42faae450b0301ec17f796b06e1d2de65f -SIZE (battmond-0.3.tar.gz) = 3231 +TIMESTAMP = 1568982487 +SHA256 (ntarmos-battmond-0.4_GH0.tar.gz) = f21d10cf940f0cbce305c53077d32fce037df5241292b607c9a9cf313b5294c4 +SIZE (ntarmos-battmond-0.4_GH0.tar.gz) = 4121 Modified: head/sysutils/battmond/files/patch-Makefile ============================================================================== --- head/sysutils/battmond/files/patch-Makefile Sun Sep 22 08:05:00 2019 (r512559) +++ head/sysutils/battmond/files/patch-Makefile Sun Sep 22 08:08:14 2019 (r512560) @@ -1,5 +1,5 @@ ---- Makefile.orig 2014-06-26 23:11:34.738471328 +0800 -+++ Makefile 2014-06-26 23:11:57.588499251 +0800 +--- Makefile.orig 2019-09-19 13:32:10 UTC ++++ Makefile @@ -14,10 +14,10 @@ battmond: battmond.c ${CC} ${CFLAGS} battmond.c -o battmond -lutil Modified: head/sysutils/battmond/pkg-descr ============================================================================== --- head/sysutils/battmond/pkg-descr Sun Sep 22 08:05:00 2019 (r512559) +++ head/sysutils/battmond/pkg-descr Sun Sep 22 08:08:14 2019 (r512560) @@ -1,6 +1,6 @@ Battmond is a small daemon monitoring the battery level on ACPI-enabled (laptop) computers, by probing the ACPI device on regular intervals. It can warn you (through syslog) when the battery level is running low, and -halt the system when it drops below a critical level threshold. +halt or suspend the system when it drops below a critical level threshold. -WWW: http://ntarmos.dyndns.org/ +WWW: https://github.com/ntarmos/battmond/