]> git.pld-linux.org Git - packages/openssl.git/commitdiff
test build upcoming 1.0.2f
authorElan Ruusamäe <glen@delfi.ee>
Mon, 25 Jan 2016 22:08:52 +0000 (00:08 +0200)
committerElan Ruusamäe <glen@delfi.ee>
Mon, 25 Jan 2016 22:08:52 +0000 (00:08 +0200)
the release is to be made somewhere in:
php -r 'echo strftime("%x %X%z\n", strtotime("28 jan 2016 1:00 pm utc"));'

openssl.spec

index 92cd2b76992399601728be2d174966f7f9b02e0d..3b03d0937ab03ffe2f7f6d2a218dff8800eb5c39 100644 (file)
@@ -9,6 +9,7 @@
 %bcond_without sslv3   # SSLv3: note - enables  CVE-2014-3566 vulnerability
 %bcond_with    purify  # Compile openssl with "-DPURIFY", useful when one wants to
                        # use valgrind debugger against openssl-linked programs
+%bcond_with    snap    # use GitHub snapshot to build branch release
 
 %include       /usr/lib/rpm/macros.perl
 Summary:       OpenSSL Toolkit libraries for the "Secure Sockets Layer" (SSL v2/v3)
@@ -23,11 +24,15 @@ Name:               openssl
 # 1.0.2 will be LTS release
 # Version 1.0.2 will be supported until 2019-12-31.
 # https://www.openssl.org/about/releasestrat.html
-Version:       1.0.2e
-Release:       1
+Version:       1.0.2f
+Release:       0.1
 License:       Apache-like
 Group:         Libraries
+%if %{without snap}
 Source0:       ftp://ftp.openssl.org/source/%{name}-%{version}.tar.gz
+%else
+Source1:       https://github.com/openssl/openssl/archive/OpenSSL_1_0_2-stable.tar.gz
+%endif
 # Source0-md5: 5262bfa25b60ed9de9f28d5d52d77fc5
 Source2:       %{name}.1.pl
 Source3:       %{name}-ssl-certificate.sh
@@ -254,7 +259,12 @@ RC4, RSA и SSL. Включает статические библиотеки д
 бібліотеки для розробки програм з використанням SSL.
 
 %prep
+%if %{with snap}
+%setup -qcT -a1
+mv %{name}-OpenSSL_1_0_2-stable/* .
+%else
 %setup -q
+%endif
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
@@ -334,6 +344,9 @@ PERL="%{__perl}" \
        linux-armv4
 %endif
 
+v=$(awk -F= '/^VERSION/{print $2}' Makefile)
+test "$v" = %{version}%{?with_snap:-dev}
+
 %{__make} -j1 all rehash %{?with_tests:tests} \
        CC="%{__cc}" \
        ASFLAG='$(CFLAG) -Wa,--noexecstack' \
This page took 0.156819 seconds and 4 git commands to generate.