Mate-utils, incomplete PKGBUILD, provides field

The package of manjaro repos is the same that arch? is a question but i guess that yes.
Because in arch community repo say “orphan” in manteiners. https://archlinux.org/packages/community/x86_64/mate-utils/

Finding what provides mate-screenshot I found that is mate-utils, looking the Mate github repo and using pacman -Fy mate-screenshot, I found that is mate-utils.

The PKGBUILD does not have provides field.

Here example from Manjaro repo and a pkg builded by me (using PKGBUILD from arch), adding the provides field with the others binaries in the GitHub of mate.

Stock package: 
LANG=C pacman -Si mate-utils
Repository      : community
Name            : mate-utils
Version         : 1.26.0-1
Description     : Common MATE utilities for viewing disk usage, logs and fonts, taking screenshots, managing dictionaries and searching files
Architecture    : x86_64
URL             : http://mate-desktop.org
Licenses        : GPL
Groups          : mate-extra
Provides        : None <-----!!!!
Depends On      : mate-desktop  gettext  libcanberra  libgtop  libsm  udisks2
Optional Deps   : mate-panel: Look up words in dictionaries from the panel
Conflicts With  : mate-utils-gtk3
Replaces        : mate-utils-gtk3
Download Size   : 6.65 MiB
Installed Size  : 24.50 MiB
Packager        : Antonio Rojas <arojas@archlinux.org>
Build Date      : Sun Aug 8 16:23:34 2021
Validated By    : MD5 Sum  SHA-256 Sum  Signature

Modified PKGBUILD recompiled package:

LANG=C pacman -Qi mate-utils
Name            : mate-utils
Version         : 1.26.0-2
Description     : Common MATE utilities for viewing disk usage, logs and fonts, taking screenshots, managing dictionaries and searching files
Architecture    : x86_64
URL             : http://mate-desktop.org
Licenses        : GPL
Groups          : mate-extra
Provides        : mate-screenshot  mate-dictionary  logview  baobab  gsearchtool  mate-disk-image-mounter
Depends On      : mate-desktop  gettext  libcanberra  libgtop  libsm  udisks2
Optional Deps   : mate-panel: Look up words in dictionaries from the panel [installed]
Required By     : None
Optional For    : None
Conflicts With  : mate-utils-gtk3
Replaces        : mate-utils-gtk3
Installed Size  : 22.88 MiB
Packager        : Unknown Packager
Build Date      : Tue Feb 15 00:15:24 2022
Install Date    : Tue Feb 15 00:20:12 2022
Install Reason  : Explicitly installed
Install Script  : No
Validated By    : None

Is only a suggestion recompile it.
Post the PKGBUILD that I used here.

# Maintainer: Brad Fanella <cesura@archlinux.org>
# Contributor: Martin Wimpress <code@flexion.org>

pkgname=mate-utils
pkgver=1.26.0
pkgrel=2
pkgdesc="Common MATE utilities for viewing disk usage, logs and fonts, taking screenshots, managing dictionaries and searching files"
url="http://mate-desktop.org"
arch=('x86_64')
license=('GPL')
depends=('mate-desktop' 'gettext' 'libcanberra' 'libgtop' 'libsm' 'udisks2')
makedepends=('inkscape' 'itstool' 'mate-panel' 'python')
optdepends=('mate-panel: Look up words in dictionaries from the panel')
groups=('mate-extra')
provides=('mate-screenshot' 'mate-dictionary' 'logview' 'baobab' 'gsearchtool' 'mate-disk-image-mounter')
conflicts=('mate-utils-gtk3')
replaces=('mate-utils-gtk3')
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
sha256sums=('7ca56ab242e8efaa64f93ffb84f6e4bf8d4d0df01e20b3b6ef8956ce3192782e')

build() {
    	cd "${pkgname}-${pkgver}"
    	./configure \
        	--prefix=/usr \
        	--libexecdir=/usr/lib/${_pkgbase} \
        	--sysconfdir=/etc \
        	--disable-maintainer-flags

    	#https://bugzilla.gnome.org/show_bug.cgi?id=656231
    	sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool

    	make
}

package() {
    	cd "${pkgname}-${pkgver}"
    	make DESTDIR="${pkgdir}" install
}

Best regards.

Yes, we inherit it from Arch. It appears the Mate package groups currently have no maintainer. If there is an issue, then file an Arch bug report.

mate-disk-usage-analyzer, while similar, is not the same as baobab (Disk Usage Analyzer) and neither provide each other.

Ok so, I can file a bug in Arch from Manjaro? (I no have Arch installed).
Anyways, wouldn’t it be good to rebuild mate-utils in Manjaro with the provides field? (fixing the baobab and mate disk analizer). The mistake is because in the github repo of mate says “baobab” https://github.com/mate-desktop/mate-utils

Reported: FS#73804 : Not "provides" field in mate-utils package
Thanks

That’s because as it says there:

mate-utils is a fork of GNOME Utilities.

Technically you should reproduce the issue on Arch before doing so, however in a case like this with suggestions for a PKGBUILD it’s fine.