Date: Saturday, March 4, 2023 @ 08:41:08
  Author: arojas
Revision: 1411501

archrelease: copy trunk to community-x86_64

Added:
  flatbuffers/repos/community-x86_64/PKGBUILD
    (from rev 1411500, flatbuffers/trunk/PKGBUILD)
Deleted:
  flatbuffers/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  130 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-03-04 08:40:59 UTC (rev 1411500)
+++ PKGBUILD    2023-03-04 08:41:08 UTC (rev 1411501)
@@ -1,65 +0,0 @@
-# Maintainer: Antonio Rojas <[email protected]>
-# Maintainer: Chih-Hsuan Yen <[email protected]>
-# Contributor: Daichi Shinozaki <[email protected]>
-
-pkgbase=flatbuffers
-pkgname=(flatbuffers python-flatbuffers)
-# https://github.com/google/flatbuffers/blob/master/CHANGELOG.md
-pkgver=23.1.21
-pkgrel=1
-pkgdesc='An efficient cross platform serialization library for C++, with 
support for Java, C# and Go'
-arch=(x86_64)
-url='https://google.github.io/flatbuffers/'
-license=(Apache)
-depends=(gcc-libs)
-makedepends=(cmake python-setuptools python-numpy)
-source=(https://github.com/google/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz)
-sha256sums=('d84cb25686514348e615163b458ae0767001b24b42325f426fd56406fd384238')
-
-prepare() {
-  sed -i 's/-Werror=/-W/g;s/-Werror//g' $pkgname-$pkgver/CMakeLists.txt
-
-  cd $pkgbase-$pkgver
-  # Work-around missing out-of-source build support in Python tests
-  sed -i 's#${test_dir}/../flatc#${test_dir}/../../build/flatc#' 
tests/PythonTest.sh
-  # This script no longer works for us after 
https://github.com/google/flatbuffers/pull/7529
-  # TODO: notify upstream about this and that the Python workflow [1] doesn't 
work [2]
-  # [1] 
https://github.com/google/flatbuffers/blob/v22.9.24/.github/workflows/build.yml#L413
-  # [2] 
https://github.com/google/flatbuffers/actions/runs/3103852116/jobs/5034196360
-  sed -i 's#${test_dir}/../../python#${test_dir}/../python#' 
tests/PythonTest.sh
-}
-
-build() {
-  cmake -B build -S $pkgbase-$pkgver \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DFLATBUFFERS_BUILD_FLATLIB=OFF \
-    -DFLATBUFFERS_BUILD_SHAREDLIB=ON
-  cmake --build build
-
-# Python bindings
-  cd $pkgbase-$pkgver/python
-  VERSION=$pkgver python setup.py build
-}
-
-check() {
-  # tests are broken with out-of-source builds
-  # https://github.com/google/flatbuffers/issues/7282
-  cmake --build build --target test || true
-
-  ./$pkgbase-$pkgver/tests/PythonTest.sh
-}
-
-package_flatbuffers() {
-  DESTDIR="$pkgdir" cmake --install build
-}
-
-package_python-flatbuffers() {
-  pkgdesc='An efficient cross platform serialization library for Python'
-  depends=(python)
-  optdepends=(
-    'python-numpy: support for Numpy arrays'
-  )
-
-  cd $pkgbase-$pkgver/python
-  VERSION=$pkgver python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
-}

Copied: flatbuffers/repos/community-x86_64/PKGBUILD (from rev 1411500, 
flatbuffers/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-03-04 08:41:08 UTC (rev 1411501)
@@ -0,0 +1,65 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: Daichi Shinozaki <[email protected]>
+
+pkgbase=flatbuffers
+pkgname=(flatbuffers python-flatbuffers)
+# https://github.com/google/flatbuffers/blob/master/CHANGELOG.md
+pkgver=23.3.3
+pkgrel=1
+pkgdesc='An efficient cross platform serialization library for C++, with 
support for Java, C# and Go'
+arch=(x86_64)
+url='https://google.github.io/flatbuffers/'
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(cmake python-setuptools python-numpy)
+source=(https://github.com/google/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz)
+sha256sums=('8aff985da30aaab37edf8e5b02fda33ed4cbdd962699a8e2af98fdef306f4e4d')
+
+prepare() {
+  sed -i 's/-Werror=/-W/g;s/-Werror//g' $pkgname-$pkgver/CMakeLists.txt
+
+  cd $pkgbase-$pkgver
+  # Work-around missing out-of-source build support in Python tests
+  sed -i 's#${test_dir}/../flatc#${test_dir}/../../build/flatc#' 
tests/PythonTest.sh
+  # This script no longer works for us after 
https://github.com/google/flatbuffers/pull/7529
+  # TODO: notify upstream about this and that the Python workflow [1] doesn't 
work [2]
+  # [1] 
https://github.com/google/flatbuffers/blob/v22.9.24/.github/workflows/build.yml#L413
+  # [2] 
https://github.com/google/flatbuffers/actions/runs/3103852116/jobs/5034196360
+  sed -i 's#${test_dir}/../../python#${test_dir}/../python#' 
tests/PythonTest.sh
+}
+
+build() {
+  cmake -B build -S $pkgbase-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DFLATBUFFERS_BUILD_FLATLIB=OFF \
+    -DFLATBUFFERS_BUILD_SHAREDLIB=ON
+  cmake --build build
+
+# Python bindings
+  cd $pkgbase-$pkgver/python
+  VERSION=$pkgver python setup.py build
+}
+
+check() {
+  # tests are broken with out-of-source builds
+  # https://github.com/google/flatbuffers/issues/7282
+  cmake --build build --target test || true
+
+  ./$pkgbase-$pkgver/tests/PythonTest.sh
+}
+
+package_flatbuffers() {
+  DESTDIR="$pkgdir" cmake --install build
+}
+
+package_python-flatbuffers() {
+  pkgdesc='An efficient cross platform serialization library for Python'
+  depends=(python)
+  optdepends=(
+    'python-numpy: support for Numpy arrays'
+  )
+
+  cd $pkgbase-$pkgver/python
+  VERSION=$pkgver python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
+}

Reply via email to