From d6ce8c9a467f9c823cf0ec0810994129239a7499 Mon Sep 17 00:00:00 2001 From: Patrick Ziegler Date: Wed, 2 Dec 2020 22:00:15 +0100 Subject: [PATCH] aur: Update PKGBUILD for 3.5.0 release (#2261) --- contrib/polybar-git.aur/PKGBUILD | 4 ++-- contrib/polybar.aur/PKGBUILD | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/contrib/polybar-git.aur/PKGBUILD b/contrib/polybar-git.aur/PKGBUILD index 415ea4d1..7a9c552c 100644 --- a/contrib/polybar-git.aur/PKGBUILD +++ b/contrib/polybar-git.aur/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Patrick Ziegler _pkgname=polybar pkgname="${_pkgname}-git" -pkgver=3.4.0 +pkgver=3.5.0 pkgrel=1 pkgdesc="A fast and easy-to-use status bar" arch=("i686" "x86_64") @@ -18,7 +18,7 @@ provides=("polybar") conflicts=("polybar") install="${_pkgname}.install" source=("${_pkgname}::git+${url}.git") -md5sums=("SKIP") +sha256sums=("SKIP") pkgver() { git -C "${_pkgname}" describe --long --tags | sed "s/-/.r/;s/-/./g" diff --git a/contrib/polybar.aur/PKGBUILD b/contrib/polybar.aur/PKGBUILD index 3fff912b..fa68c05f 100644 --- a/contrib/polybar.aur/PKGBUILD +++ b/contrib/polybar.aur/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Patrick Ziegler pkgname=polybar -pkgver=3.4.3 +pkgver=3.5.0 pkgrel=1 pkgdesc="A fast and easy-to-use status bar" arch=("i686" "x86_64") @@ -16,7 +16,7 @@ makedepends=("cmake" "git" "python" "pkg-config" "python-sphinx" "i3-wm") conflicts=("polybar-git") install="${pkgname}.install" source=(${url}/releases/download/${pkgver}/polybar-${pkgver}.tar) -sha256sums=('d4ed121c1d3960493f8268f966d65a94d94c4646a4abb131687e37b63616822f') +sha256sums=('e8c1798c195854852fc7c99703287294123381101b371f171d4aa540aeb17afd') prepare() { mkdir -p "${pkgname}/build" @@ -24,7 +24,8 @@ prepare() { build() { cd "${pkgname}/build" || exit 1 - cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. + # Force cmake to use system python (to detect xcbgen) + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 .. cmake --build . }