Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/hfstospell libxml++ is not ready for the rece...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f1aaa891dfad
branches:  trunk
changeset: 431561:f1aaa891dfad
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu May 14 19:04:51 2020 +0000

description:
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.

diffstat:

 textproc/hfstospell/Makefile                |   4 +-
 textproc/hfstospell/distinfo                |   3 +-
 textproc/hfstospell/patches/patch-configure |  82 +++++++++++++++++++++++++++++
 3 files changed, 86 insertions(+), 3 deletions(-)

diffs (116 lines):

diff -r c5bf0750a60e -r f1aaa891dfad textproc/hfstospell/Makefile
--- a/textproc/hfstospell/Makefile      Thu May 14 19:03:12 2020 +0000
+++ b/textproc/hfstospell/Makefile      Thu May 14 19:04:51 2020 +0000
@@ -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 @@
 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
 
diff -r c5bf0750a60e -r f1aaa891dfad textproc/hfstospell/distinfo
--- a/textproc/hfstospell/distinfo      Thu May 14 19:03:12 2020 +0000
+++ b/textproc/hfstospell/distinfo      Thu May 14 19:04:51 2020 +0000
@@ -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
diff -r c5bf0750a60e -r f1aaa891dfad textproc/hfstospell/patches/patch-configure
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/hfstospell/patches/patch-configure       Thu May 14 19:04:51 2020 +0000
@@ -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



Home | Main Index | Thread Index | Old Index