From owner-svn-ports-head@freebsd.org Wed Sep 16 04:29:59 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 430C73ED002; Wed, 16 Sep 2020 04:29:59 +0000 (UTC) (envelope-from yuri@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 4BrnFM12S9z49nB; Wed, 16 Sep 2020 04:29:59 +0000 (UTC) (envelope-from yuri@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 E381C13A81; Wed, 16 Sep 2020 04:29:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08G4Twa4093492; Wed, 16 Sep 2020 04:29:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08G4Tw8m093489; Wed, 16 Sep 2020 04:29:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202009160429.08G4Tw8m093489@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 16 Sep 2020 04:29:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548757 - in head/cad: . ecpprog X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/cad: . ecpprog X-SVN-Commit-Revision: 548757 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: Wed, 16 Sep 2020 04:29:59 -0000 Author: yuri Date: Wed Sep 16 04:29:57 2020 New Revision: 548757 URL: https://svnweb.freebsd.org/changeset/ports/548757 Log: New port: cad/ecpprog: Driver for FTDI based JTAG probes, to program ECP5 FPGAs Added: head/cad/ecpprog/ head/cad/ecpprog/Makefile (contents, props changed) head/cad/ecpprog/distinfo (contents, props changed) head/cad/ecpprog/pkg-descr (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Wed Sep 16 04:29:35 2020 (r548756) +++ head/cad/Makefile Wed Sep 16 04:29:57 2020 (r548757) @@ -24,6 +24,7 @@ SUBDIR += cura-engine SUBDIR += digital SUBDIR += dinotrace + SUBDIR += ecpprog SUBDIR += electric SUBDIR += electric-ng SUBDIR += fasm Added: head/cad/ecpprog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/ecpprog/Makefile Wed Sep 16 04:29:57 2020 (r548757) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= ecpprog +DISTVERSION= g20200725 +CATEGORIES= cad + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Driver for FTDI based JTAG probes, to program ECP5 FPGAs + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/../COPYING + +LIB_DEPENDS= libftdi1.so:devel/libftdi1 + +USES= gmake pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= gregdavill +GH_TAGNAME= 2b3e8eaba8faae5ae175ccec36b31e67d24244f7 + +WRKSRC_SUBDIR= ${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/cad/ecpprog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/ecpprog/distinfo Wed Sep 16 04:29:57 2020 (r548757) @@ -0,0 +1,3 @@ +TIMESTAMP = 1600229750 +SHA256 (gregdavill-ecpprog-g20200725-2b3e8eaba8faae5ae175ccec36b31e67d24244f7_GH0.tar.gz) = 5477cd27d0b934d5a51a2b646549d4751a7bf0470e8bbdb05465168d140dba3f +SIZE (gregdavill-ecpprog-g20200725-2b3e8eaba8faae5ae175ccec36b31e67d24244f7_GH0.tar.gz) = 17768 Added: head/cad/ecpprog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/ecpprog/pkg-descr Wed Sep 16 04:29:57 2020 (r548757) @@ -0,0 +1,8 @@ +ecpprog is a basic driver for FTDI based JTAG probes, to program ECP5 FPGAs. + +Features: +* Flash programing via JTAG link to ECP5 part +* Validate ECP5 IDCODEs +* Read/Decode ECP5 status register + +WWW: https://github.com/gregdavill/ecpprog