Re: [NEW] textproc/lucene++

2020-06-26 Thread Omar Polo
Landry Breuil writes: > On Thu, Jun 25, 2020 at 06:08:56PM +0200, Omar Polo wrote: >> >> Hello there! >> >> Attached the port for Lucene++, a port of the java lucene library. It's >> required by newer version of devel/poedit. >> >> The patches against the three CMakefiles are to disable

Re: NEW: devel/bamf

2020-06-26 Thread Charlene Wendling
Hi, On Fri, 26 Jun 2020 00:18:01 + Brian Callahan wrote: > Hi ports -- > > Attached is a new port, devel/bamf. Bamf is an application matching > library. > > --- > pkg/DESCR: > Bamf matches application windows to desktop files. It removes the > headache of applications matching into a

Re: NEW: x11/elementary/dock

2020-06-26 Thread Charlene Wendling
On Fri, 26 Jun 2020 01:54:42 + Brian Callahan wrote: > Hi ports -- > > Attached is a new port, x11/elementary/dock. This is the elementary OS > dock app. The binary is named plank. > > --- > pkg/DESCR: > Plank is meant to be the simplest dock on the planet. The goal is to > provide just

editors/emacs fix to use posix_openpt

2020-06-26 Thread YASUOKA Masahiko
Hi, Currently emacs is using an old way to create a process with a pty. OpenBSD has posix_openpt(3) now, so emacs should use it. I actually hit a problem that Mew could not start gnupg properly. # I sent a bug report to the upstream as well. ok? Index: Makefile

Re: [NEW] textproc/lucene++

2020-06-26 Thread Landry Breuil
On Thu, Jun 25, 2020 at 06:08:56PM +0200, Omar Polo wrote: > > Hello there! > > Attached the port for Lucene++, a port of the java lucene library. It's > required by newer version of devel/poedit. > > The patches against the three CMakefiles are to disable cotire, as it > breaks the build.

Re: x11/sisctrl removable

2020-06-26 Thread Charlene Wendling
On Fri, 26 Jun 2020 11:13:50 +0200 Solene Rapenne wrote: > I propose to remove x11/sisctrl because sis driver was deleted a > few months ago from xenocara. > > No port depend on it. > OK cwen@

www/vteplugin removal

2020-06-26 Thread Solene Rapenne
I propose the removal of www/vteplugin I tried it on amd64 in the following browsers without success: - Firefox (unveil disabled) - chromium (unveil disabled) - vimb - midori - epiphany - surf vimb, midor and epihpany complained a "Plugin missing" while a ktrace -di did show that the file

Re: www/vteplugin removal

2020-06-26 Thread Landry Breuil
On Fri, Jun 26, 2020 at 01:50:01PM +0200, Solene Rapenne wrote: > I propose the removal of www/vteplugin > > I tried it on amd64 in the following browsers without success: > > - Firefox (unveil disabled) > - chromium (unveil disabled) > - vimb > - midori > - epiphany > - surf > > vimb, midor

Re: NEW: devel/bamf

2020-06-26 Thread Stuart Henderson
On 2020/06/26 11:00, Charlene Wendling wrote: > port-lib-depends-check complains about this on my macppc and amd64 > machines: > > bamf-0.5.4(devel/bamf): > Missing: png.18 from png-1.6.37 (/usr/local/libexec/bamf/bamfdaemon) > Extra: XRes.5 gthread-2.0.4200 png16.18 > WANTLIB += png > > It's

x11/sisctrl removable

2020-06-26 Thread Solene Rapenne
I propose to remove x11/sisctrl because sis driver was deleted a few months ago from xenocara. No port depend on it.

[sparc64/base-gcc] Fix build of sysutils/usmb

2020-06-26 Thread Kurt Mosiejczuk
This patch drops -Werror from the build because all the deprecation warnings for glib-2.0 make the build abort. It fixes the build on sparc64. ok? --Kurt Index: Makefile === RCS file: /cvs/ports/sysutils/usmb/Makefile,v retrieving

[sparc64/base-gcc] Fix build of x11/gnome/seahorse

2020-06-26 Thread Kurt Mosiejczuk
Another port that uses C99 so base-gcc needs to be told to use it. This diff adds -std=gnu99 for base-gcc arches and fixes the build on at least sparc64. ok? --Kurt Index: Makefile === RCS file:

