unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Kaelyn Takata via Guix-patches via <guix-patches@gnu.org>
To: 57297@debbugs.gnu.org
Cc: Kaelyn Takata <kaelyn.alexi@protonmail.com>
Subject: [bug#57297] [PATCH 4/7] gnu: vulkan-loader: Update to 1.2.202.
Date: Fri, 19 Aug 2022 14:51:03 +0000	[thread overview]
Message-ID: <f342e0ebd0bb478db05965788625006c56ac3a5d.1660919376.git.kaelyn.alexi@protonmail.com> (raw)
In-Reply-To: <cover.1660919376.git.kaelyn.alexi@protonmail.com>

* gnu/packages/vulkan.scm (vulkan-loader): Update to 1.2.202.
---
 gnu/packages/vulkan.scm | 21 ++++++---------------
 1 file changed, 6 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm
index 61cbcf8411..74432298f8 100644
--- a/gnu/packages/vulkan.scm
+++ b/gnu/packages/vulkan.scm
@@ -207,7 +207,7 @@ (define-public vulkan-headers
 (define-public vulkan-loader
   (package
     (name "vulkan-loader")
-    (version "1.2.162")
+    (version "1.2.202")
     (source
      (origin
        (method git-fetch)
@@ -217,32 +217,23 @@ (define-public vulkan-loader
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "15gx9ab6w1sjq9hkpbas7z2f8f47j6mlln6p3w26qmydjj8gfjjv"))))
+         "1vsaa16clncz19lihgj39rdg4dspkxjay1ii6pkf6fpl1vkw1dh2"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags
        ,#~(list
            (string-append "-DVULKAN_HEADERS_INSTALL_DIR="
                           #$(this-package-input "vulkan-headers"))
-           (string-append "-DCMAKE_INSTALL_INCLUDEDIR="
-                          #$(this-package-input "vulkan-headers")
-                          "/include"))
+           (string-append "-DGOOGLETEST_INSTALL_DIR="
+                          (getcwd) "/source/external/googletest")
+           "-DBUILD_TESTS=ON")
        #:phases (modify-phases %standard-phases
                   (add-after 'unpack 'unpack-googletest
                     (lambda* (#:key inputs #:allow-other-keys)
                       (let ((gtest (assoc-ref inputs "googletest:source")))
                         (when gtest
                           (copy-recursively gtest "external/googletest"))
-                        #t)))
-                  (add-after 'unpack 'disable-loader-tests
-                    (lambda _
-                      ;; Many tests require a Vulkan driver.  Skip those.
-                      (substitute* "tests/loader_validation_tests.cpp"
-                        ((".*= vkCreateInstance.*" all)
-                         (string-append "GTEST_SKIP();\n" all))
-                        (("TEST_F.*InstanceExtensionEnumerated.*" all)
-                         (string-append all "\nGTEST_SKIP();\n")))
-                      #t)))))
+                        #t))))))
     (native-inputs
      `(("googletest:source" ,(package-source googletest))
        ("libxrandr" ,libxrandr)
--
2.37.2






  parent reply	other threads:[~2022-08-19 14:52 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-19 14:48 [bug#57297] [PATCH 0/7] Update vulkan packages and add vulkan-validationlayers Kaelyn Takata via Guix-patches via
2022-08-19 14:50 ` [bug#57297] [PATCH 1/7] gnu: spirv-headers: Update to 1.2.198.0 Kaelyn Takata via Guix-patches via
2022-08-19 14:50 ` [bug#57297] [PATCH 2/7] gnu: spirv-tools: Update to 2021.4 Kaelyn Takata via Guix-patches via
2022-08-19 14:50 ` [bug#57297] [PATCH 3/7] gnu: vulkan-headers: Update to 1.2.202 Kaelyn Takata via Guix-patches via
2022-08-19 14:51 ` Kaelyn Takata via Guix-patches via [this message]
2022-08-19 14:51 ` [bug#57297] [PATCH 5/7] gnu: vulkan-tools: Update to 1.2.201 Kaelyn Takata via Guix-patches via
2022-08-19 14:51 ` [bug#57297] [PATCH 6/7] gnu: shaderc: Update to 2021.3 Kaelyn Takata via Guix-patches via
2022-08-19 14:51 ` [bug#57297] [PATCH 7/7] gnu: Add vulkan-validationlayers Kaelyn Takata via Guix-patches via
2022-09-01  7:44 ` [bug#57297] [PATCH 0/7] Update vulkan packages and add vulkan-validationlayers Ricardo Wurmus
2022-09-01 16:26 ` [bug#57297] [PATCH v2 " Kaelyn Takata via Guix-patches via
2022-09-01 16:26   ` [bug#57297] [PATCH v2 1/7] gnu: spirv-headers: Update to 1.2.198.0 Kaelyn Takata via Guix-patches via
2022-09-01 16:26   ` [bug#57297] [PATCH v2 2/7] gnu: spirv-tools: Update to 2021.4 Kaelyn Takata via Guix-patches via
2022-09-01 16:27   ` [bug#57297] [PATCH v2 3/7] gnu: vulkan-headers: Update to 1.2.202 Kaelyn Takata via Guix-patches via
2022-09-01 16:27   ` [bug#57297] [PATCH v2 4/7] gnu: vulkan-loader: " Kaelyn Takata via Guix-patches via
2022-09-01 16:27   ` [bug#57297] [PATCH v2 5/7] gnu: vulkan-tools: Update to 1.2.201 Kaelyn Takata via Guix-patches via
2022-09-01 16:27   ` [bug#57297] [PATCH v2 6/7] gnu: shaderc: Update to 2021.3 Kaelyn Takata via Guix-patches via
2022-09-01 16:27   ` [bug#57297] [PATCH v2 7/7] gnu: Add vulkan-validationlayers Kaelyn Takata via Guix-patches via
2022-09-01 17:17 ` bug#57297: [PATCH v2 0/7] Update vulkan packages and add vulkan-validationlayers Ricardo Wurmus
2022-09-16  6:34 ` [bug#57297] [PATCH " Ricardo Wurmus
2022-09-16 14:26   ` Kaelyn via Guix-patches via
2022-10-15 16:52 ` Kaelyn via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f342e0ebd0bb478db05965788625006c56ac3a5d.1660919376.git.kaelyn.alexi@protonmail.com \
    --to=guix-patches@gnu.org \
    --cc=57297@debbugs.gnu.org \
    --cc=kaelyn.alexi@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).