From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46844) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irBU1-0001KR-Qy for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irBU0-0008Lh-Gb for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54586) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1irBU0-0008LY-D2 for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1irBU0-0005QS-DC for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:04 -0500 Subject: [bug#39128] [PATCH 07/12] gnu: Add python-android-stringslib. Resent-Message-ID: From: Julien Lepiller Date: Tue, 14 Jan 2020 02:57:34 +0100 Message-Id: <20200114015739.14432-7-julien@lepiller.eu> In-Reply-To: <20200114015739.14432-1-julien@lepiller.eu> References: <20200114025253.3a99b3c7@tachikoma.lepiller.eu> <20200114015739.14432-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39128@debbugs.gnu.org * gnu/packages/python-xyz.scm (python-android-stringslib): New variable. --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index de87719ef6..8bcbf855b1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17120,3 +17120,26 @@ that take parsers as their arguments and return them as result values.") sending package files to the Python Package Index. This package checks that file to ensure it completely and accurately describes your project.") (license license:expat))) + +(define-public python-android-stringslib + (package + (name "python-android-stringslib") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://framagit.org/tyreunom/python-android-strings-lib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0gij55qzzq1h83kfpvhai1vf78kkhyvxa6l17m2nl24454lhfin4")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (home-page "https://framagit.org/tyreunom/python-android-strings-lib") + (synopsis "Android strings.xml support") + (description "Android Strings Lib provides support for android's strings.xml +files. These files are used to translate strings in android apps.") + (license license:expat))) -- 2.24.0