pkgsrc-WIP-changes archive

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

Remove sowm, imported into pkgsrc



Module Name:	pkgsrc-wip
Committed By:	pin <voidpin%protonmail.com@localhost>
Pushed By:	pin
Date:		Sun Apr 12 19:35:41 2020 +0200
Changeset:	500c1d27cb157715aa640bee1bbc26653a73dd17

Modified Files:
	Makefile
Removed Files:
	sowm/DESCR
	sowm/Makefile
	sowm/PLIST
	sowm/distinfo
	sowm/patches/patch-config.def.h

Log Message:
Remove sowm, imported into pkgsrc

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

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

diffstat:
 Makefile                        |  1 -
 sowm/DESCR                      | 10 ----------
 sowm/Makefile                   | 35 -----------------------------------
 sowm/PLIST                      |  3 ---
 sowm/distinfo                   |  7 -------
 sowm/patches/patch-config.def.h | 27 ---------------------------
 6 files changed, 83 deletions(-)

diffs:
diff --git a/Makefile b/Makefile
index e407259945..214c4f21fe 100644
--- a/Makefile
+++ b/Makefile
@@ -4571,7 +4571,6 @@ SUBDIR+=	songwrite2
 SUBDIR+=	sonic-visualiser
 SUBDIR+=	sophia
 SUBDIR+=	soqt
-SUBDIR+=	sowm
 SUBDIR+=	spacefm
 SUBDIR+=	spade
 SUBDIR+=	spai
diff --git a/sowm/DESCR b/sowm/DESCR
deleted file mode 100644
index 8be144f285..0000000000
--- a/sowm/DESCR
+++ /dev/null
@@ -1,10 +0,0 @@
-sowm (Simple Opinionated Window Manager)
-An itsy bitsy floating window manager.
-
-- Floating only.
-- Fullscreen toggle.
-- Window centering.
-- Mix of mouse and keyboard workflow.
-- Focus with cursor.
-- Rounded corners (through patch(https://github.com/dylanaraps/sowm/pull/58))
-- Titlebars (through patch(https://github.com/dylanaraps/sowm/pull/57))
diff --git a/sowm/Makefile b/sowm/Makefile
deleted file mode 100644
index 23fcd7754b..0000000000
--- a/sowm/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	sowm-1.6
-CATEGORIES=	wm
-MASTER_SITES=	${MASTER_SITE_GITHUB:=dylanaraps/}
-
-MAINTAINER=	voidpin%protonmail.com@localhost
-HOMEPAGE=	https://github.com/dylanaraps/sowm/
-COMMENT=	Itsy bitsy floating window manager
-LICENSE=	mit
-
-USE_LANGUAGES=	c99
-
-INSTALLATION_DIRS+=	bin share/doc/sowm
-
-SUBST_CLASSES+=		optimize
-SUBST_STAGE.optimize=	pre-configure
-SUBST_SED.optimize+=	-e 's|-O3||g'
-SUBST_MESSAGE.optimize=	Do not force -O3 optimizations
-SUBST_FILES.optimize+=	Makefile
-
-DEPENDS+=	dmenu-[0-9]*:../../x11/dmenu
-DEPENDS+=	st-term-[0-9]*:../../x11/st-term
-DEPENDS+=	scrot-[0-9]*:../../graphics/scrot
-
-.include "../../mk/bsd.prefs.mk"
-.if ${OPSYS} != "NetBSD"
-DEPENDS+=	alsa-utils-[0-9]*:../../audio/alsa-utils
-.endif
-
-post-install:
-	${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/sowm
-
-.include "../../x11/libX11/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/sowm/PLIST b/sowm/PLIST
deleted file mode 100644
index 6b157e5d43..0000000000
--- a/sowm/PLIST
+++ /dev/null
@@ -1,3 +0,0 @@
-@comment $NetBSD$
-bin/sowm
-share/doc/sowm/README.md
diff --git a/sowm/distinfo b/sowm/distinfo
deleted file mode 100644
index 9679f49f9b..0000000000
--- a/sowm/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD$
-
-SHA1 (sowm-1.6.tar.gz) = 87bd3f40ae70364c15f8e36c78c95e146d1423ac
-RMD160 (sowm-1.6.tar.gz) = f1f5ec85623335214e9e89fc2ce2e48a74679415
-SHA512 (sowm-1.6.tar.gz) = 36f0818d769c224c727713d862201dee7478a04e99c4b0ea0e48a1e1a12a033f704962351ec39df901c196a0ab75fd07b0551b6177f3bb51639dc1ea362b0c16
-Size (sowm-1.6.tar.gz) = 5916 bytes
-SHA1 (patch-config.def.h) = 8ea95b69bc52f4913dce9a7650cae1739bfd1400
diff --git a/sowm/patches/patch-config.def.h b/sowm/patches/patch-config.def.h
deleted file mode 100644
index 46411a7b08..0000000000
--- a/sowm/patches/patch-config.def.h
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD$
-
-Use mixerctl instead of amixer on NetBSD
-Use scrot instead of scr as no scr is provided by pkg scrot
-
---- config.def.h.orig	2020-02-21 16:08:47.000000000 +0000
-+++ config.def.h
-@@ -5,12 +5,18 @@
- 
- const char* menu[]    = {"dmenu_run",      0};
- const char* term[]    = {"st",             0};
--const char* scrot[]   = {"scr",            0};
-+const char* scrot[]   = {"scrot",          0};
- const char* briup[]   = {"bri", "10", "+", 0};
- const char* bridown[] = {"bri", "10", "-", 0};
-+#if defined (__NetBSD__)
-+const char* volup[] = {"mixerctl", "-w", "outputs.master+=5", 0};
-+const char* voldown[] = {"mixerctl", "-w", "outputs.master-=5", 0};
-+const char* volmute[] = {"mixerctl", "-w", "outputs.master=0", 0};
-+#elif
- const char* voldown[] = {"amixer", "sset", "Master", "5%-",         0};
- const char* volup[]   = {"amixer", "sset", "Master", "5%+",         0};
- const char* volmute[] = {"amixer", "sset", "Master", "toggle",      0};
-+#endif
- const char* colors[]  = {"bud", "/home/goldie/Pictures/Wallpapers", 0};
- 
- static struct key keys[] = {


Home | Main Index | Thread Index | Old Index