[openssl-commits] [openssl] master update

2018-03-24 Thread Andy Polyakov
The branch master has been updated
   via  dead788f6ece66707e4d0eb4bd446bdec64dae4e (commit)
  from  84e68a1bbaa98889cc6c20e9f35f0f96148d9642 (commit)


- Log -
commit dead788f6ece66707e4d0eb4bd446bdec64dae4e
Author: Andy Polyakov 
Date:   Thu Mar 22 22:55:35 2018 +0100

Configurations/windows-makefile.tmpl: refine clean targets.

'nmake clean' was leaving some artefacts behind.

Reviewed-by: Richard Levitte 

---

Summary of changes:
 Configurations/windows-makefile.tmpl | 21 -
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/Configurations/windows-makefile.tmpl 
b/Configurations/windows-makefile.tmpl
index ca2e75e..49da786 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -351,30 +351,17 @@ install: install_sw install_ssldirs install_docs
 uninstall: uninstall_docs uninstall_sw
 
 libclean:
-   "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" 
$(SHLIBS)
-   "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } 
@ARGV" $(SHLIBS)
-   "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } 
@ARGV" $(SHLIBS)
-   "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """fuzz/$$1.*"""; } 
@ARGV" $(SHLIBS)
-   -del /Q /F $(LIBS)
-   -del /Q ossl_static.pdb
+   "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob 
"""{.,apps,test,fuzz}/$$1.*"""; } @ARGV" $(SHLIBS)
+   -del /Q /F $(LIBS) libcrypto.* libssl.* ossl_static.pdb
 
 clean: libclean
{- join("\n\t", map { "-del /Q /F $_" } @PROGRAMS) -}
-del /Q /F $(ENGINES)
-del /Q /F $(SCRIPTS)
-del /Q /F $(GENERATED)
-   -del /Q /S /F *.d
-   -del /Q /S /F *.obj
-   -del /Q /S /F *.pdb
-   -del /Q /F *.exp
-   -del /Q /F apps\*.exp
-   -del /Q /F engines\*.exp
-   -del /Q /S /F engines\*.ilk
+   -del /Q /S /F *.d *.obj *.pdb *.exp *.ilk *.manifest
-del /Q /S /F engines\*.lib
-   -del /Q /S /F apps\*.lib
-   -del /Q /S /F engines\*.manifest
-   -del /Q /S /F apps\*.manifest
-   -del /Q /S /F test\*.manifest
+   -del /Q /S /F apps\*.lib apps\*.rc apps\*.res
 
 distclean: clean
-del /Q /F configdata.pm
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [web] master update

2018-03-24 Thread Richard Levitte
The branch master has been updated
   via  ba28d8470fba25cac99a94b7b9fa27bddbd1622a (commit)
   via  52f4b4da8deb49a0c4229951265f40223a286c7f (commit)
   via  b11a6c4a822ce76e1061fdf2626fc20c673c4676 (commit)
   via  860c1786061372ffe7225e5a1a9e89d90630b802 (commit)
  from  d1915ac75ca02f62e91e72d530515df030103253 (commit)


- Log -
commit ba28d8470fba25cac99a94b7b9fa27bddbd1622a
Author: Richard Levitte 
Date:   Sat Mar 24 16:27:49 2018 +0100

mk-notes: slight change to include unreleased stuff from other branches

commit 52f4b4da8deb49a0c4229951265f40223a286c7f
Author: Jonathan Champ 
Date:   Fri Mar 23 18:49:18 2018 -0400

mk-notes: Find all sections; only print released

commit b11a6c4a822ce76e1061fdf2626fc20c673c4676
Author: Jonathan Champ 
Date:   Fri Mar 23 17:08:54 2018 -0400

mk-notes: Allow 'under development' version

commit 860c1786061372ffe7225e5a1a9e89d90630b802
Author: Richard Levitte 
Date:   Sat Mar 24 16:15:25 2018 +0100

Make news/cl111.txt as well

---

Summary of changes:
 Makefile |  2 +-
 bin/mk-notes | 18 +++---
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 27e4609..d53b50c 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ SIMPLE = newsflash.inc sitemap.txt \
 community/committers.inc \
 docs/faq.inc docs/fips.inc \
  news/changelog.inc news/changelog.txt \
- news/cl102.txt news/cl110.txt \
+ news/cl102.txt news/cl110.txt news/cl111.txt \
  news/openssl-1.0.2-notes.inc \
  news/openssl-1.1.0-notes.inc \
  news/openssl-1.1.1-notes.inc \
diff --git a/bin/mk-notes b/bin/mk-notes
index 66c5937..75562ef 100755
--- a/bin/mk-notes
+++ b/bin/mk-notes
@@ -8,12 +8,21 @@ my $copy = 0;
 my $in_ul = 0;
 while (  ) {
 chomp;
-if (/^\s*(Major changes between|Known issues in).*(\d+\.\d+\.\d+)\D.*\[(in 
pre-release|\d+\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s\d+)\]:?$/) 
{
+if (/^\s*(Major changes between|Known issues 
in).*(\d+\.\d+\.\d+)\D.*\[(.*)\]:?$/) {
+   my $release_series = $2;
+   my $release_date = $3;
+   if ($release_date !~ /^in 
pre-release|\d+\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s\d+$/) {
+   # The rationale to not simply stop when encountering another title
+   # line is that it's unreleased stuff that also exist in another
+   # series, but is also part of this one and should therefore be
+   # included.
+   next;
+   }
if ($in_ul) {
print "\n";
$in_ul = 0;
}
-   if ($2 eq $SERIES) {
+   if ($release_series eq $SERIES) {
print "";
print;
print "\n";
@@ -36,4 +45,7 @@ while (  ) {
print;
 }
 }
-print "";
+if ($in_ul) {
+print "\n";
+$in_ul = 0;
+}
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Build completed: openssl master.16730

2018-03-24 Thread AppVeyor


Build openssl master.16730 completed



Commit fe53787367 by Bernd Edlinger on 3/24/2018 2:17 PM:

Fix ecparam -genkey with point compression or DER outform


Configure your notification preferences

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Build failed: openssl master.16729

2018-03-24 Thread AppVeyor



Build openssl master.16729 failed


Commit 6485e7f5ec by Philippe Antoine on 3/24/2018 8:27 AM:

Replacement of check by an assert


Configure your notification preferences

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits