From 7aad5150f69da42b84994c353283db5daf8e967f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Sun, 26 Nov 2017 23:40:38 +0000 Subject: Add BuildStream converted files This is made by a conversion made in commit 8f8992a18d55c3abf28d4b6fc8036bd39d3dc1cf of definitions Check there to know what exact versions of YBD and defs2bst was used --- elements/coreutils-common/coreutils.bst | 20 ++++++++++++++++++++ elements/coreutils-common/diff.bst | 17 +++++++++++++++++ elements/coreutils-common/findutils.bst | 11 +++++++++++ elements/coreutils-common/jq.bst | 8 ++++++++ elements/coreutils-common/less.bst | 8 ++++++++ elements/coreutils-common/sed.bst | 17 +++++++++++++++++ elements/coreutils-common/tar.bst | 21 +++++++++++++++++++++ 7 files changed, 102 insertions(+) create mode 100644 elements/coreutils-common/coreutils.bst create mode 100644 elements/coreutils-common/diff.bst create mode 100644 elements/coreutils-common/findutils.bst create mode 100644 elements/coreutils-common/jq.bst create mode 100644 elements/coreutils-common/less.bst create mode 100644 elements/coreutils-common/sed.bst create mode 100644 elements/coreutils-common/tar.bst (limited to 'elements/coreutils-common') diff --git a/elements/coreutils-common/coreutils.bst b/elements/coreutils-common/coreutils.bst new file mode 100644 index 00000000..26f4b51f --- /dev/null +++ b/elements/coreutils-common/coreutils.bst @@ -0,0 +1,20 @@ +kind: autotools +depends: +- core.bst +sources: +- kind: git + url: upstream:coreutils + track: v8.25 + ref: 68f73f23866d6137e9c8d88d86073b33588d7b56 + submodules: + gnulib: + url: upstream:gnulib +config: + configure-commands: + - sed -i -e '/^buildreq="/,/^"/{/rsync/d}' bootstrap.conf + - bash bootstrap --skip-po --no-git --gnulib-srcdir=gnulib + - FORCE_UNSAFE_CONFIGURE=1 ./configure --prefix="%{prefix}" --disable-nls + build-commands: + - make WERROR_CFLAGS= + install-commands: + - make INSTALL_PROGRAM=install DESTDIR="%{install-root}" install diff --git a/elements/coreutils-common/diff.bst b/elements/coreutils-common/diff.bst new file mode 100644 index 00000000..edbc7aaf --- /dev/null +++ b/elements/coreutils-common/diff.bst @@ -0,0 +1,17 @@ +kind: autotools +depends: +- core.bst +- coreutils-common/coreutils.bst +sources: +- kind: git + url: upstream:diffutils + track: baserock/v3.3 + ref: bd86eb1a1e87ab85a7c8dbb658fa829ce69c252e + submodules: + gnulib: + url: upstream:gnulib +config: + configure-commands: + - sed -i -e '/^buildreq="/,/^"/{/rsync/d}' bootstrap.conf + - ./bootstrap --skip-po --no-git --gnulib-srcdir=gnulib + - ./configure --prefix="%{prefix}" --disable-gcc-warnings diff --git a/elements/coreutils-common/findutils.bst b/elements/coreutils-common/findutils.bst new file mode 100644 index 00000000..85e6b52b --- /dev/null +++ b/elements/coreutils-common/findutils.bst @@ -0,0 +1,11 @@ +kind: autotools +depends: +- core.bst +sources: +- kind: git + url: upstream:findutils + track: v4.6.0 + ref: 992a6b62ab8061531dc0ad40325b8e4c222fce66 + submodules: + gnulib: + url: upstream:gnulib diff --git a/elements/coreutils-common/jq.bst b/elements/coreutils-common/jq.bst new file mode 100644 index 00000000..fff95f60 --- /dev/null +++ b/elements/coreutils-common/jq.bst @@ -0,0 +1,8 @@ +kind: autotools +depends: +- core.bst +sources: +- kind: git + url: upstream:jq + track: jq-1.5 + ref: a5b5cbefb83935ce95ec62b9cadc8ec73026d33a diff --git a/elements/coreutils-common/less.bst b/elements/coreutils-common/less.bst new file mode 100644 index 00000000..d960080c --- /dev/null +++ b/elements/coreutils-common/less.bst @@ -0,0 +1,8 @@ +kind: autotools +depends: +- core.bst +sources: +- kind: git + url: upstream:less + track: baserock/morph + ref: 09a405d8f652b56944c93ebf5c673cdfe5319b04 diff --git a/elements/coreutils-common/sed.bst b/elements/coreutils-common/sed.bst new file mode 100644 index 00000000..c2ee9626 --- /dev/null +++ b/elements/coreutils-common/sed.bst @@ -0,0 +1,17 @@ +kind: autotools +depends: +- core.bst +- coreutils-common/coreutils.bst +sources: +- kind: git + url: upstream:sed + track: baserock/morph + ref: ed4b1d7c04f92b330b940d4f0d02cd51d2473ce9 + submodules: + gnulib: + url: upstream:gnulib +config: + configure-commands: + - sed -i -e '/^buildreq="/,/^"/{/rsync/d}' bootstrap.conf + - ./bootstrap --skip-po --no-git --gnulib-srcdir=gnulib + - ./configure --prefix="%{prefix}" --disable-gcc-warnings diff --git a/elements/coreutils-common/tar.bst b/elements/coreutils-common/tar.bst new file mode 100644 index 00000000..22ac46a3 --- /dev/null +++ b/elements/coreutils-common/tar.bst @@ -0,0 +1,21 @@ +kind: autotools +depends: +- core.bst +- coreutils-common/coreutils.bst +sources: +- kind: git + url: upstream:tar + track: baserock/release_1_29 + ref: 20b55f0679d314568ec21ae6db1ea635494e292b + submodules: + gnulib: + url: upstream:gnulib + paxutils: + url: upstream:paxutils +config: + configure-commands: + - bash bootstrap --skip-po --gnulib-srcdir="$(pwd)/gnulib" + - | + `# [1]` env FORCE_UNSAFE_CONFIGURE=1 \ + ./configure --prefix="%{prefix}" \ + `# [2]` --disable-gcc-warnings -- cgit v1.2.1