Переглянути джерело

quadsort: add 1.2.1+3 version (#5095)

* Update quadsort to 2024.07.27 (#5094)

Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: star9029 <[email protected]>
iccy 1 рік тому
батько
коміт
a73fb26307
1 змінених файлів з 16 додано та 4 видалено
  1. 16 4
      packages/q/quadsort/xmake.lua

+ 16 - 4
packages/q/quadsort/xmake.lua

@@ -2,10 +2,22 @@ package("quadsort")
     set_kind("library", {headeronly = true})
     set_homepage("https://github.com/scandum/quadsort")
     set_description("Quadsort is a branchless stable adaptive mergesort faster than quicksort.")
-    set_license("MIT")
+    set_license("Unlicense")
 
-    add_urls("https://github.com/scandum/quadsort.git")
-    add_versions("2023.02.03", "7b4e7b1489ab1c80eb97a90ae01deada7c740a46")
+    add_urls("https://github.com/scandum/quadsort.git", {
+        version = function (version) return version:gsub("+", "%.") end
+    })
+
+    add_versions("1.2.1+3", "4c357224cd9b53382248affc64e295726697bd35")
+    add_versions("1.1.5+4", "7b4e7b1489ab1c80eb97a90ae01deada7c740a46")
+
+    if on_check then
+        on_check(function (package)
+            if package:version():ge("1.2.1+3") then
+                assert(not package:has_tool("cxx", "cl"), "package(quadsort 1.2.1+3) unsupported msvc")
+            end
+        end)
+    end
 
     on_install(function (package)
         os.cp("src/quadsort.c", package:installdir("include"))
@@ -13,5 +25,5 @@ package("quadsort")
     end)
 
     on_test(function (package)
-        assert(package:has_cfuncs("quadsort", {includes = "quadsort.h"}))
+        assert(package:has_cfuncs("quadsort", {includes = {"string.h", "quadsort.h"}}))
     end)