Fill in more details in DEP metadata for patch files

This commit is contained in:
Alan M Varghese (NyxTrail) 2024-03-01 15:15:14 +00:00
parent 7546730257
commit c2bef2309a
2 changed files with 17 additions and 3 deletions

View File

@ -1,11 +1,17 @@
Description: Move libwlroots to private directory
Hyprland builds a custom version of wlroots that is based
on the latter's latest commit. This library is placed under
/usr/lib/ which pollutes the shared library space. We will
/usr/lib/ which pollutes the shared library space. We will,
instead, install the library to the 'hyprland' directory
under /usr/lib/.
under /usr/lib/. This patch is intended to follow the Debian
policies and recommendations as closely as possible while
following Hyprland's requirements to use a specific commit
for wlroots. See discussion below:
https://github.com/hyprwm/Hyprland/issues/648
https://github.com/hyprwm/Hyprland/issues/302
Author: Alan M Varghese <alan@digistorm.in>
Last-Update: 2024-02-02
Last-Update: 2024-03-01
Forwarded: not-needed
--- a/Makefile
+++ b/Makefile
@@ -52,8 +52,8 @@

View File

@ -1,3 +1,11 @@
Description: Ensure make uses bash as its shell
The upstream Makefile contains several bash constructs (like '[['). These
fail on debian because the default shell for make is /bin/sh which points to
dash. And dash does not support such constructs. So have make use /bin/bash
as its shell.
Author: Alan M Varghese
Last-Update: 2024-03-01
Forwarded: not-needed
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@