pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11/dmenu dmenu: Update to 5.2
details: https://anonhg.NetBSD.org/pkgsrc/rev/75b5393fa1c6
branches: trunk
changeset: 386517:75b5393fa1c6
user: leot <leot%pkgsrc.org@localhost>
date: Sun Oct 09 12:56:39 2022 +0000
description:
dmenu: Update to 5.2
pkgsrc changes:
- Switch to https:// MASTER_SITES and HOMEPAGE
- Remove no longer needed patch (FC_COLOR is no longer referenced)
5.2
---
- Improvements and bug fixes
diffstat:
x11/dmenu/Makefile | 8 ++++----
x11/dmenu/distinfo | 9 ++++-----
x11/dmenu/patches/patch-drw.c | 33 ---------------------------------
3 files changed, 8 insertions(+), 42 deletions(-)
diffs (70 lines):
diff -r c4bb48fa2096 -r 75b5393fa1c6 x11/dmenu/Makefile
--- a/x11/dmenu/Makefile Sun Oct 09 12:52:26 2022 +0000
+++ b/x11/dmenu/Makefile Sun Oct 09 12:56:39 2022 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.18 2022/02/15 09:22:28 wiz Exp $
+# $NetBSD: Makefile,v 1.19 2022/10/09 12:56:39 leot Exp $
-DISTNAME= dmenu-5.1
+DISTNAME= dmenu-5.2
CATEGORIES= x11
-MASTER_SITES= http://dl.suckless.org/tools/
+MASTER_SITES= https://dl.suckless.org/tools/
MAINTAINER= leot%NetBSD.org@localhost
-HOMEPAGE= http://tools.suckless.org/dmenu
+HOMEPAGE= https://tools.suckless.org/dmenu
COMMENT= Dynamic menu for X
LICENSE= mit
diff -r c4bb48fa2096 -r 75b5393fa1c6 x11/dmenu/distinfo
--- a/x11/dmenu/distinfo Sun Oct 09 12:52:26 2022 +0000
+++ b/x11/dmenu/distinfo Sun Oct 09 12:56:39 2022 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.17 2022/02/15 09:22:28 wiz Exp $
+$NetBSD: distinfo,v 1.18 2022/10/09 12:56:39 leot Exp $
-BLAKE2s (dmenu-5.1.tar.gz) = ed5e1c26a5e5a1e4874e0f2e49261ac16f4f2076f4bd7286d0ffcd69952b20e0
-SHA512 (dmenu-5.1.tar.gz) = 2f950c30e15880e6081e04d73dd0cf8f402f52d793a77d22c3f10739bfed6222a9c4e7ec8eb3fc676422fea09e30b8cf9789f67b276b22c398c96f5ed3b56453
-Size (dmenu-5.1.tar.gz) = 16096 bytes
-SHA1 (patch-drw.c) = c391b7ac6f60cce02d63c09c8cfb23ec5d3d46ef
+BLAKE2s (dmenu-5.2.tar.gz) = 0d6067062cafc8142768009a6a9ccdd08f847620afda9046e8efbed2119ff27f
+SHA512 (dmenu-5.2.tar.gz) = 7be9bb76b11225ec86a30e643e9b884f6d13af581526085212cb7401383d448a72fe4dffc3ce84ffb8319dbf36ca8384597a89070cd27d39d5618f239a2da6e3
+Size (dmenu-5.2.tar.gz) = 16196 bytes
diff -r c4bb48fa2096 -r 75b5393fa1c6 x11/dmenu/patches/patch-drw.c
--- a/x11/dmenu/patches/patch-drw.c Sun Oct 09 12:52:26 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-$NetBSD: patch-drw.c,v 1.1 2019/03/03 13:12:03 maya Exp $
-
-Workaround FC_COLOR not being available on fontconfig < 2.11.91
-(NetBSD-8.0)
-
-This is mostly code to reject colored fonts, so ifdef'ing it out is safe.
-
---- drw.c.orig 2019-02-02 12:55:02.000000000 +0000
-+++ drw.c
-@@ -139,11 +139,13 @@ xfont_create(Drw *drw, const char *fontn
- * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916349
- * and lots more all over the internet.
- */
-+#ifdef FC_COLOR
- FcBool iscol;
- if(FcPatternGetBool(xfont->pattern, FC_COLOR, 0, &iscol) == FcResultMatch && iscol) {
- XftFontClose(drw->dpy, xfont);
- return NULL;
- }
-+#endif
-
- font = ecalloc(1, sizeof(Fnt));
- font->xfont = xfont;
-@@ -350,7 +352,9 @@ drw_text(Drw *drw, int x, int y, unsigne
- fcpattern = FcPatternDuplicate(drw->fonts->pattern);
- FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
- FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue);
-+#ifdef FC_COLOR
- FcPatternAddBool(fcpattern, FC_COLOR, FcFalse);
-+#endif
-
- FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
- FcDefaultSubstitute(fcpattern);
Home |
Main Index |
Thread Index |
Old Index