[arch-commits] Commit in fcitx-mozc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 07:11:54
  Author: farseerfc
Revision: 774841

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 774840, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  284 ++---
 1 file changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 07:11:26 UTC (rev 774840)
+++ PKGBUILD2020-12-14 07:11:54 UTC (rev 774841)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Jiachen Yang 
-# Contributor: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Debug
-_mozc_commit=a79768d
-_japanese_usage_dictionary_commit=a4a6677
-_breakpad_commit=78180df
-_gtest_commit=fbef071
-_gyp_commit=caa6002
-_jsoncpp_commit=8954092
-_protobuf_commit=87f1d9e
-_zinnia_commit=581faa8
-_abseil_cpp_commit=a479881
-
-
-
-_zipcode_rel=201810
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.25.4150.102
-pkgrel=2
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx')
-makedepends=('pkg-config' 'python' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang' 'python-six')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx' 'fcitx5-mozc')
-source=(git+https://github.com/fcitx/mozc.git#commit=${_mozc_commit}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
-
git+https://chromium.googlesource.com/breakpad/breakpad#commit=${_breakpad_commit}
-git+https://github.com/google/googletest.git#commit=${_gtest_commit}
-
git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_commit}
-
git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_commit}
-
git+https://github.com/open-source-parsers/jsoncpp.git#commit=${_jsoncpp_commit}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_commit}
-git+https://github.com/taku910/zinnia.git#commit=${_zinnia_commit}
-
git+https://github.com/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
-   )
-sha512sums=('SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  cd "$srcdir/mozc"
-  git submodule init
-  git config submodule.src/third_party/breakpad.url "$srcdir/breakpad"
-  git config submodule.src/third_party/gtest.url "$srcdir/googletest"
-  git config submodule.src/third_party/gyp.url "$srcdir/gyp"
-  git config submodule.src/third_party/japanese_usage_dictionary.url 
"$srcdir/japanese-usage-dictionary"
-  git config submodule.src/third_party/jsoncpp.url "$srcdir/jsoncpp"
-  git config submodule.src/third_party/protobuf.url "$srcdir/protobuf"
-  git config submodule.src/third_party/zinnia.url "$srcdir/zinnia"
-  git config submodule.src/third_party/abseil-cpp.url "$srcdir/abseil-cpp"
-  git submodule update
-
-  cd src
-  # Generate zip code seed
-  echo "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  echo "Done."
-
-  # disable fcitx5 target
-  rm unix/fcitx5/fcitx5.gyp
-  
-  # fix mozc icon for kimpanel
-  sed -i "s|PREFIX|/usr|" unix/fcitx/mozc.conf
-
-  ## use libstdc++ instead of libc++
-  sed "/stdlib=libc++/d;/-lc++/d" -i gyp/common.gypi
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python build_mozc.py gyp
-  python build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of 

[arch-commits] Commit in fcitx-mozc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-10 Thread Jiachen Yang via arch-commits
Date: Wednesday, November 11, 2020 @ 02:34:09
  Author: farseerfc
Revision: 749945

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 749944, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  284 ++---
 1 file changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-11 02:33:32 UTC (rev 749944)
+++ PKGBUILD2020-11-11 02:34:09 UTC (rev 749945)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Jiachen Yang 
-# Contributor: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Debug
-_mozc_commit=a79768d
-_japanese_usage_dictionary_commit=a4a6677
-_breakpad_commit=78180df
-_gtest_commit=fbef071
-_gyp_commit=caa6002
-_jsoncpp_commit=8954092
-_protobuf_commit=87f1d9e
-_zinnia_commit=581faa8
-_abseil_cpp_commit=a479881
-
-
-
-_zipcode_rel=201810
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.25.4150.102
-pkgrel=1
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx')
-makedepends=('pkg-config' 'python' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang' 'python-six')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx' 'fcitx-mozc')
-source=(git+https://github.com/fcitx/mozc.git#commit=${_mozc_commit}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
-
git+https://chromium.googlesource.com/breakpad/breakpad#commit=${_breakpad_commit}
-git+https://github.com/google/googletest.git#commit=${_gtest_commit}
-
git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_commit}
-
git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_commit}
-
git+https://github.com/open-source-parsers/jsoncpp.git#commit=${_jsoncpp_commit}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_commit}
-git+https://github.com/taku910/zinnia.git#commit=${_zinnia_commit}
-
git+https://github.com/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
-   )
-sha512sums=('SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  cd "$srcdir/mozc"
-  git submodule init
-  git config submodule.src/third_party/breakpad.url "$srcdir/breakpad"
-  git config submodule.src/third_party/gtest.url "$srcdir/googletest"
-  git config submodule.src/third_party/gyp.url "$srcdir/gyp"
-  git config submodule.src/third_party/japanese_usage_dictionary.url 
"$srcdir/japanese-usage-dictionary"
-  git config submodule.src/third_party/jsoncpp.url "$srcdir/jsoncpp"
-  git config submodule.src/third_party/protobuf.url "$srcdir/protobuf"
-  git config submodule.src/third_party/zinnia.url "$srcdir/zinnia"
-  git config submodule.src/third_party/abseil-cpp.url "$srcdir/abseil-cpp"
-  git submodule update
-
-  cd src
-  # Generate zip code seed
-  echo "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  echo "Done."
-
-  # disable fcitx5 target
-  rm unix/fcitx5/fcitx5.gyp
-  
-  # fix mozc icon for kimpanel
-  sed -i "s|PREFIX|/usr|" unix/fcitx/mozc.conf
-
-  ## use libstdc++ instead of libc++
-  sed "/stdlib=libc++/d;/-lc++/d" -i gyp/common.gypi
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python build_mozc.py gyp
-  python build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of 

[arch-commits] Commit in fcitx-mozc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-10 Thread Jiachen Yang via arch-commits
Date: Wednesday, November 11, 2020 @ 02:05:52
  Author: farseerfc
Revision: 749939

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 749938, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  269 -
 1 file changed, 142 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-11 02:05:19 UTC (rev 749938)
+++ PKGBUILD2020-11-11 02:05:52 UTC (rev 749939)
@@ -1,127 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Release
-
-_mozc_rev=afb03ddfe72dde4cf2409863a3bfea160f7a66d8
-_japanese_usage_dictionary_rev=a4a66772e33746b91e99caceecced9a28507e925
-_gyp_rev=4ec6c4e3a94bd04a6da2858163d40b2429b8aad1 
-_protobuf_rev=92a7e778e7394386f413cec28d67a07630f784b1
-_zipcode_rel=201810
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.23.2815.102
-_fcitx_patchver=${pkgver}.1
-pkgrel=4
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(
-   git+https://github.com/google/mozc.git#commit=${_mozc_rev}
-   
pr444.patch::https://github.com/google/mozc/pull/444/commits/82d38f929882a9c62289b179c6fe41efed249987.patch
-   
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
-   
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
-   git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
-   
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-   https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-   
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
-sha512sums=('SKIP'
-
'0c6ebf6a8579b6fc3f7d6b292d1aca6b1a3825030e78b4f46bb1c49bcf1c559ae82081bd459de5ee3aa7bf803af83e8ddc77157553da342f030442934e4877fb'
-'SKIP'
-'SKIP'
-'SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
-
'e0d4645df919838f0fe31a97bf6dd759c222a696f68133f7584d2c771f70734ea634a25bebb03a756221000d3552423207ee5163d75778dbf480b6e267ba4cd0'
-'SKIP'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  mv mozc-gyp gyp
-
-  cd mozc
-  # Apply gcc8.1 patch in PR#444
-  patch -Np1 -i "$srcdir/pr444.patch"
-
-  cd src
-
-  # Apply fcitx patch
-  rm unix/fcitx -rf
-  patch -Np2 -i "$srcdir/fcitx-mozc-${_fcitx_patchver}.patch"
-  # Disable fcitx5 specific building 
-  rm unix/fcitx5 -rf
-
-  # Adjust to use python2
-  find . -name  \*.py-type f -exec sed -i -e "1s|python.*$|python2|"  
{} +
-  find . -regex '.*\.gypi?$' -type f -exec sed -i -e "s|'python'|'python2'|g" 
{} +
-
-  # Generate zip code seed
-  msg "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python2 dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  msg "Done."
-
-  # Copy third party deps
-  cd "$srcdir"
-  for dep in gyp protobuf japanese_usage_dictionary
-  do
-cp -a $dep mozc/src/third_party/
-  done
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python2 build_mozc.py gyp
-  python2 build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc > LICENSE
-}
-
-package() {
-  cd mozc/src
-  install -D -m 755 out_linux/${_bldtype}/mozc_server 
"${pkgdir}/usr/lib/mozc/mozc_server"
-  install-m 755 out_linux/${_bldtype}/mozc_tool   
"${pkgdir}/usr/lib/mozc/mozc_tool"
-
-  install -d 

[arch-commits] Commit in fcitx-mozc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-02-19 Thread Jiachen Yang via arch-commits
Date: Wednesday, February 20, 2019 @ 05:56:44
  Author: farseerfc
Revision: 434658

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 434657, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  255 ++---
 1 file changed, 127 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 05:55:57 UTC (rev 434657)
+++ PKGBUILD2019-02-20 05:56:44 UTC (rev 434658)
@@ -1,128 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Release
-
-_mozc_rev=afb03ddfe72dde4cf2409863a3bfea160f7a66d8
-_japanese_usage_dictionary_rev=a4a66772e33746b91e99caceecced9a28507e925
-_gyp_rev=4ec6c4e3a94bd04a6da2858163d40b2429b8aad1 
-_protobuf_rev=92a7e778e7394386f413cec28d67a07630f784b1
-_zipcode_rel=201807
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.23.2815.102
-_fcitx_patchver=${pkgver}.1
-pkgrel=2
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(
-   git+https://github.com/google/mozc.git#commit=${_mozc_rev}
-   
pr444.patch::https://github.com/google/mozc/pull/444/commits/82d38f929882a9c62289b179c6fe41efed249987.patch
-   
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
-   
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
-   git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
-   
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-   https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-   
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
-sha512sums=('SKIP'
-
'0c6ebf6a8579b6fc3f7d6b292d1aca6b1a3825030e78b4f46bb1c49bcf1c559ae82081bd459de5ee3aa7bf803af83e8ddc77157553da342f030442934e4877fb'
-'SKIP'
-'SKIP'
-'SKIP'
-
'36603203eee8ef044903af05d38b87496cd5cf3c2eb99d9c390aca5b2a6975bc96a85342bf0996a98d374566f507ae84a6693be26d9e7b10b5bb74b04e6d2e7f'
-
'0c868dc42f8f162f489aa72039852e67fe03d4f10770a90c3b1b863beff86382d31585fbd63c3ece3911a599a047c0add1249319e2d4e3e3ba441e0614e6fa84'
-
'e0d4645df919838f0fe31a97bf6dd759c222a696f68133f7584d2c771f70734ea634a25bebb03a756221000d3552423207ee5163d75778dbf480b6e267ba4cd0'
-'SKIP'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  mv mozc-gyp gyp
-
-  cd mozc
-  # Apply gcc8.1 patch in PR#444
-  patch -Np1 -i "$srcdir/pr444.patch"
-
-  cd src
-
-  # Apply fcitx patch
-  rm unix/fcitx -rf
-  patch -Np2 -i "$srcdir/fcitx-mozc-${_fcitx_patchver}.patch"
-  # Disable fcitx5 specific building 
-  rm unix/fcitx5 -rf
-
-  # Adjust to use python2
-  find . -name  \*.py-type f -exec sed -i -e "1s|python.*$|python2|"  
{} +
-  find . -regex '.*\.gypi?$' -type f -exec sed -i -e "s|'python'|'python2'|g" 
{} +
-
-  # Generate zip code seed
-  msg "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python2 dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  msg "Done."
-
-  # Copy third party deps
-  cd "$srcdir"
-  for dep in gyp protobuf japanese_usage_dictionary
-  do
-cp -a $dep mozc/src/third_party/
-  done
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python2 build_mozc.py gyp
-  python2 build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc > LICENSE
-}
-
-package() {
-  cd mozc/src
-  install -D -m 755 out_linux/${_bldtype}/mozc_server 
"${pkgdir}/usr/lib/mozc/mozc_server"
-  install-m 755 out_linux/${_bldtype}/mozc_tool   
"${pkgdir}/usr/lib/mozc/mozc_tool"
-
-  install 

[arch-commits] Commit in fcitx-mozc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-08-14 Thread Jiachen Yang via arch-commits
Date: Tuesday, August 14, 2018 @ 16:12:33
  Author: farseerfc
Revision: 371607

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 371606, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  247 +++--
 1 file changed, 128 insertions(+), 119 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:11:14 UTC (rev 371606)
+++ PKGBUILD2018-08-14 16:12:33 UTC (rev 371607)
@@ -1,119 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Release
-
-_mozc_rev=280e38fe3d9db4df52f0713acf2ca65898cd697a
-_japanese_usage_dictionary_rev=e5b3425575734c323e1d947009dd74709437b684
-_gyp_rev=920ee58c3d3109dea3cd37d88054014891a93db7
-_protobuf_rev=a428e42072765993ff674fda72863c9f1aa2d268
-_zipcode_rel=201703
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.20.2673.102
-_fcitx_patchver=2.18.2612.102.1
-pkgrel=2
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(git+https://github.com/google/mozc.git#commit=${_mozc_rev}
-
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
-
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'aecd93a99c460fbbb9790bdf9e024a313b62cf51a1fec23bc19da0f375ddaeec37fe3bdf5d44930d16da9d1ba0b3205a2da008c4be611165ae474c469d173176'
-
'e426652cfa1ab6360c00770a76d12089165ba66364aaf8b6dcd3b6bf9fc7b154ec490eea77476eefd7e1551cf84165a45f165bb6cfab4964a1bb682220e11e28'
-
'725c464727f230707b90975705ef1565f1178f9144e66c5a688696a4ef520a6fec1d11f7aa68ee05f82aa9417060b1cccf49a155e30734871a525eaa4c76addb'
-'SKIP'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  mv mozc-gyp gyp
-
-  cd mozc/src
-
-  # Apply fcitx patch
-  rm unix/fcitx -rf
-  patch -Np2 -i "$srcdir/fcitx-mozc-${_fcitx_patchver}.patch"
-
-  # Adjust to use python2
-  find . -name  \*.py-type f -exec sed -i -e "1s|python.*$|python2|"  
{} +
-  find . -regex '.*\.gypi?$' -type f -exec sed -i -e "s|'python'|'python2'|g" 
{} +
-
-  # Generate zip code seed
-  msg "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python2 dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  msg "Done."
-
-  # Copy third party deps
-  cd "$srcdir"
-  for dep in gyp protobuf japanese_usage_dictionary
-  do
-cp -a $dep mozc/src/third_party/
-  done
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python2 build_mozc.py gyp
-  python2 build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc > LICENSE
-}
-
-package() {
-  cd mozc/src
-  install -D -m 755 out_linux/${_bldtype}/mozc_server 
"${pkgdir}/usr/lib/mozc/mozc_server"
-  install-m 755 out_linux/${_bldtype}/mozc_tool   
"${pkgdir}/usr/lib/mozc/mozc_tool"
-
-  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
-  install -m 644 LICENSE data/installer/*.html 
"${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  for mofile in out_linux/${_bldtype}/gen/unix/fcitx/po/*.mo
-  do
-filename=`basename $mofile`
-lang=${filename/.mo/}
-install -D -m 644 "$mofile" 
"${pkgdir}/usr/share/locale/$lang/LC_MESSAGES/fcitx-mozc.mo"
-  done
-
-  install -D -m 755