# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup github 1.0 PortGroup legacysupport 1.1 PortGroup muniversal 1.0 PortGroup xcode_workaround 1.0 PortGroup makefile 1.0 # clock_gettime legacysupport.newest_darwin_requires_legacy 15 github.setup valkey-io valkey 7.2.5 github.tarball_from archive revision 2 categories databases license BSD maintainers {makr @mohd-akram} openmaintainer description in-memory data store long_description Valkey is an open source (BSD) high-performance key/value \ datastore that supports a variety workloads such as \ caching, message queues, and can act as a primary database. homepage https://valkey.io checksums rmd160 877e2388d520f6fb3a1e4e6dd9effeb80b072fb7 \ sha256 c7c7a758edabe7693b3692db58fe5328130036b06224df64ab1f0c12fe265a76 \ size 3420515 patchfiles patch-valkey.conf.diff \ patch-hiredis.diff \ patch-gh-12585.diff \ patch-fix-install.diff \ patch-remove-brewism.diff \ patch-fix-older-macOS.diff post-patch { reinplace "s|@PREFIX@|${prefix}|g" \ ${worksrcpath}/valkey.conf \ ${worksrcpath}/deps/hiredis/Makefile } # see ${worksrcpath}/deps/jemalloc/Makefile compiler.cxx_standard 2014 configure.cxxflags-append -std=c++14 # https://trac.macports.org/ticket/59245 xcode_workaround.fixed_xcode_version 11.2 # valkey and dep makefiles have their own optflags configure.optflags # avoid build conflict with lua configure.cppflags-replace \ -I${prefix}/include \ -isystem${prefix}/include if {[string match *gcc* ${configure.compiler}] \ && ${configure.build_arch} in [list i386 ppc]} { # https://github.com/valkey-io/valkey/issues/434 configure.ldflags-append \ -latomic } # valkey doesn't know about CPPFLAGS so pass it this way build.args-append SERVER_CFLAGS="${configure.cppflags}" # disable silent rules build.args-append V=1 # use jemalloc build.args-append MALLOC=jemalloc # enable TLS. build.args-append BUILD_TLS=yes depends_lib path:lib/libssl.dylib:openssl # prevent conflict with redis destroot.args-append USE_REDIS_SYMLINKS=no set db_dir ${prefix}/var/db/${name} set log_dir ${prefix}/var/log/${name} set run_dir ${prefix}/var/run/${name} destroot.keepdirs ${destroot}${db_dir} \ ${destroot}${log_dir} \ ${destroot}${run_dir} installs_libs no makefile.has_destdir no post-destroot { xinstall -d ${destroot}${prefix}/share/doc/${name} foreach conffile {valkey.conf sentinel.conf} { xinstall -m 0644 ${worksrcpath}/${conffile} \ ${destroot}${prefix}/share/doc/${name}/${conffile} } xinstall -o ${name} -g ${name} -d ${destroot}${db_dir} xinstall -o ${name} -g ${name} -d ${destroot}${log_dir} xinstall -o ${name} -g ${name} -d ${destroot}${run_dir} } post-activate { foreach conffile {valkey.conf sentinel.conf} { if {![file exists ${prefix}/etc/${conffile}]} { file copy ${prefix}/share/doc/${name}/${conffile} \ ${prefix}/etc/${conffile} } } } add_users ${name} group=${name} realname=Valkey\ Database\ Server startupitem.create yes startupitem.user ${name} startupitem.group ${name} startupitem.executable ${prefix}/bin/valkey-server ${prefix}/etc/valkey.conf github.livecheck.regex {([0-9.]+)}