GNU bug report logs - #35976
[PATCH 44/47] gnu: Add python-persist-queue.

Previous Next

Package: guix-patches;

Reported by: "h.nasajpour" <h.nasajpour <at> pantherx.org>

Date: Wed, 29 May 2019 00:37:02 UTC

Severity: normal

Tags: moreinfo, patch

Done: Simon Tournier <zimon.toutoune <at> gmail.com>

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 35976 in the body.
You can then email your comments to 35976 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#35976; Package guix-patches. (Wed, 29 May 2019 00:37:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "h.nasajpour" <h.nasajpour <at> pantherx.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 29 May 2019 00:37:03 GMT) Full text and rfc822 format available.

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

From: "h.nasajpour" <h.nasajpour <at> pantherx.org>
To: guix-patches <at> gnu.org
Cc: "h.nasajpour" <h.nasajpour <at> pantherx.org>
Subject: [PATCH 44/47] gnu: Add python-persist-queue.
Date: Wed, 29 May 2019 05:06:07 +0430
* gnu/packages/python-xyz.scm (python-persist-queue): New variable
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 298a59f59f..e47e5bbcd2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15537,3 +15537,21 @@ by Igor Pavlov.")
 	 gradual typing, generics and union types.")
     (license license:expat)))
 
+
+(define-public python-persist-queue
+  (package
+  (name "python-persist-queue")
+    (version "0.4.2")
+    (source (origin
+      (method url-fetch)
+      (uri (pypi-uri "persist-queue" version))
+      (sha256 (base32 "0xhvj26jkc4fk0yjzn47is6wh8figyp5cralj8d56r4bidn78wp2"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f))
+    (home-page "https://github.com/peter-wangxu/persist-queue")
+    (synopsis "A thread-safe disk based persistent queue in Python.")
+    (description
+     "persist-queue implements a file-based queue and a serial of sqlite3-based queues")
+    (license license:bsd-2)))
+
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#35976; Package guix-patches. (Tue, 10 Dec 2019 06:45:02 GMT) Full text and rfc822 format available.

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

From: Brett Gilio <brettg <at> posteo.net>
To: "h.nasajpour" <h.nasajpour <at> pantherx.org>
Cc: 35976 <at> debbugs.gnu.org
Subject: Re: [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue.
Date: Tue, 10 Dec 2019 00:43:48 -0600
"h.nasajpour" <h.nasajpour <at> pantherx.org> writes:

> * gnu/packages/python-xyz.scm (python-persist-queue): New variable
> ---
>  gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index 298a59f59f..e47e5bbcd2 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -15537,3 +15537,21 @@ by Igor Pavlov.")
>  	 gradual typing, generics and union types.")
>      (license license:expat)))
>  
> +
> +(define-public python-persist-queue
> +  (package
> +  (name "python-persist-queue")
> +    (version "0.4.2")
> +    (source (origin
> +      (method url-fetch)
> +      (uri (pypi-uri "persist-queue" version))
> +      (sha256 (base32 "0xhvj26jkc4fk0yjzn47is6wh8figyp5cralj8d56r4bidn78wp2"))))
> +    (build-system python-build-system)
> +    (arguments
> +     `(#:tests? #f))
> +    (home-page "https://github.com/peter-wangxu/persist-queue")
> +    (synopsis "A thread-safe disk based persistent queue in Python.")
> +    (description
> +     "persist-queue implements a file-based queue and a serial of sqlite3-based queues")
> +    (license license:bsd-2)))
> +

Hi,

This package needs the same treatment as some of the other packages I
have mentioned from your series. If you could do those things we can get
it pushed to master! Thanks.

-- 
Brett M. Gilio
Homepage -- https://scm.pw/
GNU Guix -- https://guix.gnu.org/




Added tag(s) moreinfo. Request was from Maxim Cournoyer <maxim.cournoyer <at> gmail.com> to control <at> debbugs.gnu.org. (Sat, 08 Oct 2022 04:41:01 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#35976; Package guix-patches. (Sat, 08 Oct 2022 04:42:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Brett Gilio <brettg <at> posteo.net>
Cc: "h.nasajpour" <h.nasajpour <at> pantherx.org>, 35976 <at> debbugs.gnu.org
Subject: Re: bug#35976: [PATCH 44/47] gnu: Add python-persist-queue.
Date: Sat, 08 Oct 2022 00:41:09 -0400
Hi,

Brett Gilio <brettg <at> posteo.net> writes:

> "h.nasajpour" <h.nasajpour <at> pantherx.org> writes:
>
>> * gnu/packages/python-xyz.scm (python-persist-queue): New variable
>> ---
>>  gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
>>  1 file changed, 18 insertions(+)
>>
>> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
>> index 298a59f59f..e47e5bbcd2 100644
>> --- a/gnu/packages/python-xyz.scm
>> +++ b/gnu/packages/python-xyz.scm
>> @@ -15537,3 +15537,21 @@ by Igor Pavlov.")
>>  	 gradual typing, generics and union types.")
>>      (license license:expat)))
>>  
>> +
>> +(define-public python-persist-queue
>> +  (package
>> +  (name "python-persist-queue")
>> +    (version "0.4.2")
>> +    (source (origin
>> +      (method url-fetch)
>> +      (uri (pypi-uri "persist-queue" version))
>> +      (sha256 (base32 "0xhvj26jkc4fk0yjzn47is6wh8figyp5cralj8d56r4bidn78wp2"))))
>> +    (build-system python-build-system)
>> +    (arguments
>> +     `(#:tests? #f))
>> +    (home-page "https://github.com/peter-wangxu/persist-queue")
>> +    (synopsis "A thread-safe disk based persistent queue in Python.")
>> +    (description
>> +     "persist-queue implements a file-based queue and a serial of sqlite3-based queues")
>> +    (license license:bsd-2)))
>> +
>
> Hi,
>
> This package needs the same treatment as some of the other packages I
> have mentioned from your series. If you could do those things we can get
> it pushed to master! Thanks.

It's been nearly 3 years :-)  Are these package Python still useful, or
should we close the tickets awaiting feedback?

-- 
Thanks,
Maxim




Information forwarded to guix-patches <at> gnu.org:
bug#35976; Package guix-patches. (Thu, 03 Nov 2022 10:05:02 GMT) Full text and rfc822 format available.

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

From: zimoun <zimon.toutoune <at> gmail.com>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Cc: "h.nasajpour" <h.nasajpour <at> pantherx.org>, Brett Gilio <brettg <at> posteo.net>,
 35976 <at> debbugs.gnu.org
Subject: Re: bug#35976: [PATCH 44/47] gnu: Add python-persist-queue.
Date: Thu, 03 Nov 2022 10:45:54 +0100
Hi,

It is about this old bug#35976 [1].

1: <http://issues.guix.gnu.org/issue/35976>


On Sat, 08 Oct 2022 at 00:41, Maxim Cournoyer <maxim.cournoyer <at> gmail.com> wrote:

> It's been nearly 3 years :-)  Are these package Python still useful, or
> should we close the tickets awaiting feedback?

Without more feedback, I will close it soon.


Cheers,
simon




Reply sent to Simon Tournier <zimon.toutoune <at> gmail.com>:
You have taken responsibility. (Tue, 17 Oct 2023 07:47:04 GMT) Full text and rfc822 format available.

Notification sent to "h.nasajpour" <h.nasajpour <at> pantherx.org>:
bug acknowledged by developer. (Tue, 17 Oct 2023 07:47:05 GMT) Full text and rfc822 format available.

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

From: Simon Tournier <zimon.toutoune <at> gmail.com>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Cc: "h.nasajpour" <h.nasajpour <at> pantherx.org>, 35976-done <at> debbugs.gnu.org,
 Brett Gilio <brettg <at> posteo.net>
Subject: Re: bug#35976: [PATCH 44/47] gnu: Add python-persist-queue.
Date: Tue, 17 Oct 2023 00:49:53 +0200
Hi,

On Thu, 03 Nov 2022 at 10:45, zimoun <zimon.toutoune <at> gmail.com> wrote:

> It is about this old bug#35976 [1].
>
> 1: <http://issues.guix.gnu.org/issue/35976>
>
>
> On Sat, 08 Oct 2022 at 00:41, Maxim Cournoyer <maxim.cournoyer <at> gmail.com> wrote:
>
>> It's been nearly 3 years :-)  Are these package Python still useful, or
>> should we close the tickets awaiting feedback?
>
> Without more feedback, I will close it soon.

Well, soon is 49 weeks and 4 days later. :-)

Closing.  Feel free to reopen if I am missing something.

Cheers,
simon




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 14 Nov 2023 12:24:11 GMT) Full text and rfc822 format available.

This bug report was last modified 163 days ago.

Previous Next


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