thrift: 0.13.0 -> 0.14.1
This commit is contained in:
parent
435128bee8
commit
a054e8b903
|
@ -1,26 +1,17 @@
|
||||||
{ lib, stdenv, fetchurl, fetchpatch, boost, zlib, libevent, openssl, python, cmake, pkg-config
|
{ lib, stdenv, fetchurl, boost, zlib, libevent, openssl, python, cmake, pkg-config
|
||||||
, bison, flex, twisted
|
, bison, flex, twisted
|
||||||
, static ? stdenv.hostPlatform.isStatic
|
, static ? stdenv.hostPlatform.isStatic
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "thrift";
|
pname = "thrift";
|
||||||
version = "0.13.0";
|
version = "0.14.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://archive.apache.org/dist/thrift/${version}/${pname}-${version}.tar.gz";
|
url = "https://archive.apache.org/dist/thrift/${version}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0yai9c3bdsrkkjshgim7zk0i7malwfprg00l9774dbrkh2w4ilvs";
|
sha256 = "198c855mjy5byqfb941hiyq2j37baz63f0wcfy4vp8y8v4f5xnhk";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Fix a failing test on darwin
|
|
||||||
# https://issues.apache.org/jira/browse/THRIFT-4976
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/apache/thrift/commit/6701dbb8e89f6550c7843e9b75b118998df471c3.diff";
|
|
||||||
sha256 = "14rqma2b2zv3zxkkl5iv9kvyp3zihvad6fdc2gcdqv37nqnswx9d";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
# Workaround to make the python wrapper not drop this package:
|
# Workaround to make the python wrapper not drop this package:
|
||||||
# pythonFull.buildEnv.override { extraLibs = [ thrift ]; }
|
# pythonFull.buildEnv.override { extraLibs = [ thrift ]; }
|
||||||
pythonPath = [];
|
pythonPath = [];
|
||||||
|
@ -32,6 +23,9 @@ stdenv.mkDerivation rec {
|
||||||
preConfigure = "export PY_PREFIX=$out";
|
preConfigure = "export PY_PREFIX=$out";
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
"-DBUILD_JAVASCRIPT:BOOL=OFF"
|
||||||
|
"-DBUILD_NODEJS:BOOL=OFF"
|
||||||
|
|
||||||
# FIXME: Fails to link in static mode with undefined reference to
|
# FIXME: Fails to link in static mode with undefined reference to
|
||||||
# `boost::unit_test::unit_test_main(bool (*)(), int, char**)'
|
# `boost::unit_test::unit_test_main(bool (*)(), int, char**)'
|
||||||
"-DBUILD_TESTING:BOOL=${if static then "OFF" else "ON"}"
|
"-DBUILD_TESTING:BOOL=${if static then "OFF" else "ON"}"
|
||||||
|
@ -40,11 +34,32 @@ stdenv.mkDerivation rec {
|
||||||
"-DOPENSSL_USE_STATIC_LIBS=ON"
|
"-DOPENSSL_USE_STATIC_LIBS=ON"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
"PythonTestSSLSocket"
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
# tests that hang up in the darwin sandbox
|
||||||
|
"SecurityTest"
|
||||||
|
"SecurityFromBufferTest"
|
||||||
|
"python_test"
|
||||||
|
|
||||||
|
# tests that fail in the darwin sandbox when trying to use network
|
||||||
|
"UnitTests"
|
||||||
|
"TInterruptTest"
|
||||||
|
"TServerIntegrationTest"
|
||||||
|
"processor"
|
||||||
|
"TNonblockingServerTest"
|
||||||
|
"TNonblockingSSLServerTest"
|
||||||
|
"StressTest"
|
||||||
|
"StressTestConcurrent"
|
||||||
|
"StressTestNonBlocking"
|
||||||
|
"PythonThriftTNonblockingServer"
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = !static;
|
doCheck = !static;
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
runHook preCheck
|
runHook preCheck
|
||||||
|
|
||||||
${lib.optionalString stdenv.isDarwin "DY"}LD_LIBRARY_PATH=$PWD/lib ctest -E PythonTestSSLSocket
|
${lib.optionalString stdenv.isDarwin "DY"}LD_LIBRARY_PATH=$PWD/lib ctest -E "($(echo "$disabledTests" | tr " " "|"))"
|
||||||
|
|
||||||
runHook postCheck
|
runHook postCheck
|
||||||
'';
|
'';
|
||||||
|
@ -56,8 +71,5 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
knownVulnerabilities = [
|
|
||||||
"CVE-2020-13949"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue