Date: Wed, 17 Jul 2019 01:11:20 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> 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 Message-ID: <201907170111.x6H1BK9D049262@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907170111.x6H1BK9D049262>