all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#61827] [PATCH] gnu: Add pdpmake.
@ 2023-02-26 21:07 jlicht
  2023-03-09 16:27 ` [bug#61827] [PATCH v2] " jlicht
  2023-03-10 11:32 ` [bug#61827] [PATCH v3] " jlicht
  0 siblings, 2 replies; 4+ messages in thread
From: jlicht @ 2023-02-26 21:07 UTC (permalink / raw)
  To: 61827; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/build-tools.scm (pdpmake): New variable.
---

 gnu/packages/build-tools.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 28ab77bbb4..3e63f87d73 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -1006,3 +1006,35 @@ (define-public gnulib
    #:version "2022-12-31"
    #:commit "875461ffdf58ac04677957b4ae4160465b83b940"
    #:hash (base32 "0bf7a6wdns9c5wwv60qfcn9llg0j6jz5ryd2qgsqqx2i6xkmp77c")))
+
+(define-public pdpmake
+  (package
+    (name "pdpmake")
+    (version "1.4.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/rmyorston/pdpmake")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0fjx5imd7s0h0yy8h2qc4vkdq7kxqcljnrw6h8n88720xha5z3cb"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:test-target "test"
+           #:parallel-tests? #f
+           #:make-flags #~(list "DESTDIR=\"\""
+                                (string-append "CC="
+                                               #$(cc-for-target))
+                                (string-append "PREFIX="
+                                               #$output))
+           #:phases #~(modify-phases %standard-phases
+                        (delete 'configure))))
+    (home-page "https://frippery.org/make/")
+    (synopsis "POSIX make")
+    (description
+     "This package contains an implementation of POSIX make.  The default
+configuration enables extensions.  Generally these extensions are compatible
+with GNU make.")
+    (license license:public-domain)))
-- 
2.39.1





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

* [bug#61827] [PATCH v2] gnu: Add pdpmake.
  2023-02-26 21:07 [bug#61827] [PATCH] gnu: Add pdpmake jlicht
@ 2023-03-09 16:27 ` jlicht
  2023-03-10 11:32 ` [bug#61827] [PATCH v3] " jlicht
  1 sibling, 0 replies; 4+ messages in thread
From: jlicht @ 2023-03-09 16:27 UTC (permalink / raw)
  To: 61827; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/build-tools.scm (pdpmake): New variable.

---

Changes in v2:
- Clarify license of testsuite code (gplv2)

 gnu/packages/build-tools.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 28ab77bbb4..b803a7342e 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -1006,3 +1006,37 @@ (define-public gnulib
    #:version "2022-12-31"
    #:commit "875461ffdf58ac04677957b4ae4160465b83b940"
    #:hash (base32 "0bf7a6wdns9c5wwv60qfcn9llg0j6jz5ryd2qgsqqx2i6xkmp77c")))
+
+(define-public pdpmake
+  (package
+    (name "pdpmake")
+    (version "1.4.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/rmyorston/pdpmake")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0fjx5imd7s0h0yy8h2qc4vkdq7kxqcljnrw6h8n88720xha5z3cb"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:test-target "test"
+           #:parallel-tests? #f
+           #:make-flags #~(list "DESTDIR=\"\""
+                                (string-append "CC="
+                                               #$(cc-for-target))
+                                (string-append "PREFIX="
+                                               #$output))
+           #:phases #~(modify-phases %standard-phases
+                        (delete 'configure))))
+    (home-page "https://frippery.org/make/")
+    (synopsis "POSIX make")
+    (description
+     "This package contains an implementation of POSIX make.  The default
+configuration enables extensions.  Generally these extensions are compatible
+with GNU make.")
+    ;; pdpmake is distributed under the public domain, but the sources include
+    ;; tests under the GPL license version 2.
+    (license (list license:gpl2 license:public-domain)))
-- 
2.39.1





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

* [bug#61827] [PATCH v3] gnu: Add pdpmake.
  2023-02-26 21:07 [bug#61827] [PATCH] gnu: Add pdpmake jlicht
  2023-03-09 16:27 ` [bug#61827] [PATCH v2] " jlicht
@ 2023-03-10 11:32 ` jlicht
  2023-04-03 16:33   ` bug#61827: " Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: jlicht @ 2023-03-10 11:32 UTC (permalink / raw)
  To: 61827; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/build-tools.scm (pdpmake): New variable.

---

Changes in v3:
- PEBKAC mistake with patman.

Changes in v2:
- Clarify license of testsuite code (gplv2)

 gnu/packages/build-tools.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 28ab77bbb4..1348529360 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -1006,3 +1006,37 @@ (define-public gnulib
    #:version "2022-12-31"
    #:commit "875461ffdf58ac04677957b4ae4160465b83b940"
    #:hash (base32 "0bf7a6wdns9c5wwv60qfcn9llg0j6jz5ryd2qgsqqx2i6xkmp77c")))
+
+(define-public pdpmake
+  (package
+    (name "pdpmake")
+    (version "1.4.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/rmyorston/pdpmake")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0fjx5imd7s0h0yy8h2qc4vkdq7kxqcljnrw6h8n88720xha5z3cb"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:test-target "test"
+           #:parallel-tests? #f
+           #:make-flags #~(list "DESTDIR=\"\""
+                                (string-append "CC="
+                                               #$(cc-for-target))
+                                (string-append "PREFIX="
+                                               #$output))
+           #:phases #~(modify-phases %standard-phases
+                        (delete 'configure))))
+    (home-page "https://frippery.org/make/")
+    (synopsis "POSIX make")
+    (description
+     "This package contains an implementation of POSIX make.  The default
+configuration enables extensions.  Generally these extensions are compatible
+with GNU make.")
+    ;; pdpmake is distributed under the public domain, but the sources include
+    ;; tests under the GPL license version 2.
+    (license (list license:gpl2 license:public-domain))))
-- 
2.39.1





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

* bug#61827: [PATCH v3] gnu: Add pdpmake.
  2023-03-10 11:32 ` [bug#61827] [PATCH v3] " jlicht
@ 2023-04-03 16:33   ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2023-04-03 16:33 UTC (permalink / raw)
  To: jlicht; +Cc: 61827-done

Hello,

jlicht@fsfe.org writes:

> * gnu/packages/build-tools.scm (pdpmake): New variable.

Applied (yesterday)! Thank you.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2023-04-03 16:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-26 21:07 [bug#61827] [PATCH] gnu: Add pdpmake jlicht
2023-03-09 16:27 ` [bug#61827] [PATCH v2] " jlicht
2023-03-10 11:32 ` [bug#61827] [PATCH v3] " jlicht
2023-04-03 16:33   ` bug#61827: " Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.