Skip to content
Draft
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions ports/icu/fix-install-sh-relative-path.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/source/icudefs.mk.in b/source/icudefs.mk.in
--- a/source/icudefs.mk.in
+++ b/source/icudefs.mk.in
@@ -100,8 +100,8 @@
# Installation programs

MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs

-INSTALL = @INSTALL@
+INSTALL = $(top_srcdir)/install-sh -c
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
1 change: 1 addition & 0 deletions ports/icu/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ vcpkg_extract_source_archive(SOURCE_PATH
ARCHIVE "${ARCHIVE}"
PATCHES
disable-static-prefix.patch # https://gitlab.kitware.com/cmake/cmake/-/issues/16617; also mingw.
fix-install-sh-relative-path.patch
fix_bsd_and_solaris.patch
fix_parallel_build_on_windows.patch
fix-python-path-with-spaces.patch
Expand Down
2 changes: 1 addition & 1 deletion ports/icu/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "icu",
"version": "78.3",
"port-version": 1,
"port-version": 2,
"description": "Mature and widely used Unicode and localization library.",
"homepage": "https://icu.unicode.org/home",
"license": "ICU",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3926,7 +3926,7 @@
},
"icu": {
"baseline": "78.3",
"port-version": 1
"port-version": 2
},
"ideep": {
"baseline": "2026-03-31",
Expand Down
5 changes: 5 additions & 0 deletions versions/i-/icu.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "f7d7be1f6027b4f30fcb1be15119c7e65ac1c2b6",
"version": "78.3",
"port-version": 2
},
{
"git-tree": "931a42f3b3b911ba73dbbaead4c1e0037a158efd",
"version": "78.3",
Expand Down
Loading