GNU bug report logs - #56578
[PATCH] gnu: Add android-file-transfer.

Previous Next

Package: guix-patches;

Reported by: kiasoc5 <kiasoc5 <at> disroot.org>

Date: Fri, 15 Jul 2022 17:43:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 56578 in the body.
You can then email your comments to 56578 AT debbugs.gnu.org in the normal way.

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#56578; Package guix-patches. (Fri, 15 Jul 2022 17:43:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to kiasoc5 <kiasoc5 <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 15 Jul 2022 17:43:01 GMT) Full text and rfc822 format available.

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

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add android-file-transfer.
Date: Fri, 15 Jul 2022 17:41:40 +0000
From 338e019331aa46f37b5e45c66aa1c09a4e27f008 Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5 <at> disroot.org>
Date: Fri, 15 Jul 2022 13:37:29 -0400
Subject: [PATCH] gnu: Add android-file-transfer.

* gnu/packages/android.scm (android-file-transfer): New variable.
---
 gnu/packages/android.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 04dc4b6499..5897d71fa9 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -34,6 +34,7 @@ (define-module (gnu packages android)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix build-system android-ndk)
+  #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system go)
   #:use-module (guix build-system python)
@@ -54,6 +55,8 @@ (define-module (gnu packages android)
   #:use-module (gnu packages python-crypto)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
+  #:use-module (gnu packages qt)
+  #:use-module (gnu packages readline)
   #:use-module (gnu packages selinux)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages sphinx)
@@ -1268,3 +1271,30 @@ (define-public enjarify
 applications.  Enjarify can translate the Dalvik bytecode back to equivalent
 Java bytecode, which simplifies the analysis of Android applications.")
     (license license:asl2.0)))
+
+(define-public android-file-transfer
+  (package
+    (name "android-file-transfer")
+    (version "4.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url
+                     "https://github.com/whoozle/android-file-transfer-linux/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "125rq8ji83nw6chfw43i0h9c38hjqh1qjibb0gnf9wrigar9zc8b"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:tests? #f)) ;there are no tests
+    (inputs (list qtbase-5 fuse libxkbcommon))
+    (native-inputs (list qttools openssl readline))
+    (home-page "https://whoozle.github.io/android-file-transfer-linux")
+    (synopsis "MTP client for Android devices")
+    (description
+     "This package provides a QT graphical interface for transfering
+files with Android devices using MTP. It also allows the Android device to be
+mounted via FUSE.")
+    (license license:lgpl2.1+)))

base-commit: 114b40ed675d0543058b5bdea86e561eff7c6b6e
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#56578; Package guix-patches. (Wed, 20 Jul 2022 15:39:01 GMT) Full text and rfc822 format available.

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

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: 56578 <at> debbugs.gnu.org
Subject: [PATCH V2] gnu: Add android-file-transfer.
Date: Wed, 20 Jul 2022 15:38:22 +0000
Update to use fuse-3 instead of fuse.

From 45372cd82e79e116d8f80abbfec0e7e1f53200e1 Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5 <at> disroot.org>
Date: Fri, 15 Jul 2022 13:37:29 -0400
Subject: [PATCH V2] gnu: Add android-file-transfer.

* gnu/packages/android.scm (android-file-transfer): New variable.
---
 gnu/packages/android.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 04dc4b6499..dafd9b52f3 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -34,6 +34,7 @@ (define-module (gnu packages android)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix build-system android-ndk)
+  #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system go)
   #:use-module (guix build-system python)
@@ -54,6 +55,8 @@ (define-module (gnu packages android)
   #:use-module (gnu packages python-crypto)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
+  #:use-module (gnu packages qt)
+  #:use-module (gnu packages readline)
   #:use-module (gnu packages selinux)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages sphinx)
@@ -1268,3 +1271,30 @@ (define-public enjarify
 applications.  Enjarify can translate the Dalvik bytecode back to equivalent
 Java bytecode, which simplifies the analysis of Android applications.")
     (license license:asl2.0)))
+
+(define-public android-file-transfer
+  (package
+    (name "android-file-transfer")
+    (version "4.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url
+                     "https://github.com/whoozle/android-file-transfer-linux/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "125rq8ji83nw6chfw43i0h9c38hjqh1qjibb0gnf9wrigar9zc8b"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:tests? #f)) ;there are no tests
+    (inputs (list qtbase-5 fuse-3 libxkbcommon))
+    (native-inputs (list qttools openssl readline))
+    (home-page "https://whoozle.github.io/android-file-transfer-linux")
+    (synopsis "MTP client for Android devices")
+    (description
+     "This package provides a QT graphical interface for transfering
+files with Android devices using MTP. It also allows the Android device to be
+mounted via FUSE.")
+    (license license:lgpl2.1+)))

base-commit: be7b314f3fe22273e935accac22f313e44d3d970
-- 
2.37.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 03 Aug 2022 10:14:02 GMT) Full text and rfc822 format available.

Notification sent to kiasoc5 <kiasoc5 <at> disroot.org>:
bug acknowledged by developer. (Wed, 03 Aug 2022 10:14:02 GMT) Full text and rfc822 format available.

Message #13 received at 56578-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: kiasoc5 <kiasoc5 <at> disroot.org>
Cc: 56578-done <at> debbugs.gnu.org
Subject: Re: bug#56578: [PATCH] gnu: Add android-file-transfer.
Date: Wed, 03 Aug 2022 12:13:04 +0200
[Message part 1 (text/plain, inline)]
Hi,

kiasoc5 <kiasoc5 <at> disroot.org> skribis:

> From 45372cd82e79e116d8f80abbfec0e7e1f53200e1 Mon Sep 17 00:00:00 2001
> From: kiasoc5 <kiasoc5 <at> disroot.org>
> Date: Fri, 15 Jul 2022 13:37:29 -0400
> Subject: [PATCH V2] gnu: Add android-file-transfer.
>
> * gnu/packages/android.scm (android-file-transfer): New variable.

Applied with the changes below, thanks!

Ludo’.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index dafd9b52f3..91aaba089f 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -1290,11 +1290,11 @@ (define-public android-file-transfer
     (arguments
      (list #:tests? #f)) ;there are no tests
     (inputs (list qtbase-5 fuse-3 libxkbcommon))
-    (native-inputs (list qttools openssl readline))
-    (home-page "https://whoozle.github.io/android-file-transfer-linux")
+    (native-inputs (list qttools-5 openssl readline))
+    (home-page "https://whoozle.github.io/android-file-transfer-linux/")
     (synopsis "MTP client for Android devices")
     (description
-     "This package provides a QT graphical interface for transfering
-files with Android devices using MTP. It also allows the Android device to be
+     "This package provides a Qt graphical interface for transferring files
+with Android devices using MTP.  It also allows the Android device to be
 mounted via FUSE.")
     (license license:lgpl2.1+)))

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 31 Aug 2022 11:24:12 GMT) Full text and rfc822 format available.

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

Previous Next


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