Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

date: fix links, change versioning #4618

Merged
merged 6 commits into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 27 additions & 5 deletions packages/d/date/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@ package("date")
set_description("A date and time library for use with C++11 and C++14.")
set_license("MIT")

add_urls("https://github.com/HowardHinnant/date/archive/refs/tags/$(version).zip",
"https://github.com/HowardHinnant/date.git")
add_urls("https://github.com/HowardHinnant/date.git")

add_versions("v3.0.1", "f4300b96f7a304d4ef9bf6e0fa3ded72159f7f2d0f605bdde3e030a0dba7cf9f")
add_versions("2024.05.14", "1ead6715dec030d340a316c927c877a3c4e5a00c")
add_versions("2021.04.17", "6e921e1b1d21e84a5c82416ba7ecd98e33a436d0")

if is_plat("windows", "mingw") then
add_syslinks("ole32", "shell32")
elseif is_plat("macosx", "iphoneos") then
add_frameworks("Foundation")
end

add_deps("cmake")
if is_plat("macosx", "iphoneos") then
add_deps("zlib")
end

on_install(function (package)
local configs = {"-DBUILD_TZ_LIB=ON",
Expand All @@ -20,6 +29,19 @@ package("date")
end)

on_test(function (package)
assert(package:has_cxxtypes("date::sys_days", {configs = {languages = "c++11"}, includes = "date/date.h"}))
assert(package:has_cxxtypes("date::time_zone", {configs = {languages = "c++11"}, includes = "date/tz.h"}))
assert(package:check_cxxsnippets({test = [[
#include <date/date.h>
void test() {
using namespace date;
year_month_weekday_last{year{2015}, month{3u}, weekday_last{weekday{0u}}};
}
]]}, {configs = {languages = "c++11"}}))
assert(package:check_cxxsnippets({test = [[
#include <date/tz.h>
void test() {
using namespace date;
using namespace std::chrono;
make_zoned(current_zone(), system_clock::now());
}
]]}, {configs = {languages = "c++11"}}))
end)
Loading