Compare commits
No commits in common. "c8s" and "c9" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,2 +1,2 @@
|
||||
/libidn2-*.tar.gz
|
||||
/libidn2-*.tar.gz.sig
|
||||
SOURCES/gpgkey-1CB27DBC98614B2D5841646D08302DB6A2670428.gpg
|
||||
SOURCES/libidn2-2.3.0.tar.gz
|
||||
|
2
.libidn2.metadata
Normal file
2
.libidn2.metadata
Normal file
@ -0,0 +1,2 @@
|
||||
97f7ff7a9ca0c5beef95ba137b88b87bf1d4f807 SOURCES/gpgkey-1CB27DBC98614B2D5841646D08302DB6A2670428.gpg
|
||||
53f54fd3c305d871ed5716406c0695fad5c34c45 SOURCES/libidn2-2.3.0.tar.gz
|
BIN
SOURCES/libidn2-2.3.0.tar.gz.sig
Normal file
BIN
SOURCES/libidn2-2.3.0.tar.gz.sig
Normal file
Binary file not shown.
@ -1,17 +1,21 @@
|
||||
Summary: Library to support IDNA2008 internationalized domain names
|
||||
Name: libidn2
|
||||
Version: 2.2.0
|
||||
Release: 1%{?dist}
|
||||
Version: 2.3.0
|
||||
Release: 7%{?dist}
|
||||
License: (GPLv2+ or LGPLv3+) and GPLv3+
|
||||
URL: https://www.gnu.org/software/libidn/#libidn2
|
||||
|
||||
Source0: https://ftp.gnu.org/gnu/libidn/%{name}-%{version}.tar.gz
|
||||
Source1: https://ftp.gnu.org/gnu/libidn/%{name}-%{version}.tar.gz.sig
|
||||
Source2: gpgkey-1CB27DBC98614B2D5841646D08302DB6A2670428.gpg
|
||||
Patch0: libidn2-2.0.0-rpath.patch
|
||||
|
||||
BuildRequires: gnupg2
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: gettext
|
||||
BuildRequires: libunistring-devel
|
||||
BuildRequires: automake
|
||||
Provides: bundled(gnulib)
|
||||
|
||||
%description
|
||||
@ -31,26 +35,32 @@ developing applications that use libidn2.
|
||||
Summary: IDNA2008 internationalized domain names conversion tool
|
||||
License: GPLv3+
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||
Requires(post): /sbin/install-info
|
||||
Requires(preun): /sbin/install-info
|
||||
%endif
|
||||
|
||||
%description -n idn2
|
||||
The idn2 package contains the idn2 command line tool for testing
|
||||
IDNA2008 conversions.
|
||||
|
||||
%prep
|
||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%setup -q
|
||||
%patch0 -p1 -b .rpath
|
||||
touch -c -r configure.rpath configure
|
||||
touch -c -r m4/libtool.m4.rpath m4/libtool.m4
|
||||
touch -c -r m4/libtool.m4.rpath aclocal.m4
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install
|
||||
%make_install
|
||||
|
||||
# Clean-up examples for documentation
|
||||
make %{?_smp_mflags} -C examples distclean
|
||||
%make_build -C examples distclean
|
||||
rm -f examples/Makefile*
|
||||
|
||||
# Don't install any libtool .la files
|
||||
@ -62,10 +72,20 @@ rm -f $RPM_BUILD_ROOT%{_datadir}/info/dir
|
||||
%find_lang %{name}
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} -C tests check
|
||||
%make_build -C tests check
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||
%post -n idn2
|
||||
/sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir || :
|
||||
|
||||
%preun -n idn2
|
||||
if [ $1 = 0 ]; then
|
||||
/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir || :
|
||||
fi
|
||||
%endif
|
||||
|
||||
%files -f %{name}.lang
|
||||
%license COPYING COPYING.LESSERv3 COPYING.unicode COPYINGv2
|
||||
%doc AUTHORS NEWS README.md
|
||||
@ -85,9 +105,46 @@ make %{?_smp_mflags} -C tests check
|
||||
%{_infodir}/%{name}.info*
|
||||
|
||||
%changelog
|
||||
* Mon Jun 10 2019 Miroslav Lichvar <mlichvar@redhat.com> 2.2.0-1
|
||||
- Update to 2.2.0 (#1674201)
|
||||
- Drop obsolete scriptlets
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.0-7
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.0-6
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 26 2020 Jeff Law <law@redhat.com> - 2.3.0-3
|
||||
- Touch a couple autoconf related files to prevent undesired rebuilding
|
||||
if %%configure changes one or more configure files.
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Nov 16 2019 Robert Scheck <robert@fedoraproject.org> 2.3.0-1
|
||||
- Upgrade to 2.3.0 (#1764345, #1772703)
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu May 23 2019 Robert Scheck <robert@fedoraproject.org> 2.2.0-1
|
||||
- Upgrade to 2.2.0 (#1713402)
|
||||
|
||||
* Sat Feb 09 2019 Robert Scheck <robert@fedoraproject.org> 2.1.1a-1
|
||||
- Upgrade to 2.1.1a (#1674002 #c1)
|
||||
|
||||
* Sat Feb 09 2019 Robert Scheck <robert@fedoraproject.org> 2.1.1-1
|
||||
- Upgrade to 2.1.1 (#1674002, #1674023)
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon May 21 2018 Robert Scheck <robert@fedoraproject.org> 2.0.5-1
|
||||
- Upgrade to 2.0.5 (#1577864, #1579825)
|
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
2
sources
2
sources
@ -1,2 +0,0 @@
|
||||
SHA512 (libidn2-2.2.0.tar.gz) = ccf56056a378d49a28ff67a2a23cd3d32ce51f86a78f84839b98dad709a1d0d03ac8d7c1496f0e4d3536bca00e3d09d34d76a37317b2ce87e3aa66bdf4e877b8
|
||||
SHA512 (libidn2-2.2.0.tar.gz.sig) = eeaa88542340ddd7a5a029a0072344378410f6b437f521cdecefbdb1ceb7539236959a9fb8a24464d55658ecca949c28664bc0c00e9786282ac0209b53a72612
|
Loading…
Reference in New Issue
Block a user