Compare commits
No commits in common. "rawhide" and "f31" have entirely different histories.
5 changed files with 71 additions and 1 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/vmemcache-0.8.tar.gz
|
||||
3
README.md
Normal file
3
README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# vmemcache
|
||||
|
||||
The vmemcache package
|
||||
|
|
@ -1 +0,0 @@
|
|||
Discontinued upstream
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
SHA512 (vmemcache-0.8.tar.gz) = 75d9759052faddc08ad515ed4e890385a5939943a376c9117666b7380395e4ab402929760e9cf48401e11da5b294b6749feba3e89ea7be24a754ac4644e520d8
|
||||
66
vmemcache.spec
Normal file
66
vmemcache.spec
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
Name: vmemcache
|
||||
Version: 0.8
|
||||
Release: 2%{?dist}
|
||||
Summary: Buffer-based LRU cache
|
||||
|
||||
License: BSD
|
||||
URL: https://github.com/pmem/vmemcache
|
||||
Source0: https://github.com/pmem/vmemcache/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
ExclusiveArch: x86_64 ppc64 ppc64le s390x aarch64
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: valgrind
|
||||
BuildRequires: valgrind-devel
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: gcc
|
||||
BuildRequires: pandoc
|
||||
|
||||
%description
|
||||
Vmemcache is a volatile filesystem based key:value cache. It works best
|
||||
when backed with a DAX-capable persistent memory device, but can work on
|
||||
tmpfs or on legacy disks.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%cmake
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
|
||||
%check
|
||||
ctest %{?_smp_mflags} --output-on-failure
|
||||
|
||||
|
||||
%files
|
||||
%{_libdir}/libvmemcache.so.0*
|
||||
%license LICENSE
|
||||
|
||||
%files devel
|
||||
%{_includedir}/*.h
|
||||
%{_mandir}/*/vmemcache*
|
||||
%{_libdir}/libvmemcache.so
|
||||
%{_libdir}/pkgconfig/libvmemcache.pc
|
||||
%doc ChangeLog
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Apr 15 2019 Adam Borowski <kilobyte@angband.pl> 0.8-1
|
||||
- Initial packaging
|
||||
Loading…
Add table
Add a link
Reference in a new issue