
* py-constantly: added version 23.10.4 * py-constantly: fixed dependency on py-versioneer * py-constantly: updated py-versioneer dependency Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> --------- Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
112 lines
4.5 KiB
Python
112 lines
4.5 KiB
Python
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
from spack.pkg.builtin.boost import Boost
|
|
|
|
|
|
class Thrift(Package):
|
|
"""Software framework for scalable cross-language services development.
|
|
|
|
Thrift combines a software stack with a code generation engine to
|
|
build services that work efficiently and seamlessly between C++,
|
|
Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa,
|
|
JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages.
|
|
|
|
"""
|
|
|
|
homepage = "https://thrift.apache.org"
|
|
url = "https://archive.apache.org/dist/thrift/0.16.0/thrift-0.16.0.tar.gz"
|
|
list_url = "https://archive.apache.org/dist/thrift/"
|
|
list_depth = 1
|
|
|
|
maintainers("thomas-bouvier")
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("0.18.1", sha256="04c6f10e5d788ca78e13ee2ef0d2152c7b070c0af55483d6b942e29cff296726")
|
|
version("0.17.0", sha256="b272c1788bb165d99521a2599b31b97fa69e5931d099015d91ae107a0b0cc58f")
|
|
version("0.16.0", sha256="f460b5c1ca30d8918ff95ea3eb6291b3951cf518553566088f3f2be8981f6209")
|
|
version("0.13.0", sha256="7ad348b88033af46ce49148097afe354d513c1fca7c607b59c33ebb6064b5179")
|
|
version("0.12.0", sha256="c336099532b765a6815173f62df0ed897528a9d551837d627c1f87fadad90428")
|
|
version("0.11.0", sha256="c4ad38b6cb4a3498310d405a91fef37b9a8e79a50cd0968148ee2524d2fa60c2")
|
|
version("0.10.0", sha256="2289d02de6e8db04cbbabb921aeb62bfe3098c4c83f36eec6c31194301efa10b")
|
|
version("0.9.3", sha256="b0740a070ac09adde04d43e852ce4c320564a292f26521c46b78e0641564969e")
|
|
|
|
depends_on("c", type="build") # generated
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
variant("pic", default=True, description="Build position independent code")
|
|
variant("c", default=True, description="Build support for C-family languages")
|
|
variant("java", default=False, description="Build support for java")
|
|
variant("python", default=True, description="Build support for python")
|
|
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("autoconf", type="build")
|
|
depends_on("automake", type="build")
|
|
depends_on("libtool", type="build")
|
|
depends_on("boost@1.53:")
|
|
|
|
# TODO: replace this with an explicit list of components of Boost,
|
|
# for instance depends_on('boost +filesystem')
|
|
# See https://github.com/spack/spack/pull/22303 for reference
|
|
depends_on(Boost.with_default_variants)
|
|
depends_on("bison", type="build")
|
|
depends_on("flex", type="build")
|
|
depends_on("openssl")
|
|
|
|
# Variant dependencies
|
|
depends_on("zlib-api", when="+c")
|
|
depends_on("libevent", when="+c")
|
|
|
|
depends_on("java@7:", when="+java")
|
|
depends_on("ant", when="+java")
|
|
|
|
extends("python", when="+python")
|
|
depends_on("python@:3.11.9", when="+python")
|
|
depends_on("py-setuptools", type=("build", "run"), when="+python")
|
|
depends_on("py-six@1.7.2:", type=("build", "run"), when="@0.10.0:+python")
|
|
depends_on("py-tornado", type=("build", "run"), when="+python")
|
|
depends_on("py-twisted", type=("build", "run"), when="+python")
|
|
depends_on("py-zope-interface", type=("build", "run"), when="+python")
|
|
depends_on("py-pure-sasl", type=("build", "run"), when="+python")
|
|
depends_on("scons", type=("build", "run"), when="+python")
|
|
|
|
patch(
|
|
"https://github.com/apache/thrift/pull/2511.patch?full_index=1",
|
|
sha256="8523c97eccb31b084241b4061db830c4ef940042b37ba8ddfdcdd23d92325b89",
|
|
when="@0.16.0",
|
|
)
|
|
|
|
def setup_build_environment(self, env):
|
|
if "+pic" in self.spec:
|
|
env.append_flags("CFLAGS", self.compiler.cc_pic_flag)
|
|
env.append_flags("CXXFLAGS", self.compiler.cxx_pic_flag)
|
|
|
|
def install(self, spec, prefix):
|
|
env["PY_PREFIX"] = prefix
|
|
|
|
# configure options
|
|
options = ["--prefix=%s" % prefix]
|
|
|
|
options.append("--with-boost=%s" % spec["boost"].prefix)
|
|
options.append("--enable-tests=no")
|
|
|
|
options.append("--with-nodejs=no")
|
|
options.append("--with-c=%s" % ("yes" if "+c" in spec else "no"))
|
|
options.append("--with-python=%s" % ("yes" if "+python" in spec else "no"))
|
|
options.append("--with-java=%s" % ("yes" if "+java" in spec else "no"))
|
|
options.append("--with-go=no")
|
|
options.append("--with-lua=no")
|
|
options.append("--with-php=no")
|
|
options.append("--with-kotlin=no")
|
|
options.append("--with-ruby=no")
|
|
options.append("--with-qt4=no")
|
|
|
|
configure(*options)
|
|
|
|
make()
|
|
make("install")
|