unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue.
@ 2019-05-29  0:36 h.nasajpour
  2019-12-10  6:43 ` Brett Gilio
  0 siblings, 1 reply; 5+ messages in thread
From: h.nasajpour @ 2019-05-29  0:36 UTC (permalink / raw)
  To: 35976; +Cc: h.nasajpour

* 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

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

* [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue.
  2019-05-29  0:36 [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue h.nasajpour
@ 2019-12-10  6:43 ` Brett Gilio
  2022-10-08  4:41   ` Maxim Cournoyer
  0 siblings, 1 reply; 5+ messages in thread
From: Brett Gilio @ 2019-12-10  6:43 UTC (permalink / raw)
  To: h.nasajpour; +Cc: 35976

"h.nasajpour" <h.nasajpour@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/

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

* [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue.
  2019-12-10  6:43 ` Brett Gilio
@ 2022-10-08  4:41   ` Maxim Cournoyer
  2022-11-03  9:45     ` zimoun
  0 siblings, 1 reply; 5+ messages in thread
From: Maxim Cournoyer @ 2022-10-08  4:41 UTC (permalink / raw)
  To: Brett Gilio; +Cc: h.nasajpour, 35976

Hi,

Brett Gilio <brettg@posteo.net> writes:

> "h.nasajpour" <h.nasajpour@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




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

* [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue.
  2022-10-08  4:41   ` Maxim Cournoyer
@ 2022-11-03  9:45     ` zimoun
  2023-10-16 22:49       ` bug#35976: " Simon Tournier
  0 siblings, 1 reply; 5+ messages in thread
From: zimoun @ 2022-11-03  9:45 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: h.nasajpour, Brett Gilio, 35976

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@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




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

* bug#35976: [PATCH 44/47] gnu: Add python-persist-queue.
  2022-11-03  9:45     ` zimoun
@ 2023-10-16 22:49       ` Simon Tournier
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Tournier @ 2023-10-16 22:49 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: h.nasajpour, 35976-done, Brett Gilio

Hi,

On Thu, 03 Nov 2022 at 10:45, zimoun <zimon.toutoune@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@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




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

end of thread, other threads:[~2023-10-17  8:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-29  0:36 [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue h.nasajpour
2019-12-10  6:43 ` Brett Gilio
2022-10-08  4:41   ` Maxim Cournoyer
2022-11-03  9:45     ` zimoun
2023-10-16 22:49       ` bug#35976: " Simon Tournier

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).