diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-03-12 00:22:47 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-03-12 00:22:47 +0100 |
commit | ca04f75ce2a79175a488ecde404d316c8c3ec527 (patch) | |
tree | ac1d9ba7377e4a91500091c1b1ee11d4b44568be | |
parent | a4e7df7ca09a0fabb2516953c0eb7627b5774cab (diff) | |
download | AUR-ca04f75ce2a79175a488ecde404d316c8c3ec527.tar.gz AUR-ca04f75ce2a79175a488ecde404d316c8c3ec527.tar.zst AUR-ca04f75ce2a79175a488ecde404d316c8c3ec527.zip |
Deleted package: dwm-git
Deleted package: st-git
-rw-r--r-- | dwm-git/.AURINFO | 21 | ||||
-rw-r--r-- | dwm-git/.SRCINFO | 24 | ||||
-rw-r--r-- | dwm-git/PKGBUILD | 46 | ||||
-rw-r--r-- | dwm-git/config.h | 98 | ||||
-rw-r--r-- | dwm-git/dwm.desktop | 7 | ||||
-rw-r--r-- | dwm-git/dwm.install | 5 | ||||
-rw-r--r-- | st-git/.SRCINFO | 21 | ||||
-rw-r--r-- | st-git/PKGBUILD | 66 |
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 @@ | |||
1 | pkgbase = 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 | |||
20 | pkgname = 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 @@ | |||
1 | pkgbase = 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 | |||
23 | pkgname = 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 @@ | |||
1 | pkgname=dwm-git-custom | ||
2 | _pkgname=dwm | ||
3 | pkgver=6.2_029b988 | ||
4 | pkgrel=1 | ||
5 | pkgdesc="A dynamic window manager for X" | ||
6 | url="http://dwm.suckless.org" | ||
7 | arch=('i686' 'x86_64') | ||
8 | license=('MIT') | ||
9 | options=(zipman) | ||
10 | depends=('libx11' 'libxinerama' 'libxft') | ||
11 | makedepends=('git') | ||
12 | install=dwm.install | ||
13 | provides=('dwm') | ||
14 | conflicts=('dwm') | ||
15 | epoch=1 | ||
16 | source=(dwm.desktop | ||
17 | "$_pkgname::git+http://git.suckless.org/dwm") | ||
18 | md5sums=('939f403a71b6e85261d09fc3412269ee' | ||
19 | 'SKIP') | ||
20 | |||
21 | pkgver(){ | ||
22 | cd $_pkgname | ||
23 | echo $(git describe --tags |sed 's/-/./g')_$(md5sum $SRCDEST/config.h | cut -c1-7) | ||
24 | } | ||
25 | |||
26 | prepare() { | ||
27 | cd $_pkgname | ||
28 | if [[ -f "$SRCDEST/config.h" ]]; then | ||
29 | cp -f "$SRCDEST/config.h" config.h | ||
30 | fi | ||
31 | } | ||
32 | |||
33 | build() { | ||
34 | cd $_pkgname | ||
35 | make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 | ||
36 | } | ||
37 | |||
38 | package() { | ||
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 */ | ||
4 | static const unsigned int borderpx = 1; /* border pixel of windows */ | ||
5 | static const unsigned int snap = 32; /* snap pixel */ | ||
6 | static const int showbar = 1; /* 0 means no bar */ | ||
7 | static const int topbar = 1; /* 0 means bottom bar */ | ||
8 | static const char *fonts[] = { "monospace:size=10" }; | ||
9 | static const char dmenufont[] = "monospace:size=10"; | ||
10 | static const char col_gray1[] = "#222222"; | ||
11 | static const char col_gray2[] = "#444444"; | ||
12 | static const char col_gray3[] = "#bbbbbb"; | ||
13 | static const char col_gray4[] = "#eeeeee"; | ||
14 | static const char col_cyan[] = "#005577"; | ||
15 | static 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 */ | ||
22 | static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; | ||
23 | |||
24 | static 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) */ | ||
34 | static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ | ||
35 | static const int nmaster = 1; /* number of clients in master area */ | ||
36 | static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ | ||
37 | |||
38 | static 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 */ | ||
57 | static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ | ||
58 | static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; | ||
59 | static const char *termcmd[] = { "st", NULL }; | ||
60 | |||
61 | static 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 */ | ||
84 | static 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] | ||
2 | Encoding=UTF-8 | ||
3 | Name=Dwm | ||
4 | Comment=Dynamic window manager | ||
5 | Exec=dwm | ||
6 | Icon=dwm | ||
7 | Type=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 @@ | |||
1 | post_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 @@ | |||
1 | pkgbase = 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 | |||
20 | pkgname = 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 | |||
5 | pkgname=st-git | ||
6 | _pkgname=st | ||
7 | pkgver=0.8.2.1.ge85b6b6 | ||
8 | pkgrel=1 | ||
9 | pkgdesc='Simple virtual terminal emulator for X' | ||
10 | url='http://st.suckless.org/' | ||
11 | arch=('i686' 'x86_64') | ||
12 | license=('MIT') | ||
13 | options=('zipman') | ||
14 | depends=('libxft') | ||
15 | makedepends=('ncurses' 'libxext' 'git') | ||
16 | epoch=1 | ||
17 | # include config.h and any patches you want to have applied here | ||
18 | source=('git://git.suckless.org/st') | ||
19 | sha1sums=('SKIP') | ||
20 | |||
21 | provides=("${_pkgname}") | ||
22 | conflicts=("${_pkgname}") | ||
23 | |||
24 | pkgver() { | ||
25 | cd "${_pkgname}" | ||
26 | git describe --tags |sed 's/-/./g' | ||
27 | } | ||
28 | |||
29 | prepare() { | ||
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 | |||
56 | build() { | ||
57 | cd "${_pkgname}" | ||
58 | make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 | ||
59 | } | ||
60 | |||
61 | package() { | ||
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 | } | ||