David Runge pushed to branch main at Arch Linux / Packaging / Packages / ironbar
Commits: fa5ea30d by David Runge at 2026-05-18T16:19:41+02:00 Use upstream provided systemd user service Signed-off-by: David Runge <[email protected]> - - - - - 325fad94 by David Runge at 2026-05-18T16:24:51+02:00 upgpkg: 0.19.0-2 Rebuild to use upstream provided systemd user unit. - - - - - 5 changed files: - .SRCINFO - − LICENSES/MIT.txt - PKGBUILD - REUSE.toml - − ironbar.service Changes: ===================================== .SRCINFO ===================================== @@ -1,7 +1,7 @@ pkgbase = ironbar pkgdesc = Customisable Wayland GTK4 bar written in Rust pkgver = 0.19.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/JakeStanger/ironbar arch = x86_64 license = MIT @@ -26,10 +26,7 @@ pkgbase = ironbar optdepends = ttf-font-nerd: for displaying text-based icons options = !lto source = ironbar-0.19.0.tar.gz::https://github.com/JakeStanger/ironbar/archive/refs/tags/v0.19.0.tar.gz - source = ironbar.service sha512sums = 7bd0c81470acbf5987df260ca587b9aee45de4d95853a2244c673f9a00679de0d2b6597c24f7cb5b355c57b7cba4cb9322d81aa5109a41bc6368b3dbfdcf3d52 - sha512sums = d362a2e650a7c2ad0a1e4da043bbd337702e227ee3e08533a66f86d3ad1a0c3bef00531d4ac844f1e00de705638d05e9e4d10b3b98948195cd7e1c4553db2f17 b2sums = a3091ca4f50a581bedac0cd7136aabb09410a5f36f39f05597b8dae37bcb84195c8be7a291c24f8dcb5f83dfbd3c8f0b61873040c46ca5b0df7b44e120c62523 - b2sums = 01ca0f23187b9b0d73fd2368bb80069d2d276e9a23b04d1e356c1ea2efe7b3f3ab9e8d4661ef8df0a76c7b46727f15b7a00b51385dcefb412eafc1e4ed9f61b6 pkgname = ironbar ===================================== LICENSES/MIT.txt deleted ===================================== @@ -1,18 +0,0 @@ -MIT License - -Copyright (c) <year> <copyright holders> - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO -EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. ===================================== PKGBUILD ===================================== @@ -2,7 +2,7 @@ pkgname=ironbar pkgver=0.19.0 -pkgrel=1 +pkgrel=2 pkgdesc="Customisable Wayland GTK4 bar written in Rust" arch=(x86_64) url="https://github.com/JakeStanger/ironbar" @@ -33,12 +33,9 @@ optdepends=( options=(!lto) source=( $pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz - $pkgname.service ) -sha512sums=('7bd0c81470acbf5987df260ca587b9aee45de4d95853a2244c673f9a00679de0d2b6597c24f7cb5b355c57b7cba4cb9322d81aa5109a41bc6368b3dbfdcf3d52' - 'd362a2e650a7c2ad0a1e4da043bbd337702e227ee3e08533a66f86d3ad1a0c3bef00531d4ac844f1e00de705638d05e9e4d10b3b98948195cd7e1c4553db2f17') -b2sums=('a3091ca4f50a581bedac0cd7136aabb09410a5f36f39f05597b8dae37bcb84195c8be7a291c24f8dcb5f83dfbd3c8f0b61873040c46ca5b0df7b44e120c62523' - '01ca0f23187b9b0d73fd2368bb80069d2d276e9a23b04d1e356c1ea2efe7b3f3ab9e8d4661ef8df0a76c7b46727f15b7a00b51385dcefb412eafc1e4ed9f61b6') +sha512sums=('7bd0c81470acbf5987df260ca587b9aee45de4d95853a2244c673f9a00679de0d2b6597c24f7cb5b355c57b7cba4cb9322d81aa5109a41bc6368b3dbfdcf3d52') +b2sums=('a3091ca4f50a581bedac0cd7136aabb09410a5f36f39f05597b8dae37bcb84195c8be7a291c24f8dcb5f83dfbd3c8f0b61873040c46ca5b0df7b44e120c62523') prepare() { cd $pkgname-$pkgver @@ -69,6 +66,6 @@ package() { install -vDm 644 $pkgname.bash "$pkgdir/usr/share/bash-completion/completions/$pkgname" install -vDm 644 $pkgname.fish -t "$pkgdir/usr/share/fish/vendor_completions.d/" install -vDm 644 $pkgname.zsh "$pkgdir/usr/share/zsh/site-functions/_$pkgname" - install -vDm 644 ../$pkgname.service -t "$pkgdir/usr/lib/systemd/user/" + install -vDm 644 $pkgname.service -t "$pkgdir/usr/lib/systemd/user/" cp -rv examples "$pkgdir/usr/share/doc/$pkgname/" } ===================================== REUSE.toml ===================================== @@ -23,10 +23,3 @@ path = [ ] SPDX-FileCopyrightText = "Arch Linux contributors" SPDX-License-Identifier = "0BSD" - -[[annotations]] -path = [ - "ironbar.service", -] -SPDX-FileCopyrightText = "ironbar contributors" -SPDX-License-Identifier = "MIT" ===================================== ironbar.service deleted ===================================== @@ -1,8 +0,0 @@ -[Unit] -PartOf=graphical-session.target -After=graphical-session.target -Requisite=graphical-session.target - -[Service] -ExecStart=/usr/bin/ironbar -Restart=on-failure View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/ironbar/-/compare/0f32634bca348f30212b36377a5b3ff82a32c3d7...325fad94bda5cde9c13b1ce0cef520063dc3f85c -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/ironbar/-/compare/0f32634bca348f30212b36377a5b3ff82a32c3d7...325fad94bda5cde9c13b1ce0cef520063dc3f85c You're receiving this email because of your account on gitlab.archlinux.org. Manage all notifications: https://gitlab.archlinux.org/-/profile/notifications | Help: https://gitlab.archlinux.org/help
