From 561261c6f7f6fa29fc4fb9380fe4a4cc35054872 Mon Sep 17 00:00:00 2001 From: travankor Date: Tue, 8 Oct 2019 02:36:29 -0700 Subject: [PATCH] wf-config: update to 0.3. --- common/shlibs | 2 +- srcpkgs/wf-config-devel | 1 + srcpkgs/wf-config/patches/fix-musl.patch | 13 ------------- srcpkgs/wf-config/template | 20 ++++++++++++++------ 4 files changed, 16 insertions(+), 20 deletions(-) create mode 120000 srcpkgs/wf-config-devel delete mode 100644 srcpkgs/wf-config/patches/fix-musl.patch diff --git a/common/shlibs b/common/shlibs index adc63e5a8cd..d86c0dc96db 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3411,7 +3411,7 @@ libsnore-qt5.so.0.7 snorenotify-0.7.0_1 libsnoresettings-qt5.so.0.7 snorenotify-0.7.0_1 libTECkit.so.0 libteckit-2.5.8_1 libTECkit_Compiler.so.0 libteckit-2.5.8_1 -libwf-config.so wf-config-0.1_1 +libwf-config.so.0 wf-config-0.3_1 libQt5Pas.so.1 qt5pas-2.6~beta_1 libClp.so.1 libClp-1.16.11_1 libCoinUtils.so.3 libClp-1.16.11_1 diff --git a/srcpkgs/wf-config-devel b/srcpkgs/wf-config-devel new file mode 120000 index 00000000000..fb3df2e900c --- /dev/null +++ b/srcpkgs/wf-config-devel @@ -0,0 +1 @@ +wf-config/ \ No newline at end of file diff --git a/srcpkgs/wf-config/patches/fix-musl.patch b/srcpkgs/wf-config/patches/fix-musl.patch deleted file mode 100644 index b87797ba555..00000000000 --- a/srcpkgs/wf-config/patches/fix-musl.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/config.cpp b/src/config.cpp -index f586ab5..811ce29 100644 ---- src/config.cpp -+++ src/config.cpp -@@ -4,6 +4,7 @@ - #include - #include - #include -+#include - - std::ofstream out; - - diff --git a/srcpkgs/wf-config/template b/srcpkgs/wf-config/template index 98eee65d39e..adee709a060 100644 --- a/srcpkgs/wf-config/template +++ b/srcpkgs/wf-config/template @@ -1,6 +1,6 @@ # Template file for 'wf-config' pkgname=wf-config -version=0.1 +version=0.3 revision=1 build_style=meson hostmakedepends="pkg-config" @@ -9,11 +9,19 @@ short_desc="Wayfire library for managing configuration files" maintainer="Young Jin Park " license="MIT" homepage="https://wayfire.org" -distfiles="https://github.com/WayfireWM/wf-config/archive/v${version}.tar.gz - https://raw.githubusercontent.com/WayfireWM/wf-config/master/LICENSE>LICENSE.txt" -checksum="0dac4683013d5a0b143f0e211288c7f2f621740b9ac664359297ff530a7dcdc5 - 7053b1aa75aaccfe2a2bfacd400c0a8694858797ff9c7d584664e2941fb3016e" +distfiles="https://github.com/WayfireWM/wf-config/archive/${version}.tar.gz" +checksum=5d1a5038b11a177174b392f3b383d787f568265ce483a5be9178698f548f7c66 post_install() { - vlicense ../LICENSE.txt + vlicense LICENSE +} + +wf-config-devel_package() { + depends="libevdev-devel wlroots-devel wf-config>=${version}_${revision}" + short_desc+=" - development files" + pkg_install() { + vmove usr/include + vmove usr/lib/pkgconfig + vmove "usr/lib/*.so" + } }