[tools] master update
Richard Levitte
levitte at openssl.org
Thu Feb 13 16:34:41 UTC 2020
The branch master has been updated
via c217de2c9b91c88f64ce6940b6c3ef5ef1a0bdae (commit)
via d250d42df4c99fd4ae57c75de514dcaf9ff96360 (commit)
from 1a4ebc8a908344ddff8121eb664cf9f29e60d89a (commit)
- Log -----------------------------------------------------------------
commit c217de2c9b91c88f64ce6940b6c3ef5ef1a0bdae
Author: Dr. David von Oheimb <David.von.Oheimb at siemens.com>
Date: Tue Feb 11 12:03:21 2020 +0100
add missing dependency info to the Testing section of OpenSSL-Query/README.md
Reviewed-by: Paul Dale <paul.dale at oracle.com>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/58)
commit d250d42df4c99fd4ae57c75de514dcaf9ff96360
Author: Dr. David von Oheimb <David.von.Oheimb at siemens.com>
Date: Tue Feb 11 12:01:31 2020 +0100
allow simple copy&paste for the series of shell commands in OpenSSL-Query/README.md
Reviewed-by: Paul Dale <paul.dale at oracle.com>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/58)
-----------------------------------------------------------------------
Summary of changes:
OpenSSL-Query/README.md | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/OpenSSL-Query/README.md b/OpenSSL-Query/README.md
index 27dd3fd..817a390 100644
--- a/OpenSSL-Query/README.md
+++ b/OpenSSL-Query/README.md
@@ -32,9 +32,8 @@ perl.
Installation
------------
- $ perl Makefile.PL
- $ make
- $ make install
+ perl Makefile.PL
+ make && make install
Local installation
------------
@@ -43,7 +42,7 @@ For a local installation, you might want to consider using local::lib
(debian package liblocal-lib-perl). In that case, running Makefile.PL
is slightly different:
- $ perl -Mlocal::lib Makefile.PL
+ perl -Mlocal::lib Makefile.PL
Other than that, follow the instructions in "Installation" above.
@@ -58,12 +57,14 @@ Testing
Testing is done like this:
- $ make test
+ make test
-However, it requires that a temporary query service is started as
-well. This is part of QueryApp, and is started like this:
+However, it requires the additional Perl module Dancer2 and
+plackup (debian packages libdancer2-perl and libplack-perl)
+and that a temporary query service is started as well.
+This is part of QueryApp, and is started like this:
- $ here=`pwd`
- $ cd ../QueryApp # Or wherever you have it checked out
- $ PERSONDB=./t/query_data/pdb.yaml CLADB=./t/query_data/cdb.txt \
- PERL5LIB=./lib:$here/lib plackup bin/query.psgi
+ here=`pwd` # the directory OpenSSL-Query/
+ cd ../QueryApp # Or wherever you have it checked out
+ PERSONDB=./t/query_data/pdb.yaml CLADB=./t/query_data/cdb.txt \
+ PERL5LIB=./lib:$here/lib plackup bin/query.psgi
More information about the openssl-commits
mailing list