ee53e5a8de
- Update to 1.32 * libidn: Fix crash in idna_to_unicode_8z8z and idna_to_unicode_8zlz. This problem was introduced in 1.31. * API and ABI is backwards compatible with the previous version. - Update gpg keyring OBS-URL: https://build.opensuse.org/request/show/322606 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libidn?expand=0&rev=43
159 lines
5.9 KiB
RPMSpec
159 lines
5.9 KiB
RPMSpec
#
|
|
# spec file for package libidn
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lname libidn11
|
|
Name: libidn
|
|
Version: 1.32
|
|
Release: 0
|
|
Summary: Support for Internationalized Domain Names (IDN)
|
|
License: (GPL-2.0+ or LGPL-3.0+) and GPL-3.0+ and Apache-2.0
|
|
Group: Development/Libraries/C and C++
|
|
Url: http://www.gnu.org/software/libidn/
|
|
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz
|
|
Source1: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz.sig
|
|
Source2: libidn.keyring
|
|
Source3: baselibs.conf
|
|
BuildRequires: pkg-config
|
|
Requires(post): %{install_info_prereq}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
GNU Libidn is an implementation of the Stringprep, Punycode, and IDNA
|
|
specifications defined by the IETF Internationalized Domain Names (IDN)
|
|
working group. It is used to prepare internationalized strings (such as
|
|
domain name labels, usernames, and passwords) in order to increase the
|
|
likelihood that string input and string comparison work in ways that
|
|
make sense for typical users around the world. The library contains a
|
|
generic Stringprep implementation that does Unicode 3.2 NFKC
|
|
normalization, mapping and prohibition of characters, and bidirectional
|
|
character handling. Profiles for iSCSI, Kerberos 5, Nameprep, SASL, and
|
|
XMPP are included. Punycode and ASCII Compatible Encoding (ACE) via
|
|
IDNA is supported.
|
|
|
|
%package tools
|
|
Summary: Command line utility to convert Int. Domain Names
|
|
License: (GPL-2.0+ or LGPL-3.0+) and GPL-3.0+
|
|
Group: Productivity/Networking/DNS/Utilities
|
|
|
|
%description tools
|
|
GNU Libidn is an implementation of the Stringprep, Punycode, and IDNA
|
|
specifications defined by the IETF Internationalized Domain Names
|
|
(IDN) working group. It is used to prepare internationalized strings
|
|
(such as domain name labels, usernames, and passwords) in order to
|
|
increase the likelihood that string input and string comparison work
|
|
in ways that make sense for typical users around the world. The
|
|
library contains a generic Stringprep implementation that does
|
|
Unicode 3.2 NFKC normalization, mapping and prohibition of
|
|
characters, and bidirectional character handling. Profiles for iSCSI,
|
|
Kerberos 5, Nameprep, SASL, and XMPP are included. Punycode and ASCII
|
|
Compatible Encoding (ACE) via IDNA is supported.
|
|
|
|
%package -n %{lname}
|
|
Summary: Support for Internationalized Domain Names (IDN)
|
|
License: (GPL-2.0+ or LGPL-3.0+) and GPL-3.0+
|
|
Group: System/Libraries
|
|
|
|
%description -n %{lname}
|
|
GNU Libidn is an implementation of the Stringprep, Punycode, and IDNA
|
|
specifications defined by the IETF Internationalized Domain Names
|
|
(IDN) working group. It is used to prepare internationalized strings
|
|
(such as domain name labels, usernames, and passwords) in order to
|
|
increase the likelihood that string input and string comparison work
|
|
in ways that make sense for typical users around the world. The
|
|
library contains a generic Stringprep implementation that does
|
|
Unicode 3.2 NFKC normalization, mapping and prohibition of
|
|
characters, and bidirectional character handling. Profiles for iSCSI,
|
|
Kerberos 5, Nameprep, SASL, and XMPP are included. Punycode and ASCII
|
|
Compatible Encoding (ACE) via IDNA is supported.
|
|
|
|
%package devel
|
|
Summary: Include Files and Libraries mandatory for Development
|
|
License: LGPL-2.1+
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{lname} = %{version}
|
|
Requires: glibc-devel
|
|
|
|
%description devel
|
|
GNU Libidn is an implementation of the Stringprep, Punycode, and IDNA
|
|
specifications defined by the IETF Internationalized Domain Names (IDN)
|
|
working group. It is used to prepare internationalized strings (such as
|
|
domain name labels, usernames, and passwords) in order to increase the
|
|
likelihood that string input and string comparison work in ways that
|
|
make sense for typical users around the world. The library contains a
|
|
generic Stringprep implementation that does Unicode 3.2 NFKC
|
|
normalization, mapping and prohibition of characters, and bidirectional
|
|
character handling. Profiles for iSCSI, Kerberos 5, Nameprep, SASL, and
|
|
XMPP are included. Punycode and ASCII Compatible Encoding (ACE) via
|
|
IDNA is supported.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure \
|
|
--disable-silent-rules \
|
|
--with-pic \
|
|
--disable-static \
|
|
--disable-gtk-doc
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%find_lang %{name}
|
|
|
|
%check
|
|
%if ! 0%{?qemu_user_space_build}
|
|
make check %{?_smp_mflags}
|
|
%endif
|
|
|
|
%post tools
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/libidn.info.*
|
|
|
|
%preun tools
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libidn.info.*
|
|
|
|
%post -n %{lname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{lname} -p /sbin/ldconfig
|
|
|
|
%files tools -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
%dir %{_datadir}/emacs
|
|
%dir %{_datadir}/emacs/site-lisp
|
|
%doc AUTHORS COPYING* ChangeLog FAQ NEWS README THANKS TODO
|
|
%{_infodir}/libidn*
|
|
%{_bindir}/idn
|
|
%{_mandir}/man1/idn.1.*
|
|
%{_datadir}/emacs/site-lisp/idna.el
|
|
%{_datadir}/emacs/site-lisp/punycode.el
|
|
|
|
%files -n %{lname}
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libidn.so.11*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libidn.so
|
|
%{_includedir}/*.h
|
|
%{_libdir}/pkgconfig/libidn.pc
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|