Codebase list openssl / 29e0f2c
Changes from unstable. Kurt Roeckx 7 years ago
4 changed file(s) with 43 addition(s) and 37 deletion(s). Raw diff Collapse all Expand all
0 openssl (1.0.2i-1~bpo8+1) jessie-backports; urgency=medium
1
2 * New upstream version
3 - Fix CVE-2016-2177
4 - Fix CVE-2016-2178
5 - Fix CVE-2016-2179
6 - Fix CVE-2016-2180
7 - Fix CVE-2016-2181
8 - Fix CVE-2016-2182
9 - Fix CVE-2016-2183
10 - Fix CVE-2016-6302
11 - Fix CVE-2016-6303
12 - Fix CVE-2016-6304
13 - Fix CVE-2016-6306
14 * Drop ca.patch, option is now documented upstream
15 * Update engines-path.patch to also update the libcrypto.pc, now that that
16 has an enginesdir in it.
17
18 -- Kurt Roeckx <kurt@roeckx.be> Thu, 22 Sep 2016 21:21:00 +0200
19
020 openssl (1.0.2h-1~bpo8+2) jessie-backports; urgency=medium
121
222 * move the symbols SRP_VBASE_get1_by_user, SRP_user_pwd_free from
+0
-22
debian/patches/ca.patch less more
0 ---
1 apps/CA.pl.in | 2 ++
2 1 file changed, 2 insertions(+)
3
4 --- a/apps/CA.pl.in
5 +++ b/apps/CA.pl.in
6 @@ -65,6 +65,7 @@ if(defined $ENV{OPENSSL}) {
7 foreach (@ARGV) {
8 if ( /^(-\?|-h|-help)$/ ) {
9 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
10 + print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
11 exit 0;
12 } elsif (/^-newcert$/) {
13 # create a certificate
14 @@ -165,6 +166,7 @@ foreach (@ARGV) {
15 } else {
16 print STDERR "Unknown arg $_\n";
17 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
18 + print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
19 exit 1;
20 }
21 }
0 Index: openssl-1.0.2~beta3/Makefile.org
0 Index: openssl-1.0.2i/Makefile.org
11 ===================================================================
2 --- openssl-1.0.2~beta3.orig/Makefile.org
3 +++ openssl-1.0.2~beta3/Makefile.org
4 @@ -541,7 +541,7 @@ install: all install_docs install_sw
2 --- openssl-1.0.2i.orig/Makefile.org
3 +++ openssl-1.0.2i/Makefile.org
4 @@ -368,7 +368,7 @@ libcrypto.pc: Makefile
5 echo 'exec_prefix=$${prefix}'; \
6 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
7 echo 'includedir=$${prefix}/include'; \
8 - echo 'enginesdir=$${libdir}/engines'; \
9 + echo 'enginesdir=$${libdir}/openssl-1.0.0/engines'; \
10 echo ''; \
11 echo 'Name: OpenSSL-libcrypto'; \
12 echo 'Description: OpenSSL cryptography library'; \
13 @@ -536,7 +536,7 @@ install: all install_docs install_sw
514 install_sw:
615 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
716 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
1019 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
1120 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
1221 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
13 Index: openssl-1.0.2~beta3/engines/Makefile
22 Index: openssl-1.0.2i/engines/Makefile
1423 ===================================================================
15 --- openssl-1.0.2~beta3.orig/engines/Makefile
16 +++ openssl-1.0.2~beta3/engines/Makefile
24 --- openssl-1.0.2i.orig/engines/Makefile
25 +++ openssl-1.0.2i/engines/Makefile
1726 @@ -107,13 +107,13 @@ install:
1827 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
1928 @if [ -n "$(SHARED_LIBS)" ]; then \
4453 done; \
4554 fi
4655 @target=install; $(RECURSIVE_MAKE)
47 Index: openssl-1.0.2~beta3/Configure
56 Index: openssl-1.0.2i/Configure
4857 ===================================================================
49 --- openssl-1.0.2~beta3.orig/Configure
50 +++ openssl-1.0.2~beta3/Configure
51 @@ -1893,7 +1893,7 @@ while (<IN>)
58 --- openssl-1.0.2i.orig/Configure
59 +++ openssl-1.0.2i/Configure
60 @@ -1969,7 +1969,7 @@ while (<IN>)
5261 }
5362 elsif (/^#define\s+ENGINESDIR/)
5463 {
5766 $foo =~ s/\\/\\\\/g;
5867 print OUT "#define ENGINESDIR \"$foo\"\n";
5968 }
60 Index: openssl-1.0.2~beta3/engines/ccgost/Makefile
69 Index: openssl-1.0.2i/engines/ccgost/Makefile
6170 ===================================================================
62 --- openssl-1.0.2~beta3.orig/engines/ccgost/Makefile
63 +++ openssl-1.0.2~beta3/engines/ccgost/Makefile
71 --- openssl-1.0.2i.orig/engines/ccgost/Makefile
72 +++ openssl-1.0.2i/engines/ccgost/Makefile
6473 @@ -47,7 +47,7 @@ install:
6574 pfx=lib; \
6675 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
0 ca.patch
10 config-hurd.patch
21 debian-targets.patch
32 engines-path.patch