unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: 32263@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#32263] [PATCH 8/8] gnu: Add fdroidserver.
Date: Tue, 24 Jul 2018 21:51:15 +0300	[thread overview]
Message-ID: <20180724185115.19376-8-efraim@flashner.co.il> (raw)
In-Reply-To: <20180724185115.19376-1-efraim@flashner.co.il>

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

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 2b3db50e1..886a1855d 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -35,14 +35,18 @@
   #:use-module (gnu packages)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages docker)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-crypto)
+  #:use-module (gnu packages python-web)
   #:use-module (gnu packages selinux)
+  #:use-module (gnu packages serialization)
   #:use-module (gnu packages ssh)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages version-control)
+  #:use-module (gnu packages virtualization)
   #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages linux))
 
@@ -855,3 +859,54 @@ safest way, on a file image.")
      "Androguard is a full Python tool to play with Android files.  It is
 useful for reverse engineering, analysis of Android applications and more.")
     (license license:asl2.0)))
+
+(define-public fdroidserver
+  (package
+    (name "fdroidserver")
+    (version "1.0.9")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "fdroidserver" version))
+        (sha256
+         (base32
+          "0cwb1fmindw6v9jkiim9yn3496rk1pvnk94s1r0vz2hxgz16xp7n"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-versioning
+           (lambda _
+             (substitute* "setup.py"
+               (("0.2.1") ,(package-version python-pyasn1-modules)))
+             #t)))))
+    (propagated-inputs
+     `(("python-androguard" ,python-androguard)
+       ("python-apache-libcloud" ,python-apache-libcloud)
+       ("python-clint" ,python-clint)
+       ("python-docker-py" ,python-docker-py)
+       ("python-gitpython" ,python-gitpython)
+       ("python-mwclient" ,python-mwclient)
+       ("python-paramiko" ,python-paramiko)
+       ("python-pillow" ,python-pillow)
+       ("python-pyasn1" ,python-pyasn1)
+       ("python-pyasn1-modules" ,python-pyasn1-modules)
+       ("python-pyyaml" ,python-pyyaml)
+       ("python-qrcode" ,python-qrcode)
+       ("python-ruamel.yaml" ,python-ruamel.yaml)
+       ("python-requests" ,python-requests)
+       ("python-vagrant" ,python-vagrant)))
+    (native-inputs
+     `(("python-babel" ,python-babel)
+       ("python-bcrypt" ,python-bcrypt)
+       ("python-docker-pycreds" ,python-docker-pycreds)
+       ("python-pynacl" ,python-pynacl)
+       ("python-websocket-client" ,python-websocket-client)))
+    (home-page "https://f-droid.org")
+    (synopsis "F-Droid Server Tools")
+    (description
+     "The F-Droid server tools provide various scripts and tools that are used
+to maintain the main F-Droid application repository.  You can use these same
+tools to create your own additional or alternative repository for publishing, or
+to assist in creating, testing and submitting metadata to the main repository.")
+    (license license:agpl3+)))
-- 
2.18.0

  parent reply	other threads:[~2018-07-24 18:52 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-24 18:48 [bug#32263] [PATCH 0/8] Add fdroidserver Efraim Flashner
2018-07-24 18:51 ` [bug#32263] [PATCH 1/8] gnu: Add python-docker-pycreds Efraim Flashner
2018-07-24 18:51   ` [bug#32263] [PATCH 2/8] gnu: Add python-pyperclip Efraim Flashner
2018-07-29 13:37     ` Ludovic Courtès
2018-07-24 18:51   ` [bug#32263] [PATCH 3/8] gnu: Add python-codecov Efraim Flashner
2018-07-29 13:41     ` Ludovic Courtès
2018-07-29 16:52       ` Efraim Flashner
2018-07-24 18:51   ` [bug#32263] [PATCH 4/8] gnu: Add python-androguard Efraim Flashner
2018-07-29 13:42     ` Ludovic Courtès
2018-07-24 18:51   ` [bug#32263] [PATCH 5/8] gnu: virtualization.scm: Use license prefix Efraim Flashner
2018-07-29 13:42     ` Ludovic Courtès
2018-07-24 18:51   ` [bug#32263] [PATCH 6/8] gnu: Add python-vagrant Efraim Flashner
2018-07-29 13:43     ` Ludovic Courtès
2018-07-24 18:51   ` [bug#32263] [PATCH 7/8] gnu: python-docker-py: Update to 1.10.6 Efraim Flashner
2018-07-29 13:43     ` Ludovic Courtès
2018-07-24 18:51   ` Efraim Flashner [this message]
2018-07-29 13:45     ` [bug#32263] [PATCH 8/8] gnu: Add fdroidserver Ludovic Courtès
2018-07-29 13:36   ` [bug#32263] [PATCH 1/8] gnu: Add python-docker-pycreds Ludovic Courtès
2018-07-29 17:11 ` bug#32263: fdroidserver merged Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180724185115.19376-8-efraim@flashner.co.il \
    --to=efraim@flashner.co.il \
    --cc=32263@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).