From owner-svn-ports-all@freebsd.org Wed Jul 17 01:11:21 2019 Return-Path: Delivered-To: svn-ports-all@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 76348BEA25; Wed, 17 Jul 2019 01:11:21 +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) 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 54A7B85F20; Wed, 17 Jul 2019 01:11:21 +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 33C61EDD2; Wed, 17 Jul 2019 01:11:21 +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 x6H1BLZY049267; Wed, 17 Jul 2019 01:11:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6H1BK9D049262; Wed, 17 Jul 2019 01:11:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201907170111.x6H1BK9D049262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 17 Jul 2019 01:11:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506786 - in head/devel: . buildstream buildstream/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . buildstream buildstream/files X-SVN-Commit-Revision: 506786 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 54A7B85F20 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_SHORT(-0.94)[-0.940,0]; NEURAL_HAM_LONG(-1.00)[-1.000,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, 17 Jul 2019 01:11:21 -0000 Author: yuri Date: Wed Jul 17 01:11:19 2019 New Revision: 506786 URL: https://svnweb.freebsd.org/changeset/ports/506786 Log: New port: devel/buildstream: Free software tool for integrating software stacks Added: head/devel/buildstream/ head/devel/buildstream/Makefile (contents, props changed) head/devel/buildstream/distinfo (contents, props changed) head/devel/buildstream/files/ head/devel/buildstream/files/patch-setup.py (contents, props changed) head/devel/buildstream/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 17 01:01:09 2019 (r506785) +++ head/devel/Makefile Wed Jul 17 01:11:19 2019 (r506786) @@ -249,6 +249,7 @@ SUBDIR += bsdbuild SUBDIR += bsdcflow SUBDIR += bsdowl + SUBDIR += buildstream SUBDIR += bugzilla44 SUBDIR += bugzilla50 SUBDIR += build Added: head/devel/buildstream/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/buildstream/Makefile Wed Jul 17 01:11:19 2019 (r506786) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= BuildStream +DISTVERSION= 1.2.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Free software tool for integrating software stacks + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR} +RUN_DEPENDS= \ + ${PYTHON_PKGNAMEPREFIX}click>=7.0:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}grpcio>=1.18.0:devel/py-grpcio@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=1.1.0:textproc/py-MarkupSafe@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.6.1:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}psutil>=5.4.8:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ruamel.yaml>=0.15.51:devel/py-ruamel.yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.12.0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils noflavors autoplist + +NO_ARCH= yes + +.include Added: head/devel/buildstream/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/buildstream/distinfo Wed Jul 17 01:11:19 2019 (r506786) @@ -0,0 +1,3 @@ +TIMESTAMP = 1563323108 +SHA256 (BuildStream-1.2.7.tar.gz) = 338c0179b7fc0a97b9a3234f808971ba228d3a3f71db952cb335608de51910d7 +SIZE (BuildStream-1.2.7.tar.gz) = 470738 Added: head/devel/buildstream/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/buildstream/files/patch-setup.py Wed Jul 17 01:11:19 2019 (r506786) @@ -0,0 +1,11 @@ +--- setup.py.orig 2019-07-17 00:27:20 UTC ++++ setup.py +@@ -289,7 +289,7 @@ setup(name='BuildStream', + # in the right directory; this is more like a weak statement that we + # attempt to install bash completion scriptlet. + # +- ('share/man/man1', list_man_pages()), ++ ('man/man1', list_man_pages()), + ('share/bash-completion/completions', [ + os.path.join('buildstream', 'data', 'bst') + ]) Added: head/devel/buildstream/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/buildstream/pkg-descr Wed Jul 17 01:11:19 2019 (r506786) @@ -0,0 +1,16 @@ +BuildStream is a Free Software tool for integrating software stacks. + +It takes inspiration, lessons and use-cases from various projects including +Bazel, OBS, Reproducible Builds, Yocto, Baserock, Buildroot, Aboriginal, GNOME +Continuous, JHBuild, Flatpak Builder and Android repo. + +BuildStream supports multiple build-systems (e.g. autotools, cmake, cpan, +distutils, make, meson, qmake, pip) through its core plugins. External plugins +allow the creation of a range of output formats (e.g. debian packages, flatpak +runtimes, system images) for multiple platforms and chipsets. + +BuildStream's core users are application developers and system integrators who +create production-ready software systems that need to be maintained efficiently +and reliably in the long term. + +WWW: https://buildstream.build/