From 975f66f2eebe9dadba04f275774d4ab83f74cf25 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:04:41 +0200 Subject: Adding upstream version 7.7.0+dfsg. Signed-off-by: Daniel Baumann --- build-ansible.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 build-ansible.sh (limited to 'build-ansible.sh') diff --git a/build-ansible.sh b/build-ansible.sh new file mode 100755 index 000000000..943705665 --- /dev/null +++ b/build-ansible.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-FileCopyrightText: Ansible Project, 2020 + +set -e + +VERSION="7.7.0" +MAJOR="7" + +# For idempotency, remove build data or built output first +rm -rf ansible-build-data built + +pip3 install --user --upgrade antsibull +git clone https://github.com/ansible-community/ansible-build-data.git +mkdir -p built collection-cache +BUILD_DATA_DIR="ansible-build-data/${MAJOR}" +BUILDFILE="ansible-${MAJOR}.build" +DEPSFILE="ansible-${VERSION}.deps" + +antsibull-build rebuild-single "${VERSION}" --collection-cache collection-cache --data-dir "${BUILD_DATA_DIR}" --build-file "${BUILDFILE}" --deps-file "${DEPSFILE}" --sdist-dir built --debian + +echo "The result can be found in built/ansible-${VERSION}.tar.gz" + +# pip3 install --user twine +# twine upload "built/ansible-${VERSION}.tar.gz" \ No newline at end of file -- cgit v1.2.3