blob: 1f9aa409d06b8609b9801ba8cbdb0504fe37e8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#!/bin/bash
set -eo pipefail
export DEBEMAIL="noreply@rafaelmartins.eng.br"
export DEBFULLNAME="Snapshot github-actions"
download_pbuilder_chroots() {
local arch="amd64"
local os="$(uname -s | tr '[:upper:]' '[:lower:]')"
local index="$(curl --silent https://distfiles.rgm.io/pbuilder-chroots/LATEST/)"
local archive="$(echo "${index}" | sed -n "s/.*\(pbuilder-chroots-${os}-${arch}-.*\)\.sha512.*/\1/p")"
local folder="$(echo "${index}" | sed -n "s/.*\(pbuilder-chroots-${os}-${arch}-.*\)\.tar.*\.sha512.*/\1/p")"
local p="$(echo "${folder}" | sed "s/pbuilder-chroots-${os}-${arch}-\(.*\)/pbuilder-chroots-\1/")"
curl --fail --output "${archive}" "https://distfiles.rgm.io/pbuilder-chroots/${p}/${archive}"
curl --fail --output "${archive}.sha512" "https://distfiles.rgm.io/pbuilder-chroots/${p}/${archive}.sha512"
sha512sum --check --status "${archive}.sha512"
sudo rm -rf /tmp/pbuilder
fakeroot tar -xf "${archive}" -C /tmp
}
create_reprepro_conf() {
for dist in "$@"; do
echo "Origin: blogc-snapshot"
echo "Label: blogc-snapshot"
echo "Codename: ${dist}"
echo "Architectures: amd64"
echo "Components: ${dist}"
echo "Description: Apt repository containing blogc snapshots"
echo
done
}
download_pbuilder_chroots
${MAKE_CMD:-make} dist-xz
MY_PV="$(echo ${PV} | sed -e 's/-dirty//g' -e 's/-/./g')"
MY_P="${PN}_${MY_PV}"
mv ${P}.tar.xz "../${MY_P}.orig.tar.xz"
for dir in /tmp/pbuilder/*/base.cow; do
export DIST="$(basename "$(dirname "${dir}")" | cut -d- -f1)"
RES="${BUILDDIR}/deb/${DIST}"
mkdir -p "${RES}"
rm -rf "../${P}"
tar -xf "../${MY_P}.orig.tar.xz" -C ..
cp -r ../debian "../${P}/"
pushd "../${P}" > /dev/null
# do not mess with changelog for releases, it should be done manually during version bump
if [[ ${PV} == *-* ]]; then
dch \
--distribution "${DIST}" \
--newversion "${MY_PV}-1" \
"snapshot"
fi
pdebuild \
--pbuilder cowbuilder \
--buildresult "${RES}" \
-- --basepath "${dir}"
popd > /dev/null
done
DISTS="$(ls -1 "${BUILDDIR}/deb")"
mkdir -p "${BUILDDIR}/deb-repo/conf"
create_reprepro_conf ${DISTS} > "${BUILDDIR}/deb-repo/conf/distributions"
pushd "${BUILDDIR}/deb-repo" > /dev/null
for dist in ${DISTS}; do
for deb in "../deb/${dist}"/*.deb; do
reprepro includedeb "${dist}" "${deb}"
done
done
popd > /dev/null
tar \
-cJf "blogc-deb-repo-${PV}.tar.xz" \
--exclude ./deb-repo/conf \
--exclude ./deb-repo/db \
./deb-repo
|