mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
New port: devel/buildstream: Free software tool for integrating software stacks
This commit is contained in:
parent
0f83be3c03
commit
0059cb874d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=506786
5 changed files with 62 additions and 0 deletions
|
@ -249,6 +249,7 @@
|
|||
SUBDIR += bsdbuild
|
||||
SUBDIR += bsdcflow
|
||||
SUBDIR += bsdowl
|
||||
SUBDIR += buildstream
|
||||
SUBDIR += bugzilla44
|
||||
SUBDIR += bugzilla50
|
||||
SUBDIR += build
|
||||
|
|
31
devel/buildstream/Makefile
Normal file
31
devel/buildstream/Makefile
Normal file
|
@ -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>
|
3
devel/buildstream/distinfo
Normal file
3
devel/buildstream/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1563323108
|
||||
SHA256 (BuildStream-1.2.7.tar.gz) = 338c0179b7fc0a97b9a3234f808971ba228d3a3f71db952cb335608de51910d7
|
||||
SIZE (BuildStream-1.2.7.tar.gz) = 470738
|
11
devel/buildstream/files/patch-setup.py
Normal file
11
devel/buildstream/files/patch-setup.py
Normal file
|
@ -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')
|
||||
])
|
16
devel/buildstream/pkg-descr
Normal file
16
devel/buildstream/pkg-descr
Normal file
|
@ -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/
|
Loading…
Add table
Reference in a new issue