* [bug#53528] [PATCH 0/2] Add harmony and dependency.
@ 2022-01-25 18:04 dannym
2022-01-25 18:09 ` [bug#53528] [PATCH 1/2] gnu: Add python-librecaptcha dannym
2022-02-25 16:11 ` bug#53528: [PATCH 0/2] Add harmony and dependency Danny Milosavljevic
0 siblings, 2 replies; 4+ messages in thread
From: dannym @ 2022-01-25 18:04 UTC (permalink / raw)
To: 53528; +Cc: Danny Milosavljevic
From: Danny Milosavljevic <dannym@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
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#53528] [PATCH 1/2] gnu: Add python-librecaptcha.
2022-01-25 18:04 [bug#53528] [PATCH 0/2] Add harmony and dependency dannym
@ 2022-01-25 18:09 ` dannym
2022-01-25 18:09 ` [bug#53528] [PATCH 2/2] gnu: Add python-harmony dannym
2022-02-25 16:11 ` bug#53528: [PATCH 0/2] Add harmony and dependency Danny Milosavljevic
1 sibling, 1 reply; 4+ messages in thread
From: dannym @ 2022-01-25 18:09 UTC (permalink / raw)
To: 53528; +Cc: Danny Milosavljevic
From: Danny Milosavljevic <dannym@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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#53528] [PATCH 2/2] gnu: Add python-harmony.
2022-01-25 18:09 ` [bug#53528] [PATCH 1/2] gnu: Add python-librecaptcha dannym
@ 2022-01-25 18:09 ` dannym
0 siblings, 0 replies; 4+ messages in thread
From: dannym @ 2022-01-25 18:09 UTC (permalink / raw)
To: 53528; +Cc: Danny Milosavljevic
From: Danny Milosavljevic <dannym@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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#53528: [PATCH 0/2] Add harmony and dependency.
2022-01-25 18:04 [bug#53528] [PATCH 0/2] Add harmony and dependency dannym
2022-01-25 18:09 ` [bug#53528] [PATCH 1/2] gnu: Add python-librecaptcha dannym
@ 2022-02-25 16:11 ` Danny Milosavljevic
1 sibling, 0 replies; 4+ messages in thread
From: Danny Milosavljevic @ 2022-02-25 16:11 UTC (permalink / raw)
To: 53528-done
[-- Attachment #1: Type: text/plain, Size: 162 bytes --]
Pushed python-librecaptcha as commit a751795551b8294bb7e49160a6b5a0720c3ab9b4
and python-harmony as commit ec0404fcc650ddcdd76a41aeee8afb1df72095b4
to master.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-02-25 16:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-25 18:04 [bug#53528] [PATCH 0/2] Add harmony and dependency dannym
2022-01-25 18:09 ` [bug#53528] [PATCH 1/2] gnu: Add python-librecaptcha dannym
2022-01-25 18:09 ` [bug#53528] [PATCH 2/2] gnu: Add python-harmony dannym
2022-02-25 16:11 ` bug#53528: [PATCH 0/2] Add harmony and dependency Danny Milosavljevic
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.