# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= hiredis VERSION= 1.2.0 KEYWORDS= databases VARIANTS= standard SDESC[standard]= Minimalistic C client for Redis >= 1.2 HOMEPAGE= https://redis.io/ CONTACT= nobody DOWNLOAD_GROUPS= main SITES[main]= GITHUB/redis:hiredis:v1.2.0 DISTFILE[1]= generated:main DF_INDEX= 1 SPKGS[standard]= complete primary dev OPTIONS_AVAILABLE= none OPTIONS_STANDARD= none USES= cpe gmake LICENSE= BSD3CLAUSE:primary LICENSE_FILE= BSD3CLAUSE:{{WRKSRC}}/COPYING LICENSE_SCHEME= solo CPE_VENDOR= redis FPC_EQUIVALENT= databases/hiredis SOVERSION= 1.1.0 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libhiredis.so [FILE:849:descriptions/desc.primary] Hiredis is a minimalistic C client library for the Redis database. It is minimalistic because it just adds minimal support for the protocol, but at the same time it uses a high level printf-alike API in order to make it much higher level than otherwise suggested by its minimal code base and the lack of explicit bindings for every Redis command. Apart from supporting sending commands and receiving replies, it comes with a reply parser that is decoupled from the I/O layer. It is a stream parser designed for easy reusability, which can for instance be used in higher level language bindings for efficient reply parsing. Hiredis only supports the binary-safe Redis protocol, so you can use it with any Redis version >= 1.2.0. The library comes with multiple APIs. There is the synchronous API, the asynchronous API and the reply parsing API. [FILE:105:distinfo] 82ad632d31ee05da13b537c124f819eb88e18851d9cb0c30ae0552084811588c 126216 redis-hiredis-1.2.0.tar.gz [FILE:61:manifests/plist.primary] lib/ libhiredis.so.%%SOMAJOR%% libhiredis.so.%%SOVERSION%% [FILE:279:manifests/plist.dev] include/hiredis/ alloc.h async.h hiredis.h read.h sds.h sockcompat.h include/hiredis/adapters/ ae.h glib.h ivykis.h libev.h libevent.h libhv.h libsdevent.h libuv.h macosx.h poll.h qt.h redismoduleapi.h lib/ libhiredis.a libhiredis.so lib/pkgconfig/hiredis.pc [FILE:292:patches/patch-Makefile] --- Makefile.orig 2022-11-15 04:34:30 UTC +++ Makefile @@ -116,6 +116,10 @@ else REAL_CFLAGS+=-pedantic endif +ifeq ($(uname_S),MidnightBSD) + LDFLAGS+=-lm +endif + ifeq ($(uname_S),SunOS) IS_SUN_CC=$(shell sh -c '$(CC) -V 2>&1 |egrep -i -c "sun|studio"') ifeq ($(IS_SUN_CC),1)