mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] spawn-fcgi: Add new package
@ 2020-03-26 14:53 Alexander Dahl
  2020-04-01 15:06 ` [ptxdist] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Dahl @ 2020-03-26 14:53 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/spawn-fcgi.in   | 11 +++++++++
 rules/spawn-fcgi.make | 56 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)
 create mode 100644 rules/spawn-fcgi.in
 create mode 100644 rules/spawn-fcgi.make

diff --git a/rules/spawn-fcgi.in b/rules/spawn-fcgi.in
new file mode 100644
index 000000000..9cf6489bc
--- /dev/null
+++ b/rules/spawn-fcgi.in
@@ -0,0 +1,11 @@
+## SECTION=networking
+
+config SPAWN_FCGI
+	tristate
+	prompt "spawn-fcgi"
+	help
+	  spawn-fcgi is used to spawn FastCGI applications
+	  
+	  https://redmine.lighttpd.net/projects/spawn-fcgi
+
+# vim: ft=kconfig noet tw=72 ts=8 sw=8
diff --git a/rules/spawn-fcgi.make b/rules/spawn-fcgi.make
new file mode 100644
index 000000000..f6aa45dd5
--- /dev/null
+++ b/rules/spawn-fcgi.make
@@ -0,0 +1,56 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2020 by Alexander Dahl <ada@thorsis.com>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_SPAWN_FCGI) += spawn-fcgi
+
+#
+# Paths and names
+#
+SPAWN_FCGI_VERSION	:= 1.6.4
+SPAWN_FCGI_MD5		:= a67c098a50cd625fd12adf61b5dd4c32
+SPAWN_FCGI		:= spawn-fcgi-$(SPAWN_FCGI_VERSION)
+SPAWN_FCGI_SUFFIX	:= tar.xz
+SPAWN_FCGI_URL		:= https://download.lighttpd.net/spawn-fcgi/releases-1.6.x/$(SPAWN_FCGI).$(SPAWN_FCGI_SUFFIX)
+SPAWN_FCGI_SOURCE	:= $(SRCDIR)/$(SPAWN_FCGI).$(SPAWN_FCGI_SUFFIX)
+SPAWN_FCGI_DIR		:= $(BUILDDIR)/$(SPAWN_FCGI)
+SPAWN_FCGI_LICENSE	:= BSD-3-Clause
+SPAWN_FCGI_LICENSE_FILES := file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+SPAWN_FCGI_CONF_TOOL	:= autoconf
+SPAWN_FCGI_CONF_OPT	:= \
+	$(CROSS_AUTOCONF_USR) \
+	$(GLOBAL_IPV6_OPTION) \
+	--enable-extra-warnings
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/spawn-fcgi.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, spawn-fcgi)
+	@$(call install_fixup, spawn-fcgi,PRIORITY,optional)
+	@$(call install_fixup, spawn-fcgi,SECTION,base)
+	@$(call install_fixup, spawn-fcgi,AUTHOR,"Alexander Dahl <ada@thorsis.com>")
+	@$(call install_fixup, spawn-fcgi,DESCRIPTION,missing)
+
+	@$(call install_copy, spawn-fcgi, 0, 0, 0755, -, /usr/bin/spawn-fcgi)
+
+	@$(call install_finish, spawn-fcgi)
+
+	@$(call touch)
+
+# vim: ft=make noet tw=72 ts=8 sw=8
-- 
2.20.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] spawn-fcgi: Add new package
  2020-03-26 14:53 [ptxdist] [PATCH] spawn-fcgi: Add new package Alexander Dahl
@ 2020-04-01 15:06 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2020-04-01 15:06 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 12215f8abf7adc39dbf9c812f511b0d53f9e73aa.

Michael

[sent from post-receive hook]

On Wed, 01 Apr 2020 17:06:42 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
>  rules/spawn-fcgi.in   | 11 +++++++++
>  rules/spawn-fcgi.make | 56 +++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 67 insertions(+)
>  create mode 100644 rules/spawn-fcgi.in
>  create mode 100644 rules/spawn-fcgi.make
> 
> diff --git a/rules/spawn-fcgi.in b/rules/spawn-fcgi.in
> new file mode 100644
> index 000000000..9cf6489bc
> --- /dev/null
> +++ b/rules/spawn-fcgi.in
> @@ -0,0 +1,11 @@
> +## SECTION=networking
> +
> +config SPAWN_FCGI
> +	tristate
> +	prompt "spawn-fcgi"
> +	help
> +	  spawn-fcgi is used to spawn FastCGI applications
> +	  
> +	  https://redmine.lighttpd.net/projects/spawn-fcgi
> +
> +# vim: ft=kconfig noet tw=72 ts=8 sw=8
> diff --git a/rules/spawn-fcgi.make b/rules/spawn-fcgi.make
> new file mode 100644
> index 000000000..f6aa45dd5
> --- /dev/null
> +++ b/rules/spawn-fcgi.make
> @@ -0,0 +1,56 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2020 by Alexander Dahl <ada@thorsis.com>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_SPAWN_FCGI) += spawn-fcgi
> +
> +#
> +# Paths and names
> +#
> +SPAWN_FCGI_VERSION	:= 1.6.4
> +SPAWN_FCGI_MD5		:= a67c098a50cd625fd12adf61b5dd4c32
> +SPAWN_FCGI		:= spawn-fcgi-$(SPAWN_FCGI_VERSION)
> +SPAWN_FCGI_SUFFIX	:= tar.xz
> +SPAWN_FCGI_URL		:= https://download.lighttpd.net/spawn-fcgi/releases-1.6.x/$(SPAWN_FCGI).$(SPAWN_FCGI_SUFFIX)
> +SPAWN_FCGI_SOURCE	:= $(SRCDIR)/$(SPAWN_FCGI).$(SPAWN_FCGI_SUFFIX)
> +SPAWN_FCGI_DIR		:= $(BUILDDIR)/$(SPAWN_FCGI)
> +SPAWN_FCGI_LICENSE	:= BSD-3-Clause
> +SPAWN_FCGI_LICENSE_FILES := file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +SPAWN_FCGI_CONF_TOOL	:= autoconf
> +SPAWN_FCGI_CONF_OPT	:= \
> +	$(CROSS_AUTOCONF_USR) \
> +	$(GLOBAL_IPV6_OPTION) \
> +	--enable-extra-warnings
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/spawn-fcgi.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, spawn-fcgi)
> +	@$(call install_fixup, spawn-fcgi,PRIORITY,optional)
> +	@$(call install_fixup, spawn-fcgi,SECTION,base)
> +	@$(call install_fixup, spawn-fcgi,AUTHOR,"Alexander Dahl <ada@thorsis.com>")
> +	@$(call install_fixup, spawn-fcgi,DESCRIPTION,missing)
> +
> +	@$(call install_copy, spawn-fcgi, 0, 0, 0755, -, /usr/bin/spawn-fcgi)
> +
> +	@$(call install_finish, spawn-fcgi)
> +
> +	@$(call touch)
> +
> +# vim: ft=make noet tw=72 ts=8 sw=8
> 

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-01 15:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-26 14:53 [ptxdist] [PATCH] spawn-fcgi: Add new package Alexander Dahl
2020-04-01 15:06 ` [ptxdist] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox