GNU bug report logs -
#50100
[PATCH] gnu: Add python-android-otp-extractor.
Previous Next
Reported by: phodina <phodina <at> protonmail.com>
Date: Tue, 17 Aug 2021 19:52:02 UTC
Severity: normal
Tags: patch
Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>
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 50100 in the body.
You can then email your comments to 50100 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
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):
* 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):
* 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):
* 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):
ping
Reply sent
to
Sharlatan Hellseher <sharlatanus <at> gmail.com>
:
You have taken responsibility.
(Tue, 11 Feb 2025 21:58:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
phodina <phodina <at> protonmail.com>
:
bug acknowledged by developer.
(Tue, 11 Feb 2025 21:58:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 50100-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
After reviewing the project's repository it gave me some confidence to
reject this patch. Project has no active development and looks
abandoned, no official release and no active issues merges for 3 years.
<https://github.com/puddly/android-otp-extractor>
<https://github.com/puddly/android-otp-extractor/issues/51>
Closing as not applied.
--
Thanks,
Oleg
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 12 Mar 2025 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 57 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.