#!/usr/bin/env bash
#
# $Id: mk-debian-package,v 1.4 2025/03/14 00:58:44 snw Exp $
# Creates a Debian package for a specific FreeM version
#
#
# Author: Serena Willis <snw@coherent-logic.com>
# Copyright (C) 1998 MUG Deutschland
# Copyright (C) 2025 Coherent Logic Development LLC
#
#
# This file is part of FreeM.
#
# FreeM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# FreeM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero Public License for more details.
#
# You should have received a copy of the GNU Affero Public License
# along with FreeM. If not, see <https://www.gnu.org/licenses/>.
#
# $Log: mk-debian-package,v $
# Revision 1.4 2025/03/14 00:58:44 snw
# Remove dbgsym package from upload
#
# Revision 1.3 2025/03/14 00:28:10 snw
# Support Debian-specific version number
#
# Revision 1.2 2025/03/14 00:13:41 snw
# Add copyright file
#
# Revision 1.1.1.1 2025/03/13 23:42:41 snw
# Initial commit
#
#
# SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
# SPDX-License-Identifier: AGPL-3.0-or-later
#
PGM=$(basename $0)
function usage() {
echo "usage: ${PGM} <freem-version> <package-version> <ssh-server>"
exit 1
}
if [[ $# != 3 ]]
then
usage
fi
FREEM_VERSION=$1
FDPKG_VERSION=$2
FDSSH=$3
SRCDIR=$(pwd)
TMPDIR=$(mktemp -d)
INFILE="freem-${FREEM_VERSION}.tar.gz"
OUTFILE="${TMPDIR}/freem_${FREEM_VERSION}.orig.tar.gz"
TARDIR="${TMPDIR}/freem-${FREEM_VERSION}"
URL="https://freem.coherent-logic.com/downloads/freem-${FREEM_VERSION}.tar.gz"
echo -n "${PGM}: downloading ${URL} to ${OUTFILE}..."
curl -s "${URL}" > "${OUTFILE}"
if [[ $? == 0 ]]
then
echo "[OK]"
else
echo "[FAIL]"
exit 1
fi
echo -n "${PGM}: extracting ${OUTFILE} to ${TARDIR}..."
tar zxf "${OUTFILE}" -C "${TMPDIR}"
if [[ $? == 0 ]]
then
echo "[OK]"
else
echo "[FAIL]"
exit 1
fi
echo -n "${PGM}: copying Debian packaging control info to ${TARDIR}..."
cp -r debian "${TARDIR}/"
if [[ $? == 0 ]]
then
echo "[OK]"
else
echo "[FAIL]"
exit 1
fi
sed -i "s/FREEM_VERSION/${FREEM_VERSION}-${FDPKG_VERSION}/g" "${TARDIR}/debian/changelog"
echo "${PGM}: building the package..."
cd "${TARDIR}"
export DEB_BUILD_MAINT_OPTIONS=hardening=-fortify,-format,-stackprotector,-stackprotectorstrong
debuild -us -uc
echo "${PGM}: the package is in ${TMPDIR}"
rm -f ${TMPDIR}/*dbgsym*
scp ${TMPDIR}/*.deb "${FDSSH}://var/www/freem.coherent-logic.com/downloads/binaries/debian/"
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>