security/hitch: remove or update/take maintainer

2020-06-26 Thread Klemens Nanni
I imported this port when I actively used it, but circumstances have changed and I have no longer any use for this TLS proxy, so I won't put any more effort into sending fixes upstream as well as maintaining our port. 1.6.0 was recently released, contains a few of my fixes merged upstream, but

Re: NEW: devel/bamf

2020-06-26 Thread Brian Callahan
On Friday, June 26, 2020 8:29 AM, Stuart Henderson wrote: > On 2020/06/26 11:00, Charlene Wendling wrote: > > > port-lib-depends-check complains about this on my macppc and amd64 > > machines: > > bamf-0.5.4(devel/bamf): > > Missing: png.18 from png-1.6.37 (/usr/local/libexec/bamf/bamfdaemon) >

[sparc64/base-hcc] Fix build of devel/glade

2020-06-26 Thread Kurt Mosiejczuk
Another C99 port. Needs the following to compile on sparc64 and other base-gcc arches. ok? --Kurt Index: Makefile === RCS file: /cvs/ports/devel/glade/Makefile,v retrieving revision 1.88 diff -u -p -r1.88 Makefile --- Makefile

Re: redis-sentinel segfault workaround

2020-06-26 Thread Nam Nguyen
Theo Buehler writes: > I was given a reliable reproducer for the sentinel segfault that seems > to be present since at least Redis 4. I can only reproduce on amd64 and > only when compiling with -O1 or -O2, but not with -O0. > >>From what I can tell, it is an out-of-bounds access trying to read

Re: editors/emacs fix to use posix_openpt

2020-06-26 Thread Jeremie Courreges-Anglas
On Fri, Jun 26 2020, YASUOKA Masahiko wrote: > Hi, > > Currently emacs is using an old way to create a process with a pty. > OpenBSD has posix_openpt(3) now, so emacs should use it. > > I actually hit a problem that Mew could not start gnupg properly. Makes sense. > # I sent a bug report to the

Re: editors/emacs fix to use posix_openpt

2020-06-26 Thread YASUOKA Masahiko
On Sat, 27 Jun 2020 00:29:05 +0200 Jeremie Courreges-Anglas wrote: > On Fri, Jun 26 2020, YASUOKA Masahiko wrote: >> Hi, >> >> Currently emacs is using an old way to create a process with a pty. >> OpenBSD has posix_openpt(3) now, so emacs should use it. >> >> I actually hit a problem that Mew

Re: add OpenMP to ports-gcc

2020-06-26 Thread j
Thanks Stuart and Pascal for the help. I'm not sure what happened with my original patch and my inability to see some obvious issues. I have a patch ready but just noticed it doesn't have the @static-lib entries for the Ada libraries. I'll submit that later then. John

NEW: math/rstudio

2020-06-26 Thread Brian Callahan
Hi ports -- Attached is a new port, math/rstudio. RStudio is the IDE for R. --- pkg/DESCR: RStudio is an integrated development environment (IDE) for R. It includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and

Re: add OpenMP to ports-gcc

2020-06-26 Thread Stuart Henderson
> > > +lib/libgomp.a This update was not done on -current

Re: add OpenMP to ports-gcc

2020-06-26 Thread Stuart Henderson
On 2020/06/26 15:45, j...@bitminer.ca wrote: > > > > Sorry, further comment: .a and .spec should go into PLIST-main. > > > > Could you perhaps explain why? These would seem to me to be unused > unless gcc-libs was installed for the shared image. They are useless without the compiler. No need

Re: add OpenMP to ports-gcc

2020-06-26 Thread j
On 2020-06-26 15:48, Stuart Henderson wrote: > > +lib/libgomp.a This update was not done on -current thanks, I'll recheck, but the kernel is -current snap1$ sysctl kern.version kern.version=OpenBSD 6.7-current (GENERIC.MP) #272: Mon Jun 15 01:54:58 MDT 2020

gobject-introspection: can't resolve dependencies

2020-06-26 Thread deserter666
This happened out of blue, don't know how deal with this. This is repeatable, everytime. I came across it while installing ImageMagick. ===> gobject-introspection-1.64.1 depends on: py3-mako-* - not found ===> Verifying install for py3-mako-* in www/py-mako

