Re: ClusterSSH runtime errors

2018-02-12 Thread Dave
On Thursday 01 February 2018 00:01:06 Borge Brunes wrote:
> Hi,
> 
> Did you fint at solution for this? I'm having the same issue.
> 
> uname -a
> FreeBSD kahuka 11.1-RELEASE FreeBSD 11.1-RELEASE #0: Thu Aug  3 08:40:15
> CEST 2017 CUT:/usr/src/obj/usr/src/sys/GENERIC  amd64
> 
> regards,

Yes and no :-)

I upgraded from 10.3 to 10.4 and upgraded all installed packages and
the problem went away.  Best guess, since you are on 11, is a mismatch
in some installed port version which was "fixed" when I upgraded everything.

Maybe you could try a 

pkg upgrade -f

or may be just do

pkg upgrade -f clusterssh
(although I think I tried this one in the past and it didn't work, maybe
it's a dependency of a dependency not picked up with the latter command)

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: QT5

2018-02-12 Thread Raphael Kubo da Costa
The Doctor  writes:

> When will the QT5 team go over to QT5.10 ?

It's still unclear. Most of the work is done in the qt-5.10 branch on
GitHub (https://github.com/freebsd/freebsd-ports-kde), but, as usual, we
still need to get qt5-webengine to build, and that takes a lot of time
and isn't fun at all.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


PR 224234: math/reduce update

2018-02-12 Thread Pedro Giffuni

Hi guys,

Can some committer please look at the above-mentioned update? There was 
an effort to bring to FreeBSD the X86 port of the PSL version using flavors.


It should be an important enhancement for users of this package.

Cheers,

Pedro.

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Should mail/offlineimap be renamed into mail/py-offlineimap, because it is a python port?

2018-02-12 Thread Le Baron d’Merde
Hi.

I do not know if mail/offlineimap is somehow a non-standard python port, but 
the rule
says python ports must have:

PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}

See: 
https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-python.html

Cheers!

On Mon, Feb 12, 2018 at 02:31:04AM -0800, Yuri wrote:
> If the port is a python port, but it doesn't have the "py-" prefix, should
> it be renamed now, or should it be left as it is?
> 
> 
> Thanks,
> 
> Yuri
> 
> 
> ___
> freebsd-ports@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-ports
> To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

-- 
Best Regards.
LBdM.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Ports r459270 upsets "make index"

2018-02-12 Thread Jan Beich
Peter Jeremy  writes:

> r459270 created hard references to clang38 and clang++38 in
> misc/sword/Makefile and, as a result, "make index" is reporting warnings:
>
> --- describe.misc ---
> sh: clang38: not found
> make[5]: "/usr/ports/Mk/Uses/compiler.mk" line 69: warning: "clang38 
> --version"
> +returned non-zero status
> make[5]: "/usr/ports/Mk/Uses/compiler.mk" line 112: warning: "clang++38 -###
> +/dev/null 2>&1" returned non-zero status
>
> Is there a cleaner way to define the required compiler?

Maybe someone can help testing bug 225276 fix. Otherwise, see below for
a workaround that adds blame churn.

>From 55d31c036a47e66b7ab65b4cf59aec3ea241f594 Mon Sep 17 00:00:00 2001
From: Jan Beich 
Date: Mon, 12 Feb 2018 11:20:32 +
Subject: [PATCH] misc/sword: workaround CC vs. USES=compiler conflict after
 r461290

$ make describe >/dev/null
sh: clang38: not found
make: "/usr/ports/Mk/Uses/compiler.mk" line 69: warning: "clang38 --version" 
returned non-zero status
make: "/usr/ports/Mk/Uses/compiler.mk" line 112: warning: "clang++38 -### 
/dev/null 2>&1" returned non-zero status

Reported by:many
---
 misc/sword/Makefile | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/misc/sword/Makefile b/misc/sword/Makefile
index ea1da73cbb89..a9ae209aba2a 100644
--- a/misc/sword/Makefile
+++ b/misc/sword/Makefile
@@ -15,11 +15,6 @@ LICENSE= GPLv2
 
 BUILD_DEPENDS= cppunit-config:devel/cppunit
 
-# Workaround for for FreeBSD_11+.
-BUILD_DEPENDS+= clang38:lang/clang38
-CC=clang38
-CXX=   clang++38
-
 GNU_CONFIGURE= yes
 CONFIGURE_ARGS=--with-conf --with-zlib
 INSTALL_TARGET=install-strip
@@ -52,6 +47,15 @@ CONFIGURE_ARGS+= --with-clucene=${LOCALBASE} --with-icu
 CONFIGURE_ARGS+=   --without-clucene --without-icu
 .endif
 
+.include 
+
+.if ${CHOSEN_COMPILER_TYPE} == clang
+# Workaround for for FreeBSD_11+.
+BUILD_DEPENDS+= clang38:lang/clang38
+CC=clang38
+CXX=   clang++38
+.endif
+
 post-patch:
@${REINPLACE_CMD} 's|-O3||' ${WRKSRC}/configure
 
@@ -60,4 +64,4 @@ post-install:
${MV} ${STAGEDIR}${PREFIX}/etc/sword.conf \
${STAGEDIR}${PREFIX}/etc/sword.conf.sample
 
-.include 
+.include 
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Ports r459270 upsets "make index"

2018-02-12 Thread Walter Schwarzenfeld

There seems more problems like this

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225847

seems compiler.mk needs a check (line 69 and 112) if the compiler is 
installed.


___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Ports r459270 upsets "make index"

2018-02-12 Thread Walter Schwarzenfeld

It is only need to committed

https://bugs.freebsd.org/bugzilla/attachment.cgi?id=189853=diff

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Should mail/offlineimap be renamed into mail/py-offlineimap, because it is a python port?

2018-02-12 Thread Yuri
If the port is a python port, but it doesn't have the "py-" prefix, 
should it be renamed now, or should it be left as it is?



Thanks,

Yuri


___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Ports r459270 upsets "make index"

2018-02-12 Thread Walter Schwarzenfeld

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225802

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"