From 9ec050917e96de1c1b67475a654169345e10b851 Mon Sep 17 00:00:00 2001 From: Grimler Date: Mon, 31 Jul 2017 22:31:05 +0200 Subject: [PATCH] Add TERMUX_PKG_BREAKS Breaks is is a bit kinder than Conflicts and should be used for example if a file is moved between packages or if a package is splitted into two. See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-breaks --- build-package.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-package.sh b/build-package.sh index 0d44006c..10fc80bd 100755 --- a/build-package.sh +++ b/build-package.sh @@ -306,6 +306,7 @@ termux_step_setup_variables() { TERMUX_PKG_EXTRA_MAKE_ARGS="" TERMUX_PKG_BUILD_IN_SRC="" TERMUX_PKG_RM_AFTER_INSTALL="" + TERMUX_PKG_BREAKS="" # https://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps TERMUX_PKG_DEPENDS="" TERMUX_PKG_HOMEPAGE="" TERMUX_PKG_DESCRIPTION="FIXME:Add description" @@ -1147,6 +1148,7 @@ termux_step_create_debfile() { Description: $TERMUX_PKG_DESCRIPTION Homepage: $TERMUX_PKG_HOMEPAGE HERE + test ! -z "$TERMUX_PKG_BREAKS" && echo "Breaks: $TERMUX_PKG_BREAKS" >> DEBIAN/control test ! -z "$TERMUX_PKG_DEPENDS" && echo "Depends: $TERMUX_PKG_DEPENDS" >> DEBIAN/control test ! -z "$TERMUX_PKG_ESSENTIAL" && echo "Essential: yes" >> DEBIAN/control test ! -z "$TERMUX_PKG_CONFLICTS" && echo "Conflicts: $TERMUX_PKG_CONFLICTS" >> DEBIAN/control -- 2.11.0