* [bug#31393] [PATCH 2/4] gnu: Rename "liblog" to "android-liblog".
2018-05-09 20:41 ` [bug#31393] [PATCH 1/4] gnu: Add android-fastboot Danny Milosavljevic
@ 2018-05-09 20:41 ` Danny Milosavljevic
2018-05-09 20:41 ` [bug#31393] [PATCH 3/4] gnu: Rename "libbase" to "android-libbase" Danny Milosavljevic
2018-05-09 20:41 ` [bug#31393] [PATCH 4/4] gnu: Rename "libcutils" to "android-libcutils" Danny Milosavljevic
2 siblings, 0 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2018-05-09 20:41 UTC (permalink / raw)
To: 31393
* gnu/packages/android.scm (liblog): Rename to...
(android-liblog): ...this.
---
gnu/packages/android.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index eaae0229a..db5a00298 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -143,9 +143,9 @@ use their packages mostly unmodified in our Android NDK build system.")
(base32
checksum))))
-(define liblog
+(define android-liblog
(package
- (name "liblog")
+ (name "android-liblog")
(version (android-platform-version))
(source (android-platform-system-core version))
(build-system android-ndk-build-system)
@@ -182,7 +182,7 @@ in Main, System, Radio and Events sub-logs.")
(modify-phases %standard-phases
(add-after 'unpack 'enter-source
(lambda _ (chdir "base") #t)))))
- (inputs `(("liblog" ,liblog)))
+ (inputs `(("android-liblog" ,android-liblog)))
(home-page "https://developer.android.com/")
(synopsis "Android platform base library")
(description "@code{libbase} is a library in common use by the
@@ -322,7 +322,7 @@ various Android core host applications.")
(inputs
`(("libbase" ,libbase)
("libcutils" ,libcutils)
- ("liblog" ,liblog)
+ ("android-liblog" ,android-liblog)
("openssl" ,openssl)))
(home-page "https://developer.android.com/studio/command-line/adb.html")
(synopsis "Android Debug Bridge")
@@ -477,7 +477,7 @@ that is safe to use for user space. It also includes
"/include "
"-I " (assoc-ref %build-inputs "libcutils")
"/include "
- "-I " (assoc-ref %build-inputs "liblog") "/include "
+ "-I " (assoc-ref %build-inputs "android-liblog") "/include "
"-I ../core/include")
"CFLAGS=-Wno-error"
"install-libext4_utils_host.a"
@@ -500,7 +500,7 @@ that is safe to use for user space. It also includes
#t)))))
(inputs
`(("libcutils" ,libcutils)
- ("liblog" ,liblog)
+ ("android-liblog" ,android-liblog)
("android-libselinux" ,android-libselinux)
("android-libsparse" ,android-libsparse)
("zlib" ,zlib)))
@@ -613,7 +613,7 @@ Android core.")
("googletest" ,googletest)
("libbase" ,libbase)
("libcutils" ,libcutils)
- ("liblog" ,liblog)
+ ("android-liblog" ,android-liblog)
("android-libutils" ,android-libutils)
("android-libsparse" ,android-libsparse)
("android-libziparchive" ,android-libziparchive)
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31393] [PATCH 3/4] gnu: Rename "libbase" to "android-libbase".
2018-05-09 20:41 ` [bug#31393] [PATCH 1/4] gnu: Add android-fastboot Danny Milosavljevic
2018-05-09 20:41 ` [bug#31393] [PATCH 2/4] gnu: Rename "liblog" to "android-liblog" Danny Milosavljevic
@ 2018-05-09 20:41 ` Danny Milosavljevic
2018-05-09 20:41 ` [bug#31393] [PATCH 4/4] gnu: Rename "libcutils" to "android-libcutils" Danny Milosavljevic
2 siblings, 0 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2018-05-09 20:41 UTC (permalink / raw)
To: 31393
* 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)
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31393] [PATCH 4/4] gnu: Rename "libcutils" to "android-libcutils".
2018-05-09 20:41 ` [bug#31393] [PATCH 1/4] gnu: Add android-fastboot Danny Milosavljevic
2018-05-09 20:41 ` [bug#31393] [PATCH 2/4] gnu: Rename "liblog" to "android-liblog" Danny Milosavljevic
2018-05-09 20:41 ` [bug#31393] [PATCH 3/4] gnu: Rename "libbase" to "android-libbase" Danny Milosavljevic
@ 2018-05-09 20:41 ` Danny Milosavljevic
2 siblings, 0 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2018-05-09 20:41 UTC (permalink / raw)
To: 31393
* gnu/packages/android.scm (libcutils): Rename to...
(android-libcutils): ...this.
---
gnu/packages/android.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 563ed32ea..6f68f583c 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -189,9 +189,9 @@ in Main, System, Radio and Events sub-logs.")
various Android core host applications.")
(license license:asl2.0)))
-(define libcutils
+(define android-libcutils
(package
- (name "libcutils")
+ (name "android-libcutils")
(version (android-platform-version))
(source (android-platform-system-core version))
(build-system gnu-build-system)
@@ -321,7 +321,7 @@ various Android core host applications.")
#t)))))
(inputs
`(("android-libbase" ,android-libbase)
- ("libcutils" ,libcutils)
+ ("android-libcutils" ,android-libcutils)
("android-liblog" ,android-liblog)
("openssl" ,openssl)))
(home-page "https://developer.android.com/studio/command-line/adb.html")
@@ -475,7 +475,7 @@ that is safe to use for user space. It also includes
"/include "
"-I " (assoc-ref %build-inputs "android-libsparse")
"/include "
- "-I " (assoc-ref %build-inputs "libcutils")
+ "-I " (assoc-ref %build-inputs "android-libcutils")
"/include "
"-I " (assoc-ref %build-inputs "android-liblog") "/include "
"-I ../core/include")
@@ -499,7 +499,7 @@ that is safe to use for user space. It also includes
(copy-recursively "." (string-append out "/include")))
#t)))))
(inputs
- `(("libcutils" ,libcutils)
+ `(("android-libcutils" ,android-libcutils)
("android-liblog" ,android-liblog)
("android-libselinux" ,android-libselinux)
("android-libsparse" ,android-libsparse)
@@ -533,7 +533,7 @@ Android core.")
`(("f2fs-tools" ,f2fs-tools-1.7)
("android-libselinux" ,android-libselinux)
("android-libsparse" ,android-libsparse)
- ("libcutils" ,libcutils)
+ ("android-libcutils" ,android-libcutils)
("zlib" ,zlib)))
(home-page "https://developer.android.com/")
(synopsis "Android ext4 utils")
@@ -560,7 +560,7 @@ Android core.")
(copy-recursively "../include/utils" (string-append (assoc-ref outputs "out") "/include/utils")))))))
(inputs
`(("android-safe-iop" ,android-safe-iop)
- ("libcutils" ,libcutils)))
+ ("android-libcutils" ,android-libcutils)))
(native-inputs
`(("android-bionic-uapi" ,android-bionic-uapi)))
(home-page "https://developer.android.com/")
@@ -612,7 +612,7 @@ Android core.")
("android-f2fs-utils" ,android-f2fs-utils)
("googletest" ,googletest)
("android-libbase" ,android-libbase)
- ("libcutils" ,libcutils)
+ ("android-libcutils" ,android-libcutils)
("android-liblog" ,android-liblog)
("android-libutils" ,android-libutils)
("android-libsparse" ,android-libsparse)
^ permalink raw reply related [flat|nested] 7+ messages in thread