Received: by mail.netbsd.org (Postfix, from userid 605) id 1FF2E84D6F; Thu, 14 May 2020 19:04:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A9D484D66 for ; Thu, 14 May 2020 19:04:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id NoVhzf4f92qD for ; Thu, 14 May 2020 19:04:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CD0EA84D2A for ; Thu, 14 May 2020 19:04:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9F51FB27; Thu, 14 May 2020 19:04:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589483091233070" MIME-Version: 1.0 Date: Thu, 14 May 2020 19:04:51 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/textproc/hfstospell To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200514190451.C9F51FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589483091233070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu May 14 19:04:51 UTC 2020 Modified Files: pkgsrc/textproc/hfstospell: Makefile distinfo Added Files: pkgsrc/textproc/hfstospell/patches: patch-configure Log Message: libxml++ is not ready for the recent C++ standards due to using functionality that has been removed from the spec. Don't force such late standards. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/hfstospell/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/hfstospell/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/hfstospell/patches/patch-configure Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589483091233070 Content-Disposition: inline Content-Length: 5350 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/hfstospell/Makefile diff -u pkgsrc/textproc/hfstospell/Makefile:1.5 pkgsrc/textproc/hfstospell/Makefile:1.6 --- pkgsrc/textproc/hfstospell/Makefile:1.5 Sun Apr 12 08:28:07 2020 +++ pkgsrc/textproc/hfstospell/Makefile Thu May 14 19:04:51 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/04/12 08:28:07 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/05/14 19:04:51 joerg Exp $ GITHUB_PROJECT= hfst-ospell DISTNAME= hfstospell-0.5.1 @@ -15,7 +15,7 @@ LICENSE= apache-2.0 GNU_CONFIGURE= yes USE_TOOLS+= pkg-config USE_LIBTOOL= yes -USE_LANGUAGES= c c++14 +USE_LANGUAGES= c c++11 PKGCONFIG_OVERRIDE+= hfstospell.pc.in Index: pkgsrc/textproc/hfstospell/distinfo diff -u pkgsrc/textproc/hfstospell/distinfo:1.1 pkgsrc/textproc/hfstospell/distinfo:1.2 --- pkgsrc/textproc/hfstospell/distinfo:1.1 Fri Oct 26 20:43:07 2018 +++ pkgsrc/textproc/hfstospell/distinfo Thu May 14 19:04:51 2020 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.1 2018/10/26 20:43:07 bsiegert Exp $ +$NetBSD: distinfo,v 1.2 2020/05/14 19:04:51 joerg Exp $ SHA1 (hfstospell-0.5.1.tar.gz) = 9436d3ea7905160b31e75a2d8b9272cc6723e9dd RMD160 (hfstospell-0.5.1.tar.gz) = 6335a09d80b5efaefb9034882d7d44f4e696d442 SHA512 (hfstospell-0.5.1.tar.gz) = 301c9c2acfabb454069c9357db9c860e7270d3b111f469d9e691fb9126c2f031b3dbf8af6a97d6be857a97e930321e6f07736d271f92ee082364d3fe3be2a09b Size (hfstospell-0.5.1.tar.gz) = 452024 bytes +SHA1 (patch-configure) = 5424cfe46d254db820da8cc1a05e443125623572 Added files: Index: pkgsrc/textproc/hfstospell/patches/patch-configure diff -u /dev/null pkgsrc/textproc/hfstospell/patches/patch-configure:1.1 --- /dev/null Thu May 14 19:04:51 2020 +++ pkgsrc/textproc/hfstospell/patches/patch-configure Thu May 14 19:04:51 2020 @@ -0,0 +1,82 @@ +$NetBSD: patch-configure,v 1.1 2020/05/14 19:04:51 joerg Exp $ + +Let's not force C++20 when the libxml++ dependency can't deal with it. + +--- configure.orig 2018-10-15 11:35:17.000000000 +0000 ++++ configure +@@ -18472,14 +18472,14 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++20" >&5 +-$as_echo_n "checking whether C++ compiler accepts -std=c++20... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++14" >&5 ++$as_echo_n "checking whether C++ compiler accepts -std=c++14... " >&6; } + if ${ax_cv_check_cxxflags___std_cpp20+:} false; then : + $as_echo_n "(cached) " >&6 + else + + ax_check_save_flags=$CXXFLAGS +- CXXFLAGS="$CXXFLAGS -std=c++20" ++ CXXFLAGS="$CXXFLAGS -std=c++14" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -18502,7 +18502,7 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___std_cpp20" >&5 + $as_echo "$ax_cv_check_cxxflags___std_cpp20" >&6; } + if test x"$ax_cv_check_cxxflags___std_cpp20" = xyes; then : +- CXXFLAGS="$CXXFLAGS -std=c++20" ++ CXXFLAGS="$CXXFLAGS -std=c++14" + else + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++2a" >&5 +@@ -18538,14 +18538,14 @@ if test x"$ax_cv_check_cxxflags___std_cp + CXXFLAGS="$CXXFLAGS -std=c++2a" + else + +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++17" >&5 +-$as_echo_n "checking whether C++ compiler accepts -std=c++17... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++14" >&5 ++$as_echo_n "checking whether C++ compiler accepts -std=c++14... " >&6; } + if ${ax_cv_check_cxxflags___std_cpp17+:} false; then : + $as_echo_n "(cached) " >&6 + else + + ax_check_save_flags=$CXXFLAGS +- CXXFLAGS="$CXXFLAGS -std=c++17" ++ CXXFLAGS="$CXXFLAGS -std=c++14" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -18568,17 +18568,17 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___std_cpp17" >&5 + $as_echo "$ax_cv_check_cxxflags___std_cpp17" >&6; } + if test x"$ax_cv_check_cxxflags___std_cpp17" = xyes; then : +- CXXFLAGS="$CXXFLAGS -std=c++17" ++ CXXFLAGS="$CXXFLAGS -std=c++14" + else + +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++1z" >&5 +-$as_echo_n "checking whether C++ compiler accepts -std=c++1z... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++14" >&5 ++$as_echo_n "checking whether C++ compiler accepts -std=c++14... " >&6; } + if ${ax_cv_check_cxxflags___std_cpp1z+:} false; then : + $as_echo_n "(cached) " >&6 + else + + ax_check_save_flags=$CXXFLAGS +- CXXFLAGS="$CXXFLAGS -std=c++1z" ++ CXXFLAGS="$CXXFLAGS -std=c++14" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -18601,7 +18601,7 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___std_cpp1z" >&5 + $as_echo "$ax_cv_check_cxxflags___std_cpp1z" >&6; } + if test x"$ax_cv_check_cxxflags___std_cpp1z" = xyes; then : +- CXXFLAGS="$CXXFLAGS -std=c++1z" ++ CXXFLAGS="$CXXFLAGS -std=c++14" + else + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -std=c++14" >&5 --_----------=_1589483091233070--