This adds enhancements so that Fedora/EL packages can be automatically built in COPR when a webhook is received. A typical webhook could be for tagging events for example or even a "Release" webhook to only build releases.pull/902/head
parent
8425d76198
commit
4018b7e2d5
@ -0,0 +1,9 @@
|
|||||||
|
srpm:
|
||||||
|
dnf -y install git
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
cd deployment/fedora-package-x64; \
|
||||||
|
./create_tarball.sh; \
|
||||||
|
rpmbuild -bs pkg-src/jellyfin.spec \
|
||||||
|
--define "_sourcedir $$PWD/pkg-src/" \
|
||||||
|
--define "_srcrpmdir $(outdir)"
|
@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# shellcheck disable=SC1091
|
||||||
|
source ../common.build.sh
|
||||||
|
|
||||||
|
WORKDIR="$( pwd )"
|
||||||
|
VERSION="$( sed -ne '/^Version:/s/.* *//p' "${WORKDIR}"/pkg-src/jellyfin.spec )"
|
||||||
|
|
||||||
|
package_temporary_dir="${WORKDIR}/pkg-dist-tmp"
|
||||||
|
pkg_src_dir="${WORKDIR}/pkg-src"
|
||||||
|
|
||||||
|
GNU_TAR=1
|
||||||
|
echo "Bundling all sources for RPM build."
|
||||||
|
tar \
|
||||||
|
--transform "s,^\.,jellyfin-${VERSION}," \
|
||||||
|
--exclude='.git*' \
|
||||||
|
--exclude='**/.git' \
|
||||||
|
--exclude='**/.hg' \
|
||||||
|
--exclude='**/.vs' \
|
||||||
|
--exclude='**/.vscode' \
|
||||||
|
--exclude='deployment' \
|
||||||
|
--exclude='**/bin' \
|
||||||
|
--exclude='**/obj' \
|
||||||
|
--exclude='**/.nuget' \
|
||||||
|
--exclude='*.deb' \
|
||||||
|
--exclude='*.rpm' \
|
||||||
|
-Jcf "$pkg_src_dir/jellyfin-${VERSION}.tar.xz" \
|
||||||
|
-C "../.." ./ || GNU_TAR=0
|
||||||
|
|
||||||
|
if [ $GNU_TAR -eq 0 ]; then
|
||||||
|
echo "The installed tar binary did not support --transform. Using workaround."
|
||||||
|
mkdir -p "${package_temporary_dir}/jellyfin"
|
||||||
|
# Not GNU tar
|
||||||
|
tar \
|
||||||
|
--exclude='.git*' \
|
||||||
|
--exclude='**/.git' \
|
||||||
|
--exclude='**/.hg' \
|
||||||
|
--exclude='**/.vs' \
|
||||||
|
--exclude='**/.vscode' \
|
||||||
|
--exclude='deployment' \
|
||||||
|
--exclude='**/bin' \
|
||||||
|
--exclude='**/obj' \
|
||||||
|
--exclude='**/.nuget' \
|
||||||
|
--exclude='*.deb' \
|
||||||
|
--exclude='*.rpm' \
|
||||||
|
-zcf \
|
||||||
|
"${package_temporary_dir}/jellyfin/jellyfin-${VERSION}.tar.gz" \
|
||||||
|
-C "../.." ./
|
||||||
|
echo "Extracting filtered package."
|
||||||
|
tar -Jzf "${package_temporary_dir}/jellyfin/jellyfin-${VERSION}.tar.gz" -C "${package_temporary_dir}/jellyfin-${VERSION}"
|
||||||
|
echo "Removing filtered package."
|
||||||
|
rm -f "${package_temporary_dir}/jellyfin/jellyfin-${VERSION}.tar.gz"
|
||||||
|
echo "Repackaging package into final tarball."
|
||||||
|
tar -Jzf "${pkg_src_dir}/jellyfin-${VERSION}.tar.gz" -C "${package_temporary_dir}" "jellyfin-${VERSION}"
|
||||||
|
fi
|
Loading…
Reference in new issue