From nobody Sat Jul 29 20:25:06 2023 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4RCwwn3Xpmz4qRKK; Sat, 29 Jul 2023 20:25:13 +0000 (UTC) (envelope-from diizzy@FreeBSD.org) Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4RCwwl4Ln1z4J5t; Sat, 29 Jul 2023 20:25:11 +0000 (UTC) (envelope-from diizzy@FreeBSD.org) Authentication-Results: mx1.freebsd.org; none Received: by mail.gandi.net (Postfix) with ESMTPA id 158A41C0007; Sat, 29 Jul 2023 20:25:06 +0000 (UTC) List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Date: Sat, 29 Jul 2023 22:25:06 +0200 From: Daniel Engberg To: Rodrigo Osorio Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Subject: Re: git: 9c24afe97b74 - main - sysutils/sispmctl: New port to manage EnerGenie and Gembird USB controlled power strips In-Reply-To: <202307291947.36TJlX9a006964@gitrepo.freebsd.org> References: <202307291947.36TJlX9a006964@gitrepo.freebsd.org> Message-ID: <2841fe66cdc354b102b25e168bc81f96@pyret.net> X-Sender: diizzy@FreeBSD.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-GND-Sasl: daniel.engberg@pyret.net X-Rspamd-Queue-Id: 4RCwwl4Ln1z4J5t X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:29169, ipnet:2001:4b98::/32, country:FR] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated On 2023-07-29 21:47, Rodrigo Osorio wrote: > The branch main has been updated by rodrigo: > > URL: > https://cgit.FreeBSD.org/ports/commit/?id=9c24afe97b74ec69d38e29e6c3685bbfaa85faf7 > > commit 9c24afe97b74ec69d38e29e6c3685bbfaa85faf7 > Author: Rodrigo Osorio > AuthorDate: 2023-07-29 19:12:31 +0000 > Commit: Rodrigo Osorio > CommitDate: 2023-07-29 19:34:28 +0000 > > sysutils/sispmctl: New port to manage EnerGenie and Gembird USB > controlled power strips > > SIS-PM Control is an application for managing USB controlled > powerstrips produced by > GEMBIRD LTD. Newer devices are sold under the Energenie brand. > The following devices are supported: > * Gembird MSIS-PM > * Gembird Silver Shield SIS-PM (aka Revolt Intelliplug) > * Gembird Silver Shield SIS-PMS > * Energenie EG-PM > * Energenie EG-PMS > * Energenie EG-PM2 > * Energenie EG-PMS2 > --- > sysutils/Makefile | 1 + > sysutils/sispmctl/Makefile | 24 +++++++++++ > sysutils/sispmctl/distinfo | 3 ++ > sysutils/sispmctl/files/patch-man_sispmctl.1 | 11 +++++ > sysutils/sispmctl/files/patch-src_main.c | 10 +++++ > sysutils/sispmctl/files/patch-src_web1_index.html | 11 +++++ > sysutils/sispmctl/files/patch-src_web2_index.html | 11 +++++ > sysutils/sispmctl/files/patch-src_web3_index.html | 11 +++++ > sysutils/sispmctl/pkg-descr | 12 ++++++ > sysutils/sispmctl/pkg-plist | 49 > +++++++++++++++++++++++ > 10 files changed, 143 insertions(+) > > diff --git a/sysutils/Makefile b/sysutils/Makefile > index bf089415afaf..69ae6de4b425 100644 > --- a/sysutils/Makefile > +++ b/sysutils/Makefile > @@ -1349,6 +1349,7 @@ > SUBDIR += signon-plugin-oauth2 > SUBDIR += signon-qt5 > SUBDIR += signon-ui > + SUBDIR += sispmctl > SUBDIR += skopeo > SUBDIR += slack > SUBDIR += sleuthkit > diff --git a/sysutils/sispmctl/Makefile b/sysutils/sispmctl/Makefile > new file mode 100644 > index 000000000000..1106b548fbc5 > --- /dev/null > +++ b/sysutils/sispmctl/Makefile > @@ -0,0 +1,24 @@ > +PORTNAME= sispmctl > +PORTVERSION= 4.11 > +CATEGORIES= sysutils > +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} > + > +MAINTAINER= rodrigo@FreeBSD.org > +COMMENT= SIS-PM Control for Linux > +WWW= https://sispmctl.sourceforge.net/ > + > +LICENSE= GPLv2 > +LICENSE_FILE= ${WRKSRC}/COPYING > + > +USES= autoreconf dos2unix libtool pkgconfig > +DOS2UNIX_FILES= src/web2/index.html src/web3/index.html > +USE_LDCONFIG= yes > + > +GNU_CONFIGURE= yes > +CONFIGURE_ENV= LIBUSB_CFLAGS="-I/usr/include" \ > + LIBUSB_LIBS="-L/usr/lib -lusb" > + > +post-install: > + ${LN} -s httpd/skin2 ${STAGEDIR}${PREFIX}/share/doc/sispmctl/skin > + > +.include > diff --git a/sysutils/sispmctl/distinfo b/sysutils/sispmctl/distinfo > new file mode 100644 > index 000000000000..13fd8476cce2 > --- /dev/null > +++ b/sysutils/sispmctl/distinfo > @@ -0,0 +1,3 @@ > +TIMESTAMP = 1690650388 > +SHA256 (sispmctl-4.11.tar.gz) = > 74b94a3710046b15070c7311f0cacb81554c86b4227719cc2733cb96c7052578 > +SIZE (sispmctl-4.11.tar.gz) = 461804 > diff --git a/sysutils/sispmctl/files/patch-man_sispmctl.1 > b/sysutils/sispmctl/files/patch-man_sispmctl.1 > new file mode 100644 > index 000000000000..79fba28d9099 > --- /dev/null > +++ b/sysutils/sispmctl/files/patch-man_sispmctl.1 > @@ -0,0 +1,11 @@ > +--- man/sispmctl.1.orig 2023-07-06 20:13:43 UTC > ++++ man/sispmctl.1 > +@@ -1,7 +1,7 @@ > + .\" Process this file with > + .\" groff -man -Tascii foo.1 > + .\" > +-.TH sispmctl 1 "Jul 2023" Linux "User Manuals" > ++.TH sispmctl 1 "Jul 2023" FreeBSD "User Manuals" > + > + .SH NAME > + sispmctl \- manage EnerGenie and Gembird USB controlled power strips > diff --git a/sysutils/sispmctl/files/patch-src_main.c > b/sysutils/sispmctl/files/patch-src_main.c > new file mode 100644 > index 000000000000..60163cf86293 > --- /dev/null > +++ b/sysutils/sispmctl/files/patch-src_main.c > @@ -0,0 +1,10 @@ > +--- src/main.c.orig 2023-07-29 17:18:10 UTC > ++++ src/main.c > +@@ -36,6 +36,7 @@ > + #include > + #include > + #include > ++#include > + #include > + #include > + > diff --git a/sysutils/sispmctl/files/patch-src_web1_index.html > b/sysutils/sispmctl/files/patch-src_web1_index.html > new file mode 100644 > index 000000000000..5384d39495eb > --- /dev/null > +++ b/sysutils/sispmctl/files/patch-src_web1_index.html > @@ -0,0 +1,11 @@ > +--- src/web1/index.html.orig 2022-04-02 11:21:46 UTC > ++++ src/web1/index.html > +@@ -17,7 +17,7 @@ > +
 
