From owner-svn-ports-head@freebsd.org Wed Oct 31 06:24:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B842107AE2B; Wed, 31 Oct 2018 06:24:58 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 50DF68DEE9; Wed, 31 Oct 2018 06:24:58 +0000 (UTC) (envelope-from wen@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 3195E8DA; Wed, 31 Oct 2018 06:24:58 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9V6OwiX079822; Wed, 31 Oct 2018 06:24:58 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9V6OvAf079819; Wed, 31 Oct 2018 06:24:57 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201810310624.w9V6OvAf079819@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 31 Oct 2018 06:24:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483552 - head/comms/owfs X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/comms/owfs X-SVN-Commit-Revision: 483552 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.29 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: Wed, 31 Oct 2018 06:24:58 -0000 Author: wen Date: Wed Oct 31 06:24:57 2018 New Revision: 483552 URL: https://svnweb.freebsd.org/changeset/ports/483552 Log: - Update to 3.2p3 PR: 231814 Submitted by: osidorkin@gmail.com Approved by: maintainer Modified: head/comms/owfs/Makefile head/comms/owfs/Makefile.options head/comms/owfs/distinfo head/comms/owfs/pkg-plist Modified: head/comms/owfs/Makefile ============================================================================== --- head/comms/owfs/Makefile Wed Oct 31 05:46:38 2018 (r483551) +++ head/comms/owfs/Makefile Wed Oct 31 06:24:57 2018 (r483552) @@ -2,10 +2,8 @@ # $FreeBSD$ PORTNAME= owfs -PORTVERSION= 3.1p1 -PORTREVISION= 1 +PORTVERSION= 3.2p3 CATEGORIES= comms -MASTER_SITES= SF/owfs/owfs/${PORTVERSION} MAINTAINER= johan@stromnet.se COMMENT= OWFS -- 1-Wire file system @@ -18,6 +16,9 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes +USE_GITHUB= yes +GH_TAGNAME= v${DISTVERSION} + .include "Makefile.options" OPTIONS_SUB=yes @@ -28,6 +29,12 @@ CONFIGURE_ARGS= --enable-owlib CONFIGURE_ARGS+= --disable-w1 CONFIGURE_ARGS+= --disable-parport +AVAHI_CONFIGURE_ENABLE= avahi +AVAHI_LIB_DEPENDS= libavahi-client.so:net/avahi-app + +FDTDI_CONFIGURE_EANBLE= ftdi +FTDI_LIB_DEPENDS= libftdi.so:devel/libftdi + OWDEBUG_CONFIGURE_ENABLE= debug OWMUTEXDEBUG_CONFIGURE_ENABLE= mutexdebug OWSHELL_CONFIGURE_ENABLE= owshell @@ -48,6 +55,7 @@ OWMON_CONFIGURE_ENABLE= owmon OWMON_USES= tk:wrapper OWCAPI_CONFIGURE_ENABLE= owcapi +OWEXTERNAL_CONFIGURE_ENABLE= owexternal OWPERL_CONFIGURE_ENABLE= owperl OWPERL_USES= perl5 @@ -108,6 +116,13 @@ CONFIGURE_ARGS+= --disable-swig .if ${PORT_OPTIONS:MOWTCL} CONFIGURE_ARGS+= --enable-owtcl --with-tcl=${TCL_LIBDIR} +.endif + +.if ${PORT_OPTIONS:MOWEXTERNAL} +PLIST_SUB+= OWEXTERNAL="" +.else +PLIST_SUB+= OWEXTERNAL="@comment " +CONFIGURE_ARGS+= --disable-owexternal .endif # This takes a few seconds so give the user some notice Modified: head/comms/owfs/Makefile.options ============================================================================== --- head/comms/owfs/Makefile.options Wed Oct 31 05:46:38 2018 (r483551) +++ head/comms/owfs/Makefile.options Wed Oct 31 06:24:57 2018 (r483552) @@ -1,6 +1,8 @@ # $FreeBSD$ OPTIONS_DEFINE = \ + AVAHI \ + FTDI \ OWDEBUG \ OWMUTEXDEBUG \ OWSHELL \ @@ -14,6 +16,7 @@ OPTIONS_DEFINE = \ OWTRAFFIC \ OWMON \ OWCAPI \ + OWEXTERNAL \ OWPERL \ OWPHP \ OWPYTHON \ @@ -27,7 +30,8 @@ OPTIONS_DEFINE = \ # PARPORT - linux/parport.h not available # W1 - no support on FreeBSD - +AVAHI_DESC= Enable zero-config autodiscovery +FTDI_DESC= Enable LinkUSB support via libftdi OWDEBUG_DESC= Enable debug output OWMUTEXDEBUG_DESC= Enable mutex debug OWSHELL_DESC= Enable CLI utils @@ -41,6 +45,7 @@ OWTRAFFIC_DESC= Enable debug bus traffic reports OWTAP_DESC= Enable owtap module (X11) OWMON_DESC= Enable owmon module (X11) OWCAPI_DESC= Enable C API +OWEXTERNAL_DESC= Enable owexternal OWPERL_DESC= Enable Perl binding (BROKEN) OWPHP_DESC= Enable PHP binding (BROKEN) OWPYTHON_DESC= Enable Python binding @@ -62,6 +67,7 @@ OPTIONS_DEFAULT=OWDEBUG\ OWFTPD\ OWSERVER\ OWCAPI\ + OWEXTERNAL \ OWFS\ USB Modified: head/comms/owfs/distinfo ============================================================================== --- head/comms/owfs/distinfo Wed Oct 31 05:46:38 2018 (r483551) +++ head/comms/owfs/distinfo Wed Oct 31 06:24:57 2018 (r483552) @@ -1,2 +1,3 @@ -SHA256 (owfs-3.1p1.tar.gz) = e69421ae534565c1f8530a2447f583401f4d0d4b1cf3cb8cf399a57133ed7f81 -SIZE (owfs-3.1p1.tar.gz) = 1400962 +TIMESTAMP = 1538774075 +SHA256 (owfs-owfs-3.2p3-v3.2p3_GH0.tar.gz) = 680385e4db007a951e9678a48989dca7d43868b754299c8368010c80d0c2de4a +SIZE (owfs-owfs-3.2p3-v3.2p3_GH0.tar.gz) = 1322466 Modified: head/comms/owfs/pkg-plist ============================================================================== --- head/comms/owfs/pkg-plist Wed Oct 31 05:46:38 2018 (r483551) +++ head/comms/owfs/pkg-plist Wed Oct 31 06:24:57 2018 (r483552) @@ -1,14 +1,16 @@ %%OWCAPI%%include/owcapi.h -%%OWCAPI%%lib/libowcapi-3.1.so.1 -%%OWCAPI%%lib/libowcapi-3.1.so.1.0.0 +%%OWCAPI%%lib/libowcapi-3.2.so.3 +%%OWCAPI%%lib/libowcapi-3.2.so.3.0.0 %%OWCAPI%%lib/libowcapi.so +%%OWCAPI%%libdata/pkgconfig/owcapi.pc +%%OWEXTERNAL%%bin/owexternal %%OWFS%%bin/owfs %%OWFTPD%%bin/owftpd %%OWHTTPD%%bin/owhttpd %%OWMON%%bin/owmon %%OWNETLIB%%include/ownetapi.h -%%OWNETLIB%%lib/libownet-3.1.so.1 -%%OWNETLIB%%lib/libownet-3.1.so.1.0.0 +%%OWNETLIB%%lib/libownet-3.2.so.3 +%%OWNETLIB%%lib/libownet-3.2.so.3.0.0 %%OWNETLIB%%lib/libownet.so %%OWNETPERL%%%%PERL5_MAN3%%/OWNet.3.gz %%OWNETPERL%%%%SITE_PERL%%/OWNet.pm @@ -21,7 +23,7 @@ %%OWNETPYTHON%%%%PYTHON_SITELIBDIR%%/ownet/connection.pyo %%OWPERL%%%%SITE_ARCH%%/OW.pm %%OWPERL%%%%SITE_ARCH%%/auto/OW/OW.so -%%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow-3.1p1-py2.7.egg-info +%%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow-3.2p3-py%%PYTHON_VER%%.egg-info %%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow/_OW.so %%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow/__init__.py %%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow/__init__.pyc @@ -32,21 +34,22 @@ %%OWSHELL%%bin/owget %%OWSHELL%%bin/owpresent %%OWSHELL%%bin/owread +%%OWSHELL%%bin/owusbprobe %%OWSHELL%%bin/owwrite %%OWTAP%%bin/owtap %%OWTCL%%lib/owtcl-1.0/ow-1.0.so %%OWTCL%%lib/owtcl-1.0/ow.so %%OWTCL%%lib/owtcl-1.0/ow.tcl %%OWTCL%%lib/owtcl-1.0/pkgIndex.tcl -bin/owexternal include/owfs_config.h -lib/libow-3.1.so.1 -lib/libow-3.1.so.1.0.0 +lib/libow-3.2.so.3 +lib/libow-3.2.so.3.0.0 lib/libow.so man/man1/libowcapi.1.gz man/man1/libownet.1.gz man/man1/owcapi.1.gz man/man1/owdir.1.gz +man/man1/owexist.1.gz man/man1/owfs.1.gz man/man1/owftpd.1.gz man/man1/owget.1.gz @@ -146,6 +149,7 @@ man/man3/EDS0083.3.gz man/man3/EDS0085.3.gz man/man3/EDS0090.3.gz man/man3/EEEF.3.gz +man/man3/IBLSS.3.gz man/man3/LCD.3.gz man/man3/MAX31820.3.gz man/man3/MAX31826.3.gz