all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#50100] [PATCH] gnu: Add python-android-otp-extractor.
@ 2021-08-17 19:51 phodina via Guix-patches via
  2021-09-18  8:49 ` [bug#50100] [PATCH v2] " phodina via Guix-patches via
  2021-09-18 10:33 ` [bug#50100] [PATCH v3] " phodina via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: phodina via Guix-patches via @ 2021-08-17 19:51 UTC (permalink / raw)
  To: 50100

* 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




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

* [bug#50100] [PATCH v2] gnu: Add python-android-otp-extractor.
  2021-08-17 19:51 [bug#50100] [PATCH] gnu: Add python-android-otp-extractor phodina via Guix-patches via
@ 2021-09-18  8:49 ` phodina via Guix-patches via
  2021-09-18 10:33 ` [bug#50100] [PATCH v3] " phodina via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: phodina via Guix-patches via @ 2021-09-18  8:49 UTC (permalink / raw)
  To: 50100@debbugs.gnu.org

* 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@elephly.net>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2020 Sergey Trofimov <sarg@sarg.org.ru>
+;;; Copyright © 2021 Petr Hodina <phodina@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




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

* [bug#50100] [PATCH v3] gnu: Add python-android-otp-extractor.
  2021-08-17 19:51 [bug#50100] [PATCH] gnu: Add python-android-otp-extractor phodina via Guix-patches via
  2021-09-18  8:49 ` [bug#50100] [PATCH v2] " phodina via Guix-patches via
@ 2021-09-18 10:33 ` phodina via Guix-patches via
  2021-12-03 15:14   ` phodina via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: phodina via Guix-patches via @ 2021-09-18 10:33 UTC (permalink / raw)
  To: 50100@debbugs.gnu.org

* 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@elephly.net>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2020 Sergey Trofimov <sarg@sarg.org.ru>
+;;; Copyright © 2021 Petr Hodina <phodina@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




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

* [bug#50100] [PATCH v3] gnu: Add python-android-otp-extractor.
  2021-09-18 10:33 ` [bug#50100] [PATCH v3] " phodina via Guix-patches via
@ 2021-12-03 15:14   ` phodina via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: phodina via Guix-patches via @ 2021-12-03 15:14 UTC (permalink / raw)
  To: 50100@debbugs.gnu.org

ping




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

end of thread, other threads:[~2021-12-03 15:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-17 19:51 [bug#50100] [PATCH] gnu: Add python-android-otp-extractor phodina via Guix-patches via
2021-09-18  8:49 ` [bug#50100] [PATCH v2] " phodina via Guix-patches via
2021-09-18 10:33 ` [bug#50100] [PATCH v3] " phodina via Guix-patches via
2021-12-03 15:14   ` phodina via Guix-patches via

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.