Browse Source

MT#55283 add trixie backports script

Change-Id: If72f91c4433a7363638482520cb2d942681353ee
pull/1682/head
Richard Fuchs 3 years ago
parent
commit
6bb87132ac
1 changed files with 22 additions and 0 deletions
  1. +22
    -0
      pkg/deb/backports/trixie

+ 22
- 0
pkg/deb/backports/trixie View File

@ -0,0 +1,22 @@
#!/bin/bash
#
# Target dist: Debian Bookworm
DIST=trixie
if [ ! -d ../../pkg/deb ] ; then
echo "script needs to be executed at pkg/deb dir" >&2
exit 1
fi
rm -rf ${DIST}
cp -r debian ${DIST}
if command -v wrap-and-sort &>/dev/null ; then
wrap-and-sort -sat -d ${DIST}
else
echo "WARN: wrap-and-sort (Debian package devscripts) not available."
fi
# clean backports scripts
rm -rf ${DIST}/backports
exit 0

Loading…
Cancel
Save