GNU bug report logs -
#64808
[PATCH] gnu: Add andorid-sdkmanager.
Previous Next
Reported by: Distopico <distopico <at> riseup.net>
Date: Sun, 23 Jul 2023 18:51:02 UTC
Severity: normal
Tags: patch
Done: Andreas Enge <andreas <at> enge.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#64808: [PATCH] gnu: Add andorid-sdkmanager.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 64808 <at> debbugs.gnu.org.
--
64808: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=64808
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Am Mon, Jul 24, 2023 at 12:23:44PM -0500 schrieb Distopico:
> That patch works fine from my side, thank you.
Excellent, thank you, and congratulations for your first package in Guix!
I have just pushed the commit and am closing the issue.
Andreas
[Message part 3 (message/rfc822, inline)]
A drop-in replacement for sdkmanager from the Android SDK by F-droid project.
* gnu/packages/android.scm (andorid-sdkmanager): New variables.
---
gnu/packages/android.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index f35c2398bd..24f5fd2893 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -12,6 +12,7 @@
;;; Copyright © 2020 Sergey Trofimov <sarg <at> sarg.org.ru>
;;; Copyright © 2021 Guillaume Le Vaillant <glv <at> posteo.net>
;;; Copyright © 2021 Petr Hodina <phodina <at> protonmail.com>
+;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico <at> riseup.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -721,6 +722,32 @@ (define-public fastboot
"This package provides @command{fastboot}, a tool to upload file system images to Android devices.")
(license license:asl2.0)))
+(define-public andorid-sdkmanager
+ (package
+ (name "android-sdkmanager")
+ (version "0.6.5")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "sdkmanager" version ".tar.gz"))
+ (sha256
+ (base32
+ "11as7n2mj3nbqsqb3ivyv9985n73i022s748qvjg36cs8ig50afx"))))
+ (build-system python-build-system)
+ (inputs (list python-requests python-argcomplete python-urllib3))
+ (propagated-inputs (list gnupg))
+ (home-page "https://gitlab.com/fdroid/sdkmanager")
+ (synopsis
+ "Drop-in replacement for sdkmanager from the Android SDK written in Python")
+ (description
+ "This package provides an drop-in replacement for sdkmanager from the Android SDK
+written in Python from fdroid project. It implements the exact API of the sdkmanager
+command line. It only deviates from that API if it can be done while being
+100% compatible.
+
+The project also attempts to maintain the same terminal output so it can be compatible
+with things that scrape sdkmanager output.")
+ (license license:agpl3+)))
+
(define-public android-udev-rules
(package
(name "android-udev-rules")
base-commit: 13cb9b302868b5a966a6ae177412c474084f4bf1
--
2.41.0
This bug report was last modified 1 year and 302 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.