GNU bug report logs - #49142
[PATCH 0/1] Add pcl (Guix packaging meetup)

Previous Next

Package: guix-patches;

Reported by: David Dashyan <mail <at> davie.li>

Date: Sun, 20 Jun 2021 17:46:01 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

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 49142 in the body.
You can then email your comments to 49142 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#49142; Package guix-patches. (Sun, 20 Jun 2021 17:46:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to David Dashyan <mail <at> davie.li>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 20 Jun 2021 17:46:01 GMT) Full text and rfc822 format available.

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

From: David Dashyan <mail <at> davie.li>
To: guix-patches <at> gnu.org
Cc: David Dashyan <mail <at> davie.li>, packaging-guix <at> libremiami.org
Subject: [PATCH 0/1] Add pcl (Guix packaging meetup)
Date: Sun, 20 Jun 2021 20:44:17 +0300
As part of crystal lang bootstrapping effort I packaged one of dependencies:
Portable Coroutine Library (PCL) during last LibreMiami guix packaging meetup.

This was literally the easiet package of this kind I ever did :)

My little patch below. Not sure wheter I chose a good place for the package.

David Dashyan (1):
  gnu: Add pcl.

 gnu/packages/c.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)


base-commit: 6086e6ed1a038793e358becddded50d97593f691
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#49142; Package guix-patches. (Sun, 20 Jun 2021 17:51:02 GMT) Full text and rfc822 format available.

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

From: David Dashyan <mail <at> davie.li>
To: 49142 <at> debbugs.gnu.org
Cc: David Dashyan <mail <at> davie.li>, packaging-guix <at> libremiami.org
Subject: [PATCH 1/1] gnu: Add pcl.
Date: Sun, 20 Jun 2021 20:50:22 +0300
* gnu/packages/c.scm (pcl): New variable.
---
 gnu/packages/c.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 931eb2bf3f..a17bf22f04 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2020, 2021 Greg Hogan <code <at> greghogan.com>
+;;; Copyright © 2021 David Dashyan <mail <at> davie.li>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -693,3 +694,22 @@ event-driven, asynchronous network application protocols.")
 cryptographic primitives for the @acronym{AWS,Amazon Web Services} SDK.")
     (home-page "https://github.com/awslabs/aws-c-cal")
     (license license:asl2.0)))
+
+(define-public pcl
+  (package
+    (name "pcl")
+    (version "1.12")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://www.xmailserver.org/pcl-" version ".tar.gz"))
+       (sha256
+	(base32
+         "06ly65rq4iyj2p4704i215c8y4rgspwl8sxfaifmf4ahfr30bcz7"))))
+    (build-system gnu-build-system)
+    (home-page "http://www.xmailserver.org/libpcl.html")
+    (synopsis "Portable Coroutine Library")
+    (description "The Portable Coroutine Library (PCL) implements the
+low level functionality for coroutines.")
+    (license license:gpl2+)))
-- 
2.31.1





Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Tue, 29 Jun 2021 07:18:02 GMT) Full text and rfc822 format available.

Notification sent to David Dashyan <mail <at> davie.li>:
bug acknowledged by developer. (Tue, 29 Jun 2021 07:18:02 GMT) Full text and rfc822 format available.

Message #13 received at 49142-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: David Dashyan <mail <at> davie.li>
Cc: 49142-done <at> debbugs.gnu.org, packaging-guix <at> libremiami.org
Subject: Re: [bug#49142] [PATCH 1/1] gnu: Add pcl.
Date: Tue, 29 Jun 2021 10:16:15 +0300
[Message part 1 (text/plain, inline)]
Looks good. I made one change before pushing it.

On Sun, Jun 20, 2021 at 08:50:22PM +0300, David Dashyan wrote:
> * gnu/packages/c.scm (pcl): New variable.
> ---
>  gnu/packages/c.scm | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
> index 931eb2bf3f..a17bf22f04 100644
> --- a/gnu/packages/c.scm
> +++ b/gnu/packages/c.scm
> @@ -11,6 +11,7 @@
>  ;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
>  ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
>  ;;; Copyright © 2020, 2021 Greg Hogan <code <at> greghogan.com>
> +;;; Copyright © 2021 David Dashyan <mail <at> davie.li>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -693,3 +694,22 @@ event-driven, asynchronous network application protocols.")
>  cryptographic primitives for the @acronym{AWS,Amazon Web Services} SDK.")
>      (home-page "https://github.com/awslabs/aws-c-cal")
>      (license license:asl2.0)))
> +
> +(define-public pcl
> +  (package
> +    (name "pcl")
> +    (version "1.12")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "http://www.xmailserver.org/pcl-" version ".tar.gz"))
> +       (sha256
> +	(base32
> +         "06ly65rq4iyj2p4704i215c8y4rgspwl8sxfaifmf4ahfr30bcz7"))))
> +    (build-system gnu-build-system)
> +    (home-page "http://www.xmailserver.org/libpcl.html")
> +    (synopsis "Portable Coroutine Library")
> +    (description "The Portable Coroutine Library (PCL) implements the

@acronym{PCL, Portable Coroutine Library}

> +low level functionality for coroutines.")
> +    (license license:gpl2+)))
> -- 
> 2.31.1
> 
> 
> 
> 

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[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. (Tue, 27 Jul 2021 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 267 days ago.

Previous Next


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