Annotation of freem-mk-debian-package/mk-debian-package, revision 1.4
1.1 snw 1: #!/usr/bin/env bash
2:
3: #
1.4 ! snw 4: # $Id: mk-debian-package,v 1.3 2025/03/14 00:28:10 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.4 ! snw 29: # Revision 1.3 2025/03/14 00:28:10 snw
! 30: # Support Debian-specific version number
! 31: #
1.3 snw 32: # Revision 1.2 2025/03/14 00:13:41 snw
33: # Add copyright file
34: #
1.2 snw 35: # Revision 1.1.1.1 2025/03/13 23:42:41 snw
36: # Initial commit
37: #
1.1 snw 38: #
39: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
40: # SPDX-License-Identifier: AGPL-3.0-or-later
41: #
42:
43: PGM=$(basename $0)
44:
45: function usage() {
1.4 ! snw 46: echo "usage: ${PGM} <freem-version> <package-version> <ssh-server>"
1.1 snw 47: exit 1
48: }
49:
1.4 ! snw 50: if [[ $# != 3 ]]
1.1 snw 51: then
52: usage
53: fi
54:
55: FREEM_VERSION=$1
1.3 snw 56: FDPKG_VERSION=$2
1.4 ! snw 57: FDSSH=$3
1.1 snw 58:
59: SRCDIR=$(pwd)
60: TMPDIR=$(mktemp -d)
61: INFILE="freem-${FREEM_VERSION}.tar.gz"
1.2 snw 62: OUTFILE="${TMPDIR}/freem_${FREEM_VERSION}.orig.tar.gz"
1.1 snw 63: TARDIR="${TMPDIR}/freem-${FREEM_VERSION}"
64:
65: URL="https://freem.coherent-logic.com/downloads/freem-${FREEM_VERSION}.tar.gz"
66: echo -n "${PGM}: downloading ${URL} to ${OUTFILE}..."
67: curl -s "${URL}" > "${OUTFILE}"
68: if [[ $? == 0 ]]
69: then
70: echo "[OK]"
71: else
72: echo "[FAIL]"
73: exit 1
74: fi
75:
76: echo -n "${PGM}: extracting ${OUTFILE} to ${TARDIR}..."
77: tar zxf "${OUTFILE}" -C "${TMPDIR}"
78: if [[ $? == 0 ]]
79: then
80: echo "[OK]"
81: else
82: echo "[FAIL]"
83: exit 1
84: fi
85:
86: echo -n "${PGM}: copying Debian packaging control info to ${TARDIR}..."
87: cp -r debian "${TARDIR}/"
88: if [[ $? == 0 ]]
89: then
90: echo "[OK]"
91: else
92: echo "[FAIL]"
93: exit 1
94: fi
95:
1.3 snw 96: sed -i "s/FREEM_VERSION/${FREEM_VERSION}-${FDPKG_VERSION}/g" "${TARDIR}/debian/changelog"
97:
1.1 snw 98: echo "${PGM}: building the package..."
99: cd "${TARDIR}"
1.2 snw 100: export DEB_BUILD_MAINT_OPTIONS=hardening=-fortify,-format,-stackprotector,-stackprotectorstrong
1.1 snw 101: debuild -us -uc
1.4 ! snw 102:
! 103: echo "${PGM}: the package is in ${TMPDIR}"
! 104:
! 105: rm -f ${TMPDIR}/*dbgsym*
! 106: scp ${TMPDIR}/*.deb "${FDSSH}://var/www/freem.coherent-logic.com/downloads/binaries/debian/"
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>