From: Phillip Berndt Date: Tue, 14 Jun 2022 09:23:00 +0000 (+0200) Subject: Merge pull request #291 from mikelward/ignorelid X-Git-Tag: 1.13~20 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6a0c9873cd65d7c9d9efc9fdc107c1eed58ac429;hp=d133f63bde4064c6a5acac4c59be1c167902ddcd;p=deb_pkgs%2Fautorandr.git Merge pull request #291 from mikelward/ignorelid Add --ignore-lid to usage message --- diff --git a/contrib/packaging/debian/debian/control b/contrib/packaging/debian/debian/control index 7fb2be8..f5d6b51 100644 --- a/contrib/packaging/debian/debian/control +++ b/contrib/packaging/debian/debian/control @@ -7,7 +7,7 @@ Build-Depends: debhelper (>=9) Standards-Version: 3.9.6 Homepage: https://github.com/phillipberndt/autorandr Architecture: all -Depends: x11-xserver-utils, python +Depends: x11-xserver-utils, python3 Description: Automatically select a display configuration for connected devices Autorandr is a script for managing xrandr configurations based on the connected devices. It can be set up to automatically switch to a stored diff --git a/contrib/packaging/debian/make_deb.sh b/contrib/packaging/debian/make_deb.sh index fe8fe37..32d1b7b 100755 --- a/contrib/packaging/debian/make_deb.sh +++ b/contrib/packaging/debian/make_deb.sh @@ -45,7 +45,7 @@ SIZE=$(du -s $D | awk '{print $1}') cp -r "$P/debian" "$D/DEBIAN" chmod 0755 "$D/DEBIAN" -[ -d "$D/etc" ] && (cd $D; find etc -type f) > "$D/DEBIAN/conffiles" +[ -d "$D/etc" ] && (cd $D; find etc -type f -printf '/%p\n') > "$D/DEBIAN/conffiles" sed -i -re "s#Version:.+#Version: $V#" "$D/DEBIAN/control" echo "Installed-Size: $SIZE" >> "$D/DEBIAN/control" fakeroot dpkg-deb -b "$D" "$O"