pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc
Module Name: pkgsrc
Committed By: markd
Date: Thu Mar 14 19:15:30 UTC 2024
Modified Files:
pkgsrc/textproc: Makefile
Added Files:
pkgsrc/textproc/libunibreak: DESCR Makefile PLIST buildlink3.mk
distinfo
Log Message:
libunibreak: add version 6.1
This is libunibreak, an implementation of the line breaking and
word/grapheme breaking algorithms as described in [Unicode Standard
Annex 14][1] (UAX #14) and [Unicode Standard Annex 29][2] (UAX #29).
As of February 2024, Unicode 15.0 support for line breaking, as well as
full Unicode 15.1 support for word/grapheme breaking, is provided.
There is currently no plan to implement full Unicode 15.1 support for
line breaking, mostly because tailoring for Brahmic scripts, as
described in LB28a of UAX #14-51, is problematic within the current
framework.
To generate a diff of this commit:
cvs rdiff -u -r1.1455 -r1.1456 pkgsrc/textproc/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/libunibreak/DESCR \
pkgsrc/textproc/libunibreak/Makefile pkgsrc/textproc/libunibreak/PLIST \
pkgsrc/textproc/libunibreak/buildlink3.mk \
pkgsrc/textproc/libunibreak/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/Makefile
diff -u pkgsrc/textproc/Makefile:1.1455 pkgsrc/textproc/Makefile:1.1456
--- pkgsrc/textproc/Makefile:1.1455 Sat Mar 9 06:51:34 2024
+++ pkgsrc/textproc/Makefile Thu Mar 14 19:15:29 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1455 2024/03/09 06:51:34 adam Exp $
+# $NetBSD: Makefile,v 1.1456 2024/03/14 19:15:29 markd Exp $
#
COMMENT= Text processing utilities (does not include desktop publishing)
@@ -500,6 +500,7 @@ SUBDIR+= libodfgen
SUBDIR+= libpinyin
SUBDIR+= libplist
SUBDIR+= libstemmer
+SUBDIR+= libunibreak
SUBDIR+= libunicode
SUBDIR+= libuninameslist
SUBDIR+= libunistring
Added files:
Index: pkgsrc/textproc/libunibreak/DESCR
diff -u /dev/null pkgsrc/textproc/libunibreak/DESCR:1.1
--- /dev/null Thu Mar 14 19:15:30 2024
+++ pkgsrc/textproc/libunibreak/DESCR Thu Mar 14 19:15:29 2024
@@ -0,0 +1,10 @@
+This is libunibreak, an implementation of the line breaking and
+word/grapheme breaking algorithms as described in [Unicode Standard
+Annex 14][1] (UAX #14) and [Unicode Standard Annex 29][2] (UAX #29).
+
+As of February 2024, Unicode 15.0 support for line breaking, as well as
+full Unicode 15.1 support for word/grapheme breaking, is provided.
+There is currently no plan to implement full Unicode 15.1 support for
+line breaking, mostly because tailoring for Brahmic scripts, as
+described in LB28a of UAX #14-51, is problematic within the current
+framework.
Index: pkgsrc/textproc/libunibreak/Makefile
diff -u /dev/null pkgsrc/textproc/libunibreak/Makefile:1.1
--- /dev/null Thu Mar 14 19:15:30 2024
+++ pkgsrc/textproc/libunibreak/Makefile Thu Mar 14 19:15:29 2024
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2024/03/14 19:15:29 markd Exp $
+
+DISTNAME= libunibreak-6.1
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_GITHUB:=adah1972/}
+GITHUB_RELEASE= ${DISTNAME:S/-/_/:S/./_/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/adah1972/libunibreak/
+COMMENT= Implementation of line breaking algorithm described in Unicode 5.2.0 SA 14
+LICENSE= zlib
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+
+PKGCONFIG_OVERRIDE+= libunibreak.pc.in
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/textproc/libunibreak/PLIST
diff -u /dev/null pkgsrc/textproc/libunibreak/PLIST:1.1
--- /dev/null Thu Mar 14 19:15:30 2024
+++ pkgsrc/textproc/libunibreak/PLIST Thu Mar 14 19:15:29 2024
@@ -0,0 +1,11 @@
+@comment $NetBSD: PLIST,v 1.1 2024/03/14 19:15:29 markd Exp $
+include/eastasianwidthdef.h
+include/graphemebreak.h
+include/linebreak.h
+include/linebreakdef.h
+include/unibreakbase.h
+include/unibreakdef.h
+include/wordbreak.h
+lib/liblinebreak.a
+lib/libunibreak.la
+lib/pkgconfig/libunibreak.pc
Index: pkgsrc/textproc/libunibreak/buildlink3.mk
diff -u /dev/null pkgsrc/textproc/libunibreak/buildlink3.mk:1.1
--- /dev/null Thu Mar 14 19:15:30 2024
+++ pkgsrc/textproc/libunibreak/buildlink3.mk Thu Mar 14 19:15:29 2024
@@ -0,0 +1,12 @@
+# $NetBSD: buildlink3.mk,v 1.1 2024/03/14 19:15:29 markd Exp $
+
+BUILDLINK_TREE+= libunibreak
+
+.if !defined(LIBUNIBREAK_BUILDLINK3_MK)
+LIBUNIBREAK_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.libunibreak+= libunibreak>=6.1
+BUILDLINK_PKGSRCDIR.libunibreak?= ../../textproc/libunibreak
+.endif # LIBUNIBREAK_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -libunibreak
Index: pkgsrc/textproc/libunibreak/distinfo
diff -u /dev/null pkgsrc/textproc/libunibreak/distinfo:1.1
--- /dev/null Thu Mar 14 19:15:30 2024
+++ pkgsrc/textproc/libunibreak/distinfo Thu Mar 14 19:15:30 2024
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2024/03/14 19:15:30 markd Exp $
+
+BLAKE2s (libunibreak-6.1.tar.gz) = 64d5851078e73846a42bcbb6cb28e8b2e2d20913517cadee599832447d7f001f
+SHA512 (libunibreak-6.1.tar.gz) = 8ffde29a9b90ddcbfabb61d7302ffe3b17473cd6d30fe1a4403d857e6191291d7e7a6f23bde58654155ed95f4a0f31e082cdf424a82da46722a811291ef38c2f
+Size (libunibreak-6.1.tar.gz) = 855733 bytes
Home |
Main Index |
Thread Index |
Old Index