GNU bug report logs - #69022
[PATCH 1/5] gnu: bqn: Add singeli.

Previous Next

Package: guix-patches;

Reported by: aecepoglu <aecepoglu <at> fastmail.fm>

Date: Sat, 10 Feb 2024 23:00:02 UTC

Severity: normal

Tags: patch

Done: Dale Mellor <guix-devel-0brg6a <at> rdmp.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 69022 in the body.
You can then email your comments to 69022 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#69022; Package guix-patches. (Sat, 10 Feb 2024 23:00:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to aecepoglu <aecepoglu <at> fastmail.fm>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 10 Feb 2024 23:00:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: aecepoglu <aecepoglu <at> fastmail.fm>
To: guix-patches <at> gnu.org
Cc: aecepoglu <aecepoglu <at> fastmail.fm>
Subject: [PATCH 1/5] gnu: bqn: Add singeli.
Date: Sat, 10 Feb 2024 23:01:42 +0000
Newer versions of BQN use Singeli

* gnu/packages/bqn.scm: Add singeli

Change-Id: I5a2ce84a2b96cdad0617af46978f44ef1a86047f
---
 gnu/packages/bqn.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
index 4d03385d21..acac2d45cc 100644
--- a/gnu/packages/bqn.scm
+++ b/gnu/packages/bqn.scm
@@ -34,6 +34,32 @@ (define-module (gnu packages bqn)
   #:use-module (gnu packages java)
   #:use-module (gnu packages compression))
 
+(define-public singeli
+  (let ((commit "5f9cbd46c265491ff167a5d9377d1462539dbdd8")
+        (revision "1"))
+    (package
+      (name "singeli")
+      (version (git-version "0.1.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/mlochbaum/Singeli.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "13mfxkb29n4phpqxiwfcd43mcg8773n03nml8d9rhbdb6s5jrixb"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("." "lib"))))
+      (synopsis "Language to generate performant C codes with")
+      (description
+       "Singeli is a domain-specific language for building high-performance
+algorithms with abstractions over code that corresponds to individual instructions.
+It's implemented in BQN, with a frontend that emits IR and a backend that converts it to C.")
+      (home-page "https://github.com/mlochbaum/Singeli")
+      (license license:isc))))
+
 (define-public dbqn
   (let ((commit "88f2b43966a75cc2c382421218eb30003bb16f4a")
         (revision "1"))

base-commit: b64862e5cb8209c92aa2eff4cec0be328e38c45d
-- 
2.43.0





Information forwarded to guix-patches <at> gnu.org:
bug#69022; Package guix-patches. (Fri, 03 May 2024 21:23:01 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Dale Mellor <guix-devel-0brg6a <at> rdmp.org>
To: aecepoglu <aecepoglu <at> fastmail.fm>, guix-patches <at> gnu.org, 
 69022 <at> debbugs.gnu.org
Subject: Re: [PATCH 1/5] gnu: bqn: Add singeli.
Date: Fri, 03 May 2024 22:22:05 +0100
On Sat, 2024-02-10 at 23:01 +0000, aecepoglu wrote:

> Subject: [PATCH 1/5] gnu: bqn: Add singeli.

  If there is only one part to this patch, the "1/5" bit should not be there. 
If there are other parts you need to send them to 69022 <at> debbugs.gnu.org.

> Newer versions of BQN use Singeli
> 
> * gnu/packages/bqn.scm: Add singeli

    Phrase this as: * gnu/packages/bqn.scm: new variable singeli

> 
> Change-Id: I5a2ce84a2b96cdad0617af46978f44ef1a86047f
> ---
>  gnu/packages/bqn.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
> index 4d03385d21..acac2d45cc 100644
> --- a/gnu/packages/bqn.scm
> +++ b/gnu/packages/bqn.scm
> @@ -34,6 +34,32 @@ (define-module (gnu packages bqn)
>    #:use-module (gnu packages java)
>    #:use-module (gnu packages compression))
>  
> +(define-public singeli
> +  (let ((commit "5f9cbd46c265491ff167a5d9377d1462539dbdd8")

   A few more commits have been made since this one and the date of this patch,
and a couple more have been made since then.  Probably it would be good if you
brought this patch up to date.

   If you have any influence over this, it would be better if upstream made a
versioned release, tagged the repository with the release number, and you use
the tag as the commit to pull.  That would give us a bit more confidence that
this GIT snapshot is appropriate, especially since the project is in a very
early stage of development.

> +        (revision "1"))
> +    (package
> +      (name "singeli")
> +      (version (git-version "0.1.1" revision commit))

   Where does this version number come from?  If it is in the upstream (I
couldn't find it on cursory inspection of the repository), it would be good if
the repository could be tagged with this.

> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/mlochbaum/Singeli.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32 "13mfxkb29n4phpqxiwfcd43mcg8773n03nml8d9rhbdb6s5jrixb"))))
> +      (build-system copy-build-system)
> +      (arguments
> +       '(#:install-plan '(("." "lib"))))
> +      (synopsis "Language to generate performant C codes with")

   This is an incomplete sentence.  I might suggest "Compiler for a domain-
specific language called Singeli."

> +      (description
> +       "Singeli is a domain-specific language for building high-performance
> +algorithms with abstractions over code that corresponds to individual
> instructions.
> +It's implemented in BQN, with a frontend that emits IR and a backend that
> converts it to C.")
> +      (home-page "https://github.com/mlochbaum/Singeli")
> +      (license license:isc))))
> +
>  (define-public dbqn
>    (let ((commit "88f2b43966a75cc2c382421218eb30003bb16f4a")
>          (revision "1"))
> 
> base-commit: b64862e5cb8209c92aa2eff4cec0be328e38c45d

Best wishes,
Dale





Information forwarded to guix-patches <at> gnu.org:
bug#69022; Package guix-patches. (Fri, 03 May 2024 21:23:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#69022; Package guix-patches. (Fri, 03 May 2024 21:33:02 GMT) Full text and rfc822 format available.

Message #14 received at 69022 <at> debbugs.gnu.org (full text, mbox):

From: Dale Mellor <guix-devel-0brg6a <at> rdmp.org>
To: 69022 <at> debbugs.gnu.org
Subject: This issue has been superceded, closing.
Date: Fri, 03 May 2024 22:31:37 +0100
Superceded by 69023.





bug closed, send any further explanations to 69022 <at> debbugs.gnu.org and aecepoglu <aecepoglu <at> fastmail.fm> Request was from Dale Mellor <guix-devel-0brg6a <at> rdmp.org> to control <at> debbugs.gnu.org. (Fri, 03 May 2024 21:33:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 01 Jun 2024 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 74 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.