Re: add OpenMP to ports-gcc

2020-06-26 Thread j
Hi Pascal, On 2020-06-26 15:03, Pascal Stumpf wrote: On Fri, 26 Jun 2020 23:01:29 +0200, Pascal Stumpf wrote: On Fri, 19 Jun 2020 11:50:48 -0700 (PDT), j...@bitminer.ca wrote: > This patch adjusts gcc-ports to add the various OpenMP libraries > already built to PLIST(s). > > Since ports were

Re: move py-flask-principal to python3

2020-06-26 Thread Aisha Tammy
On 6/26/20 9:58 AM, Antoine Jacoutot wrote: > On Fri, Jun 26, 2020 at 08:08:24AM -0400, Aisha Tammy wrote: >> I've updated the port py-flask-principal to use >> only python3. >> There are no reverse dependencies so this should >> not be breaking anything. > > You need to use the FLAVOR/FLAVORS

Re: NEW: x11/elementary/dock

2020-06-26 Thread Brian Callahan
On Friday, June 26, 2020 5:30 AM, Charlene Wendling wrote: > On Fri, 26 Jun 2020 01:54:42 + > Brian Callahan wrote: > > > Hi ports -- > > Attached is a new port, x11/elementary/dock. This is the elementary OS > > dock app. The binary is named plank. > > > > pkg/DESCR: > > Plank is meant

Alphabetize sysutils/Makefile listings

2020-06-26 Thread Brian Callahan
Hi ports -- As I was about to commit sysutils/ugrep, I noticed that some of the ports in the sysutils/Makefile listing were not in alphabetical order. Attached is a diff to resort them. Do we care about such things? OK to go ahead? ~Brian Index: Makefile

Re: move py-flask-principal to python3

2020-06-26 Thread Aisha Tammy
On 6/26/20 12:10 PM, Stuart Henderson wrote: > On 2020/06/26 11:48, Aisha Tammy wrote: >> On 6/26/20 11:30 AM, Antoine Jacoutot wrote: >>> On Fri, Jun 26, 2020 at 10:04:22AM -0400, Aisha Tammy wrote: On 6/26/20 9:58 AM, Antoine Jacoutot wrote: > On Fri, Jun 26, 2020 at 08:08:24AM -0400,

Re: [NEW] textproc/lucene++

