Package Details: icu69 69.1-1

Git Clone URL: https://aur.archlinux.org/icu69.git (read-only, click to copy)
Package Base: icu69
Description: International Components for Unicode library
Upstream URL: http://www.icu-project.org/
Keywords: icu unicode
Licenses: custom:icu
Submitter: asmeron
Maintainer: asmeron
Last Packager: asmeron
Votes: 5
Popularity: 0.000635
First Submitted: 2022-03-20 15:41 (UTC)
Last Updated: 2022-03-20 15:41 (UTC)

Latest Comments

Cebtenzzre commented on 2025-05-17 21:20 (UTC)

check step fails with this error with python 3.13:

AttributeError: module 'unittest' has no attribute 'makeSuite'

Fixed with this patch:

@@ -9,7 +9,7 @@ arch=('i686' 'x86_64')
 url="http://www.icu-project.org/"
 license=('custom:icu')
 depends=('gcc-libs' 'sh')
-makedepends=('python' 'clang' 'make' 'patch')
+makedepends=('python312' 'clang' 'make' 'patch')
 source=("https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz")
 sha512sums=('d4aeb781715144ea6e3c6b98df5bbe0490bfa3175221a1d667f3e6851b7bd4a638fa4a37d4a921ccb31f02b5d15a6dded9464d98051964a86f7b1cde0ff0aab7')

@@ -20,7 +20,8 @@ build() {
     --prefix=/usr \
     --sysconfdir=/etc \
     --mandir=/usr/share/man \
-    --sbindir=/usr/bin
+    --sbindir=/usr/bin \
+    PYTHON=/usr/bin/python3.12

   make
 }

micwoj92 commented on 2024-04-29 07:51 (UTC)

Hello, could you remove clang makedep? Builds fine with gcc.