Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / xfce4-mailwatch-plugin
Commits: 2158c519 by Robin Candau at 2024-09-20T11:36:52+02:00 upgpkg: 1.3.1-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,15 +1,17 @@ pkgbase = xfce4-mailwatch-plugin pkgdesc = Multi-protocol, multi-mailbox mail watcher for the Xfce4 panel pkgver = 1.3.1 - pkgrel = 2 - url = https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin + pkgrel = 3 + url = https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin/start arch = x86_64 groups = xfce4-goodies - license = GPL2 + license = GPL-2.0-or-later + makedepends = git makedepends = intltool + makedepends = xfce4-dev-tools depends = xfce4-panel depends = gnutls - source = https://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/1.3/xfce4-mailwatch-plugin-1.3.1.tar.bz2 - sha256sums = 054964e9fe4ca668486400991ce1ea01d07aac7ba235f4b14d4a8f7d9800046a + source = git+https://gitlab.xfce.org/panel-plugins/xfce4-mailwatch-plugin.git#tag=xfce4-mailwatch-plugin-1.3.1 + sha256sums = a41cf1bd933df1776618e72a18974b2f9caa90f3cf0f6ba97dfedee4f1b14f70 pkgname = xfce4-mailwatch-plugin ===================================== .nvchecker.toml ===================================== @@ -0,0 +1,5 @@ +[xfce4-mailwatch-plugin] +source = "git" +git = "https://gitlab.xfce.org/panel-plugins/xfce4-mailwatch-plugin.git" +prefix = "xfce4-mailwatch-plugin-" +exclude_regex = "1.*" ===================================== PKGBUILD ===================================== @@ -1,33 +1,37 @@ # Maintainer: Evangelos Foutras <[email protected]> +# Maintainer: Robin Candau <[email protected]> # Contributor: AndyRTR <[email protected]> # Contributor: Suzy Williams <[email protected]> pkgname=xfce4-mailwatch-plugin pkgver=1.3.1 -pkgrel=2 +pkgrel=3 pkgdesc="Multi-protocol, multi-mailbox mail watcher for the Xfce4 panel" arch=('x86_64') -url="https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin" -license=('GPL2') +url="https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin/start" +license=('GPL-2.0-or-later') groups=('xfce4-goodies') depends=('xfce4-panel' 'gnutls') -makedepends=('intltool') -source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) -sha256sums=('054964e9fe4ca668486400991ce1ea01d07aac7ba235f4b14d4a8f7d9800046a') +makedepends=('git' 'intltool' 'xfce4-dev-tools') +source=("git+https://gitlab.xfce.org/panel-plugins/xfce4-mailwatch-plugin.git#tag=$pkgname-$pkgver") +sha256sums=('a41cf1bd933df1776618e72a18974b2f9caa90f3cf0f6ba97dfedee4f1b14f70') -build() { - cd $pkgname-$pkgver - - ./configure \ +prepare() { + cd $pkgname + ./autogen.sh \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-debug +} + +build() { + cd $pkgname make } package() { - cd $pkgname-$pkgver + cd $pkgname make DESTDIR="$pkgdir" install } View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/xfce4-mailwatch-plugin/-/commit/2158c519b42427c15a7a8afa395a6b1fcb491865 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/xfce4-mailwatch-plugin/-/commit/2158c519b42427c15a7a8afa395a6b1fcb491865 You're receiving this email because of your account on gitlab.archlinux.org.
