[arch-commits] Commit in qt6-3d/repos/extra-x86_64 (4 files)
Antonio Rojas
arojas at archlinux.org
Thu Jul 1 16:07:21 UTC 2021
Date: Thursday, July 1, 2021 @ 16:07:21
Author: arojas
Revision: 418842
archrelease: copy trunk to extra-x86_64
Added:
qt6-3d/repos/extra-x86_64/PKGBUILD
(from rev 418841, qt6-3d/trunk/PKGBUILD)
qt6-3d/repos/extra-x86_64/qt6-3d-gcc11.patch
(from rev 418841, qt6-3d/trunk/qt6-3d-gcc11.patch)
Deleted:
qt6-3d/repos/extra-x86_64/PKGBUILD
qt6-3d/repos/extra-x86_64/qt6-3d-gcc11.patch
--------------------+
PKGBUILD | 74 +++++++++++++++++++++++++--------------------------
qt6-3d-gcc11.patch | 46 +++++++++++++++----------------
2 files changed, 60 insertions(+), 60 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-07-01 16:07:10 UTC (rev 418841)
+++ PKGBUILD 2021-07-01 16:07:21 UTC (rev 418842)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=qt6-3d
-_qtver=6.1.1
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL3 LGPL3 FDL custom)
-pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
-depends=(qt6-base)
-makedepends=(cmake qt6-declarative qt6-shadertools vulkan-headers) # assimp
-optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings')
-groups=(qt6)
-_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
-source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz
- qt6-3d-gcc11.patch)
-sha256sums=('66e25fcf0bd965374f9814ef8fb960ff7c0414ec9480dcdc57caad17f23ede08'
- 'b056d66a24956755c2aaddc4adddd71f5a945ff9795b0cbf9f43ab4d43b4f8f5')
-
-prepare() {
- patch -d $_pkgfn -p1 < qt6-3d-gcc11.patch # Fix build with GCC 11
-}
-
-build() {
- cmake -B build -S $_pkgfn
- cmake --build build
-}
-
-package() {
- DESTDIR="$pkgdir" cmake --install build
-
- install -d "$pkgdir"/usr/share/licenses
- ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
-}
Copied: qt6-3d/repos/extra-x86_64/PKGBUILD (from rev 418841, qt6-3d/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-07-01 16:07:21 UTC (rev 418842)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=qt6-3d
+_qtver=6.1.2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
+depends=(qt6-base)
+makedepends=(cmake qt6-declarative qt6-shadertools vulkan-headers) # assimp
+optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings')
+groups=(qt6)
+_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
+source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz
+ qt6-3d-gcc11.patch)
+sha256sums=('632e6dfa3af4e9ef6d8c54843e5db62b07b3d8a3435d2687e4dd256efd8f0d2d'
+ 'b056d66a24956755c2aaddc4adddd71f5a945ff9795b0cbf9f43ab4d43b4f8f5')
+
+prepare() {
+ patch -d $_pkgfn -p1 < qt6-3d-gcc11.patch # Fix build with GCC 11
+}
+
+build() {
+ cmake -B build -S $_pkgfn
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+
+ install -d "$pkgdir"/usr/share/licenses
+ ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}
Deleted: qt6-3d-gcc11.patch
===================================================================
--- qt6-3d-gcc11.patch 2021-07-01 16:07:10 UTC (rev 418841)
+++ qt6-3d-gcc11.patch 2021-07-01 16:07:21 UTC (rev 418842)
@@ -1,23 +0,0 @@
-diff -ru qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/include/assimp/Importer.hpp qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/include/assimp/Importer.hpp
---- qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/include/assimp/Importer.hpp 2021-06-07 08:29:23.902950055 +0000
-+++ qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/include/assimp/Importer.hpp 2021-06-07 08:30:51.924838527 +0000
-@@ -59,6 +59,8 @@
- // Public ASSIMP data structures
- #include <assimp/types.h>
-
-+#include <exception>
-+
- namespace Assimp {
- // =======================================================================
- // Public interface to Assimp
-diff -ru qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/code/Common/Importer.h qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/code/Common/Importer.h
---- qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/code/Common/Importer.h 2021-06-07 08:34:37.598230479 +0000
-+++ qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/code/Common/Importer.h 2021-06-07 08:35:11.893602448 +0000
-@@ -47,6 +47,7 @@
- #include <map>
- #include <vector>
- #include <string>
-+#include <exception>
- #include <assimp/matrix4x4.h>
-
- struct aiScene;
Copied: qt6-3d/repos/extra-x86_64/qt6-3d-gcc11.patch (from rev 418841, qt6-3d/trunk/qt6-3d-gcc11.patch)
===================================================================
--- qt6-3d-gcc11.patch (rev 0)
+++ qt6-3d-gcc11.patch 2021-07-01 16:07:21 UTC (rev 418842)
@@ -0,0 +1,23 @@
+diff -ru qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/include/assimp/Importer.hpp qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/include/assimp/Importer.hpp
+--- qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/include/assimp/Importer.hpp 2021-06-07 08:29:23.902950055 +0000
++++ qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/include/assimp/Importer.hpp 2021-06-07 08:30:51.924838527 +0000
+@@ -59,6 +59,8 @@
+ // Public ASSIMP data structures
+ #include <assimp/types.h>
+
++#include <exception>
++
+ namespace Assimp {
+ // =======================================================================
+ // Public interface to Assimp
+diff -ru qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/code/Common/Importer.h qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/code/Common/Importer.h
+--- qt3d-everywhere-src-6.1.1.orig/src/3rdparty/assimp/src/code/Common/Importer.h 2021-06-07 08:34:37.598230479 +0000
++++ qt3d-everywhere-src-6.1.1/src/3rdparty/assimp/src/code/Common/Importer.h 2021-06-07 08:35:11.893602448 +0000
+@@ -47,6 +47,7 @@
+ #include <map>
+ #include <vector>
+ #include <string>
++#include <exception>
+ #include <assimp/matrix4x4.h>
+
+ struct aiScene;
More information about the arch-commits
mailing list