"v1.22.3"

This commit is contained in:
plrigaux 2025-04-10 16:28:04 -04:00
parent 095dd0e575
commit c87f9e0fb1
2 changed files with 14 additions and 15 deletions

View file

@ -1,6 +1,6 @@
pkgbase = sysd-manager
pkgdesc = A systemd GUI to manage your Services, Timers, Sockets and other units. You can enable, disable, stop and start them. Also, you can view their config file and peak at their journal logs.
pkgver = 1.22.2
pkgver = 1.22.3
pkgrel = 1
url = https://github.com/plrigaux/sysd-manager
install = sysd-manager.install
@ -14,7 +14,7 @@ pkgbase = sysd-manager
depends = libadwaita
depends = systemd-libs
depends = gtksourceview5
source = https://github.com/plrigaux/sysd-manager/archive/refs/tags/v1.22.2.tar.gz
sha256sums = 1fbdd2e79391eb8947d2309eadb709059445bb871691ee8816b3de17ba0434d4
source = https://github.com/plrigaux/sysd-manager/archive/refs/tags/v1.22.3.tar.gz
sha256sums = 01d7631820be2b4d4facc53b442fa196476830cf49f1830b107c41cc776a17bd
pkgname = sysd-manager

View file

@ -1,7 +1,7 @@
# Maintainer: Pierre-Luc Rigaux
pkgname=sysd-manager
pkgver=1.22.2
pkgver=1.22.3
pkgrel=1
epoch=
pkgdesc="A systemd GUI to manage your Services, Timers, Sockets and other units. You can enable, disable, stop and start them. Also, you can view their config file and peak at their journal logs."
@ -20,22 +20,21 @@ backup=()
options=()
install=$pkgname.install
changelog=CHANGELOG.md
_commit=f02d225c0205eba7da48c6210ae24f0ae3bcae68
_commit=069c2b1f8e8c0b3b8fbca011fcd8266379611d45
source=("https://github.com/plrigaux/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
noextract=()
sha256sums=('1fbdd2e79391eb8947d2309eadb709059445bb871691ee8816b3de17ba0434d4')
sha256sums=('01d7631820be2b4d4facc53b442fa196476830cf49f1830b107c41cc776a17bd')
validpgpkeys=()
pkgsrcdir=$pkgname-$pkgver
prepare() {
echo hello
pwd
cd $pkgname-$pkgver
cd $pkgsrcdir
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd $pkgname-$pkgver
cd $pkgsrcdir
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --locked --release --features default
@ -48,9 +47,9 @@ build() {
#}
package() {
install -Dm755 "$pkgname/target/release/sysd-manager" -t "$pkgdir/usr/bin"
install -Dm644 "$pkgname/data/applications/io.github.plrigaux.sysd-manager.desktop" -t "$pkgdir/usr/share/applications"
install -Dm644 "$pkgname/data/icons/hicolor/scalable/apps/io.github.plrigaux.sysd-manager.svg" -t "$pkgdir/usr/share/icons/hicolor/scalable/apps/"
install -Dm644 "$pkgname/data/schemas/io.github.plrigaux.sysd-manager.gschema.xml" -t "$pkgdir/usr/share/glib-2.0/schemas"
install -Dm644 "$pkgname/data/metainfo/io.github.plrigaux.sysd-manager.metainfo.xml" -t "$pkgdir/usr/share/metainfo"
install -Dm755 "$pkgsrcdir/target/release/sysd-manager" -t "$pkgdir/usr/bin"
install -Dm644 "$pkgsrcdir/data/applications/io.github.plrigaux.sysd-manager.desktop" -t "$pkgdir/usr/share/applications"
install -Dm644 "$pkgsrcdir/data/icons/hicolor/scalable/apps/io.github.plrigaux.sysd-manager.svg" -t "$pkgdir/usr/share/icons/hicolor/scalable/apps/"
install -Dm644 "$pkgsrcdir/data/schemas/io.github.plrigaux.sysd-manager.gschema.xml" -t "$pkgdir/usr/share/glib-2.0/schemas"
install -Dm644 "$pkgsrcdir/data/metainfo/io.github.plrigaux.sysd-manager.metainfo.xml" -t "$pkgdir/usr/share/metainfo"
}