Re: audio/grip: fix on aarch64

2019-01-14 Thread Jeremie Courreges-Anglas
On Mon, Jan 14 2019, Pascal Stumpf wrote: > The linker command line uses $CXX anyway, so explicitly linking -lstdc++ > is unnecessary. ok jca@ -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE

Re: update sysutils/faubackup

2019-01-14 Thread Jeremie Courreges-Anglas
On Mon, Jan 14 2019, Solene Rapenne wrote: > Solene Rapenne wrote: >> hello >> >> following this thread about faubackup >> https://marc.info/?l=openbsd-ports=154046081401380=2 >> >> I have been able to contact the authors, after some digging they were able to >> find a backup of the CVS

Re: Ruby 2.6.0

2019-01-14 Thread Jeremy Evans
On 01/14 04:58, Jeremie Courreges-Anglas wrote: > I was concerned by the JIT issues but with your fixes this looks ready > to import now. ok jca@ Thanks for your review and testing. I've imported it and hooked it up to the build. The next step is allowing building of ruby26-* packages for ruby

Re: Ruby 2.6.0

2019-01-14 Thread Jeremie Courreges-Anglas
On Sun, Jan 13 2019, Jeremy Evans wrote: > On 01/13 05:35, Jeremie Courreges-Anglas wrote: >> On Sat, Jan 12 2019, Jeremy Evans wrote: >> > On 01/12 07:50, Jeremy Evans wrote: >> >> Thank you very much for the testing and analysis. I can confirm the JIT >> >> compilation problems on amd64

Re: [macppc] games/hyperrogue: fix build, but colors are off

2019-01-14 Thread Theo de Raadt
Christian Weisgerber wrote: > George Koehler: > > > - unsigned char* c = (unsigned char*) return c[i]; > > + unsigned char* c = (unsigned char*) > > +#ifdef __BIG_ENDIAN__ > > + return c[sizeof(col) - i]; > > +#else > > + return c[i]; > > +#endif > >} > > Off by one: > return

audio/grip: fix on aarch64

2019-01-14 Thread Pascal Stumpf
The linker command line uses $CXX anyway, so explicitly linking -lstdc++ is unnecessary. Index: patches/patch-configure === RCS file: /cvs/ports/audio/grip/patches/patch-configure,v retrieving revision 1.7 diff -u -p -r1.7

Re: [macppc] games/hyperrogue: fix build, but colors are off

2019-01-14 Thread Charlene Wendling
On Mon, 14 Jan 2019 13:18:47 +0100 Christian Weisgerber wrote: > George Koehler: > > > - unsigned char* c = (unsigned char*) return c[i]; > > + unsigned char* c = (unsigned char*) > > +#ifdef __BIG_ENDIAN__ > > + return c[sizeof(col) - i]; > > +#else > > + return c[i]; > > +#endif > >}

Re: haproxy on gcc archs (was: Re: powerpc bulk build report)

2019-01-14 Thread Daniel Jakots
On Mon, 14 Jan 2019 19:01:26 +0100, Jeremie Courreges-Anglas wrote: > On Fri, Jan 11 2019, lan...@openbsd.org wrote: > > [...] > > > http://build-failures.rhaalovely.net//powerpc/2019-01-01/net/haproxy.log > > Fails to build on powerpc and sparc64 because base-gcc has no TLS > emulation

Re: [new] gzdoom-3.6.0

2019-01-14 Thread Timo Myyrä
Solene Rapenne writes: > Solene Rapenne wrote: > >> Solene Rapenne wrote: >> > Solene Rapenne wrote: >> > > timo.my...@bittivirhe.fi (Timo Myyrä) wrote: >> > > > Jeremie Courreges-Anglas writes: >> > > > >> > > > > On Wed, Dec 19 2018, Solene Rapenne wrote: >> > > > > >> > > > >> Frederic

haproxy on gcc archs (was: Re: powerpc bulk build report)

2019-01-14 Thread Jeremie Courreges-Anglas
On Fri, Jan 11 2019, lan...@openbsd.org wrote: [...] > http://build-failures.rhaalovely.net//powerpc/2019-01-01/net/haproxy.log Fails to build on powerpc and sparc64 because base-gcc has no TLS emulation support. Here's a diff that makes haproxy use ports-gcc on non-clang archs, successfully

Re: [macppc] games/hyperrogue: fix build, but colors are off

