Annotation of freem-mk-debian-package/mk-debian-package, revision 1.3

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>