pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lswt: remove, imported to pkgsrc



Module Name:	pkgsrc-wip
Committed By:	kikadf <kikadf.01%gmail.com@localhost>
Pushed By:	kikadf
Date:		Wed Apr 15 10:56:28 2026 +0200
Changeset:	76b7bb8e0ffcf05c90041efd7eab6c636d131f53

Modified Files:
	Makefile
Removed Files:
	lswt/DESCR
	lswt/Makefile
	lswt/PLIST
	lswt/distinfo
	lswt/patches/patch-Makefile
	lswt/patches/patch-lswt.c

Log Message:
lswt: remove, imported to pkgsrc

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=76b7bb8e0ffcf05c90041efd7eab6c636d131f53

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile                    |  1 -
 lswt/DESCR                  |  4 ----
 lswt/Makefile               | 26 --------------------------
 lswt/PLIST                  |  4 ----
 lswt/distinfo               |  7 -------
 lswt/patches/patch-Makefile | 17 -----------------
 lswt/patches/patch-lswt.c   | 24 ------------------------
 7 files changed, 83 deletions(-)

diffs:
diff --git a/Makefile b/Makefile
index 594b49863e..476fdbab64 100644
--- a/Makefile
+++ b/Makefile
@@ -2276,7 +2276,6 @@ SUBDIR+=	lpdsrv
 SUBDIR+=	lpjs
 SUBDIR+=	lrslib
 SUBDIR+=	lsw
-SUBDIR+=	lswt
 SUBDIR+=	lsyncd
 SUBDIR+=	ltc-tools
 SUBDIR+=	ltl2ba
diff --git a/lswt/DESCR b/lswt/DESCR
deleted file mode 100644
index d8209b49a0..0000000000
--- a/lswt/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-lswt lists all toplevels ("Windows") advertised by
-a Wayland server. The default output prints the title
-and app-id the toplevels and - if available - their
-state in human readable form.
diff --git a/lswt/Makefile b/lswt/Makefile
deleted file mode 100644
index 9f3497b722..0000000000
--- a/lswt/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	lswt-2.0.0
-CATEGORIES=	x11
-MASTER_SITES=	https://git.sr.ht/~leon_plickat/lswt/archive/
-DIST_SUBDIR=	lswt
-DISTFILES=	v${PKGVERSION_NOREV}${EXTRACT_SUFX}
-
-MAINTAINER=	kikadf.01%gmail.com@localhost
-HOMEPAGE=	https://sr.ht/~leon_plickat/lswt/
-COMMENT=	List Wayland toplevels
-LICENSE=	gnu-gpl-v3
-
-USE_TOOLS+=	gmake #pkg-config
-BUILD_TARGET=	lswt
-WRKSRC=		${WRKDIR}/lswt-v${PKGVERSION_NOREV}
-
-SUBST_CLASSES+=		path
-SUBST_STAGE.path=	pre-configure
-SUBST_MESSAGE.path=	Fixing pathes
-SUBST_FILES.path+=	Makefile
-SUBST_VARS.path+=	PREFIX PKGMANDIR
-
-.include "../../devel/wayland/buildlink3.mk"
-.include "../../devel/wayland-protocols/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/lswt/PLIST b/lswt/PLIST
deleted file mode 100644
index 9a1d714189..0000000000
--- a/lswt/PLIST
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD$
-bin/lswt
-man/man1/lswt.1
-share/bash-completion/completions/lswt
diff --git a/lswt/distinfo b/lswt/distinfo
deleted file mode 100644
index 29f2080c9b..0000000000
--- a/lswt/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD$
-
-BLAKE2s (lswt/v2.0.0.tar.gz) = b3a67bf0e58a57de6f0412e8328aad6a909df9e04c35f9ce893649b2cc67ae1a
-SHA512 (lswt/v2.0.0.tar.gz) = 147c4a0f7f2410230b9a27adb669ce7004f19701bf50d8e3c540fedb79ad37a282ce7968d2f1abdef6991b297f5d2b6b913ffbf4a4ef3ebc4481ff0cc803a01f
-Size (lswt/v2.0.0.tar.gz) = 27758 bytes
-SHA1 (patch-Makefile) = 8fef2cc560d1144d6d8617036e13669c23faaef1
-SHA1 (patch-lswt.c) = 80b45564ea1ea1ad7f50d3d489f2d04171b43d69
diff --git a/lswt/patches/patch-Makefile b/lswt/patches/patch-Makefile
deleted file mode 100644
index e03ab025ee..0000000000
--- a/lswt/patches/patch-Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD$
-
-* Fix pathes
-
---- Makefile.orig	2024-05-17 12:30:09.000000000 +0000
-+++ Makefile
-@@ -1,8 +1,8 @@
- SCANNER := wayland-scanner
- 
--PREFIX=/usr/local
-+PREFIX=@PREFIX@
- BINDIR=$(PREFIX)/bin
--MANDIR=$(PREFIX)/share/man
-+MANDIR=$(PREFIX)/@PKGMANDIR@
- BASHCOMPDIR=$(PREFIX)/share/bash-completion/completions
- 
- CFLAGS+=-Wall -Werror -Wextra -Wpedantic
diff --git a/lswt/patches/patch-lswt.c b/lswt/patches/patch-lswt.c
deleted file mode 100644
index 014e8d5b24..0000000000
--- a/lswt/patches/patch-lswt.c
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD$
-
-* Fix ctype
-
---- lswt.c.orig	2026-04-06 08:40:47.751853736 +0000
-+++ lswt.c
-@@ -610,7 +610,7 @@ static const struct zwlr_foreign_topleve
- static bool string_needs_quotes (char *str)
- {
- 	for (; *str != '\0'; str++)
--		if ( isspace(*str) || *str == '"' || *str == '\'' || !isascii(*str) )
-+		if ( isspace((unsigned char)*str) || *str == '"' || *str == '\'' || !isascii((unsigned char)*str) )
- 			return true;
- 	return false;
- }
-@@ -766,7 +766,7 @@ static size_t real_strlen (const char *s
- 				break;
- 
- 			default:
--				if (isspace(*str))
-+				if (isspace((unsigned char)*str))
- 					has_space = true;
- 				i++;
- 				break;


Home | Main Index | Thread Index | Old Index