Compare commits
2 Commits
ebcccd83bb
...
0b386fe06e
Author | SHA1 | Date | |
---|---|---|---|
0b386fe06e | |||
6bd9783494 |
16
base/autoconf2.7x/autoconf-init.el
Executable file
16
base/autoconf2.7x/autoconf-init.el
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
;; Activate autoconf-mode
|
||||||
|
|
||||||
|
;; Uncomment the following code if you feel that autoconf-mode.el does better
|
||||||
|
;; job than Emacs's default autoconf.el.
|
||||||
|
|
||||||
|
;; (autoload 'autoconf-mode "autoconf-mode"
|
||||||
|
;; "Major mode for editing autoconf files." t)
|
||||||
|
;; (setq auto-mode-alist
|
||||||
|
;; (cons '("\.ac\'\|configure\.in\'" . autoconf-mode)
|
||||||
|
;; auto-mode-alist))
|
||||||
|
|
||||||
|
;; Activate autotest-mode
|
||||||
|
(autoload 'autotest-mode "autotest-mode"
|
||||||
|
"Major mode for editing autotest files." t)
|
||||||
|
(setq auto-mode-alist
|
||||||
|
(cons '("\.at\'" . autotest-mode) auto-mode-alist))
|
110
base/autoconf2.7x/autoconf2.7x.spec
Executable file
110
base/autoconf2.7x/autoconf2.7x.spec
Executable file
@ -0,0 +1,110 @@
|
|||||||
|
# Enable Emacs support
|
||||||
|
%bcond_without autoconf_enables_emacs
|
||||||
|
# Run extended test
|
||||||
|
%bcond_without autoconf_enables_optional_test
|
||||||
|
|
||||||
|
Summary: A GNU tool for automatically configuring source code
|
||||||
|
Name: autoconf2.7x
|
||||||
|
Version: 2.72
|
||||||
|
Release: 1%{?dist}
|
||||||
|
License: GPLv2+ and GFDL
|
||||||
|
Source0: https://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.xz
|
||||||
|
Source1: config.site
|
||||||
|
Source2: autoconf-init.el
|
||||||
|
URL: https://www.gnu.org/software/autoconf/
|
||||||
|
Patch0: autoconf27.patch
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|
||||||
|
# run "make check" by default
|
||||||
|
%bcond_without check
|
||||||
|
|
||||||
|
# m4 >= 1.4.6 is required, >= 1.4.14 is recommended:
|
||||||
|
BuildRequires: perl
|
||||||
|
Requires: perl(File::Compare)
|
||||||
|
Requires: perl-interpreter
|
||||||
|
BuildRequires: m4 >= 1.4.14
|
||||||
|
Requires: m4 >= 1.4.14
|
||||||
|
%if %{with autoconf_enables_emacs}
|
||||||
|
Requires: emacs-filesystem
|
||||||
|
BuildRequires: emacs
|
||||||
|
%endif
|
||||||
|
# the filtering macros are currently in /etc/rpm/macros.perl:
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl-macros
|
||||||
|
BuildRequires: perl(Data::Dumper)
|
||||||
|
# from f19, Text::ParseWords is not the part of 'perl' package
|
||||||
|
BuildRequires: perl(Text::ParseWords)
|
||||||
|
|
||||||
|
# %%configure replaces config.guess/config.sub for us, which confuses autoconf
|
||||||
|
# build system and it produces empty man pages for those scripts if help2man is
|
||||||
|
# not installed
|
||||||
|
BuildRequires: help2man
|
||||||
|
BuildRequires: make, texinfo
|
||||||
|
|
||||||
|
%if %{with check}
|
||||||
|
%if %{with autoconf_enables_optional_test}
|
||||||
|
# For extended testsuite coverage
|
||||||
|
BuildRequires: gcc-gfortran
|
||||||
|
%if 0%{?fedora} >= 15
|
||||||
|
BuildRequires: erlang
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# filter out bogus perl(Autom4te*) dependencies
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Autom4te::
|
||||||
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Autom4te::
|
||||||
|
|
||||||
|
%description
|
||||||
|
GNU's Autoconf is a tool for configuring source code and Makefiles.
|
||||||
|
Using Autoconf, programmers can create portable and configurable
|
||||||
|
packages, since the person building the package is allowed to
|
||||||
|
specify various configuration options.
|
||||||
|
|
||||||
|
You should install Autoconf if you are developing software and
|
||||||
|
would like to create shell scripts that configure your source code
|
||||||
|
packages. If you are installing Autoconf, you will also need to
|
||||||
|
install the GNU m4 package.
|
||||||
|
|
||||||
|
Note that the Autoconf package is not required for the end-user who
|
||||||
|
may be configuring software with an Autoconf-generated script;
|
||||||
|
Autoconf is only required for the generation of the scripts, not
|
||||||
|
their use.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -n autoconf-%{version}
|
||||||
|
%patch0 -p1
|
||||||
|
mv doc/autoconf.info doc/autoconf27.info
|
||||||
|
mv doc/autoconf.texi doc/autoconf27.texi
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --program-suffix=27 --with-lispdir=%{_emacs_sitelispdir}/autoconf27
|
||||||
|
make
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with check}
|
||||||
|
make check %{?_smp_mflags}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%make_install
|
||||||
|
mkdir -p %{buildroot}/share
|
||||||
|
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}
|
||||||
|
##%%mv %{buildroot}/usr/share/autoconf %{buildroot}/usr/share/autoconf_27
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING*
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_infodir}/autoconf27.info*
|
||||||
|
# don't include standards.info, because it comes from binutils...
|
||||||
|
%exclude %{_infodir}/standards*
|
||||||
|
# don't include info's TOP directory
|
||||||
|
%exclude %{_infodir}/dir
|
||||||
|
%{_datadir}/emacs/site-lisp/*
|
||||||
|
%{_datadir}/autoconf27/
|
||||||
|
%{_datadir}/config.site
|
||||||
|
%{_mandir}/man1/*
|
||||||
|
%doc AUTHORS ChangeLog NEWS README THANKS TODO
|
149
base/autoconf2.7x/autoconf27.patch
Executable file
149
base/autoconf2.7x/autoconf27.patch
Executable file
@ -0,0 +1,149 @@
|
|||||||
|
Only in autoconf-version/bin: autoconf
|
||||||
|
Only in autoconf-version/bin: autoconf.in
|
||||||
|
Only in autoconf-version/bin: autoheader
|
||||||
|
Only in autoconf-version/bin: autom4te
|
||||||
|
Only in autoconf-version/bin: autoreconf
|
||||||
|
Only in autoconf-version/bin: autoscan
|
||||||
|
Only in autoconf-version/bin: autoupdate
|
||||||
|
Only in autoconf-version/bin: ifnames
|
||||||
|
Only in autoconf-version/: config.log
|
||||||
|
Only in autoconf-version/: config.status
|
||||||
|
diff -ur autoconf-2.71/doc/autoconf.texi autoconf-version/doc/autoconf.texi
|
||||||
|
--- autoconf-2.71/doc/autoconf.texi 2021-01-28 21:46:48.000000000 +0100
|
||||||
|
+++ autoconf-version/doc/autoconf.texi 2022-01-31 10:05:40.000000000 +0100
|
||||||
|
@@ -1,9 +1,9 @@
|
||||||
|
\input texinfo @c -*-texinfo-*-
|
||||||
|
@comment ========================================================
|
||||||
|
@comment %**start of header
|
||||||
|
-@setfilename autoconf.info
|
||||||
|
+@setfilename autoconf27.info
|
||||||
|
@include version.texi
|
||||||
|
-@settitle Autoconf
|
||||||
|
+@settitle Autoconf_27
|
||||||
|
@documentencoding UTF-8
|
||||||
|
@set txicodequoteundirected
|
||||||
|
@set txicodequotebacktick
|
||||||
|
@@ -227,7 +227,7 @@
|
||||||
|
|
||||||
|
@dircategory Software development
|
||||||
|
@direntry
|
||||||
|
-* Autoconf: (autoconf). Create source code configuration scripts.
|
||||||
|
+* Autoconf_27: (autoconf27). Create source code configuration scripts.
|
||||||
|
@end direntry
|
||||||
|
|
||||||
|
@dircategory Individual utilities
|
||||||
|
Only in autoconf-version/lib/autoconf: autoconf.m4f
|
||||||
|
Only in autoconf-version/lib: autom4te.cfg
|
||||||
|
Only in autoconf-version/lib/autoscan: autoscan.list
|
||||||
|
Only in autoconf-version/lib/autotest: autotest.m4f
|
||||||
|
Only in autoconf-version/lib/m4sugar: m4sh.m4f
|
||||||
|
Only in autoconf-version/lib/m4sugar: m4sugar.m4f
|
||||||
|
Only in autoconf-version/lib/m4sugar: version.m4
|
||||||
|
Only in autoconf-version/: Makefile
|
||||||
|
diff -ur autoconf-2.71/Makefile.in autoconf-version/Makefile.in
|
||||||
|
--- autoconf-2.71/Makefile.in 2021-01-28 22:06:02.000000000 +0100
|
||||||
|
+++ autoconf-version/Makefile.in 2022-01-31 10:37:04.000000000 +0100
|
||||||
|
@@ -195,7 +195,7 @@
|
||||||
|
test $$has_opt = yes
|
||||||
|
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||||
|
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||||
|
-pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
|
+pkgdatadir = $(datadir)/autoconf27
|
||||||
|
pkgincludedir = $(includedir)/@PACKAGE@
|
||||||
|
pkglibdir = $(libdir)/@PACKAGE@
|
||||||
|
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||||
|
@@ -311,13 +311,13 @@
|
||||||
|
am__v_texidevnull_0 = > /dev/null
|
||||||
|
am__v_texidevnull_1 =
|
||||||
|
am__dirstamp = $(am__leading_dot)dirstamp
|
||||||
|
-INFO_DEPS = $(srcdir)/doc/autoconf.info $(srcdir)/doc/standards.info
|
||||||
|
+INFO_DEPS = $(srcdir)/doc/autoconf27.info $(srcdir)/doc/standards.info
|
||||||
|
am__TEXINFO_TEX_DIR = $(srcdir)/build-aux
|
||||||
|
DVIS = doc/autoconf.dvi doc/standards.dvi
|
||||||
|
PDFS = doc/autoconf.pdf doc/standards.pdf
|
||||||
|
PSS = doc/autoconf.ps doc/standards.ps
|
||||||
|
HTMLS = doc/autoconf.html doc/standards.html
|
||||||
|
-TEXINFOS = doc/autoconf.texi doc/standards.texi
|
||||||
|
+TEXINFOS = doc/autoconf27.texi doc/standards.texi
|
||||||
|
TEXI2DVI = texi2dvi
|
||||||
|
TEXI2PDF = $(TEXI2DVI) --pdf --batch
|
||||||
|
MAKEINFOHTML = $(MAKEINFO) --html
|
||||||
|
@@ -691,7 +691,7 @@
|
||||||
|
AM_MAKEINFOFLAGS = --no-split
|
||||||
|
TEXI2HTML_FLAGS = -split_chapter
|
||||||
|
TEXINFO_TEX = build-aux/texinfo.tex
|
||||||
|
-info_TEXINFOS = doc/autoconf.texi doc/standards.texi
|
||||||
|
+info_TEXINFOS = doc/autoconf27.texi doc/standards.texi
|
||||||
|
doc_autoconf_TEXINFOS = doc/fdl.texi doc/install.texi
|
||||||
|
doc_standards_TEXINFOS = doc/fdl.texi doc/gnu-oids.texi doc/make-stds.texi
|
||||||
|
TAGS_FILES = $(dist_perllib_DATA) $(dist_autoconflib_DATA) \
|
||||||
|
@@ -1019,7 +1019,7 @@
|
||||||
|
@$(MKDIR_P) doc
|
||||||
|
@: > doc/$(am__dirstamp)
|
||||||
|
|
||||||
|
-$(srcdir)/doc/autoconf.info: doc/autoconf.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS)
|
||||||
|
+$(srcdir)/doc/autoconf27.info: doc/autoconf27.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS)
|
||||||
|
$(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
|
||||||
|
am__cwd=`pwd` && $(am__cd) $(srcdir) && \
|
||||||
|
rm -rf $$backupdir && mkdir $$backupdir && \
|
||||||
|
@@ -1030,7 +1030,7 @@
|
||||||
|
else :; fi && \
|
||||||
|
cd "$$am__cwd"; \
|
||||||
|
if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
|
||||||
|
- -o $@ $(srcdir)/doc/autoconf.texi; \
|
||||||
|
+ -o $@ $(srcdir)/doc/autoconf27.texi; \
|
||||||
|
then \
|
||||||
|
rc=0; \
|
||||||
|
$(am__cd) $(srcdir); \
|
||||||
|
@@ -1041,32 +1041,32 @@
|
||||||
|
fi; \
|
||||||
|
rm -rf $$backupdir; exit $$rc
|
||||||
|
|
||||||
|
-doc/autoconf.dvi: doc/autoconf.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS) doc/$(am__dirstamp)
|
||||||
|
+doc/autoconf.dvi: doc/autoconf27.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS) doc/$(am__dirstamp)
|
||||||
|
$(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||||
|
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
|
||||||
|
$(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
|
||||||
|
- `test -f 'doc/autoconf.texi' || echo '$(srcdir)/'`doc/autoconf.texi
|
||||||
|
+ `test -f 'doc/autoconf27.texi' || echo '$(srcdir)/'`doc/autoconf27.texi
|
||||||
|
|
||||||
|
-doc/autoconf.pdf: doc/autoconf.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS) doc/$(am__dirstamp)
|
||||||
|
+doc/autoconf.pdf: doc/autoconf27.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS) doc/$(am__dirstamp)
|
||||||
|
$(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
||||||
|
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
|
||||||
|
$(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
|
||||||
|
- `test -f 'doc/autoconf.texi' || echo '$(srcdir)/'`doc/autoconf.texi
|
||||||
|
+ `test -f 'doc/autoconf27.texi' || echo '$(srcdir)/'`doc/autoconf27.texi
|
||||||
|
|
||||||
|
-doc/autoconf.html: doc/autoconf.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS) doc/$(am__dirstamp)
|
||||||
|
+doc/autoconf.html: doc/autoconf27.texi $(srcdir)/doc/version.texi $(doc_autoconf_TEXINFOS) doc/$(am__dirstamp)
|
||||||
|
$(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
|
||||||
|
$(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
|
||||||
|
- -o $(@:.html=.htp) `test -f 'doc/autoconf.texi' || echo '$(srcdir)/'`doc/autoconf.texi; \
|
||||||
|
+ -o $(@:.html=.htp) `test -f 'doc/autoconf27.texi' || echo '$(srcdir)/'`doc/autoconf27.texi; \
|
||||||
|
then \
|
||||||
|
rm -rf $@ && mv $(@:.html=.htp) $@; \
|
||||||
|
else \
|
||||||
|
rm -rf $(@:.html=.htp); exit 1; \
|
||||||
|
fi
|
||||||
|
$(srcdir)/doc/version.texi: $(srcdir)/doc/stamp-vti
|
||||||
|
-$(srcdir)/doc/stamp-vti: doc/autoconf.texi $(top_srcdir)/configure
|
||||||
|
+$(srcdir)/doc/stamp-vti: doc/autoconf27.texi $(top_srcdir)/configure
|
||||||
|
@test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) doc/$(am__dirstamp)
|
||||||
|
- @(dir=.; test -f ./doc/autoconf.texi || dir=$(srcdir); \
|
||||||
|
- set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/doc/autoconf.texi`; \
|
||||||
|
+ @(dir=.; test -f ./doc/autoconf27.texi || dir=$(srcdir); \
|
||||||
|
+ set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/doc/autoconf27.texi`; \
|
||||||
|
echo "@set UPDATED $$1 $$2 $$3"; \
|
||||||
|
echo "@set UPDATED-MONTH $$2 $$3"; \
|
||||||
|
echo "@set EDITION $(VERSION)"; \
|
||||||
|
Only in autoconf-version/tests: atconfig
|
||||||
|
Only in autoconf-version/tests: atlocal
|
||||||
|
Only in autoconf-version/tests: autoconf
|
||||||
|
Only in autoconf-version/tests: autoheader
|
||||||
|
Only in autoconf-version/tests: autom4te
|
||||||
|
Only in autoconf-version/tests: autoreconf
|
||||||
|
Only in autoconf-version/tests: autoscan
|
||||||
|
Only in autoconf-version/tests: autoupdate
|
||||||
|
Only in autoconf-version/tests: ifnames
|
||||||
|
Only in autoconf-version/tests: wrapper.in
|
29
base/autoconf2.7x/config.site
Executable file
29
base/autoconf2.7x/config.site
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
# This is the config.site file to satisfy FHS defaults when installing below
|
||||||
|
# /usr.
|
||||||
|
#
|
||||||
|
# You may override this file by your config.site using the CONFIG_SITE env
|
||||||
|
# variable.
|
||||||
|
#
|
||||||
|
# Note: This file includes also RHEL/Fedora fix for installing libraries into
|
||||||
|
# "/lib/lib64" on 64bit systems.
|
||||||
|
|
||||||
|
if test -n "$host"; then
|
||||||
|
# skip when cross-compiling
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$prefix" = /usr \
|
||||||
|
|| { test "$prefix" = NONE && test "$ac_default_prefix" = /usr ; }
|
||||||
|
then
|
||||||
|
test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc
|
||||||
|
test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var
|
||||||
|
test "$localstatedir" = '${prefix}/var' && localstatedir=/var
|
||||||
|
|
||||||
|
ARCH=`uname -m`
|
||||||
|
for i in x86_64 ppc64 s390x aarch64; do
|
||||||
|
if test $ARCH = $i; then
|
||||||
|
test "$libdir" = '${exec_prefix}/lib' && libdir='${exec_prefix}/lib64'
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
128
base/libicu76/gennorm2-man.patch
Normal file
128
base/libicu76/gennorm2-man.patch
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
Description: supply manual page for program that doesn't have one
|
||||||
|
Author: Jay Berkenbilt <qjb@debian.org>
|
||||||
|
Bug: http://bugs.icu-project.org/trac/ticket/7554
|
||||||
|
|
||||||
|
diff -r -u -N icu.orig/source/tools/gennorm2/gennorm2.8.in icu/source/tools/gennorm2/gennorm2.8.in
|
||||||
|
--- icu.orig/source/tools/gennorm2/gennorm2.8.in 1970-01-01 01:00:00.000000000 +0100
|
||||||
|
+++ icu/source/tools/gennorm2/gennorm2.8.in 2013-02-25 16:43:28.297062638 +0100
|
||||||
|
@@ -0,0 +1,71 @@
|
||||||
|
+.\" Hey, Emacs! This is -*-nroff-*- you know...
|
||||||
|
+.\"
|
||||||
|
+.\" gennorm2.8: manual page for the gennorm2 utility
|
||||||
|
+.\"
|
||||||
|
+.\" Copyright (C) 2005-2006 International Business Machines Corporation and others
|
||||||
|
+.\"
|
||||||
|
+.TH GENNORM2 8 "15 March 2010" "ICU MANPAGE" "ICU @VERSION@ Manual"
|
||||||
|
+.SH NAME
|
||||||
|
+.B gennorm2
|
||||||
|
+\- Builds binary data file with Unicode normalization data.
|
||||||
|
+.SH SYNOPSIS
|
||||||
|
+.B gennorm2
|
||||||
|
+[
|
||||||
|
+.BR "\-h\fP, \fB\-?\fP, \fB\-\-help"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BR "\-V\fP, \fB\-\-version"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BR "\-c\fP, \fB\-\-copyright"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BR "\-v\fP, \fB\-\-verbose"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-u\fP, \fB\-\-unicode" " unicode\-version\-number"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-s\fP, \fB\-\-sourcedir" " source\-directory"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-o\fP, \fB\-\-output" " output\-filename"
|
||||||
|
+]
|
||||||
|
+.BI "\fB\-\-fast"
|
||||||
|
+.SH DESCRIPTION
|
||||||
|
+.B gennorm2
|
||||||
|
+reads text files that define Unicode normalization,
|
||||||
|
+them, and builds a binary data file.
|
||||||
|
+.SH OPTIONS
|
||||||
|
+.TP
|
||||||
|
+.BR "\-h\fP, \fB\-?\fP, \fB\-\-help"
|
||||||
|
+Print help about usage and exit.
|
||||||
|
+.TP
|
||||||
|
+.BR "\-V\fP, \fB\-\-version"
|
||||||
|
+Print the version of
|
||||||
|
+.B gennorm2
|
||||||
|
+and exit.
|
||||||
|
+.TP
|
||||||
|
+.BR "\-c\fP, \fB\-\-copyright"
|
||||||
|
+Include a copyright notice.
|
||||||
|
+.TP
|
||||||
|
+.BR "\-v\fP, \fB\-\-verbose"
|
||||||
|
+Display extra informative messages during execution.
|
||||||
|
+.TP
|
||||||
|
+.BR "\-u\fP, \fB\-\-unicode"
|
||||||
|
+Specify Unicode version number, such as 5.2.0.
|
||||||
|
+.TP
|
||||||
|
+.BI "\-s\fP, \fB\-\-sourcedir" " source\-directory"
|
||||||
|
+Specify the input directory.
|
||||||
|
+.TP
|
||||||
|
+.BI "\-s\fP, \fB\-\-sourcedir" " source\-directory"
|
||||||
|
+Set the name of the output file.
|
||||||
|
+.TP
|
||||||
|
+.BI "\fB\-\-fast"
|
||||||
|
+optimize the .nrm file for fast normalization,
|
||||||
|
+which might increase its size (Writes fully decomposed
|
||||||
|
+regular mappings instead of delta mappings.
|
||||||
|
+You should measure the runtime speed to make sure that
|
||||||
|
+this is a good trade-off.)
|
||||||
|
+.SH COPYRIGHT
|
||||||
|
+Copyright (C) 2009-2010 International Business Machines Corporation and others
|
||||||
|
diff -r -u -N icu.orig/source/tools/gennorm2/Makefile.in icu/source/tools/gennorm2/Makefile.in
|
||||||
|
--- icu.orig/source/tools/gennorm2/Makefile.in 2013-01-11 01:23:32.000000000 +0100
|
||||||
|
+++ icu/source/tools/gennorm2/Makefile.in 2013-02-25 16:43:28.296062632 +0100
|
||||||
|
@@ -16,8 +16,13 @@
|
||||||
|
|
||||||
|
TARGET_STUB_NAME = gennorm2
|
||||||
|
|
||||||
|
+SECTION = 8
|
||||||
|
+
|
||||||
|
+MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
## Extra files to remove for 'make clean'
|
||||||
|
-CLEANFILES = *~ $(DEPS)
|
||||||
|
+CLEANFILES = *~ $(DEPS) $(MAN_FILES)
|
||||||
|
|
||||||
|
## Target information
|
||||||
|
TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
|
||||||
|
@@ -44,12 +49,16 @@
|
||||||
|
dist: dist-local
|
||||||
|
check: all check-local
|
||||||
|
|
||||||
|
-all-local: $(TARGET)
|
||||||
|
+all-local: $(TARGET) $(MAN_FILES)
|
||||||
|
|
||||||
|
-install-local: all-local
|
||||||
|
+install-local: all-local install-man
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
|
||||||
|
$(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
|
||||||
|
|
||||||
|
+install-man: $(MAN_FILES)
|
||||||
|
+ $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
|
||||||
|
+ $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
|
||||||
|
+
|
||||||
|
dist-local:
|
||||||
|
|
||||||
|
clean-local:
|
||||||
|
@@ -70,6 +79,11 @@
|
||||||
|
$(POST_BUILD_STEP)
|
||||||
|
|
||||||
|
|
||||||
|
+%.$(SECTION): $(srcdir)/%.$(SECTION).in
|
||||||
|
+ cd $(top_builddir) \
|
||||||
|
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
+
|
||||||
|
+
|
||||||
|
ifeq (,$(MAKECMDGOALS))
|
||||||
|
-include $(DEPS)
|
||||||
|
else
|
11
base/libicu76/icu-config.sh
Normal file
11
base/libicu76/icu-config.sh
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
OOO_ARCH=$(uname -m)
|
||||||
|
case $OOO_ARCH in
|
||||||
|
x86_64 | s390x | ppc64 | sparc64 | aarch64 | ppc64le | mips64 | mips64el | riscv64)
|
||||||
|
bits=64
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
bits=32
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
exec icu-config-$bits "$@"
|
888
base/libicu76/icu-last.spec
Normal file
888
base/libicu76/icu-last.spec
Normal file
@ -0,0 +1,888 @@
|
|||||||
|
# remirepo spec file for icu71
|
||||||
|
# renamed for parallel installation, from:
|
||||||
|
#
|
||||||
|
# Fedora spec file for icu
|
||||||
|
#
|
||||||
|
# License: MIT
|
||||||
|
# http://opensource.org/licenses/MIT
|
||||||
|
#
|
||||||
|
# Please preserve changelog entries
|
||||||
|
#
|
||||||
|
|
||||||
|
%global srcname icu
|
||||||
|
%global soname 76
|
||||||
|
%global subver 1
|
||||||
|
|
||||||
|
%bcond_without tests
|
||||||
|
|
||||||
|
# Set to 0 when upgrading to a new ICU release that contains up-to-date timezone data.
|
||||||
|
# (or update the timezone data update..).
|
||||||
|
%global use_tzdata_update 0
|
||||||
|
# Adjust to version major; used in tzdata update.
|
||||||
|
%global icu_major 76
|
||||||
|
|
||||||
|
%if 0%{?fedora} == 34 || 0%{?rhel} == 9
|
||||||
|
# rhbz#2003359 crash in umtx_initImplPreInit() from unorm_normalize()
|
||||||
|
%global _lto_cflags %nil
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
Name: icu%{soname}
|
||||||
|
Version: %{soname}.%{subver}
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: International Components for Unicode
|
||||||
|
License: Unicode-DFS-2016 AND BSD-2-Clause AND BSD-3-Clause AND LicenseRef-Fedora-Public-Domain
|
||||||
|
URL: http://site.icu-project.org/
|
||||||
|
Source0: https://github.com/unicode-org/icu/releases/download/release-%{soname}-%{subver}/icu4c-%{soname}_%{subver}-src.tgz
|
||||||
|
%if 0%{?use_tzdata_update}
|
||||||
|
Source1: https://github.com/unicode-org/icu/releases/download/release-%{soname}-%{subver}/icu4c-%{soname}_%{subver}-data.zip
|
||||||
|
Source2: https://raw.githubusercontent.com/unicode-org/icu-data/main/tzdata/icunew/2022b/44/metaZones.txt
|
||||||
|
Source3: https://raw.githubusercontent.com/unicode-org/icu-data/main/tzdata/icunew/2022b/44/timezoneTypes.txt
|
||||||
|
Source4: https://raw.githubusercontent.com/unicode-org/icu-data/main/tzdata/icunew/2022b/44/windowsZones.txt
|
||||||
|
Source5: https://raw.githubusercontent.com/unicode-org/icu-data/main/tzdata/icunew/2022b/44/zoneinfo64.txt
|
||||||
|
%endif
|
||||||
|
Source10: icu-config.sh
|
||||||
|
|
||||||
|
BuildRequires: doxygen, autoconf2.7x >= 2.72, python3
|
||||||
|
%if 0%{?rhel} == 7
|
||||||
|
%global dtsenable source /opt/rh/devtoolset-10/enable
|
||||||
|
BuildRequires: devtoolset-10-toolchain
|
||||||
|
%else
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
%endif
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
|
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Conflicts: %{srcname}-last < %{version}
|
||||||
|
Conflicts: %{srcname}62 < %{version}
|
||||||
|
Conflicts: %{srcname}65 < %{version}
|
||||||
|
Conflicts: %{srcname}73 < %{version}
|
||||||
|
Conflicts: %{srcname}74 < %{version}
|
||||||
|
Conflicts: %{srcname} < %{version}
|
||||||
|
Provides: %{srcname} = %{version}-%{release}
|
||||||
|
Provides: %{srcname}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
Patch4: gennorm2-man.patch
|
||||||
|
Patch5: icuinfo-man.patch
|
||||||
|
|
||||||
|
%description
|
||||||
|
Tools and utilities for developing with icu.
|
||||||
|
|
||||||
|
%package -n lib%{name}
|
||||||
|
Summary: International Components for Unicode - libraries
|
||||||
|
|
||||||
|
%description -n lib%{name}
|
||||||
|
The International Components for Unicode (ICU) libraries provide
|
||||||
|
robust and full-featured Unicode services on a wide variety of
|
||||||
|
platforms. ICU supports the most current version of the Unicode
|
||||||
|
standard, and they provide support for supplementary Unicode
|
||||||
|
characters (needed for GB 18030 repertoire support).
|
||||||
|
As computing environments become more heterogeneous, software
|
||||||
|
portability becomes more important. ICU lets you produce the same
|
||||||
|
results across all the various platforms you support, without
|
||||||
|
sacrificing performance. It offers great flexibility to extend and
|
||||||
|
customize the supplied services.
|
||||||
|
|
||||||
|
This package is designed to be installable beside lib%{srcname}.
|
||||||
|
|
||||||
|
%package -n lib%{name}-devel
|
||||||
|
Summary: Development files for International Components for Unicode
|
||||||
|
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: pkgconfig
|
||||||
|
Conflicts: lib%{srcname}-last-devel < %{version}
|
||||||
|
Conflicts: lib%{srcname}62-devel < %{version}
|
||||||
|
Conflicts: lib%{srcname}65-devel < %{version}
|
||||||
|
Conflicts: lib%{srcname}73-devel < %{version}
|
||||||
|
Conflicts: lib%{srcname}74-devel < %{version}
|
||||||
|
Conflicts: lib%{srcname}-devel < %{version}
|
||||||
|
Provides: lib%{srcname}-devel = %{version}-%{release}
|
||||||
|
Provides: lib%{srcname}-devel%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n lib%{name}-devel
|
||||||
|
Includes and definitions for developing with icu.
|
||||||
|
|
||||||
|
%package -n lib%{name}-doc
|
||||||
|
Summary: Documentation for International Components for Unicode
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: lib%{srcname}-last-doc < %{version}
|
||||||
|
Conflicts: lib%{srcname}62-doc < %{version}
|
||||||
|
Conflicts: lib%{srcname}65-doc < %{version}
|
||||||
|
Conflicts: lib%{srcname}73-doc < %{version}
|
||||||
|
Conflicts: lib%{srcname}74-doc < %{version}
|
||||||
|
Conflicts: lib%{srcname}-doc < %{version}
|
||||||
|
Provides: lib%{srcname}-doc = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n lib%{name}-doc
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{srcname}
|
||||||
|
%patch4 -p1 -b .gennorm2-man.patch
|
||||||
|
%patch5 -p1 -b .icuinfo-man.patch
|
||||||
|
|
||||||
|
%if 1
|
||||||
|
sed -e '/SELFCHECK=1/d' -i source/Makefile.in
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?use_tzdata_update}
|
||||||
|
pushd source
|
||||||
|
unzip -o %{SOURCE1}
|
||||||
|
rm -f data/in/icudt%{icu_major}l.dat
|
||||||
|
cp -v -f %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} data/misc
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{?dtsenable}
|
||||||
|
gcc --version
|
||||||
|
|
||||||
|
pushd source
|
||||||
|
autoconf27
|
||||||
|
CFLAGS='%optflags -fno-strict-aliasing'
|
||||||
|
CXXFLAGS='%optflags -fno-strict-aliasing'
|
||||||
|
%if 0
|
||||||
|
CPPFLAGS='-DU_IS_BIG_ENDIAN=1'
|
||||||
|
%endif
|
||||||
|
|
||||||
|
#rhbz856594 do not use --disable-renaming or cope with the mess
|
||||||
|
OPTIONS='--with-data-packaging=library --disable-samples'
|
||||||
|
%if 0%{?debugtrace}
|
||||||
|
OPTIONS=$OPTIONS' --enable-debug --enable-tracing'
|
||||||
|
%endif
|
||||||
|
%configure $OPTIONS
|
||||||
|
|
||||||
|
#rhbz#225896
|
||||||
|
sed -i 's|-nodefaultlibs -nostdlib||' config/mh-linux
|
||||||
|
#rhbz#813484
|
||||||
|
sed -i 's| \$(docfilesdir)/installdox||' Makefile
|
||||||
|
# There is no source/doc/html/search/ directory
|
||||||
|
sed -i '/^\s\+\$(INSTALL_DATA) \$(docsrchfiles) \$(DESTDIR)\$(docdir)\/\$(docsubsrchdir)\s*$/d' Makefile
|
||||||
|
# rhbz#856594 The configure --disable-renaming and possibly other options
|
||||||
|
# result in icu/source/uconfig.h.prepend being created, include that content in
|
||||||
|
# icu/source/common/unicode/uconfig.h to propagate to consumer packages.
|
||||||
|
test -f uconfig.h.prepend && sed -e '/^#define __UCONFIG_H__/ r uconfig.h.prepend' -i common/unicode/uconfig.h
|
||||||
|
|
||||||
|
# more verbosity for build.log
|
||||||
|
sed -i -r 's|(PKGDATA_OPTS = )|\1-v |' data/Makefile
|
||||||
|
|
||||||
|
make %{?_smp_mflags} VERBOSE=1
|
||||||
|
make %{?_smp_mflags} doc
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{?dtsenable}
|
||||||
|
|
||||||
|
rm -rf $RPM_BUILD_ROOT source/__docs
|
||||||
|
make %{?_smp_mflags} -C source install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
make %{?_smp_mflags} -C source install-doc docdir=__docs
|
||||||
|
chmod +x $RPM_BUILD_ROOT%{_libdir}/*.so.*
|
||||||
|
(
|
||||||
|
cd $RPM_BUILD_ROOT%{_bindir}
|
||||||
|
mv icu-config icu-config-%{__isa_bits}
|
||||||
|
)
|
||||||
|
install -p -m755 -D %{SOURCE10} $RPM_BUILD_ROOT%{_bindir}/icu-config
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
%check
|
||||||
|
%{?dtsenable}
|
||||||
|
|
||||||
|
# test to ensure that -j(X>1) didn't "break" man pages. b.f.u #2357
|
||||||
|
if grep -q @VERSION@ source/tools/*/*.8 source/tools/*/*.1 source/config/*.1; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
make %{?_smp_mflags} -C source check
|
||||||
|
|
||||||
|
# log available codes
|
||||||
|
pushd source
|
||||||
|
LD_LIBRARY_PATH=lib:stubdata:tools/ctestfw:$LD_LIBRARY_PATH bin/uconv -l
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?fedora} < 28 && 0%{?rhel} < 8
|
||||||
|
%post -n lib%{name} -p /sbin/ldconfig
|
||||||
|
%postun -n lib%{name} -p /sbin/ldconfig
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%{!?_licensedir:%global license %%doc}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license license.html
|
||||||
|
%exclude %{_datadir}/%{srcname}/*/LICENSE
|
||||||
|
%{_bindir}/derb
|
||||||
|
%{_bindir}/genbrk
|
||||||
|
%{_bindir}/gencfu
|
||||||
|
%{_bindir}/gencnval
|
||||||
|
%{_bindir}/gendict
|
||||||
|
%{_bindir}/genrb
|
||||||
|
%{_bindir}/icuexportdata
|
||||||
|
%{_bindir}/makeconv
|
||||||
|
%{_bindir}/pkgdata
|
||||||
|
%{_bindir}/uconv
|
||||||
|
%{_sbindir}/*
|
||||||
|
%{_mandir}/man1/derb.1*
|
||||||
|
%{_mandir}/man1/genbrk.1*
|
||||||
|
%{_mandir}/man1/gencfu.1*
|
||||||
|
%{_mandir}/man1/gencnval.1*
|
||||||
|
%{_mandir}/man1/gendict.1*
|
||||||
|
%{_mandir}/man1/genrb.1*
|
||||||
|
%{_mandir}/man1/icuexportdata.1*
|
||||||
|
%{_mandir}/man1/makeconv.1*
|
||||||
|
%{_mandir}/man1/pkgdata.1*
|
||||||
|
%{_mandir}/man1/uconv.1*
|
||||||
|
%{_mandir}/man8/*.8*
|
||||||
|
|
||||||
|
%files -n lib%{name}
|
||||||
|
%license LICENSE
|
||||||
|
%doc readme.html
|
||||||
|
%{_libdir}/*.so.%{soname}*
|
||||||
|
|
||||||
|
%files -n lib%{name}-devel
|
||||||
|
%license LICENSE
|
||||||
|
%doc source/samples/
|
||||||
|
%{_bindir}/%{srcname}-config*
|
||||||
|
%{_bindir}/icuinfo
|
||||||
|
%{_mandir}/man1/%{srcname}-config.1*
|
||||||
|
%{_mandir}/man1/icuinfo.1*
|
||||||
|
%{_includedir}/unicode
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
%{_libdir}/%{srcname}
|
||||||
|
%dir %{_datadir}/%{srcname}
|
||||||
|
%dir %{_datadir}/%{srcname}/%{version}
|
||||||
|
%{_datadir}/%{srcname}/%{version}/install-sh
|
||||||
|
%{_datadir}/%{srcname}/%{version}/mkinstalldirs
|
||||||
|
%{_datadir}/%{srcname}/%{version}/config
|
||||||
|
|
||||||
|
%files -n lib%{name}-doc
|
||||||
|
%license LICENSE
|
||||||
|
%doc readme.html
|
||||||
|
%doc source/__docs/%{srcname}/html/*
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Dec 5 2024 Raven <raven@sysadmins.ws> - 76.1-1
|
||||||
|
- update to 76.1
|
||||||
|
|
||||||
|
* Thu Aug 24 2023 Raven <raven@sysadmins.ws> - 73.2-1
|
||||||
|
- update to 73.2 (from F40)
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Remi Collet <remi@remirepo.net> - 72.1-1
|
||||||
|
- update to 72.1 (from F38)
|
||||||
|
|
||||||
|
* Fri Oct 21 2022 Remi Collet <remi@remirepo.net> - 71.1-2
|
||||||
|
- Update timezone data to 2022b
|
||||||
|
|
||||||
|
* Tue Aug 16 2022 Remi Collet <remi@remirepo.net> - 71.1-1
|
||||||
|
- update to 71.1 (from F37)
|
||||||
|
|
||||||
|
* Tue Jul 26 2022 Remi Collet <remi@remirepo.net> - 69.1-4
|
||||||
|
- Update timezone data to 2022a
|
||||||
|
|
||||||
|
* Thu Nov 4 2021 Remi Collet <remi@remirepo.net> - 69.1-3
|
||||||
|
- EL-9 build
|
||||||
|
|
||||||
|
* Fri Oct 1 2021 Remi Collet <remi@remirepo.net> - 69.1-2
|
||||||
|
- rebuild with GCC 10
|
||||||
|
|
||||||
|
* Wed Sep 29 2021 Remi Collet <remi@remirepo.net> - 69.1-1
|
||||||
|
- update to 69.1
|
||||||
|
|
||||||
|
* Wed Jul 1 2020 Remi Collet <remi@remirepo.net> - 65.1-1
|
||||||
|
- update to 65.1
|
||||||
|
https://github.com/remicollet/remirepo/issues/153
|
||||||
|
|
||||||
|
* Thu May 7 2020 Remi Collet <remi@remirepo.net> - 62.2-1
|
||||||
|
- update to 62.2
|
||||||
|
https://github.com/remicollet/remirepo/issues/149
|
||||||
|
|
||||||
|
* Thu Feb 7 2019 Pavel Podkorytov <pod.pavel@gmail.com> - 62.1-3
|
||||||
|
- backport FEDORA-29 changes
|
||||||
|
- rename "libicu-last" to "libicu62"
|
||||||
|
|
||||||
|
* Tue Feb 5 2019 Remi Collet <rpms@famillecollet.com>- 50.1.2-17
|
||||||
|
- backport RHEL-7.6 changes
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Eike Rathke <erack@redhat.com> - 62.1-3
|
||||||
|
- Resolves: rhbz#1646703 CVE-2018-18928
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 62.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 62.1-1
|
||||||
|
- Update to 62.1
|
||||||
|
|
||||||
|
* Mon May 28 2018 Eike Rathke <erack@redhat.com> - 61.1-2
|
||||||
|
- Resolves: rhbz#1582611 Add riscv64 to icu-config.sh
|
||||||
|
|
||||||
|
* Tue Apr 24 2018 Eike Rathke <erack@redhat.com> - 61.1-1
|
||||||
|
- Update to 61.1
|
||||||
|
|
||||||
|
* Thu Mar 15 2018 Iryna Shcherbina <ishcherb@redhat.com> - 60.2-3
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 60.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 14 2017 Pete Walter <pwalter@fedoraproject.org> - 60.2-1
|
||||||
|
- Update to 60.2
|
||||||
|
|
||||||
|
* Thu Dec 14 2017 Eike Rathke <erack@redhat.com> - 60.1-2
|
||||||
|
- Resolves: rhbz#1524820 CVE-2017-17484
|
||||||
|
|
||||||
|
* Thu Nov 30 2017 Pete Walter <pwalter@fedoraproject.org> - 60.1-1
|
||||||
|
- Update to 60.1
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Eike Rathke <erack@redhat.com> - 57.1-9
|
||||||
|
- Resolves: rhbz#1510932 CVE-2017-14952
|
||||||
|
|
||||||
|
* Tue Sep 12 2017 Remi Collet <rpms@famillecollet.com>- 50.1.2-15
|
||||||
|
- backport RHEL-7.2 changes
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 57.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 57.1-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 20 2017 Eike Rathke <erack@redhat.com> - 57.1-6
|
||||||
|
- Resolves: rhbz#1444101 CVE-2017-7867 CVE-2017-7868
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 57.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 18 2016 Eike Rathke <erack@redhat.com> - 57.1-4
|
||||||
|
- dist.rpmgrill: "Percent signs in specfile changelog should be escaped"
|
||||||
|
|
||||||
|
* Fri Nov 18 2016 Eike Rathke <erack@redhat.com> - 57.1-3
|
||||||
|
- Resolves: rhbz#1377362 CVE-2016-7415
|
||||||
|
|
||||||
|
* Tue Nov 01 2016 Eike Rathke <erack@redhat.com> - 57.1-2
|
||||||
|
- Resolves: rhbz#1360340 CVE-2016-6293
|
||||||
|
|
||||||
|
* Fri Apr 15 2016 Eike Rathke <erack@redhat.com> - 57.1-1
|
||||||
|
- upgrade to upstream ICU 57.1
|
||||||
|
|
||||||
|
* Tue Apr 05 2016 Eike Rathke <erack@redhat.com> - 56.1-7
|
||||||
|
- make check failure is fatal again
|
||||||
|
|
||||||
|
* Tue Apr 05 2016 Eike Rathke <erack@redhat.com> - 56.1-6
|
||||||
|
- remove icu-56.1-codes-cache-extend.patch
|
||||||
|
|
||||||
|
* Sun Feb 28 2016 Raphael Groner <projects.rg@smart.ms> - 56.1-5
|
||||||
|
- even more verbosity and debug output
|
||||||
|
- add path to extend ICU's internal cache of codes
|
||||||
|
- use license macro
|
||||||
|
- provide samples in devel subpackage
|
||||||
|
- modernize generally
|
||||||
|
|
||||||
|
* Sat Feb 27 2016 Rex Dieter <rdieter@fedoraproject.org> - 56.1-4
|
||||||
|
- %%build: make VERBOSE=1
|
||||||
|
- %%check: keep 'make check' non-fatal while investigating rhbz#1307633
|
||||||
|
|
||||||
|
* Sat Feb 06 2016 Caolán McNamara <caolanm@redhat.com> - 56.1-3
|
||||||
|
- Resolves: rhbz#1307633 FTBFS, disable check to get build through for now
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 56.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Oct 27 2015 Eike Rathke <erack@redhat.com> - 56.1-1
|
||||||
|
- Resolves: rhbz#1271353 upgrade to ICU 56.1
|
||||||
|
|
||||||
|
* Fri Sep 18 2015 Eike Rathke <erack@redhat.com> - 54.1-5
|
||||||
|
- Workaround rhbz#1239574 disabling offending tests on armv7hl
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 54.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Apr 10 2015 Eike Rathke <erack@redhat.com> - 54.1-3
|
||||||
|
- Resolves: rhbz#1190131 CVE-2014-7923 CVE-2014-7926 CVE-2014-9654
|
||||||
|
- Resolves: rhbz#1184811 CVE-2014-6585 CVE-2014-6591
|
||||||
|
|
||||||
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 54.1-2
|
||||||
|
- Rebuilt for Fedora 23 Change
|
||||||
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
||||||
|
|
||||||
|
* Mon Jan 26 2015 Eike Rathke <erack@redhat.com> - 54.1-1
|
||||||
|
- Resolves: rhbz#1185433 upgrade to upstream ICU 54.1
|
||||||
|
|
||||||
|
* Tue Aug 26 2014 Eike Rathke <erack@redhat.com> - 53.1-1
|
||||||
|
- Resolves: rhbz#1130771 upgrade to upstream ICU 53.1
|
||||||
|
|
||||||
|
* Tue Aug 19 2014 Eike Rathke <erack@redhat.com> - 50.1.2-15
|
||||||
|
- Resolves: rhbz#1126237 correct sources list file
|
||||||
|
|
||||||
|
* Mon Aug 18 2014 Eike Rathke <erack@redhat.com> - 50.1.2-14
|
||||||
|
- Resolves: rhbz#1126237 bumped n-v-r for icu-config.sh upload
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 52.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 04 2014 Eike Rathke <erack@redhat.com> - 50.1.2-13
|
||||||
|
- Resolves: rhbz#1126237 icu-config for ppc64le
|
||||||
|
|
||||||
|
* Mon Jul 14 2014 Eike Rathke <erack@redhat.com> - 50.1.2-12
|
||||||
|
- Resolves: rhbz#1115726 bad 2-digit year test case, FTBFS
|
||||||
|
|
||||||
|
* Fri Jun 13 2014 Eike Rathke <erack@redhat.com> - 52.1-3
|
||||||
|
- Resolves: rhbz#1106793 bad 2-digit year test case
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 52.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 11 2014 Eike Rathke <erack@redhat.com> - 50.1.2-11
|
||||||
|
- Resolves: rhbz#1074549 Layout Engine LookupProcessor insufficient input checks
|
||||||
|
|
||||||
|
* Tue Feb 11 2014 Eike Rathke <erack@redhat.com> - 52.1-1
|
||||||
|
- upgrade to upstream ICU 52.1
|
||||||
|
- Resolves: rhbz#1049265 icu-52.1 is available
|
||||||
|
- Resolves: rhbz#1050063 Trivial change to icu-config to support ppc64le
|
||||||
|
- drop icu-51-layout-fix-10107.tgz source
|
||||||
|
- drop integrated icu.10318.CVE-2013-2924_changeset_34076.patch
|
||||||
|
- drop integrated icu.10143.memory.leak.crash.patch
|
||||||
|
|
||||||
|
* Sun Oct 27 2013 Remi Collet <rpms@famillecollet.com>- 50.1.2-10
|
||||||
|
- rename to icu-last
|
||||||
|
|
||||||
|
* Wed Oct 09 2013 Eike Rathke <erack@redhat.com> - 50.1.2-10
|
||||||
|
- Resolves: rhbz#1015594 CVE-2013-2924 use-after-free
|
||||||
|
|
||||||
|
* Fri Oct 04 2013 Eike Rathke <erack@redhat.com> - 50.1.2-9
|
||||||
|
- added %{?_isa} to Requires for multi-arch systems
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 50.1.2-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 22 2013 Eike Rathke <erack@redhat.com> - 50.1.2-7
|
||||||
|
- Resolves: rhbz#986814 install icu-config.sh from source2
|
||||||
|
|
||||||
|
* Wed Jul 17 2013 Eike Rathke <erack@redhat.com> - 50.1.2-6
|
||||||
|
- Resolves: rhbz#966141 various flaws in Layout Engine font processing
|
||||||
|
- Resolves: rhbz#966077 aarch64 support for icu-config.sh wrapper
|
||||||
|
|
||||||
|
* Mon Feb 25 2013 Eike Rathke <erack@redhat.com> - 50.1.2-5
|
||||||
|
- added manpages for gennorm2 and icuinfo, rhbz#884035 related
|
||||||
|
|
||||||
|
* Tue Feb 19 2013 Caolán McNamara <caolanm@redhat.com> - 50.1.2-4
|
||||||
|
- Resolves: fdo#52519 crash on typing some Malayalam
|
||||||
|
|
||||||
|
* Tue Jan 29 2013 Eike Rathke <erack@redhat.com> - 50.1.2-3
|
||||||
|
- Resolves: rhbz#856594 roll back and build without --disable-renaming again
|
||||||
|
|
||||||
|
* Mon Jan 28 2013 Eike Rathke <erack@redhat.com> - 50.1.2-2
|
||||||
|
- Resolves: rhbz#856594 include content of icu/source/uconfig.h.prepend
|
||||||
|
|
||||||
|
* Fri Jan 25 2013 Eike Rathke <erack@redhat.com> - 50.1.2-1
|
||||||
|
- Update to 50.1.2
|
||||||
|
- Resolves: rhbz#856594 to-do add --disable-renaming on next soname bump
|
||||||
|
- removed upstream applied icu.9283.regexcmp.crash.patch
|
||||||
|
|
||||||
|
* Wed Sep 12 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-7
|
||||||
|
- Related: rhbz#856594 reenable icu symbol renaming
|
||||||
|
|
||||||
|
* Wed Sep 12 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-6
|
||||||
|
- Resolves: rhbz#856594 disable icu symbol renaming
|
||||||
|
|
||||||
|
* Fri Aug 31 2012 Tom Callaway <spot@fedoraproject.org> - 49.1.1-5
|
||||||
|
- apply upstream fix (bug 9283) for regexcmp crash causing Chromium segfaults
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 49.1.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 15 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-3
|
||||||
|
- probably parallel-build safe by now. Add a check for original breakage
|
||||||
|
|
||||||
|
* Fri Jun 15 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-2
|
||||||
|
- Resolves: rhbz#804313 multi-lib pain
|
||||||
|
|
||||||
|
* Thu Apr 19 2012 Eike Rathke <erack@redhat.com> - 49.1.1-1
|
||||||
|
- Update to 49.1.1
|
||||||
|
|
||||||
|
* Thu Apr 19 2012 Eike Rathke <erack@redhat.com> - 4.8.1.1-3
|
||||||
|
- Resolves: rhbz#813484 doxygen 1.8.0 does not provide installdox, omit from install
|
||||||
|
|
||||||
|
* Mon Jan 30 2012 Jon Masters <jcm@jonmasters.org> - 4.8.1.1-2
|
||||||
|
- Correct reference to BZ681941, add temporary fix for ARM FTBFS side effect
|
||||||
|
|
||||||
|
* Fri Jan 20 2012 Peter Robinson <pbrobinson@fedoraproject.org> -4.8.1.1-1
|
||||||
|
- Update to 4.8.1.1
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 13 2011 Eike Rathke <erack@redhat.com> - 4.8.1-3
|
||||||
|
- Resolves: rhbz#766542 CVE-2011-4599 Stack-based buffer overflow
|
||||||
|
- add icu.8984.CVE-2011-4599.patch
|
||||||
|
|
||||||
|
* Mon Oct 24 2011 Caolán McNamara <caolanm@redhat.com> - 4.8.1-2
|
||||||
|
- Resolves: rhbz#747193 try and enable ccmp for Indic fonts
|
||||||
|
|
||||||
|
* Wed Sep 07 2011 Caolán McNamara <caolanm@redhat.com> - 4.8.1-1
|
||||||
|
- Resolves: rhbz#681941 don't link unneccessary -lm, etc.
|
||||||
|
- add icu.8800.freeserif.crash.patch
|
||||||
|
|
||||||
|
* Tue Mar 08 2011 Caolán McNamara <caolanm@redhat.com> - 4.6-2
|
||||||
|
- Resolves: rhbz#681941 don't link unneccessary -lm, etc.
|
||||||
|
|
||||||
|
* Mon Mar 07 2011 Caolán McNamara <caolanm@redhat.com> - 4.6-1
|
||||||
|
- latest version
|
||||||
|
- upgrade includes a .pc now of its own, drop ours
|
||||||
|
- drop integrated icu.6995.kannada.patch
|
||||||
|
- drop integrated icu.7971.buildfix.patch
|
||||||
|
- drop integrated icu.7972.buildfix.patch
|
||||||
|
- drop integrated icu.7932.doublecompare.patch
|
||||||
|
- drop integrated icu.8011.buildfix.patch
|
||||||
|
|
||||||
|
* Fri Feb 11 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-8
|
||||||
|
- Resolves: rhbz#674328 yet more ways that freeserif crashes libicu
|
||||||
|
|
||||||
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.2-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 03 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-6
|
||||||
|
- Resolves: rhbz#674328 more ways that freeserif crashes libicu
|
||||||
|
|
||||||
|
* Wed Feb 02 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-5
|
||||||
|
- Resolves: rhbz#674328 freeserif crashes libicu
|
||||||
|
|
||||||
|
* Thu Jan 13 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-4
|
||||||
|
- Resolves: rhbz#669237 strip libicudata
|
||||||
|
|
||||||
|
* Mon Nov 29 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.2-3
|
||||||
|
- Resolves: rhbz#657964 icu-config bindir returns sbindir
|
||||||
|
|
||||||
|
* Thu Nov 25 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.2-2
|
||||||
|
- Resolves: rhbz#654200 revert icu#5431
|
||||||
|
|
||||||
|
* Mon Oct 04 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.2-1
|
||||||
|
- latest version
|
||||||
|
|
||||||
|
* Wed Sep 29 2010 jkeating - 4.4.1-6
|
||||||
|
- Rebuilt for gcc bug 634757
|
||||||
|
|
||||||
|
* Wed Sep 22 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-5
|
||||||
|
- upstream patches
|
||||||
|
|
||||||
|
* Thu Sep 09 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-4
|
||||||
|
- Resolves: rhbz#631403 doxygen no longer generates gifs
|
||||||
|
|
||||||
|
* Thu Jul 08 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-3
|
||||||
|
- move licences into libicu, and add them into the -doc subpackage
|
||||||
|
as well
|
||||||
|
|
||||||
|
* Wed May 26 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-2
|
||||||
|
- Resolves: rhbz#596171 drop icu.icu6284.strictalias.patch and use
|
||||||
|
-fno-strict-aliasig as upstream has added a pile more and doesn't look
|
||||||
|
interested in proposed patchs
|
||||||
|
|
||||||
|
* Thu Apr 29 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-1
|
||||||
|
- latest version
|
||||||
|
- drop integrated icu.icu7567.libctest.patch
|
||||||
|
|
||||||
|
* Fri Apr 02 2010 Caolán McNamara <caolanm@redhat.com> - 4.4-1
|
||||||
|
- latest version
|
||||||
|
- drop integrated icu.6969.pkgdata.patch
|
||||||
|
- drop integrated icu.icu7039.badextract.patch
|
||||||
|
- drop integrated icu.XXXX.buildfix.patch
|
||||||
|
|
||||||
|
* Wed Dec 02 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-8
|
||||||
|
- Resolves: rhbz#543386 update icu-config
|
||||||
|
|
||||||
|
* Thu Nov 19 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-7
|
||||||
|
- Fix FTBFS with yet another autoconf version that changes
|
||||||
|
behaviour
|
||||||
|
|
||||||
|
* Mon Aug 31 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-6
|
||||||
|
- Resolves: rhbz#520468 fix s390x and other secondary archs
|
||||||
|
|
||||||
|
* Tue Jul 28 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-5
|
||||||
|
- icu#7039 fix broken use of extract to get tests working
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 22 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-3
|
||||||
|
- make documentation noarch
|
||||||
|
|
||||||
|
* Tue Jul 14 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-2
|
||||||
|
- rpmlint warnings
|
||||||
|
|
||||||
|
* Fri Jul 03 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-1
|
||||||
|
- 4.2.1 release
|
||||||
|
|
||||||
|
* Fri Jun 26 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.0.1-3
|
||||||
|
- Resolves: rhbz#508288 multilib conflict
|
||||||
|
|
||||||
|
* Thu Jun 11 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.0.1-2
|
||||||
|
- Resolves: rhbz#505252 add icu.6995.kannada.patch
|
||||||
|
|
||||||
|
* Mon Jun 08 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.0.1-1
|
||||||
|
- 4.2.0.1 release
|
||||||
|
|
||||||
|
* Sat May 09 2009 Caolán McNamara <caolanm@redhat.com> - 4.2-1
|
||||||
|
- 4.2 release
|
||||||
|
|
||||||
|
* Sun May 03 2009 Caolán McNamara <caolanm@redhat.com> - 4.2-0.1.d03
|
||||||
|
- 4.2 release candidate
|
||||||
|
- drop resolved icu.icu6008.arm.padding.patch
|
||||||
|
- drop resolved icu.icu6439.bare.elif.patch
|
||||||
|
|
||||||
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 03 2009 Caolán McNamara <caolanm@redhat.com> - 4.0.1-2
|
||||||
|
- fix bare elif for gcc-4.4
|
||||||
|
|
||||||
|
* Fri Jan 16 2009 Caolán McNamara <caolanm@redhat.com> - 4.0.1-1
|
||||||
|
- 4.0.1 release
|
||||||
|
|
||||||
|
* Mon Dec 29 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-6
|
||||||
|
- Resolves rhbz#225896 clean up low hanging rpmlint warnings
|
||||||
|
|
||||||
|
* Tue Dec 16 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-5
|
||||||
|
- drop integrated icu.icu5557.safety.patch
|
||||||
|
|
||||||
|
* Thu Nov 20 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-4
|
||||||
|
- annoyingly upstream tarball was repacked apparently to remove
|
||||||
|
some unused/cached dirs
|
||||||
|
|
||||||
|
* Sat Sep 06 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-3
|
||||||
|
- Resolves: rhbz#461348 wrong icu-config
|
||||||
|
|
||||||
|
* Tue Aug 26 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-2
|
||||||
|
- Resolves: rhbz#459698 drop Malayalam patches. Note test with Rachana/Meera
|
||||||
|
instead of Lohit Malayalam before filing bugs against icu wrt.
|
||||||
|
Malayalam rendering
|
||||||
|
|
||||||
|
* Sat Jul 05 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-1
|
||||||
|
- final release
|
||||||
|
|
||||||
|
* Mon Jun 30 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-0.3.d03
|
||||||
|
- 4.0 release candidate
|
||||||
|
|
||||||
|
* Wed Jun 04 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-0.2.d02
|
||||||
|
- drop icu.icu5498.openoffice.org.patch
|
||||||
|
|
||||||
|
* Sat May 31 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-0.1.d02
|
||||||
|
- 4.0 release candidate
|
||||||
|
- drop integrated icu.regexp.patch
|
||||||
|
|
||||||
|
* Mon May 19 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-8
|
||||||
|
- add icu.icu6284.strictalias.patch and build with
|
||||||
|
strict-aliasing
|
||||||
|
|
||||||
|
* Tue Mar 18 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-7
|
||||||
|
- Resolves: rhbz#437761 modify to icu.icu6213.worstcase.patch for
|
||||||
|
other worst case expansions
|
||||||
|
|
||||||
|
* Mon Mar 17 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-6
|
||||||
|
- Resolves: rhbz#437761 add icu.icu6213.bengali.worstcase.patch
|
||||||
|
|
||||||
|
* Mon Feb 04 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-5
|
||||||
|
- Resolves: rhbz#431401 split syllables on 1st 0d4d of a 0d4d +
|
||||||
|
(>= 0d15 && <= 0d39) + 0d4d + 0d30 sequence
|
||||||
|
|
||||||
|
* Thu Jan 31 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-4
|
||||||
|
- Resolves: rhbz#431029, rhbz#424661 Remove workaround for 0D31 characters
|
||||||
|
|
||||||
|
* Fri Jan 25 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-3
|
||||||
|
- CVE-2007-4770 CVE-2007-4771 add icu.regexp.patch
|
||||||
|
- Resolves: rhbz#423211 fix malalayam stuff in light of syllable
|
||||||
|
changes
|
||||||
|
|
||||||
|
* Fri Jan 11 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-2
|
||||||
|
- remove icu.icu5365.dependantvowels.patch and cleanup
|
||||||
|
icu.icu5506.multiplevowels.patch as they patch and unpatch
|
||||||
|
eachother (thanks George Rhoten for pointing out that madness)
|
||||||
|
|
||||||
|
* Fri Jan 11 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-1
|
||||||
|
- latest version
|
||||||
|
- drop fixed icu.icu6084.zwnj.notdef.patch
|
||||||
|
|
||||||
|
* Thu Dec 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-6
|
||||||
|
- Resolves: rhbz#423211 experimental hack for 0d15+0d4d+0d30
|
||||||
|
|
||||||
|
* Tue Dec 11 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-5
|
||||||
|
- Resolves: rhbz#415541 icu.icu6084.zwnj.notdef.patch
|
||||||
|
|
||||||
|
* Wed Nov 28 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-4
|
||||||
|
- Resolves: ooo#83991 Malayalam "Kartika" font fix
|
||||||
|
|
||||||
|
* Tue Nov 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-3
|
||||||
|
- add icu.openoffice.org.patch
|
||||||
|
|
||||||
|
* Sat Oct 27 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-2
|
||||||
|
- add icu.icu6008.arm.padding.patch to fix an arm problem
|
||||||
|
|
||||||
|
* Tue Oct 02 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-1
|
||||||
|
- latest version
|
||||||
|
|
||||||
|
* Mon Sep 03 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-0.2.d02
|
||||||
|
- next release candidate
|
||||||
|
|
||||||
|
* Wed Aug 29 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-0.2.d01
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Tue Aug 07 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-0.1.d01
|
||||||
|
- 3.8 release candidate
|
||||||
|
- drop integrated icu.icu5433.oriya.patch
|
||||||
|
- drop integrated icu.icu5488.assamese.patch
|
||||||
|
- drop integrated icu.icu5500.devicetablecrash.patch
|
||||||
|
- drop integrated icu.icu5501.sinhala.biggerexpand.patch
|
||||||
|
- drop integrated icu.icu5594.gujarati.patch
|
||||||
|
- drop integrated icu.icu5465.telegu.patch
|
||||||
|
|
||||||
|
* Wed Jun 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-20
|
||||||
|
- Resolves: rhbz#243984 change the icu group as it is libicu
|
||||||
|
which is "System Environment/Libraries" not icu
|
||||||
|
|
||||||
|
* Mon Apr 30 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-19
|
||||||
|
- Resolves: rhbz#220867 Malayalam rendering
|
||||||
|
|
||||||
|
* Tue Feb 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-18
|
||||||
|
- Resolves: rhbz#228457 icu.icu5594.gujarati.patch
|
||||||
|
|
||||||
|
* Fri Feb 09 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-17
|
||||||
|
- spec cleanups
|
||||||
|
|
||||||
|
* Mon Feb 05 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-16
|
||||||
|
- Resolves: rhbz#226949 layout telegu like pango
|
||||||
|
|
||||||
|
* Fri Jan 19 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-15
|
||||||
|
- Resolves: rhbz#214948 icu.icu5506.multiplevowels.patch
|
||||||
|
|
||||||
|
* Tue Jan 09 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-14
|
||||||
|
- Related: rhbz#216089 add icu.icu5557.safety.patch
|
||||||
|
|
||||||
|
* Thu Dec 21 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-13
|
||||||
|
- Resolves: rhbz#220433 modify icu.icu5431.malayam.patch
|
||||||
|
|
||||||
|
* Fri Nov 10 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-12
|
||||||
|
- Resolves: rhbz#214948 icu.icu5506.multiplevowels.patch
|
||||||
|
|
||||||
|
* Wed Nov 08 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-11
|
||||||
|
- Resolves: rhbz#214555 icu.icu5501.sinhala.biggerexpand.patch
|
||||||
|
|
||||||
|
* Wed Nov 08 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-10
|
||||||
|
- Resolves: rhbz#214555 icu.icu5500.devicetablecrash.patch
|
||||||
|
|
||||||
|
* Wed Oct 18 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-9
|
||||||
|
- Resolves: rhbz#213648 extend prev/next to handle ZWJ
|
||||||
|
|
||||||
|
* Wed Oct 18 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-8
|
||||||
|
- Resolves: rhbz213375 (icu.icu5488.assamese.patch)
|
||||||
|
|
||||||
|
* Wed Oct 18 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-7
|
||||||
|
- Resolves: rhbz#211258 (icu.icu5465.telegu.patch)
|
||||||
|
|
||||||
|
* Thu Oct 05 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-6
|
||||||
|
- rh#209391# add icu.icuXXXX.virama.prevnext.patch
|
||||||
|
|
||||||
|
* Mon Oct 02 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-5
|
||||||
|
- rh#208705# add pkg-config Require for -devel package
|
||||||
|
- add icu.icu5431.malayam.patch for rh#208551#/rh#209084#
|
||||||
|
- add icu.icu5433.oriya.patch for rh#208559#/rh#209083#
|
||||||
|
|
||||||
|
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 3.6-4
|
||||||
|
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
||||||
|
|
||||||
|
* Mon Sep 25 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-3
|
||||||
|
- rh#206615# render malayam like pango
|
||||||
|
|
||||||
|
* Wed Sep 06 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-2
|
||||||
|
- fix rh#205252#/icu#5365 (gnome#121882#/#icu#4026#) to make icu
|
||||||
|
like pango for multiple dependant vowels
|
||||||
|
|
||||||
|
* Sun Sep 03 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-1
|
||||||
|
- final release
|
||||||
|
|
||||||
|
* Mon Aug 14 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-0.1.d02
|
||||||
|
- bump
|
||||||
|
|
||||||
|
* Tue Aug 08 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-0.2.d01
|
||||||
|
- c++ code not alias correct
|
||||||
|
|
||||||
|
* Mon Jul 31 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-0.1.d01
|
||||||
|
- rh#200728# update to prelease 3.6d01 to pick up on sinhala fixes
|
||||||
|
- drop integrated rh190879.patch
|
||||||
|
- drop integrated icu-3.4-sinhala1.patch
|
||||||
|
|
||||||
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.4-10.1.1
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.4-10.1
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Sat Jun 10 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-10
|
||||||
|
- rh#194686# BuildRequires
|
||||||
|
|
||||||
|
* Tue May 09 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-9
|
||||||
|
- rh#190879# backport fix
|
||||||
|
|
||||||
|
* Wed May 03 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-8
|
||||||
|
- add Harshula's icu-3.4-sinhala1.patch for some Sinhala support
|
||||||
|
|
||||||
|
* Tue May 02 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-7
|
||||||
|
- add a pkgconfig.pc, make icu-config use it
|
||||||
|
|
||||||
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.4-6.2
|
||||||
|
- bump again for double-long bug on ppc(64)
|
||||||
|
|
||||||
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.4-6.1
|
||||||
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
||||||
|
|
||||||
|
* Tue Jan 03 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-6
|
||||||
|
- add icu-gcc41.patch
|
||||||
|
|
||||||
|
* Tue Oct 11 2005 Caolán McNamara <caolanm@redhat.com> - 3.4-5
|
||||||
|
- clear execstack requirement for libicudata
|
||||||
|
|
||||||
|
* Mon Sep 12 2005 Caolán McNamara <caolanm@redhat.com> - 3.4-4
|
||||||
|
- import extra icu.spec into fedora core for openoffice.org
|
||||||
|
- build with gcc 4
|
||||||
|
|
||||||
|
* Wed Aug 31 2005 Thorsten Leemhuis <fedora at leemhuis.info> - 3.4-3
|
||||||
|
- Use dist
|
||||||
|
- gcc32 does not understand -fstack-protector and
|
||||||
|
--param=ssp-buffer-size=4
|
||||||
|
|
||||||
|
* Tue Aug 2 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.4-2
|
||||||
|
- 3.4.
|
||||||
|
|
||||||
|
* Sun Jul 31 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.4-0.2.d02
|
||||||
|
- 3.4-d02.
|
||||||
|
- Don't ship static libraries.
|
||||||
|
|
||||||
|
* Wed Apr 27 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.2-3
|
||||||
|
- Apply upstream case mapping mutex lock removal patch.
|
||||||
|
- Build with gcc 3.2 as a temporary workaround for #152495.
|
||||||
|
|
||||||
|
* Thu Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 3.2-2
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Sat Jan 1 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.2-1
|
||||||
|
- Don't use %%{_smp_mflags} (b.f.u #2357).
|
||||||
|
- Remove unnecessary Epochs.
|
||||||
|
|
||||||
|
* Sat Dec 4 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:3.2-0.fdr.1
|
||||||
|
- Update to 3.2.
|
||||||
|
|
||||||
|
* Sun Jul 18 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:3.0-0.fdr.1
|
||||||
|
- Update to 3.0, datadirs patch no longer needed.
|
||||||
|
- Package data in shared libs, drop -locales subpackage.
|
||||||
|
- Rename -docs subpackage to libicu-doc, and generate graphs with graphviz.
|
||||||
|
|
||||||
|
* Sat Dec 13 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6.1-0.fdr.3
|
||||||
|
- Partial fix for bad datadirs returned by icu-config (works as long as
|
||||||
|
data packaging mode is not "common" or "dll").
|
||||||
|
|
||||||
|
* Sun Nov 23 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6.1-0.fdr.2
|
||||||
|
- First complete version.
|
||||||
|
|
||||||
|
* Sun Sep 28 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6.1-0.fdr.1
|
||||||
|
- Update to 2.6.1.
|
||||||
|
|
||||||
|
* Wed Aug 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6-0.fdr.1
|
||||||
|
- First build, based on upstream and SuSE 8.2 packages.
|
145
base/libicu76/icuinfo-man.patch
Normal file
145
base/libicu76/icuinfo-man.patch
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
Description: supply manual page for program that doesn't have one
|
||||||
|
Author: Jay Berkenbilt <qjb@debian.org>
|
||||||
|
Bug: http://bugs.icu-project.org/trac/ticket/7665
|
||||||
|
erAck: adapted to ICU 56.1 icu/source/tools/icuinfo/Makefile.in
|
||||||
|
|
||||||
|
diff -Nur orig.icu/source/tools/icuinfo/icuinfo.1.in icu/source/tools/icuinfo/icuinfo.1.in
|
||||||
|
--- orig.icu/source/tools/icuinfo/icuinfo.1.in 1970-01-01 01:00:00.000000000 +0100
|
||||||
|
+++ icu/source/tools/icuinfo/icuinfo.1.in 2015-10-27 19:19:35.184056800 +0100
|
||||||
|
@@ -0,0 +1,76 @@
|
||||||
|
+.\" Hey, Emacs! This is -*-nroff-*- you know...
|
||||||
|
+.\"
|
||||||
|
+.\" icuinfo.1: manual page for the icuinfo utility
|
||||||
|
+.\"
|
||||||
|
+.\" Copyright (C) 2005-2006 International Business Machines Corporation and others
|
||||||
|
+.\"
|
||||||
|
+.TH ICUINFO 1 "1 May 2010" "ICU MANPAGE" "ICU @VERSION@ Manual"
|
||||||
|
+.SH NAME
|
||||||
|
+.B icuinfo
|
||||||
|
+\- Shows some basic info about the current ICU
|
||||||
|
+.SH SYNOPSIS
|
||||||
|
+.B icuinfo
|
||||||
|
+[
|
||||||
|
+.BR "\-h\fP, \fB\-?\fP, \fB\-\-help"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BR "\-V\fP, \fB\-\-version"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BR "\-c\fP, \fB\-\-copyright"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-i\fP, \fB\-\-icudatadir" " directory"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BR "\-v\fP, \fB\-\-verbose"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-L\fP, \fB\-\-list-plugins"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-m\fP, \fB\-\-milisecond-time"
|
||||||
|
+]
|
||||||
|
+[
|
||||||
|
+.BI "\-K\fP, \fB\-\-cleanup"
|
||||||
|
+]
|
||||||
|
+.SH DESCRIPTION
|
||||||
|
+.B icuinfo
|
||||||
|
+prints basic information about the current version of ICU.
|
||||||
|
+.SH OPTIONS
|
||||||
|
+.TP
|
||||||
|
+.BR "\-h\fP, \fB\-?\fP, \fB\-\-help"
|
||||||
|
+Print help about usage and exit.
|
||||||
|
+.TP
|
||||||
|
+.BR "\-V\fP, \fB\-\-version"
|
||||||
|
+Print the version of
|
||||||
|
+.B icuinfo
|
||||||
|
+and exit.
|
||||||
|
+.TP
|
||||||
|
+.BR "\-c\fP, \fB\-\-copyright"
|
||||||
|
+Embeds the standard ICU copyright into the
|
||||||
|
+.IR output-file .
|
||||||
|
+.TP
|
||||||
|
+.BR "\-v\fP, \fB\-\-verbose"
|
||||||
|
+Display extra informative messages during execution.
|
||||||
|
+.TP
|
||||||
|
+.BI "\-i\fP, \fB\-\-icudatadir" " directory"
|
||||||
|
+Look for any necessary ICU data files in
|
||||||
|
+.IR directory .
|
||||||
|
+For example, the file
|
||||||
|
+.B pnames.icu
|
||||||
|
+must be located when ICU's data is not built as a shared library.
|
||||||
|
+The default ICU data directory is specified by the environment variable
|
||||||
|
+.BR ICU_DATA .
|
||||||
|
+Most configurations of ICU do not require this argument.
|
||||||
|
+.TP
|
||||||
|
+.BI "\-L\fP, \fB\-\-list-plugins"
|
||||||
|
+If specified, list and diagnose issues with ICU plugins.
|
||||||
|
+.TP
|
||||||
|
+.BI "\-K\fP, \fB\-\-cleanup"
|
||||||
|
+Attempt to unload plugins before exiting.
|
||||||
|
+.TP
|
||||||
|
+.BI "\-m\fP, \fB\-\-milisecond-time"
|
||||||
|
+Print the current UTC time in milliseconds.
|
||||||
|
+.SH COPYRIGHT
|
||||||
|
+Copyright (C) 2010 International Business Machines Corporation and others
|
||||||
|
diff -Nur orig.icu/source/tools/icuinfo/Makefile.in icu/source/tools/icuinfo/Makefile.in
|
||||||
|
--- orig.icu/source/tools/icuinfo/Makefile.in 2015-10-08 05:53:56.000000000 +0200
|
||||||
|
+++ icu/source/tools/icuinfo/Makefile.in 2015-10-27 19:23:19.115509906 +0100
|
||||||
|
@@ -14,8 +14,15 @@
|
||||||
|
## Build directory information
|
||||||
|
subdir = tools/icuinfo
|
||||||
|
|
||||||
|
+TARGET_STUB_NAME = icuinfo
|
||||||
|
+
|
||||||
|
+SECTION = 1
|
||||||
|
+
|
||||||
|
+MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
## Extra files to remove for 'make clean'
|
||||||
|
-CLEANFILES = *~ $(DEPS) $(PLUGIN_OBJECTS) $(PLUGINFILE) $(PLUGIN)
|
||||||
|
+CLEANFILES = *~ $(DEPS) $(PLUGIN_OBJECTS) $(PLUGINFILE) $(PLUGIN) $(MAN_FILES)
|
||||||
|
|
||||||
|
## Target information
|
||||||
|
TARGET = icuinfo$(EXEEXT)
|
||||||
|
@@ -35,7 +42,8 @@
|
||||||
|
|
||||||
|
## List of phony targets
|
||||||
|
.PHONY : all all-local install install-local clean clean-local \
|
||||||
|
-distclean distclean-local dist dist-local check check-local plugin-check
|
||||||
|
+distclean distclean-local dist dist-local check check-local plugin-check \
|
||||||
|
+install-man
|
||||||
|
|
||||||
|
## Clear suffix list
|
||||||
|
.SUFFIXES :
|
||||||
|
@@ -48,12 +56,16 @@
|
||||||
|
dist: dist-local
|
||||||
|
check: all check-local
|
||||||
|
|
||||||
|
-all-local: $(TARGET)
|
||||||
|
+all-local: $(TARGET) $(MAN_FILES)
|
||||||
|
|
||||||
|
-install-local: all-local
|
||||||
|
+install-local: all-local install-man
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
||||||
|
$(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
|
||||||
|
|
||||||
|
+install-man: $(MAN_FILES)
|
||||||
|
+ $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
|
||||||
|
+ $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
|
||||||
|
+
|
||||||
|
dist-local:
|
||||||
|
|
||||||
|
clean-local:
|
||||||
|
@@ -103,6 +115,10 @@
|
||||||
|
@echo "Plugins are disabled (use --enable-plugins to enable)"
|
||||||
|
endif
|
||||||
|
|
||||||
|
+%.$(SECTION): $(srcdir)/%.$(SECTION).in
|
||||||
|
+ cd $(top_builddir) \
|
||||||
|
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
+
|
||||||
|
ifeq (,$(MAKECMDGOALS))
|
||||||
|
-include $(DEPS)
|
||||||
|
else
|
Loading…
x
Reference in New Issue
Block a user