Codebase list wmforkplop / 886c086
Prepare new upload. Boyuan Yang 10 months ago
5 changed file(s) with 54 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
0 wmforkplop (0.9.3-3) unstable; urgency=medium
1
2 * QA upload.
3 * debian/control:
4 + Orphan the package. (See #1035724)
5 * debian/patches/0006-configure.ac-IMLIB2-use-PKG_CHECK_MODULES.patch:
6 Add patch to fix compatibility with imlib2 1.9+. (Closes: #1018018)
7 * debian/: Apply "wrap-and-sort -abst".
8
9 -- Boyuan Yang <byang@debian.org> Tue, 27 Jun 2023 16:32:24 -0400
10
011 wmforkplop (0.9.3-2.2) unstable; urgency=high
112
213 * Non-maintainer upload.
11 Section: x11
22 Priority: optional
33 Maintainer: Varun Hiremath <varun@debian.org>
4 Uploaders: Torsten Werner <twerner@debian.org>
4 Uploaders:
5 Torsten Werner <twerner@debian.org>,
56 Build-Depends:
67 debhelper-compat (= 13),
8 libgtk2.0-dev,
79 libgtop2-dev,
810 libimlib2-dev,
911 libx11-dev,
1012 libxext-dev,
1113 libxt-dev,
12 libgtk2.0-dev,
13 Standards-Version: 4.5.0
14 pkg-config,
15 Standards-Version: 4.6.2
1416 Homepage: http://hules.free.fr/wmforkplop
1517 Vcs-Git: https://salsa.debian.org/debian/wmforkplop.git
1618 Vcs-Browser: https://salsa.debian.org/debian/wmforkplop
1719
1820 Package: wmforkplop
1921 Architecture: any
20 Depends: ${shlibs:Depends}, ${misc:Depends}, fonts-dejavu
22 Depends:
23 fonts-dejavu,
24 ${misc:Depends},
25 ${shlibs:Depends},
2126 Description: monitors forking activity and displays top CPU consuming processes
22 Wmforkplop monitors the forking activity of the kernel and
23 displays a list of the most CPU consuming processes.
24 Although primarily aimed at Windowmaker, it will run on any
25 window manager, either as a dockapp or as a standard X11
27 Wmforkplop monitors the forking activity of the kernel and
28 displays a list of the most CPU consuming processes.
29 Although primarily aimed at Windowmaker, it will run on any
30 window manager, either as a dockapp or as a standard X11
2631 application.
2020
2121 The Debian packaging is (C) 2006, Varun Hiremath <varunhiremath@gmail.com> and
2222 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
23
0 From: Boyuan Yang <byang@debian.org>
1 Date: Tue, 27 Jun 2023 16:31:32 -0400
2 Subject: configure.ac: IMLIB2 use PKG_CHECK_MODULES
3
4 Bug-Debian: https://bugs.debian.org/1018018
5 ---
6 configure.ac | 9 +--------
7 1 file changed, 1 insertion(+), 8 deletions(-)
8
9 diff --git a/configure.ac b/configure.ac
10 index 44c060d..390e482 100644
11 --- a/configure.ac
12 +++ b/configure.ac
13 @@ -41,14 +41,7 @@ CFLAGS="$CFLAGS $X_CFLAGS"
14 dnl Checks for library functions.
15 AC_CHECK_HEADERS([linux/hdreg.h])
16
17 -AC_CHECK_PROG([IMLIB2_CONFIG_IN_PATH],[imlib2-config],[yes],[no])
18 -AS_IF(
19 - [test "x$IMLIB2_CONFIG_IN_PATH" = "xno"],
20 - [AC_ERROR([imlib2-config not found in PATH.. You need to install Imlib2 (and its development package)])]
21 -)
22 -
23 -IMLIB2_CFLAGS=$(imlib2-config --cflags)
24 -IMLIB2_LIBS=$(imlib2-config --libs)
25 +PKG_CHECK_MODULES([IMLIB2], [imlib2])
26 AC_SUBST([IMLIB2_CFLAGS])
27 AC_SUBST([IMLIB2_LIBS])
28
22 pkg-data.diff
33 0004-dockapp_imlib2.c-No-more-usr-X11R6-and-fonts-ttf.patch
44 0005-configure.ac-Modernize.patch
5 0006-configure.ac-IMLIB2-use-PKG_CHECK_MODULES.patch