diff options
| author | Remi Collet <remi@remirepo.net> | 2017-08-01 15:41:39 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2017-08-01 15:41:39 +0200 | 
| commit | 4fc478050eef974d2963fffd15908a799c2a6454 (patch) | |
| tree | 571e21a411281b4f07ff39d719e363e71470d219 | |
| parent | c00e8028bdd106c18e328234137c9494b2cc7cb5 (diff) | |
v1.5.0
| -rw-r--r-- | memcached.spec | 14 | 
1 files changed, 10 insertions, 4 deletions
diff --git a/memcached.spec b/memcached.spec index c5517d6..51109c9 100644 --- a/memcached.spec +++ b/memcached.spec @@ -19,11 +19,11 @@  %global with_sasl    1 -# Regression tests take a long time, you can skip 'em with this -%{!?runselftest: %global runselftest 1} +# disable testing as it is unreliable on build systems +%global with_tests   %{?_with_tests:1}%{!?_with_tests:0}  Name:           memcached -Version:        1.4.39 +Version:        1.5.0  Release:        1%{?dist}  Epoch:          0  Summary:        High Performance, Distributed Memory Object Cache @@ -103,9 +103,11 @@ sed -i 's/-Werror / /' Makefile  make %{?_smp_mflags} -%if %runselftest  %check +%if %{with_tests}  make test +%else +: test suite disabled  %endif @@ -237,6 +239,10 @@ fi  %changelog +* Tue Aug  1 2017 Remi Collet <remi@remirepo.net> - 0:1.5.0-1 +- Update to 1.5.0 +- skip test suite which is unreliable on build system (see fedora) +  * Wed Jul  5 2017 Remi Collet <remi@remirepo.net> - 0:1.4.39-1  - Update to 1.4.39 (security)  | 