> +
> + > +- > + > + > diff --git a/sysutils/sispmctl/files/patch-src_web2_index.html > b/sysutils/sispmctl/files/patch-src_web2_index.html > new file mode 100644 > index 000000000000..d7a13f7e048a > --- /dev/null > +++ b/sysutils/sispmctl/files/patch-src_web2_index.html > @@ -0,0 +1,11 @@ > +--- src/web2/index.html.orig 2022-04-02 11:21:46 UTC > ++++ src/web2/index.html > +@@ -8,7 +8,7 @@ > + > + > + > +-SiS PM Control for Linux $$version()$$ > ++SiS PM Control for FreeBSD $$version()$$ > + > + > + > diff --git a/sysutils/sispmctl/files/patch-src_web3_index.html > b/sysutils/sispmctl/files/patch-src_web3_index.html > new file mode 100644 > index 000000000000..bed574347a5e > --- /dev/null > +++ b/sysutils/sispmctl/files/patch-src_web3_index.html > @@ -0,0 +1,11 @@ > +--- src/web3/index.html.orig 2022-04-02 11:21:46 UTC > ++++ src/web3/index.html > +@@ -8,7 +8,7 @@ > + > + > + > +-SiS PM Control for Linux $$version()$$ > ++SiS PM Control for FreeBSD $$version()$$ > + > + > + > diff --git a/sysutils/sispmctl/pkg-descr b/sysutils/sispmctl/pkg-descr > new file mode 100644 > index 000000000000..ec53e45e84a0 > --- /dev/null > +++ b/sysutils/sispmctl/pkg-descr > @@ -0,0 +1,12 @@ > +sispmctl is an application for managing USB controlled > +powerstrips produced by GEMBIRD LTD. > +Newer devices are sold under the Energenie brand. > + > +The following devices are supported: > + * Gembird MSIS-PM > + * Gembird Silver Shield SIS-PM (aka Revolt Intelliplug) > + * Gembird Silver Shield SIS-PMS > + * Energenie EG-PM > + * Energenie EG-PMS > + * Energenie EG-PM2 > + * Energenie EG-PMS2 > diff --git a/sysutils/sispmctl/pkg-plist b/sysutils/sispmctl/pkg-plist > new file mode 100644 > index 000000000000..a6cd0bf49b68 > --- /dev/null > +++ b/sysutils/sispmctl/pkg-plist > @@ -0,0 +1,49 @@ > +bin/sispmctl > +lib/libsispmctl.a > +lib/libsispmctl.so > +lib/libsispmctl.so.0 > +lib/libsispmctl.so.0.2.2 > +man/man1/sispmctl.1.gz > +share/doc/sispmctl/COPYING > +share/doc/sispmctl/README.md > +share/doc/sispmctl/artwork/sispmctl.png > +share/doc/sispmctl/artwork/sispmctl.svg > +share/doc/sispmctl/examples/60-sispmctl.rules > +share/doc/sispmctl/examples/passwordsetup.sh > +share/doc/sispmctl/examples/sispmctl.service > +share/doc/sispmctl/httpd/skin1/index.html > +share/doc/sispmctl/httpd/skin1/logo.png > +share/doc/sispmctl/httpd/skin1/off1.html > +share/doc/sispmctl/httpd/skin1/off2.html > +share/doc/sispmctl/httpd/skin1/off3.html > +share/doc/sispmctl/httpd/skin1/off4.html > +share/doc/sispmctl/httpd/skin1/on1.html > +share/doc/sispmctl/httpd/skin1/on2.html > +share/doc/sispmctl/httpd/skin1/on3.html > +share/doc/sispmctl/httpd/skin1/on4.html > +share/doc/sispmctl/httpd/skin1/status0.png > +share/doc/sispmctl/httpd/skin1/status1.png > +share/doc/sispmctl/httpd/skin1/style.css > +share/doc/sispmctl/httpd/skin2/index.html > +share/doc/sispmctl/httpd/skin2/logo.svg > +share/doc/sispmctl/httpd/skin2/off1.html > +share/doc/sispmctl/httpd/skin2/off2.html > +share/doc/sispmctl/httpd/skin2/off3.html > +share/doc/sispmctl/httpd/skin2/off4.html > +share/doc/sispmctl/httpd/skin2/on1.html > +share/doc/sispmctl/httpd/skin2/on2.html > +share/doc/sispmctl/httpd/skin2/on3.html > +share/doc/sispmctl/httpd/skin2/on4.html > +share/doc/sispmctl/httpd/skin2/style.css > +share/doc/sispmctl/httpd/skin3/index.html > +share/doc/sispmctl/httpd/skin3/logo.svg > +share/doc/sispmctl/httpd/skin3/off1.html > +share/doc/sispmctl/httpd/skin3/off2.html > +share/doc/sispmctl/httpd/skin3/off3.html > +share/doc/sispmctl/httpd/skin3/off4.html > +share/doc/sispmctl/httpd/skin3/on1.html > +share/doc/sispmctl/httpd/skin3/on2.html > +share/doc/sispmctl/httpd/skin3/on3.html > +share/doc/sispmctl/httpd/skin3/on4.html > +share/doc/sispmctl/httpd/skin3/style.css > +share/doc/sispmctl/skin Hi, There seems to be some issues as it fails to build, patches don't apply. ===> FAILED to apply cleanly FreeBSD patch(es) patch-src_web2_index.html A few other things that I noticed, Why is USES= autoreconf needed? COMMENT should be fixed Consider using DISTVERSION instead of PORTVERSION as recommended by Porters Handbook Do we really need to install a static library? Consider using framework variables for pkg-plist, %%PORTDOCS%%%%DOCSDIR%% Missing rc.d script for webserver component (disable it)? Best regards, Daniel

SiS PM Control for Linux > $$version()$$

> ++

SiS PM Control for FreeBSD > $$version()$$

> + sispm_http 
> logo