From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 07 Feb 2022 08:41:02 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nGydy-0082xX-8H for lore@lore.pengutronix.de; Mon, 07 Feb 2022 08:41:02 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1nGydx-0000Oa-9b; Mon, 07 Feb 2022 08:41:01 +0100 Received: from ptx.hi.pengutronix.de ([2001:67c:670:100:1d::c0]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nGydr-0000OB-3D; Mon, 07 Feb 2022 08:40:55 +0100 Received: from mol by ptx.hi.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1nGydq-0002Uf-R7; Mon, 07 Feb 2022 08:40:54 +0100 Date: Mon, 7 Feb 2022 08:40:54 +0100 From: Michael Olbrich To: Clemens Gruber Message-ID: <20220207074054.GR11273@pengutronix.de> Mail-Followup-To: Clemens Gruber , ptxdist@pengutronix.de References: <20220204165057.842648-1-clemens.gruber@pqgruber.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220204165057.842648-1-clemens.gruber@pqgruber.com> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-IRC: #ptxdist @freenode X-Accept-Language: de,en X-Accept-Content-Type: text/plain X-Uptime: 08:39:54 up 58 days, 16:25, 68 users, load average: 0.05, 0.12, 0.13 User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [ptxdist] [PATCH v2] hiredis: new package X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false On Fri, Feb 04, 2022 at 05:50:57PM +0100, Clemens Gruber wrote: > Adds a new package for hiredis, a minimalistic C client library for > Redis. > > Signed-off-by: Clemens Gruber > --- > Changes since v1: > - Forgot to add the license file hash Ah, I missed this version. Thanks for adding this without prompting. I had one more comment about v1. That applies here too. Michael > > rules/hiredis.in | 8 ++++++ > rules/hiredis.make | 62 ++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 70 insertions(+) > create mode 100644 rules/hiredis.in > create mode 100644 rules/hiredis.make > > diff --git a/rules/hiredis.in b/rules/hiredis.in > new file mode 100644 > index 000000000..d416d69c4 > --- /dev/null > +++ b/rules/hiredis.in > @@ -0,0 +1,8 @@ > +## SECTION=system_libraries > + > +config HIREDIS > + tristate > + select HOST_CMAKE > + prompt "hiredis " > + help > + Hiredis is a minimalistic C client library for the Redis database. > diff --git a/rules/hiredis.make b/rules/hiredis.make > new file mode 100644 > index 000000000..c92fb9c8d > --- /dev/null > +++ b/rules/hiredis.make > @@ -0,0 +1,62 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2022 by Clemens Gruber > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_HIREDIS) += hiredis > + > +# > +# Paths and names > +# > +HIREDIS_VERSION := 1.0.2 > +HIREDIS_MD5 := 58e8313188f66ed1be1c220d14a7752e > +HIREDIS := hiredis-$(HIREDIS_VERSION) > +HIREDIS_SUFFIX := tar.gz > +HIREDIS_URL := https://github.com/redis/hiredis/archive/v$(HIREDIS_VERSION).$(HIREDIS_SUFFIX) > +HIREDIS_SOURCE := $(SRCDIR)/$(HIREDIS).$(HIREDIS_SUFFIX) > +HIREDIS_DIR := $(BUILDDIR)/$(HIREDIS) > +HIREDIS_LICENSE := BSD-3-Clause > +HIREDIS_LICENSE_FILES := file://COPYING;md5=d84d659a35c666d23233e54503aaea51 > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# cmake > +# > +HIREDIS_CONF_TOOL := cmake > + > +HIREDIS_CONF_OPT := \ > + $(CROSS_CMAKE_USR) \ > + -DDISABLE_TESTS=ON \ > + -DENABLE_SSL=OFF > + > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/hiredis.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, hiredis) > + @$(call install_fixup, hiredis,PRIORITY,optional) > + @$(call install_fixup, hiredis,SECTION,base) > + @$(call install_fixup, hiredis,AUTHOR,"Clemens Gruber ") > + @$(call install_fixup, hiredis,DESCRIPTION,"Minimalistic C client for Redis") > + > + @$(call install_lib, hiredis, 0, 0, 0644, libhiredis) > + @$(call install_link, hiredis, libhiredis.so.1.0.0, /usr/lib/libhiredis.so) > + > + @$(call install_finish, hiredis) > + > + @$(call touch) > + > +# vim: syntax=make > -- > 2.35.1 > > > _______________________________________________ > ptxdist mailing list > ptxdist@pengutronix.de > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de