2019-01-14 Thread Christian Weisgerber
Charlene Wendling: > + void color2(color_t color, ld part) { > + unsigned char *c = (unsigned char*) (); > + GLfloat cols[4]; > +- for(int i=0; i<4; i++) cols[i] = c[3-i] / 255.0 * part; > ++ for(int i=0; i<4; i++) > ++#if SDL_BYTEORDER == SDL_BIG_ENDIAN > ++cols[3-i] = c[3-i] /

Re: [NEW] devel/cjose

2019-01-14 Thread YASUOKA Masahiko
Hi, Anyone can take a look at this? On Fri, 28 Dec 2018 20:16:27 +0900 (JST) YASUOKA Masahiko wrote: > Hi, > > I'd like to add devel/cjose. It's a C library of JOSE (JavaScript > Object Signing and Encryption). JOSE is used in "OpenID connect" > protocol. > > The original diff is written by

Re: [macppc] games/hyperrogue: fix build, but colors are off

2019-01-14 Thread George Koehler
On Mon, 14 Jan 2019 20:03:43 +0100 Charlene Wendling wrote: > RCS file: patches/patch-shaders_cpp This patch fails because it has \n line endings (after I applied the patch in your email), but shaders.cpp has \r\n line endings. I fixed it by adding post-extract to Makefile: # Convert line

Re: Remove KDE4 konqueror and www/kwebkitpart

2019-01-14 Thread Rafael Sadowski
On Fri Dec 28, 2018 at 07:35:33AM +0100, Rafael Sadowski wrote: > Hi All, > > after I removed dolphin,kfind etc. from kde-baseapps I played a little bit > with konqueror. First of all it can't load any website and the standard > file browser crash a lot of time for me. > > Anyway I don't see a

Re: [NEW] devel/cjose

2019-01-14 Thread Jeremie Courreges-Anglas
On Fri, Dec 28 2018, YASUOKA Masahiko wrote: > Hi, > > I'd like to add devel/cjose. It's a C library of JOSE (JavaScript > Object Signing and Encryption). JOSE is used in "OpenID connect" > protocol. > > The original diff is written by my colleague, Naoaki Hoshi. > > ok? Fails to build on gcc

Re: kde4 and kde5 conflicts

2019-01-14 Thread Rafael Sadowski
On Sat Jan 12, 2019 at 04:56:24PM +0100, Antoine Jacoutot wrote: > On Sat, Jan 12, 2019 at 03:18:32PM +0100, Rafael Sadowski wrote: > > On Mon Jan 07, 2019 at 04:05:25PM +0100, Antoine Jacoutot wrote: > > > Hi. > > > > > > This failed in my last bulk because libksane-4.14.3p3 conflicts with > > >

Re: kde4 and kde5 conflicts

2019-01-14 Thread Antoine Jacoutot
On Mon, Jan 14, 2019 at 10:49:46AM +0100, Rafael Sadowski wrote: > On Sat Jan 12, 2019 at 04:56:24PM +0100, Antoine Jacoutot wrote: > > On Sat, Jan 12, 2019 at 03:18:32PM +0100, Rafael Sadowski wrote: > > > On Mon Jan 07, 2019 at 04:05:25PM +0100, Antoine Jacoutot wrote: > > > > Hi. > > > > > > >

[FIX] devel/openmpi: Make main API symbols non-local (Re: devel/openmpi Can't link example program, symbols local in libmpi.so.0.1?)

2019-01-14 Thread Andreas Kusalananda Kähäri
On Mon, Jan 14, 2019 at 07:38:34AM +0100, Andreas Kusalananda Kähäri wrote: > On Sun, Jan 13, 2019 at 04:37:23PM +0100, Thomas L. wrote: > > Hi, > > > > I tried compiling a MPI example program > >

Re: new devel/p5-local-lib

2019-01-14 Thread Klemens Nanni
On Sat, Jan 05, 2019 at 01:58:38AM +0100, Klemens Nanni wrote: > Done with portgen(1) and required by my Slic3r port, tests pass on amd64. Ping. Any perl hacker around to take a look at this?

Re: [macppc] games/hyperrogue: fix build, but colors are off

2019-01-14 Thread Christian Weisgerber
George Koehler: > - unsigned char* c = (unsigned char*) return c[i]; > + unsigned char* c = (unsigned char*) > +#ifdef __BIG_ENDIAN__ > + return c[sizeof(col) - i]; > +#else > + return c[i]; > +#endif >} Off by one: return c[sizeof(col) - 1 - i]; __BIG_ENDIAN__ is nonstandard.

Re: UPDATE: Nextcloud-15.0.1

2019-01-14 Thread Gonzalo L. Rodriguez
On Fri, 11 Jan 2019 at 11:56:37 +0100, Gonzalo L. Rodriguez wrote: > Hello, > > Update for Nextcloud to 15.0.1: > > https://nextcloud.com/changelog/ > > OK? Comments? > > Cheers.- > > -- > Sending from my toaster. > Index: Makefile >

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs Module name:ports Changes by: j...@cvs.openbsd.org2019/01/14 09:08:45 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-tools_clang_lib_Sema_SemaChecking_cpp Added files: devel/llvm/patches:

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Pascal Stumpf
CVSROOT:/cvs Module name:ports Changes by: pas...@cvs.openbsd.org 2019/01/14 08:46:55 Modified files: audio/grip/patches: patch-configure Log message: No need to hardcode -lstdc++; unbreaks build on aarch64. ok jca@

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Jeremy Evans
CVSROOT:/cvs Module name:ports Changes by: jer...@cvs.openbsd.org 2019/01/14 09:13:06 Log message: Import ruby 2.6.0 Help and testing from jca@ and George Koehler OK jca@ Status: Vendor Tag: jeremy Release Tags: jeremy_2019-Jan-14

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Jeremy Evans
CVSROOT:/cvs Module name:ports Changes by: jer...@cvs.openbsd.org 2019/01/14 09:18:21 Modified files: lang/ruby : Makefile Log message: Hookup ruby 2.6.0

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2019/01/14 11:37:15 Modified files: databases/sqlports/files: Info.pm Log message: allow us to ask for indexed/non indexed variables

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2019/01/14 11:38:04 Modified files: databases/sqlports/files: Sql.pm Log message: better error reporting

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs Module name:ports Changes by: j...@cvs.openbsd.org2019/01/14 11:17:50 Modified files: net/haproxy: Makefile Log message: haproxy now uses TLS (__thread) by default, switch to ports-gcc on gcc archs "no objection" maintainer

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Matthias Kilian
CVSROOT:/cvs Module name:ports Changes by: k...@cvs.openbsd.org2019/01/14 12:50:32 Added files: print/poppler/patches: patch-utils_CMakeLists_txt Log message: Allow to build poppler if an older version is already installed. Problem reported by kn@ and landry@,

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Solene Rapenne
CVSROOT:/cvs Module name:ports Changes by: sol...@cvs.openbsd.org 2019/01/14 11:05:43 Modified files: sysutils/faubackup: Makefile distinfo Removed files: sysutils/faubackup/patches: patch-faubackup_conf

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs Module name:ports Changes by: j...@cvs.openbsd.org2019/01/14 11:18:59 Modified files: net/haproxy: Makefile Log message: ports-gcc should bring atomic ops support on hppa, remove workaround "no objection" maintainer

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Klemens Nanni
CVSROOT:/cvs Module name:ports Changes by: k...@cvs.openbsd.org2019/01/14 14:27:12 Modified files: devel : Makefile Log message: + p5-local-lib

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Pascal Stumpf
CVSROOT:/cvs Module name:ports Changes by: pas...@cvs.openbsd.org 2019/01/14 14:27:37 Modified files: infrastructure/mk: fortran.port.mk Log message: Make use of the new MODGCC4_FORTRAN* variables. ok jca@

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Klemens Nanni
CVSROOT:/cvs Module name:ports Changes by: k...@cvs.openbsd.org2019/01/14 14:25:44 Log message: Import devel/p5-local-lib This module provides a quick, convenient way of bootstrapping a user-local Perl module library located within the user's home directory.

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Juan Francisco Cantero Hurtado
CVSROOT:/cvs Module name:ports Changes by: juan...@cvs.openbsd.org 2019/01/14 16:06:35 Modified files: devel/mercurial: Makefile Log message: Add additional MASTER_SITES.

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Jonathan Gray
CVSROOT:/cvs Module name:ports Changes by: j...@cvs.openbsd.org2019/01/14 22:44:18 Modified files: sysutils/u-boot: Makefile distinfo sysutils/u-boot/patches: patch-configs_rpi_2_defconfig patch-configs_rpi_3_32b_defconfig

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Rafael Sadowski
CVSROOT:/cvs Module name:ports Changes by: rsadow...@cvs.openbsd.org 2019/01/14 22:56:27 Modified files: fonts/font-awesome: Makefile distinfo Log message: Update font-awesome to 5.6.3

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Rafael Sadowski
CVSROOT:/cvs Module name:ports Changes by: rsadow...@cvs.openbsd.org 2019/01/14 23:16:04 Modified files: multimedia/mkvtoolnix: Makefile distinfo Log message: Update mkvtoolnix to 30.1.0

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Sebastian Reitenbach
CVSROOT:/cvs Module name:ports Changes by: sebas...@cvs.openbsd.org2019/01/14 01:51:03 Modified files: audio/mscore : Makefile distinfo audio/mscore/patches: patch-CMakeLists_txt patch-build_gen-qt-projectfile

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2019/01/14 04:46:56 Modified files: databases/mongodb: Makefile Log message: don't hide compiler command lines

Re: CVS: cvs.openbsd.org: ports

2019-01-14 Thread Stuart Henderson
On 2019/01/13 16:18, Jeremie Courreges-Anglas wrote: > CVSROOT: /cvs > Module name: ports > Changes by: j...@cvs.openbsd.org2019/01/13 16:18:42 > > Modified files: > databases/mongodb: Makefile > databases/mongodb/patches: >

CVS: cvs.openbsd.org: ports

2019-01-14 Thread Antoine Jacoutot
CVSROOT:/cvs Module name:ports Changes by: ajacou...@cvs.openbsd.org 2019/01/14 03:15:07 Modified files: sysutils/exoscale-cli: Makefile distinfo Log message: Update to exoscale-cli-1.0.6.