talkatu/builders

file isExecutable
makepkg is now spitting out .tar.zst files instead of .tar.xz files
#!/bin/sh -ex
# Copyright (C) 2015-2016 Gary Kramlich <grim@reaperworld.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cd ${CONVEY_WORKSPACE}
BUILD_TRIPLET=${DISTRIBUTION}-${VERSION}-${ARCH}
ARTIFACTS_DIR=${CONVEY_WORKSPACE}/${BUILD_TRIPLET}
mkdir -p ${ARTIFACTS_DIR}
BUILD_NUMBER="${BUILD_NUMBER:-0}"
BUILD_VERSION="${BUILD_NUMBER}~$(hg id -i)"
# we need to generate the spec file so we need to run a meson
meson /tmp/${BUILD_TRIPLET}
# now that we have our rpm spec file we can do an rpmbuild
rpmbuild -bb \
-D "_rpmdir ${ARTIFACTS_DIR}" \
-D "_builddir ${CONVEY_WORKSPACE}" \
-D "build_number ${BUILD_VERSION}" \
/tmp/${BUILD_TRIPLET}/packaging/talkatu.spec