FreeBSD ports you maintain which are out of date

2019-09-06 Thread portscout
Dear port maintainer,

The portscout new distfile checker has detected that one or more of your
ports appears to be out of date. Please take the opportunity to check
each of the ports listed below, and if possible and appropriate,
submit/commit an update. If any ports have already been updated, you can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
games/barrage   | 1.0.4   | 1.0.5
+-+
science/psychopy| 1.90.3  | 3.2.2
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

Thanks.
___
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: ruby25 from ports will not compile

2019-09-06 Thread Yasuhiro KIMURA
From: "@lbutlr" 
Subject: ruby25 from ports will not compile
Date: Fri, 6 Sep 2019 12:44:29 -0600

> Trying to update ruby on 11.2-RELEASE-p11 (I have also tried to switch to 
> ruby26 with basically the same results)
> 
>  # cd /usr/ports/lang/ruby25 
>  # make MAKE_JOBS_UNSAFE=yes install   
> vm.c:(.text+0x1e0bb): undefined reference to 
> `__dtraceenabled_ruby___method__entry'
> vm.c:(.text+0x1e0ef): undefined reference to 
> `__dtraceenabled_ruby___method__return'
> vm.c:(.text+0x1e15d): undefined reference to `__dtrace_ruby___method__entry'
> vm.c:(.text+0x1e274): undefined reference to `__dtrace_ruby___method__return'
> vm.o: In function `hook_before_rewind':
> vm.c:(.text+0x1ed7b): undefined reference to 
> `__dtraceenabled_ruby___method__return'
> vm.c:(.text+0x1eefe): undefined reference to `__dtrace_ruby___method__return'
> cc: error: linker command failed with exit code 1 (use -v to see invocation)
> *** Error code 1
> 
> Stop.
> make[2]: stopped in /usr/ports/lang/ruby25/work/ruby-2.5.6
> *** Error code 1

What is your architecture? I made clean install of 11.2-RELEASE-p14
amd64, checked out latest ports tree (r511379) and tried

# cd /usr/ports/lang/ruby25
# make BATCH=yes install
# cd /usr/ports/lang/ruby26
# make BATCH=yes install

Then everything completed successfully.

---
Yasuhiro KIMURA
___
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"


devel/xtensa-esp32-elf build breaks if lang/guile2 installed

2019-09-06 Thread Peter Jeremy
I've discovered that if lang/guile2 in installed, building
devel/xtensa-esp32-elf breaks as follows:
[INFO ]  =
[INFO ]  Installing final gcc compiler
[INFO ]  Installing final gcc compiler: done in 345.00s (at 15:06)
[INFO ]  =
[INFO ]  Installing cross-gdb
[ERROR]
/tank/obj/usr/ports/devel/xtensa-esp32-elf/work/crosstool-NG-1.22.0-80-g6c4433a5/.build/src/gdb-7.10/gdb/guile/scm-ports.c:231:47:
 error: dereferencing pointer to incomplete type 'scm_t_port {aka struct 
scm_t_port}'
[ERROR]
/tank/obj/usr/ports/devel/xtensa-esp32-elf/work/crosstool-NG-1.22.0-80-g6c4433a5/.build/src/gdb-7.10/gdb/guile/scm-ports.c:681:19:
 error: 'SCM_PORT_NEITHER' undeclared (first use in this function); did you 
mean 'SCM_PORT_TYPE'?
[ERROR]
/tank/obj/usr/ports/devel/xtensa-esp32-elf/work/crosstool-NG-1.22.0-80-g6c4433a5/.build/src/gdb-7.10/gdb/guile/scm-ports.c:711:19:
 error: 'SCM_PORT_NEITHER' undeclared (first use in this function); did you 
mean 'SCM_PORT_TYPE'?
[ERROR]
/tank/obj/usr/ports/devel/xtensa-esp32-elf/work/crosstool-NG-1.22.0-80-g6c4433a5/.build/src/gdb-7.10/gdb/guile/scm-ports.c:790:24:
 error: 'SCM_PORT_WRITE' undeclared (first use in this function); did you mean 
'SCM_PORT_TYPE'?
[ERROR]
/tank/obj/usr/ports/devel/xtensa-esp32-elf/work/crosstool-NG-1.22.0-80-g6c4433a5/.build/src/gdb-7.10/gdb/guile/scm-ports.c:816:29:
 error: 'SCM_PORT_READ' undeclared (first use in this function); did you mean 
'SCM_PORT_WRITE'?
[ERROR]gmake[4]: *** [Makefile:2469: scm-ports.o] Error 1
[ERROR]gmake[3]: *** [Makefile:8755: all-gdb] Error 2
[ERROR]gmake[2]: *** [Makefile:845: all] Error 2
[ERROR]  
[ERROR]  >>
[ERROR]  >>  Build failed in step 'Installing cross-gdb'
[ERROR]  >>called in step '(top-level)'

Uninstalling guile2 fixes the problem.

I presume this is another case of autotools-induced breakage but it's
not clear how to fix it since in's presumable the autotools embedded
in the cross-gdb build that's broken.

-- 
Peter Jeremy


signature.asc
Description: PGP signature


Re: ruby25 from ports will not compile

2019-09-06 Thread Pete Wright



On 9/6/19 1:14 PM, @lbutlr wrote:

On 6 Sep 2019, at 13:30, Walter Schwarzenfeld  wrote:

CONFIGURE_ARGS+=--disable-dtrace

Shouldn’t

  [ ] DSIABLE DEBUG

do that?


my expectation would be that flag would produce a build w/o debug 
symbols compiled in, whereas disabling dtrace would be independent of 
this (i.e. you don't necc need debug symbols to use dtrace probes).


-p

--
Pete Wright
p...@nomadlogic.org
@nomadlogicLA

___
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: ruby25 from ports will not compile

2019-09-06 Thread @lbutlr
On 6 Sep 2019, at 13:30, Walter Schwarzenfeld  wrote:
> CONFIGURE_ARGS+=--disable-dtrace

Shouldn’t

 [ ] DSIABLE DEBUG 

do that?

I added the suggested line to make.conf and did make clean && make and same 
results.



-- 
Turning and turning in the widening gyre
The falcon cannot hear the falconer;

___
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: ruby25 from ports will not compile

2019-09-06 Thread Walter Schwarzenfeld

Try:


CONFIGURE_ARGS+=--disable-dtrace

___
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"


ruby25 from ports will not compile

2019-09-06 Thread @lbutlr
Trying to update ruby on 11.2-RELEASE-p11 (I have also tried to switch to 
ruby26 with basically the same results)

👹 # cd /usr/ports/lang/ruby25 
👹 # make MAKE_JOBS_UNSAFE=yes install   
vm.c:(.text+0x1e0bb): undefined reference to 
`__dtraceenabled_ruby___method__entry'
vm.c:(.text+0x1e0ef): undefined reference to 
`__dtraceenabled_ruby___method__return'
vm.c:(.text+0x1e15d): undefined reference to `__dtrace_ruby___method__entry'
vm.c:(.text+0x1e274): undefined reference to `__dtrace_ruby___method__return'
vm.o: In function `hook_before_rewind':
vm.c:(.text+0x1ed7b): undefined reference to 
`__dtraceenabled_ruby___method__return'
vm.c:(.text+0x1eefe): undefined reference to `__dtrace_ruby___method__return'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error code 1

