-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169816 from armeenm/qpid-cpp-python3
qpid-cpp: switch to python3
- Loading branch information
Showing
2 changed files
with
39 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,52 @@ | ||
{ lib, stdenv, fetchurl, cmake, python2, boost, libuuid, ruby, buildEnv, buildPythonPackage, qpid-python }: | ||
|
||
let | ||
{ lib, stdenv | ||
, fetchpatch | ||
, fetchurl | ||
, boost | ||
, cmake | ||
, libuuid | ||
, python3 | ||
, ruby | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "qpid-cpp"; | ||
name = "${pname}-${version}"; | ||
version = "1.39.0"; | ||
|
||
src = fetchurl { | ||
url = "mirror://apache/qpid/cpp/${version}/${name}.tar.gz"; | ||
sha256 = "088dx1l6myrksbhpr15bs09j6qm8vdliqwjp2ja5amym47md103r"; | ||
url = "mirror://apache/qpid/cpp/${version}/${pname}-${version}.tar.gz"; | ||
hash = "sha256-eYDQ6iHVV1WUFFdyHGnbqGIjE9CrhHzh0jP7amjoDSE="; | ||
}; | ||
|
||
nativeBuildInputs = [ cmake python3 ]; | ||
buildInputs = [ boost libuuid ruby ]; | ||
|
||
patches = [ | ||
(fetchpatch { | ||
name = "python3-managementgen"; | ||
url = "https://github.com/apache/qpid-cpp/commit/0e558866e90ef3d5becbd2f6d5630a6a6dc43a5d.patch"; | ||
hash = "sha256-pV6xx8Nrys/ZxIO0Z/fARH0ELqcSdTXLPsVXYUd3f70="; | ||
}) | ||
]; | ||
|
||
# the subdir managementgen wants to install python stuff in ${python} and | ||
# the installation tries to create some folders in /var | ||
postPatch = '' | ||
sed -i '/managementgen/d' CMakeLists.txt | ||
sed -i '/ENV/d' src/CMakeLists.txt | ||
sed -i '/management/d' CMakeLists.txt | ||
''; | ||
|
||
NIX_CFLAGS_COMPILE = toString ([ | ||
"-Wno-error=maybe-uninitialized" | ||
] ++ lib.optionals stdenv.cc.isGNU [ | ||
"-Wno-error=deprecated-copy" | ||
]); | ||
|
||
meta = with lib; { | ||
homepage = "https://qpid.apache.org"; | ||
description = "An AMQP message broker and a C++ messaging API"; | ||
license = licenses.asl20; | ||
platforms = platforms.linux; | ||
maintainers = with maintainers; [ cpages ]; | ||
}; | ||
|
||
qpid-cpp = stdenv.mkDerivation { | ||
inherit src meta pname version; | ||
|
||
nativeBuildInputs = [ cmake ]; | ||
buildInputs = [ boost libuuid ruby python2 ]; | ||
|
||
# the subdir managementgen wants to install python stuff in ${python} and | ||
# the installation tries to create some folders in /var | ||
postPatch = '' | ||
sed -i '/managementgen/d' CMakeLists.txt | ||
sed -i '/ENV/d' src/CMakeLists.txt | ||
sed -i '/management/d' CMakeLists.txt | ||
''; | ||
|
||
NIX_CFLAGS_COMPILE = toString ([ | ||
"-Wno-error=deprecated-declarations" | ||
"-Wno-error=int-in-bool-context" | ||
"-Wno-error=maybe-uninitialized" | ||
"-Wno-error=unused-function" | ||
"-Wno-error=ignored-qualifiers" | ||
"-Wno-error=catch-value" | ||
] ++ lib.optionals stdenv.cc.isGNU [ | ||
"-Wno-error=deprecated-copy" | ||
]); | ||
}; | ||
|
||
python-frontend = buildPythonPackage { | ||
inherit pname version meta src; | ||
|
||
sourceRoot = "${name}/management/python"; | ||
|
||
propagatedBuildInputs = [ qpid-python ]; | ||
}; | ||
in buildEnv { | ||
name = "${name}-env"; | ||
paths = [ qpid-cpp python-frontend ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters