FreeBSD Bugzilla – Attachment 182026 Details for
Bug 218833
dns/libidn2: update to 2.0.1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
libidn2.patch (text/plain), 5.09 KB, created by
Tijl Coosemans
on 2017-04-23 19:16:25 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Tijl Coosemans
Created:
2017-04-23 19:16:25 UTC
Size:
5.09 KB
patch
obsolete
>Index: dns/libidn2/Makefile >=================================================================== >--- dns/libidn2/Makefile (revision 439255) >+++ dns/libidn2/Makefile (working copy) >@@ -2,19 +2,9 @@ > # $FreeBSD$ > > PORTNAME= libidn2 >-PORTVERSION= 0.16 >+PORTVERSION= 2.0.1 > CATEGORIES= dns >-MASTER_SITES= GNU_ALPHA/libidn \ >- https://ftp.iana.org/assignments/idna-tables-6.3.0/:idna_table \ >- http://www.unicode.org/Public/6.3.0/ucd/:nfcqc \ >- http://www.unicode.org/Public/idna/6.3.0/:test,tr64map \ >- LOCAL/sunpoet/${PORTNAME} >-DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ >- idna-tables-6.3.0.txt:idna_table \ >- DerivedNormalizationProps.txt:nfcqc \ >- IdnaTest.txt:test \ >- IdnaMappingTable.txt:tr64map >-EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} >+MASTER_SITES= GNU/libidn > > MAINTAINER= sunpoet@FreeBSD.org > COMMENT= Implementation of IDNA2008 internationalized domain names >@@ -22,7 +12,6 @@ COMMENT= Implementation of IDNA2008 inte > LICENSE= GPLv3 > LICENSE_FILE= ${WRKSRC}/COPYING > >-BUILD_DEPENDS= help2man:misc/help2man > LIB_DEPENDS= libunistring.so:devel/libunistring > > CONFIGURE_ARGS= --disable-nls \ >@@ -30,18 +19,8 @@ CONFIGURE_ARGS= --disable-nls \ > GNU_CONFIGURE= yes > INSTALL_TARGET= install-strip > USE_LDCONFIG= yes >-USE_PERL5= build >-USES= charsetfix gmake iconv libtool localbase perl5 shebangfix >+USES= charsetfix gmake iconv libtool localbase > > INFO= libidn2 > >-SHEBANG_FILES= gen-tables-from-iana.pl tests/gen-utc-test.pl >- >-post-patch: >- @cd ${DISTDIR}/ && ${CP} idna-tables-6.3.0.txt IdnaMappingTable.txt DerivedNormalizationProps.txt ${WRKSRC}/ >- @cd ${DISTDIR}/ && ${CP} IdnaTest.txt ${WRKSRC}/tests/ >- >-post-install: >- @${RM} ${STAGEDIR}${PREFIX}/bin/idn2_noinstall >- > .include <bsd.port.mk> >Index: dns/libidn2/distinfo >=================================================================== >--- dns/libidn2/distinfo (revision 439255) >+++ dns/libidn2/distinfo (working copy) >@@ -1,11 +1,3 @@ >-TIMESTAMP = 1484743810 >-SHA256 (libidn2-0.16.tar.gz) = 2fad9efff4082ae2143f69df76339ca99379e0e0f4231455f5d3d9d2089c688f >-SIZE (libidn2-0.16.tar.gz) = 1494295 >-SHA256 (idna-tables-6.3.0.txt) = ac67b5bf7c2de2d3b6e11fa7bf0d7ba54e6457788aec1ebde48739ee084822b7 >-SIZE (idna-tables-6.3.0.txt) = 162415 >-SHA256 (DerivedNormalizationProps.txt) = c5e867ae043fe5d1cf713150d859356bfdcdba291c39f584af0bfb943f1a9743 >-SIZE (DerivedNormalizationProps.txt) = 783470 >-SHA256 (IdnaTest.txt) = f56af7d031fddd8264cd95086e360375e3a09e680c8e2d947be469bfa4f4097d >-SIZE (IdnaTest.txt) = 422220 >-SHA256 (IdnaMappingTable.txt) = 84c8f25d2b58531dada678cbfb779c0fb04b1aac42c7744a63fb59784e974775 >-SIZE (IdnaMappingTable.txt) = 742564 >+TIMESTAMP = 1492974399 >+SHA256 (libidn2-2.0.1.tar.gz) = 0d23651415556508168f15fa0299b54bb8015a3953a23c1ffdfe09f12c27f1d3 >+SIZE (libidn2-2.0.1.tar.gz) = 1770164 >Index: dns/libidn2/files/patch-src-idn2.c >=================================================================== >--- dns/libidn2/files/patch-src-idn2.c (revision 439255) >+++ dns/libidn2/files/patch-src-idn2.c (working copy) >@@ -1,7 +1,7 @@ >---- src/idn2.c.orig 2016-12-26 21:00:11 UTC >+--- src/idn2.c.orig 2017-04-12 18:43:32 UTC > +++ src/idn2.c >-@@ -31,7 +31,7 @@ >- #include <unistr.h> >+@@ -33,7 +33,7 @@ >+ #include <unistring/localcharset.h> > > /* Gnulib headers. */ > -#include "error.h" >@@ -9,16 +9,16 @@ > #include "gettext.h" > #define _(String) dgettext (PACKAGE, String) > #include "progname.h" >-@@ -167,7 +167,7 @@ process_input (char *readbuf, int flags) >+@@ -176,7 +176,7 @@ process_input (char *readbuf, int flags) > free (output); > } > else >-- error (EXIT_FAILURE, 0, "%s: %s", >-+ errc (EXIT_FAILURE, 0, "%s: %s", >- args_info.register_given ? "register" : "lookup", >- idn2_strerror (rc)); >+- error (EXIT_FAILURE, 0, "%s: %s", tag, idn2_strerror (rc)); >++ errc (EXIT_FAILURE, 0, "%s: %s", tag, idn2_strerror (rc)); > } >-@@ -228,7 +228,7 @@ main (int argc, char *argv[]) >+ >+ int >+@@ -237,7 +237,7 @@ main (int argc, char *argv[]) > } > > if (ferror (stdin)) >Index: dns/libidn2/pkg-plist >=================================================================== >--- dns/libidn2/pkg-plist (revision 439255) >+++ dns/libidn2/pkg-plist (working copy) >@@ -3,7 +3,8 @@ include/idn2.h > lib/libidn2.a > lib/libidn2.so > lib/libidn2.so.0 >-lib/libidn2.so.0.1.4 >+lib/libidn2.so.0.3.0 >+lib/pkgconfig/libidn2.pc > man/man1/idn2.1.gz > man/man3/idn2_check_version.3.gz > man/man3/idn2_free.3.gz >@@ -13,10 +14,19 @@ man/man3/idn2_register_u8.3.gz > man/man3/idn2_register_ul.3.gz > man/man3/idn2_strerror.3.gz > man/man3/idn2_strerror_name.3.gz >+man/man3/idn2_to_ascii_4i.3.gz >+man/man3/idn2_to_ascii_4z.3.gz >+man/man3/idn2_to_ascii_8z.3.gz >+man/man3/idn2_to_ascii_lz.3.gz >+man/man3/idn2_to_unicode_44i.3.gz >+man/man3/idn2_to_unicode_4z4z.3.gz >+man/man3/idn2_to_unicode_8z4z.3.gz >+man/man3/idn2_to_unicode_8z8z.3.gz >+man/man3/idn2_to_unicode_8zlz.3.gz >+man/man3/idn2_to_unicode_lzlz.3.gz > share/gtk-doc/html/libidn2/api-index-full.html > share/gtk-doc/html/libidn2/home.png > share/gtk-doc/html/libidn2/index.html >-share/gtk-doc/html/libidn2/index.sgml > share/gtk-doc/html/libidn2/left-insensitive.png > share/gtk-doc/html/libidn2/left.png > share/gtk-doc/html/libidn2/libidn2-idn2.html
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 218833
: 182026