mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: "Ulrich Ölmann" <u.oelmann@pengutronix.de>
To: PTXdist Development Mailing List <ptxdist@pengutronix.de>
Subject: [ptxdist] [PATCH v5 2/3] host-yarn: new package
Date: Tue,  4 Feb 2020 08:53:58 +0100	[thread overview]
Message-ID: <20200204075359.20506-2-u.oelmann@pengutronix.de> (raw)
In-Reply-To: <20200204075359.20506-1-u.oelmann@pengutronix.de>

From: Björn Esser <b.esser@pengutronix.de>

Fast, reliable, and secure dependency management for Node.js.

We use Yarn to generate an offline cache and a lock-file to be able to install
all needed Node.js-packages reproducibly. This works even in environments
without internet-connectivity, as long as the cache and the lock-file are in
reach.

Signed-off-by: Björn Esser <b.esser@pengutronix.de>
[uol: adjusted commit message, dropped CREDIT line & wrapped install into call
of world/execute]
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
---
v3 --> v4: adjusted commit message
Range-diff of v5 against v4:
2:  c78fde2a6233 ! 2:  8b898ee41bae host-yarn: new package
    @@ Commit message
         reach.

         Signed-off-by: Björn Esser <b.esser@pengutronix.de>
    -    [uol: adjusted commit message]
    +    [uol: adjusted commit message, dropped CREDIT line & wrapped install into call
    +    of world/execute]
         Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>

      ## rules/host-yarn.in (new) ##
    @@ rules/host-yarn.make (new)
     +#
     +# Copyright (C) 2017 by Juergen Borleis <jbe@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.
     +#
    @@ rules/host-yarn.make (new)
     +
     +$(STATEDIR)/host-yarn.install:
     +	@$(call targetinfo)
    -+	@install -pm 0755 $(HOST_YARN_SOURCE) $(PTXDIST_SYSROOT_HOST)/bin/yarn
    ++	@$(call world/execute, HOST_YARN, \
    ++		install -vDm 0755 $(HOST_YARN_SOURCE) \
    ++		$(HOST_YARN_PKGDIR)/bin/yarn)
     +	@$(call touch)
     +
     +# vim: syntax=make

 rules/host-yarn.in   |  6 +++++
 rules/host-yarn.make | 61 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)
 create mode 100644 rules/host-yarn.in
 create mode 100644 rules/host-yarn.make

diff --git a/rules/host-yarn.in b/rules/host-yarn.in
new file mode 100644
index 000000000000..d98dd6c34620
--- /dev/null
+++ b/rules/host-yarn.in
@@ -0,0 +1,6 @@
+## SECTION=hosttools_noprompt
+
+config HOST_YARN
+	tristate
+	default y if ALLYES
+	select HOST_NODEJS
diff --git a/rules/host-yarn.make b/rules/host-yarn.make
new file mode 100644
index 000000000000..16e04c05aee8
--- /dev/null
+++ b/rules/host-yarn.make
@@ -0,0 +1,61 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Juergen Borleis <jbe@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+# 2019-May-05, Daniel Arnold, Updated to yarn 1.15.2
+# 2020-January-09, Björn Esser, Updated to yarn 1.21.1
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_YARN) += host-yarn
+
+#
+# Paths and names
+#
+HOST_YARN_VERSION	:= 1.21.1
+HOST_YARN_MD5		:= cf49e663e0f56aa15f1740c77354ebe2
+HOST_YARN		:= yarn-$(HOST_YARN_VERSION)
+HOST_YARN_SUFFIX	:= js
+HOST_YARN_URL		:= https://github.com/yarnpkg/yarn/releases/download/v$(HOST_YARN_VERSION)/$(HOST_YARN).$(HOST_YARN_SUFFIX)
+HOST_YARN_SOURCE	:= $(SRCDIR)/$(HOST_YARN).$(HOST_YARN_SUFFIX)
+
+# ----------------------------------------------------------------------------
+# Extract (nothing to be done here)
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/host-yarn.extract:
+	@$(call targetinfo)
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Prepare (nothing to be done here)
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/host-yarn.prepare:
+	@$(call targetinfo)
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Compile (nothing to be done here)
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/host-yarn.compile:
+	@$(call targetinfo)
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/host-yarn.install:
+	@$(call targetinfo)
+	@$(call world/execute, HOST_YARN, \
+		install -vDm 0755 $(HOST_YARN_SOURCE) \
+		$(HOST_YARN_PKGDIR)/bin/yarn)
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.25.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

  reply	other threads:[~2020-02-04  7:53 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-04  7:53 [ptxdist] [PATCH v5 1/3] nodejs: version bump 6.9.5 -> 12.14.1 LTS Ulrich Ölmann
2020-02-04  7:53 ` Ulrich Ölmann [this message]
2020-02-21  8:26   ` [ptxdist] [PATCH v5 2/3] host-yarn: new package Juergen Borleis
2020-03-18 15:46     ` Ulrich Ölmann
2020-02-04  7:53 ` [ptxdist] [PATCH v5 3/3] nodejs_packages: " Ulrich Ölmann
2020-02-14 12:46   ` Michael Olbrich
2020-03-18 15:48     ` Ulrich Ölmann
2020-02-17  9:40 ` [ptxdist] [PATCH v5 1/3] nodejs: version bump 6.9.5 -> 12.14.1 LTS Michael Olbrich
2020-03-18 15:44   ` Ulrich Ölmann
2020-02-21  8:22 ` Juergen Borleis
2020-03-18 15:45   ` Ulrich Ölmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200204075359.20506-2-u.oelmann@pengutronix.de \
    --to=u.oelmann@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox