[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Thursday, December 24, 2020 @ 03:57:55 Author: ainola Revision: 786265 Re-enable auto features and disable downloads Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-12-24 03:57:43 UTC (rev 786264) +++ PKGBUILD2020-12-24 03:57:55 UTC (rev 786265) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.5 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -42,6 +42,8 @@ cd "Waybar-$pkgver" meson --prefix=/usr \ --buildtype=plain \ + --auto-features=enabled \ + --wrap-mode=nodownload \ build ninja -C build }
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, December 23, 2020 @ 21:19:35 Author: ainola Revision: 785291 upgpkg: waybar 0.9.5-1; add sndio dep Modified: waybar/trunk/PKGBUILD --+ PKGBUILD | 19 +++ 1 file changed, 7 insertions(+), 12 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-12-23 21:19:35 UTC (rev 785290) +++ PKGBUILD2020-12-23 21:19:35 UTC (rev 785291) @@ -2,8 +2,8 @@ # Maintainer: Maxim Baz <$pkgname at maximbaz dot com> pkgname=waybar -pkgver=0.9.4 -pkgrel=5 +pkgver=0.9.5 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -22,6 +22,7 @@ 'libappindicator-gtk3' 'libdbusmenu-gtk3' 'libmpdclient' +'libsndio.so' ) makedepends=( 'cmake' @@ -34,20 +35,14 @@ ) source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; - "fix_mpd.patch::https://github.com/Alexays/Waybar/pull/887/commits/8f961ac3976048d7a389d77737d9694f26fe863d.patch"; ) -sha256sums=('d49c09ee253ca9cc9688d1b4d8602adc9bdae613b02e2fa1a2e7277ddc9e82e8' -'0e67d924c9e9cd62609a20ba3f9b9bfebfca23573024a54d0190245df3235c12') +sha256sums=('74d783d4da01c1c3a90a00968d74f47c2193a6952c3b2e0584cf3ddfa1ae4254') -prepare() { -cd "Waybar-$pkgver" -# https://github.com/Alexays/Waybar/issues/775 -patch -p1 < ../fix_mpd.patch -} - build() { cd "Waybar-$pkgver" -arch-meson build +meson --prefix=/usr \ + --buildtype=plain \ + build ninja -C build }
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, November 30, 2020 @ 05:56:46 Author: ainola Revision: 766532 Remove unnecessary libinput dep Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-11-30 05:54:36 UTC (rev 766531) +++ PKGBUILD2020-11-30 05:56:46 UTC (rev 766532) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.4 -pkgrel=4 +pkgrel=5 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -11,7 +11,6 @@ depends=( 'gtkmm3' 'libjsoncpp.so' -'libinput' 'libsigc++' 'fmt' 'wayland'
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, November 30, 2020 @ 05:06:47 Author: ainola Revision: 766525 Apply upstream MPD crash patch until next version is released https://github.com/Alexays/Waybar/issues/775 https://github.com/Alexays/Waybar/pull/887 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-11-30 04:29:15 UTC (rev 766524) +++ PKGBUILD2020-11-30 05:06:47 UTC (rev 766525) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.4 -pkgrel=3 +pkgrel=4 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -35,9 +35,17 @@ ) source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; + "fix_mpd.patch::https://github.com/Alexays/Waybar/pull/887/commits/8f961ac3976048d7a389d77737d9694f26fe863d.patch"; ) -sha256sums=('d49c09ee253ca9cc9688d1b4d8602adc9bdae613b02e2fa1a2e7277ddc9e82e8') +sha256sums=('d49c09ee253ca9cc9688d1b4d8602adc9bdae613b02e2fa1a2e7277ddc9e82e8' +'0e67d924c9e9cd62609a20ba3f9b9bfebfca23573024a54d0190245df3235c12') +prepare() { +cd "Waybar-$pkgver" +# https://github.com/Alexays/Waybar/issues/775 +patch -p1 < ../fix_mpd.patch +} + build() { cd "Waybar-$pkgver" arch-meson build
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Friday, November 13, 2020 @ 10:46:09 Author: maximbaz Revision: 753856 waybar: rebuild with rfkill support use arch-meson directly Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-11-13 09:49:32 UTC (rev 753855) +++ PKGBUILD2020-11-13 10:46:09 UTC (rev 753856) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.4 -pkgrel=2 +pkgrel=3 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -40,7 +40,7 @@ build() { cd "Waybar-$pkgver" -meson --prefix=/usr --wrap-mode=nofallback build +arch-meson build ninja -C build }
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, October 28, 2020 @ 08:05:49 Author: alucryd Revision: 735279 waybar 0.9.4-2: fmt ABI breakage rebuild Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-10-28 08:02:13 UTC (rev 735278) +++ PKGBUILD2020-10-28 08:05:49 UTC (rev 735279) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.4 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/";
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Thursday, August 6, 2020 @ 15:27:33 Author: ainola Revision: 671037 Rebuild against date 3.0.0 Also change dep to an .so instead of package name. Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-08-06 15:22:34 UTC (rev 671036) +++ PKGBUILD2020-08-06 15:27:33 UTC (rev 671037) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.3 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -15,7 +15,7 @@ 'libsigc++' 'fmt' 'wayland' -'chrono-date' +'libdate-tz.so' 'libspdlog.so' 'gtk-layer-shell' 'libpulse'
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Thursday, August 6, 2020 @ 07:18:34 Author: maximbaz Revision: 670587 upgpkg: waybar 0.9.3-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-08-06 07:17:35 UTC (rev 670586) +++ PKGBUILD2020-08-06 07:18:34 UTC (rev 670587) @@ -2,8 +2,8 @@ # Maintainer: Maxim Baz <$pkgname at maximbaz dot com> pkgname=waybar -pkgver=0.9.2 -pkgrel=3 +pkgver=0.9.3 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -36,7 +36,7 @@ source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; ) -sha256sums=('9740662de19dd6126c23efb69c9dc7f9d918443543af12aee770de39d415bdf8') +sha256sums=('15cadd05c6a366fd99a92b0f149974c697902c4683c50e2af69f3e59571793e5') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, June 15, 2020 @ 00:05:31 Author: ainola Revision: 644740 jsoncpp 1.9.3 soname change rebuild https://www.archlinux.org/todo/jsoncpp-193-soname-change/ Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-06-14 23:34:59 UTC (rev 644739) +++ PKGBUILD2020-06-15 00:05:31 UTC (rev 644740) @@ -3,7 +3,7 @@ pkgname=waybar pkgver=0.9.2 -pkgrel=2 +pkgrel=3 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/";
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, May 2, 2020 @ 10:53:07 Author: maximbaz Revision: 624349 waybar: dependencies review Modified: waybar/trunk/PKGBUILD --+ PKGBUILD | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-05-02 10:43:26 UTC (rev 624348) +++ PKGBUILD2020-05-02 10:53:07 UTC (rev 624349) @@ -3,26 +3,32 @@ pkgname=waybar pkgver=0.9.2 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; license=('MIT') depends=( -'chrono-date' -'gtk-layer-shell' 'gtkmm3' 'libjsoncpp.so' +'libinput' +'libsigc++' +'fmt' +'wayland' +'chrono-date' 'libspdlog.so' +'gtk-layer-shell' +'libpulse' +'libnl' +'libappindicator-gtk3' 'libdbusmenu-gtk3' -'libpulse' 'libmpdclient' ) makedepends=( 'cmake' 'meson' -'scdoc' # For generating manpages -'sway' # Support for workspace and window title modules +'scdoc' # For generating manpages +'wayland-protocols' ) optdepends=( 'otf-font-awesome: Icons in the default configuration'
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, April 11, 2020 @ 15:58:02 Author: maximbaz Revision: 613341 upgpkg: waybar 0.9.2-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |9 + 1 file changed, 5 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-04-11 13:19:45 UTC (rev 613340) +++ PKGBUILD2020-04-11 15:58:02 UTC (rev 613341) @@ -1,8 +1,9 @@ # Maintainer: Brett Cornwall +# Maintainer: Maxim Baz <$pkgname at maximbaz dot com> pkgname=waybar -pkgver=0.9.1 -pkgrel=3 +pkgver=0.9.2 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -21,7 +22,7 @@ 'cmake' 'meson' 'scdoc' # For generating manpages -'sway' # Support for workspace and window title modules +'sway' # Support for workspace and window title modules ) optdepends=( 'otf-font-awesome: Icons in the default configuration' @@ -29,7 +30,7 @@ source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; ) -sha256sums=('97d61baced26835b49d9366a1316925fc5ec59c4ae9269d85c71c5375a061478') +sha256sums=('9740662de19dd6126c23efb69c9dc7f9d918443543af12aee770de39d415bdf8') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, April 6, 2020 @ 06:31:56 Author: ainola Revision: 612032 Actually rebuild for libjsoncpp.so=22-64 Previous rebuild was incorrect Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-04-06 03:59:06 UTC (rev 612031) +++ PKGBUILD2020-04-06 06:31:56 UTC (rev 612032) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.9.1 -pkgrel=2 +pkgrel=3 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/";
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Sunday, March 29, 2020 @ 02:36:14 Author: ainola Revision: 605869 Rebuild against jsoncpp 1.9.2 Also remove jsoncpp dep as we already have the .so dependency listed. Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-03-29 00:35:32 UTC (rev 605868) +++ PKGBUILD2020-03-29 02:36:14 UTC (rev 605869) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.9.1 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -11,7 +11,6 @@ 'chrono-date' 'gtk-layer-shell' 'gtkmm3' -'jsoncpp' 'libjsoncpp.so' 'libspdlog.so' 'libdbusmenu-gtk3'
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, February 26, 2020 @ 04:10:31 Author: ainola Revision: 582232 chrono-date, not date. And it's a dep, not builddep Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-02-26 02:13:23 UTC (rev 582231) +++ PKGBUILD2020-02-26 04:10:31 UTC (rev 582232) @@ -8,6 +8,7 @@ url="https://github.com/Alexays/Waybar/"; license=('MIT') depends=( +'chrono-date' 'gtk-layer-shell' 'gtkmm3' 'jsoncpp' @@ -19,7 +20,6 @@ ) makedepends=( 'cmake' -'date' 'meson' 'scdoc' # For generating manpages 'sway' # Support for workspace and window title modules
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, February 26, 2020 @ 02:13:13 Author: ainola Revision: 582230 update to 0.9.1; add 'date' and 'gtk-layer-shell' Modified: waybar/trunk/PKGBUILD --+ PKGBUILD | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-02-26 02:12:01 UTC (rev 582229) +++ PKGBUILD2020-02-26 02:13:13 UTC (rev 582230) @@ -1,13 +1,14 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.9.0 -pkgrel=2 +pkgver=0.9.1 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; license=('MIT') depends=( +'gtk-layer-shell' 'gtkmm3' 'jsoncpp' 'libjsoncpp.so' @@ -16,11 +17,12 @@ 'libpulse' 'libmpdclient' ) -# Sway is needed for building support for workspace and window title modules makedepends=( +'cmake' +'date' 'meson' 'scdoc' # For generating manpages -'sway' +'sway' # Support for workspace and window title modules ) optdepends=( 'otf-font-awesome: Icons in the default configuration' @@ -28,11 +30,11 @@ source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; ) -sha256sums=('65e8397d5a8880cbb9172138e361b0d91f649bc99327d36945e38d1e5dbb157d') +sha256sums=('97d61baced26835b49d9366a1316925fc5ec59c4ae9269d85c71c5375a061478') build() { cd "Waybar-$pkgver" -meson --prefix=/usr build +meson --prefix=/usr --wrap-mode=nofallback build ninja -C build }
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, January 15, 2020 @ 23:36:14 Author: ainola Revision: 552710 rebuild for spdlog soname bump Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-01-15 23:23:20 UTC (rev 552709) +++ PKGBUILD2020-01-15 23:36:14 UTC (rev 552710) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.9.0 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -11,10 +11,10 @@ 'gtkmm3' 'jsoncpp' 'libjsoncpp.so' +'libspdlog.so' 'libdbusmenu-gtk3' 'libpulse' 'libmpdclient' -'spdlog' ) # Sway is needed for building support for workspace and window title modules makedepends=(
[arch-commits] Commit in waybar/trunk (PKGBUILD include_cassert.patch)
Date: Sunday, December 29, 2019 @ 01:12:06 Author: ainola Revision: 543664 upgpkg: waybar 0.9.0-1; rm cassert patch Modified: waybar/trunk/PKGBUILD Deleted: waybar/trunk/include_cassert.patch ---+ PKGBUILD | 13 +++-- include_cassert.patch | 10 -- 2 files changed, 3 insertions(+), 20 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-12-28 20:37:48 UTC (rev 543663) +++ PKGBUILD2019-12-29 01:12:06 UTC (rev 543664) @@ -1,8 +1,8 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.8.0 -pkgrel=5 +pkgver=0.9.0 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -27,16 +27,9 @@ ) source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; -"include_cassert.patch" ) -sha256sums=('2de2f0cec243da0d9ff2255ceb9dac9d95e8be06d6ea13926fae460d72e4b8aa' -'ca77d1ba64d0852bbf0aaa0b8c648e88f8712ed51fb39862b636eb0b33c6e7e1') +sha256sums=('65e8397d5a8880cbb9172138e361b0d91f649bc99327d36945e38d1e5dbb157d') -prepare() { -cd "Waybar-$pkgver" -patch -p1 < ../include_cassert.patch -} - build() { cd "Waybar-$pkgver" meson --prefix=/usr build Deleted: include_cassert.patch === --- include_cassert.patch 2019-12-28 20:37:48 UTC (rev 543663) +++ include_cassert.patch 2019-12-29 01:12:06 UTC (rev 543664) @@ -1,10 +0,0 @@ a/src/modules/network.cpp 2019-08-29 02:56:57.0 -0700 -+++ b/src/modules/network.cpp 2019-12-10 18:48:47.795028451 -0800 -@@ -2,6 +2,7 @@ - #include - #include - #include -+#include - - namespace { -
[arch-commits] Commit in waybar/trunk (PKGBUILD include_cassert.patch)
Date: Wednesday, December 11, 2019 @ 03:30:37 Author: ainola Revision: 536603 Rebuild waybar against ABI change to fmt The latest release does not include a necessary #include for , so we need to patch that in for now. https://github.com/gabime/spdlog/commit/1aa9ea92e20142a1ce2f2e1ac40ed1fa781fac19.patch Added: waybar/trunk/include_cassert.patch Modified: waybar/trunk/PKGBUILD ---+ PKGBUILD | 11 +-- include_cassert.patch | 10 ++ 2 files changed, 19 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-12-11 03:25:51 UTC (rev 536602) +++ PKGBUILD2019-12-11 03:30:37 UTC (rev 536603) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.8.0 -pkgrel=4 +pkgrel=5 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -27,9 +27,16 @@ ) source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; +"include_cassert.patch" ) -sha256sums=('2de2f0cec243da0d9ff2255ceb9dac9d95e8be06d6ea13926fae460d72e4b8aa') +sha256sums=('2de2f0cec243da0d9ff2255ceb9dac9d95e8be06d6ea13926fae460d72e4b8aa' +'ca77d1ba64d0852bbf0aaa0b8c648e88f8712ed51fb39862b636eb0b33c6e7e1') +prepare() { +cd "Waybar-$pkgver" +patch -p1 < ../include_cassert.patch +} + build() { cd "Waybar-$pkgver" meson --prefix=/usr build Added: include_cassert.patch === --- include_cassert.patch (rev 0) +++ include_cassert.patch 2019-12-11 03:30:37 UTC (rev 536603) @@ -0,0 +1,10 @@ +--- a/src/modules/network.cpp 2019-08-29 02:56:57.0 -0700 b/src/modules/network.cpp 2019-12-10 18:48:47.795028451 -0800 +@@ -2,6 +2,7 @@ + #include + #include + #include ++#include + + namespace { +
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, October 9, 2019 @ 00:23:24 Author: ainola Revision: 514316 Rebuild with spdlog as a shared lib Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-10-08 23:57:44 UTC (rev 514315) +++ PKGBUILD2019-10-09 00:23:24 UTC (rev 514316) @@ -2,13 +2,12 @@ pkgname=waybar pkgver=0.8.0 -pkgrel=3 +pkgrel=4 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; license=('MIT') depends=( -'fmt' 'gtkmm3' 'jsoncpp' 'libjsoncpp.so' @@ -15,12 +14,12 @@ 'libdbusmenu-gtk3' 'libpulse' 'libmpdclient' +'spdlog' ) # Sway is needed for building support for workspace and window title modules makedepends=( 'meson' 'scdoc' # For generating manpages -'spdlog' 'sway' ) optdepends=(
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, September 14, 2019 @ 11:18:56 Author: anthraxx Revision: 510515 upgpkg: waybar 0.8.0-3 (jsoncpp 1.9.1 rebuild) Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-09-14 10:28:02 UTC (rev 510514) +++ PKGBUILD2019-09-14 11:18:56 UTC (rev 510515) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.8.0 -pkgrel=2 +pkgrel=3 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -11,6 +11,7 @@ 'fmt' 'gtkmm3' 'jsoncpp' +'libjsoncpp.so' 'libdbusmenu-gtk3' 'libpulse' 'libmpdclient'
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Sunday, September 8, 2019 @ 03:37:21 Author: ainola Revision: 508620 Add scdoc makedep; generate manpages Fixes https://bugs.archlinux.org/task/63619 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-09-08 02:39:55 UTC (rev 508619) +++ PKGBUILD2019-09-08 03:37:21 UTC (rev 508620) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.8.0 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -18,6 +18,7 @@ # Sway is needed for building support for workspace and window title modules makedepends=( 'meson' +'scdoc' # For generating manpages 'spdlog' 'sway' )
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Friday, August 30, 2019 @ 01:21:34 Author: ainola Revision: 505096 upgpkg: waybar 0.8.0-1 Remove fmt 6 patch since 0.8.0 builds cleanly with it now. Modified: waybar/trunk/PKGBUILD --+ PKGBUILD | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-08-29 23:09:17 UTC (rev 505095) +++ PKGBUILD2019-08-30 01:21:34 UTC (rev 505096) @@ -1,8 +1,8 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.7.2 -pkgrel=2 +pkgver=0.8.0 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -26,16 +26,9 @@ ) source=( "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; -waybar-fmt6.patch ) -sha256sums=('6996a7d6fbf5457ec42ba9ebc76bf1417618ed9103074490a0730d58161ffdb0' -'3412fb8c7260a09a5ae61051dba38196bb4bc9f223ba05bb3ed3f4a139e84514') +sha256sums=('2de2f0cec243da0d9ff2255ceb9dac9d95e8be06d6ea13926fae460d72e4b8aa') -prepare() { -cd "Waybar-$pkgver" -patch -Np1 -i ../waybar-fmt6.patch -} - build() { cd "Waybar-$pkgver" meson --prefix=/usr build
[arch-commits] Commit in waybar/trunk (PKGBUILD waybar-fmt6.patch)
Date: Tuesday, August 27, 2019 @ 19:44:58 Author: alucryd Revision: 503318 fmt 6.0 rebuild: waybar 0.7.2-2 Added: waybar/trunk/waybar-fmt6.patch Modified: waybar/trunk/PKGBUILD ---+ PKGBUILD | 15 +++-- waybar-fmt6.patch | 82 2 files changed, 94 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-08-27 18:21:01 UTC (rev 503317) +++ PKGBUILD2019-08-27 19:44:58 UTC (rev 503318) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.7.2 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -24,9 +24,18 @@ optdepends=( 'otf-font-awesome: Icons in the default configuration' ) -source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('6996a7d6fbf5457ec42ba9ebc76bf1417618ed9103074490a0730d58161ffdb0') +source=( + "$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz"; +waybar-fmt6.patch +) +sha256sums=('6996a7d6fbf5457ec42ba9ebc76bf1417618ed9103074490a0730d58161ffdb0' +'3412fb8c7260a09a5ae61051dba38196bb4bc9f223ba05bb3ed3f4a139e84514') +prepare() { +cd "Waybar-$pkgver" +patch -Np1 -i ../waybar-fmt6.patch +} + build() { cd "Waybar-$pkgver" meson --prefix=/usr build Added: waybar-fmt6.patch === --- waybar-fmt6.patch (rev 0) +++ waybar-fmt6.patch 2019-08-27 19:44:58 UTC (rev 503318) @@ -0,0 +1,82 @@ +From 4c18a0b6238f88e8f6deda6259e1d17968bcf755 Mon Sep 17 00:00:00 2001 +From: Jan Beich +Date: Tue, 27 Aug 2019 13:19:07 + +Subject: [PATCH] Unbreak build with fmtlib 6.0.0 + +In file included from ../src/factory.cpp:1: +In file included from ../include/factory.hpp:4: +../include/modules/clock.hpp:5:10: fatal error: 'fmt/time.h' file not found + #include "fmt/time.h" + ^~~~ +In file included from ../src/bar.cpp:4: +In file included from ../include/factory.hpp:4: +In file included from ../include/modules/clock.hpp:3: +In file included from /usr/include/fmt/chrono.h:12: +/usr/include/fmt/locale.h:19:35: error: parameter type 'fmt::v5::internal::buffer' (aka 'basic_buffer') is an abstract class +const std::locale& loc, buffer& buf, + ^ +/usr/include/spdlog/fmt/bundled/core.h:238:16: note: unimplemented pure virtual method 'grow' in 'basic_buffer' + virtual void grow(std::size_t capacity) = 0; + ^ +In file included from ../src/modules/sni/host.cpp:3: +/usr/include/fmt/ostream.h:22:9: error: expected member name or ';' after declaration specifiers + buffer& buffer_; + ~~^ +/usr/include/fmt/ostream.h:25:19: error: expected ')' + formatbuf(buffer& buf) : buffer_(buf) {} + ^ +/usr/include/fmt/ostream.h:25:12: note: to match this '(' + formatbuf(buffer& buf) : buffer_(buf) {} + ^ +/usr/include/fmt/ostream.h:25:42: error: use of undeclared identifier 'buf'; did you mean 'prettify_handler::buf'? + formatbuf(buffer& buf) : buffer_(buf) {} + ^~~ + prettify_handler::buf +/usr/include/spdlog/fmt/bundled/format-inl.h:551:11: note: 'prettify_handler::buf' declared here + buffer &buf; + ^ +--- + include/modules/clock.hpp | 2 +- + src/bar.cpp | 2 +- + src/modules/sni/host.cpp | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/include/modules/clock.hpp b/include/modules/clock.hpp +index b812b70..4a0c1e5 100644 +--- a/include/modules/clock.hpp b/include/modules/clock.hpp +@@ -1,8 +1,8 @@ + #pragma once + ++#include + #include + #include "ALabel.hpp" +-#include "fmt/time.h" + #include "util/sleeper_thread.hpp" + + namespace waybar::modules { +diff --git a/src/bar.cpp b/src/bar.cpp +index 8a45869..8e64349 100644 +--- a/src/bar.cpp b/src/bar.cpp +@@ -1,7 +1,7 @@ + #include "bar.hpp" +-#include + #include "client.hpp" + #include "factory.hpp" ++#include + + waybar::Bar::Bar(struct waybar_output* w_output, const Json::Value& w_config) + : output(w_output), +diff --git a/src/modules/sni/host.cpp b/src/modules/sni/host.cpp +index 015f756..c815c65 100644 +--- a/src/modules/sni/host.cpp b/src/modules/sni/host.cpp +@@ -1,6 +1,6 @@ + #include "modules/sni/host.hpp" +-#include + #include ++#include + + namespace waybar::modules::SNI { +
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Friday, August 9, 2019 @ 14:27:34 Author: ainola Revision: 498510 upgpkg: waybar 0.7.2-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-08-09 14:22:17 UTC (rev 498509) +++ PKGBUILD2019-08-09 14:27:34 UTC (rev 498510) @@ -1,8 +1,8 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.7.1 -pkgrel=2 +pkgver=0.7.2 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -25,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('5100ea9a2ebd2326c791c05d68fc692eaf8c500b21850758205a0a61a0dc77de') +sha256sums=('6996a7d6fbf5457ec42ba9ebc76bf1417618ed9103074490a0730d58161ffdb0') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, July 15, 2019 @ 23:50:44 Author: ainola Revision: 489892 waybar: move spdlog from deps to makedeps Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-07-15 23:45:54 UTC (rev 489891) +++ PKGBUILD2019-07-15 23:50:44 UTC (rev 489892) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.7.1 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -14,11 +14,11 @@ 'libdbusmenu-gtk3' 'libpulse' 'libmpdclient' -'spdlog' ) # Sway is needed for building support for workspace and window title modules makedepends=( 'meson' +'spdlog' 'sway' ) optdepends=(
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, July 15, 2019 @ 14:46:24 Author: ainola Revision: 489873 upgpkg: waybar 0.7.1-1 Include spdlog dep. Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-07-15 13:57:04 UTC (rev 489872) +++ PKGBUILD2019-07-15 14:46:24 UTC (rev 489873) @@ -1,7 +1,7 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.7.0 +pkgver=0.7.1 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -14,6 +14,7 @@ 'libdbusmenu-gtk3' 'libpulse' 'libmpdclient' +'spdlog' ) # Sway is needed for building support for workspace and window title modules makedepends=( @@ -24,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('413bff4691c8c8b9d9cb98219063cf0c7c9cb05c946313984c8969009f172659') +sha256sums=('5100ea9a2ebd2326c791c05d68fc692eaf8c500b21850758205a0a61a0dc77de') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Sunday, June 23, 2019 @ 00:30:24 Author: ainola Revision: 482823 upgpkg: waybar 0.7.0-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-06-22 23:56:38 UTC (rev 482822) +++ PKGBUILD2019-06-23 00:30:24 UTC (rev 482823) @@ -1,8 +1,8 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.6.9 -pkgrel=2 +pkgver=0.7.0 +pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('3fb2e01377edbc275d14c9952182c856b8829968deddc0da042f413d804e4aef') +sha256sums=('413bff4691c8c8b9d9cb98219063cf0c7c9cb05c946313984c8969009f172659') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, June 22, 2019 @ 12:43:45 Author: bgyorgy Revision: 482766 upgpkg: waybar 0.6.9-2 Remove unneded dependency on libappindicator-gtk3 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-06-22 11:30:59 UTC (rev 482765) +++ PKGBUILD2019-06-22 12:43:45 UTC (rev 482766) @@ -2,7 +2,7 @@ pkgname=waybar pkgver=0.6.9 -pkgrel=1 +pkgrel=2 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') url="https://github.com/Alexays/Waybar/"; @@ -11,7 +11,7 @@ 'fmt' 'gtkmm3' 'jsoncpp' -'libappindicator-gtk3' +'libdbusmenu-gtk3' 'libpulse' 'libmpdclient' )
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, June 15, 2019 @ 02:22:44 Author: ainola Revision: 481594 upgpkg: waybar 0.6.9-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-06-14 23:58:12 UTC (rev 481593) +++ PKGBUILD2019-06-15 02:22:44 UTC (rev 481594) @@ -1,7 +1,7 @@ # Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.6.8 +pkgver=0.6.9 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('f8e7628f1d751ffb5d0ac69bfdd52fd9088e67eb7dc228afa891dc1d8c5e22ce') +sha256sums=('3fb2e01377edbc275d14c9952182c856b8829968deddc0da042f413d804e4aef') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, June 8, 2019 @ 23:34:33 Author: ainola Revision: 478482 upgpkg: waybar 0.6.8-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-06-08 23:18:48 UTC (rev 478481) +++ PKGBUILD2019-06-08 23:34:33 UTC (rev 478482) @@ -1,7 +1,7 @@ -# Maintainer: Ainola +# Maintainer: Brett Cornwall pkgname=waybar -pkgver=0.6.7 +pkgver=0.6.8 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('45f8d24c628569b7691654a6079bc4fb70fee474e2c996e46af044e3dcffd036') +sha256sums=('f8e7628f1d751ffb5d0ac69bfdd52fd9088e67eb7dc228afa891dc1d8c5e22ce') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, June 1, 2019 @ 01:41:26 Author: ainola Revision: 476205 upgpkg: waybar 0.6.7-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-06-01 00:47:32 UTC (rev 476204) +++ PKGBUILD2019-06-01 01:41:26 UTC (rev 476205) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.6 +pkgver=0.6.7 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('03bc5019bd46175d2d9b2112ca2baa265a71e17bbd0dd2fdc51156f1ed9b021a') +sha256sums=('45f8d24c628569b7691654a6079bc4fb70fee474e2c996e46af044e3dcffd036') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Thursday, May 23, 2019 @ 02:12:55 Author: ainola Revision: 468936 upgpkg: waybar 0.6.6-1 Per upstream, rm wlroots dependency Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-05-23 02:10:36 UTC (rev 468935) +++ PKGBUILD2019-05-23 02:12:55 UTC (rev 468936) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.5 +pkgver=0.6.6 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -19,13 +19,12 @@ makedepends=( 'meson' 'sway' -'wlroots' ) optdepends=( 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('104fa3c1bb23858fb56a072858910e61a6fc3184104b98c679b5b11a2d528228') +sha256sums=('03bc5019bd46175d2d9b2112ca2baa265a71e17bbd0dd2fdc51156f1ed9b021a') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, May 18, 2019 @ 20:54:29 Author: ainola Revision: 467894 upgpkg: waybar 0.6.5-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-05-18 20:06:19 UTC (rev 467893) +++ PKGBUILD2019-05-18 20:54:29 UTC (rev 467894) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.4 +pkgver=0.6.5 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -25,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('a483565d6be665385f3a39318108ab09acc995b5ddc97efe744630cbd6938fa6') +sha256sums=('104fa3c1bb23858fb56a072858910e61a6fc3184104b98c679b5b11a2d528228') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, May 18, 2019 @ 03:07:05 Author: ainola Revision: 467797 upgpkg: waybar 0.6.4-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-05-17 21:25:43 UTC (rev 467796) +++ PKGBUILD2019-05-18 03:07:05 UTC (rev 467797) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.3 +pkgver=0.6.4 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -25,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('6ea5934d77b81982dfd3d0a1ed521329fa0e6c250ecd004288f5dcdb6cb62dea') +sha256sums=('a483565d6be665385f3a39318108ab09acc995b5ddc97efe744630cbd6938fa6') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Monday, May 13, 2019 @ 00:08:27 Author: ainola Revision: 467108 upgpkg: waybar 0.6.3-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-05-12 22:25:18 UTC (rev 467107) +++ PKGBUILD2019-05-13 00:08:27 UTC (rev 467108) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.2 +pkgver=0.6.3 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -25,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('dfd8dd7a6d6849a6eca596038b9929d51bcfa6d1d47afaa11abde3dc5b672a62') +sha256sums=('6ea5934d77b81982dfd3d0a1ed521329fa0e6c250ecd004288f5dcdb6cb62dea') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, May 11, 2019 @ 03:31:06 Author: ainola Revision: 465053 upgpkg: waybar 0.6.2-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-05-11 03:24:45 UTC (rev 465052) +++ PKGBUILD2019-05-11 03:31:06 UTC (rev 465053) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.1 +pkgver=0.6.2 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -25,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('f23f2be390cde1257b7bb1ffa94d0d9bbab5712765e6b16e177419510db63c44') +sha256sums=('dfd8dd7a6d6849a6eca596038b9929d51bcfa6d1d47afaa11abde3dc5b672a62') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Friday, May 3, 2019 @ 03:22:05 Author: ainola Revision: 458119 upgpkg: waybar 0.6.1-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-05-03 03:21:24 UTC (rev 458118) +++ PKGBUILD2019-05-03 03:22:05 UTC (rev 458119) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.6.0 +pkgver=0.6.1 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -25,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('5fb8c10b5f02e680dee2ec0ef76965bb382cefbc83125976c80e6db4590449d2') +sha256sums=('f23f2be390cde1257b7bb1ffa94d0d9bbab5712765e6b16e177419510db63c44') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Friday, April 26, 2019 @ 02:34:18 Author: ainola Revision: 454102 upgpkg: waybar 0.6.0-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-04-26 02:24:21 UTC (rev 454101) +++ PKGBUILD2019-04-26 02:34:18 UTC (rev 454102) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.5.1 +pkgver=0.6.0 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -13,6 +13,7 @@ 'jsoncpp' 'libappindicator-gtk3' 'libpulse' +'libmpdclient' ) # Sway is needed for building support for workspace and window title modules makedepends=( @@ -24,7 +25,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('e2a7042ca64161272ce3044941eb61de025c27865f577e3e26c513277c6d2c7e') +sha256sums=('5fb8c10b5f02e680dee2ec0ef76965bb382cefbc83125976c80e6db4590449d2') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Friday, April 5, 2019 @ 00:09:25 Author: ainola Revision: 449701 upgpkg: waybar 0.5.1-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-04-04 21:35:33 UTC (rev 449700) +++ PKGBUILD2019-04-05 00:09:25 UTC (rev 449701) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.5.0 +pkgver=0.5.1 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('c858722eac1ba4ac72fe28c6b159de2642017e277855b200131f96be15d2640b') +sha256sums=('e2a7042ca64161272ce3044941eb61de025c27865f577e3e26c513277c6d2c7e') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Wednesday, March 20, 2019 @ 14:19:47 Author: ainola Revision: 442966 upgpkg: waybar 0.5.0-1 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-03-20 14:18:01 UTC (rev 442965) +++ PKGBUILD2019-03-20 14:19:47 UTC (rev 442966) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.4.0 +pkgver=0.5.0 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('c2edb71a197c9439e634b1033fbbe634a16de163be2e0a3ad443834fb6a8ee75') +sha256sums=('c858722eac1ba4ac72fe28c6b159de2642017e277855b200131f96be15d2640b') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Saturday, March 2, 2019 @ 22:03:49 Author: ainola Revision: 437416 upgpkg: waybar 0.4.0 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-03-02 21:55:59 UTC (rev 437415) +++ PKGBUILD2019-03-02 22:03:49 UTC (rev 437416) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.3.0 +pkgver=0.4.0 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('5813da72a86f3641157ae026f7b5be2945c8130cac7f4492232c0cade35193d8') +sha256sums=('c2edb71a197c9439e634b1033fbbe634a16de163be2e0a3ad443834fb6a8ee75') build() { cd "Waybar-$pkgver"
[arch-commits] Commit in waybar/trunk (PKGBUILD)
Date: Tuesday, January 29, 2019 @ 00:41:01 Author: ainola Revision: 428346 upgpkg: waybar-0.3.0 Modified: waybar/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-01-29 00:02:06 UTC (rev 428345) +++ PKGBUILD2019-01-29 00:41:01 UTC (rev 428346) @@ -1,7 +1,7 @@ # Maintainer: Ainola pkgname=waybar -pkgver=0.2.3 +pkgver=0.3.0 pkgrel=1 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based compositors' arch=('x86_64') @@ -24,7 +24,7 @@ 'otf-font-awesome: Icons in the default configuration' ) source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz";) -sha256sums=('dbaccbf829ab62578a5956e412b4cc9905be62af74425423628721a1b550f4c8') +sha256sums=('5813da72a86f3641157ae026f7b5be2945c8130cac7f4492232c0cade35193d8') build() { cd "Waybar-$pkgver"