package-pipelines-miscellan.../matrix-hydrogen/build.sh
s3lph df34515ef1
Some checks failed
/ ansible-semaphore (push) Failing after 51s
/ atlasswprobe (push) Successful in 9m52s
/ daliserver (push) Successful in 1m20s
/ forgejo (push) Successful in 5m4s
/ forgejo-runner (push) Successful in 1m47s
/ http-mqtt-bridge (push) Failing after 27s
/ keycloak-23 (push) Failing after 43s
/ keycloak-24 (push) Failing after 32s
/ linux-diversion-ath-regd-optional (push) Successful in 19m3s
/ lottieconverter (push) Failing after 50s
/ matterbridge (push) Failing after 49s
/ matrix-element-web (push) Failing after 49s
/ matrix-hydrogen (push) Failing after 49s
/ matrix.to (push) Failing after 4m34s
/ maubot (push) Successful in 4m33s
/ maubot-plugin-spaceapi (push) Successful in 2m9s
/ maubot-plugin-ultimaker (push) Successful in 2m7s
/ mautrix-signal (push) Failing after 44s
/ mautrix-telegram (push) Failing after 38s
/ mediawiki-extension-auth-remoteuser (push) Successful in 1m6s
/ mediawiki-extension-nativesvghandler (push) Successful in 1m11s
/ mediawiki-extension-openidconnect (push) Successful in 1m16s
/ mediawiki-extension-pluggableauth (push) Successful in 1m6s
/ mqtt2prometheus (push) Failing after 1m35s
/ prometheus-ipmi-exporter (push) Failing after 39s
/ prometheus-dnsbl-exporter (push) Failing after 42s
/ prometheus2influxdb (push) Successful in 57s
/ python3-mautrix (push) Failing after 45s
/ python3-telethon (push) Successful in 1m23s
/ repo.s3lph.me-apt-source (push) Successful in 57s
/ republik-feeder (push) Failing after 44s
/ woodpecker-agent (push) Failing after 40s
/ woodpecker-cli (push) Failing after 38s
chore: element-web, hydrogen-web: new github repo
2024-03-04 22:16:40 +01:00

56 lines
2 KiB
Bash
Executable file

#!/bin/bash
set -exo pipefail
API_URL=https://api.github.com/repos/element-hq/hydrogen-web/releases
JQ_EXPR='.[] | select( .prerelease==false and .draft==false and .target_commitish=="master" ) | "\(.tag_name[1:]) \(.published_at) \(.assets[] | select(.name|test("hydrogen-web-.*.tar.gz$")).browser_download_url )"'
ROOT=$(pwd)
function fetch() {
cd "${SRCDIR}"
wget "${URL}" --output-document "hydrogen-web-${VERSION}.tar.gz"
tar -xf "hydrogen-web-${VERSION}.tar.gz"
rm -f "hydrogen-web-${VERSION}.tar.gz"
}
function prepare() {
mkdir -p \
"${PKGDIR}/DEBIAN" \
"${PKGDIR}/usr/share/matrix-hydrogen" \
"${PKGDIR}/etc/matrix-hydrogen" \
"${PKGDIR}/etc/apache2/sites-available"
cp -r "${SRCDIR}" "${PKGDIR}/usr/share/matrix-hydrogen/html"
cp "${ROOT}/debian.control" "${PKGDIR}/DEBIAN/control"
cp "${ROOT}/debian.conffiles" "${PKGDIR}/DEBIAN/conffiles"
cp "${ROOT}/matrix-hydrogen.site.conf" "${PKGDIR}/etc/apache2/sites-available/matrix-hydrogen.site.conf"
mv "${PKGDIR}/usr/share/matrix-hydrogen/html/config.sample.json" "${PKGDIR}/etc/matrix-hydrogen/config.json"
ln -s "/etc/matrix-hydrogen/config.json" "${PKGDIR}/usr/share/matrix-hydrogen/html/config.json"
sed -re "s/__VERSION__/${VERSION}/g" -i "${PKGDIR}/DEBIAN/control"
sed -re "s/__MAINTAINER__/${MAINTAINER}/g" -i "${PKGDIR}/DEBIAN/control"
# root:www-data
chown 0:33 -R "${PKGDIR}/usr/share/matrix-hydrogen" "${PKGDIR}/etc/matrix-hydrogen"
find "${PKGDIR}" -exec touch -m -d "${ISODATE}" {} \;
}
function package() {
cd "${BUILDDIR}"
dpkg-deb --build "${PKGDIR}" "${BUILDDIR}"
}
function build() {
read VERSION ISODATE URL <<<$(curl "${API_URL}" | jq -r "${JQ_EXPR}" | head -1)
export VERSION
export ISODATE
export URL
export BUILDDIR=${ROOT}/build
export SRCDIR=${ROOT}/build/srcdir
export PKGDIR=${ROOT}/build/pkgdir
mkdir -p ${SRCDIR} ${PKGDIR}
fetch
prepare
package
}
build