aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-12 00:22:47 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-12 00:22:47 +0100
commitca04f75ce2a79175a488ecde404d316c8c3ec527 (patch)
treeac1d9ba7377e4a91500091c1b1ee11d4b44568be
parenta4e7df7ca09a0fabb2516953c0eb7627b5774cab (diff)
downloadAUR-ca04f75ce2a79175a488ecde404d316c8c3ec527.tar.gz
AUR-ca04f75ce2a79175a488ecde404d316c8c3ec527.tar.zst
AUR-ca04f75ce2a79175a488ecde404d316c8c3ec527.zip
Deleted package: dwm-git
Deleted package: st-git
-rw-r--r--dwm-git/.AURINFO21
-rw-r--r--dwm-git/.SRCINFO24
-rw-r--r--dwm-git/PKGBUILD46
-rw-r--r--dwm-git/config.h98
-rw-r--r--dwm-git/dwm.desktop7
-rw-r--r--dwm-git/dwm.install5
-rw-r--r--st-git/.SRCINFO21
-rw-r--r--st-git/PKGBUILD66
8 files changed, 0 insertions, 288 deletions
diff --git a/dwm-git/.AURINFO b/dwm-git/.AURINFO
deleted file mode 100644
index 7cf8c1d..0000000
--- a/dwm-git/.AURINFO
+++ /dev/null
@@ -1,21 +0,0 @@
1pkgbase = dwm-git
2 pkgdesc = A dynamic window manager for X
3 pkgver = 6.0.41.g3d1090b
4 pkgrel = 1
5 epoch = 1
6 url = http://dwm.suckless.org
7 install = dwm.install
8 arch = i686
9 arch = x86_64
10 license = MIT
11 makedepends = git
12 depends = libx11
13 depends = libxinerama
14 provides = dwm
15 conflicts = dwm
16 source = dwm.desktop
17 source = dwm::git+http://git.suckless.org/dwm
18 options = zipman
19
20pkgname = dwm-git
21
diff --git a/dwm-git/.SRCINFO b/dwm-git/.SRCINFO
deleted file mode 100644
index d6fdbc3..0000000
--- a/dwm-git/.SRCINFO
+++ /dev/null
@@ -1,24 +0,0 @@
1pkgbase = dwm-git-custom
2 pkgdesc = A dynamic window manager for X
3 pkgver = 6.2_029b988
4 pkgrel = 1
5 epoch = 1
6 url = http://dwm.suckless.org
7 install = dwm.install
8 arch = i686
9 arch = x86_64
10 license = MIT
11 makedepends = git
12 depends = libx11
13 depends = libxinerama
14 depends = libxft
15 provides = dwm
16 conflicts = dwm
17 options = zipman
18 source = dwm.desktop
19 source = dwm::git+http://git.suckless.org/dwm
20 md5sums = 939f403a71b6e85261d09fc3412269ee
21 md5sums = SKIP
22
23pkgname = dwm-git-custom
24
diff --git a/dwm-git/PKGBUILD b/dwm-git/PKGBUILD
deleted file mode 100644
index 44f68e8..0000000
--- a/dwm-git/PKGBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
1pkgname=dwm-git-custom
2_pkgname=dwm
3pkgver=6.2_029b988
4pkgrel=1
5pkgdesc="A dynamic window manager for X"
6url="http://dwm.suckless.org"
7arch=('i686' 'x86_64')
8license=('MIT')
9options=(zipman)
10depends=('libx11' 'libxinerama' 'libxft')
11makedepends=('git')
12install=dwm.install
13provides=('dwm')
14conflicts=('dwm')
15epoch=1
16source=(dwm.desktop
17 "$_pkgname::git+http://git.suckless.org/dwm")
18md5sums=('939f403a71b6e85261d09fc3412269ee'
19 'SKIP')
20
21pkgver(){
22 cd $_pkgname
23 echo $(git describe --tags |sed 's/-/./g')_$(md5sum $SRCDEST/config.h | cut -c1-7)
24}
25
26prepare() {
27 cd $_pkgname
28 if [[ -f "$SRCDEST/config.h" ]]; then
29 cp -f "$SRCDEST/config.h" config.h
30 fi
31}
32
33build() {
34 cd $_pkgname
35 make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
36}
37
38package() {
39 cd $_pkgname
40 make PREFIX=/usr DESTDIR="$pkgdir" install
41 install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
42 install -m644 -D README "$pkgdir/usr/share/doc/$pkgname/README"
43 install -m644 -D ../dwm.desktop "$pkgdir/usr/share/xsessions/dwm.desktop"
44}
45
46# vim:set ts=2 sw=2 et:
diff --git a/dwm-git/config.h b/dwm-git/config.h
deleted file mode 100644
index b1587e8..0000000
--- a/dwm-git/config.h
+++ /dev/null
@@ -1,98 +0,0 @@
1/* See LICENSE file for copyright and license details. */
2
3/* appearance */
4static const unsigned int borderpx = 1; /* border pixel of windows */
5static const unsigned int snap = 32; /* snap pixel */
6static const int showbar = 1; /* 0 means no bar */
7static const int topbar = 1; /* 0 means bottom bar */
8static const char *fonts[] = { "monospace:size=10" };
9static const char dmenufont[] = "monospace:size=10";
10static const char col_gray1[] = "#222222";
11static const char col_gray2[] = "#444444";
12static const char col_gray3[] = "#bbbbbb";
13static const char col_gray4[] = "#eeeeee";
14static const char col_cyan[] = "#005577";
15static const char *colors[][3] = {
16 /* fg bg border */
17 [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
18 [SchemeSel] = { col_gray4, col_cyan, col_cyan },
19};
20
21/* tagging */
22static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
23
24static const Rule rules[] = {
25 /* xprop(1):
26 * WM_CLASS(STRING) = instance, class
27 * WM_NAME(STRING) = title
28 */
29 /* class instance title tags mask isfloating monitor */
30 { "Nextcloud", NULL, NULL, 9 << 8, 0, -1 },
31};
32
33/* layout(s) */
34static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
35static const int nmaster = 1; /* number of clients in master area */
36static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
37
38static const Layout layouts[] = {
39 /* symbol arrange function */
40 { "[M]", monocle }, /* first entry is default */
41 { "[]=", tile },
42 { "><>", NULL }, /* no layout function means floating behavior */
43};
44
45/* key definitions */
46#define MODKEY Mod1Mask
47#define TAGKEYS(KEY,TAG) \
48 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
49 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
50 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
51 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
52
53/* helper for spawning shell commands in the pre dwm-5.0 fashion */
54#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
55
56/* commands */
57static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
58static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
59static const char *termcmd[] = { "st", NULL };
60
61static Key keys[] = {
62 /* modifier key function argument */
63 { MODKEY, XK_p, spawn, {.v = dmenucmd } },
64 { MODKEY, XK_t, spawn, {.v = termcmd } },
65 { MODKEY, XK_Tab, view, {0} },
66 { MODKEY|ShiftMask, XK_c, killclient, {0} },
67 { MODKEY, XK_j, focusstack, {.i = +1 } },
68 { MODKEY, XK_k, focusstack, {.i = -1 } },
69 { MODKEY, XK_Return, zoom, {0} },
70 TAGKEYS( XK_1, 0)
71 TAGKEYS( XK_2, 1)
72 TAGKEYS( XK_3, 2)
73 TAGKEYS( XK_4, 3)
74 TAGKEYS( XK_5, 4)
75 TAGKEYS( XK_6, 5)
76 TAGKEYS( XK_7, 6)
77 TAGKEYS( XK_8, 7)
78 TAGKEYS( XK_9, 8)
79 { MODKEY|ShiftMask, XK_q, quit, {0} },
80};
81
82/* button definitions */
83/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
84static Button buttons[] = {
85 /* click event mask button function argument */
86 { ClkLtSymbol, 0, Button1, setlayout, {0} },
87 { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
88 { ClkWinTitle, 0, Button2, zoom, {0} },
89 { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
90 { ClkClientWin, MODKEY, Button1, movemouse, {0} },
91 { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
92 { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
93 { ClkTagBar, 0, Button1, view, {0} },
94 { ClkTagBar, 0, Button3, toggleview, {0} },
95 { ClkTagBar, MODKEY, Button1, tag, {0} },
96 { ClkTagBar, MODKEY, Button3, toggletag, {0} },
97};
98
diff --git a/dwm-git/dwm.desktop b/dwm-git/dwm.desktop
deleted file mode 100644
index b0c3354..0000000
--- a/dwm-git/dwm.desktop
+++ /dev/null
@@ -1,7 +0,0 @@
1[Desktop Entry]
2Encoding=UTF-8
3Name=Dwm
4Comment=Dynamic window manager
5Exec=dwm
6Icon=dwm
7Type=XSession
diff --git a/dwm-git/dwm.install b/dwm-git/dwm.install
deleted file mode 100644
index 9675514..0000000
--- a/dwm-git/dwm.install
+++ /dev/null
@@ -1,5 +0,0 @@
1post_install() {
2 echo "-- Edit config.h in dwm's PKGBUILD directory (generally /var/abs/community/dwm/)"
3 echo "-- and rebuild package if you want to change settings."
4 echo "-- Or, place custom config.h in \$SRCDEST/dwm-git/config.h and rebuild."
5}
diff --git a/st-git/.SRCINFO b/st-git/.SRCINFO
deleted file mode 100644
index 39b3318..0000000
--- a/st-git/.SRCINFO
+++ /dev/null
@@ -1,21 +0,0 @@
1pkgbase = st-git
2 pkgdesc = Simple virtual terminal emulator for X
3 pkgver = 0.8.2.1.ge85b6b6
4 pkgrel = 1
5 epoch = 1
6 url = http://st.suckless.org/
7 arch = i686
8 arch = x86_64
9 license = MIT
10 makedepends = ncurses
11 makedepends = libxext
12 makedepends = git
13 depends = libxft
14 provides = st
15 conflicts = st
16 options = zipman
17 source = git://git.suckless.org/st
18 sha1sums = SKIP
19
20pkgname = st-git
21
diff --git a/st-git/PKGBUILD b/st-git/PKGBUILD
deleted file mode 100644
index 4a5b6b4..0000000
--- a/st-git/PKGBUILD
+++ /dev/null
@@ -1,66 +0,0 @@
1# Maintainer: mar77i <mar77i at mar77i dot ch>
2# Past Maintainer: Gaetan Bisson <bisson@archlinux.org>
3# Contributor: Scytrin dai Kinthra <scytrin@gmail.com>
4
5pkgname=st-git
6_pkgname=st
7pkgver=0.8.2.1.ge85b6b6
8pkgrel=1
9pkgdesc='Simple virtual terminal emulator for X'
10url='http://st.suckless.org/'
11arch=('i686' 'x86_64')
12license=('MIT')
13options=('zipman')
14depends=('libxft')
15makedepends=('ncurses' 'libxext' 'git')
16epoch=1
17# include config.h and any patches you want to have applied here
18source=('git://git.suckless.org/st')
19sha1sums=('SKIP')
20
21provides=("${_pkgname}")
22conflicts=("${_pkgname}")
23
24pkgver() {
25 cd "${_pkgname}"
26 git describe --tags |sed 's/-/./g'
27}
28
29prepare() {
30 local file
31 cd "${_pkgname}"
32 sed \
33 -e '/char font/s/= .*/= "Fixed:pixelsize=13:style=SemiCondensed";/' \
34 -e '/char worddelimiters/s/= .*/= " '"'"'`\\\"()[]{}<>|";/' \
35 -e '/int defaultcs/s/= .*/= 1;/' \
36 -i config.def.h
37 sed \
38 -e 's/CPPFLAGS =/CPPFLAGS +=/g' \
39 -e 's/CFLAGS =/CFLAGS +=/g' \
40 -e 's/LDFLAGS =/LDFLAGS +=/g' \
41 -e 's/_BSD_SOURCE/_DEFAULT_SOURCE/' \
42 -i config.mk
43 sed '/@tic/d' -i Makefile
44 for file in "${source[@]}"; do
45 if [[ "$file" == "config.h" ]]; then
46 # add config.h if present in source array
47 # Note: this supersedes the above sed to config.def.h
48 cp "$srcdir/$file" .
49 elif [[ "$file" == *.diff || "$file" == *.patch ]]; then
50 # add all patches present in source array
51 patch -Np1 <"$srcdir/$(basename ${file})"
52 fi
53 done
54}
55
56build() {
57 cd "${_pkgname}"
58 make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
59}
60
61package() {
62 cd "${_pkgname}"
63 make PREFIX=/usr DESTDIR="${pkgdir}" install
64 install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
65 install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
66}