From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36249) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fGVua-0006mE-4s for guix-patches@gnu.org; Wed, 09 May 2018 16:42:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fGVuW-0003us-65 for guix-patches@gnu.org; Wed, 09 May 2018 16:42:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47698) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fGVuW-0003ui-2p for guix-patches@gnu.org; Wed, 09 May 2018 16:42:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fGVuV-0007K0-RV for guix-patches@gnu.org; Wed, 09 May 2018 16:42:03 -0400 Subject: [bug#31393] [PATCH 3/4] gnu: Rename "libbase" to "android-libbase". Resent-Message-ID: From: Danny Milosavljevic Date: Wed, 9 May 2018 22:41:39 +0200 Message-Id: <20180509204140.10819-3-dannym@scratchpost.org> In-Reply-To: <20180509204140.10819-1-dannym@scratchpost.org> References: <20180509203947.10746-1-dannym@scratchpost.org> <20180509204140.10819-1-dannym@scratchpost.org> 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: 31393@debbugs.gnu.org * gnu/packages/android.scm (libbase): Rename to... (android-libbase): ...this. --- gnu/packages/android.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index db5a00298..563ed32ea 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -169,9 +169,9 @@ interfaces for either writing or reading logs. The log buffers are divided up in Main, System, Radio and Events sub-logs.") (license license:asl2.0))) -(define libbase +(define android-libbase (package - (name "libbase") + (name "android-libbase") (version (android-platform-version)) (source (android-platform-system-core version)) (build-system android-ndk-build-system) @@ -320,7 +320,7 @@ various Android core host applications.") (install-file "diagnose_usb.h" (string-append (assoc-ref outputs "out") "/include")) #t))))) (inputs - `(("libbase" ,libbase) + `(("android-libbase" ,android-libbase) ("libcutils" ,libcutils) ("android-liblog" ,android-liblog) ("openssl" ,openssl))) @@ -611,7 +611,7 @@ Android core.") ("android-ext4-utils" ,android-ext4-utils) ("android-f2fs-utils" ,android-f2fs-utils) ("googletest" ,googletest) - ("libbase" ,libbase) + ("android-libbase" ,android-libbase) ("libcutils" ,libcutils) ("android-liblog" ,android-liblog) ("android-libutils" ,android-libutils)