2020-06-26 Thread Omar Polo
Landry Breuil writes: > another way that implies less patching, as you already patch > CMakeLists.txt for cotire: > > @@ -85,7 +80,7 @@ include(TestCXXAcceptsFlag) > include(GNUInstallDirs) > > set(LIB_DESTINATION > - "${CMAKE_INSTALL_FULL_LIBDIR}" CACHE STRING "Define lib output directory

Re: add OpenMP to ports-gcc

2020-06-26 Thread Pascal Stumpf
On Fri, 19 Jun 2020 11:50:48 -0700 (PDT), j...@bitminer.ca wrote: > This patch adjusts gcc-ports to add the various OpenMP libraries > already built to PLIST(s). > > Since ports were already patched to disable OpenMP this change > should likely result in no issues. > > > John Comment is

Re: UPDATE: GLEW 2.2.0

2020-06-26 Thread Brad Smith
ping. On 5/16/2020 6:37 PM, Brad Smith wrote: Here is an update to GLEW 2.2.0. Index: Makefile === RCS file: /home/cvs/ports/graphics/glew/Makefile,v retrieving revision 1.18 diff -u -p -u -p -r1.18 Makefile --- Makefile12

Re: [NEW] textproc/lucene++

2020-06-26 Thread Landry Breuil
On Fri, Jun 26, 2020 at 06:30:28PM +0200, Landry Breuil wrote: > On Fri, Jun 26, 2020 at 11:02:42AM +0200, Omar Polo wrote: > > > > Landry Breuil writes: > > unfortunately, after a while it core dumps: > > > > ... > > [--] 102 tests from IndexWriterTest > > [ RUN ]

Re: move py-flask-principal to python3

2020-06-26 Thread Aisha Tammy
On 6/26/20 11:30 AM, Antoine Jacoutot wrote: > On Fri, Jun 26, 2020 at 10:04:22AM -0400, Aisha Tammy wrote: >> On 6/26/20 9:58 AM, Antoine Jacoutot wrote: >>> On Fri, Jun 26, 2020 at 08:08:24AM -0400, Aisha Tammy wrote: I've updated the port py-flask-principal to use only python3.

Re: add OpenMP to ports-gcc

2020-06-26 Thread Pascal Stumpf
On Fri, 26 Jun 2020 23:01:29 +0200, Pascal Stumpf wrote: > On Fri, 19 Jun 2020 11:50:48 -0700 (PDT), j...@bitminer.ca wrote: > > This patch adjusts gcc-ports to add the various OpenMP libraries > > already built to PLIST(s). > > > > Since ports were already patched to disable OpenMP this change >

Re: NEW: devel/bamf

2020-06-26 Thread Brian Callahan
On Friday, June 26, 2020 11:27 AM, Stuart Henderson wrote: > On 2020/06/26 14:11, Brian Callahan wrote: > > > On Friday, June 26, 2020 8:29 AM, Stuart Henderson s...@spacehopper.org > > wrote: > > > > > On 2020/06/26 11:00, Charlene Wendling wrote: > > > > > > > port-lib-depends-check

Re: add OpenMP to ports-gcc

2020-06-26 Thread Stuart Henderson
On 2020/06/26 15:57, j...@bitminer.ca wrote: > > > On 2020-06-26 15:48, Stuart Henderson wrote: > > > > > +lib/libgomp.a > > > > This update was not done on -current > > thanks, I'll recheck, but the kernel is -current > > snap1$ sysctl kern.version > kern.version=OpenBSD 6.7-current

move py-flask-principal to python3

2020-06-26 Thread Aisha Tammy
I've updated the port py-flask-principal to use only python3. There are no reverse dependencies so this should not be breaking anything. Aisha diff --git www/py-flask-principal/Makefile www/py-flask-principal/Makefile index d062e04f581..4b9f6186750 100644 --- www/py-flask-principal/Makefile

Re: move py-flask-principal to python3

2020-06-26 Thread Stuart Henderson
On 2020/06/26 11:48, Aisha Tammy wrote: > On 6/26/20 11:30 AM, Antoine Jacoutot wrote: > > On Fri, Jun 26, 2020 at 10:04:22AM -0400, Aisha Tammy wrote: > >> On 6/26/20 9:58 AM, Antoine Jacoutot wrote: > >>> On Fri, Jun 26, 2020 at 08:08:24AM -0400, Aisha Tammy wrote: > I've updated the port

Re: [NEW] cad/qflow

2020-06-26 Thread Stuart Henderson
This is OK sthen@ to import. On 2020/06/26 16:35, Alessandro De Laurenzis wrote: > Weekly ping. > > Tarball re-attached for your convenience. > > While there, I changed the master site from Github to > opencircuitdesign.com (so we can avoid the on-the-fly generated > archive). > > If you

Re: [NEW] textproc/lucene++

2020-06-26 Thread Landry Breuil
On Fri, Jun 26, 2020 at 11:02:42AM +0200, Omar Polo wrote: > > Landry Breuil writes: > > > On Thu, Jun 25, 2020 at 06:08:56PM +0200, Omar Polo wrote: > >> > >> Hello there! > >> > >> Attached the port for Lucene++, a port of the java lucene library. It's > >> required by newer version of

Re: gobject-introspection: can't resolve dependencies

2020-06-26 Thread Stuart Henderson
On 2020/06/26 16:13, deserter...@danwin1210.me wrote: > This happened out of blue, don't know how deal with this. > This is repeatable, everytime. I came across it while > installing ImageMagick. > > ===> gobject-introspection-1.64.1 depends on: py3-mako-* - not found > ===> Verifying install

[new] devel/olm 3.1.5

2020-06-26 Thread Aaron Bieber
Hi, Here is a port of OLM ( https://gitlab.matrix.org/matrix-org/olm ), the Double Ratchet lib used by Matrix. This is needed by various Matrix clients to support end to end encryption. An upcoming update to net/mautrix-whatsapp will need this. It can also be used by various clients we don't

Re: move py-flask-principal to python3

2020-06-26 Thread Antoine Jacoutot
On Fri, Jun 26, 2020 at 08:08:24AM -0400, Aisha Tammy wrote: > I've updated the port py-flask-principal to use > only python3. > There are no reverse dependencies so this should > not be breaking anything. You need to use the FLAVOR/FLAVORS combo, not MODPY_DEFAULT_VERSION_3. > > Aisha > >

Re: [NEW] cad/qflow

2020-06-26 Thread Alessandro De Laurenzis
Weekly ping. Tarball re-attached for your convenience. While there, I changed the master site from Github to opencircuitdesign.com (so we can avoid the on-the-fly generated archive). If you would like to play a bit with the port: - make a new directory (e.g. ./qflow-trial) and copy there the

Re: [NEW] cad/qflow

2020-06-26 Thread Alessandro De Laurenzis
Just a note: On 26/06/2020 16:35, Alessandro De Laurenzis wrote: [...] If you would like to play a bit with the port: - make a new directory (e.g. ./qflow-trial) and copy there the enclosed map9v3.v file; - change to that dir and run 'qflow gui'; - in the 'synthesys preparation' tab: *

Re: NEW: devel/bamf

2020-06-26 Thread Stuart Henderson
On 2020/06/26 14:11, Brian Callahan wrote: > > On Friday, June 26, 2020 8:29 AM, Stuart Henderson > wrote: > > > On 2020/06/26 11:00, Charlene Wendling wrote: > > > > > port-lib-depends-check complains about this on my macppc and amd64 > > > machines: > > > bamf-0.5.4(devel/bamf): > > >

Re: move py-flask-principal to python3

2020-06-26 Thread Antoine Jacoutot
On Fri, Jun 26, 2020 at 10:04:22AM -0400, Aisha Tammy wrote: > On 6/26/20 9:58 AM, Antoine Jacoutot wrote: > > On Fri, Jun 26, 2020 at 08:08:24AM -0400, Aisha Tammy wrote: > >> I've updated the port py-flask-principal to use > >> only python3. > >> There are no reverse dependencies so this should

update flask to 1.1.2

2020-06-26 Thread Aisha Tammy
I've update flask to 1.1.2 latest Haven't done a lot of testing but it seems to be working fine with another small script I am using. Would be nice to see it updated. Also, there was no maintainer. I haven't added myself because I didn't know if some dev was interested in maintaining it but I

Re: x11/sisctrl removable

2020-06-26 Thread Jeremie Courreges-Anglas
On Fri, Jun 26 2020, Solene Rapenne wrote: > I propose to remove x11/sisctrl because sis driver was deleted a > few months ago from xenocara. > > No port depend on it. Sure. -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 03:00:36 Modified files: graphics : Makefile Log message: Link py-imageio.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:04:19 Log message: Import devel/py-dill. dill extends python's pickle module for serializing and de-serializing python objects to the majority of the built-in python types.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:05:14 Log message: Import py-multiprocess. Multiprocess is a fork of multiprocessing, and is developed as part of pathos: https://github.com/uqfoundation/pathos

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Ingo Feinerer
CVSROOT:/cvs Module name:ports Changes by: feine...@cvs.openbsd.org2020/06/26 04:11:41 Modified files: devel/colordiff: Makefile distinfo Log message: Update to colordiff 1.0.19 OK edd@

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 02:42:23 Modified files: databases : Makefile Removed files: databases/mytop: Makefile distinfo databases/mytop/patches: patch-mytop databases/mytop/pkg: DESCR

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Landry Breuil
CVSROOT:/cvs Module name:ports Changes by: lan...@cvs.openbsd.org 2020/06/26 03:07:26 Modified files: audio : Makefile Log message: relink audio/liblo to the build

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Charlene Wendling
CVSROOT:/cvs Module name:ports Changes by: c...@cvs.openbsd.org2020/06/26 03:41:40 Modified files: devel/codeblocks: Makefile distinfo devel/codeblocks/patches: patch-configure patch-src_base_tinyxml_Makefile_in

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 03:59:24 Modified files: math : Makefile Log message: Link py-PyWavelets.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 03:58:03 Log message: Import py-PyWavelets. PyWavelets is a Python wavelet transforms module that includes: - nD Forward and Inverse Discrete Wavelet Transform (DWT and IDWT) -

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:15:55 Log message: Import py-scs. SCS (splitting conic solver) is a numerical optimization package for solving large-scale convex cone problems, based on our paper Conic

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Inoguchi Kinichiro
CVSROOT:/cvs Module name:ports Changes by: inogu...@cvs.openbsd.org2020/06/26 02:49:07 Added files: audio/liblo: Makefile distinfo audio/liblo/pkg: DESCR PLIST Log message: Add audio/liblo liblo is an implementation of the Open Sound Control

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 02:46:42 Modified files: databases/mariadb: Makefile distinfo databases/mariadb/patches: patch-client_CMakeLists_txt patch-cmake_install_macros_cmake

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 02:59:05 Log message: Import graphics/py-imageio Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images,

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:01:42 Modified files: graphics/py-imageio: Makefile math/py-scikit-image: Makefile Log message: Fix email address.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:12:53 Log message: Import py-ecos. ECOS is a numerical software for solving convex second-order cone programs (SOCPs) of type min c'x s.t. Ax = b Gx <=_K h

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:15:06 Log message: Import py-cvxpy. CVXPY is a Python-embedded modeling language for convex optimization problems. It allows you to express your problem in a natural way that

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:14:06 Log message: Import py-cvxopt. CVXOPT is a free software package for convex optimization based on the Python programming language. It can be used with the interactive Python

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 03:03:41 Log message: Import math/py-scikit-image. Image Processing SciKit Image processing algorithms for SciPy, including IO, morphology, filtering, warping, color

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 03:04:39 Modified files: math : Makefile Log message: Link py-scikit-image

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:08:09 Modified files: devel : Makefile Log message: Link py-multiprocess and py-dill.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:19:11 Modified files: math : Makefile Log message: Link py-ecos, py-cvxopt, py-cvxpy, py-scs.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 06:57:46 Modified files: math : Makefile math/py-PyWavelets: Makefile math/py-PyWavelets/pkg: PLIST math/py-cvxopt : Makefile math/py-cvxopt/pkg:

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2020/06/26 07:00:07 Modified files: infrastructure/bin: update-plist Log message: add code to write conflict-related info in the cookie, so that if it changes we rerun pkglocate also check the pkglocate

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 06:59:12 Modified files: graphics : Makefile graphics/py-imageio: Makefile graphics/py-imageio/pkg: PLIST Log message: Switch py-imageio to FLAVOR=python3. OK sthen@,

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Solene Rapenne
CVSROOT:/cvs Module name:ports Changes by: sol...@cvs.openbsd.org 2020/06/26 04:32:15 Modified files: net/ngircd : Makefile distinfo net/ngircd/patches: patch-doc_Makefile_in patch-src_ngircd_conf_c

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:47:13 Modified files: math : Makefile Log message: Link py-osqp.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Paul Irofti
CVSROOT:/cvs Module name:ports Changes by: piro...@cvs.openbsd.org 2020/06/26 04:45:43 Log message: Import py-osqp. The OSQP (Operator Splitting Quadratic Program) solver is a numerical optimization package for solving convex quadratic programs in the form

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Sebastien Marie
CVSROOT:/cvs Module name:ports Changes by: sema...@cvs.openbsd.org 2020/06/26 05:29:47 Modified files: lang/rust : Makefile distinfo Log message: update lang/rust to 1.44.1 ChangeLog:

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2020/06/26 05:51:16 Modified files: infrastructure/mk: bsd.port.mk Log message: add a PKGLOCATE_COOKIE that will be filled in by update-plist turns out update-plist already groks -D thanks to inheriting

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2020/06/26 06:00:27 Modified files: infrastructure/bin: update-plist Log message: manage a pkglocate_cookie, so that pkglocate is not run every time. Note the TODOs, there's some code to be written to

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 07:15:23 Modified files: net/unifi/lts : Makefile net/unifi/lts/pkg: PLIST net/unifi/stable: Makefile net/unifi/stable/pkg: PLIST net/unifi/testing: Makefile

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2020/06/26 05:02:32 Modified files: infrastructure/lib/OpenBSD/PortGen/Port: Go.pm Log message: nit, help debug

CVS: cvs.openbsd.org: ports

2020-06-26 Thread YASUOKA Masahiko
CVSROOT:/cvs Module name:ports Changes by: yasu...@cvs.openbsd.org 2020/06/26 22:11:04 Modified files: editors/emacs : Makefile editors/emacs/patches: patch-configure Log message: Fix configure to use posix_openpt(3). ok jca

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Klemens Nanni
CVSROOT:/cvs Module name:ports Changes by: k...@cvs.openbsd.org2020/06/26 11:41:14 Modified files: security/hitch : Makefile Log message: Remove myself as MAINTAINER I no longer use this; 1.6.0 is out but someone else should take care of this TLS proxy, otherwise I

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Kurt Mosiejczuk
CVSROOT:/cvs Module name:ports Changes by: k...@cvs.openbsd.org2020/06/26 22:01:18 Modified files: sysutils/usmb : Makefile sysutils/usmb/patches: patch-Makefile_in Log message: Remove -Werror since the deprecation warnings will kill the build almost

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Aaron Bieber
CVSROOT:/cvs Module name:ports Changes by: abie...@cvs.openbsd.org 2020/06/26 17:26:04 Modified files: infrastructure/lib/OpenBSD/PortGen/Port: Go.pm Log message: Remove extra shell. Fix from espie@

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Kurt Mosiejczuk
CVSROOT:/cvs Module name:ports Changes by: k...@cvs.openbsd.org2020/06/26 19:13:47 Modified files: x11/windowmaker: Makefile Log message: Fix build of windowmaker for sparc64 and other base-gcc arches. Maintainer timeout.

Hello reader

2020-06-26 Thread {Lee @V3DA hub}
Top 3 affiliate features that actually translate to CA$H [v3da-hub-partner-program2] Hello reader, These are trying times, but with every challenge comes the hope for a new tomorrow. I found your email while researching the web, so I decided to reach out. Feel free to remove yourself from my

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Aaron Bieber
CVSROOT:/cvs Module name:ports Changes by: abie...@cvs.openbsd.org 2020/06/26 16:27:26 Log message: Import olm. OLM is a Doubli Ratchet crypto library used by various Matrix clients. OK bcallah Status: Vendor Tag: abieber Release Tags:

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Aaron Bieber
CVSROOT:/cvs Module name:ports Changes by: abie...@cvs.openbsd.org 2020/06/26 16:28:12 Modified files: devel : Makefile Log message: + olm

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Frederic Cambus
CVSROOT:/cvs Module name:ports Changes by: fcam...@cvs.openbsd.org 2020/06/26 13:54:47 Modified files: emulators/mame : Makefile distinfo emulators/mame/patches: patch-scripts_genie_lua Log message: Update mame to 0.222.

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 15:27:09 Modified files: net/telepathy/telepathy-logger: Makefile Log message: telepathy-logger: add BDEP on libxslt (previously a BDEP of gnome-doc-utils which was recently removed from here),

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Frederic Cambus
CVSROOT:/cvs Module name:ports Changes by: fcam...@cvs.openbsd.org 2020/06/26 16:20:15 Modified files: emulators/mame : distinfo Log message: Regen distinfo, tarball was rerolled because tag name changed. The only change is in 3rdparty/lua-zlib/lua_zlib.c: -

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 12:24:13 Modified files: databases/mariadb: Tag: OPENBSD_6_7 Makefile distinfo databases/mariadb/patches: Tag: OPENBSD_6_7

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 14:23:54 Modified files: security/sudo : Makefile security/sudo/pkg: PLIST-main Log message: append the flavour to the @pkgpath marker, otherwise all flavoured packages have @pkgpath

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Brian Callahan
CVSROOT:/cvs Module name:ports Changes by: bcal...@cvs.openbsd.org 2020/06/26 10:17:51 Modified files: games/pentobi : Makefile distinfo Removed files: games/pentobi/patches: patch-pentobi_docbook_custom_xsl Log message: Bugfix update to 18.1, which fixes the

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Marc Espie
CVSROOT:/cvs Module name:ports Changes by: es...@cvs.openbsd.org 2020/06/26 08:47:05 Modified files: infrastructure/bin: update-plist Log message: explain why FAKE_TREE_OWNER is not a regular option

CVS: cvs.openbsd.org: ports

2020-06-26 Thread Stuart Henderson
CVSROOT:/cvs Module name:ports Changes by: st...@cvs.openbsd.org 2020/06/26 07:39:32 Modified files: mail/neomutt : Makefile distinfo Log message: update to neomutt-20200626