GNU bug report logs - #52997
[PATCH] gnu: Add python-facebook-sdk.

Previous Next

Package: guix-patches;

Reported by: Giacomo Leidi <goodoldpaul <at> autistici.org>

Date: Tue, 4 Jan 2022 00:31:01 UTC

Severity: normal

Tags: patch

Done: paul <goodoldpaul <at> autistici.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 52997 in the body.
You can then email your comments to 52997 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#52997; Package guix-patches. (Tue, 04 Jan 2022 00:31:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Giacomo Leidi <goodoldpaul <at> autistici.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 04 Jan 2022 00:31:02 GMT) Full text and rfc822 format available.

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

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: guix-patches <at> gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [PATCH] gnu: Add python-facebook-sdk.
Date: Tue,  4 Jan 2022 01:30:03 +0100
* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index bc7e21ca85..90193590dd 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6264,3 +6264,32 @@ (define-public python-mwparserfromhell
 Full documentation may be found at
 @uref{https://mwparserfromhell.readthedocs.io, ReadTheDocs}")
     (license license:expat)))
+
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))

base-commit: 0c5a58e34d894b95d94c61aae0525a01fa18ecd2
-- 
2.34.0





Information forwarded to guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Mon, 24 Jan 2022 17:23:02 GMT) Full text and rfc822 format available.

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

From: paul <goodoldpaul <at> autistici.org>
To: 52997 <52997 <at> debbugs.gnu.org>
Date: Mon, 24 Jan 2022 18:22:02 +0100
[Message part 1 (text/plain, inline)]
This is a friendly ping :)

Thank you for your time and efforts

[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Sat, 05 Mar 2022 23:28:01 GMT) Full text and rfc822 format available.

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

From: paul <goodoldpaul <at> autistici.org>
To: 52997 <at> debbugs.gnu.org
Subject: friendly ping
Date: Sun, 6 Mar 2022 00:27:56 +0100
Dear all,

this is just a ping, thank you for your time and efforts . I'm attaching 
an updated patchset.

paul





Information forwarded to guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Sat, 05 Mar 2022 23:29:02 GMT) Full text and rfc822 format available.

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

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: 52997 <at> debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [PATCH] gnu: Add python-facebook-sdk.
Date: Sun,  6 Mar 2022 00:28:08 +0100
* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 240c58b665..e787c20d7e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6390,3 +6390,32 @@ (define-public python-tweepy
     (description "This package provides @code{Tweepy}, an easy-to-use Python
 library for accessing the Twitter API.")
     (license license:expat)))
+
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))

base-commit: 0c6bf910efd090f0aa0479ba727e5e68655e9b68
-- 
2.34.0





Information forwarded to guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Fri, 01 Jul 2022 21:44:02 GMT) Full text and rfc822 format available.

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

From: goodoldpaul <at> autistici.org
To: 52997 <at> debbugs.gnu.org
Subject: [PATCH] gnu: Add python-facebook-sdk.
Date: Fri, 01 Jul 2022 21:43:19 +0000
Dear all,
this is a friendly ping :) . I'm sending an updated patch.


Thank you for your time and effort,

giacomo




Information forwarded to guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Fri, 01 Jul 2022 21:44:02 GMT) Full text and rfc822 format available.

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

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: 52997 <at> debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [PATCH] gnu: Add python-facebook-sdk.
Date: Fri,  1 Jul 2022 23:43:25 +0200
* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6f951595c8..fc61951b3c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7183,6 +7183,35 @@ (define-public python-tweepy
 library for accessing the Twitter API.")
     (license license:expat)))
 
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))
+
 (define-public python-quart
   (package
     (name "python-quart")

base-commit: aba1ee5553099d45eb22d9ca1f685502146a49d0
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Wed, 12 Apr 2023 21:30:02 GMT) Full text and rfc822 format available.

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

From: goodoldpaul <at> autistici.org
To: 52997 <at> debbugs.gnu.org, jgart <at> dismail.de, lars <at> 6xq.net
Subject: Re: [PATCH] gnu: Add python-facebook-sdk.
Date: Wed, 12 Apr 2023 21:29:47 +0000
Dear all,
this is a friendly ping :) . I'm sending an updated patch.

Thank you for your time and effort,

 giacomo




Information forwarded to lars <at> 6xq.net, guix-patches <at> gnu.org:
bug#52997; Package guix-patches. (Wed, 12 Apr 2023 21:31:01 GMT) Full text and rfc822 format available.

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

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: 52997 <at> debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [PATCH-v2] gnu: Add python-facebook-sdk.
Date: Wed, 12 Apr 2023 23:30:30 +0200
* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 495e13acfe..9eae6d7616 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7844,6 +7844,35 @@ (define-public python-tweepy
 library for accessing the Twitter API.")
     (license license:expat)))
 
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))
+
 (define-public python-quart
   (package
     (name "python-quart")

base-commit: dd3e5e71104a2bcbad80e52e062a144ea96b8c6a
-- 
2.39.2





Reply sent to paul <goodoldpaul <at> autistici.org>:
You have taken responsibility. (Fri, 03 May 2024 22:50:01 GMT) Full text and rfc822 format available.

Notification sent to Giacomo Leidi <goodoldpaul <at> autistici.org>:
bug acknowledged by developer. (Fri, 03 May 2024 22:50:01 GMT) Full text and rfc822 format available.

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

From: paul <goodoldpaul <at> autistici.org>
To: 52997-done <at> debbugs.gnu.org
Subject: Close
Date: Sat, 4 May 2024 00:48:58 +0200




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

This bug report was last modified 342 days ago.

Previous Next


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