From owner-svn-ports-head@freebsd.org Sun May 26 19:56:47 2019 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 25C5F15AEEC8; Sun, 26 May 2019 19:56:47 +0000 (UTC) (envelope-from swills@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 BFE296C7FB; Sun, 26 May 2019 19:56:46 +0000 (UTC) (envelope-from swills@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 7C45E20592; Sun, 26 May 2019 19:56:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4QJukl4016441; Sun, 26 May 2019 19:56:46 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4QJujmQ016437; Sun, 26 May 2019 19:56:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201905261956.x4QJujmQ016437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 26 May 2019 19:56:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502749 - in head/sysutils: . minipro X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/sysutils: . minipro X-SVN-Commit-Revision: 502749 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BFE296C7FB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Sun, 26 May 2019 19:56:47 -0000 Author: swills Date: Sun May 26 19:56:45 2019 New Revision: 502749 URL: https://svnweb.freebsd.org/changeset/ports/502749 Log: sysutils/minipro: create port Open source program for controlling the MiniPRO TL866xx series of chip programmers WWW: https://gitlab.com/DavidGriffith/minipro PR: 236083 Submitted by: hondareyte.luc@laposte.net Added: head/sysutils/minipro/ head/sysutils/minipro/Makefile (contents, props changed) head/sysutils/minipro/distinfo (contents, props changed) head/sysutils/minipro/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile (contents, props changed) Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun May 26 19:32:08 2019 (r502748) +++ head/sysutils/Makefile Sun May 26 19:56:45 2019 (r502749) @@ -673,6 +673,7 @@ SUBDIR += mgeupsd SUBDIR += minikube SUBDIR += minimunin + SUBDIR += minipro SUBDIR += minirsyslogd SUBDIR += mixer SUBDIR += mkdesktop Added: head/sysutils/minipro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/minipro/Makefile Sun May 26 19:56:45 2019 (r502749) @@ -0,0 +1,35 @@ +# Created by: Hondareyte +# $FreeBSD$ + +PORTNAME= minipro +PORTVERSION= 0.3 +CATEGORIES= sysutils + +MAINTAINER= lhondareyte@laposte.net +COMMENT= CLI for MiniPRO TL866xx chip programmers + +LICENSE= GPLv3 + +RUN_DEPENDS= bash:shells/bash + +USES= gmake pkgconfig shebangfix +USE_GITLAB= yes + +GL_ACCOUNT= DavidGriffith +GL_COMMIT= e6fb06822e6685886a045ae98c3c82d832bd8e9c +GL_PROJECT= ${PORTNAME} +SHEBANG_FILES= miniprohex +PLIST_FILES= bin/minipro \ + bin/miniprohex \ + man/man1/minipro.1.gz + +post-patch: + @${REINPLACE_CMD} -e ' s|gcc|clang|g' \ + -e 's|share/||g' \ + ${WRKSRC}/Makefile + +post-install: + @${GZIP_CMD} ${STAGEDIR}${PREFIX}/man/man1/minipro.1 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/sysutils/minipro/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/minipro/distinfo Sun May 26 19:56:45 2019 (r502749) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558899481 +SHA256 (DavidGriffith-minipro-e6fb06822e6685886a045ae98c3c82d832bd8e9c_GL0.tar.gz) = a1611fa3e914ff6613bb97facb7215958adad87c2ed99d462dc77f750ab2691e +SIZE (DavidGriffith-minipro-e6fb06822e6685886a045ae98c3c82d832bd8e9c_GL0.tar.gz) = 282025 Added: head/sysutils/minipro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/minipro/pkg-descr Sun May 26 19:56:45 2019 (r502749) @@ -0,0 +1,4 @@ +Open source program for controlling the MiniPRO TL866xx series +of chip programmers + +WWW: https://gitlab.com/DavidGriffith/minipro