From b43d0ff4a09f06e03bae5381bb9f5f81975eacd1 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 10 Mar 2024 12:05:05 +0100 Subject: [PATCH] package created using the webbuild interface [release 6.0.0-1mamba;Sat Mar 09 2024] --- README.md | 2 + kf6-ktexttemplate.spec | 85 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 kf6-ktexttemplate.spec diff --git a/README.md b/README.md index c28e818..9afd1be 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # kf6-ktexttemplate +Library to allow application developers to separate the structure of documents from the data they contain. + diff --git a/kf6-ktexttemplate.spec b/kf6-ktexttemplate.spec new file mode 100644 index 0000000..7bea80e --- /dev/null +++ b/kf6-ktexttemplate.spec @@ -0,0 +1,85 @@ +%define framework %(echo %name | sed "s|^kf6-||") +%define majver %(echo %version | cut -d. -f1-2) + +Name: kf6-ktexttemplate +Version: 6.0.0 +Release: 1mamba +Summary: Library to allow application developers to separate the structure of documents from the data they contain +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://invent.kde.org/frameworks/ktexttemplate +Source: https://download.kde.org/stable/frameworks/%{majver}/ktexttemplate-%{version}.tar.xz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtdeclarative-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: kf6-rpm-macros +BuildRequires: extra-cmake-modules +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +Library to allow application developers to separate the structure of documents from the data they contain. + +%package -n lib%{name} +Group: System/Libraries +Summary: Library to allow application developers to separate the structure of documents from the data they contain. + +%description -n lib%{name} +Library to allow application developers to separate the structure of documents from the data they contain. +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q -n ktexttemplate-%{version} + +%build +%cmake_kf6 + +%cmake_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%cmake_install + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libKF6TextTemplate.so.* +%dir %{_kf6_plugindir}/ktexttemplate +%{_kf6_plugindir}/ktexttemplate/ktexttemplate_*.so +%doc COPYING.LIB LICENSES + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_kf6_includedir}/KTextTemplate +%{_kf6_includedir}/KTextTemplate/* +%{_libdir}/libKF6TextTemplate.so +%dir %{_libdir}/cmake/KF6TextTemplate +%{_libdir}/cmake/KF6TextTemplate/KF6TextTemplate*.cmake +%{_datadir}/qlogging-categories6/ktexttemplate.categories +%{_qt6_docdir}/KF6TextTemplate.* + +%changelog +* Sat Mar 09 2024 Silvan Calarco 6.0.0-1mamba +- package created using the webbuild interface