[arch-commits] Commit in android-tools/repos (8 files)

2020-11-15 Thread Anatol Pomozov via arch-commits
Date: Sunday, November 15, 2020 @ 22:55:47
  Author: anatolik
Revision: 754929

archrelease: copy trunk to community-testing-x86_64

Added:
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 754927, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion.fastboot
(from rev 754927, android-tools/trunk/bash_completion.fastboot)
  
android-tools/repos/community-testing-x86_64/boringssl-disable-thirdpartydeps.patch
(from rev 754927, 
android-tools/trunk/boringssl-disable-thirdpartydeps.patch)
  android-tools/repos/community-testing-x86_64/build.ninja
(from rev 754928, android-tools/trunk/build.ninja)
  android-tools/repos/community-testing-x86_64/deployagent.jar
(from rev 754928, android-tools/trunk/deployagent.jar)
  android-tools/repos/community-testing-x86_64/fix_build_core.patch
(from rev 754928, android-tools/trunk/fix_build_core.patch)
  android-tools/repos/community-testing-x86_64/fix_libziparchive.patch
(from rev 754928, android-tools/trunk/fix_libziparchive.patch)

+
 PKGBUILD   |  106 +
 bash_completion.fastboot   |   90 
 boringssl-disable-thirdpartydeps.patch |   24 +
 build.ninja|  615 +++
 fix_build_core.patch   |  252 
 fix_libziparchive.patch|   12 
 6 files changed, 1099 insertions(+)

