mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 5/5] ptxdist: add host autotools macro archive for tpm2
@ 2018-11-26 10:23 Thorsten K. Scherer
  2018-11-28  7:50 ` Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Thorsten K. Scherer @ 2018-11-26 10:23 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Thorsten K. Scherer <t.scherer@eckelmann.de>
---
 rules/host-autotools-autoconf-archive.in   | 12 ++++++++
 rules/host-autotools-autoconf-archive.make | 36 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 rules/host-autotools-autoconf-archive.in
 create mode 100644 rules/host-autotools-autoconf-archive.make

diff --git a/rules/host-autotools-autoconf-archive.in b/rules/host-autotools-autoconf-archive.in
new file mode 100644
index 0000000..6ffd48e
--- /dev/null
+++ b/rules/host-autotools-autoconf-archive.in
@@ -0,0 +1,12 @@
+## SECTION=hosttools_noprompt
+
+config HOST_AUTOTOOLS_AUTOCONF_ARCHIVE
+       tristate
+       help
+         Autoconf Macro Archive
+
+         Autoconf Macro Archive aims to provide a central repository
+         of useful and tested Autoconf macros for software developers
+         around the world. This package contains the complete content
+         of the Autoconf Macro Archive as found at
+         http://www.gnu.org/software/autoconf-archive/.
diff --git a/rules/host-autotools-autoconf-archive.make b/rules/host-autotools-autoconf-archive.make
new file mode 100644
index 0000000..eb2f437
--- /dev/null
+++ b/rules/host-autotools-autoconf-archive.make
@@ -0,0 +1,36 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Marc Kleine-Budde <m...@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_AUTOTOOLS_AUTOCONF_ARCHIVE) += host-autotools-autoconf-archive
+
+#
+# Paths and names
+#
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_VERSION        := 2017.03.21
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_MD5    := 39549f8b3f34d2c910c92e58912e1a64
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE                := autoconf-archive-$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_VERSION)
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SUFFIX := tar.xz
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_URL    := $(call ptx/mirror, GNU, autoconf-archive/$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE).$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SUFFIX))
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SOURCE := $(SRCDIR)/$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE).$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SUFFIX)
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_DIR    := $(HOST_BUILDDIR)/$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_CONF_TOOL      := autoconf
+
+# vim: syntax=make
-- 
2.19.1


-- 
Eckelmann AG
Vorstand: Dipl.-Ing. Peter Frankenbach (Sprecher) Dipl.-Wi.-Ing. Philipp Eckelmann
Dr.-Ing. Marco Münchhof Dr.-Ing. Frank Uhlemann
Vorsitzender des Aufsichtsrats: Hubertus G. Krossa
Stv. Vorsitzender des Aufsichtsrats: Dr.-Ing. Gerd Eckelmann
Sitz der Gesellschaft: Berliner Str. 161, 65205 Wiesbaden, Amtsgericht Wiesbaden HRB 12636
http://www.eckelmann.de

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCH 5/5] ptxdist: add host autotools macro archive for tpm2
  2018-11-26 10:23 [ptxdist] [PATCH 5/5] ptxdist: add host autotools macro archive for tpm2 Thorsten K. Scherer
@ 2018-11-28  7:50 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2018-11-28  7:50 UTC (permalink / raw)
  To: ptxdist

On Mon, Nov 26, 2018 at 11:23:56AM +0100, Thorsten K. Scherer wrote:
> Signed-off-by: Thorsten K. Scherer <t.scherer@eckelmann.de>

All tabs where replaced by spaces somewhere.

> ---
>  rules/host-autotools-autoconf-archive.in   | 12 ++++++++
>  rules/host-autotools-autoconf-archive.make | 36 ++++++++++++++++++++++
>  2 files changed, 48 insertions(+)
>  create mode 100644 rules/host-autotools-autoconf-archive.in
>  create mode 100644 rules/host-autotools-autoconf-archive.make
> 
> diff --git a/rules/host-autotools-autoconf-archive.in b/rules/host-autotools-autoconf-archive.in
> new file mode 100644
> index 0000000..6ffd48e
> --- /dev/null
> +++ b/rules/host-autotools-autoconf-archive.in
> @@ -0,0 +1,12 @@
> +## SECTION=hosttools_noprompt
> +
> +config HOST_AUTOTOOLS_AUTOCONF_ARCHIVE
> +       tristate

	default y if ALLYES

Michael

> +       help
> +         Autoconf Macro Archive
> +
> +         Autoconf Macro Archive aims to provide a central repository
> +         of useful and tested Autoconf macros for software developers
> +         around the world. This package contains the complete content
> +         of the Autoconf Macro Archive as found at
> +         http://www.gnu.org/software/autoconf-archive/.
> diff --git a/rules/host-autotools-autoconf-archive.make b/rules/host-autotools-autoconf-archive.make
> new file mode 100644
> index 0000000..eb2f437
> --- /dev/null
> +++ b/rules/host-autotools-autoconf-archive.make
> @@ -0,0 +1,36 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2017 by Marc Kleine-Budde <m...@pengutronix.de>
> +#
> +# See CREDITS for details about who has contributed to this project.
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +HOST_PACKAGES-$(PTXCONF_HOST_AUTOTOOLS_AUTOCONF_ARCHIVE) += host-autotools-autoconf-archive
> +
> +#
> +# Paths and names
> +#
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_VERSION        := 2017.03.21
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_MD5    := 39549f8b3f34d2c910c92e58912e1a64
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE                := autoconf-archive-$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_VERSION)
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SUFFIX := tar.xz
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_URL    := $(call ptx/mirror, GNU, autoconf-archive/$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE).$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SUFFIX))
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SOURCE := $(SRCDIR)/$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE).$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_SUFFIX)
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_DIR    := $(HOST_BUILDDIR)/$(HOST_AUTOTOOLS_AUTOCONF_ARCHIVE)
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +#
> +# autoconf
> +#
> +HOST_AUTOTOOLS_AUTOCONF_ARCHIVE_CONF_TOOL      := autoconf
> +
> +# vim: syntax=make
> -- 
> 2.19.1
> 
> 
> -- 
> Eckelmann AG
> Vorstand: Dipl.-Ing. Peter Frankenbach (Sprecher) Dipl.-Wi.-Ing. Philipp Eckelmann
> Dr.-Ing. Marco Münchhof Dr.-Ing. Frank Uhlemann
> Vorsitzender des Aufsichtsrats: Hubertus G. Krossa
> Stv. Vorsitzender des Aufsichtsrats: Dr.-Ing. Gerd Eckelmann
> Sitz der Gesellschaft: Berliner Str. 161, 65205 Wiesbaden, Amtsgericht Wiesbaden HRB 12636
> http://www.eckelmann.de
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2018-11-28  7:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26 10:23 [ptxdist] [PATCH 5/5] ptxdist: add host autotools macro archive for tpm2 Thorsten K. Scherer
2018-11-28  7:50 ` Michael Olbrich

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