Emilio Pozuelo Monfort pushed to branch debian-unstable at X Strike Force / xorg
Commits:
-
5e3afeaa
by Emilio Pozuelo Monfort at 2025-01-24T09:48:09+01:00
-
521ff15b
by Emilio Pozuelo Monfort at 2025-01-24T09:52:39+01:00
-
18858104
by Emilio Pozuelo Monfort at 2025-01-24T09:54:28+01:00
-
67e6b6ae
by Emilio Pozuelo Monfort at 2025-01-24T10:02:11+01:00
-
718cddfd
by Emilio Pozuelo Monfort at 2025-01-24T10:02:32+01:00
3 changed files:
Changes:
1 | -xorg (1:7.7+24) UNRELEASED; urgency=medium
|
|
1 | +xorg (1:7.7+24) unstable; urgency=medium
|
|
2 | 2 | |
3 | 3 | [ Debian Janitor ]
|
4 | 4 | * Remove constraints unnecessary since buster (oldstable):
|
... | ... | @@ -17,10 +17,25 @@ xorg (1:7.7+24) UNRELEASED; urgency=medium |
17 | 17 | * Remove field Section on binary packages xbase-clients, xutils that
|
18 | 18 | duplicates source.
|
19 | 19 | |
20 | - [ Timo Aaltonen ]
|
|
21 | - * control: Drop libdmx-dev from xorg-dev depends. (Closes: #1035474)
|
|
20 | + [ Emilio Pozuelo Monfort ]
|
|
21 | + * Only depend on the vesa driver on x86 platforms.
|
|
22 | + * rules: drop duplicate call to dh_fixperms.
|
|
23 | + |
|
24 | + -- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 24 Jan 2025 10:02:23 +0100
|
|
25 | + |
|
26 | +xorg (1:7.7+23.2) unstable; urgency=medium
|
|
27 | + |
|
28 | + * Non-maintainer upload.
|
|
29 | + * Make xorg build without root. (Closes: #1089479)
|
|
30 | + |
|
31 | + -- Niels Thykier <niels@thykier.net> Sat, 28 Dec 2024 15:03:28 +0000
|
|
32 | + |
|
33 | +xorg (1:7.7+23.1) unstable; urgency=medium
|
|
34 | + |
|
35 | + * Non-maintainer upload.
|
|
36 | + * Drop libdmx-dev from xorg-dev meta-package. (Closes: #1070350)
|
|
22 | 37 | |
23 | - -- Debian Janitor <janitor@jelmer.uk> Thu, 13 Oct 2022 08:40:16 -0000
|
|
38 | + -- Chris Hofstaedtler <zeha@debian.org> Mon, 08 Jul 2024 14:45:55 +0200
|
|
24 | 39 | |
25 | 40 | xorg (1:7.7+23) unstable; urgency=medium
|
26 | 41 |
... | ... | @@ -2,6 +2,7 @@ Source: xorg |
2 | 2 | Section: x11
|
3 | 3 | Priority: optional
|
4 | 4 | Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
|
5 | +Rules-Requires-Root: no
|
|
5 | 6 | Standards-Version: 4.6.1
|
6 | 7 | Build-Depends:
|
7 | 8 | debhelper-compat (= 13),
|
... | ... | @@ -55,7 +56,7 @@ Depends: |
55 | 56 | xserver-xorg-video-fbdev [!s390x],
|
56 | 57 | xserver-xorg-video-dummy [s390x],
|
57 | 58 | xserver-xorg-video-nouveau [amd64 arm64 armhf i386 powerpc x32],
|
58 | - xserver-xorg-video-vesa [!s390x],
|
|
59 | + xserver-xorg-video-vesa [any-amd64 any-i386],
|
|
59 | 60 | xserver-xorg-video-vmware [amd64 hurd-i386 i386 x32],
|
60 | 61 | ${misc:Depends},
|
61 | 62 | Recommends:
|
... | ... | @@ -9,18 +9,14 @@ override_dh_auto_clean: |
9 | 9 | override_dh_auto_build:
|
10 | 10 | $(MAKE) -C xsf-docs
|
11 | 11 | |
12 | -override_dh_install:
|
|
12 | +execute_before_dh_install:
|
|
13 | 13 | $(MAKE) -C xsf-docs install DESTDIR=$(CURDIR)/debian/xserver-xorg/usr/share/doc/xorg
|
14 | - dh_install
|
|
15 | 14 | |
16 | 15 | override_dh_installinit-indep:
|
17 | 16 | dh_installinit -px11-common
|
18 | 17 | |
19 | -override_dh_fixperms-indep:
|
|
20 | - dh_fixperms
|
|
21 | - chown root:root debian/x11-common/etc/X11/Xreset
|
|
18 | +execute_after_dh_fixperms-indep:
|
|
22 | 19 | chmod 755 debian/x11-common/etc/X11/Xreset
|
23 | - chown root:root debian/x11-common/etc/X11/Xsession
|
|
24 | 20 | chmod 755 debian/x11-common/etc/X11/Xsession
|
25 | 21 | |
26 | 22 | # vim:set noet ai sts=8 sw=8 tw=0: |