From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 18 Oct 2023 09:44:25 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) 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 1qt1EA-00CkGx-2O for lore@lore.pengutronix.de; Wed, 18 Oct 2023 09:44:25 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1qt1E8-0004ev-3W; Wed, 18 Oct 2023 09:44:24 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qt1Cj-0002ZA-Kr; Wed, 18 Oct 2023 09:42:57 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qt1Cj-002VI6-8N; Wed, 18 Oct 2023 09:42:57 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1qt1Cj-00D2VT-0i; Wed, 18 Oct 2023 09:42:57 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Wed, 18 Oct 2023 09:42:57 +0200 Message-Id: <20231018074257.3107892-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231010065219.43001-4-ada@thorsis.com> References: <20231010065219.43001-4-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] poke: Add 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: Alexander Dahl 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as e6ec9f74f041658f3453f3b7ec4ba4b90e854f26. Michael [sent from post-receive hook] On Wed, 18 Oct 2023 09:42:57 +0200, Alexander Dahl wrote: > Link: https://jemarch.net/poke > Signed-off-by: Alexander Dahl > Message-Id: <20231010065219.43001-4-ada@thorsis.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/poke.in b/rules/poke.in > new file mode 100644 > index 000000000000..6b1637716d48 > --- /dev/null > +++ b/rules/poke.in > @@ -0,0 +1,17 @@ > +## SECTION=editors > + > +config POKE > + tristate > + prompt "poke" > + select BDWGC > + select NCURSES > + select READLINE > + help > + GNU poke is an interactive, extensible editor for binary data. > + Not limited to editing basic entities such as bits and bytes, > + it provides a full-fledged procedural, interactive programming > + language designed to describe data structures and to operate > + on them. > + https://jemarch.net/poke > + > +# vim: ft=kconfig noet tw=72 ts=8 sw=8 > diff --git a/rules/poke.make b/rules/poke.make > new file mode 100644 > index 000000000000..bfd67396ccad > --- /dev/null > +++ b/rules/poke.make > @@ -0,0 +1,71 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2023 by Alexander Dahl > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_POKE) += poke > + > +# > +# Paths and names > +# > +POKE_VERSION := 3.3 > +POKE_MD5 := 25461e6e9032fa4d3ed089576990c159 > +POKE := poke-$(POKE_VERSION) > +POKE_SUFFIX := tar.gz > +POKE_URL := $(call ptx/mirror, GNU, poke/$(POKE).$(POKE_SUFFIX)) > +POKE_SOURCE := $(SRCDIR)/$(POKE).$(POKE_SUFFIX) > +POKE_DIR := $(BUILDDIR)/$(POKE) > +POKE_LICENSE := GPL-3.0-or-later > +POKE_LICENSE_FILES := \ > + file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ > + file://jitter/COPYING;md5=d32239bcb673463ab874e80d47fae504 > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +POKE_CONF_TOOL := autoconf > +POKE_CONF_OPT := \ > + $(CROSS_AUTOCONF_USR) \ > + --enable-threads=posix \ > + --disable-rpath \ > + --enable-curses \ > + --disable-nls \ > + --disable-pvm-profiling \ > + --disable-libnbd \ > + --enable-hserver \ > + --$(call ptx/endis, PTXDIST_Y2038)-year2038 \ > + --$(call ptx/endis, PTXCONF_GLOBAL_LARGE_FILE)-largefile \ > + --with-libreadline-prefix="$(PTXDIST_SYSROOT_TARGET)/usr" \ > + --with-jitter-dispatch=best \ > + --without-vimdir \ > + --without-lispdir > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/poke.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, poke) > + @$(call install_fixup, poke,PRIORITY,optional) > + @$(call install_fixup, poke,SECTION,base) > + @$(call install_fixup, poke,AUTHOR,"Alexander Dahl ") > + @$(call install_fixup, poke,DESCRIPTION,missing) > + > + @$(call install_lib, poke, 0, 0, 0644, libpoke) > + @$(call install_copy, poke, 0, 0, 0755, -, /usr/bin/poke) > + @$(call install_tree, poke, 0, 0, -, /usr/share/poke) > + > + @$(call install_finish, poke) > + > + @$(call touch) > + > +# vim: ft=make noet tw=72 ts=8 sw=8