Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / xfce4-wavelan-plugin
Commits: 7263b2fe by Robin Candau at 2024-09-21T00:05:36+02:00 upgpkg: 0.6.3-3 Overall rework of the PKGBUILD Context: https://archlinux.org/todo/general-xfce-packages-rework/ - Update URL (point to upstream doc webpage for the package) - Use SPDX identifier for the license - Switch to a more transparent source (git sources) - Add nvchecker integration (.nvchecker.toml) - - - - - 3 changed files: - .SRCINFO - + .nvchecker.toml - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -1,14 +1,16 @@ pkgbase = xfce4-wavelan-plugin pkgdesc = Plugin to monitor wifi connectivity for the Xfce4 panel pkgver = 0.6.3 - pkgrel = 2 - url = https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin + pkgrel = 3 + url = https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin/start arch = x86_64 groups = xfce4-goodies - license = custom + license = BSD-2-Clause + makedepends = git makedepends = intltool + makedepends = xfce4-dev-tools depends = xfce4-panel - source = https://archive.xfce.org/src/panel-plugins/xfce4-wavelan-plugin/0.6/xfce4-wavelan-plugin-0.6.3.tar.bz2 - sha256sums = 61c0c2f56cb70872d403b770dd76349df9ff24c0dbe905ee1b4f913c34d8f72b + source = git+https://gitlab.xfce.org/panel-plugins/xfce4-wavelan-plugin.git#tag=xfce4-wavelan-plugin-0.6.3 + sha256sums = be53ea5bdfad55cd22ad8004b7501fe9e4c0d4ea34e5f2839dfc71a662d88b7f pkgname = xfce4-wavelan-plugin ===================================== .nvchecker.toml ===================================== @@ -0,0 +1,5 @@ +[xfce4-wavelan-plugin] +source = "git" +git = "https://gitlab.xfce.org/panel-plugins/xfce4-wavelan-plugin.git" +prefix = "xfce4-wavelan-plugin-" +exclude_regex = ".*BMEURER_.*|0.5.11.*|.*master.*" ===================================== PKGBUILD ===================================== @@ -1,35 +1,44 @@ # Maintainer: Evangelos Foutras <[email protected]> +# Maintainer: Robin Candau <[email protected]> # Contributor: AndyRTR <[email protected]> # Contributor: Tobias Kieslich <tobias (at) archlinux.org> pkgname=xfce4-wavelan-plugin pkgver=0.6.3 -pkgrel=2 +pkgrel=3 pkgdesc="Plugin to monitor wifi connectivity for the Xfce4 panel" arch=('x86_64') -url="https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin" -license=('custom') +url="https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin/start" +license=('BSD-2-Clause') groups=('xfce4-goodies') depends=('xfce4-panel') -makedepends=('intltool') -source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) -sha256sums=('61c0c2f56cb70872d403b770dd76349df9ff24c0dbe905ee1b4f913c34d8f72b') +makedepends=('git' 'intltool' 'xfce4-dev-tools') +source=("git+https://gitlab.xfce.org/panel-plugins/xfce4-wavelan-plugin.git#tag=$pkgname-$pkgver") +sha256sums=('be53ea5bdfad55cd22ad8004b7501fe9e4c0d4ea34e5f2839dfc71a662d88b7f') -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure \ +prepare() { + cd $pkgname + ./autogen.sh \ --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib \ --localstatedir=/var \ --disable-static \ --disable-debug +} + +build() { + cd $pkgname make } +check() { + cd $pkgname + make check +} + package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname make DESTDIR="$pkgdir" install install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" } View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/xfce4-wavelan-plugin/-/commit/7263b2febb279e810504e574e419f727dd6a74a3 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/xfce4-wavelan-plugin/-/commit/7263b2febb279e810504e574e419f727dd6a74a3 You're receiving this email because of your account on gitlab.archlinux.org.
