Compare commits

...

3 Commits

Author SHA1 Message Date
Daniel Kopeček 3024c2ca06
Update to 0.10.0 2016-09-03 11:21:46 +02:00
Daniel Kopecek 18ada23c78 Packaging fixes
- don't build the base package
 - remove a dot from the release tag
 - corrected -devel subpackage description
2015-04-30 11:43:42 +02:00
Daniel Kopecek a7f4f67b92 Import package 2015-04-21 07:25:57 +02:00
3 changed files with 65 additions and 0 deletions

2
.gitignore vendored
View File

@ -0,0 +1,2 @@
/gabime-spdlog-211ce99.tar.gz
/v0.10.0.tar.gz

View File

@ -0,0 +1 @@
5ed0596d539054c7f9f5440315eb758f v0.10.0.tar.gz

62
spdlog.spec Normal file
View File

@ -0,0 +1,62 @@
%global user gabime
%global debug_package %{nil}
Name: spdlog
Version: 0.10.0
Release: 1%{?dist}
Summary: Super fast C++ logging library
Group: Development/Libraries
License: MIT
URL: https://github.com/%{user}/%{name}/
Source0: https://github.com/%{user}/%{name}/archive/v%{version}.tar.gz
%description
This is a packaged version of the gabime/spdlog header-only C++
logging library available at Github.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Provides: %{name}-static = %{version}-%{release}
Provides: %{name} = %{version}-%{release}
Requires: libstdc++-devel
%description devel
The %{name}-devel package contains C++ header files for developing
applications that use %{name}.
%prep
%setup -q -n %{name}-%{version}
%build
# Nothing to build here.
%install
find ./example -name '.gitignore' -exec rm {} \;
mkdir -p %{buildroot}%{_includedir}
cp -pvR include/spdlog %{buildroot}%{_includedir}
%files devel
%doc README.md example/
%license LICENSE
%{_includedir}/spdlog/
%changelog
* Sun Sep 04 2016 Daniel Kopecek <dkopecek@redhat.com> - 0.10.0-1
- Update to 0.10.0
* Thu Apr 30 2015 Daniel Kopecek <dkopecek@redhat.com> - 0-4.20150410git211ce99
- don't build the base package
- remove a dot from the release tag
- corrected -devel subpackage description
* Mon Apr 20 2015 Daniel Kopecek <dkopecek@redhat.com> - 0-3.20150410git.211ce99
- use the -p option when copying the header files
* Tue Apr 14 2015 Daniel Kopecek <dkopecek@redhat.com> - 0-2.20150410git.211ce99
- don't build the debuginfo subpackage
- require libstdc++-devel
- don't generate a distribution specific pkg-config file
* Fri Apr 10 2015 Daniel Kopecek <dkopecek@redhat.com> - 0-1.20150410git.211ce99
- Initial package