guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/111: gnu: Add rust-android-log-sys-0.3.


From: guix-commits
Subject: 05/111: gnu: Add rust-android-log-sys-0.3.
Date: Thu, 21 Nov 2024 08:33:16 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit 9ed3d1c2b1f5da92b11e0129244f0725b3e5eb7e
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Nov 20 20:04:26 2024 +0200

    gnu: Add rust-android-log-sys-0.3.
    
    * gnu/packages/crates-io.scm (rust-android-log-sys-0.3): New variable.
    (rust-android-log-sys-0.2): Inherit from rust-android-log-sys-0.3.
    
    Change-Id: If197a2b2a804abc3c55845f516ed0989b20d906a
---
 gnu/packages/crates-io.scm | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index cdbf4a9afc..b54d8a4588 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1615,24 +1615,38 @@ with @code{NativeActivity} or @code{GameActivity}.")
     (description "This package provides the glue for the Android JNI.")
     (license license:expat)))
 
-(define-public rust-android-log-sys-0.2
+(define-public rust-android-log-sys-0.3
   (package
     (name "rust-android-log-sys")
-    (version "0.2.0")
+    (version "0.3.1")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "android_log-sys" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0bhhs1cgzp9vzjvkn2q31ppc7w4am5s273hkvl5iac5475kmp5l5"))))
-    (arguments `(#:skip-build? #true))  ;XXX: Android only
+        (base32 "0dwrvwkx2xxqys6nrhfavbbqfx2rs61nq8akrlnqkfbapxb81k2y"))))
     (build-system cargo-build-system)
-    (home-page "https://github.com/nercury/android_log-sys-rs";)
+    (arguments `(#:skip-build? #true))      ;XXX: Android only
+    (home-page "https://github.com/rust-mobile/android_log-sys-rs";)
     (synopsis "FFI bindings to Android log Library")
     (description "This package provides FFI bindings to Android log Library.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-android-log-sys-0.2
+  (package
+    (inherit rust-android-log-sys-0.3)
+    (name "rust-android-log-sys")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "android_log-sys" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0bhhs1cgzp9vzjvkn2q31ppc7w4am5s273hkvl5iac5475kmp5l5"))))
+    (arguments `(#:skip-build? #true))))    ;XXX: Android only
+
 (define-public rust-android-log-sys-0.1
   (package
     (inherit rust-android-log-sys-0.2)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]