[arch-commits] Commit in qt6-3d/repos/kde-unstable-x86_64 (4 files)

Antonio Rojas arojas at gemini.archlinux.org
Thu Sep 16 09:42:34 UTC 2021


    Date: Thursday, September 16, 2021 @ 09:42:34
  Author: arojas
Revision: 424102

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-3d/repos/kde-unstable-x86_64/PKGBUILD
    (from rev 424101, qt6-3d/kde-unstable/PKGBUILD)
  qt6-3d/repos/kde-unstable-x86_64/qt6-3d-gcc11.patch
    (from rev 424101, qt6-3d/kde-unstable/qt6-3d-gcc11.patch)
Deleted:
  qt6-3d/repos/kde-unstable-x86_64/PKGBUILD
  qt6-3d/repos/kde-unstable-x86_64/qt6-3d-gcc11.patch

--------------------+
 PKGBUILD           |   62 +++++++++++++++++++++++++--------------------------
 qt6-3d-gcc11.patch |   46 ++++++++++++++++++-------------------
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-09-16 09:42:16 UTC (rev 424101)
+++ PKGBUILD	2021-09-16 09:42:34 UTC (rev 424102)
@@ -1,31 +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.2.0-beta4
-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 ninja qt6-declarative qt6-shadertools) # assimp
-optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings')
-groups=(qt6)
-_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
-source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
-sha256sums=('5e385eccf30bd001cf117491ea0bc59497417ef4c589408044b7e9a2d559220b')
-
-build() {
-  cmake -B build -S $_pkgfn -G Ninja
-  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/kde-unstable-x86_64/PKGBUILD (from rev 424101, qt6-3d/kde-unstable/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-09-16 09:42:34 UTC (rev 424102)
@@ -0,0 +1,31 @@
+# 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.2.0-rc
+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 ninja qt6-declarative qt6-shadertools) # assimp
+optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings')
+groups=(qt6)
+_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('9c21203ea1cf8f4141e09d8b38eee9a6ec42f0a21044cce9797ae87503fb7aed')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  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-09-16 09:42:16 UTC (rev 424101)
+++ qt6-3d-gcc11.patch	2021-09-16 09:42:34 UTC (rev 424102)
@@ -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/kde-unstable-x86_64/qt6-3d-gcc11.patch (from rev 424101, qt6-3d/kde-unstable/qt6-3d-gcc11.patch)
===================================================================
--- qt6-3d-gcc11.patch	                        (rev 0)
+++ qt6-3d-gcc11.patch	2021-09-16 09:42:34 UTC (rev 424102)
@@ -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