From: tom.longshine@web.de Subject: cad/horizon-eda: update to 2.7.2 To: ports@openbsd.org Date: Sun, 18 Jan 2026 04:18:58 +0100 Hi, this brings Horizon EDA to the current version 2.7.2. Kind regards, Thomas diff --git cad/horizon-eda/Makefile cad/horizon-eda/Makefile index 40b2203901c..7426c0652eb 100644 --- cad/horizon-eda/Makefile +++ cad/horizon-eda/Makefile @@ -2,9 +2,8 @@ COMMENT = electronic design automation package GH_ACCOUNT = horizon-eda GH_PROJECT = horizon -GH_TAGNAME = v2.6.0 +GH_TAGNAME = v2.7.2 PKGNAME = ${DISTNAME:S/horizon/horizon-eda/} -REVISION = 3 CATEGORIES = cad diff --git cad/horizon-eda/distinfo cad/horizon-eda/distinfo index a0c1bd23f13..513bb374fa5 100644 --- cad/horizon-eda/distinfo +++ cad/horizon-eda/distinfo @@ -1,2 +1,2 @@ -SHA256 (horizon-2.6.0.tar.gz) = 5+aAoFuSrIq0tqMvuOOxe8KYJF09PZIk6bP3+1W4ElY= -SIZE (horizon-2.6.0.tar.gz) = 4358268 +SHA256 (horizon-2.7.2.tar.gz) = a2BffkxG2JSmSZfg9g66k359aNkItNcVzS3eM2S9eaI= +SIZE (horizon-2.7.2.tar.gz) = 4373492 diff --git cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_git_box_cpp cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_git_box_cpp deleted file mode 100644 index 4997256519a..00000000000 --- cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_git_box_cpp +++ /dev/null @@ -1,17 +0,0 @@ -From 3b6b783db797b593119756821c04ac64b66b7ffa Mon Sep 17 00:00:00 2001 -From: "Lukas K." -Date: Sun, 20 Oct 2024 21:41:00 +0200 -Subject: [PATCH] make it build with libgit 1.8.2 - -Index: src/pool-prj-mgr/pool-mgr/pool_git_box.cpp ---- src/pool-prj-mgr/pool-mgr/pool_git_box.cpp.orig -+++ src/pool-prj-mgr/pool-mgr/pool_git_box.cpp -@@ -631,7 +631,7 @@ void PoolGitBox::handle_pr() - git_signature_default(&signature.ptr, repo); - - git_oid new_commit_oid; --#if (LIBGIT2_VER_MAJOR == 1) && (LIBGIT2_VER_MINOR == 8) -+#if (LIBGIT2_VER_MAJOR == 1) && (LIBGIT2_VER_MINOR == 8) && (LIBGIT2_VER_REVISION < 2) - std::array parents; - #else - std::array parents; diff --git cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_remote_box_cpp cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_remote_box_cpp deleted file mode 100644 index 738c95c04ec..00000000000 --- cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_remote_box_cpp +++ /dev/null @@ -1,26 +0,0 @@ -From 3b6b783db797b593119756821c04ac64b66b7ffa Mon Sep 17 00:00:00 2001 -From: "Lukas K." -Date: Sun, 20 Oct 2024 21:41:00 +0200 -Subject: [PATCH] make it build with libgit 1.8.2 - -Index: src/pool-prj-mgr/pool-mgr/pool_remote_box.cpp ---- src/pool-prj-mgr/pool-mgr/pool_remote_box.cpp.orig -+++ src/pool-prj-mgr/pool-mgr/pool_remote_box.cpp -@@ -1137,7 +1137,7 @@ void PoolRemoteBox::create_pr_thread() - - autofree_ptr parent_commit(git_commit_free); - git_commit_lookup(&parent_commit.ptr, repo, &parent_oid); --#if (LIBGIT2_VER_MAJOR == 1) && (LIBGIT2_VER_MINOR == 8) -+#if (LIBGIT2_VER_MAJOR == 1) && (LIBGIT2_VER_MINOR == 8) && (LIBGIT2_VER_REVISION < 2) - git_commit *parent_commit_p = parent_commit.ptr; - #else - const git_commit *parent_commit_p = parent_commit.ptr; -@@ -1287,7 +1287,7 @@ void PoolRemoteBox::update_pr_thread() - throw std::runtime_error("error getting default signature"); - } - --#if (LIBGIT2_VER_MAJOR == 1) && (LIBGIT2_VER_MINOR == 8) -+#if (LIBGIT2_VER_MAJOR == 1) && (LIBGIT2_VER_MINOR == 8) && (LIBGIT2_VER_REVISION < 2) - git_commit *parent_commit_p = latest_commit.ptr; - #else - const git_commit *parent_commit_p = latest_commit.ptr;