GNU bug report logs - #50100
[PATCH] gnu: Add python-android-otp-extractor.

Previous Next

Package: guix-patches;

Reported by: phodina <phodina <at> protonmail.com>

Date: Tue, 17 Aug 2021 19:52:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 50100 AT debbugs.gnu.org.

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#50100; Package guix-patches. (Tue, 17 Aug 2021 19:52:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to phodina <phodina <at> protonmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 17 Aug 2021 19:52:02 GMT) Full text and rfc822 format available.

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

From: phodina <phodina <at> protonmail.com>
To: "guix-patches <at> gnu.org" <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: Add python-android-otp-extractor.
Date: Tue, 17 Aug 2021 19:51:14 +0000
* gnu/packages/android.scm (python-android-otp-extractor): New variable.

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index eb538f6540..5510aa6a29 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -916,6 +916,36 @@ safest way, on a file image.")
 useful for reverse engineering, analysis of Android applications and more.")
     (license license:asl2.0)))

+(define-public python-android-otp-extractor
+(package
+  (name "python-android-otp-extractor")
+  (version "cf282c71b178faa893aacf70b46ba9a78e694c86") ; no tags
+  (source
+   (origin
+    (method git-fetch)
+     (uri
+      (git-reference
+       (url "https://github.com/puddly/android-otp-extractor")
+       (commit version)))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32
+       "05la9rms7vgzpgk0qhhwqzsdggdnakgppdpp1wm2pzcg7rn8yp21"))))
+  (build-system python-build-system)
+  (arguments
+    `(#:tests? #f)) ; no tests
+  (propagated-inputs `(("adb" ,adb)
+                       ("python-cryptography" ,python-cryptography)
+                       ("python-coloredlogs" ,python-coloredlogs)))
+  (synopsis "Extracts OTP tokens from rooted Android devices")
+  (description "Many OTP apps don't support exporting or backing up their OTP
+secrets.  Switching apps would require you to regenerate all of your tokens,
+which can be tedious if you have a lot.  This application can extract your
+tokens from popular Android OTP apps and export them in a standard format
+or just display them as QR codes for easy importing.")
+  (home-page "https://github.com/puddly/android-otp-extractor")
+  (license license:gpl3)))
+
 (define-public fdroidserver
   (package
     (name "fdroidserver")
--
2.32.0




Information forwarded to guix-patches <at> gnu.org:
bug#50100; Package guix-patches. (Sat, 18 Sep 2021 08:50:01 GMT) Full text and rfc822 format available.

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

From: phodina <phodina <at> protonmail.com>
To: "50100 <at> debbugs.gnu.org" <50100 <at> debbugs.gnu.org>
Subject: [PATCH v2] gnu: Add python-android-otp-extractor.
Date: Sat, 18 Sep 2021 08:49:26 +0000
* gnu/packages/android.scm (python-android-otp-extractor): New variable.

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 99c283dfaf..6b4f96126d 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2019 Ricardo Wurmus <rekado <at> elephly.net>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2020 Sergey Trofimov <sarg <at> sarg.org.ru>
+;;; Copyright © 2021 Petr Hodina <phodina <at> protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -917,6 +918,38 @@ safest way, on a file image.")
 useful for reverse engineering, analysis of Android applications and more.")
     (license license:asl2.0)))

+(define-public python-android-otp-extractor
+	       (let ((commit "cf282c71b178faa893aacf70b46ba9a78e694c86")
+        (revision "1"))
+(package
+  (name "python-android-otp-extractor")
+  (version commit)
+  (source
+   (origin
+    (method git-fetch)
+     (uri
+      (git-reference
+       (url "https://github.com/puddly/android-otp-extractor")
+       (commit version)))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32
+       "05la9rms7vgzpgk0qhhwqzsdggdnakgppdpp1wm2pzcg7rn8yp21"))))
+  (build-system python-build-system)
+  (arguments
+    `(#:tests? #f)) ; no tests
+  (propagated-inputs `(("adb" ,adb)
+                       ("python-cryptography" ,python-cryptography)
+                       ("python-coloredlogs" ,python-coloredlogs)))
+  (synopsis "Extracts OTP tokens from rooted Android devices")
+  (description "Many OTP apps don't support exporting or backing up their OTP
+secrets.  Switching apps would require you to regenerate all of your tokens,
+which can be tedious if you have a lot.  This application can extract your
+tokens from popular Android OTP apps and export them in a standard format
+or just display them as QR codes for easy importing.")
+  (home-page "https://github.com/puddly/android-otp-extractor")
+  (license license:gpl3))))
+
 (define-public fdroidserver
   (package
     (name "fdroidserver")
--
2.32.0




Information forwarded to guix-patches <at> gnu.org:
bug#50100; Package guix-patches. (Sat, 18 Sep 2021 10:34:02 GMT) Full text and rfc822 format available.

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

From: phodina <phodina <at> protonmail.com>
To: "50100 <at> debbugs.gnu.org" <50100 <at> debbugs.gnu.org>
Subject: Re: [PATCH v3] gnu: Add python-android-otp-extractor.
Date: Sat, 18 Sep 2021 10:33:03 +0000
* gnu/packages/android.scm (python-android-otp-extractor): New variable.

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 99c283dfaf..59dce5bd9a 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2019 Ricardo Wurmus <rekado <at> elephly.net>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2020 Sergey Trofimov <sarg <at> sarg.org.ru>
+;;; Copyright © 2021 Petr Hodina <phodina <at> protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -917,6 +918,38 @@ safest way, on a file image.")
 useful for reverse engineering, analysis of Android applications and more.")
     (license license:asl2.0)))

+(define-public python-android-otp-extractor
+  (let ((commit "cf282c71b178faa893aacf70b46ba9a78e694c86")
+        (revision "1"))
+    (package
+      (name "python-android-otp-extractor")
+      (version commit)
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://github.com/puddly/android-otp-extractor")
+           (commit version)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "05la9rms7vgzpgk0qhhwqzsdggdnakgppdpp1wm2pzcg7rn8yp21"))))
+      (build-system python-build-system)
+      (arguments
+       `(#:tests? #f))                  ; no tests
+      (propagated-inputs `(("adb" ,adb)
+                           ("python-cryptography" ,python-cryptography)
+                           ("python-coloredlogs" ,python-coloredlogs)))
+      (synopsis "Extracts OTP tokens from rooted Android devices")
+      (description "Many OTP apps don't support exporting or backing up their OTP
+secrets.  Switching apps would require you to regenerate all of your tokens,
+which can be tedious if you have a lot.  This application can extract your
+tokens from popular Android OTP apps and export them in a standard format
+or just display them as QR codes for easy importing.")
+      (home-page "https://github.com/puddly/android-otp-extractor")
+      (license license:gpl3))))
+
 (define-public fdroidserver
   (package
     (name "fdroidserver")
--
2.32.0




Information forwarded to guix-patches <at> gnu.org:
bug#50100; Package guix-patches. (Fri, 03 Dec 2021 15:15:02 GMT) Full text and rfc822 format available.

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

From: phodina <phodina <at> protonmail.com>
To: "50100 <at> debbugs.gnu.org" <50100 <at> debbugs.gnu.org>
Subject: Re: [PATCH v3] gnu: Add python-android-otp-extractor.
Date: Fri, 03 Dec 2021 15:14:31 +0000
ping




This bug report was last modified 2 years and 144 days ago.

Previous Next


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