Dear maintainer,
I've prepared an NMU for psmisc (versioned as 22.21-2.1) and uploaded it to DELAYED/10. Please feel free to tell me if I should delay it longer. Regards. diff -Nru psmisc-22.21/debian/changelog psmisc-22.21/debian/changelog --- psmisc-22.21/debian/changelog 2014-02-28 12:01:23.000000000 +0100 +++ psmisc-22.21/debian/changelog 2015-08-17 15:18:09.000000000 +0200 @@ -1,8 +1,14 @@ +psmisc (22.21-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Enable SELinux support on linux architectures (Closes: #751991) + + -- Laurent Bigonville <bi...@debian.org> Mon, 17 Aug 2015 15:18:05 +0200 + psmisc (22.21-2) unstable; urgency=medium * Fixed fuser -M typo Closes: #740275 thanks Brad - -- Craig Small <csm...@debian.org> Fri, 28 Feb 2014 21:57:20 +1100 psmisc (22.21-1) unstable; urgency=medium diff -Nru psmisc-22.21/debian/control psmisc-22.21/debian/control --- psmisc-22.21/debian/control 2014-02-28 12:01:23.000000000 +0100 +++ psmisc-22.21/debian/control 2015-08-17 15:07:21.000000000 +0200 @@ -2,7 +2,7 @@ Section: admin Priority: optional Maintainer: Craig Small <csm...@debian.org> -Build-Depends: debhelper (>= 9.0.0), libncurses-dev, gettext +Build-Depends: debhelper (>= 9.0.0), libncurses-dev, gettext, libselinux1-dev [linux-any] Standards-Version: 3.9.5 Package: psmisc diff -Nru psmisc-22.21/debian/rules psmisc-22.21/debian/rules --- psmisc-22.21/debian/rules 2014-02-28 12:01:23.000000000 +0100 +++ psmisc-22.21/debian/rules 2015-08-17 15:07:21.000000000 +0200 @@ -1,9 +1,16 @@ #!/usr/bin/make -f DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +ifeq ($(DEB_BUILD_ARCH_OS),linux) +CONFIGURE_FLAGS = --enable-selinux +endif + %: dh $@ +override_dh_auto_configure: + dh_auto_configure -- ${CONFIGURE_FLAGS} + override_dh_auto_install: dh_auto_install if [ -f "debian/psmisc/usr/bin/fuser" ] ; then \