GNU bug report logs - #53528
[PATCH 0/2] Add harmony and dependency.

Previous Next

Package: guix-patches;

Reported by: dannym <at> scratchpost.org

Date: Tue, 25 Jan 2022 18:07:01 UTC

Severity: normal

Tags: patch

Done: Danny Milosavljevic <dannym <at> scratchpost.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 53528 in the body.
You can then email your comments to 53528 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#53528; Package guix-patches. (Tue, 25 Jan 2022 18:07:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to dannym <at> scratchpost.org:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 25 Jan 2022 18:07:01 GMT) Full text and rfc822 format available.

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

From: dannym <at> scratchpost.org
To: guix-patches <at> gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [PATCH 0/2] Add harmony and dependency.
Date: Tue, 25 Jan 2022 19:04:47 +0100
From: Danny Milosavljevic <dannym <at> scratchpost.org>

Danny Milosavljevic (2):
  gnu: Add python-librecaptcha.
  gnu: Add python-harmony.

 gnu/packages/messaging.scm | 45 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

-- 
2.34.0





Information forwarded to guix-patches <at> gnu.org:
bug#53528; Package guix-patches. (Tue, 25 Jan 2022 18:11:02 GMT) Full text and rfc822 format available.

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

From: dannym <at> scratchpost.org
To: 53528 <at> debbugs.gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [PATCH 1/2] gnu: Add python-librecaptcha.
Date: Tue, 25 Jan 2022 19:09:55 +0100
From: Danny Milosavljevic <dannym <at> scratchpost.org>

* gnu/packages/messaging.scm (python-librecaptcha): New variable.
---
 gnu/packages/messaging.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 768642f119..00ce6c69e9 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3263,4 +3263,25 @@ (define-public weechat-wee-slack
 for notification of events.")
     (license license:expat)))
 
+(define-public python-librecaptcha
+  (package
+    (name "python-librecaptcha")
+    (version "0.7.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/taylordotfish/librecaptcha")
+                     (commit version)))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "0r35ws6vdf31j01kpacvpjplddm254r0cgy0npmhgnfxd5kpjf3s"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-pillow python-requests python-esprima python-pygobject gobject-introspection gtk+))
+    (synopsis "Show CAPTCHA without running proprietary code.")
+    (description "This package shows CAPTCHA without running proprietary code.")
+    (home-page "https://github.com/taylordotfish/librecaptcha")
+    (license license:gpl3+)))
+
 ;;; messaging.scm ends here
-- 
2.34.0





Information forwarded to guix-patches <at> gnu.org:
bug#53528; Package guix-patches. (Tue, 25 Jan 2022 18:11:02 GMT) Full text and rfc822 format available.

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

From: dannym <at> scratchpost.org
To: 53528 <at> debbugs.gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [PATCH 2/2] gnu: Add python-harmony.
Date: Tue, 25 Jan 2022 19:09:56 +0100
From: Danny Milosavljevic <dannym <at> scratchpost.org>

* gnu/packages/messaging.scm (python-harmony): New variable.
---
 gnu/packages/messaging.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 00ce6c69e9..c2035cd949 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3284,4 +3284,28 @@ (define-public python-librecaptcha
     (home-page "https://github.com/taylordotfish/librecaptcha")
     (license license:gpl3+)))
 
+(define-public python-harmony
+  (package
+    (name "python-harmony")
+    (version "0.7.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/taylordotfish/harmony.git")
+                     (commit version)))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "1bm9xcnzpnpj6rlhbrnl2abwclzl7ivgh1vb5644y9mnhcs489js"))))
+    (build-system python-build-system)
+    (native-inputs
+     (list python-tox))
+    (inputs
+     (list python-librecaptcha python-keyring python-requests))
+    (synopsis "Discord account management")
+    (description "This package provides account management tools for
+Discord.")
+    (home-page "https://github.com/taylordotfish/harmony")
+    (license license:gpl3+)))
+
 ;;; messaging.scm ends here
-- 
2.34.0





Reply sent to Danny Milosavljevic <dannym <at> scratchpost.org>:
You have taken responsibility. (Fri, 25 Feb 2022 16:13:02 GMT) Full text and rfc822 format available.

Notification sent to dannym <at> scratchpost.org:
bug acknowledged by developer. (Fri, 25 Feb 2022 16:13:02 GMT) Full text and rfc822 format available.

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

From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: 53528-done <at> debbugs.gnu.org
Subject: Re: [PATCH 0/2] Add harmony and dependency.
Date: Fri, 25 Feb 2022 17:11:59 +0100
[Message part 1 (text/plain, inline)]
Pushed python-librecaptcha as commit a751795551b8294bb7e49160a6b5a0720c3ab9b4
and python-harmony as commit ec0404fcc650ddcdd76a41aeee8afb1df72095b4
to master.
[Message part 2 (application/pgp-signature, inline)]

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

This bug report was last modified 3 years and 138 days ago.

Previous Next


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