Annotation of freem-mk-debian-package/mk-debian-package, revision 1.6
1.1 snw 1: #!/usr/bin/env bash
2:
3: #
1.6 ! snw 4: # $Id: mk-debian-package,v 1.5 2025/04/03 03:52:38 snw Exp $
1.1 snw 5: # Creates a Debian package for a specific FreeM version
6: #
7: #
8: # Author: Serena Willis <snw@coherent-logic.com>
9: # Copyright (C) 1998 MUG Deutschland
10: # Copyright (C) 2025 Coherent Logic Development LLC
11: #
12: #
13: # This file is part of FreeM.
14: #
15: # FreeM is free software: you can redistribute it and/or modify
16: # it under the terms of the GNU Affero Public License as published by
17: # the Free Software Foundation, either version 3 of the License, or
18: # (at your option) any later version.
19: #
20: # FreeM is distributed in the hope that it will be useful,
21: # but WITHOUT ANY WARRANTY; without even the implied warranty of
22: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23: # GNU Affero Public License for more details.
24: #
25: # You should have received a copy of the GNU Affero Public License
26: # along with FreeM. If not, see <https://www.gnu.org/licenses/>.
27: #
1.2 snw 28: # $Log: mk-debian-package,v $
1.6 ! snw 29: # Revision 1.5 2025/04/03 03:52:38 snw
! 30: # Prepare Debian packaging infra for 0.63 series
! 31: #
1.5 snw 32: # Revision 1.4 2025/03/14 00:58:44 snw
33: # Remove dbgsym package from upload
34: #
1.4 snw 35: # Revision 1.3 2025/03/14 00:28:10 snw
36: # Support Debian-specific version number
37: #
1.3 snw 38: # Revision 1.2 2025/03/14 00:13:41 snw
39: # Add copyright file
40: #
1.2 snw 41: # Revision 1.1.1.1 2025/03/13 23:42:41 snw
42: # Initial commit
43: #
1.1 snw 44: #
45: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
46: # SPDX-License-Identifier: AGPL-3.0-or-later
47: #
48:
49: PGM=$(basename $0)
50:
51: function usage() {
1.4 snw 52: echo "usage: ${PGM} <freem-version> <package-version> <ssh-server>"
1.1 snw 53: exit 1
54: }
55:
1.4 snw 56: if [[ $# != 3 ]]
1.1 snw 57: then
58: usage
59: fi
60:
61: FREEM_VERSION=$1
1.5 snw 62: FREEM_VERSION_MOD=$(echo "${FREEM_VERSION}" | sed 's/-/./g')
1.3 snw 63: FDPKG_VERSION=$2
1.4 snw 64: FDSSH=$3
1.1 snw 65:
66: SRCDIR=$(pwd)
67: TMPDIR=$(mktemp -d)
68: INFILE="freem-${FREEM_VERSION}.tar.gz"
1.5 snw 69: OUTFILE="${TMPDIR}/freem_${FREEM_VERSION_MOD}.orig.tar.gz"
70: TARDIR="${TMPDIR}/freem-${FREEM_VERSION_MOD}"
1.1 snw 71:
72: URL="https://freem.coherent-logic.com/downloads/freem-${FREEM_VERSION}.tar.gz"
73: echo -n "${PGM}: downloading ${URL} to ${OUTFILE}..."
74: curl -s "${URL}" > "${OUTFILE}"
75: if [[ $? == 0 ]]
76: then
77: echo "[OK]"
78: else
79: echo "[FAIL]"
80: exit 1
81: fi
82:
83: echo -n "${PGM}: extracting ${OUTFILE} to ${TARDIR}..."
84: tar zxf "${OUTFILE}" -C "${TMPDIR}"
1.6 ! snw 85: if [[ "${FREEM_VERSION}" != "${FREEM_VERSION_MOD}" ]]
! 86: then
! 87: mv "${TMPDIR}/freem-${FREEM_VERSION}" "${TMPDIR}/freem-${FREEM_VERSION_MOD}"
! 88: fi
1.1 snw 89: if [[ $? == 0 ]]
90: then
91: echo "[OK]"
92: else
93: echo "[FAIL]"
94: exit 1
95: fi
96:
97: echo -n "${PGM}: copying Debian packaging control info to ${TARDIR}..."
98: cp -r debian "${TARDIR}/"
99: if [[ $? == 0 ]]
100: then
101: echo "[OK]"
102: else
103: echo "[FAIL]"
104: exit 1
105: fi
106:
1.5 snw 107: sed -i "s/FREEM_VERSION/${FREEM_VERSION_MOD}-${FDPKG_VERSION}/g" "${TARDIR}/debian/changelog"
108: sed -i "s/FREEM_VERSION/${FREEM_VERSION}-${FDPKG_VERSION}/g" "${TARDIR}/debian/control"
1.3 snw 109:
1.1 snw 110: echo "${PGM}: building the package..."
111: cd "${TARDIR}"
1.2 snw 112: export DEB_BUILD_MAINT_OPTIONS=hardening=-fortify,-format,-stackprotector,-stackprotectorstrong
1.1 snw 113: debuild -us -uc
1.4 snw 114:
115: echo "${PGM}: the package is in ${TMPDIR}"
116:
117: rm -f ${TMPDIR}/*dbgsym*
118: scp ${TMPDIR}/*.deb "${FDSSH}://var/www/freem.coherent-logic.com/downloads/binaries/debian/"
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>