From owner-svn-ports-all@freebsd.org Wed Jun 26 14:24:41 2019 Return-Path: Delivered-To: svn-ports-all@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 B884215C99B4; Wed, 26 Jun 2019 14:24:41 +0000 (UTC) (envelope-from manu@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 5A0376FD6F; Wed, 26 Jun 2019 14:24:41 +0000 (UTC) (envelope-from manu@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 19612DE6; Wed, 26 Jun 2019 14:24:41 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5QEOe8o082949; Wed, 26 Jun 2019 14:24:40 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5QEOeWQ082945; Wed, 26 Jun 2019 14:24:40 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201906261424.x5QEOeWQ082945@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Wed, 26 Jun 2019 14:24:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505159 - in head/devel: . nextpnr X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head/devel: . nextpnr X-SVN-Commit-Revision: 505159 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5A0376FD6F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.94)[-0.942,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Wed, 26 Jun 2019 14:24:42 -0000 Author: manu Date: Wed Jun 26 14:24:39 2019 New Revision: 505159 URL: https://svnweb.freebsd.org/changeset/ports/505159 Log: devel/nextpnr: Add new port nextpnr is a place and route tools for FPGA. It uses configuration files from icestorm (for ICE40 FPGAs) or trellis (for ECP5 FPGAs). Added: head/devel/nextpnr/ head/devel/nextpnr/Makefile (contents, props changed) head/devel/nextpnr/distinfo (contents, props changed) head/devel/nextpnr/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 26 14:23:46 2019 (r505158) +++ head/devel/Makefile Wed Jun 26 14:24:39 2019 (r505159) @@ -1586,6 +1586,7 @@ SUBDIR += newfile SUBDIR += newt SUBDIR += newtonsoft-json + SUBDIR += nextpnr SUBDIR += nexus2-oss SUBDIR += nimble SUBDIR += nini Added: head/devel/nextpnr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nextpnr/Makefile Wed Jun 26 14:24:39 2019 (r505159) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= nextpnr +PORTVERSION= g20190529 +CATEGORIES= devel + +MAINTAINER= manu@FreeBSD.Org +COMMENT= Portable FPGA place and route tool + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${LOCALBASE}/share/trellis/database:devel/trellis \ + ${LOCALBASE}/share/icebox:devel/icestorm +LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ + libboost_filesystem.so:devel/boost-libs \ + libboost_program_options.so:devel/boost-libs \ + ${PY_BOOST} + +USES= cmake qt:5 eigen:3 python:3.5+ gl + +USE_QT= buildtools_build core gui opengl qmake_build widgets +USE_GL= gl + +USE_GITHUB= yes +GH_ACCOUNT= YosysHQ +GH_TAGNAME= 150004e3 + +BINARY_ALIAS= python3=${PYTHON_CMD} + +CMAKE_ARGS= -DARCH="ice40;ecp5" -DTRELLIS_ROOT=${LOCALBASE}/share/trellis/ + +PLIST_FILES= bin/nextpnr-ecp5 \ + bin/nextpnr-ice40 + +.include Added: head/devel/nextpnr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nextpnr/distinfo Wed Jun 26 14:24:39 2019 (r505159) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560153617 +SHA256 (YosysHQ-nextpnr-g20190529-150004e3_GH0.tar.gz) = 10d04e5ae05144f3191d5a11219d7f8252d7cd52de7ac022b67020fe7797693f +SIZE (YosysHQ-nextpnr-g20190529-150004e3_GH0.tar.gz) = 3191173 Added: head/devel/nextpnr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nextpnr/pkg-descr Wed Jun 26 14:24:39 2019 (r505159) @@ -0,0 +1,8 @@ +nextpnr aims to be a vendor neutral, timing driven, +FOSS FPGA place and route tool. + +Currently nextpnr supports: + +Lattice iCE40 devices supported by Project IceStorm +(experimental) Lattice ECP5 devices supported by Project Trellis +(experimental) a "generic" back-end for user-defined architectures