update to 1.1.47

This commit is contained in:
Carlos Galindo 2025-07-15 14:57:42 +02:00
commit 3cadfd9847
2 changed files with 10 additions and 10 deletions

View file

@ -1,19 +1,19 @@
pkgbase = meshcentral pkgbase = meshcentral
pkgdesc = Web based remote computer management server pkgdesc = Web based remote computer management server
pkgver = 1.1.46 pkgver = 1.1.47
pkgrel = 1 pkgrel = 1
url = https://meshcentral.com url = https://meshcentral.com
arch = any arch = any
license = Apache license = Apache-2.0
makedepends = npm makedepends = npm
depends = nodejs>10 depends = nodejs>10
optdepends = mongodb: for larger deployments optdepends = mongodb: for larger deployments
noextract = meshcentral-1.1.46.tgz noextract = meshcentral-1.1.47.tgz
source = meshcentral-1.1.46.tgz::https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.46.tgz source = meshcentral-1.1.47.tgz::https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.47.tgz
source = meshcentral.service source = meshcentral.service
source = meshcentral.tmpfiles source = meshcentral.tmpfiles
source = meshcentral.sysusers source = meshcentral.sysusers
sha256sums = bebeea5019bc98f519fcfb5ba8201b34af44db7355f183e738a12a1fd9a3d694 sha256sums = 5a5c731e4cac683f8b6ac248faef46d1a0c2c27509df6232b8d6daeb5b42094a
sha256sums = 339ee5927101ca2cf945c2e26a4c3d1a7af452119e67fd57c089b5fa88cbdc4e sha256sums = 339ee5927101ca2cf945c2e26a4c3d1a7af452119e67fd57c089b5fa88cbdc4e
sha256sums = 30608aab6b9b268e492506a5c230a49cc28cb47dd09b7c28c586580132ee7f7a sha256sums = 30608aab6b9b268e492506a5c230a49cc28cb47dd09b7c28c586580132ee7f7a
sha256sums = 259209675649cd7630167a3ac0af3f33836f683c031c8b47e5ccc3a1bb97aa15 sha256sums = 259209675649cd7630167a3ac0af3f33836f683c031c8b47e5ccc3a1bb97aa15

View file

@ -1,11 +1,11 @@
# Maintainer: Carlos Galindo <arch -a-t- cgj .d.o.t. es> # Maintainer: Carlos Galindo <arch -a-t- cgj .d.o.t. es>
pkgname=meshcentral pkgname=meshcentral
pkgver=1.1.46 pkgver=1.1.47
pkgrel=1 pkgrel=1
pkgdesc="Web based remote computer management server" pkgdesc="Web based remote computer management server"
arch=("any") arch=("any")
url="https://meshcentral.com" url="https://meshcentral.com"
license=('Apache') license=('Apache-2.0')
depends=("nodejs>10") depends=("nodejs>10")
makedepends=("npm") makedepends=("npm")
optdepends=("mongodb: for larger deployments") optdepends=("mongodb: for larger deployments")
@ -13,7 +13,7 @@ source=("$pkgname-$pkgver.tgz::https://registry.npmjs.org/$pkgname/-/$pkgname-$p
"$pkgname.service" "$pkgname.service"
"$pkgname.tmpfiles" "$pkgname.tmpfiles"
"$pkgname.sysusers") "$pkgname.sysusers")
sha256sums=('bebeea5019bc98f519fcfb5ba8201b34af44db7355f183e738a12a1fd9a3d694' sha256sums=('5a5c731e4cac683f8b6ac248faef46d1a0c2c27509df6232b8d6daeb5b42094a'
'339ee5927101ca2cf945c2e26a4c3d1a7af452119e67fd57c089b5fa88cbdc4e' '339ee5927101ca2cf945c2e26a4c3d1a7af452119e67fd57c089b5fa88cbdc4e'
'30608aab6b9b268e492506a5c230a49cc28cb47dd09b7c28c586580132ee7f7a' '30608aab6b9b268e492506a5c230a49cc28cb47dd09b7c28c586580132ee7f7a'
'259209675649cd7630167a3ac0af3f33836f683c031c8b47e5ccc3a1bb97aa15') '259209675649cd7630167a3ac0af3f33836f683c031c8b47e5ccc3a1bb97aa15')
@ -30,7 +30,7 @@ package() {
# on first boot # on first boot
npm install --global --prefix "$pkgdir/usr/lib/$pkgname" \ npm install --global --prefix "$pkgdir/usr/lib/$pkgname" \
"$srcdir/$pkgname-$pkgver.tgz" \ "$srcdir/$pkgname-$pkgver.tgz" \
archiver@5.3.2 otplib@10.2.3 ua-parser-js@1.0.35 archiver@5.3.2 otplib@12.0.1 ua-parser-js@1.0.35
# npm gives ownership of ALL FILES to build user # npm gives ownership of ALL FILES to build user
# https://bugs.archlinux.org/task/63396 # https://bugs.archlinux.org/task/63396
chown -R root:root "$pkgdir/usr/lib/$pkgname" chown -R root:root "$pkgdir/usr/lib/$pkgname"
@ -40,5 +40,5 @@ package() {
install -dm750 "$pkgdir/var/lib/$pkgname/"{data,files,backup} install -dm750 "$pkgdir/var/lib/$pkgname/"{data,files,backup}
ln -s "../../../../var/lib/$pkgname/data" "$pkgdir/usr/lib/$pkgname/lib/$pkgname-data" ln -s "../../../../var/lib/$pkgname/data" "$pkgdir/usr/lib/$pkgname/lib/$pkgname-data"
ln -s "../../../../var/lib/$pkgname/files" "$pkgdir/usr/lib/$pkgname/lib/$pkgname-files" ln -s "../../../../var/lib/$pkgname/files" "$pkgdir/usr/lib/$pkgname/lib/$pkgname-files"
ln -s "../../../../var/lib/$pkgname/backup" "$pkgdir/usr/lib/$pkgname/lib/$pkgname-backup" ln -s "../../../../var/lib/$pkgname/backup" "$pkgdir/usr/lib/$pkgname/lib/$pkgname-backups"
} }