From bacffd8a976e29f7a8f3a5e96d06d0d174424aed Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 22:28:43 +0100 Subject: [PATCH] package created using the webbuild interface [release 7.1.3-1mamba;Mon Mar 22 2021] --- README.md | 2 ++ fmt.spec | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 fmt.spec diff --git a/README.md b/README.md index 33b484f..64ee198 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # fmt +{fmt} is an open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams. + diff --git a/fmt.spec b/fmt.spec new file mode 100644 index 0000000..0c0d552 --- /dev/null +++ b/fmt.spec @@ -0,0 +1,78 @@ +Name: fmt +Version: 7.1.3 +Release: 1mamba +Summary: An open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/fmtlib/fmt +Source: https://github.com/fmtlib/fmt.git/%{version}/fmt-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +{fmt} is an open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams. + +%package -n lib%{name} +Group: System/Libraries +Summary: An open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams. + +%description -n lib%{name} +{fmt} is an open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams. +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} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + + +%debug_package + +%prep +%setup -q + +%build +%cmake -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%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}/libfmt.so.* +%doc LICENSE.rst + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/fmt +%{_includedir}/fmt/*.h +%dir %{_libdir}/cmake/fmt +%{_libdir}/cmake/fmt/fmt-*.cmake +%{_libdir}/libfmt.so +%{_libdir}/pkgconfig/fmt.pc +%doc ChangeLog.rst README.rst + + +%changelog +* Mon Mar 22 2021 Silvan Calarco 7.1.3-1mamba +- package created using the webbuild interface