Boyuan Yang pushed to branch debian/latest at X Strike Force / app / xdm
Commits:
-
f603ff57
by Boyuan Yang at 2024-11-26T15:25:32-05:00
-
006d6e77
by Boyuan Yang at 2024-11-26T15:28:44-05:00
-
4204f414
by Boyuan Yang at 2024-11-26T15:31:17-05:00
4 changed files:
Changes:
1 | +xdm (1:1.1.11-7) unstable; urgency=medium
|
|
2 | + |
|
3 | + * debian/control: Bump debhelper compat to v13.
|
|
4 | + * debian/control: Drop useless build-dep dpkg-dev, automake, libtool.
|
|
5 | + * debian/control: Avoid using dh-exec.
|
|
6 | + * debian/rules: Migrate to dh sequencer.
|
|
7 | + * debian/rules: Enable full hardening.
|
|
8 | + |
|
9 | + -- Boyuan Yang <byang@debian.org> Tue, 26 Nov 2024 15:30:57 -0500
|
|
10 | + |
|
1 | 11 | xdm (1:1.1.11-6) unstable; urgency=medium
|
2 | 12 | |
3 | 13 | * Initial clean-up of packaging metadata.
|
... | ... | @@ -6,7 +6,6 @@ Uploaders: |
6 | 6 | Boyuan Yang <byang@debian.org>,
|
7 | 7 | Build-Depends:
|
8 | 8 | debhelper-compat (= 13),
|
9 | - dh-exec,
|
|
10 | 9 | pkgconf,
|
11 | 10 | libxmu-dev (>= 1:1.0.1),
|
12 | 11 | libx11-dev (>= 2:1.0.0),
|
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | # Uncomment this to turn on verbose mode.
|
3 | 3 | #export DH_VERBOSE=1
|
4 | 4 | |
5 | -export DEB_BUILD_MAINT_OPTIONS = "hardening=+pie,+bindnow"
|
|
5 | +export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
6 | 6 | |
7 | 7 | # set this to the name of the main shlib's binary package
|
8 | 8 | PACKAGE = xdm
|
1 | -#!/usr/bin/dh-exec
|
|
2 | -etc/X11/app-defaults/Chooser
|
|
3 | -etc/X11/xdm/Xaccess
|
|
4 | -etc/X11/xdm/Xreset
|
|
5 | -etc/X11/xdm/Xresources
|
|
6 | -etc/X11/xdm/Xservers
|
|
7 | -etc/X11/xdm/Xsession
|
|
8 | -etc/X11/xdm/Xsetup
|
|
9 | -etc/X11/xdm/Xstartup
|
|
10 | -etc/X11/xdm/Xwilling
|
|
11 | -etc/X11/xdm/xdm-config
|
|
12 | -etc/X11/xdm/xdm.options
|
|
13 | -etc/insserv.conf.d/xdm
|
|
14 | -${deb_systemdsystemunitdir}/xdm.service
|
|
15 | -usr/bin/xdm
|
|
16 | -usr/lib/X11/xdm/chooser
|
|
17 | -usr/lib/X11/xdm/libXdmGreet.so
|
|
18 | -usr/share/X11/xdm/pixmaps/debianbw.xpm
|
|
19 | -usr/share/X11/xdm/pixmaps/debian.xpm
|
|
20 | -usr/share/X11/xdm/pixmaps/xorg-bw.xpm
|
|
21 | -usr/share/X11/xdm/pixmaps/xorg.xpm
|
|
22 | -usr/share/man/man1/xdm.1
|
|
23 | -usr/share/man/man5/xdm.options.5 |