From 3fb441f181830d0babe042e0342cd74b9c3a9d85 Mon Sep 17 00:00:00 2001 From: KF-Art Date: Sun, 19 Nov 2023 21:04:55 -0500 Subject: [PATCH] Update exiv2 shlibs --- common/shlibs | 2 +- srcpkgs/runas/INSTALL.msg | 1 - srcpkgs/runas/template | 33 --------------------------------- 3 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 srcpkgs/runas/INSTALL.msg delete mode 100644 srcpkgs/runas/template diff --git a/common/shlibs b/common/shlibs index cee7558..95eec1f 100644 --- a/common/shlibs +++ b/common/shlibs @@ -555,7 +555,7 @@ libgimpcolor-2.0.so.0 libgimp-2.10.0_1 libgimpmodule-2.0.so.0 libgimp-2.10.0_1 libgmic.so.3 gmic-3.1.6_1 libcgmic.so.3 gmic-3.1.6_1 -libexiv2.so.27 exiv2-0.27_1 +libexiv2.so.28 exiv2-0.28_1 libKF5Holidays.so.5 kholidays-5.47.0_1 libPhabricatorHelpers.so.5 purpose-5.48.0_1 libKF5PurposeWidgets.so.5 purpose-5.48.0_1 diff --git a/srcpkgs/runas/INSTALL.msg b/srcpkgs/runas/INSTALL.msg deleted file mode 100644 index 0c31393..0000000 --- a/srcpkgs/runas/INSTALL.msg +++ /dev/null @@ -1 +0,0 @@ -Customize configuration at /etc/runas.yml diff --git a/srcpkgs/runas/template b/srcpkgs/runas/template deleted file mode 100644 index 8627869..0000000 --- a/srcpkgs/runas/template +++ /dev/null @@ -1,33 +0,0 @@ -# Template file for 'runas' -pkgname=runas -version=2021.01.31 -revision=2 -archs="x86_64 x86_64-musl i686" -conf_files="/etc/runas.yml" -repository="cereus-extra" -build_style=cargo -hostmakedepends="git" -short_desc="An alternative to sudo and doas written in Rust" -maintainer="Kevin F. " -license="GPL-3.0-or-later" -homepage="https://github.com/keyboard-slayer/runas" - -do_fetch() { - git clone ${homepage} ${wrksrc} -} - -do_install() { - if [ "$XBPS_TARGET_MACHINE" = "x86_64-musl" ]; then - vbin target/x86_64-unknown-linux-musl/release/runas - elif [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then - vbin target/x86_64-unknown-linux-gnu/release/runas - elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then - vbin target/i686-unknown-linux-gnu/release/runas - fi -} - -post_install() { - vlicense LICENSE - cat src/runas.yml | head -n +5 | tee src/runas.yml - vinstall src/runas.yml 644 etc/ -}