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

Antonio Rojas arojas at gemini.archlinux.org
Sat Apr 23 11:34:12 UTC 2022


    Date: Saturday, April 23, 2022 @ 11:34:12
  Author: arojas
Revision: 1187604

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-04-23 11:34:01 UTC (rev 1187603)
+++ PKGBUILD	2022-04-23 11:34:12 UTC (rev 1187604)
@@ -1,119 +0,0 @@
-# Maintainer: Jiachen Yang <farseerfc at archlinux.org>
-# Contributor: Felix Yan <felixonmars at archlinux.org>
-# Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com>
-# Contributor: UTUMI Hirosi <utuhiro78 at yahoo dot co dot jp>
-
-## Mozc compile option
-_bldtype=Release
-_mozc_commit=4d2e3bd
-
-## follow the submodule commits in https://github.com/fcitx/mozc/tree/fcitx/src/third_party
-_abseil_cpp_commit=2151058
-_breakpad_commit=216cea7
-_gtest_commit=703bd9c
-_gyp_commit=caa6002
-_japanese_usage_dictionary_commit=e5b3425
-_jsoncpp_commit=11086dd
-_protobuf_commit=cc7b1b5
-
-## the latest release from https://osdn.net/projects/ponsfoot-aur/storage/mozc/
-_zipcode_rel=202110
-
-_pkgbase=mozc
-pkgname=fcitx5-mozc
-pkgdesc="Fcitx5 Module of A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.26.4632.102.g4d2e3bd
-pkgrel=1
-arch=('x86_64')
-url="https://github.com/google/mozc"
-license=('custom')
-depends=('qt5-base' 'fcitx5')
-makedepends=('pkg-config' 'python' 'curl' 'gtk2' 'mesa' 'subversion' 'bazel' '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://osdn.net/projects/ponsfoot-aur/storage/mozc/jigyosyo-${_zipcode_rel}.zip
-        https://osdn.net/projects/ponsfoot-aur/storage/mozc/x-ken-all-${_zipcode_rel}.zip
-        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/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
-	)
-sha512sums=('SKIP'
-            '606f45d48a9dad0e80a566cab0001910de3c6b2f634ec52c6ef6f44745b55ae8e181b3e3cdf90525a08be1f180eb35900672c90c6ab4f43679a178e863378bbc'
-            'dec6479b42ddc1355cd882d17824cd874d8f103ad7767bac3f490f04551059d65b2806fa9e3f39a50ced2ecfdd37b75c9ed4536d9ad3bcef9e8c5ae1ec10e302'
-            'SKIP'
-            'SKIP'
-            'SKIP'
-            'SKIP'
-            'SKIP'
-            'SKIP'
-            'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-pkgver(){
-  cd mozc
-  # change pkgver is OK because we fixed commit
-  # parse major.minor.buildid from version template, revision is fixed to 102 for Linux
-  _bzr_ver=$(sed 's/ //g;$ a echo $MAJOR.$MINOR.$BUILD_OSS.102' src/data/version/mozc_version_template.bzl | source /dev/stdin)
-  printf "%s.g%s" "${_bzr_ver}" "${_mozc_commit}"
-}
-
-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/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 fcitx4 target
-  rm unix/fcitx/fcitx.gyp
-  
-  # disable android-ndk requirement, even if we don't need it bazel will complain
-  sed "/android_ndk_repository/d" -i WORKSPACE.bazel
-
-  # adjust QT_BASE_PATH
-  sed 's|path = QT_BASE_PATH|path = "/usr/include/qt"|' -i WORKSPACE.bazel
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  QT_BASE_PATH=/usr/include/qt ../scripts/build_fcitx5_bazel
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc > LICENSE
-}
-
-package() {
-  cd mozc/src
-  export PREFIX="${pkgdir}/usr"
-  export _bldtype
-  ../scripts/install_server_bazel
-
-  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
-  install -m 644 LICENSE data/installer/*.html "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  install -d "${PREFIX}/share/fcitx5/addon"
-  install -d "${PREFIX}/share/fcitx5/inputmethod"
-  install -d "${PREFIX}/lib/fcitx5"
-  ../scripts/install_fcitx5_bazel
-}

Copied: fcitx5-mozc/repos/community-x86_64/PKGBUILD (from rev 1187603, fcitx5-mozc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-04-23 11:34:12 UTC (rev 1187604)
@@ -0,0 +1,119 @@
+# Maintainer: Jiachen Yang <farseerfc at archlinux.org>
+# Contributor: Felix Yan <felixonmars at archlinux.org>
+# Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com>
+# Contributor: UTUMI Hirosi <utuhiro78 at yahoo dot co dot jp>
+
+## Mozc compile option
+_bldtype=Release
+_mozc_commit=4d2e3bd
+
+## follow the submodule commits in https://github.com/fcitx/mozc/tree/fcitx/src/third_party
+_abseil_cpp_commit=2151058
+_breakpad_commit=216cea7
+_gtest_commit=703bd9c
+_gyp_commit=caa6002
+_japanese_usage_dictionary_commit=e5b3425
+_jsoncpp_commit=11086dd
+_protobuf_commit=cc7b1b5
+
+## the latest release from https://osdn.net/projects/ponsfoot-aur/storage/mozc/
+_zipcode_rel=202110
+
+_pkgbase=mozc
+pkgname=fcitx5-mozc
+pkgdesc="Fcitx5 Module of A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)"
+pkgver=2.26.4632.102.g4d2e3bd
+pkgrel=2
+arch=('x86_64')
+url="https://github.com/google/mozc"
+license=('custom')
+depends=('qt5-base' 'fcitx5')
+makedepends=('pkg-config' 'python' 'curl' 'gtk2' 'mesa' 'subversion' 'bazel' '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://osdn.net/projects/ponsfoot-aur/storage/mozc/jigyosyo-${_zipcode_rel}.zip
+        https://osdn.net/projects/ponsfoot-aur/storage/mozc/x-ken-all-${_zipcode_rel}.zip
+        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/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
+	)
+sha512sums=('SKIP'
+            '606f45d48a9dad0e80a566cab0001910de3c6b2f634ec52c6ef6f44745b55ae8e181b3e3cdf90525a08be1f180eb35900672c90c6ab4f43679a178e863378bbc'
+            'dec6479b42ddc1355cd882d17824cd874d8f103ad7767bac3f490f04551059d65b2806fa9e3f39a50ced2ecfdd37b75c9ed4536d9ad3bcef9e8c5ae1ec10e302'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
+
+pkgver(){
+  cd mozc
+  # change pkgver is OK because we fixed commit
+  # parse major.minor.buildid from version template, revision is fixed to 102 for Linux
+  _bzr_ver=$(sed 's/ //g;$ a echo $MAJOR.$MINOR.$BUILD_OSS.102' src/data/version/mozc_version_template.bzl | source /dev/stdin)
+  printf "%s.g%s" "${_bzr_ver}" "${_mozc_commit}"
+}
+
+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/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 fcitx4 target
+  rm unix/fcitx/fcitx.gyp
+  
+  # disable android-ndk requirement, even if we don't need it bazel will complain
+  sed "/android_ndk_repository/d" -i WORKSPACE.bazel
+
+  # adjust QT_BASE_PATH
+  sed 's|path = QT_BASE_PATH|path = "/usr/include/qt"|' -i WORKSPACE.bazel
+}
+
+build() {
+  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
+  CFLAGS="${CFLAGS} -fvisibility=hidden"
+  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
+
+  cd mozc/src
+
+  QT_BASE_PATH=/usr/include/qt ../scripts/build_fcitx5_bazel
+
+  # Extract license part of mozc
+  head -n 29 server/mozc_server.cc > LICENSE
+}
+
+package() {
+  cd mozc/src
+  export PREFIX="${pkgdir}/usr"
+  export _bldtype
+  ../scripts/install_server_bazel
+
+  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
+  install -m 644 LICENSE data/installer/*.html "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  install -d "${PREFIX}/share/fcitx5/addon"
+  install -d "${PREFIX}/share/fcitx5/inputmethod"
+  install -d "${PREFIX}/lib/fcitx5"
+  ../scripts/install_fcitx5_bazel
+}



More information about the arch-commits mailing list