Copied: android-tools/repos/community-testing-x86_64/PKGBUILD (from rev 754927, 
android-tools/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-15 22:55:47 UTC (rev 754929)
@@ -0,0 +1,106 @@
+# Maintainer: Anatol Pomozov
+# Contributor: 謝致邦 
+# Contributor: Alucryd 
+
+pkgname=android-tools
+pkgver=30.0.5
+pkgrel=1
+_tag=platform-tools-$pkgver
+pkgdesc='Android platform tools'
+arch=(x86_64)
+url='http://tools.android.com/'
+license=(Apache MIT)
+depends=(pcre2 libusb protobuf brotli)
+optdepends=('python: for mkbootimg script'
+'python2: for unpack_bootimg & avbtool scripts')
+# it depends on 'vim' because of 'xxd' tool.
+makedepends=(git clang gtest cmake ninja go vim)
+provides=(fastboot adb)
+conflicts=(fastboot adb)
+source=(git+https://android.googlesource.com/platform/frameworks/base#tag=$_tag
+
git+https://android.googlesource.com/platform/frameworks/native#tag=$_tag
+git+https://android.googlesource.com/platform/system/core#tag=$_tag
+git+https://android.googlesource.com/platform/system/extras#tag=$_tag
+git+https://android.googlesource.com/platform/system/libbase#tag=$_tag
+
git+https://android.googlesource.com/platform/system/libziparchive#tag=$_tag
+
git+https://android.googlesource.com/platform/system/tools/mkbootimg#tag=$_tag
+
git+https://android.googlesource.com/platform/external/selinux#tag=$_tag
+
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=$_tag
+
git+https://android.googlesource.com/platform/external/e2fsprogs#tag=$_tag
+git+https://android.googlesource.com/platform/external/avb#tag=$_tag
+
git+https://android.googlesource.com/platform/external/boringssl#tag=$_tag
+build.ninja # copied from 
https://github.com/anatol/android-platform-tools-build
+# deployagent.jar is a library built from Android sources.
+# Building this java library requires a lot of dependencies:
+#  java, protobuf-java, dex compiler, Android base libs.
+# To avoid the complexity we prebuilt the lib from the Android sources directly
+# using following instructions:
+#   (See https://wiki.archlinux.org/index.php/Android for context)
+# 
+#   source build/envsetup.sh
+#   lunch full-eng
+#   mmm system/core/adb/
+#   cp ./target/product/generic/system/framework/deployagent.jar .
+deployagent.jar
+# we disable mDNS functionality as it does not compile with the Arch system 
version of the library
+fix_build_core.patch
+fix_libziparchive.patch
+boringssl-disable-thirdpartydeps.patch
+bash_completion.fastboot)
+# Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  '933dc30da1c3db9c85c3623d20341fcf64ed2253'
+  'd9dfac30245faa0a96968b96f3acd9ad536f4910'
+  '4583e794158ef08cec8e586cd26bc152fe26695c'
+  'ce8314d6b1e05e3f4f7ae7828d225fbb07a2a55c'
+  '1c025855a3e7ea351685843a0df45c52a7e674dd'
+  '7004dbd0c193668827174880de6f8434de8ceaee')
+
+prepare() {
+  cd "$srcdir"/core
+  patch -p1 < ../fix_bu

[arch-commits] Commit in android-tools/repos (8 files)

2020-10-07 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 8, 2020 @ 02:07:18
  Author: anatolik
Revision: 721674

archrelease: copy trunk to community-testing-x86_64

Added:
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 721673, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion.fastboot
(from rev 721673, android-tools/trunk/bash_completion.fastboot)
  
android-tools/repos/community-testing-x86_64/boringssl-disable-thirdpartydeps.patch
(from rev 721673, 
android-tools/trunk/boringssl-disable-thirdpartydeps.patch)
  android-tools/repos/community-testing-x86_64/build.ninja
(from rev 721673, android-tools/trunk/build.ninja)
  android-tools/repos/community-testing-x86_64/deployagent.jar
(from rev 721673, android-tools/trunk/deployagent.jar)
  android-tools/repos/community-testing-x86_64/fix_build_core.patch
(from rev 721673, android-tools/trunk/fix_build_core.patch)
  android-tools/repos/community-testing-x86_64/fix_libziparchive.patch
(from rev 721673, android-tools/trunk/fix_libziparchive.patch)

+
 PKGBUILD   |  100 +
 bash_completion.fastboot   |   90 
 boringssl-disable-thirdpartydeps.patch |   24 +
 build.ninja|  613 +++
 fix_build_core.patch   |  252 
 fix_libziparchive.patch|   12 
 6 files changed, 1091 insertions(+)

Copied: android-tools/repos/community-testing-x86_64/PKGBUILD (from rev 721673, 
android-tools/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-08 02:07:18 UTC (rev 721674)
@@ -0,0 +1,100 @@
+# Maintainer: Anatol Pomozov
+# Contributor: 謝致邦 
+# Contributor: Alucryd 
+
+pkgname=android-tools
+pkgver=30.0.4
+pkgrel=1
+_tag=platform-tools-$pkgver
+pkgdesc='Android platform tools'
+arch=(x86_64)
+url='http://tools.android.com/'
+license=(Apache MIT)
+depends=(pcre2 libusb protobuf brotli)
+optdepends=('python: for mkbootimg script'
+'python2: for unpack_bootimg & avbtool scripts')
+# it depends on 'vim' because of 'xxd' tool.
+makedepends=(git clang gtest ruby cmake ninja go vim)
+provides=(fastboot adb)
+conflicts=(fastboot adb)
+source=(git+https://android.googlesource.com/platform/frameworks/base#tag=$_tag
+
git+https://android.googlesource.com/platform/frameworks/native#tag=$_tag
+git+https://android.googlesource.com/platform/system/core#tag=$_tag
+git+https://android.googlesource.com/platform/system/extras#tag=$_tag
+git+https://android.googlesource.com/platform/system/libbase#tag=$_tag
+
git+https://android.googlesource.com/platform/system/libziparchive#tag=$_tag
+
git+https://android.googlesource.com/platform/system/tools/mkbootimg#tag=$_tag
+
git+https://android.googlesource.com/platform/external/selinux#tag=$_tag
+
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=$_tag
+
git+https://android.googlesource.com/platform/external/e2fsprogs#tag=$_tag
+git+https://android.googlesource.com/platform/external/avb#tag=$_tag
+
git+https://android.googlesource.com/platform/external/boringssl#tag=$_tag
+   build.ninja # copied from 
https://github.com/anatol/android-platform-tools-build
+# deployagent.jar is a library built from Android sources.
+# Building this java library requires a lot of dependencies:
+#  java, protobuf-java, dex compiler, Android base libs.
+# To avoid the complexity we prebuilt the lib from the Android sources directly
+# using following instructions:
+#   (See https://wiki.archlinux.org/index.php/Android for context)
+# 
+#   source build/envsetup.sh
+#   lunch full-eng
+#   mmm system/core/adb/
+#   cp ./target/product/generic/system/framework/deployagent.jar .
+deployagent.jar
+# we disable mDNS functionality as it does not compile with the Arch system 
version of the library
+fix_build_core.patch
+fix_libziparchive.patch
+boringssl-disable-thirdpartydeps.patch
+bash_completion.fastboot)
+# Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  '3e6dc3afe68447212b6dbca74962e9b24a8159b2'
+  'd9dfac30245faa0a96968b96f3acd9ad536f4910'
+  'cc295dc7726821ea9e74158d898a1ff80d291c61'
+  'ce8314d6b1e05e3f4f7ae7828d225fbb07a2a55c'
+  '1c025855a3e7ea351685843a0df45c52a7e674dd'
+  '7004dbd0c193668827174880de6f8434de8ceaee')
+
+prepare() {
+  cd "$srcdir"/core
+  patch -p1 < ../fi

[arch-commits] Commit in android-tools/repos (8 files)

2020-08-01 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 2, 2020 @ 01:46:09
  Author: anatolik
Revision: 667569

archrelease: copy trunk to community-testing-x86_64

Added:
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 667568, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion.fastboot
(from rev 667568, android-tools/trunk/bash_completion.fastboot)
  
android-tools/repos/community-testing-x86_64/boringssl-disable-thirdpartydeps.patch
(from rev 667568, 
android-tools/trunk/boringssl-disable-thirdpartydeps.patch)
  android-tools/repos/community-testing-x86_64/deployagent.jar
(from rev 667568, android-tools/trunk/deployagent.jar)
  android-tools/repos/community-testing-x86_64/fix_build_core.patch
(from rev 667568, android-tools/trunk/fix_build_core.patch)
  android-tools/repos/community-testing-x86_64/fix_libziparchive.patch
(from rev 667568, android-tools/trunk/fix_libziparchive.patch)
  android-tools/repos/community-testing-x86_64/generate_build.rb
(from rev 667568, android-tools/trunk/generate_build.rb)

+
 PKGBUILD   |  102 ++
 bash_completion.fastboot   |   90 +
 boringssl-disable-thirdpartydeps.patch |   24 +
 fix_build_core.patch   |  252 +++
 fix_libziparchive.patch|   12 
 generate_build.rb  |  490 +++
 6 files changed, 970 insertions(+)

Copied: android-tools/repos/community-testing-x86_64/PKGBUILD (from rev 667568, 
android-tools/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-02 01:46:09 UTC (rev 667569)
@@ -0,0 +1,102 @@
+# Maintainer: Anatol Pomozov
+# Contributor: 謝致邦 
+# Contributor: Alucryd 
+
+pkgname=android-tools
+pkgver=30.0.3
+pkgrel=1
+_tag=platform-tools-$pkgver
+pkgdesc='Android platform tools'
+arch=(x86_64)
+url='http://tools.android.com/'
+license=(Apache MIT)
+depends=(pcre2 libusb protobuf brotli)
+optdepends=('python: for mkbootimg script'
+'python2: for unpack_bootimg & avbtool scripts')
+# it depends on 'vim' because of 'xxd' tool.
+makedepends=(git clang gtest ruby cmake ninja go vim)
+provides=(fastboot adb)
+conflicts=(fastboot adb)
+source=(git+https://android.googlesource.com/platform/frameworks/base#tag=$_tag
+
git+https://android.googlesource.com/platform/frameworks/native#tag=$_tag
+git+https://android.googlesource.com/platform/system/core#tag=$_tag
+git+https://android.googlesource.com/platform/system/extras#tag=$_tag
+   git+https://android.googlesource.com/platform/system/libbase#tag=$_tag
+   
git+https://android.googlesource.com/platform/system/libziparchive#tag=$_tag
+
git+https://android.googlesource.com/platform/system/tools/mkbootimg#tag=$_tag
+
git+https://android.googlesource.com/platform/external/selinux#tag=$_tag
+
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=$_tag
+
git+https://android.googlesource.com/platform/external/e2fsprogs#tag=$_tag
+git+https://android.googlesource.com/platform/external/avb#tag=$_tag
+
git+https://android.googlesource.com/platform/external/boringssl#tag=$_tag
+
#git+https://boringssl.googlesource.com/boringssl#commit=$_boringssl_commit
+generate_build.rb
+# deployagent.jar is a library built from Android sources.
+# Building this java library requires a lot of dependencies:
+#  java, protobuf-java, dex compiler, Android base libs.
+# To avoid the complexity we prebuilt the lib from the Android sources directly
+# using following instructions:
+#   (See https://wiki.archlinux.org/index.php/Android for context)
+# 
+#   source build/envsetup.sh
+#   lunch full-eng
+#   mmm system/core/adb/
+#   cp ./target/product/generic/system/framework/deployagent.jar .
+deployagent.jar
+# we disable mDNS functionality as it does not compile with the Arch system 
version of the library
+fix_build_core.patch
+   fix_libziparchive.patch
+boringssl-disable-thirdpartydeps.patch
+bash_completion.fastboot)
+# Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  '8c95ce0bbc39bf1fe37213497af924ad10f195b4'
+  'd9dfac30245faa0a96968b96f3acd9ad536f4910'
+  '61b1bcf230be39a5f9544e82d43269a20bfb9ef2'
+  'ce8314d6b1e05e3f4f7ae7828d225fbb07a2a55c'
+  '1c025855a3e7ea351685843a0df45c52a7e674dd'
+  '7004dbd0c193668827174880de6f8434de8ceaee')
+
+prepare() {
+  cd "$

[arch-commits] Commit in android-tools/repos (8 files)

2020-05-29 Thread Lukas Fleischer via arch-commits
Date: Friday, May 29, 2020 @ 18:29:52
  Author: lfleischer
Revision: 637234

db-move: moved android-tools from [community-staging] to [community-testing] 
(x86_64)

Added:
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 637233, android-tools/repos/community-staging-x86_64/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion.fastboot
(from rev 637233, 
android-tools/repos/community-staging-x86_64/bash_completion.fastboot)
  
android-tools/repos/community-testing-x86_64/boringssl-disable-thirdpartydeps.patch
(from rev 637233, 
android-tools/repos/community-staging-x86_64/boringssl-disable-thirdpartydeps.patch)
  android-tools/repos/community-testing-x86_64/deployagent.jar
(from rev 637233, 
android-tools/repos/community-staging-x86_64/deployagent.jar)
  android-tools/repos/community-testing-x86_64/fix_build_core.patch
(from rev 637233, 
android-tools/repos/community-staging-x86_64/fix_build_core.patch)
  android-tools/repos/community-testing-x86_64/generate_build.rb
(from rev 637233, 
android-tools/repos/community-staging-x86_64/generate_build.rb)
Deleted:
  android-tools/repos/community-staging-x86_64/

+
 PKGBUILD   |   93 +
 bash_completion.fastboot   |   90 +
 boringssl-disable-thirdpartydeps.patch |   24 +
 fix_build_core.patch   |  176 +++
 generate_build.rb  |  490 +++
 5 files changed, 873 insertions(+)

Copied: android-tools/repos/community-testing-x86_64/PKGBUILD (from rev 637233, 
android-tools/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-29 18:29:52 UTC (rev 637234)
@@ -0,0 +1,93 @@
+# Maintainer: Anatol Pomozov
+# Contributor: 謝致邦 
+# Contributor: Alucryd 
+
+pkgname=android-tools
+pkgver=30.0.0
+pkgrel=2
+tag=platform-tools-$pkgver
+pkgdesc='Android platform tools'
+arch=(x86_64)
+url='http://tools.android.com/'
+license=(Apache MIT)
+depends=(pcre2 libusb protobuf brotli)
+optdepends=('python: for mkbootimg script'
+'python2: for unpack_bootimg & avbtool scripts')
+# it depends on 'vim' because of 'xxd' tool.
+makedepends=(git clang gtest ruby cmake ninja go vim)
+provides=(fastboot adb)
+conflicts=(fastboot adb)
+#_boringssl_commit=$(curl 
https://android.googlesource.com/platform/external/boringssl/+/refs/tags/$tag/BORINGSSL_REVISION?format=TEXT
 | base64 -d)
+source=(git+https://android.googlesource.com/platform/frameworks/base#tag=$tag
+
git+https://android.googlesource.com/platform/frameworks/native#tag=$tag
+git+https://android.googlesource.com/platform/system/core#tag=$tag
+git+https://android.googlesource.com/platform/system/extras#tag=$tag
+
git+https://android.googlesource.com/platform/system/tools/mkbootimg#tag=$tag
+git+https://android.googlesource.com/platform/external/selinux#tag=$tag
+
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=$tag
+
git+https://android.googlesource.com/platform/external/e2fsprogs#tag=$tag
+git+https://android.googlesource.com/platform/external/avb#tag=$tag
+
git+https://android.googlesource.com/platform/external/boringssl#tag=$tag
+
#git+https://boringssl.googlesource.com/boringssl#commit=$_boringssl_commit
+generate_build.rb
+# deployagent.jar is a library built from Android sources.
+# Building this java library requires a lot of dependencies:
+#  java, protobuf-java, dex compiler, Android base libs.
+# To avoid the complexity we prebuilt the lib from the Android sources directly
+# using following instructions:
+#   (See https://wiki.archlinux.org/index.php/Android for context)
+# 
+#   source build/envsetup.sh
+#   lunch full-eng
+#   mmm system/core/adb/
+#   cp ./target/product/generic/system/framework/deployagent.jar .
+deployagent.jar
+fix_build_core.patch
+boringssl-disable-thirdpartydeps.patch
+bash_completion.fastboot)
+# Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  '4aec96639c5a16e75fac907bc5a8ea6a7efca047'
+  'd9dfac30245faa0a96968b96f3acd9ad536f4910'
+  '70abd4483233ee481490b3369dbdd492c57f'
+  '1c025855a3e7ea351685843a0df45c52a7e674dd'
+  '7004dbd0c193668827174880de6f8434de8ceaee')
+
+prepare() {
+  cd "$srcdir"/core
+  patch -p1 < ../fix_build_core.patch
+
+  cd "$srcdir"/avb
+  sed -i 's|/usr/bin/env python$|/usr/bin/env python2|g' avbtool
+
+  cd "$srcdir"/mkbootimg
+ 

[arch-commits] Commit in android-tools/repos (8 files)

2016-01-10 Thread Anatol Pomozov
Date: Monday, January 11, 2016 @ 04:18:07
  Author: anatolik
Revision: 155916

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/Makefile
(from rev 155915, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 155915, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 155915, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/Makefile
(from rev 155915, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 155915, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 155915, android-tools/trunk/bash_completion)

--+
 community-testing-i686/Makefile  |  101 ++
 community-testing-i686/PKGBUILD  |   41 +
 community-testing-i686/bash_completion   |  203 +
 community-testing-x86_64/Makefile|  101 ++
 community-testing-x86_64/PKGBUILD|   41 +
 community-testing-x86_64/bash_completion |  203 +
 6 files changed, 690 insertions(+)

Copied: android-tools/repos/community-testing-i686/Makefile (from rev 155915, 
android-tools/trunk/Makefile)
===
--- community-testing-i686/Makefile (rev 0)
+++ community-testing-i686/Makefile 2016-01-11 03:18:07 UTC (rev 155916)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_SR

[arch-commits] Commit in android-tools/repos (8 files)

2015-09-27 Thread Anatol Pomozov
Date: Sunday, September 27, 2015 @ 13:03:44
  Author: anatolik
Revision: 141686

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/Makefile
(from rev 141685, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 141685, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 141685, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/Makefile
(from rev 141685, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 141685, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 141685, android-tools/trunk/bash_completion)

--+
 community-testing-i686/Makefile  |  101 ++
 community-testing-i686/PKGBUILD  |   41 +
 community-testing-i686/bash_completion   |  203 +
 community-testing-x86_64/Makefile|  101 ++
 community-testing-x86_64/PKGBUILD|   41 +
 community-testing-x86_64/bash_completion |  203 +
 6 files changed, 690 insertions(+)

Copied: android-tools/repos/community-testing-i686/Makefile (from rev 141685, 
android-tools/trunk/Makefile)
===
--- community-testing-i686/Makefile (rev 0)
+++ community-testing-i686/Makefile 2015-09-27 11:03:44 UTC (rev 141686)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_

[arch-commits] Commit in android-tools/repos (8 files)

2015-08-21 Thread Anatol Pomozov
Date: Friday, August 21, 2015 @ 17:23:54
  Author: anatolik
Revision: 138600

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/Makefile
(from rev 138599, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 138599, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 138599, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/Makefile
(from rev 138599, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 138599, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 138599, android-tools/trunk/bash_completion)

--+
 community-testing-i686/Makefile  |  101 ++
 community-testing-i686/PKGBUILD  |   41 +
 community-testing-i686/bash_completion   |  203 +
 community-testing-x86_64/Makefile|  101 ++
 community-testing-x86_64/PKGBUILD|   41 +
 community-testing-x86_64/bash_completion |  203 +
 6 files changed, 690 insertions(+)

Copied: android-tools/repos/community-testing-i686/Makefile (from rev 138599, 
android-tools/trunk/Makefile)
===
--- community-testing-i686/Makefile (rev 0)
+++ community-testing-i686/Makefile 2015-08-21 15:23:54 UTC (rev 138600)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_SRC

[arch-commits] Commit in android-tools/repos (8 files)

2015-06-25 Thread Anatol Pomozov
Date: Thursday, June 25, 2015 @ 21:03:14
  Author: anatolik
Revision: 135875

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/Makefile
(from rev 135874, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 135874, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 135874, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/Makefile
(from rev 135874, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 135874, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 135874, android-tools/trunk/bash_completion)

--+
 community-testing-i686/Makefile  |  101 ++
 community-testing-i686/PKGBUILD  |   41 +
 community-testing-i686/bash_completion   |  202 +
 community-testing-x86_64/Makefile|  101 ++
 community-testing-x86_64/PKGBUILD|   41 +
 community-testing-x86_64/bash_completion |  202 +
 6 files changed, 688 insertions(+)

Copied: android-tools/repos/community-testing-i686/Makefile (from rev 135874, 
android-tools/trunk/Makefile)
===
--- community-testing-i686/Makefile (rev 0)
+++ community-testing-i686/Makefile 2015-06-25 19:03:14 UTC (rev 135875)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_SRC

[arch-commits] Commit in android-tools/repos (8 files)

2015-06-15 Thread Anatol Pomozov
Date: Monday, June 15, 2015 @ 22:11:32
  Author: anatolik
Revision: 135455

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/Makefile
(from rev 135454, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 135454, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 135454, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/Makefile
(from rev 135454, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 135454, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 135454, android-tools/trunk/bash_completion)

--+
 community-testing-i686/Makefile  |  101 ++
 community-testing-i686/PKGBUILD  |   41 +
 community-testing-i686/bash_completion   |  202 +
 community-testing-x86_64/Makefile|  101 ++
 community-testing-x86_64/PKGBUILD|   41 +
 community-testing-x86_64/bash_completion |  202 +
 6 files changed, 688 insertions(+)

Copied: android-tools/repos/community-testing-i686/Makefile (from rev 135454, 
android-tools/trunk/Makefile)
===
--- community-testing-i686/Makefile (rev 0)
+++ community-testing-i686/Makefile 2015-06-15 20:11:32 UTC (rev 135455)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_SRCS 

[arch-commits] Commit in android-tools/repos (8 files)

2015-05-18 Thread Anatol Pomozov
Date: Tuesday, May 19, 2015 @ 05:22:48
  Author: anatolik
Revision: 133753

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/Makefile
(from rev 133752, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 133752, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 133752, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/Makefile
(from rev 133752, android-tools/trunk/Makefile)
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 133752, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 133752, android-tools/trunk/bash_completion)

--+
 community-testing-i686/Makefile  |  101 ++
 community-testing-i686/PKGBUILD  |   41 +
 community-testing-i686/bash_completion   |  202 +
 community-testing-x86_64/Makefile|  101 ++
 community-testing-x86_64/PKGBUILD|   41 +
 community-testing-x86_64/bash_completion |  202 +
 6 files changed, 688 insertions(+)

Copied: android-tools/repos/community-testing-i686/Makefile (from rev 133752, 
android-tools/trunk/Makefile)
===
--- community-testing-i686/Makefile (rev 0)
+++ community-testing-i686/Makefile 2015-05-19 03:22:48 UTC (rev 133753)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_OBJ)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_SRCS +