|
|
|
@ -1,10 +1,12 @@
|
|
|
|
|
%bcond_with jar
|
|
|
|
|
%bcond_with java
|
|
|
|
|
%bcond libtextstyle %[0%{?fedora} >= 40]
|
|
|
|
|
|
|
|
|
|
Summary: GNU libraries and utilities for producing multi-lingual messages
|
|
|
|
|
Summary: GNU tools and libraries for localized translated messages
|
|
|
|
|
Name: gettext
|
|
|
|
|
Version: 0.21
|
|
|
|
|
Release: 8%{?dist}
|
|
|
|
|
Version: 0.22.5
|
|
|
|
|
Release: 6%{?dist}
|
|
|
|
|
|
|
|
|
|
# The following are licensed under LGPLv2+:
|
|
|
|
|
# - libintl and its headers
|
|
|
|
|
# - libasprintf and its headers
|
|
|
|
@ -18,25 +20,19 @@ Release: 8%{?dist}
|
|
|
|
|
# - libasprintf info files
|
|
|
|
|
# - libtextstyle info files
|
|
|
|
|
# Everything else is GPLv3+
|
|
|
|
|
License: GPLv3+ and LGPLv2+ and GFDL
|
|
|
|
|
License: GPL-3.0-or-later AND LGPL-2.0-or-later AND GFDL-1.2-or-later
|
|
|
|
|
URL: https://www.gnu.org/software/gettext/
|
|
|
|
|
Source: https://ftp.gnu.org/pub/gnu/gettext/%{name}-%{version}.tar.xz
|
|
|
|
|
Source: https://ftp.gnu.org/pub/gnu/%{name}/%{name}-%{version}.tar.gz
|
|
|
|
|
Source2: msghack.py
|
|
|
|
|
Source3: msghack.1
|
|
|
|
|
|
|
|
|
|
# this patch has merged upstream
|
|
|
|
|
# Patch1: gettext-msgmerge-for-msgfmt.patch
|
|
|
|
|
|
|
|
|
|
# https://lists.gnu.org/archive/html/bug-gnulib/2020-07/msg00195.html
|
|
|
|
|
Patch1: gettext-0.21-gnulib-perror-tests.patch
|
|
|
|
|
Patch2: gettext-0.21-disable-libtextstyle.patch
|
|
|
|
|
Patch3: gettext-0.21-covscan.patch
|
|
|
|
|
Patch4: gettext-java17-2062407.patch
|
|
|
|
|
Patch1: gettext-0.21.1-covscan.patch
|
|
|
|
|
Patch2: gettext-0.22-disable-libtextstyle.patch
|
|
|
|
|
|
|
|
|
|
# for bootstrapping
|
|
|
|
|
# BuildRequires: autoconf >= 2.62
|
|
|
|
|
BuildRequires: automake
|
|
|
|
|
# BuildRequires: libtool
|
|
|
|
|
BuildRequires: libtool
|
|
|
|
|
# BuildRequires: bison
|
|
|
|
|
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
@ -53,8 +49,6 @@ BuildRequires: zip, unzip
|
|
|
|
|
%endif
|
|
|
|
|
# for po-mode.el
|
|
|
|
|
BuildRequires: emacs
|
|
|
|
|
# for autosetup
|
|
|
|
|
BuildRequires: git
|
|
|
|
|
# ensure 'ARCHIVE_FORMAT=dirxz'
|
|
|
|
|
BuildRequires: xz
|
|
|
|
|
# for documentation
|
|
|
|
@ -78,10 +72,11 @@ BuildRequires: glibc-langpack-ja
|
|
|
|
|
BuildRequires: glibc-langpack-tr
|
|
|
|
|
BuildRequires: glibc-langpack-zh
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
# Depend on the exact version of the library sub package
|
|
|
|
|
Requires: %{name}-libs%{_isa} = %{version}-%{release}
|
|
|
|
|
Provides: bundled(gnulib)
|
|
|
|
|
Provides: bundled(libcroco) = 0.6.12
|
|
|
|
|
Requires: %{name}-runtime = %{version}-%{release}
|
|
|
|
|
%if %{with libtextstyle}
|
|
|
|
|
Requires: libtextstyle%{?_isa} = %{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
The GNU gettext package provides a set of tools and documentation for
|
|
|
|
@ -96,10 +91,25 @@ catalogs and is a powerful and simple method for internationalizing
|
|
|
|
|
programs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package runtime
|
|
|
|
|
Summary: GNU runtime libraries and programs for producing multi-lingual messages
|
|
|
|
|
License: GPL-3.0-or-later AND LGPL-2.0-or-later
|
|
|
|
|
# Depend on the exact version of the library sub package
|
|
|
|
|
Requires: %{name}-libs%{_isa} = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-envsubst = %{version}-%{release}
|
|
|
|
|
Conflicts: %{name} <= 0.21-15%{?dist}.0.20220203
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description runtime
|
|
|
|
|
The GNU gettext-runtime package provides an easy to use runtime libraries and
|
|
|
|
|
programs for creating, using, and modifying natural language catalogs
|
|
|
|
|
and is a powerful and simple method for internationalizing programs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package common-devel
|
|
|
|
|
Summary: Common development files for %{name}
|
|
|
|
|
# autopoint archive
|
|
|
|
|
License: GPLv3+
|
|
|
|
|
License: GPL-3.0-or-later
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description common-devel
|
|
|
|
@ -111,7 +121,7 @@ Summary: Development files for %{name}
|
|
|
|
|
# autopoint is GPLv3+
|
|
|
|
|
# libasprintf is LGPLv2+
|
|
|
|
|
# libgettextpo is GPLv3+
|
|
|
|
|
License: LGPLv2+ and GPLv3+ and GFDL
|
|
|
|
|
License: LGPL-2.0-or-later AND GPL-3.0-or-later AND GFDL-1.2-or-later
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-common-devel = %{version}-%{release}
|
|
|
|
@ -119,7 +129,9 @@ Requires: xz
|
|
|
|
|
Requires: diffutils
|
|
|
|
|
Obsoletes: gettext-autopoint < 0.18.1.1-3
|
|
|
|
|
Provides: gettext-autopoint = %{version}-%{release}
|
|
|
|
|
%if %{without libtextstyle}
|
|
|
|
|
Obsoletes: libtextstyle-devel < %{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
This package contains all development related files necessary for
|
|
|
|
@ -132,12 +144,36 @@ want to add gettext support for your project.
|
|
|
|
|
Summary: Libraries for %{name}
|
|
|
|
|
# libasprintf is LGPLv2+
|
|
|
|
|
# libgettextpo is GPLv3+
|
|
|
|
|
License: LGPLv2+ and GPLv3+
|
|
|
|
|
License: LGPL-2.0-or-later AND GPL-3.0-or-later
|
|
|
|
|
%if %{with libtextstyle}
|
|
|
|
|
Requires: libtextstyle%{?_isa} = %{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
%if %{without libtextstyle}
|
|
|
|
|
Obsoletes: libtextstyle < %{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
|
This package contains libraries used internationalization support.
|
|
|
|
|
|
|
|
|
|
%if %{with libtextstyle}
|
|
|
|
|
%package -n libtextstyle
|
|
|
|
|
Summary: Text styling library
|
|
|
|
|
License: GPL-3.0-or-later
|
|
|
|
|
|
|
|
|
|
%description -n libtextstyle
|
|
|
|
|
Library for producing styled text to be displayed in a terminal
|
|
|
|
|
emulator.
|
|
|
|
|
|
|
|
|
|
%package -n libtextstyle-devel
|
|
|
|
|
Summary: Development files for libtextstyle
|
|
|
|
|
License: GPL-3.0-or-later AND GFDL-1.2-or-later
|
|
|
|
|
Requires: libtextstyle%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description -n libtextstyle-devel
|
|
|
|
|
This package contains all development related files necessary for
|
|
|
|
|
developing or compiling applications/libraries that needs text
|
|
|
|
|
styling.
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%package -n emacs-%{name}
|
|
|
|
|
Summary: Support for editing po files within GNU Emacs
|
|
|
|
@ -160,8 +196,21 @@ This program can be used to alter .po files in ways no sane mind would
|
|
|
|
|
think about.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package envsubst
|
|
|
|
|
Summary: Substitutes the values of environment variables
|
|
|
|
|
Conflicts: %{name} <= 0.21-15%{?dist}.0.20220203
|
|
|
|
|
|
|
|
|
|
%description envsubst
|
|
|
|
|
Substitutes the values of environment variables.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -S git
|
|
|
|
|
%setup -q
|
|
|
|
|
%patch 1 -p1 -b .orig~
|
|
|
|
|
%if %{without libtextstyle}
|
|
|
|
|
%patch 2 -p1 -b .orig~
|
|
|
|
|
%endif
|
|
|
|
|
autoreconf
|
|
|
|
|
|
|
|
|
|
# Defeat libtextstyle attempt to bundle libxml2. The comments
|
|
|
|
|
# indicate this is done because the libtextstyle authors do not want
|
|
|
|
@ -186,7 +235,8 @@ export CFLAGS="$RPM_OPT_FLAGS -D__SUPPORT_SNAN__"
|
|
|
|
|
export CPPFLAGS="-I%{_includedir}/libxml2"
|
|
|
|
|
# Side effect of unbundling libxml2 from libtextstyle.
|
|
|
|
|
export LIBS="-lxml2"
|
|
|
|
|
%configure --without-included-gettext --enable-nls --disable-static \
|
|
|
|
|
export CFLAGS="$CFLAGS -Wformat"
|
|
|
|
|
%configure --enable-nls --disable-static \
|
|
|
|
|
--enable-shared --disable-csharp --disable-rpath \
|
|
|
|
|
%if %{with java}
|
|
|
|
|
--enable-java \
|
|
|
|
@ -214,7 +264,6 @@ sed -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
|
|
|
|
|
install -pm 755 %SOURCE2 ${RPM_BUILD_ROOT}%{_bindir}/msghack
|
|
|
|
|
install -pm 644 %SOURCE3 ${RPM_BUILD_ROOT}%{_mandir}/man1/msghack.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# make preloadable_libintl.so executable
|
|
|
|
|
chmod 755 ${RPM_BUILD_ROOT}%{_libdir}/preloadable_libintl.so
|
|
|
|
|
|
|
|
|
@ -266,30 +315,27 @@ rm ${RPM_BUILD_ROOT}%{_emacs_sitelispdir}/%{name}/start-po.elc
|
|
|
|
|
|
|
|
|
|
%find_lang %{name}-runtime
|
|
|
|
|
%find_lang %{name}-tools
|
|
|
|
|
cat %{name}-*.lang > %{name}.lang
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
# this takes quite a lot of time to run
|
|
|
|
|
|
|
|
|
|
# adapt to rpath removal
|
|
|
|
|
export LD_LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir}:$PWD/gettext-tools/intl/.libs
|
|
|
|
|
export LD_LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir}:$PWD/gettext-runtime/intl/.libs
|
|
|
|
|
|
|
|
|
|
# override LIBUNISTRING to prevent reordering of lib objects
|
|
|
|
|
make check LIBUNISTRING=-lunistring
|
|
|
|
|
|
|
|
|
|
%ldconfig_scriptlets libs
|
|
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
|
%license COPYING
|
|
|
|
|
%doc AUTHORS gettext-runtime/BUGS
|
|
|
|
|
%doc gettext-tools/misc/DISCLAIM README
|
|
|
|
|
%doc NEWS THANKS
|
|
|
|
|
%doc gettext-runtime/man/*.1.html
|
|
|
|
|
%doc gettext-runtime/intl/COPYING*
|
|
|
|
|
%{_bindir}/envsubst
|
|
|
|
|
%{_bindir}/gettext
|
|
|
|
|
%{_bindir}/gettext.sh
|
|
|
|
|
%files -f %{name}-tools.lang
|
|
|
|
|
%doc AUTHORS NEWS README THANKS
|
|
|
|
|
%doc gettext-tools/misc/DISCLAIM
|
|
|
|
|
%doc gettext-tools/man/msg*.1.html
|
|
|
|
|
%doc gettext-tools/man/recode*.1.html
|
|
|
|
|
%doc gettext-tools/man/xgettext.1.html
|
|
|
|
|
%doc gettext-tools/doc/FAQ.html
|
|
|
|
|
%doc gettext-tools/doc/tutorial.html
|
|
|
|
|
%{_bindir}/msgattrib
|
|
|
|
|
%{_bindir}/msgcat
|
|
|
|
|
%{_bindir}/msgcmp
|
|
|
|
@ -304,14 +350,16 @@ make check LIBUNISTRING=-lunistring
|
|
|
|
|
%{_bindir}/msgmerge
|
|
|
|
|
%{_bindir}/msgunfmt
|
|
|
|
|
%{_bindir}/msguniq
|
|
|
|
|
%{_bindir}/ngettext
|
|
|
|
|
%{_bindir}/recode-sr-latin
|
|
|
|
|
%{_bindir}/xgettext
|
|
|
|
|
%{_infodir}/gettext*
|
|
|
|
|
%exclude %{_mandir}/man1/autopoint.1*
|
|
|
|
|
%exclude %{_mandir}/man1/envsubst.1*
|
|
|
|
|
%exclude %{_mandir}/man1/gettextize.1*
|
|
|
|
|
%exclude %{_mandir}/man1/msghack.1*
|
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
%{_mandir}/man1/msg*
|
|
|
|
|
%{_mandir}/man1/recode*.1*
|
|
|
|
|
%{_mandir}/man1/xgettext.1*
|
|
|
|
|
%{_libdir}/%{name}
|
|
|
|
|
%if %{with java}
|
|
|
|
|
%exclude %{_libdir}/%{name}/gnu.gettext.*
|
|
|
|
@ -324,11 +372,36 @@ make check LIBUNISTRING=-lunistring
|
|
|
|
|
%dir %{_datadir}/%{name}-%{version}
|
|
|
|
|
%{_datadir}/%{name}-%{version}/its
|
|
|
|
|
|
|
|
|
|
%files runtime -f %{name}-runtime.lang
|
|
|
|
|
%license COPYING
|
|
|
|
|
%doc gettext-runtime/BUGS
|
|
|
|
|
%doc gettext-runtime/man/gettext.1.html
|
|
|
|
|
%doc gettext-runtime/man/ngettext.1.html
|
|
|
|
|
%doc gettext-runtime/intl/COPYING*
|
|
|
|
|
%{_bindir}/gettext
|
|
|
|
|
%{_bindir}/gettext.sh
|
|
|
|
|
%{_bindir}/ngettext
|
|
|
|
|
%exclude %{_mandir}/man1/autopoint.1*
|
|
|
|
|
%exclude %{_mandir}/man1/envsubst.1*
|
|
|
|
|
%exclude %{_mandir}/man1/gettextize.1*
|
|
|
|
|
%exclude %{_mandir}/man1/msg*
|
|
|
|
|
%exclude %{_mandir}/man1/recode-sr-latin.1*
|
|
|
|
|
%exclude %{_mandir}/man1/xgettext.1*
|
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
|
|
|
|
|
%files envsubst
|
|
|
|
|
%license COPYING
|
|
|
|
|
%doc gettext-runtime/man/envsubst.1.html
|
|
|
|
|
%{_bindir}/envsubst
|
|
|
|
|
%{_mandir}/man1/envsubst.1*
|
|
|
|
|
|
|
|
|
|
%files common-devel
|
|
|
|
|
%{_datadir}/%{name}/archive.*.tar.xz
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%doc gettext-runtime/man/*.3.html ChangeLog
|
|
|
|
|
%doc gettext-tools/man/autopoint.1.html
|
|
|
|
|
%doc gettext-tools/man/gettextize.1.html
|
|
|
|
|
%{_bindir}/autopoint
|
|
|
|
|
%{_bindir}/gettextize
|
|
|
|
|
%{_datadir}/%{name}/projects/
|
|
|
|
@ -360,6 +433,18 @@ make check LIBUNISTRING=-lunistring
|
|
|
|
|
%{_datadir}/%{name}/libintl.jar
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with libtextstyle}
|
|
|
|
|
%files -n libtextstyle
|
|
|
|
|
%{_libdir}/libtextstyle.so.0*
|
|
|
|
|
|
|
|
|
|
%files -n libtextstyle-devel
|
|
|
|
|
%{_docdir}/libtextstyle/
|
|
|
|
|
%{_includedir}/textstyle/
|
|
|
|
|
%{_includedir}/textstyle.h
|
|
|
|
|
%{_infodir}/libtextstyle*
|
|
|
|
|
%{_libdir}/libtextstyle.so
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%files -n emacs-%{name}
|
|
|
|
|
%dir %{_emacs_sitelispdir}/%{name}
|
|
|
|
|
%{_emacs_sitelispdir}/%{name}/*.elc
|
|
|
|
@ -372,23 +457,113 @@ make check LIBUNISTRING=-lunistring
|
|
|
|
|
%{_mandir}/man1/msghack.1*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Mar 30 2023 Jens Petersen <petersen@redhat.com> - 0.21-8
|
|
|
|
|
- add Java 17 support patch from Mamoru Tasaka (rhbz#2182696)
|
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.22.5-6
|
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
|
|
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 0.22.5-5
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Thu Jul 11 2024 Manish Tiwari <matiwari@redhat.com> - 0.22.5-5
|
|
|
|
|
- CI gating tests migration to tmt
|
|
|
|
|
|
|
|
|
|
* Thu Jul 4 2024 Manish Tiwari <matiwari@redhat.com> - 0.22.5-4
|
|
|
|
|
- Add explicit package version requirement for libtextstyle
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.22.5-3
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Mar 8 2024 Jens Petersen <petersen@redhat.com> - 0.22.5-2
|
|
|
|
|
- condition libtextstyle obsoletes
|
|
|
|
|
|
|
|
|
|
* Mon Mar 4 2024 Manish Tiwari <matiwari@redhat.com> - 0.22.5-1
|
|
|
|
|
- update to 0.22.5 release
|
|
|
|
|
- https://savannah.gnu.org/news/?id=10597
|
|
|
|
|
|
|
|
|
|
* Wed Feb 21 2024 Manish Tiwari <matiwari@redhat.com> - 0.22.4-2
|
|
|
|
|
- Add back libtextstyle library for rawhide (#2264128)
|
|
|
|
|
|
|
|
|
|
* Fri Feb 9 2024 Manish Tiwari <matiwari@redhat.com> - 0.22.4-1
|
|
|
|
|
- update to 0.22.4 release
|
|
|
|
|
- https://savannah.gnu.org/news/?id=10544
|
|
|
|
|
|
|
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.22-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.22-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.22-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.21-7
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
* Fri Jun 23 2023 Jens Petersen <petersen@redhat.com> - 0.22-1
|
|
|
|
|
- update to 0.22 release
|
|
|
|
|
- https://savannah.gnu.org/news/?id=10378
|
|
|
|
|
|
|
|
|
|
* Mon May 17 2021 Sundeep Anand <suanand@redhat.com> - 0.21-6
|
|
|
|
|
* Wed Mar 29 2023 Sundeep Anand <suanand@redhat.com> - 0.21.1-3
|
|
|
|
|
- update license tag to as per SPDX identifiers
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Oct 14 2022 Sundeep Anand <suanand@redhat.com> - 0.21.1-1
|
|
|
|
|
- update to 0.21.1 release
|
|
|
|
|
|
|
|
|
|
* Thu Oct 13 2022 Sundeep Anand <suanand@redhat.com> - 0.21-20.0.20220203
|
|
|
|
|
- Include doc and man pages for envsubst subpackage.
|
|
|
|
|
Move _libdir and _datadir from gettext-runtime to gettext package.
|
|
|
|
|
|
|
|
|
|
* Mon Sep 12 2022 Sundeep Anand <suanand@redhat.com> - 0.21-19.0.20220203
|
|
|
|
|
- Add conflicts to enable new (sub)packages installable independently of the original package.
|
|
|
|
|
|
|
|
|
|
* Wed Aug 10 2022 Honza Horak <hhorak@redhat.com> - 0.21-18.0.20220203
|
|
|
|
|
- Introduce envsubst sub-package for allow install envsubst with minimal
|
|
|
|
|
footprint
|
|
|
|
|
|
|
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.21-17.0.20220203
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jun 8 2022 Sundeep Anand <suanand@redhat.com> - 0.21-16.0.20220203
|
|
|
|
|
- separate out gettext-runtime from the main package into a subpackage
|
|
|
|
|
|
|
|
|
|
* Tue Jun 7 2022 Sundeep Anand <suanand@redhat.com> - 0.21-15.0.20220203
|
|
|
|
|
- add Provides: gettext-runtime to gettext package for forward compatibility.
|
|
|
|
|
- and removed Provides: gettext-tools
|
|
|
|
|
|
|
|
|
|
* Mon Jun 6 2022 Sundeep Anand <suanand@redhat.com> - 0.21-14.0.20220203
|
|
|
|
|
- add Provides: gettext-tools to gettext package for forward compatibility.
|
|
|
|
|
|
|
|
|
|
* Thu Mar 31 2022 Jens Petersen <petersen@redhat.com> - 0.21-13.0.20220203
|
|
|
|
|
- add Java 17 support patch from Mamoru Tasaka (#2062407)
|
|
|
|
|
|
|
|
|
|
* Wed Mar 9 2022 Sundeep Anand <suanand@redhat.com> - 0.21-12.0.20220203
|
|
|
|
|
- fix gettext snapshot versioning issue to make it canonical (#2061646)
|
|
|
|
|
|
|
|
|
|
* Thu Mar 3 2022 Sundeep Anand <suanand@redhat.com> - 0.21-11.0.20220203
|
|
|
|
|
- Rebuild with gettext-snapshot-20220228 to fix ppc64le and tests (#2045414)
|
|
|
|
|
Removed gettext-0.21-gnulib-perror-tests.patch as it is upstreamed.
|
|
|
|
|
|
|
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.21-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Nov 23 2021 Jens Petersen <petersen@redhat.com> - 0.21-9
|
|
|
|
|
- update autotools files with autoreconf to fix FTBFS (#2000426)
|
|
|
|
|
|
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.21-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 25 2021 Florian Weimer <fweimer@redhat.com> - 0.21-7
|
|
|
|
|
- Rebuild with new binutils to fix ppc64le corruption (#1960730)
|
|
|
|
|
|
|
|
|
|
* Tue May 11 2021 Sundeep Anand <suanand@redhat.com> - 0.21-6
|
|
|
|
|
- Add gettext-0.21-covscan.patch to fix issues detected by static analyzers
|
|
|
|
|
Add gettext-0.21-disable-libtextstyle.patch
|
|
|
|
|
|
|
|
|
|
* Fri Apr 30 2021 Sundeep Anand <suanand@redhat.com> - 0.21-5
|
|
|
|
|
- Add gettext-0.21-disable-libtextstyle.patch
|
|
|
|
|
Do not build libtextstyle, as it depends on libcroco
|
|
|
|
|
which is now unmaintained and has known security bugs.
|
|
|
|
|
Obsolete libtextstyle and libtextstyle-devel packages.
|
|
|
|
|
|
|
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0.21-5
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.21-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|