spack/var/spack/repos/builtin/packages/apr-util/package.py
Aiden Grossman 19c20563cc Initial License Checkin
This patch adds license information for about 5,300 packages from automated sources.
The license information was obtained from Alpine Linux and PyPI and processed
using tooling available in https://github.com/boomanaiden154/spack-license-utils.
The license field was added in after all other directives in an automated fashion.

Note that while this license information is probably fairly accurate, it is not
guaranteed to be accurate. In addition some of the license strings from Alpine Linux
might not be valid SPDX license strings. Invalid SPDX identifiers can be picked up
and fixed once we have validation/parsing infrastructure in place for the solver,
and issues can be fixed as they come up.
2023-12-27 11:20:45 -08:00

105 lines
3.8 KiB
Python

# Copyright 2013-2023 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 *
class AprUtil(AutotoolsPackage):
"""Apache Portable Runtime Utility"""
homepage = "https://apr.apache.org/"
url = "https://archive.apache.org/dist/apr/apr-util-1.6.1.tar.gz"
license("Apache-2.0")
version("1.6.3", sha256="2b74d8932703826862ca305b094eef2983c27b39d5c9414442e9976a9acf1983")
version("1.6.1", sha256="b65e40713da57d004123b6319828be7f1273fbc6490e145874ee1177e112c459")
version("1.6.0", sha256="483ef4d59e6ac9a36c7d3fd87ad7b9db7ad8ae29c06b9dd8ff22dda1cc416389")
version("1.5.4", sha256="976a12a59bc286d634a21d7be0841cc74289ea9077aa1af46be19d1a6e844c19")
variant("crypto", default=True, description="Enable crypto support")
variant("gdbm", default=False, description="Enable GDBM support")
variant("pgsql", default=False, description="Enable PostgreSQL support")
variant("sqlite", default=False, description="Enable sqlite DBD driver")
variant("odbc", default=False, description="Enalbe ODBC support")
depends_on("apr")
depends_on("expat")
depends_on("iconv")
depends_on("openssl", when="+crypto")
depends_on("gdbm", when="+gdbm")
depends_on("postgresql", when="+pgsql")
depends_on("sqlite", when="+sqlite")
depends_on("unixodbc", when="+odbc")
depends_on("pkgconfig", type="build", when="+crypto ^openssl~shared")
@property
def libs(self):
return find_libraries(
[f"libaprutil-{self.version.up_to(1)}"], root=self.prefix, recursive=True
)
def configure_args(self):
spec = self.spec
args = [
f"--with-apr={spec['apr'].prefix}",
f"--with-expat={spec['expat'].prefix}",
f"--with-iconv={spec['iconv'].prefix}",
# TODO: Add support for the following database managers
"--without-ndbm",
"--without-berkeley-db",
"--without-mysql",
"--without-oracle",
]
if "+crypto" in spec:
args.extend(["--with-crypto", f"--with-openssl={spec['openssl'].prefix}"])
else:
args.append("--without-crypto")
if "+gdbm" in spec:
args.append(f"--with-gdbm={spec['gdbm'].prefix}")
else:
args.append("--without-gdbm")
if "+pgsql" in spec:
args.append(f"--with-pgsql={spec['postgresql'].prefix}")
else:
args.append("--without-pgsql")
if "+sqlite" in spec:
if spec.satisfies("^sqlite@3.0:3"):
args.extend([f"--with-sqlite3={spec['sqlite'].prefix}", "--without-sqlite2"])
elif spec.satisfies("^sqlite@2.0:2"):
args.extend([f"--with-sqlite2={spec['sqlite'].prefix}", "--without-sqlite3"])
else:
args.extend(["--without-sqlite2", "--without-sqlite3"])
if "+odbc" in spec:
args.append(f"--with-odbc={spec['unixodbc'].prefix}")
else:
args.append("--without-odbc")
if spec.satisfies("+crypto ^openssl~shared"):
# Need pkg-config to get zlib and -ldl flags
# (see https://dev.apr.apache.narkive.com/pNnO9F1S/configure-bug-openssl)
pkgconf = which("pkg-config")
ssl_libs = pkgconf("--libs", "--static", "openssl", output=str)
args.append(f"LIBS={ssl_libs}")
return args
def check(self):
# FIXME: Database driver tests fail, at least on macOS:
#
# Failed to load driver file apr_dbd_pgsql.so
# Failed to load driver file apr_dbd_sqlite3.so
# Failed to load driver file apr_dbd_odbc.so
# Tests occassionally fail when run in parallel
make("check", parallel=False)