Date: Sunday, March 12, 2023 @ 22:40:36
Author: svenstaro
Revision: 1419585
archrelease: copy trunk to community-x86_64
Added:
opengv/repos/community-x86_64/PKGBUILD
(from rev 1419584, opengv/trunk/PKGBUILD)
Deleted:
opengv/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 101 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 51 insertions(+), 50 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-12 22:40:23 UTC (rev 1419584)
+++ PKGBUILD 2023-03-12 22:40:36 UTC (rev 1419585)
@@ -1,50 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <[email protected]>
-pkgname=opengv
-pkgver=1.0.git1
-_commit=91f4b19
-pkgrel=2
-pkgdesc="An efficient C++ library for calibrated camera pose computation using
geometric computer vision algorithms"
-arch=('x86_64')
-url="https://laurentkneip.github.io/opengv/"
-license=('BSD')
-depends=('eigen' 'python-numpy')
-makedepends=('cmake' 'git' 'ninja')
-source=("git+https://github.com/laurentkneip/opengv.git#commit=$_commit"
- "git+https://github.com/pybind/pybind11.git")
-sha256sums=('SKIP'
- 'SKIP')
-
-prepare() {
- cd opengv
-
- git submodule init
- git config submodule.pybind11.url "${srcdir}/pybind11"
- git submodule update
-}
-
-build() {
- cd opengv
-
- cmake \
- -Bbuild \
- -GNinja \
- -DCMAKE_BUILD_TYPE=None \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_SHARED_LIBS=ON \
- -DBUILD_PYTHON=ON
- ninja -C build
-}
-
-package() {
- cd opengv
-
- DESTDIR="$pkgdir/" ninja -C build install
-
- install -Dm644 License.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-check() {
- cd opengv
-
- ninja -C build test
-}
Copied: opengv/repos/community-x86_64/PKGBUILD (from rev 1419584,
opengv/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-12 22:40:36 UTC (rev 1419585)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase <[email protected]>
+pkgname=opengv
+pkgver=1.0.git1
+_commit=91f4b19
+pkgrel=3
+pkgdesc="An efficient C++ library for calibrated camera pose computation using
geometric computer vision algorithms"
+arch=('x86_64')
+url="https://laurentkneip.github.io/opengv/"
+license=('BSD')
+depends=('eigen' 'python-numpy' 'pybind11')
+makedepends=('cmake' 'git' 'ninja')
+source=("git+https://github.com/laurentkneip/opengv.git#commit=$_commit"
+
https://salsa.debian.org/science-team/opengv/-/raw/master/debian/patches/no-march-options.patch
+
https://salsa.debian.org/science-team/opengv/-/raw/master/debian/patches/use-system-pybind11.patch)
+sha256sums=('SKIP'
+ 'e483d0c1a4a76920ac3260999978154b12422c42e9991e69afc9230643d5c24a'
+ '20832cd52808bd7ef2f6bee8a5c85f69fc0fe6c82169e2b2297781f4bdcdd3ae')
+
+prepare() {
+ cd opengv
+
+ patch -Np1 -i "${srcdir}/no-march-options.patch"
+ patch -Np1 -i "${srcdir}/use-system-pybind11.patch"
+}
+
+build() {
+ cd opengv
+
+ cmake \
+ -Bbuild \
+ -GNinja \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_SHARED_LIBS=ON \
+ -DBUILD_PYTHON=ON
+ ninja -C build
+}
+
+check() {
+ cd opengv
+
+ ninja -C build test
+}
+
+package() {
+ cd opengv
+
+ DESTDIR="$pkgdir/" ninja -C build install
+
+ install -Dm644 License.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}