Browse Source

redis-6.2.6-1

Tomohiro "Tomo-p" KATO 2 years ago
parent
commit
52bbce213a
1 changed files with 12 additions and 3 deletions
  1. 12 3
      r/redis/redis-vl.spec

+ 12 - 3
r/redis/redis-vl.spec

@@ -6,7 +6,7 @@
 # Commit IDs for the (unversioned) redis-doc repository
 # https://fedoraproject.org/wiki/Packaging:SourceURL "Commit Revision"
 #global doc_commit 4f1da37c03daa943f2cf3cd5fda8dbd1bf1f22d7
-%global doc_commit 228f8c6923f849854914b53fa43637d8f40d195e
+%global doc_commit 3fdb6df44ecd5c4d99ea52a0133177f5ebc24805
 %global short_doc_commit %(c=%{doc_commit}; echo ${c:0:7})
 
 # %%{rpmmacrodir} not usable on EL-6
@@ -18,7 +18,7 @@
 %endif
 
 Name:             redis
-Version:          6.2.5
+Version:          6.2.6
 Release:          1%{?_dist_release}%{?with_systemd:.systemd}
 Summary:          A persistent in-memory key-value database
 Summary(ja):      永続化可能なキー・バリュー型インメモリデータベース
@@ -52,9 +52,13 @@ Patch0001:         0001-1st-man-pageis-for-redis-cli-redis-benchmark-redis-c.pat
 
 BuildRoot:	  %{_tmppath}/%{name}-%{version}-root
 BuildRequires:    jemalloc-devel
+BuildRequires:    openssl-devel
 %if %{?with_perftools}
 BuildRequires:    gperftools-devel
 %endif
+%if %{with systemd}
+BuildRequires:    systemd-devel
+%endif
 
 Requires:         logrotate
 %if %{with systemd}
@@ -138,7 +142,7 @@ if test "$api" != "%{redis_modules_abi}"; then
    exit 1
 fi
 
-%global make_flags	DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC" INSTALL="install -p" PREFIX=%{buildroot}%{_prefix}
+%global make_flags	DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC" INSTALL="install -p" PREFIX=%{buildroot}%{_prefix} BUILD_TLS=yes %{?with_systemd:BUILD_WITH_SYSTEMD=yes}
 
 
 %build
@@ -304,6 +308,11 @@ fi
 
 
 %changelog
+* Mon Oct 04 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2.6-1
+- new upstream release.
+- enabled OpenSSL.
+- fixed systemd build.
+
 * Sat Jul 31 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2.5-1
 - new upstream release.