GNU bug report logs -
#42975
[PATCH] gnu: akku: Add akku.
Previous Next
Reported by: Martin Becze <mjbecze <at> riseup.net>
Date: Fri, 21 Aug 2020 19:25:02 UTC
Severity: normal
Tags: patch
Done: Leo Famulari <leo <at> famulari.name>
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 42975 in the body.
You can then email your comments to 42975 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#42975
; Package
guix-patches
.
(Fri, 21 Aug 2020 19:25:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Martin Becze <mjbecze <at> riseup.net>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 21 Aug 2020 19:25:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/package-management.scm (akku): New variable.
---
gnu/packages/package-management.scm | 50 +++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index d1fe0e2210..f1951c3218 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -15,6 +15,7 @@
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke <at> gnu.org>
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul <at> autistici.org>
;;; Copyright © 2020 Jesse Gibbons <jgibbons2357+guix <at> gmail.com>
+;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1268,3 +1269,52 @@ applications")
(description "Flatpak is a system for building, distributing, and running
sandboxed desktop applications on GNU/Linux.")
(license license:lgpl2.1+)))
+
+(define-public akku
+ (package
+ (name "akku")
+ (version "1.0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/akkuscm/akku.git")
+ (commit (string-append "v" version))))
+ (sha256 (base32 "1dm32ws3nshnnscd7k75zswxxs1pp25y2q4k8j5ms241hz47by3c"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (replace 'bootstrap
+ (lambda* (#:key outputs #:allow-other-keys)
+ (for-each patch-shebang
+ '("bootstrap"
+ ".akku/env"))
+ (let* ((home "/tmp")
+ (datadir (string-append home "/.local/share/akku/")))
+ (mkdir-p datadir)
+ (invoke "touch" (string-append datadir "index.db"))
+ (setenv "HOME" home))
+ (invoke "./bootstrap")
+ #t))
+ (add-after 'install 'wrap-executables
+ (lambda* (#:key outputs inputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (curl (assoc-ref inputs "curl")))
+ (wrap-program (string-append out "/bin/akku")
+ `("LD_LIBRARY_PATH" ":" prefix (,(string-append curl "/lib"))))
+ #t))))))
+ (native-inputs
+ `(("which" ,which)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("guile" ,guile-2.2)
+ ("curl" ,curl)))
+ (home-page "https://akkuscm.org/")
+ (synopsis "Akku.scm is a language package manager for Scheme")
+ (description
+ "Akku.scm is a project-based language package manager for R6RS and R7RS Scheme.
+It is mainly meant for programmers who develop portable programs or libraries in Scheme,
+but could potentially work for end-users of those programs. It also has a translator
+from R7RS, which allows most R7RS code to run on R6RS implementations.")
+ (license license:gpl3)))
--
2.28.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42975
; Package
guix-patches
.
(Sun, 23 Aug 2020 09:18:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 42975 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/package-management.scm (akku): New variable.
---
gnu/packages/package-management.scm | 50 +++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index d1fe0e2210..f1951c3218 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -15,6 +15,7 @@
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke <at> gnu.org>
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul <at> autistici.org>
;;; Copyright © 2020 Jesse Gibbons <jgibbons2357+guix <at> gmail.com>
+;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1268,3 +1269,52 @@ applications")
(description "Flatpak is a system for building, distributing, and running
sandboxed desktop applications on GNU/Linux.")
(license license:lgpl2.1+)))
+
+(define-public akku
+ (package
+ (name "akku")
+ (version "1.0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/akkuscm/akku.git")
+ (commit (string-append "v" version))))
+ (sha256 (base32 "1dm32ws3nshnnscd7k75zswxxs1pp25y2q4k8j5ms241hz47by3c"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (replace 'bootstrap
+ (lambda* (#:key outputs #:allow-other-keys)
+ (for-each patch-shebang
+ '("bootstrap"
+ ".akku/env"))
+ (let* ((home "/tmp")
+ (datadir (string-append home "/.local/share/akku/")))
+ (mkdir-p datadir)
+ (invoke "touch" (string-append datadir "index.db"))
+ (setenv "HOME" home))
+ (invoke "./bootstrap")
+ #t))
+ (add-after 'install 'wrap-executables
+ (lambda* (#:key outputs inputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (curl (assoc-ref inputs "curl")))
+ (wrap-program (string-append out "/bin/akku")
+ `("LD_LIBRARY_PATH" ":" prefix (,(string-append curl "/lib"))))
+ #t))))))
+ (native-inputs
+ `(("which" ,which)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("guile" ,guile-2.2)
+ ("curl" ,curl)))
+ (home-page "https://akkuscm.org/")
+ (synopsis "Akku.scm is a language package manager for Scheme")
+ (description
+ "Akku.scm is a project-based language package manager for R6RS and R7RS Scheme.
+It is mainly meant for programmers who develop portable programs or libraries in Scheme,
+but could potentially work for end-users of those programs. It also has a translator
+from R7RS, which allows most R7RS code to run on R6RS implementations.")
+ (license license:gpl3)))
--
2.28.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42975
; Package
guix-patches
.
(Sun, 23 Aug 2020 09:20:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 42975 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
The above fixes some lint errors
On 8/23/20 4:17 AM, Martin Becze wrote:
> * gnu/packages/package-management.scm (akku): New variable.
> ---
> gnu/packages/package-management.scm | 50 +++++++++++++++++++++++++++++
> 1 file changed, 50 insertions(+)
>
> diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
> index d1fe0e2210..f1951c3218 100644
> --- a/gnu/packages/package-management.scm
> +++ b/gnu/packages/package-management.scm
> @@ -15,6 +15,7 @@
> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke <at> gnu.org>
> ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul <at> autistici.org>
> ;;; Copyright © 2020 Jesse Gibbons <jgibbons2357+guix <at> gmail.com>
> +;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -1268,3 +1269,52 @@ applications")
> (description "Flatpak is a system for building, distributing, and running
> sandboxed desktop applications on GNU/Linux.")
> (license license:lgpl2.1+)))
> +
> +(define-public akku
> + (package
> + (name "akku")
> + (version "1.0.1")
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://gitlab.com/akkuscm/akku.git")
> + (commit (string-append "v" version))))
> + (sha256 (base32 "1dm32ws3nshnnscd7k75zswxxs1pp25y2q4k8j5ms241hz47by3c"))))
> + (build-system gnu-build-system)
> + (arguments
> + '(#:phases (modify-phases %standard-phases
> + (replace 'bootstrap
> + (lambda* (#:key outputs #:allow-other-keys)
> + (for-each patch-shebang
> + '("bootstrap"
> + ".akku/env"))
> + (let* ((home "/tmp")
> + (datadir (string-append home "/.local/share/akku/")))
> + (mkdir-p datadir)
> + (invoke "touch" (string-append datadir "index.db"))
> + (setenv "HOME" home))
> + (invoke "./bootstrap")
> + #t))
> + (add-after 'install 'wrap-executables
> + (lambda* (#:key outputs inputs #:allow-other-keys)
> + (let ((out (assoc-ref outputs "out"))
> + (curl (assoc-ref inputs "curl")))
> + (wrap-program (string-append out "/bin/akku")
> + `("LD_LIBRARY_PATH" ":" prefix (,(string-append curl "/lib"))))
> + #t))))))
> + (native-inputs
> + `(("which" ,which)
> + ("autoconf" ,autoconf)
> + ("automake" ,automake)
> + ("pkg-config" ,pkg-config)))
> + (inputs
> + `(("guile" ,guile-2.2)
> + ("curl" ,curl)))
> + (home-page "https://akkuscm.org/")
> + (synopsis "Akku.scm is a language package manager for Scheme")
> + (description
> + "Akku.scm is a project-based language package manager for R6RS and R7RS Scheme.
> +It is mainly meant for programmers who develop portable programs or libraries in Scheme,
> +but could potentially work for end-users of those programs. It also has a translator
> +from R7RS, which allows most R7RS code to run on R6RS implementations.")
> + (license license:gpl3)))
>
[signature.asc (application/pgp-signature, attachment)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42975
; Package
guix-patches
.
(Sun, 23 Aug 2020 18:23:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 42975 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/package-management.scm (akku): New variable.
---
gnu/packages/package-management.scm | 51 +++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index d1fe0e2210..eb5877d167 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -15,6 +15,7 @@
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke <at> gnu.org>
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul <at> autistici.org>
;;; Copyright © 2020 Jesse Gibbons <jgibbons2357+guix <at> gmail.com>
+;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1268,3 +1269,53 @@ applications")
(description "Flatpak is a system for building, distributing, and running
sandboxed desktop applications on GNU/Linux.")
(license license:lgpl2.1+)))
+
+(define-public akku
+ (package
+ (name "akku")
+ (version "1.0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/akkuscm/akku.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256 (base32 "1dm32ws3nshnnscd7k75zswxxs1pp25y2q4k8j5ms241hz47by3c"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (replace 'bootstrap
+ (lambda* (#:key outputs #:allow-other-keys)
+ (for-each patch-shebang
+ '("bootstrap"
+ ".akku/env"))
+ (let* ((home "/tmp")
+ (datadir (string-append home "/.local/share/akku/")))
+ (mkdir-p datadir)
+ (invoke "touch" (string-append datadir "index.db"))
+ (setenv "HOME" home))
+ (invoke "./bootstrap")
+ #t))
+ (add-after 'install 'wrap-executables
+ (lambda* (#:key outputs inputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (curl (assoc-ref inputs "curl")))
+ (wrap-program (string-append out "/bin/akku")
+ `("LD_LIBRARY_PATH" ":" prefix (,(string-append curl "/lib"))))
+ #t))))))
+ (native-inputs
+ `(("which" ,which)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("guile" ,guile-3.0)
+ ("curl" ,curl)))
+ (home-page "https://akkuscm.org/")
+ (synopsis "A language package manager for Scheme")
+ (description
+ "Akku.scm is a project-based language package manager for R6RS and R7RS Scheme.
+It is mainly meant for programmers who develop portable programs or libraries in Scheme,
+but could potentially work for end-users of those programs. It also has a translator
+from R7RS, which allows most R7RS code to run on R6RS implementations.")
+ (license license:gpl3)))
--
2.28.0
Reply sent
to
Leo Famulari <leo <at> famulari.name>
:
You have taken responsibility.
(Sun, 23 Aug 2020 21:19:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Martin Becze <mjbecze <at> riseup.net>
:
bug acknowledged by developer.
(Sun, 23 Aug 2020 21:19:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 42975-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Sun, Aug 23, 2020 at 01:21:18PM -0500, Martin Becze wrote:
> * gnu/packages/package-management.scm (akku): New variable.
Thank you!
I pushed as e343816dcb11f0150fa3b14589142c418dfbb0d8 with the following
changes:
> + (synopsis "A language package manager for Scheme")
To satisfy the linter's complaint "no article allowed at the beginning
of the synopsis", I removed the first word of the synopsis.
The common English articles are the words A, An, and The. We consider
them unecessary in this context.
> + (license license:gpl3)))
I changed this to gpl3+.
I made that decision based on the COPYING file, and the license headers
of the files in the bin and lib directories, which consistently include
the text "(at your option) any later version".
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 21 Sep 2020 11:24:03 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 274 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.