Stop.
make[2]: stopped in /usr/ports/lang/ruby25/work/ruby-2.5.6
*** Error code 1

👹 # pkg info -dr ruby   
  [12:38] [/usr/ports/lang/ruby25] 
ruby-2.5.5_3,1
Depends on :
libyaml-0.2.2
libunwind-20170615
libffi-3.2.1_3
libedit-3.1.20190324,1

Since it has no dependencies, I am considering just deleting it as it may well 
be left over from something that is no longer being used.


-- 
Can I tell you the truth? I mean this isn't like TV news, is it?

___
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: ngircd port version

2019-09-06 Thread Pete Wright



On 9/6/19 8:51 AM, jmcg...@sdf.org wrote:

12.0-p9 amd 64 and ngircd-25

I've noticed that the ngircd port hasn't been updated since Nov 2017.
Version 25 was released in Jan 2019. I wrote a distinfo file for myself so
I could install ngircd via the ports. Is there a method to getting it
updated? I e-mailed the maintainer and haven't heard back.
I'd suggest submitting a ticket in bugzilla with your update attached, 
this should make it easier for the port maintainer to update on their 
end.  it'll also increase the visibility.


-pete

--
Pete Wright
p...@nomadlogic.org
@nomadlogicLA

___
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"


ngircd port version

2019-09-06 Thread jmcgann
12.0-p9 amd 64 and ngircd-25

I've noticed that the ngircd port hasn't been updated since Nov 2017.
Version 25 was released in Jan 2019. I wrote a distinfo file for myself so
I could install ngircd via the ports. Is there a method to getting it
updated? I e-mailed the maintainer and haven't heard back.

___
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"


nextcloudclient host not found

2019-09-06 Thread Per olof Ljungmark

FreeBSD12.0-STABLE and nextcloudclient-0.0.0.20190705_3

The client syncs fine for some time, then gives up with

QNetworkReply::HostNotFoundError "Host mynextcloudhost not found" 
QVariant(Invalid)


and it is impossible to restart the sync.

https://mynextcloudhost/status.php works well from a browser and the IP 
is resovable with drill and host and nslookup from Windows.


It appears from googling that this problem is not unique to me but I 
have failed to find a solution that works.


Anyone out there who found a solution to this?

Thanks!

___
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: Palemoon browser

2019-09-06 Thread Luciano Mannucci
On Fri, 16 Aug 2019 16:45:52 +0200
Kurt Jaeger  wrote:

> danfe@ once planned to update the port to 28.6.1, but I guess it's
> really non-trivial and he has plenty of other things on his table.
Yes, non trivial is right...

I'm trying to build the new one, 28.7.0 with gcc7 (as required by
the instructions) and I'm stuck with snprintf not defined in the
scope, having a proper #include  that should define it.

Not easy, IMHO.

Luciano.
-- 
 /"\ /Via A. Salaino, 7 - 20144 Milano (Italy)
 \ /  ASCII RIBBON CAMPAIGN / PHONE : +39 2 485781 FAX: +39 2 48578250
  X   AGAINST HTML MAIL/  E-MAIL: posthams...@sublink.sublink.org
 / \  AND POSTINGS/   WWW: http://www.lesassaie.IT/
___
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: A port like pi-hole?

2019-09-06 Thread Ernie Luzar

@lbutlr wrote:

I’ve been running pi-hole on my home LAN and would like to run something like 
it on my FreeBSD machines as well. There isn’t a pi-hole port, but is there 
something like it that lets you easily setup blacklists to block DNS queries 
for adware/malware servers?




Look at port dns2blackhole
___
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"