Re: UPDATE: openimageio 2.2.18.0

2021-10-16 Thread Brad Smith
On Sat, Oct 16, 2021 at 04:11:02PM -0400, Brad Smith wrote:
> Here is an update to openimageio 2.2.18.0.

An updated diff. Enable the HEIF support and fix the hardcoded library
version in the PLIST.


Index: Makefile
===
RCS file: /home/cvs/ports/graphics/openimageio/Makefile,v
retrieving revision 1.56
diff -u -p -u -p -r1.56 Makefile
--- Makefile31 Aug 2021 07:31:14 -  1.56
+++ Makefile16 Oct 2021 22:59:25 -
@@ -11,12 +11,11 @@ COMMENT =   library for reading and writi
 GH_ACCOUNT =   OpenImageIO
 GH_PROJECT =   oiio
 GH_TAGNAME =   Release-$V
-V =2.2.15.1
+V =2.2.18.0
 DISTNAME = openimageio-${V}
-REVISION = 0
 
-SHARED_LIBS += OpenImageIO 10.2 # 2.2.15
-SHARED_LIBS += OpenImageIO_Util6.1 # 2.2.15
+SHARED_LIBS += OpenImageIO 11.0 # 2.2.18
+SHARED_LIBS += OpenImageIO_Util7.0 # 2.2.18
 
 CATEGORIES =   graphics devel
 
@@ -32,8 +31,8 @@ WANTLIB += GL GLU Iex-3_1 IlmThread-3_1 
 WANTLIB += Imath-3_1 OpenColorIO Qt5Core Qt5Gui Qt5OpenGL Qt5Widgets
 WANTLIB += avcodec avformat avutil boost_atomic-mt boost_chrono-mt
 WANTLIB += boost_date_time-mt boost_filesystem-mt boost_system-mt
-WANTLIB += boost_thread-mt bz2 c freetype gif jpeg m openjp2 png
-WANTLIB += pugixml raw_r swscale tiff webp webpdemux z
+WANTLIB += boost_thread-mt bz2 c freetype gif heif iconv jpeg m
+WANTLIB += openjp2 png pugixml raw_r swscale tiff webp webpdemux z
 
 MODULES =  devel/cmake \
lang/python \
@@ -56,6 +55,7 @@ LIB_DEPENDS = devel/boost \
graphics/openjp2 \
graphics/png \
graphics/tiff \
+   multimedia/libheif \
textproc/pugixml
 
 CONFIGURE_ARGS +=  -DCMAKE_INSTALL_MANDIR="man/man1" \
@@ -67,7 +67,6 @@ CONFIGURE_ARGS += -DCMAKE_INSTALL_MANDIR
-DUSE_OPENCV=OFF \
-DUSE_OPENVDB=OFF \
-DUSE_HDF5=OFF \
-   -DUSE_LIBHEIF=OFF \

-Dpybind11_DIR=${MODPY_SITEPKG}/pybind11/share/cmake/pybind11/
 
 # Fix undefined reference to __atomic_*
Index: distinfo
===
RCS file: /home/cvs/ports/graphics/openimageio/distinfo,v
retrieving revision 1.14
diff -u -p -u -p -r1.14 distinfo
--- distinfo9 Jun 2021 23:33:20 -   1.14
+++ distinfo16 Oct 2021 02:32:54 -
@@ -1,2 +1,2 @@
-SHA256 (openimageio-2.2.15.1.tar.gz) = 
8iLGtRpAqrvIDd9AVVNb6a8f+pB0UvptH/p2dIVKqxc=
-SIZE (openimageio-2.2.15.1.tar.gz) = 29237852
+SHA256 (openimageio-2.2.18.0.tar.gz) = 
uN0Yn7yX8bFyUo4yTaqQT3ShZrrWLDLnFmymyGZzSik=
+SIZE (openimageio-2.2.18.0.tar.gz) = 29246567
Index: patches/patch-src_include_OpenImageIO_fmath_h
===
RCS file: patches/patch-src_include_OpenImageIO_fmath_h
diff -N patches/patch-src_include_OpenImageIO_fmath_h
--- patches/patch-src_include_OpenImageIO_fmath_h   31 Aug 2021 07:31:14 
-  1.1
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,28 +0,0 @@
-$OpenBSD: patch-src_include_OpenImageIO_fmath_h,v 1.1 2021/08/31 07:31:14 
ajacoutot Exp $
-
-From 05a5448c3ec8c75d7e859099315c452e39729a9b Mon Sep 17 00:00:00 2001
-From: Larry Gritz 
-Date: Tue, 8 Jun 2021 18:56:31 -0700
-Subject: [PATCH] Fix to accommodate changed preprocessor name in imath master. 
(#2996)
-
-Index: src/include/OpenImageIO/fmath.h
 src/include/OpenImageIO/fmath.h.orig
-+++ src/include/OpenImageIO/fmath.h
-@@ -949,7 +949,7 @@ inline void convert_type (const uint16
- }
- 
- 
--#ifdef _HALF_H_
-+#if defined(_HALF_H_) || defined(IMATH_HALF_H_)
- template<>
- inline void convert_type (const half *src,
-   float *dst, size_t n,
-@@ -1017,7 +1017,7 @@ convert_type (const float *src, uint8_t
- }
- 
- 
--#ifdef _HALF_H_
-+#if defined(_HALF_H_) || defined(IMATH_HALF_H_)
- template<>
- inline void
- convert_type (const float *src, half *dst, size_t n,
Index: patches/patch-src_include_OpenImageIO_simd_h
===
RCS file: patches/patch-src_include_OpenImageIO_simd_h
diff -N patches/patch-src_include_OpenImageIO_simd_h
--- patches/patch-src_include_OpenImageIO_simd_h31 Aug 2021 07:31:14 
-  1.3
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,233 +0,0 @@
-$OpenBSD: patch-src_include_OpenImageIO_simd_h,v 1.3 2021/08/31 07:31:14 
ajacoutot Exp $
-
-From 05a5448c3ec8c75d7e859099315c452e39729a9b Mon Sep 17 00:00:00 2001
-From: Larry Gritz 
-Date: Tue, 8 Jun 2021 18:56:31 -0700
-Subject: [PATCH] Fix to accommodate changed preprocessor name in imath master. 
(#2996)
-
-Index: src/include/OpenImageIO/simd.h
 

Re: powerpc bulk build report

2021-10-16 Thread George Koehler
On Sat, 16 Oct 2021 17:43:35 +0100
Edd Barrett  wrote:

> On Sat, Oct 16, 2021 at 10:16:48AM -0600, c...@openbsd.org wrote:
> > http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log
> 
> > :1:9: error: macro name must be an identifier
> > #define -faltivec 1
> 
> Can you try this?

Fails because clang rejects -faltivec,
  c++: error: the clang compiler does not support 'faltivec',
  please use -maltivec and include altivec.h explicitly

I suspect that -faltivec was only for Apple gcc on Mac OS X (because
our ports-gcc also rejects it).  It would also be wrong to build every
file with -maltivec, because some macppc models (G3) have no altivec.
It might be correct to build only r_drawt_altivec.cpp with -maltivec,
because r_draw.cpp checks SDL_HasAltiVec().  Either that, or just
disable altivec on powerpc.

I will try to unbreak the build on my macppc.
--George

> Index: patches/patch-client_CMakeLists_txt
> ===
> RCS file: /cvs/ports/games/odamex/patches/patch-client_CMakeLists_txt,v
> retrieving revision 1.3
> diff -u -p -r1.3 patch-client_CMakeLists_txt
> --- patches/patch-client_CMakeLists_txt   29 Aug 2021 22:09:09 -  
> 1.3
> +++ patches/patch-client_CMakeLists_txt   16 Oct 2021 16:41:49 -
> @@ -3,7 +3,7 @@ $OpenBSD: patch-client_CMakeLists_txt,v 
>  Index: client/CMakeLists.txt
>  --- client/CMakeLists.txt.orig
>  +++ client/CMakeLists.txt
> -@@ -163,7 +163,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> +@@ -163,13 +163,13 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
>   elseif(ODAMEX_TARGET_ARCH STREQUAL "i386")
> if(NOT MSVC)
>   # Pentium M has SSE2.
> @@ -12,6 +12,13 @@ Index: client/CMakeLists.txt
> else()
>   target_compile_definitions(odamex PRIVATE /arch:SSE2)
> endif()
> +   message(STATUS "Default SIMD flags set to SSE2")
> + elseif(ODAMEX_TARGET_ARCH MATCHES "ppc")
> +-  target_compile_definitions(odamex PRIVATE -faltivec)
> ++  target_compile_options(odamex PRIVATE -faltivec)
> +   message(STATUS "Default SIMD flags set to AltiVec")
> + endif()
> +   else()
>  @@ -220,7 +220,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> endif()
>   
> -- 
> Best Regards
> Edd Barrett
> 
> https://www.theunixzoo.co.uk
> 


-- 
George Koehler 



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Brian Callahan
CVSROOT:/cvs
Module name:ports
Changes by: bcal...@cvs.openbsd.org 2021/10/16 19:43:18

Modified files:
lang   : Makefile 
devel/dtools   : Makefile 

Log message:
Enabling gdmd was a little too premature: it causes gcc-11 to hang out on
the build machines, which breaks many more important ports.
Switch dtools to build with dmd. This allows us to continue to offer the
package on at least amd64.
Comment out the gdmd line in lang/Makefile to make it clear this is
intentional. We will revisit gdmd once the ports world moves to gcc-11.
Found the hard way by tb@ -- apologies for the breakage
ok sthen@, who also mentioned the commenting out of gdmd in lang/Makefile



Re: riscv64 bulk build report

2021-10-16 Thread Jeremie Courreges-Anglas
On Wed, Oct 13 2021, j...@wxcvbn.org wrote:
> Bulk build on riscv64.ports.openbsd.org
>
> Started : Mon Sep 27 06:14:45 MDT 2021
> Finished: Tue Oct 12 22:40:26 MDT 2021
> Duration: 15 Days 16 hours 26 minutes
>
> Built using OpenBSD 7.0 (GENERIC.MP) #71: Mon Sep 27 01:58:04 MDT 2021
>
> Built 8695 packages

Brad noticed the lack of devel/boost package.

It wasn't built because of numpy missing, and numpy itself is missing
because of the lack of fortran support.  Actually the lack of a lang/gcc
port for OpenBSD/riscv64.

While I've tried to get lang/gcc/{8,11} to build and compile useful
stuff after k2k21, I don't have a working recipe yet.  In the meantime
we could make numpy optional in devel/boost.  I can clean up a wip diff
for this, but first, what do you folks think?

(AFAIK boost_numpy the shared lib isn't used in the ports tree).

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



UPDATE: openimageio 2.2.18.0

2021-10-16 Thread Brad Smith
Here is an update to openimageio 2.2.18.0.


Index: Makefile
===
RCS file: /home/cvs/ports/graphics/openimageio/Makefile,v
retrieving revision 1.56
diff -u -p -u -p -r1.56 Makefile
--- Makefile31 Aug 2021 07:31:14 -  1.56
+++ Makefile16 Oct 2021 07:13:34 -
@@ -11,12 +11,11 @@ COMMENT =   library for reading and writi
 GH_ACCOUNT =   OpenImageIO
 GH_PROJECT =   oiio
 GH_TAGNAME =   Release-$V
-V =2.2.15.1
+V =2.2.18.0
 DISTNAME = openimageio-${V}
-REVISION = 0
 
-SHARED_LIBS += OpenImageIO 10.2 # 2.2.15
-SHARED_LIBS += OpenImageIO_Util6.1 # 2.2.15
+SHARED_LIBS += OpenImageIO 11.0 # 2.2.18
+SHARED_LIBS += OpenImageIO_Util7.0 # 2.2.18
 
 CATEGORIES =   graphics devel
 
@@ -32,8 +31,8 @@ WANTLIB += GL GLU Iex-3_1 IlmThread-3_1 
 WANTLIB += Imath-3_1 OpenColorIO Qt5Core Qt5Gui Qt5OpenGL Qt5Widgets
 WANTLIB += avcodec avformat avutil boost_atomic-mt boost_chrono-mt
 WANTLIB += boost_date_time-mt boost_filesystem-mt boost_system-mt
-WANTLIB += boost_thread-mt bz2 c freetype gif jpeg m openjp2 png
-WANTLIB += pugixml raw_r swscale tiff webp webpdemux z
+WANTLIB += boost_thread-mt bz2 c freetype gif iconv jpeg m openjp2
+WANTLIB += png pugixml raw_r swscale tiff webp webpdemux z
 
 MODULES =  devel/cmake \
lang/python \
Index: distinfo
===
RCS file: /home/cvs/ports/graphics/openimageio/distinfo,v
retrieving revision 1.14
diff -u -p -u -p -r1.14 distinfo
--- distinfo9 Jun 2021 23:33:20 -   1.14
+++ distinfo16 Oct 2021 02:32:54 -
@@ -1,2 +1,2 @@
-SHA256 (openimageio-2.2.15.1.tar.gz) = 
8iLGtRpAqrvIDd9AVVNb6a8f+pB0UvptH/p2dIVKqxc=
-SIZE (openimageio-2.2.15.1.tar.gz) = 29237852
+SHA256 (openimageio-2.2.18.0.tar.gz) = 
uN0Yn7yX8bFyUo4yTaqQT3ShZrrWLDLnFmymyGZzSik=
+SIZE (openimageio-2.2.18.0.tar.gz) = 29246567
Index: patches/patch-src_include_OpenImageIO_fmath_h
===
RCS file: patches/patch-src_include_OpenImageIO_fmath_h
diff -N patches/patch-src_include_OpenImageIO_fmath_h
--- patches/patch-src_include_OpenImageIO_fmath_h   31 Aug 2021 07:31:14 
-  1.1
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,28 +0,0 @@
-$OpenBSD: patch-src_include_OpenImageIO_fmath_h,v 1.1 2021/08/31 07:31:14 
ajacoutot Exp $
-
-From 05a5448c3ec8c75d7e859099315c452e39729a9b Mon Sep 17 00:00:00 2001
-From: Larry Gritz 
-Date: Tue, 8 Jun 2021 18:56:31 -0700
-Subject: [PATCH] Fix to accommodate changed preprocessor name in imath master. 
(#2996)
-
-Index: src/include/OpenImageIO/fmath.h
 src/include/OpenImageIO/fmath.h.orig
-+++ src/include/OpenImageIO/fmath.h
-@@ -949,7 +949,7 @@ inline void convert_type (const uint16
- }
- 
- 
--#ifdef _HALF_H_
-+#if defined(_HALF_H_) || defined(IMATH_HALF_H_)
- template<>
- inline void convert_type (const half *src,
-   float *dst, size_t n,
-@@ -1017,7 +1017,7 @@ convert_type (const float *src, uint8_t
- }
- 
- 
--#ifdef _HALF_H_
-+#if defined(_HALF_H_) || defined(IMATH_HALF_H_)
- template<>
- inline void
- convert_type (const float *src, half *dst, size_t n,
Index: patches/patch-src_include_OpenImageIO_simd_h
===
RCS file: patches/patch-src_include_OpenImageIO_simd_h
diff -N patches/patch-src_include_OpenImageIO_simd_h
--- patches/patch-src_include_OpenImageIO_simd_h31 Aug 2021 07:31:14 
-  1.3
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,233 +0,0 @@
-$OpenBSD: patch-src_include_OpenImageIO_simd_h,v 1.3 2021/08/31 07:31:14 
ajacoutot Exp $
-
-From 05a5448c3ec8c75d7e859099315c452e39729a9b Mon Sep 17 00:00:00 2001
-From: Larry Gritz 
-Date: Tue, 8 Jun 2021 18:56:31 -0700
-Subject: [PATCH] Fix to accommodate changed preprocessor name in imath master. 
(#2996)
-
-Index: src/include/OpenImageIO/simd.h
 src/include/OpenImageIO/simd.h.orig
-+++ src/include/OpenImageIO/simd.h
-@@ -1839,7 +1839,7 @@ class vfloat4 { (public)
- /// Construct from a pointer to 4 char values
- explicit vfloat4 (const char *vals) { load(vals); }
- 
--#ifdef _HALF_H_
-+#if defined(_HALF_H_) || defined(IMATH_HALF_H_)
- /// Construct from a pointer to 4 half (16 bit float) values
- explicit vfloat4 (const half *vals) { load(vals); }
- #endif
-@@ -1914,17 +1914,17 @@ class vfloat4 { (public)
- /// Load from an array of 4 char values, convert to float
- void load (const char *values);
- 
--#ifdef _HALF_H_
-+#if defined(_HALF_H_) || defined(IMATH_HALF_H_)
- /// Load from an array of 4 half values, convert to float
- void load (const half *values);
--#endif /* _HALF_H_ */
-+#endif /* _HALF_H_ or _IMATH_H_ */
- 
- void store (float *values) 

unbreak games/boswars

2021-10-16 Thread Omar Polo
Hello,

In my quest to update scons I noticed that boswars currently fails at
runtime due to invalid png files:

libpng warning: iCCP: known incorrect sRGB profile
libpng error: IDAT: invalid distance too far back
Error reading the PNG file.
Can't load the graphic `graphics/ui/ui_minimap.png'

This is an attempt at fixing the images using optipng (I think pngcrush
could also be used, but optipng is what I had available.)  It makes the
build a bit longer but the game seems playable again.  The exact list of
broken PNGs is a courtesy of haikuports :)

https://github.com/haikuports/haikuports/blob/master/games-strategy/boswars/boswars-2.7.recipe#L66

OK?

P.S.: portcheck complaints are not due this patch

P.P.S: if you're bothered by the c++ warning 'optimization flag ... is
   not supported' I'm addressing that in a following patch to build
   it with scons 4


Index: Makefile
===
RCS file: /home/cvs/ports/games/boswars/Makefile,v
retrieving revision 1.26
diff -u -p -r1.26 Makefile
--- Makefile12 Jul 2019 20:46:15 -  1.26
+++ Makefile16 Oct 2021 23:33:22 -
@@ -7,7 +7,7 @@ DISTNAME=   boswars-${V}-src
 PKGNAME=   boswars-${V}
 CATEGORIES=games x11
 MASTER_SITES=  http://www.boswars.org/dist/releases/
-REVISION=  1
+REVISION=  2
 
 HOMEPAGE=  http://www.boswars.org/
 
@@ -24,7 +24,8 @@ MODULES=  devel/scons \
 MODSCONS_FLAGS=CPPPATH="${LOCALBASE}/include ${X11BASE}/include" \
opengl=1
 
-BUILD_DEPENDS= devel/sdl-image
+BUILD_DEPENDS= devel/sdl-image \
+   graphics/optipng
 LIB_DEPENDS=   devel/sdl \
multimedia/libtheora \
audio/libvorbis \
@@ -34,6 +35,12 @@ LIB_DEPENDS= devel/sdl \
 NO_TEST=   Yes
 
 DATA_DIR=  campaigns graphics intro languages maps patches scripts sounds 
units
+
+post-extract:
+.for f in maps/antarticum.map/terrain.png graphics/ui/ui_*.png \
+   units/radar/radar*.png units/tree*/tree*.png
+   optipng -force -fix ${WRKSRC}/${f}
+.endfor
 
 pre-configure:
@${SUBST_CMD} ${WRKSRC}/SConstruct \



Re: [new] x11/alacritty

2021-10-16 Thread Eric Auge
ping.

On Sat, Sep 11, 2021 at 2:18 PM Eric Auge  wrote:
>
> Hello,
>
> attached the updated the port (followed Stuart comments):
> - made a patch for the live_config_reload default.
> - updated DESCR and README according to comments & alacritty updated
> self description.
> - the xcursors-themes port does not seem necessary anymore.
>
> Did I miss anything?
>
> HTH,
> Eric.
>
> On Fri, Sep 3, 2021 at 2:41 PM Stuart Henderson  wrote:
> >
> > On 2021/09/03 16:31, Frederic Cambus wrote:
> > > On Mon, Aug 12, 2019 at 07:39:23AM +0200, Theo Buehler wrote:
> > > > On Sun, Aug 11, 2019 at 11:30:09PM +0100, Stuart Henderson wrote:
> > > > > So the claimed advantage is that it's super fast, but actually it 
> > > > > uses way
> > > > > more cpu than probably any other terminal emulator in the tree except
> > > > > cool-retro-term?
> > > >
> > > > Yes, it is blazing fast. matthieu's test of 'cat /etc/termcap' completes
> > > > in under 0.1s while xterm uses 0.2-0.3s. It does feel way snappier than
> > > > xterm in general.
> > > >
> > > > It looks like I made CPU use worse by about a factor of 2 due to using
> > > > vm.malloc_conf=CFJ. Still, ~5% is way more than it should need.
> > > >
> > > > Another advantage is that contrary to xterm it is trivial to configure
> > > > thanks to a self-documenting .yml config file.
> > > >
> > > > > Is this useful enough to be worth adding so much time to a bulk build?
> > > >
> > > > I doubt it.
> > > >
> > > > > It will likely need to be amd64-only.
> > > >
> > > > Probably. Testing on other archs would need more time than I currently
> > > > have.
> > >
> > > Resurrecting this as it seems the requirements are much more reasonable
> > > nowadays, and I can build the latest version in 4 minutes on my Ryzen 5
> > > PRO 2500U laptop:
> > >
> > > Finished release [optimized] target(s) in 4m 07s
> > >
> > > Here is a new tarball with the following changes:
> > >
> > > - Update to alacritty 0.9.0
> > > - Move MODCARGO_CRATES directives into crates.inc.
> > > - Remove the ulimit checks, as I was able to build the port as a regular
> > >   user with the default limits without running out of memory
> >
> > README needs either rewriting or removing. Some of the sentences don't
> > parse. The configuration section says what the program does but doesn't
> > really say what the user should do with that information.
> >
> > There's a conflict between what DESCR says ("It provides sane choices
> > for defaults and requires no additional setup") and README: "Although
> > the default configuration work on OpenBSD, some values are not optimal
> > [...] This option leads alacritty to a non negligeable CPU overhead on
> > OpenBSD". If it's bad enough to document then I would suggest patching
> > the default setting for live_config_reload instead. And rather than
> > telling the user "please install pkg_add xcursors-themes port" it would
> > be better to just RUN_DEPENDS on it. If that's done then there isn't
> > really any more need for the pkg-readme, the standard documentation
> > should suffice.
> >



Re: UPDATE: portaudio v1970

2021-10-16 Thread Brad Smith

ping.

On 8/1/2021 1:57 AM, Brad Smith wrote:

Here is an update to portaudio v1970.

Not much in the changelog.. mostly Windows and macOS changes, what's left..

- White spaces and indentation were cleaned up.
- Fix builds with parallel makes


Index: Makefile
===
RCS file: /home/cvs/ports/audio/portaudio-svn/Makefile,v
retrieving revision 1.20
diff -u -p -u -p -r1.20 Makefile
--- Makefile12 Jul 2019 20:43:39 -  1.20
+++ Makefile31 Jul 2021 04:19:19 -
@@ -2,10 +2,10 @@
  
  COMMENT=		portable cross-platform audio API
  
-DISTNAME =		pa_stable_v190600_20161030

-PKGNAME =  portaudio-svn-1960
+DISTNAME = pa_stable_v190700_20210406
+PKGNAME =  portaudio-svn-1970
  CATEGORIES=   audio
-MASTER_SITES = http://www.portaudio.com/archives/
+MASTER_SITES = http://files.portaudio.com/archives/
  EXTRACT_SUFX =.tgz
  
  SHARED_LIBS =		portaudio	1.2

Index: distinfo
===
RCS file: /home/cvs/ports/audio/portaudio-svn/distinfo,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 distinfo
--- distinfo6 Feb 2019 14:21:15 -   1.6
+++ distinfo31 Jul 2021 04:19:21 -
@@ -1,2 +1,2 @@
-SHA256 (pa_stable_v190600_20161030.tgz) = 
9aIdfc1u6EOXRG+h+hoGdbsuikptzrQwWoQEaY2NFRM=
-SIZE (pa_stable_v190600_20161030.tgz) = 1450572
+SHA256 (pa_stable_v190700_20210406.tgz) = 
R++/Qsd8GaBdIuYn1Chz6ZHsDBNXIZwNdM5qKUjLLe8=
+SIZE (pa_stable_v190700_20210406.tgz) = 1462695
Index: patches/patch-Makefile_in
===
RCS file: /home/cvs/ports/audio/portaudio-svn/patches/patch-Makefile_in,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 patch-Makefile_in
--- patches/patch-Makefile_in   12 Mar 2013 00:59:50 -  1.4
+++ patches/patch-Makefile_in   31 Jul 2021 04:22:35 -
@@ -1,15 +1,17 @@
  $OpenBSD: patch-Makefile_in,v 1.4 2013/03/12 00:59:50 brad Exp $
 Makefile.in.orig   Thu Jul  5 23:44:34 2012
-+++ Makefile.inThu Jul  5 23:49:34 2012
-@@ -146,6 +146,7 @@ SRC_DIRS = \
-   src/hostapi/dsound \
+
+Index: Makefile.in
+--- Makefile.in.orig
 Makefile.in
+@@ -147,6 +147,7 @@ SRC_DIRS = \
src/hostapi/jack \
src/hostapi/oss \
+   src/hostapi/skeleton \
  + src/hostapi/sndio \
src/hostapi/wasapi \
src/hostapi/wdmks \
src/hostapi/wmme \
-@@ -155,7 +156,7 @@ SRC_DIRS = \
+@@ -156,7 +157,7 @@ SRC_DIRS = \
   SUBDIRS =
   @ENABLE_CXX_TRUE@SUBDIRS += bindings/cpp
   
Index: patches/patch-configure_in

===
RCS file: /home/cvs/ports/audio/portaudio-svn/patches/patch-configure_in,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 patch-configure_in
--- patches/patch-configure_in  6 Feb 2019 14:21:15 -   1.5
+++ patches/patch-configure_in  31 Jul 2021 04:22:49 -
@@ -1,8 +1,9 @@
  $OpenBSD: patch-configure_in,v 1.5 2019/02/06 14:21:15 jca Exp $
+
  Index: configure.in
  --- configure.in.orig
  +++ configure.in
-@@ -24,6 +24,10 @@ AC_ARG_WITH(alsa,
+@@ -33,6 +33,10 @@ AC_ARG_WITH(alsa,
   AS_HELP_STRING([--with-alsa], [Enable support for ALSA 
@<:@autodetect@:>@]),
   [with_alsa=$withval])
   
@@ -13,7 +14,7 @@ Index: configure.in

   AC_ARG_WITH(jack,
   AS_HELP_STRING([--with-jack], [Enable support for JACK 
@<:@autodetect@:>@]),
   [with_jack=$withval])
-@@ -120,6 +124,10 @@ have_alsa=no
+@@ -129,6 +133,10 @@ have_alsa=no
   if test "x$with_alsa" != "xno"; then
   AC_CHECK_LIB(asound, snd_pcm_open, have_alsa=yes, have_alsa=no)
   fi
@@ -24,7 +25,7 @@ Index: configure.in
   have_asihpi=no
   if test "x$with_asihpi" != "xno"; then
   AC_CHECK_LIB(hpi, HPI_SubSysCreate, have_asihpi=yes, have_asihpi=no, -lm)
-@@ -406,6 +414,13 @@ case "${host_os}" in
+@@ -401,6 +409,13 @@ case "${host_os}" in
  AC_DEFINE(PA_USE_ALSA,1)
   fi
   
@@ -38,7 +39,7 @@ Index: configure.in

   if [[ "$have_jack" = "yes" ] && [ "$with_jack" != "no" ]] ; then
  DLL_LIBS="$DLL_LIBS $JACK_LIBS"
  CFLAGS="$CFLAGS $JACK_CFLAGS"
-@@ -509,6 +524,7 @@ case "$target_os" in
+@@ -504,6 +519,7 @@ case "$target_os" in
   ;;
*)
AC_MSG_RESULT([
Index: patches/patch-include_portaudio_h
===
RCS file: 
/home/cvs/ports/audio/portaudio-svn/patches/patch-include_portaudio_h,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 patch-include_portaudio_h
--- patches/patch-include_portaudio_h   6 Feb 2019 14:21:15 -   1.3
+++ patches/patch-include_portaudio_h   31 Jul 2021 04:22:59 -
@@ -1,4 +1,5 @@
  $OpenBSD: patch-include_portaudio_h,v 1.3 2019/02/06 14:21:15 jca Exp $
+
  Index: include/portaudio.h
  --- include/portaudio.h.orig
  +++ include/portaudio.h
Index: 

Re: Update net/blaeu to v1.1.7

2021-10-16 Thread Denis Fondras
Le Sat, Oct 16, 2021 at 09:10:02PM +0100, Stuart Henderson a écrit :
> Please run make update-patches.
> OK.
> 

Thank you Stuart.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Denis Fondras
CVSROOT:/cvs
Module name:ports
Changes by: de...@cvs.openbsd.org   2021/10/16 14:43:41

Modified files:
databases/timescaledb: Makefile distinfo 
databases/timescaledb/pkg: PLIST 

Log message:
Update to v2.4.2

OK sthen@



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Denis Fondras
CVSROOT:/cvs
Module name:ports
Changes by: de...@cvs.openbsd.org   2021/10/16 14:43:05

Modified files:
net/blaeu  : Makefile distinfo 
net/blaeu/patches: patch-setup_py 

Log message:
Update to v1.1.7

OK sthen@



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 14:24:44

Modified files:
x11/ogre   : Makefile 

Log message:
enable x11/ogre on powerpc

"ogre now builds on powerpc with the switch to lld", "Maintainer is not
responding" from Brad



Re: Update net/blaeu to v1.1.7

2021-10-16 Thread Stuart Henderson
Please run make update-patches.
OK.

On 2021/10/16 16:50, Denis Fondras wrote:
> Simple update.
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/net/blaeu/Makefile,v
> retrieving revision 1.9
> diff -u -p -r1.9 Makefile
> --- Makefile  23 Feb 2021 19:39:31 -  1.9
> +++ Makefile  16 Oct 2021 14:46:12 -
> @@ -2,10 +2,9 @@
>  
>  COMMENT =create measurements on RIPE Atlas probes.
>  
> -MODPY_EGG_VERSION = 1.1.6
> +MODPY_EGG_VERSION = 1.1.7
>  DISTNAME =   blaeu-${MODPY_EGG_VERSION}
>  CATEGORIES = net
> -REVISION =   0
>  
>  MAINTAINER = Denis Fondras 
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/net/blaeu/distinfo,v
> retrieving revision 1.3
> diff -u -p -r1.3 distinfo
> --- distinfo  6 Jun 2020 20:14:00 -   1.3
> +++ distinfo  16 Oct 2021 14:46:12 -
> @@ -1,2 +1,2 @@
> -SHA256 (blaeu-1.1.6.tar.gz) = FBJ4rsr/2UjBFRFtwxX4dsdWYa+jhGGEkrm6e5HXkLQ=
> -SIZE (blaeu-1.1.6.tar.gz) = 21095
> +SHA256 (blaeu-1.1.7.tar.gz) = qm273DbblpCUOuO4RrD8smxs+pM1tPevBt6epjPPxiw=
> +SIZE (blaeu-1.1.7.tar.gz) = 21830
> 



Re: NEW: libudfread 1.1.2

2021-10-16 Thread Stuart Henderson
On 2021/10/11 15:52, Brad Smith wrote:
> On Mon, Oct 11, 2021 at 03:00:57AM -0400, Brad Smith wrote:
> > On Sat, Oct 02, 2021 at 09:48:15PM -0400, Brad Smith wrote:
> > > On Sat, Oct 02, 2021 at 09:38:40PM -0400, Brad Smith wrote:
> > > > Attached is a port of libudfread 1.1.2.
> > > > 
> > > > Comment:
> > > > library for reading UDF from raw devices and image files
> > > > 
> > > > Description:
> > > > This library allows reading UDF filesystems, like raw devices and image
> > > > files.
> > > 
> > > I forgot to add a HOMEPAGE and added the commit hash.
> > 
> > I moved libudfread to multimedia.
> 
> Updated after I was able to get upstream to roll a prop release tarball.

I don't have anything to test runtime with, but ok to import



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 13:59:29

Modified files:
audio/portaudio-svn: Makefile distinfo 
audio/portaudio-svn/patches: patch-Makefile_in 
 patch-configure_in 
 patch-include_portaudio_h 
 patch-portaudio-2_0_pc_in 
 patch-src_os_unix_pa_unix_hostapis_c 
 patch-src_os_unix_pa_unix_util_c 
audio/portaudio-svn/pkg: PLIST 

Log message:
update to portaudio-svn-1970, from brad



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stefan Hagen
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2021/10/16 13:22:26

Removed files:
archivers/fuse-zip/patches: 

patch-tests_whitebox_fuseInterfaceTest_cpp.orig 

Log message:
Remove accidently committed .orig file



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 13:20:55

Modified files:
x11/kde-applications/kdenlive: Makefile distinfo 
x11/kde-applications/kdenlive/pkg: PLIST 

Log message:
Update kdenlive to 21.08.1



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 12:09:05

Modified files:
multimedia : Makefile 

Log message:
+mlt7



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 12:08:17

Log message:
Import mlt7-7.0.1

Comment:
multimedia transformations framework

Description:
MLT is an open source multimedia framework, designed and developed
for television broadcasting. It provides a toolkit for broadcasters,
video editors, media players, transcoders, web streamers and many
more types of applications. The functionality of the system is
provided via an assortment of ready to use tools, XML authoring
components, and an extensible plug-in based API.

This package contains core functionality and LGPL licensed plugins.

Maintainer: The OpenBSD ports mailing-list 

WWW: https://www.mltframework.org/

"Go ahead" espie@

Status:

Vendor Tag: rsadowski
Release Tags:   rsadowski_20211016

N ports/multimedia/mlt7/Makefile
N ports/multimedia/mlt7/distinfo
N ports/multimedia/mlt7/patches/patch-src_framework_mlt_property_c
N ports/multimedia/mlt7/patches/patch-src_modules_plusgpl_CMakeLists_txt
N 
ports/multimedia/mlt7/patches/patch-src_tests_test_properties_test_properties_cpp
N ports/multimedia/mlt7/pkg/DESCR-gpl2
N ports/multimedia/mlt7/pkg/DESCR-main
N ports/multimedia/mlt7/pkg/PLIST-gpl2
N ports/multimedia/mlt7/pkg/PLIST-main

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 11:57:34

Modified files:
multimedia/libbluray/patches: patch-src_file_dl_posix_c 
devel/libdvdread/patches: patch-src_dvd_input_c 

Log message:
Update comments upstream commit git hashes

>From Brad



Re: NEW: devel/dub

2021-10-16 Thread Brian Callahan

Hi again ports --

On 10/13/2021 01:49 AM, Brian Callahan wrote:

Hi ports --

Attached is a new port, devel/dub. Dub is the package and build
management system for the D language.

---
pkg/DESCR:
Dub is the package and build manager for D applications and libraries.

There is a central package registry located at https://code.dlang.org
where packages can be installed and managed using dub.

The project's philosophy is to keep things as simple as possible. All
that is needed to make a project a dub package is to write a short
dub.json file and put the source code into a source subfolder. It can
then be registered on the public package registry to be made available
for everyone. Any dependencies specified in dub.json are automatically
downloaded and made available to the project during the build process.
---

Right now, dub is using dmd to build, so it is marked
ONLY_FOR_ARCH=amd64 to match dmd. I would eventually like to move to
gdmd (aka gdc) to build dub, since gdc supports more archs than dmd.
However, there is a runtime bug with dub+gdmd that prevents it from
being usable https://issues.dlang.org/show_bug.cgi?id=22381 and so I'm
choosing to build with dmd to not give false hope for the time being
(we also don't have a port of the gdmd wrapper yet... it's on the
way).

All tests pass on amd64, and I'm able to grab any and all packages I
want from the D Package repository.

OK?

~Brian


Attached is a new version of dub that uses GDC rather than DMD. All that 
needed to be done was to provide dub the correct name of the GDC binary 
(egdc) and it immediately starts doing the right thing. This is because 
dub will always prefer gdc over gdmd if it finds both.


I submitted a bug for the issue here: 
https://github.com/dlang/dub/issues/2183

But this won't affect use of dub on any platform.

All tests but 2 pass on amd64: The betterC test is an expected fail 
because gdc does not support the flags needed to enable DasBetterC. The 
second one I will work with upstream to fix, but is unlikely to affect 
regular usage of dub.


Note: If you are on amd64 and have both dmd and gdc installed, dub will 
prefer dmd. To override this, either set the DC environment variable or 
use the --compiler= flag in your dub invocations.


OK? Dub is the final piece of the D development suite.

~Brian


dub.tgz
Description: GNU Zip compressed data


Re: powerpc bulk build report

2021-10-16 Thread Edd Barrett
On Sat, Oct 16, 2021 at 10:16:48AM -0600, c...@openbsd.org wrote:
> http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log

> :1:9: error: macro name must be an identifier
> #define -faltivec 1

Can you try this?

Index: patches/patch-client_CMakeLists_txt
===
RCS file: /cvs/ports/games/odamex/patches/patch-client_CMakeLists_txt,v
retrieving revision 1.3
diff -u -p -r1.3 patch-client_CMakeLists_txt
--- patches/patch-client_CMakeLists_txt 29 Aug 2021 22:09:09 -  1.3
+++ patches/patch-client_CMakeLists_txt 16 Oct 2021 16:41:49 -
@@ -3,7 +3,7 @@ $OpenBSD: patch-client_CMakeLists_txt,v 
 Index: client/CMakeLists.txt
 --- client/CMakeLists.txt.orig
 +++ client/CMakeLists.txt
-@@ -163,7 +163,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
+@@ -163,13 +163,13 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
  elseif(ODAMEX_TARGET_ARCH STREQUAL "i386")
if(NOT MSVC)
  # Pentium M has SSE2.
@@ -12,6 +12,13 @@ Index: client/CMakeLists.txt
else()
  target_compile_definitions(odamex PRIVATE /arch:SSE2)
endif()
+   message(STATUS "Default SIMD flags set to SSE2")
+ elseif(ODAMEX_TARGET_ARCH MATCHES "ppc")
+-  target_compile_definitions(odamex PRIVATE -faltivec)
++  target_compile_options(odamex PRIVATE -faltivec)
+   message(STATUS "Default SIMD flags set to AltiVec")
+ endif()
+   else()
 @@ -220,7 +220,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
endif()
  
-- 
Best Regards
Edd Barrett

https://www.theunixzoo.co.uk



powerpc bulk build report

2021-10-16 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Sep 28 01:49:06 MDT 2021
Finished: Sat Oct 16 09:32:30 MDT 2021
Duration: 18 Days 7 hours 43 minutes

Built using OpenBSD 7.0 (GENERIC) #939: Mon Sep 27 18:51:05 MDT 2021

Built 9528 packages

Number of packages built each day:
Sep 28: 881
Sep 29: 414
Sep 30: 497
Oct 1: 5415
Oct 2: 348
Oct 3: 276
Oct 4: 380
Oct 5: 145
Oct 6: 193
Oct 7: 282
Oct 8: 233
Oct 9: 464
Oct 10: 525
Oct 11: 341
Oct 12: 445
Oct 13: 353
Oct 14: 412
Oct 15: 2014
Oct 16: 985


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-09-28/summary.log

Build failures: 7
http://build-failures.rhaalovely.net/powerpc/2021-09-28/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/x11/gnustep/gworkspace.log



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2021/10/16 09:49:23

Modified files:
sysutils/terragrunt: Makefile distinfo 

Log message:
Update to terragrunt-0.35.3.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2021/10/16 09:49:02

Modified files:
sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-1.0.9.



Re: [new port] games/wordsearch: classic word search game that you can play in your terminal

2021-10-16 Thread Pat Jensen

Tracey,

The diff looks good. Thanks for the help on man changes and commit.

Regards,

Pat

On 10/16/21 8:40 AM, Tracey Emery wrote:

On Sat, Oct 16, 2021 at 08:17:14AM -0700, Pat Jensen wrote:

All,

I'm submitting a revised tarball of a new port of my console word search
game for OpenBSD.

Please evaluate and comment on any necessary changes.

wordsearch is a classic word search game that you can play in your
terminal. It features curses full screen gameplay with an easy to
customize puzzle directory so you can share your creations with friends.
It has simple to pick up gameplay with word-based scoring so you can
play anytime.

Regards,

Pat

Greetings, Pat. At this point, it's better to send diffs instead of new
tarballs. Attached is a diff with the hardcoded LOCALBASE path removed.
If you are ok with this, I can commit it later today.

Thanks



--
Pat Jensen, CCIE #53452


--
Pat Jensen, CCIE #53452



Re: [new port] games/wordsearch: classic word search game that you can play in your terminal

2021-10-16 Thread Tracey Emery
On Sat, Oct 16, 2021 at 08:17:14AM -0700, Pat Jensen wrote:
> All,
> 
> I'm submitting a revised tarball of a new port of my console word search
> game for OpenBSD.
> 
> Please evaluate and comment on any necessary changes.
> 
> wordsearch is a classic word search game that you can play in your
> terminal. It features curses full screen gameplay with an easy to
> customize puzzle directory so you can share your creations with friends.
> It has simple to pick up gameplay with word-based scoring so you can
> play anytime.
> 
> Regards,
> 
> Pat

Greetings, Pat. At this point, it's better to send diffs instead of new
tarballs. Attached is a diff with the hardcoded LOCALBASE path removed.
If you are ok with this, I can commit it later today.

Thanks

> 
> 
> -- 
> Pat Jensen, CCIE #53452

-- 

Tracey Emery

Index: Makefile
===
RCS file: /cvs/ports/games/wordsearch/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -r1.1.1.1 Makefile
--- Makefile15 Oct 2021 14:12:09 -  1.1.1.1
+++ Makefile16 Oct 2021 15:37:53 -
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.1.1.1 2021/10/15 14:12:09 bcallah Exp $
+# $OpenBSD$
 
-V =2.0
+V =2.1
 COMMENT =  classic word search game that you can play in your terminal
 DISTNAME = wordsearch-${V}
 CATEGORIES =   games
@@ -20,6 +20,7 @@ NO_TEST = Yes
 PKG_ARCH = *
 
 do-install:
+   sed -i 's,/usr/games,${LOCALBASE}/bin,g' ${WRKSRC}/man/wordsearch.6
${INSTALL_SCRIPT} ${WRKSRC}/wordsearch ${PREFIX}/bin/wordsearch
${INSTALL_MAN} ${WRKSRC}/man/wordsearch.6 ${PREFIX}/man/man6
${INSTALL_DATA_DIR} ${PREFIX}/share/wordsearch
Index: distinfo
===
RCS file: /cvs/ports/games/wordsearch/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -r1.1.1.1 distinfo
--- distinfo15 Oct 2021 14:12:09 -  1.1.1.1
+++ distinfo16 Oct 2021 15:37:53 -
@@ -1,2 +1,2 @@
-SHA256 (wordsearch-2.0.tar.gz) = CpADRJuBQu3ng7ILyZeB/rtzRmeHgS3c9O2/IiP3W/M=
-SIZE (wordsearch-2.0.tar.gz) = 12109
+SHA256 (wordsearch-2.1.tar.gz) = SBo0Lz03rMv/CSAODQYNVhR+IQZIp3If58ZrBrGTEHc=
+SIZE (wordsearch-2.1.tar.gz) = 14175
Index: pkg/PLIST
===
RCS file: /cvs/ports/games/wordsearch/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -u -r1.1.1.1 PLIST
--- pkg/PLIST   15 Oct 2021 14:12:09 -  1.1.1.1
+++ pkg/PLIST   16 Oct 2021 15:37:53 -
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST,v 1.1.1.1 2021/10/15 14:12:09 bcallah Exp $
+@comment $OpenBSD: PLIST,v$
 bin/wordsearch
 @man man/man6/wordsearch.6
 share/doc/wordsearch/
@@ -10,6 +10,7 @@ share/wordsearch/animals.txt
 share/wordsearch/apocalypse.txt
 share/wordsearch/baseball.txt
 share/wordsearch/bbq.txt
+share/wordsearch/bread.txt
 share/wordsearch/camping.txt
 share/wordsearch/candy.txt
 share/wordsearch/cars.txt
@@ -27,7 +28,9 @@ share/wordsearch/dogs.txt
 share/wordsearch/edm.txt
 share/wordsearch/email.txt
 share/wordsearch/engines.txt
+share/wordsearch/fair.txt
 share/wordsearch/fall.txt
+share/wordsearch/farms.txt
 share/wordsearch/fish.txt
 share/wordsearch/fitness.txt
 share/wordsearch/football.txt
@@ -40,6 +43,9 @@ share/wordsearch/hockey.txt
 share/wordsearch/household.txt
 share/wordsearch/instruments.txt
 share/wordsearch/internet.txt
+share/wordsearch/magic.txt
+share/wordsearch/math.txt
+share/wordsearch/military.txt
 share/wordsearch/mobile.txt
 share/wordsearch/movies.txt
 share/wordsearch/nationalparks.txt
@@ -48,24 +54,35 @@ share/wordsearch/nuts.txt
 share/wordsearch/oldtimes.txt
 share/wordsearch/pasta.txt
 share/wordsearch/photography.txt
+share/wordsearch/pizza.txt
 share/wordsearch/places.txt
 share/wordsearch/planets.txt
+share/wordsearch/sanfrancisco.txt
+share/wordsearch/school.txt
 share/wordsearch/science.txt
 share/wordsearch/scifi.txt
+share/wordsearch/shapes.txt
+share/wordsearch/sleep.txt
+share/wordsearch/snacks.txt
 share/wordsearch/sodas.txt
 share/wordsearch/space.txt
 share/wordsearch/spices.txt
 share/wordsearch/spring.txt
 share/wordsearch/states.txt
+share/wordsearch/stpatricks.txt
 share/wordsearch/strings.txt
 share/wordsearch/summer.txt
 share/wordsearch/superpowers.txt
 share/wordsearch/technology.txt
 share/wordsearch/tennis.txt
+share/wordsearch/thanksgiving.txt
+share/wordsearch/themepark.txt
 share/wordsearch/trains.txt
 share/wordsearch/travel.txt
 share/wordsearch/trees.txt
 share/wordsearch/unix.txt
+share/wordsearch/vegas.txt
+share/wordsearch/weather.txt
 share/wordsearch/wine.txt
 share/wordsearch/winter.txt
 share/wordsearch/work.txt



Re: NEW: devel/arm-compute-library

2021-10-16 Thread Stuart Henderson
On 2021/10/16 20:33, Kevin Lo wrote:
> On Fri, Oct 15, 2021 at 11:35:33AM +0100, Stuart Henderson wrote:
> > 
> > On 2021/10/15 13:57, Kevin Lo wrote:
> > > Hi,
> > > 
> > > Attached is a port of arm-compute-library 21.08.
> > > 
> > > Comment:
> > > Arm compute library
> > > 
> > > Description:
> > > Arm Compute Library is a software library for computer vision and machine
> > > learning.  It is a collection of low-level functions optimized for Arm CPU
> > > and GPU architectures targeted at image processing, computer vision, and
> > > machine learning.
> > > 
> > > Tested on arm64(RockPro64).
> > > OK?
> > 
> > scons.port.mk should be passing in CC/CXX anyway so the patches to
> > default_c_compiler/default_cpp_compiler _ought_ not to be necessary
> > (and if they are, it's indicating that something isn't working
> > correctly with scons.port.mk)
> 
> Thanks for the comments.  I removed a patch about default_c_compiler /
> default_cpp_compiler, here's the revised tarball, thanks.

OK sthen@.

I do think MAKE_ENV should not be necessary, but I think there is
something wrong with scons.port.mk so I am ok with this as a workaround.

One thing I looked at when reviewing - often software uses "native
build" to mean "use CPU features detected from the build machine"
(-march=native compiler flag) so I wanted to check that it wasn't the
case here - aarch64 builds are done on eMAG boxes, cpu "Applied Micro
X-Gene r3p2" so I wanted to make sure it doesn't use some fancy
feature which isn't available on other machines. So it might be
worth a little comment e.g.

# "build=native" here just means "not cross-compiled"



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2021/10/16 09:39:11

Modified files:
sysutils/awscli: Makefile distinfo 
sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.20.63.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2021/10/16 09:38:54

Modified files:
net/py-boto3   : Makefile distinfo 

Log message:
Update to py3-boto3-1.18.63.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2021/10/16 09:38:44

Modified files:
net/py-botocore: Makefile distinfo 

Log message:
Update to py3-botocore-1.21.63.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Edd Barrett
CVSROOT:/cvs
Module name:ports
Changes by: e...@cvs.openbsd.org2021/10/16 09:38:13

Modified files:
multimedia/minidlna: Makefile 
Added files:
multimedia/minidlna/patches: patch-minidlna_c 
 patch-minidlna_conf_5 

Log message:
multimedia/minidlna: ensure kqueue monitoring can be disabled.

https://sourceforge.net/p/minidlna/bugs/337/

(Also fix a mandoc warning)

OK bket@, thanks.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2021/10/16 09:37:32

Modified files:
sysutils/govmomi: Makefile distinfo 

Log message:
Update to govc-0.27.0.



Re: CVS: cvs.openbsd.org: ports

2021-10-16 Thread Björn Ketelaars
On Wed 13/10/2021 02:49, Stefan Hagen wrote:
> CVSROOT:  /cvs
> Module name:  ports
> Changes by:   s...@cvs.openbsd.org2021/10/13 02:49:03
> 
> Modified files:
>   archivers/fuse-zip: Makefile distinfo 
>   archivers/fuse-zip/patches: patch-fuse-zip_1 
> Added files:
>   archivers/fuse-zip/patches: patch-lib_extraField_cpp 
>   patch-lib_fuse-zip_cpp 
>   patch-tests_whitebox_extraFieldTest_cpp 
>   patch-tests_whitebox_fuseInterfaceTest_cpp 
>   
> patch-tests_whitebox_fuseInterfaceTest_cpp.orig 

   

Looks like patch-tests_whitebox_fuseInterfaceTest_cpp.orig has been
added by mistake.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Bjorn Ketelaars
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2021/10/16 09:22:23

Modified files:
news/sabnzbd   : Makefile distinfo 

Log message:
Update to sabnzbd-3.4.2

Release notes: https://github.com/sabnzbd/sabnzbd/releases/tag/3.4.2



[new port] games/wordsearch: classic word search game that you can play in your terminal

2021-10-16 Thread Pat Jensen

All,

I'm submitting a revised tarball of a new port of my console word search 
game for OpenBSD.


Please evaluate and comment on any necessary changes.

wordsearch is a classic word search game that you can play in your
terminal. It features curses full screen gameplay with an easy to
customize puzzle directory so you can share your creations with friends.
It has simple to pick up gameplay with word-based scoring so you can
play anytime.

Regards,

Pat

On 10/15/21 5:58 AM, Brian Callahan wrote:

Hello Pat --

On 10/15/2021 12:19 AM, Pat Jensen wrote:

All,

I'm submitting a unified diff of a new port of my console word search
game for OpenBSD.

Please evaluate and comment on any necessary changes.



New ports are usually sent as tarballs. Attached is an improved 
version of your port.


Changes:
* Lowercase first letter of COMMENT as is style
* You use 2.0 in both DISTNAME and MASTER_SITES so 2.0 becomes its own 
variable, V.

* Tightened up whitespace
* Leaf ports are going to be python 3 by default no need to specify 
FLAVOR
* One of your do-install lines was over 80 characters. I was able to 
shorten it, but otherwise you'd have to split it over multiple lines

* You want ${INSTALL_DATA_DIR}, not mkdir -p, in your do-install routine
* PLIST changed when I ran `make update-plist`

Works for me on amd64.

~Brian


--
Pat Jensen, CCIE #53452


wordsearch.tgz
Description: GNU Zip compressed data


Re: NEW: multimedia/mlt7

2021-10-16 Thread Marc Espie
On Sat, Oct 16, 2021 at 09:32:23AM +0200, Rafael Sadowski wrote:
> On Thu Oct 14, 2021 at 10:40:03AM -0600, Tracey Emery wrote:
> > On Wed, Oct 13, 2021 at 09:14:34PM +0200, Rafael Sadowski wrote:
> > > On Mon Oct 04, 2021 at 06:12:41AM +0200, Rafael Sadowski wrote:
> > > > On Thu Sep 09, 2021 at 09:09:08PM +0200, Rafael Sadowski wrote:
> > > > > Please find attached multimedia/mlt7. "This is a major new version 
> > > > > that
> > > > > breaks API to add a major new feature to the framework: retiming."
> > > > > I need MLT 7 to update x11/kde-applications/kdenlive. I decided to 
> > > > > leave
> > > > > mlt6 as it is and create mlt7-7.0.1. Both ports can be installed side 
> > > > > by
> > > > > side.
> > > > > 
> > > > > More: https://www.mltframework.org/blog/v7.0.0_released/
> > > > > 
> > > > > $ pkg_info |rg mlt
> > > > > mlt-6.22.1p0multimedia transformations framework
> > > > > mlt-gpl2-6.22.1p0   GPLv2-licensed modules for mlt
> > > > > mlt7-7.0.1  multimedia transformations framework
> > > > > mlt7-gpl2-7.0.1 GPLv2-licensed modules for mlt
> > > > > 
> > > > > Feedback, OK?
> > > > 
> > > > Ping, I need this to update x11/kde-applications/kdenlive. Thanks!
> > > > 
> > > 
> > > Anyone?
> > 
> > Any shotcut issues with this?
> > 
> > -- 
> > 
> > Tracey Emery
> > 
> 
> Mlt 7 supports comes with shotcut 21.05.01, we are on 21.01.29.
> https://www.shotcut.org/blog/new-release-210501/

Go ahead and import it, I'll look at updating shortcut/patching later.



Update graphics/flameshot to v0.10.1

2021-10-16 Thread Denis Fondras
Changelog : https://github.com/flameshot-org/flameshot/releases/tag/v0.10.1

Index: Makefile
===
RCS file: /cvs/ports/graphics/flameshot/Makefile,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile
--- Makefile16 Jul 2021 16:47:38 -  1.5
+++ Makefile16 Oct 2021 15:04:13 -
@@ -5,7 +5,7 @@ CATEGORIES =graphics x11
 
 GH_ACCOUNT =   flameshot-org
 GH_PROJECT =   flameshot
-GH_TAGNAME =   v0.10.0
+GH_TAGNAME =   v0.10.1
 
 HOMEPAGE = https://flameshot.org/
 MAINTAINER =   Denis Fondras 
Index: distinfo
===
RCS file: /cvs/ports/graphics/flameshot/distinfo,v
retrieving revision 1.4
diff -u -p -r1.4 distinfo
--- distinfo16 Jul 2021 16:47:38 -  1.4
+++ distinfo16 Oct 2021 15:04:13 -
@@ -1,2 +1,2 @@
-SHA256 (flameshot-0.10.0.tar.gz) = ROU8Xc792wW9b6GvZn3yh/RLqhdGRov6tfdjGMC7P4M=
-SIZE (flameshot-0.10.0.tar.gz) = 7726638
+SHA256 (flameshot-0.10.1.tar.gz) = wtdgNF143V0kiMa+pUyxCHCwl3IXnzNZSjPI9izN7rk=
+SIZE (flameshot-0.10.1.tar.gz) = 7726725
Index: pkg/PLIST
===
RCS file: /cvs/ports/graphics/flameshot/pkg/PLIST,v
retrieving revision 1.4
diff -u -p -r1.4 PLIST
--- pkg/PLIST   16 Jul 2021 16:47:39 -  1.4
+++ pkg/PLIST   16 Oct 2021 15:04:13 -
@@ -3,6 +3,7 @@
 @man man/man1/flameshot.1
 share/applications/org.flameshot.Flameshot.desktop
 share/bash-completion/completions/flameshot
+share/dbus-1/interfaces/
 share/dbus-1/interfaces/org.flameshot.Flameshot.xml
 share/dbus-1/services/org.flameshot.Flameshot.service
 share/flameshot/



Update databases/timescaledb to v2.4.2

2021-10-16 Thread Denis Fondras
Changelog : https://github.com/timescale/timescaledb/releases/tag/2.4.2

Index: Makefile
===
RCS file: /cvs/ports/databases/timescaledb/Makefile,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile
--- Makefile5 Sep 2021 10:30:12 -   1.8
+++ Makefile16 Oct 2021 14:59:23 -
@@ -4,7 +4,7 @@ COMMENT =   database designed to make SQL 
 
 GH_ACCOUNT =   timescale
 GH_PROJECT =   timescaledb
-GH_TAGNAME =   2.4.1
+GH_TAGNAME =   2.4.2
 
 CATEGORIES =   databases
 HOMEPAGE = https://www.timescale.com/
Index: distinfo
===
RCS file: /cvs/ports/databases/timescaledb/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo5 Sep 2021 10:30:12 -   1.7
+++ distinfo16 Oct 2021 14:59:23 -
@@ -1,2 +1,2 @@
-SHA256 (timescaledb-2.4.1.tar.gz) = 
wPEDeNyqwrwvOW/P05YkAcsPQORwezymtJbMTDiKtIs=
-SIZE (timescaledb-2.4.1.tar.gz) = 2401410
+SHA256 (timescaledb-2.4.2.tar.gz) = 
sgajdiUSWet0Xu6BnnqFOz+6udyEQzA3FEhKD++JoqQ=
+SIZE (timescaledb-2.4.2.tar.gz) = 2409324
Index: pkg/PLIST
===
RCS file: /cvs/ports/databases/timescaledb/pkg/PLIST,v
retrieving revision 1.7
diff -u -p -r1.7 PLIST
--- pkg/PLIST   5 Sep 2021 10:30:12 -   1.7
+++ pkg/PLIST   16 Oct 2021 14:59:23 -
@@ -22,5 +22,6 @@ share/postgresql/extension/timescaledb--
 share/postgresql/extension/timescaledb--2.3.0--${GH_TAGNAME}.sql
 share/postgresql/extension/timescaledb--2.3.1--${GH_TAGNAME}.sql
 share/postgresql/extension/timescaledb--2.4.0--${GH_TAGNAME}.sql
+share/postgresql/extension/timescaledb--2.4.1--${GH_TAGNAME}.sql
 share/postgresql/extension/timescaledb--${GH_TAGNAME}.sql
 share/postgresql/extension/timescaledb.control



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2021/10/16 08:50:41

Modified files:
graphics/glslang: Makefile distinfo 
graphics/spirv-headers: Makefile distinfo 
graphics/spirv-headers/pkg: PLIST 
graphics/spirv-tools: Makefile distinfo 
graphics/spirv-tools/patches: patch-CMakeLists_txt 
  patch-source_print_cpp 
graphics/spirv-tools/pkg: PLIST 
graphics/vulkan-headers: Makefile distinfo 
graphics/vulkan-headers/pkg: PLIST 
graphics/vulkan-loader: Makefile distinfo 
graphics/vulkan-loader/patches: patch-CMakeLists_txt 
patch-loader_CMakeLists_txt 
patch-loader_loader_c 
patch-loader_trampoline_c 
graphics/vulkan-tools: Makefile distinfo 
graphics/vulkan-tools/patches: patch-cube_cube_cpp 
   patch-vulkaninfo_vulkaninfo_h 
graphics/vulkan-validation-layers: Makefile distinfo 
graphics/vulkan-validation-layers/patches: patch-CMakeLists_txt 
   patch-layers_CMakeLists_txt 
Removed files:
graphics/vulkan-headers/patches: patch-include_vulkan_vulkan_hpp 

Log message:
update vulkan ports to sdk-1.2.189.1, including:
- glslang to 11.6.0
- spirv-tools to 2021.3

ok rsadowski@
build and runtime tests by Omar Polo, too - thanks!



Update net/blaeu to v1.1.7

2021-10-16 Thread Denis Fondras
Simple update.

Index: Makefile
===
RCS file: /cvs/ports/net/blaeu/Makefile,v
retrieving revision 1.9
diff -u -p -r1.9 Makefile
--- Makefile23 Feb 2021 19:39:31 -  1.9
+++ Makefile16 Oct 2021 14:46:12 -
@@ -2,10 +2,9 @@
 
 COMMENT =  create measurements on RIPE Atlas probes.
 
-MODPY_EGG_VERSION = 1.1.6
+MODPY_EGG_VERSION = 1.1.7
 DISTNAME = blaeu-${MODPY_EGG_VERSION}
 CATEGORIES =   net
-REVISION = 0
 
 MAINTAINER =   Denis Fondras 
 
Index: distinfo
===
RCS file: /cvs/ports/net/blaeu/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo6 Jun 2020 20:14:00 -   1.3
+++ distinfo16 Oct 2021 14:46:12 -
@@ -1,2 +1,2 @@
-SHA256 (blaeu-1.1.6.tar.gz) = FBJ4rsr/2UjBFRFtwxX4dsdWYa+jhGGEkrm6e5HXkLQ=
-SIZE (blaeu-1.1.6.tar.gz) = 21095
+SHA256 (blaeu-1.1.7.tar.gz) = qm273DbblpCUOuO4RrD8smxs+pM1tPevBt6epjPPxiw=
+SIZE (blaeu-1.1.7.tar.gz) = 21830



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2021/10/16 08:43:12

Modified files:
games/mvdsv: Makefile distinfo 
Added files:
games/mvdsv/patches: patch-src_server_h patch-src_sv_ccmds_c 

Log message:
update to 0.34; also disable dangerous 'localcommand' functionality (see 
discussion in GitHub PR #69); from maintainer Tom Murphy - thanks!



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2021/10/16 08:38:45

Modified files:
mail/mutt-wizard: Makefile distinfo 
mail/mutt-wizard/pkg: PLIST 

Log message:
update to recent checkout, from maintainer Aisha Tammy - thanks!



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2021/10/16 08:36:27

Modified files:
benchmarks : Makefile 

Log message:
+glmark2



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2021/10/16 08:34:46

Log message:
import benchmarks/glmark2
ok rsadowski@

DESCR:
glmark2 is an OpenGL 2.0 and ES 2.0 benchmark.

glmark2 is developed by Alexandros Frantzis and Jesse Barker based on the
original glmark benchmark by Ben Smith.

Status:

Vendor Tag: thfr
Release Tags:   thfr_20211016

N ports/benchmarks/glmark2/Makefile
N ports/benchmarks/glmark2/distinfo
N ports/benchmarks/glmark2/patches/patch-meson_build
N ports/benchmarks/glmark2/patches/patch-src_meson_build
N ports/benchmarks/glmark2/pkg/DESCR
N ports/benchmarks/glmark2/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stefan Hagen
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2021/10/16 07:45:46

Modified files:
editors: Makefile 

Log message:
Add subdir apostrophe to makefile



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stefan Hagen
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2021/10/16 07:43:19

Log message:
Import editors/apostrophe v2.5

Apostrophe is a GTK+ based distraction free Markdown editor. It
uses pandoc as back-end for parsing Markdown and exporting to
multiples format and offers a very clean and sleek user interface.

from solene@ and tested by Omar Polo and myself

Status:

Vendor Tag: sdk
Release Tags:   sdk_20211016

N ports/editors/apostrophe/Makefile
N ports/editors/apostrophe/distinfo
N ports/editors/apostrophe/pkg/DESCR
N ports/editors/apostrophe/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2021/10/16 07:22:30

Modified files:
devel/p5-local-lib: Makefile distinfo 

Log message:
Update to p5-local-lib-2.27 from wen heping.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Martin Reindl
CVSROOT:/cvs
Module name:ports
Changes by: mar...@cvs.openbsd.org  2021/10/16 07:20:24

Modified files:
math/py-cftime : Makefile distinfo 
math/py-cftime/pkg: PLIST 

Log message:
Update py-cftime to 1.5.1.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stefan Hagen
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2021/10/16 06:47:12

Modified files:
textproc   : Makefile 

Log message:
add py-pypandoc subdirectory to makefile



devel/p5-DateTime-TimeZone: Update to 2.50

2021-10-16 Thread wen heping
Hi,

   Here is a simple patch to update devel/p5-DateTime-TimeZone
to 2.50. It build well and pass all tests on amd64-current system.

   Upstream only update the timezone database. So I did not test
others ports depend on it.


Regards,
wenIndex: Makefile
===
RCS file: /cvs/ports/devel/p5-DateTime-TimeZone/Makefile,v
retrieving revision 1.23
diff -u -p -r1.23 Makefile
--- Makefile4 Jan 2021 00:07:19 -   1.23
+++ Makefile16 Oct 2021 08:30:43 -
@@ -4,7 +4,7 @@ COMMENT =   DateTime submodule for TZ
 
 MODULES =  cpan
 PKG_ARCH = *
-DISTNAME = DateTime-TimeZone-2.46
+DISTNAME = DateTime-TimeZone-2.50
 CATEGORIES =   devel
 
 MAINTAINER =   Andrew Hewus Fresh 
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-DateTime-TimeZone/distinfo,v
retrieving revision 1.15
diff -u -p -r1.15 distinfo
--- distinfo4 Jan 2021 00:07:19 -   1.15
+++ distinfo16 Oct 2021 08:30:43 -
@@ -1,2 +1,2 @@
-SHA256 (DateTime-TimeZone-2.46.tar.gz) = 
9MGeCX4X8YTeTqHHWNQhhLoDrJ3eks8uVhCMFHFXo7M=
-SIZE (DateTime-TimeZone-2.46.tar.gz) = 995245
+SHA256 (DateTime-TimeZone-2.50.tar.gz) = 
VbYIh+XZfiyJjhFx6nGt6XKhkKMgrbbBjUs4by+XZhM=
+SIZE (DateTime-TimeZone-2.50.tar.gz) = 996568
Index: pkg/PLIST
===
RCS file: /cvs/ports/devel/p5-DateTime-TimeZone/pkg/PLIST,v
retrieving revision 1.10
diff -u -p -r1.10 PLIST
--- pkg/PLIST   4 Jan 2021 00:07:19 -   1.10
+++ pkg/PLIST   16 Oct 2021 08:30:43 -
@@ -4,7 +4,6 @@ ${P5SITE}/DateTime/TimeZone/
 ${P5SITE}/DateTime/TimeZone.pm
 ${P5SITE}/DateTime/TimeZone/Africa/
 ${P5SITE}/DateTime/TimeZone/Africa/Abidjan.pm
-${P5SITE}/DateTime/TimeZone/Africa/Accra.pm
 ${P5SITE}/DateTime/TimeZone/Africa/Algiers.pm
 ${P5SITE}/DateTime/TimeZone/Africa/Bissau.pm
 ${P5SITE}/DateTime/TimeZone/Africa/Cairo.pm
@@ -41,13 +40,11 @@ ${P5SITE}/DateTime/TimeZone/America/Arge
 ${P5SITE}/DateTime/TimeZone/America/Argentina/Tucuman.pm
 ${P5SITE}/DateTime/TimeZone/America/Argentina/Ushuaia.pm
 ${P5SITE}/DateTime/TimeZone/America/Asuncion.pm
-${P5SITE}/DateTime/TimeZone/America/Atikokan.pm
 ${P5SITE}/DateTime/TimeZone/America/Bahia.pm
 ${P5SITE}/DateTime/TimeZone/America/Bahia_Banderas.pm
 ${P5SITE}/DateTime/TimeZone/America/Barbados.pm
 ${P5SITE}/DateTime/TimeZone/America/Belem.pm
 ${P5SITE}/DateTime/TimeZone/America/Belize.pm
-${P5SITE}/DateTime/TimeZone/America/Blanc_Sablon.pm
 ${P5SITE}/DateTime/TimeZone/America/Boa_Vista.pm
 ${P5SITE}/DateTime/TimeZone/America/Bogota.pm
 ${P5SITE}/DateTime/TimeZone/America/Boise.pm
@@ -59,9 +56,7 @@ ${P5SITE}/DateTime/TimeZone/America/Caye
 ${P5SITE}/DateTime/TimeZone/America/Chicago.pm
 ${P5SITE}/DateTime/TimeZone/America/Chihuahua.pm
 ${P5SITE}/DateTime/TimeZone/America/Costa_Rica.pm
-${P5SITE}/DateTime/TimeZone/America/Creston.pm
 ${P5SITE}/DateTime/TimeZone/America/Cuiaba.pm
-${P5SITE}/DateTime/TimeZone/America/Curacao.pm
 ${P5SITE}/DateTime/TimeZone/America/Danmarkshavn.pm
 ${P5SITE}/DateTime/TimeZone/America/Dawson.pm
 ${P5SITE}/DateTime/TimeZone/America/Dawson_Creek.pm
@@ -114,7 +109,6 @@ ${P5SITE}/DateTime/TimeZone/America/Miqu
 ${P5SITE}/DateTime/TimeZone/America/Moncton.pm
 ${P5SITE}/DateTime/TimeZone/America/Monterrey.pm
 ${P5SITE}/DateTime/TimeZone/America/Montevideo.pm
-${P5SITE}/DateTime/TimeZone/America/Nassau.pm
 ${P5SITE}/DateTime/TimeZone/America/New_York.pm
 ${P5SITE}/DateTime/TimeZone/America/Nipigon.pm
 ${P5SITE}/DateTime/TimeZone/America/Nome.pm
@@ -130,7 +124,6 @@ ${P5SITE}/DateTime/TimeZone/America/Pang
 ${P5SITE}/DateTime/TimeZone/America/Paramaribo.pm
 ${P5SITE}/DateTime/TimeZone/America/Phoenix.pm
 ${P5SITE}/DateTime/TimeZone/America/Port_au_Prince.pm
-${P5SITE}/DateTime/TimeZone/America/Port_of_Spain.pm
 ${P5SITE}/DateTime/TimeZone/America/Porto_Velho.pm
 ${P5SITE}/DateTime/TimeZone/America/Puerto_Rico.pm
 ${P5SITE}/DateTime/TimeZone/America/Punta_Arenas.pm
@@ -161,12 +154,10 @@ ${P5SITE}/DateTime/TimeZone/America/Yell
 ${P5SITE}/DateTime/TimeZone/Antarctica/
 ${P5SITE}/DateTime/TimeZone/Antarctica/Casey.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Davis.pm
-${P5SITE}/DateTime/TimeZone/Antarctica/DumontDUrville.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Macquarie.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Mawson.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Palmer.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Rothera.pm
-${P5SITE}/DateTime/TimeZone/Antarctica/Syowa.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Troll.pm
 ${P5SITE}/DateTime/TimeZone/Antarctica/Vostok.pm
 ${P5SITE}/DateTime/TimeZone/Asia/
@@ -357,7 +348,6 @@ ${P5SITE}/DateTime/TimeZone/Pacific/Chat
 ${P5SITE}/DateTime/TimeZone/Pacific/Chuuk.pm
 ${P5SITE}/DateTime/TimeZone/Pacific/Easter.pm
 ${P5SITE}/DateTime/TimeZone/Pacific/Efate.pm
-${P5SITE}/DateTime/TimeZone/Pacific/Enderbury.pm
 ${P5SITE}/DateTime/TimeZone/Pacific/Fakaofo.pm
 

devel/p5-local-lib: Update to 2.000027

2021-10-16 Thread wen heping
Hi, ports@:


Here is a patch for devel/p5-local-lib to update to 2.27.
It build well and pass all tests on amd64-7.0 system.

One port depends on it, devel/catalyst, build well with this patch
and has no tests.

Comments ?

wenIndex: Makefile
===
RCS file: /cvs/ports/devel/p5-local-lib/Makefile,v
retrieving revision 1.4
diff -u -p -r1.4 Makefile
--- Makefile8 Jul 2020 22:57:41 -   1.4
+++ Makefile16 Oct 2021 08:56:48 -
@@ -2,8 +2,7 @@
 
 COMMENT =  create and use a local lib/ for perl modules with PERL5LIB
 
-DISTNAME = local-lib-2.24
-REVISION = 1
+DISTNAME = local-lib-2.27
 
 CATEGORIES =   devel
 
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-local-lib/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo14 Jan 2019 21:25:44 -  1.1.1.1
+++ distinfo16 Oct 2021 08:56:48 -
@@ -1,2 +1,2 @@
-SHA256 (local-lib-2.24.tar.gz) = 
LpuRe9SKBhXkJjOyoydJTgRhDY9xB2W5ST0wbOrZigU=
-SIZE (local-lib-2.24.tar.gz) = 62941
+SHA256 (local-lib-2.27.tar.gz) = 
37tXrDnZr82qJsPiD9/Ym8yfIOtiIWCUTjjWH7P8ALE=
+SIZE (local-lib-2.27.tar.gz) = 63653


Re: NEW: devel/arm-compute-library

2021-10-16 Thread Kevin Lo
On Fri, Oct 15, 2021 at 11:35:33AM +0100, Stuart Henderson wrote:
> 
> On 2021/10/15 13:57, Kevin Lo wrote:
> > Hi,
> > 
> > Attached is a port of arm-compute-library 21.08.
> > 
> > Comment:
> > Arm compute library
> > 
> > Description:
> > Arm Compute Library is a software library for computer vision and machine
> > learning.  It is a collection of low-level functions optimized for Arm CPU
> > and GPU architectures targeted at image processing, computer vision, and
> > machine learning.
> > 
> > Tested on arm64(RockPro64).
> > OK?
> 
> scons.port.mk should be passing in CC/CXX anyway so the patches to
> default_c_compiler/default_cpp_compiler _ought_ not to be necessary
> (and if they are, it's indicating that something isn't working
> correctly with scons.port.mk)

Thanks for the comments.  I removed a patch about default_c_compiler /
default_cpp_compiler, here's the revised tarball, thanks.


arm-compute-library.tgz
Description: application/tar-gz


CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stefan Hagen
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2021/10/16 06:01:46

Log message:
Import editors/py-pypandoc v1.6.4

Pypandoc provides a thin wrapper for pandoc, a
universal document converter.

from solene@ (MAINTAINER) with help from Omar Polo, sthen@ and myself

Status:

Vendor Tag: sdk
Release Tags:   sdk_20211016

N ports/textproc/py-pypandoc/Makefile
N ports/textproc/py-pypandoc/distinfo
N ports/textproc/py-pypandoc/pkg/DESCR
N ports/textproc/py-pypandoc/pkg/PLIST
N ports/textproc/py-pypandoc/patches/patch-tests_py

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Brian Callahan
CVSROOT:/cvs
Module name:ports
Changes by: bcal...@cvs.openbsd.org 2021/10/16 05:36:04

Modified files:
games/wordsearch: Makefile 
Added files:
games/wordsearch/patches: patch-wordsearch 

Log message:
Fix spurious startup issue found by sthen@
Tweak from ian@, ok sthen@



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Brian Callahan
CVSROOT:/cvs
Module name:ports
Changes by: bcal...@cvs.openbsd.org 2021/10/16 05:34:41

ports/games/wordsearch/patches

Update of /cvs/ports/games/wordsearch/patches
In directory cvs.openbsd.org:/tmp/cvs-serv54913/patches

Log Message:
Directory /cvs/ports/games/wordsearch/patches added to the repository



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 04:57:40

Modified files:
telephony/asterisk-openbsd-moh: Makefile 

Log message:
adjust for telephony/asterisk reorganisation



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 04:57:12

Modified files:
telephony/asterisk-g729: Makefile 

Log message:
adjust for telephony/asterisk reorganisation



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 04:56:50

Removed files:
telephony/asterisk: distinfo 

Log message:
Reorganise the Asterisk port for split versions. Currently only using 18
but a number of previously deprecated modules will be removed, see
https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Deprecations
This change should essentially be a noop at this point.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 04:55:40

Modified files:
telephony/asterisk: Makefile 
Removed files:
telephony/asterisk/files: cdr.conf.sample extensions.ael.sample 
  extensions.conf.sample 
  logger.conf.sample modules.conf.sample 
  musiconhold.conf.sample 
  sip.conf.sample voicemail.conf.sample 
telephony/asterisk/patches: patch-Makefile 
patch-apps_app_voicemail_c 
patch-apps_app_voicemail_exports_in 
patch-autoconf_ast_check_raii_m4 
patch-build_tools_cflags_xml 

patch-configs_samples_ast_debug_tools_conf_sample 
patch-configs_samples_asterisk_conf_sample 
patch-configs_samples_res_odbc_conf_sample 
patch-configs_samples_sip_conf_sample 
patch-configure_ac 
patch-contrib_scripts_ast_coredumper 
patch-contrib_scripts_safe_asterisk 
patch-main_audiohook_c 
patch-main_dns_core_c 
patch-main_iostream_c 
patch-main_utils_c 
patch-res_res_calendar_caldav_c 
patch-res_res_calendar_icalendar_c 
patch-res_res_http_media_cache_c 
patch-res_res_odbc_c 
patch-res_res_pjsip_history_c 
patch-res_res_pjsip_location_c 
patch-res_res_pjsip_pjsip_options_c 
patch-res_res_pjsip_pubsub_c 
patch-res_res_pjsip_registrar_c 
patch-res_res_rtp_asterisk_c 
patch-sounds_sounds_xml 
patch-third-party_apply_patches 
patch-third-party_pjproject_Makefile 

patch-third-party_pjproject_source_pjlib_build_Makefile 

patch-third-party_pjproject_source_pjlib_src_pj_ssl_sock_ossl_c 

patch-third-party_pjproject_source_pjmedia_src_pjmedia_sdp_c 
telephony/asterisk/pkg: DESCR-calendar DESCR-http_post 
DESCR-kqueue DESCR-ldap DESCR-lua 
DESCR-main DESCR-odbc DESCR-pgsql 
DESCR-snmp DESCR-speex DESCR-tds 
DESCR-vm_imap DESCR-vm_odbc 
PLIST-calendar PLIST-http_post 
PLIST-kqueue PLIST-ldap PLIST-lua 
PLIST-main PLIST-odbc PLIST-pgsql 
PLIST-snmp PLIST-speex PLIST-tds 
PLIST-vm_imap PLIST-vm_odbc README-main 
asterisk.rc 

Log message:
Reorganise the Asterisk port for split versions. Currently only using 18
but a number of previously deprecated modules will be removed, see
https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Deprecations
This change should essentially be a noop at this point.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 04:55:00

Log message:
Reorganise the Asterisk port for split versions. Currently only using 18
but a number of previously deprecated modules will be removed, see
https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Deprecations
This change should essentially be a noop at this point.

Status:

Vendor Tag: sthen
Release Tags:   sthen_20211016

N ports/telephony/asterisk/Makefile.inc
N ports/telephony/asterisk/18/Makefile
N ports/telephony/asterisk/18/distinfo
N ports/telephony/asterisk/18/files/cdr.conf.sample
N ports/telephony/asterisk/18/files/extensions.ael.sample
N ports/telephony/asterisk/18/files/extensions.conf.sample
N ports/telephony/asterisk/18/files/logger.conf.sample
N ports/telephony/asterisk/18/files/modules.conf.sample
N ports/telephony/asterisk/18/files/musiconhold.conf.sample
N ports/telephony/asterisk/18/files/sip.conf.sample
N ports/telephony/asterisk/18/files/voicemail.conf.sample
N ports/telephony/asterisk/18/patches/patch-Makefile
N ports/telephony/asterisk/18/patches/patch-apps_app_voicemail_c
N ports/telephony/asterisk/18/patches/patch-apps_app_voicemail_exports_in
N ports/telephony/asterisk/18/patches/patch-autoconf_ast_check_raii_m4
N ports/telephony/asterisk/18/patches/patch-build_tools_cflags_xml
N 
ports/telephony/asterisk/18/patches/patch-configs_samples_ast_debug_tools_conf_sample
N 
ports/telephony/asterisk/18/patches/patch-configs_samples_asterisk_conf_sample
N 
ports/telephony/asterisk/18/patches/patch-configs_samples_res_odbc_conf_sample
N ports/telephony/asterisk/18/patches/patch-configs_samples_sip_conf_sample
N ports/telephony/asterisk/18/patches/patch-configure_ac
N ports/telephony/asterisk/18/patches/patch-contrib_scripts_ast_coredumper
N ports/telephony/asterisk/18/patches/patch-contrib_scripts_safe_asterisk
N ports/telephony/asterisk/18/patches/patch-main_audiohook_c
N ports/telephony/asterisk/18/patches/patch-main_dns_core_c
N ports/telephony/asterisk/18/patches/patch-main_iostream_c
N ports/telephony/asterisk/18/patches/patch-main_utils_c
N ports/telephony/asterisk/18/patches/patch-res_res_calendar_caldav_c
N ports/telephony/asterisk/18/patches/patch-res_res_calendar_icalendar_c
N ports/telephony/asterisk/18/patches/patch-res_res_http_media_cache_c
N ports/telephony/asterisk/18/patches/patch-res_res_odbc_c
N ports/telephony/asterisk/18/patches/patch-res_res_pjsip_history_c
N ports/telephony/asterisk/18/patches/patch-res_res_pjsip_location_c
N ports/telephony/asterisk/18/patches/patch-res_res_pjsip_pjsip_options_c
N ports/telephony/asterisk/18/patches/patch-res_res_pjsip_pubsub_c
N ports/telephony/asterisk/18/patches/patch-res_res_pjsip_registrar_c
N ports/telephony/asterisk/18/patches/patch-res_res_rtp_asterisk_c
N ports/telephony/asterisk/18/patches/patch-sounds_sounds_xml
N ports/telephony/asterisk/18/patches/patch-third-party_apply_patches
N ports/telephony/asterisk/18/patches/patch-third-party_pjproject_Makefile
N 
ports/telephony/asterisk/18/patches/patch-third-party_pjproject_source_pjlib_build_Makefile
N 
ports/telephony/asterisk/18/patches/patch-third-party_pjproject_source_pjlib_src_pj_ssl_sock_ossl_c
N 
ports/telephony/asterisk/18/patches/patch-third-party_pjproject_source_pjmedia_src_pjmedia_sdp_c
N ports/telephony/asterisk/18/pkg/DESCR-calendar
N ports/telephony/asterisk/18/pkg/DESCR-http_post
N ports/telephony/asterisk/18/pkg/DESCR-kqueue
N ports/telephony/asterisk/18/pkg/DESCR-ldap
N ports/telephony/asterisk/18/pkg/DESCR-lua
N ports/telephony/asterisk/18/pkg/DESCR-main
N ports/telephony/asterisk/18/pkg/DESCR-odbc
N ports/telephony/asterisk/18/pkg/DESCR-pgsql
N ports/telephony/asterisk/18/pkg/DESCR-snmp
N ports/telephony/asterisk/18/pkg/DESCR-speex
N ports/telephony/asterisk/18/pkg/DESCR-tds
N ports/telephony/asterisk/18/pkg/DESCR-vm_imap
N ports/telephony/asterisk/18/pkg/DESCR-vm_odbc
N ports/telephony/asterisk/18/pkg/PLIST-calendar
N ports/telephony/asterisk/18/pkg/PLIST-http_post
N ports/telephony/asterisk/18/pkg/PLIST-kqueue
N ports/telephony/asterisk/18/pkg/PLIST-ldap
N ports/telephony/asterisk/18/pkg/PLIST-lua
N ports/telephony/asterisk/18/pkg/PLIST-main
N ports/telephony/asterisk/18/pkg/PLIST-odbc
N ports/telephony/asterisk/18/pkg/PLIST-pgsql
N ports/telephony/asterisk/18/pkg/PLIST-snmp
N ports/telephony/asterisk/18/pkg/PLIST-speex
N ports/telephony/asterisk/18/pkg/PLIST-tds
N ports/telephony/asterisk/18/pkg/PLIST-vm_imap
N ports/telephony/asterisk/18/pkg/PLIST-vm_odbc
N ports/telephony/asterisk/18/pkg/README-main
N ports/telephony/asterisk/18/pkg/asterisk.rc

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stefan Sperling
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2021/10/16 04:41:14

Modified files:
devel/got  : Makefile distinfo 

Log message:
update to got 0.62

- man pages: document command aliases in tmux(1) style, add tags (kn)
- ignore unversioned files while aborting rebase, histedit, merge or operations
- let 'got fetch' send all references to the server to avoid redundant downloads
- plug memory leaks in got-fetch-pack and got-send-pack
- provide lib/Makefile to enable tags file generation (kn)
- add support for multiple path arguments to 'got diff'
- fix merging of lines inserted at the top of a file (reported by Omar Polo)
- display the requested object type in "object not found" error messages
- implement 'got diff -c' for diffing commits with optional filtering by path
- speed up 'got histedit -l' and 'got rebase -l'
- fix merging of files which contain a dot on a line by itself
- sort and de-duplicate work tree path command line arguments (suggested by kn)
- fix pack index cache element rotation; keep often used entries near the front
- use a bloom filter to avoid pointless pack index searches
- do not skip ignored directories in 'got status' if they contain tracked files
- FreeBSD's ed(1) does not accept "0i"; use the equivalent "1i" instead (naddy)
- speed up pack file creation a little by caching raw objects
- limit delta chain length in newly created pack files to 32 deltas
- while packing, store encoded deltas in temporary files instead of in memory
- sync with OpenBSD parse.y (naddy)
- make 'gotadmin indexpack' unveil the repository read/write, not read-only
- plug memory leak in an error path of read_packed_object()



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 03:59:42

Modified files:
graphics/py-Pillow: Makefile distinfo 

Log message:
update to py-Pillow-8.4.0



Re: [update] samba-4.15.0

2021-10-16 Thread Bjorn Ketelaars
On Mon 11/10/2021 00:33, Jeremie Courreges-Anglas wrote:
> 
> Hi,
> 
> Here's a rather straightforward update, introducing bison as a new
> non-optional build dependency.  As usual, test reports and input
> welcome.

Building failed for me (did not use a chroot) because of version
requirements for databases/tdb and devel/libtalloc. Diff below fixes
this for me.

I have been running with samba-4.15.0 @home for the last couple of days
without any issues.


--- Makefile.orig   Sat Oct 16 08:47:45 2021
+++ MakefileSat Oct 16 08:47:31 2021
@@ -118,10 +118,10 @@ LIB_DEPENDS-main =${BUILD_PKGPATH},-ldb>=${LDB_V} 
\
${BUILD_PKGPATH},-util>=${VERSION} \
converters/libiconv \
databases/openldap \
-   databases/tdb>=1.4.3 \
+   databases/tdb>=1.4.4 \
devel/gettext,-runtime \
devel/jansson \
-   devel/libtalloc>=2.1.16 \
+   devel/libtalloc>=2.3.3 \
devel/libtalloc,-python \
devel/popt \
net/avahi,-libs \
@@ -134,11 +134,11 @@ LIB_DEPENDS-ldb = ${BUILD_PKGPATH},-tevent>=${TEVENT_V
${BUILD_PKGPATH},-util>=${VERSION} \
devel/popt \
databases/openldap \
-   databases/tdb>=1.4.3 \
-   devel/libtalloc>=2.3.2
+   databases/tdb>=1.4.4 \
+   devel/libtalloc>=2.3.3
 
 LIB_DEPENDS-tevent =   ${BUILD_PKGPATH},-util>=${VERSION} \
-   devel/libtalloc>=2.3.2
+   devel/libtalloc>=2.3.3
 
 LIB_DEPENDS-docs =
 



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 03:44:57

Modified files:
security/knockpy: Makefile distinfo 
security/knockpy/pkg: PLIST 

Log message:
Update knockpy to 5.2.0



Re: [UPDATE] deluge - python 3.8 compatibility

2021-10-16 Thread Rafael Sadowski
On Mon Oct 11, 2021 at 01:57:27PM +0200, Rob Schmersel wrote:
> Hi,
> 
> My first attempt to update a port (thanks @sthen for the guidance).
> Updated deluge to include the following fixes to get it starting up without 
> errors in python >= 3.8
> 
> [Logging] Fix Python 3.8 compatibility: 
> https://git.deluge-torrent.org/deluge/commit/?h=develop=351664ec071daa04161577c6a1c949ed0f2c3206
> 
> [Logging] Fix findCaller with unknown source: 
> https://git.deluge-torrent.org/deluge/commit/?h=develop=5e06aee5c8846f94bd5fcc209132dacf06de781f
> 
> Fix warning related to gettext: 
> https://git.deluge-torrent.org/deluge/commit/?h=develop=d6c96d629183e8bab2167ef56457f994017e7c85
> 
> 
> BR/Rob

This fix my issue, thanks

$ deluge
Unable to initialize gettext/locale!
'ngettext'
Traceback (most recent call last):
  File "/usr/local/lib/python3.8/site-packages/deluge/i18n/util.py",
  line 11
  builtins.__dict__['_n'] = builtins.__dict__['ngettext']

OK rsadowski@
> 
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/net/deluge/Makefile,v
> retrieving revision 1.12
> diff -u -p -u -p -r1.12 Makefile
> --- Makefile  23 Feb 2021 19:39:31 -  1.12
> +++ Makefile  11 Oct 2021 10:17:18 -
> @@ -4,7 +4,7 @@ COMMENT = bittorrent client
>  
>  DISTNAME =   deluge-${MODPY_EGG_VERSION}
>  MODPY_EGG_VERSION =  2.0.3
> -REVISION =   2
> +REVISION =   3
>  
>  CATEGORIES = net
>  
> cvs server: Diffing pkg
> Index: patches/patch-deluge_i18n_util_py
> ===
> RCS file: patches/patch-deluge_i18n_util_py
> diff -N patches/patch-deluge_i18n_util_py
> --- /dev/null 1 Jan 1970 00:00:00 -
> +++ patches/patch-deluge_i18n_util_py 11 Oct 2021 10:17:18 -
> @@ -0,0 +1,14 @@
> +$OpenBSD$
> +
> +Index: deluge/i18n/util.py
> +--- deluge/i18n/util.py.orig
>  deluge/i18n/util.py
> +@@ -114,7 +114,7 @@ def setup_translation():
> + # Workaround for Python 2 unicode gettext (keyword removed in Py3).
> + kwargs = {} if not deluge.common.PY2 else {'unicode': True}
> + 
> +-gettext.install(I18N_DOMAIN, translations_path, names='ngettext', 
> **kwargs)
> ++gettext.install(I18N_DOMAIN, translations_path, names=['ngettext'], 
> **kwargs)
> + builtins.__dict__['_n'] = builtins.__dict__['ngettext']
> + 
> + libintl = None
> Index: patches/patch-deluge_log_py
> ===
> RCS file: patches/patch-deluge_log_py
> diff -N patches/patch-deluge_log_py
> --- /dev/null 1 Jan 1970 00:00:00 -
> +++ patches/patch-deluge_log_py   11 Oct 2021 10:17:18 -
> @@ -0,0 +1,35 @@
> +$OpenBSD$
> +
> +Index: deluge/log.py
> +--- deluge/log.py.orig
>  deluge/log.py
> +@@ -86,9 +86,9 @@ class Logging(LoggingLoggerClass):
> + def exception(self, msg, *args, **kwargs):
> + yield LoggingLoggerClass.exception(self, msg, *args, **kwargs)
> + 
> +-def findCaller(self, stack_info=False):  # NOQA: N802
> ++def findCaller(self, *args, **kwargs):  # NOQA: N802
> + f = logging.currentframe().f_back
> +-rv = '(unknown file)', 0, '(unknown function)'
> ++rv = ('(unknown file)', 0, '(unknown function)', None)
> + while hasattr(f, 'f_code'):
> + co = f.f_code
> + filename = os.path.normcase(co.co_filename)
> +@@ -98,12 +98,12 @@ class Logging(LoggingLoggerClass):
> + ):
> + f = f.f_back
> + continue
> +-if common.PY2:
> +-rv = (filename, f.f_lineno, co.co_name)
> +-else:
> +-rv = (filename, f.f_lineno, co.co_name, None)
> ++rv = (filename, f.f_lineno, co.co_name, None)
> + break
> +-return rv
> ++if common.PY2:
> ++return rv[:-1]
> ++else:
> ++return rv
> + 
> + 
> + levels = {




CVS: cvs.openbsd.org: ports

2021-10-16 Thread Paco Esteban
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2021/10/16 02:56:43

Modified files:
productivity/py-tasklib: Makefile distinfo 

Log message:
update py-tasklib to its latest version 2.4.0

tweaks and ok thfr@



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2021/10/16 02:51:36

Modified files:
emulators/mgba : Makefile distinfo 
emulators/mgba/patches: patch-CMakeLists_txt 
patch-src_platform_sdl_main_c 
emulators/mgba/pkg: PLIST-main 

Log message:
Update to mgba-0.9.2.



Re: vulkan maintainer update to sdk 1.2.189.1

2021-10-16 Thread Rafael Sadowski
On Thu Oct 14, 2021 at 03:22:26PM -0600, Thomas Frohwein wrote:
> Hi,
> 
> An update to the latest Vulkan SDK 1.2.189.1 and associated ports
> (glslang, spirv-*). I built the whole suite and tested with vkcube
> (from vulkan-tools), vulkaninfo (same), vkquake, and Cryptark via
> fnaify with `/gldevice:Vulkan`. Basic runtime and also with
> VK_INSTANCE_LAYERS=VK_LAYER_KHRONOS_validation. Everything works
> including appropriate complaints from the validation layers in vkquake
> and Cryptark. No symbol changes to libvulkan, so no shared object bump.
> 
> Fullscreen with vkquake seemed buggy though, but that is most likely a
> vkquake and not a vulkan issue, as the other apps ran fine in
> fullscreen.
> 
> I tested on Intel i7-10700 with integrated UHD 630 GPU again. As usual,
> a test with amdgpu would be welcome.

Happy to see this, OK rsadowski

> 
> ok?
> 
> Index: glslang/Makefile
> ===
> RCS file: /cvs/ports/graphics/glslang/Makefile,v
> retrieving revision 1.8
> diff -u -p -r1.8 Makefile
> --- glslang/Makefile  29 Jun 2021 03:48:20 -  1.8
> +++ glslang/Makefile  14 Oct 2021 21:11:08 -
> @@ -1,10 +1,10 @@
>  # $OpenBSD: Makefile,v 1.8 2021/06/29 03:48:20 thfr Exp $
>  
> -PORTROACH =  ^[0-9]
> +PORTROACH =  limit:^[0-9]
>  
>  COMMENT =reference front-end for GLSL and ESSL
>  
> -GH_TAGNAME = 11.5.0
> +GH_TAGNAME = 11.6.0
>  GH_ACCOUNT = KhronosGroup
>  GH_PROJECT = glslang
>  
> Index: glslang/distinfo
> ===
> RCS file: /cvs/ports/graphics/glslang/distinfo,v
> retrieving revision 1.3
> diff -u -p -r1.3 distinfo
> --- glslang/distinfo  29 Jun 2021 03:48:20 -  1.3
> +++ glslang/distinfo  14 Oct 2021 21:11:08 -
> @@ -1,2 +1,2 @@
> -SHA256 (glslang-11.5.0.tar.gz) = /QteO9pZG7CL0wSWVamaClXw3kBZucj3s5fksZz11R8=
> -SIZE (glslang-11.5.0.tar.gz) = 3373042
> +SHA256 (glslang-11.6.0.tar.gz) = mezToMLCIZKT12cjhG92Kp8+fdDcKk80bQ/DoFoM4AA=
> +SIZE (glslang-11.6.0.tar.gz) = 3419655
> Index: spirv-headers/Makefile
> ===
> RCS file: /cvs/ports/graphics/spirv-headers/Makefile,v
> retrieving revision 1.5
> diff -u -p -r1.5 Makefile
> --- spirv-headers/Makefile29 Jun 2021 03:48:20 -  1.5
> +++ spirv-headers/Makefile14 Oct 2021 21:11:08 -
> @@ -2,9 +2,9 @@
>  
>  COMMENT =SPIRV-Headers
>  
> -DISTNAME =   spirv-headers-1.5.4pl2
> -# commit from 2021-06-23
> -GH_COMMIT =  f95c3b3761ee1b1903f54ae69b526ed6f0edc3b9
> +DISTNAME =   spirv-headers-1.5.4pl3
> +# commit from 2021-10-07
> +GH_COMMIT =  5ea2d62e8c0ddd9e2a7d0ca5e3f2335e09e5f408
>  GH_ACCOUNT = KhronosGroup
>  GH_PROJECT = SPIRV-Headers
>  
> Index: spirv-headers/distinfo
> ===
> RCS file: /cvs/ports/graphics/spirv-headers/distinfo,v
> retrieving revision 1.4
> diff -u -p -r1.4 distinfo
> --- spirv-headers/distinfo29 Jun 2021 03:48:20 -  1.4
> +++ spirv-headers/distinfo14 Oct 2021 21:11:08 -
> @@ -1,2 +1,2 @@
> -SHA256 (spirv-headers-1.5.4pl2-f95c3b37.tar.gz) = 
> LE1uATM72gU4C0p6J7L0GKT0WtBoImeTWRLoRVKNpek=
> -SIZE (spirv-headers-1.5.4pl2-f95c3b37.tar.gz) = 413446
> +SHA256 (spirv-headers-1.5.4pl3-5ea2d62e.tar.gz) = 
> WNYcWEKk9Ad42NufJoohafZe3m1DVoOrIrpf3xQLAJs=
> +SIZE (spirv-headers-1.5.4pl3-5ea2d62e.tar.gz) = 415152
> Index: spirv-headers/pkg/PLIST
> ===
> RCS file: /cvs/ports/graphics/spirv-headers/pkg/PLIST,v
> retrieving revision 1.4
> diff -u -p -r1.4 PLIST
> --- spirv-headers/pkg/PLIST   29 Jun 2021 03:48:20 -  1.4
> +++ spirv-headers/pkg/PLIST   14 Oct 2021 21:11:08 -
> @@ -77,3 +77,4 @@ share/cmake/SPIRV-Headers/
>  share/cmake/SPIRV-Headers/SPIRV-HeadersConfig.cmake
>  share/cmake/SPIRV-Headers/SPIRV-HeadersConfigVersion.cmake
>  share/cmake/SPIRV-Headers/SPIRV-HeadersTargets.cmake
> +share/pkgconfig/SPIRV-Headers.pc
> Index: spirv-tools/Makefile
> ===
> RCS file: /cvs/ports/graphics/spirv-tools/Makefile,v
> retrieving revision 1.8
> diff -u -p -r1.8 Makefile
> --- spirv-tools/Makefile  29 Jun 2021 03:48:20 -  1.8
> +++ spirv-tools/Makefile  14 Oct 2021 21:11:08 -
> @@ -2,11 +2,11 @@
>  
>  COMMENT =API and commands for processing SPIR-V
>  
> -V =  2021.2pl0
> +V =  2021.3
>  DISTNAME =   spirv-tools-${V}
>  GH_ACCOUNT = KhronosGroup
>  GH_PROJECT = SPIRV-Tools
> -GH_COMMIT =  e065c482c6c98ef22900822d32a21df8c5473054
> +GH_TAGNAME = v${V}
>  
>  CATEGORIES = devel graphics
>  
> Index: spirv-tools/distinfo
> ===
> RCS file: /cvs/ports/graphics/spirv-tools/distinfo,v
> retrieving revision 1.5
> diff -u -p -r1.5 distinfo
> --- spirv-tools/distinfo  29 Jun 2021 14:46:46 -  1.5
> +++ 

Re: mail/cue: update? remove? (tests/help with autoconf needed)

2021-10-16 Thread Rafael Sadowski
On Wed Oct 13, 2021 at 11:15:26PM +0200, Theo Buehler wrote:
> This updates mail/cue to the latest snapshot available on the ftp server.
> This snapshot doesn't build with OpenSSL 1.1, but has the fixes for 1.0
> in our patches.
> 
> The build of this port will break with upcoming libcrypto changes.
> pkgsrc decided to pass --without-openssl to configure to work around
> the build issues.
> 
> This already indicates that it might be time to retire this...
> 
> I tried to test it, but I failed. If I point it at a Maildir, I get an
> essentially empty screen. If I hit 'C-x a' it segfaults. This is also
> the case with the version in tree.
> 
> If you happen to use this tool and want to keep using it, I'd be
> interested in reports on whether it still works, particularly with
> S/MIME signatures or encryption.
> 
> 
> It turns out that build fix is relatively straightforward (look at
> patch/patch-src_smime_c after applying the diff).
> 
> The patch below builds with autoconf 2.13. As far as I can tell, the
> autoconf stuff is generated with autoconf 2.64. However, if I set
> AUTOCONF_VERSION = 2.64 in the Makefile, I get this:
> 
>   You do not have inet6 library, using libc
>   checking getaddrinfo bug... ./configure[3432]: ac_fn_c_try_run: not found
>   buggy
>   Fatal: You must get working getaddrinfo() function.
>  or you can specify "--disable-ipv6".
> 
> I don't know how to fix this properly (the test program succeeds if
> built without the autoconf madness).

My vote to drop it.

> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/mail/cue/Makefile,v
> retrieving revision 1.18
> diff -u -p -r1.18 Makefile
> --- Makefile  12 Jul 2019 20:47:25 -  1.18
> +++ Makefile  13 Oct 2021 20:40:37 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT= mh-e like mail user agent
>  
> -V=   20090209
> +V=   20180813
>  DISTNAME=cue-snap-$V
>  PKGNAME= cue-$V
>  CATEGORIES=  mail
> Index: distinfo
> ===
> RCS file: /cvs/ports/mail/cue/distinfo,v
> retrieving revision 1.15
> diff -u -p -r1.15 distinfo
> --- distinfo  18 Jan 2015 03:14:21 -  1.15
> +++ distinfo  13 Oct 2021 20:36:40 -
> @@ -1,2 +1,2 @@
> -SHA256 (cue-snap-20090209.tar.gz) = 
> fEjqvU7cYi3wOx1tBPmrhawp9WxHU5HnU8WhHPHtivI=
> -SIZE (cue-snap-20090209.tar.gz) = 229115
> +SHA256 (cue-snap-20180813.tar.gz) = 
> CBL/Yhg0wldTkpzTmjkz3xvehW0Dkydsq2VnkyMEh10=
> +SIZE (cue-snap-20180813.tar.gz) = 260627
> Index: patches/patch-configure_in
> ===
> RCS file: /cvs/ports/mail/cue/patches/patch-configure_in,v
> retrieving revision 1.1
> diff -u -p -r1.1 patch-configure_in
> --- patches/patch-configure_in16 Dec 2008 18:47:51 -  1.1
> +++ patches/patch-configure_in13 Oct 2021 20:39:07 -
> @@ -1,32 +1,35 @@
> -$OpenBSD: patch-configure_in,v 1.1 2008/12/16 18:47:51 naddy Exp $
>  configure.in.origWed Apr 27 13:54:13 2005
> -+++ configure.in Tue Dec 16 19:22:35 2008
> -@@ -37,7 +37,7 @@ netbsd*)
> +$OpenBSD$
> +
> +Index: configure.in
> +--- configure.in.orig
>  configure.in
> +@@ -35,7 +35,7 @@ netbsd*)
>   ;;
>   esac
>   
>  -OPTS="-O"
>  +OPTS=""
> + CFLAGS=""
>   
> - dnl AC_PREFIX_PKG(VARIABLE, HEADER, LIBRARY, PATH [, IF-TRUE [, IF FALSE ] 
> ])
> - AC_DEFUN(AC_PREFIX_PKG, [
> -@@ -383,14 +383,14 @@ if test "$enable_pgpmime" = yes -o "$enable_smime" = y
> + # AC_PREFIX_PKG(VARIABLE, HEADER, LIBRARY, PATH [, IF-TRUE [, IF FALSE ] ])
> +@@ -381,13 +381,14 @@ if test "$enable_pgpmime" = yes -o "$enable_smime" = y
>   AC_MSG_RESULT($with_openssl),
>   [ AC_MSG_RESULT(yes)
> withval="/usr /usr/local /usr/local/ssl /usr/pkg" ])
> --AC_PREFIX_PKG(ssl, ssl.h, libcrypto.a, $withval)
> --if test "$ssl" = no; then
> --AC_PREFIX_PKG(ssl, openssl/ssl.h, libcrypto.a, $withval)
> --if test "$ssl" != no; then
> +-AC_PREFIX_PKG(ssl, openssl/ssl.h, libcrypto.a, $withval)
> +-if test "$ssl" != no; then
> +-AC_DEFINE(USE_OPENSSL)
> +-else
> +-AC_PREFIX_PKG(ssl, ssl.h, libcrypto.a, $withval)
>  +AC_PREFIX_PKG(use_ssl, ssl.h, libcrypto.a, $withval)
>  +if test "$use_ssl" = no; then
>  +AC_PREFIX_PKG(use_ssl, openssl/ssl.h, libcrypto.a, $withval)
>  +if test "$use_ssl" != no; then
> - AC_DEFINE(OPENSSL)
> - fi
> ++AC_DEFINE(USE_OPENSSL)
> ++fi
>   fi
>  -if test "$ssl" != no; then
>  +if test "$use_ssl" != no; then
>   if test "$enable_pgpmime" = yes -a "$zlib" != no; then
> - AC_DEFINE(PGPMIME)
> + AC_DEFINE(USE_PGPMIME)
>   EXOBJS="pgp.o pgpmime.o $EXOBJS"
> Index: patches/patch-popxmit_c
> 

Re: [update] devel/intellij to 2021.2.3

2021-10-16 Thread Rafael Sadowski
On Sat Oct 16, 2021 at 01:53:04AM +0200, Lucas Raab wrote:
> Hello,
> 
> Here's an update to intellij to 2021.2.3

Committed, thanks!

> 
> Release notes:
> https://youtrack.jetbrains.com/articles/IDEA-A-59/IntelliJ-IDEA-2021.2.3-(212.5457.46-build)-Release-Notes
> 
> Builds and runs with no issues, but happy to hear other tests.
> 
> Thanks,
> Lucas

> diff 9b37b29fffbd1840e023e9bfb1bda453f1548607 /home/lucas/ports
> blob - 07acc996a814fd327757bfe37436282f2590e8a8
> file + devel/intellij/Makefile
> --- devel/intellij/Makefile
> +++ devel/intellij/Makefile
> @@ -2,7 +2,7 @@
>  
>  COMMENT= IntelliJ IDEA Java IDE
>  
> -V=   2021.2.2
> +V=   2021.2.3
>  DISTNAME=ideaIC-${V}-no-jbr
>  PKGNAME= intellij-${V}
>  CATEGORIES=  devel
> @@ -25,7 +25,7 @@ RUN_DEPENDS=devel/desktop-file-utils \
>  
>  NO_TEST= Yes
>  
> -WRKDIST= ${WRKDIR}/idea-IC-212.5284.40
> +WRKDIST= ${WRKDIR}/idea-IC-212.5457.46
>  IJ=  ${PREFIX}/intellij
>  
>  # If NO_BUILD is set, JAVA_HOME doesn't get defined. So do
> blob - bc5d00571526a6d937703461b4c806af2c697850
> file + devel/intellij/distinfo
> --- devel/intellij/distinfo
> +++ devel/intellij/distinfo
> @@ -1,2 +1,2 @@
> -SHA256 (ideaIC-2021.2.2-no-jbr.tar.gz) = 
> p7obtmd/tMmnsA4rOTSxRasY4Z7wXaCNbQ1fz9Z40Eg=
> -SIZE (ideaIC-2021.2.2-no-jbr.tar.gz) = 666837939
> +SHA256 (ideaIC-2021.2.3-no-jbr.tar.gz) = 
> ufERzvHqtspbaAGrsG//vJZNOYh6k4ETHvCW+TPSj0Q=
> +SIZE (ideaIC-2021.2.3-no-jbr.tar.gz) = 667318583
> blob - dd3af5edc627fc1573a052d9cae754b2ab29b33c
> file + devel/intellij/pkg/PLIST
> --- devel/intellij/pkg/PLIST
> +++ devel/intellij/pkg/PLIST
> @@ -98,7 +98,7 @@ intellij/lib/asm-tree-7.1.jar
>  intellij/lib/asm-util-7.1.jar
>  intellij/lib/async-profiler-2.1-ea-2.jar
>  intellij/lib/bootstrap.jar
> -intellij/lib/build-marker-IC-212.5284.40
> +intellij/lib/build-marker-IC-212.5457.46
>  intellij/lib/byte-buddy-agent-1.10.1.jar
>  intellij/lib/cds/
>  intellij/lib/cds/classesLogAgent.jar
> @@ -146,7 +146,7 @@ intellij/lib/jsp-base-openapi.jar
>  intellij/lib/junit.jar
>  intellij/lib/junit4.jar
>  intellij/lib/kotlin-gradle-plugin-model-1.4.32.jar
> -intellij/lib/kotlin-reflect-1.5.10-release-896.jar
> +intellij/lib/kotlin-reflect-1.5.10-release-931.jar
>  intellij/lib/kotlin-stdlib-jdk8.jar
>  intellij/lib/kotlin-test.jar
>  intellij/lib/kotlinx-coroutines-debug-1.5.0.jar



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 02:25:31

Modified files:
devel/intellij : Makefile distinfo 
devel/intellij/pkg: PLIST 

Log message:
Update intellij to 2021.2.3

Update diff from maintainer



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2021/10/16 02:22:44

Modified files:
devel/p5-Config-AutoConf: Makefile distinfo 

Log message:
Update to p5-Config-AutoConf-0.320.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2021/10/16 02:16:10

Modified files:
devel/p5-Cache-FastMmap: Makefile distinfo 

Log message:
Update to p5-Cache-FastMmap-1.57.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2021/10/16 02:11:34

Modified files:
devel/p5-B-Hooks-EndOfScope: Makefile distinfo 

Log message:
Update to p5-B-Hooks-EndOfScope-0.25.



Re: [MAINTAINER UPDATE] java/tanukiwrapper -> 0.9.46

2021-10-16 Thread Rafael Sadowski
On Wed Oct 13, 2021 at 03:10:29PM +, Dimitri Karamazov wrote:
> Update java/tanukiwrapper to 0.9.46
> 
> Changelog:https://wrapper.tanukisoftware.com/doc/english/release-notes.html#3.5.46

Committed, thanks

> 
> Build & Run tested with i2p-1.5.0
> 
> regards,
>   Dimitri
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/java/tanukiwrapper/Makefile,v
> retrieving revision 1.22
> diff -u -p -r1.22 Makefile
> --- Makefile  18 Jul 2021 15:34:18 -  1.22
> +++ Makefile  13 Oct 2021 15:02:30 -
> @@ -2,10 +2,9 @@
>  
>  COMMENT= Tanuki Java Service Wrapper
>  
> -V=   3.5.45
> +V=   3.5.46
>  DISTNAME=wrapper_${V}_src
>  PKGNAME= java-tanukiwrapper-${V}
> -REVISION=1
>  CATEGORIES=  java
>  
>  HOMEPAGE=https://wrapper.tanukisoftware.com/
> Index: distinfo
> ===
> RCS file: /cvs/ports/java/tanukiwrapper/distinfo,v
> retrieving revision 1.5
> diff -u -p -r1.5 distinfo
> --- distinfo  6 Jan 2021 13:30:22 -   1.5
> +++ distinfo  13 Oct 2021 15:02:30 -
> @@ -1,2 +1,2 @@
> -SHA256 (wrapper_3.5.45_src.tar.gz) = 
> rnlloa0DicWT1RlP2szDvBINvT5/RZ17GOarUzvX1AI=
> -SIZE (wrapper_3.5.45_src.tar.gz) = 748917
> +SHA256 (wrapper_3.5.46_src.tar.gz) = 
> guHQyFSI0TidAuOr4zWaf3WRGeNW4+Or1sbWdhWuWtg=
> +SIZE (wrapper_3.5.46_src.tar.gz) = 758300
> Index: patches/patch-build_xml
> ===
> RCS file: /cvs/ports/java/tanukiwrapper/patches/patch-build_xml,v
> retrieving revision 1.4
> diff -u -p -r1.4 patch-build_xml
> --- patches/patch-build_xml   18 Jul 2021 15:34:18 -  1.4
> +++ patches/patch-build_xml   13 Oct 2021 15:02:30 -
> @@ -15,7 +15,7 @@ Index: build.xml
>   
>   
>   
> -@@ -421,6 +424,7 @@
> +@@ -427,6 +430,7 @@
>   
>   
>   
> @@ -23,7 +23,7 @@ Index: build.xml
>   
>   
>   
> -@@ -438,6 +442,7 @@
> +@@ -444,6 +448,7 @@
>   
>   
>   
> @@ -31,10 +31,10 @@ Index: build.xml
>   
>   
>   
> -@@ -1881,6 +1886,10 @@ wrapper.filter.action.999=NONE]]>
> +@@ -1846,6 +1851,10 @@ wrapper.filter.action.999=NONE]]>
>bits="32" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
>bits="32" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
> -  bits="64" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
> +  bits="64" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
>  + bits="32" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
>  + bits="64" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
>  + bits="64" wrapperbinhead="wrapper" wrapperbintail="" 
> wrapperlibhead="libwrapper" wrapperlibtail=".so" archivetype="tar.gz"/>
> Index: patches/patch-src_c_wrapper_c
> ===
> RCS file: /cvs/ports/java/tanukiwrapper/patches/patch-src_c_wrapper_c,v
> retrieving revision 1.4
> diff -u -p -r1.4 patch-src_c_wrapper_c
> --- patches/patch-src_c_wrapper_c 18 Jul 2021 15:34:18 -  1.4
> +++ patches/patch-src_c_wrapper_c 13 Oct 2021 15:02:30 -
> @@ -5,7 +5,7 @@ add OpenBSD support
>  Index: src/c/wrapper.c
>  --- src/c/wrapper.c.orig
>  +++ src/c/wrapper.c
> -@@ -104,7 +104,7 @@
> +@@ -105,7 +105,7 @@
> #include 
> #include 
>#elif defined(AIX) || defined(HPUX) || defined(MACOSX)
> @@ -14,7 +14,7 @@ Index: src/c/wrapper.c
> #include 
> #include 
>#else /* LINUX */
> -@@ -5885,7 +5885,7 @@ int wrapperRunCommonInner() {
> +@@ -5886,7 +5886,7 @@ int wrapperRunCommonInner() {
>   tz1 = tzname[0];
>   tz2 = tzname[1];
>   #endif
> @@ -23,7 +23,7 @@ Index: src/c/wrapper.c
>   log_printf(WRAPPER_SOURCE_WRAPPER, LEVEL_DEBUG, 
> TEXT("Timezone: %s (%s) Offset: %ld, hasDaylight: %d"),
>   tz1, tz2, timezone, daylight);
>   #else
> -@@ -6560,7 +6560,7 @@ int checkIfBinary(const TCHAR *filename) {
> +@@ -6561,7 +6561,7 @@ int checkIfBinary(const TCHAR *filename) {
>   log_printf(WRAPPER_SOURCE_WRAPPER, LEVEL_DEBUG, TEXT("Magic 
> number for file %s: 0x%02x%02x%02x%02x"), filename, head[0], head[1], 
> head[2], head[3]);
>   }
>   
> @@ -32,7 +32,7 @@ Index: src/c/wrapper.c
>   if (head[1] == 'E' && head[2] == 'L' && 

Re: [MAINTAINER UPDATE] net/i2p -> 1.5.0

2021-10-16 Thread Rafael Sadowski
On Wed Oct 13, 2021 at 03:20:23PM +, Dimitri Karamazov wrote:
> Update net/i2p -> 1.5.0
> 
> Changes
> 
> - RRD4J 3.8
> - Tunnels: Finish support for new build messages (proposal 157)
> - Updates: Support for .dmg and .exe updates
> 
> Bug Fixes
> 
> - Console: Fix generation of SSL keys on Java 17
> - i2psnark: Fix autostart for magnets
> - Router: Fix rare deadlock in publishing our RI
> - SSU: Fix handling of bad peer test responses
> - UPnP: IPv6 fixes
> 
> Other
> 
> - Jetty: Improve sort in directory listings
> - Jetty: Add X-I2P-Location header
> - Router: Increase probability to rekey to ECIES
> - Streaming: Performance improvements for low-latency connections
> - Translation updates
> 
> Build & Run tested on amd64.
> 
> regards,
>   Dimitri

Committed, thanks

> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/net/i2p/Makefile,v
> retrieving revision 1.11
> diff -u -p -r1.11 Makefile
> --- Makefile  18 Jul 2021 15:35:08 -  1.11
> +++ Makefile  13 Oct 2021 15:02:45 -
> @@ -4,7 +4,7 @@ COMMENT=  i2p routing protocol
>  
>  GH_ACCOUNT=  i2p
>  GH_PROJECT=  i2p.i2p
> -GH_TAGNAME=  i2p-0.9.50
> +GH_TAGNAME=  i2p-1.5.0
>  DISTNAME=${GH_TAGNAME}
>  
>  CATEGORIES=  net
> Index: distinfo
> ===
> RCS file: /cvs/ports/net/i2p/distinfo,v
> retrieving revision 1.4
> diff -u -p -r1.4 distinfo
> --- distinfo  21 May 2021 13:19:59 -  1.4
> +++ distinfo  13 Oct 2021 15:02:45 -
> @@ -1,2 +1,2 @@
> -SHA256 (i2p-0.9.50.tar.gz) = osaY0ohRueYdVV/7HmuxHZyyASXv103CsXWW0XKPeAQ=
> -SIZE (i2p-0.9.50.tar.gz) = 36920695
> +SHA256 (i2p-1.5.0.tar.gz) = gzNKUr9DI6qBuHZwhXE9tiirGG3FdLsrtU21LJeqnSM=
> +SIZE (i2p-1.5.0.tar.gz) = 37147681
> 



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 02:09:23

Modified files:
net/i2p: Makefile distinfo 

Log message:
Update i2p to 1.5.0

Changes

- RRD4J 3.8
- Tunnels: Finish support for new build messages (proposal 157)
- Updates: Support for .dmg and .exe updates

Bug Fixes

- Console: Fix generation of SSL keys on Java 17
- i2psnark: Fix autostart for magnets
- Router: Fix rare deadlock in publishing our RI
- SSU: Fix handling of bad peer test responses
- UPnP: IPv6 fixes

Other

- Jetty: Improve sort in directory listings
- Jetty: Add X-I2P-Location header
- Router: Increase probability to rekey to ECIES
- Streaming: Performance improvements for low-latency connections
- Translation updates

Update diff from maintainer



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 02:07:39

Modified files:
java/tanukiwrapper: Makefile distinfo 
java/tanukiwrapper/patches: patch-build_xml 
patch-src_c_wrapper_c 

Log message:
Update tanukiwrapper to 0.9.46

Changelog:https://wrapper.tanukisoftware.com/doc/english/release-notes.html#3.5.46

Update diff from maintainer



Re: UPDATE: fmt 8.0.1

2021-10-16 Thread Rafael Sadowski
On Sat Oct 02, 2021 at 05:11:47PM -0400, Brad Smith wrote:
> Here is an update to fmt 8.0.1.
> 

Committed, Thanks

> 
> Index: Makefile
> ===
> RCS file: /home/cvs/ports/devel/fmt/Makefile,v
> retrieving revision 1.2
> diff -u -p -u -p -r1.2 Makefile
> --- Makefile  30 Jan 2021 15:37:05 -  1.2
> +++ Makefile  27 Sep 2021 00:51:24 -
> @@ -4,9 +4,9 @@ COMMENT=  alternative formatting library
>  
>  GH_ACCOUNT=  fmtlib
>  GH_PROJECT=  fmt
> -GH_TAGNAME=  7.1.3
> +GH_TAGNAME=  8.0.1
>  
> -SHARED_LIBS= fmt 0.0
> +SHARED_LIBS= fmt 1.0
>  
>  CATEGORIES=  devel
>  
> Index: distinfo
> ===
> RCS file: /home/cvs/ports/devel/fmt/distinfo,v
> retrieving revision 1.1.1.1
> diff -u -p -u -p -r1.1.1.1 distinfo
> --- distinfo  2 Jan 2021 21:51:19 -   1.1.1.1
> +++ distinfo  27 Sep 2021 00:40:13 -
> @@ -1,2 +1,2 @@
> -SHA256 (fmt-7.1.3.tar.gz) = XK5wcgQrMEPhLVPVDvQEu7dpSdrR3jaNf5k6FcjAXsw=
> -SIZE (fmt-7.1.3.tar.gz) = 770029
> +SHA256 (fmt-8.0.1.tar.gz) = sGyjEwFYxiWEjz+3QY8jUVWk04myq8OmJF+wHLDrHgE=
> +SIZE (fmt-8.0.1.tar.gz) = 805616
> Index: patches/patch-CMakeLists_txt
> ===
> RCS file: /home/cvs/ports/devel/fmt/patches/patch-CMakeLists_txt,v
> retrieving revision 1.1
> diff -u -p -u -p -r1.1 patch-CMakeLists_txt
> --- patches/patch-CMakeLists_txt  30 Jan 2021 15:37:05 -  1.1
> +++ patches/patch-CMakeLists_txt  27 Sep 2021 00:41:43 -
> @@ -7,15 +7,15 @@ over LDFLAGS.
>  Index: CMakeLists.txt
>  --- CMakeLists.txt.orig
>  +++ CMakeLists.txt
> -@@ -59,6 +59,7 @@ set_verbose(FMT_INC_DIR ${CMAKE_INSTALL_INCLUDEDIR} CA
> +@@ -72,6 +72,7 @@ set_verbose(FMT_INC_DIR ${CMAKE_INSTALL_INCLUDEDIR} CA
>   option(FMT_PEDANTIC "Enable extra warnings and expensive tests." OFF)
>   option(FMT_WERROR "Halt the compilation with an error on compiler warnings."
>  OFF)
>  +option(AS_NEEDED "Use -Wl,--as-needed for linking." ON)
>   
>   # Options that control generation of various targets.
> - option(FMT_DOC "Generate the doc target." ${MASTER_PROJECT})
> -@@ -233,7 +234,7 @@ endif ()
> + option(FMT_DOC "Generate the doc target." ${FMT_MASTER_PROJECT})
> +@@ -281,7 +282,7 @@ endif ()
>   
>   if (BUILD_SHARED_LIBS)
> if (UNIX AND NOT APPLE AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS" AND
> Index: patches/patch-test_gtest-extra-test_cc
> ===
> RCS file: /home/cvs/ports/devel/fmt/patches/patch-test_gtest-extra-test_cc,v
> retrieving revision 1.1.1.1
> diff -u -p -u -p -r1.1.1.1 patch-test_gtest-extra-test_cc
> --- patches/patch-test_gtest-extra-test_cc2 Jan 2021 21:51:19 -   
> 1.1.1.1
> +++ patches/patch-test_gtest-extra-test_cc27 Sep 2021 00:58:13 -
> @@ -3,22 +3,7 @@ $OpenBSD: patch-test_gtest-extra-test_cc
>  Index: test/gtest-extra-test.cc
>  --- test/gtest-extra-test.cc.orig
>  +++ test/gtest-extra-test.cc
> -@@ -22,14 +22,6 @@
> - 
> - namespace {
> - 
> --// This is used to suppress coverity warnings about untrusted values.
> --std::string sanitize(const std::string& s) {
> --  std::string result;
> --  for (std::string::const_iterator i = s.begin(), end = s.end(); i != end; 
> ++i)
> --result.push_back(static_cast(*i & 0xff));
> --  return result;
> --}
> --
> - // Tests that assertion macros evaluate their arguments exactly once.
> - class SingleEvaluationTest : public ::testing::Test {
> -  protected:
> -@@ -369,6 +361,10 @@ TEST(OutputRedirectTest, FlushErrorInCtor) {
> +@@ -345,6 +345,10 @@ TEST(output_redirect_test, flush_error_in_ctor) {
> write_copy.dup2(write_fd);  // "undo" close or dtor will fail
>   }
>   
> @@ -26,25 +11,14 @@ Index: test/gtest-extra-test.cc
>  +// NOTE(fagg): There's some bug in this test. Can't find it.
>  +// Upstream suggests it doesn't matter so lets leave this compiled
>  +// out for now while i work on figuring it out.
> - TEST(OutputRedirectTest, DupErrorInCtor) {
> + TEST(output_redirect_test, dup_error_in_ctor) {
> buffered_file f = open_buffered_file();
> int fd = (f.fileno)();
> -@@ -380,6 +376,7 @@ TEST(OutputRedirectTest, DupErrorInCtor) {
> +@@ -356,6 +360,7 @@ TEST(output_redirect_test, dup_error_in_ctor) {
> fmt::format("cannot duplicate file descriptor {}", fd));
> copy.dup2(fd);  // "undo" close or dtor will fail
>   }
>  +#endif
>   
> - TEST(OutputRedirectTest, RestoreAndRead) {
> + TEST(output_redirect_test, restore_and_read) {
> file read_end, write_end;
> -@@ -388,8 +385,8 @@ TEST(OutputRedirectTest, RestoreAndRead) {
> -   std::fprintf(file.get(), "[[[");
> -   OutputRedirect redir(file.get());
> -   std::fprintf(file.get(), "censored");
> --  EXPECT_EQ("censored", sanitize(redir.restore_and_read()));
> --  EXPECT_EQ("", 

Re: UPDATE: openal

2021-10-16 Thread Rafael Sadowski
On Mon Oct 04, 2021 at 04:48:51AM +0100, David CARLIER wrote:
> ok by me.

Committed, Thanks

> 
> cheers.
> 
> On Mon, 4 Oct 2021 at 03:31, Brad Smith  wrote:
> >
> > Fix for a bug in the sndio backend with the capture support.
> >
> >
> > Index: Makefile
> > ===
> > RCS file: /home/cvs/ports/audio/openal/Makefile,v
> > retrieving revision 1.57
> > diff -u -p -u -p -r1.57 Makefile
> > --- Makefile20 Aug 2021 21:54:22 -  1.57
> > +++ Makefile4 Oct 2021 02:23:13 -
> > @@ -6,7 +6,7 @@ V = 1.21.1
> >  EPOCH =0
> >  DISTNAME = openal-soft-$V
> >  PKGNAME =  openal-$V
> > -REVISION = 1
> > +REVISION = 2
> >  CATEGORIES =   audio
> >
> >  SHARED_LIBS =  openal  4.1
> > Index: patches/patch-alc_backends_sndio_cpp
> > ===
> > RCS file: 
> > /home/cvs/ports/audio/openal/patches/patch-alc_backends_sndio_cpp,v
> > retrieving revision 1.3
> > diff -u -p -u -p -r1.3 patch-alc_backends_sndio_cpp
> > --- patches/patch-alc_backends_sndio_cpp20 Aug 2021 21:54:22 -  
> > 1.3
> > +++ patches/patch-alc_backends_sndio_cpp4 Oct 2021 02:25:36 -
> > @@ -6,6 +6,8 @@ Simplify channel handling in the sndio b
> >  Use non-block mode for sndio capture
> >  1fd4c865fc084f134363db5155361d5483679235
> >
> > +Fix crashes in SndioCapture::recordProc
> > +a4b0a3d7b3ec271243cfda4780e567e49f2b37b7
> >
> >  Index: alc/backends/sndio.cpp
> >  --- alc/backends/sndio.cpp.orig
> > @@ -269,7 +271,19 @@ Index: alc/backends/sndio.cpp
> >   RingBufferPtr mRing;
> >
> >   std::atomic mKillNow{true};
> > -@@ -326,37 +309,53 @@ int SndioCapture::recordProc()
> > +@@ -323,40 +306,65 @@ int SndioCapture::recordProc()
> > +
> > + const uint frameSize{mDevice->frameSizeFromFmt()};
> > +
> > ++int nfds_pre{sio_nfds(mSndHandle)};
> > ++if (nfds_pre <= 0)
> > ++{
> > ++mDevice->handleDisconnect("Incorrect return value from 
> > sio_nfds(): %d", nfds_pre);
> > ++return 1;
> > ++}
> > ++
> > ++mFds.resize(nfds_pre);
> > ++
> >   while(!mKillNow.load(std::memory_order_acquire)
> >   && mDevice->Connected.load(std::memory_order_acquire))
> >   {
> > @@ -345,7 +359,7 @@ Index: alc/backends/sndio.cpp
> >   }
> >
> >   return 0;
> > -@@ -371,76 +370,80 @@ void SndioCapture::open(const char *name)
> > +@@ -371,76 +379,80 @@ void SndioCapture::open(const char *name)
> >   throw al::backend_exception{al::backend_error::NoDevice, "Device 
> > name \"%s\" not found",
> >   name};
> >
> 



Re: UPDATE: lighttpd 1.4.60

2021-10-16 Thread Rafael Sadowski
On Mon Oct 04, 2021 at 12:14:47AM -0400, Brad Smith wrote:
> Here is an update to lighttpd 1.4.60.
> 
> - HTTP/2 smoother and lower memory use (in general)
> - HTTP/2 tuning to better handle aggressive client initial requests
> - reduce memory footprint; workaround poor glibc behavior; jemalloc is better
> - mod_magnet lua performance improvements
> - mod_dirlisting performance improvements and new caching option
> - memory constraints for extreme edge cases in mod_dirlisting, mod_ssi, 
> mod_webdav
> - connect(), write(), read() time limits on backends (separate from client 
> timeouts)
> - lighttpd restarts if large discontinuity in time occurs (embedded systems)
> - RFC7233 Range support for all non-streaming responses, not only static files
> - connect() to backend now has default 8 second timeout (configurable)
> 

Committed, Thanks

> 
> Index: Makefile
> ===
> RCS file: /home/cvs/ports/www/lighttpd/Makefile,v
> retrieving revision 1.161
> diff -u -p -u -p -r1.161 Makefile
> --- Makefile  6 Feb 2021 14:37:53 -   1.161
> +++ Makefile  4 Oct 2021 04:08:37 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT= secure, fast, compliant, and very flexible web-server
>  
> -DISTNAME=lighttpd-1.4.59
> +DISTNAME=lighttpd-1.4.60
>  CATEGORIES=  www net
>  MASTER_SITES=https://download.lighttpd.net/lighttpd/releases-1.4.x/
>  EXTRACT_SUFX=.tar.xz
> Index: distinfo
> ===
> RCS file: /home/cvs/ports/www/lighttpd/distinfo,v
> retrieving revision 1.63
> diff -u -p -u -p -r1.63 distinfo
> --- distinfo  6 Feb 2021 14:37:53 -   1.63
> +++ distinfo  4 Oct 2021 04:08:44 -
> @@ -1,2 +1,2 @@
> -SHA256 (lighttpd-1.4.59.tar.xz) = 
> +5U9snPa7wjttuICVWyuij0H7tYIHJa9mQPblX0QhNU=
> -SIZE (lighttpd-1.4.59.tar.xz) = 968352
> +SHA256 (lighttpd-1.4.60.tar.xz) = 
> S7HdhZ5UGjEx5b4QFVfS4RlbQSnTqEmjpvvSH+HJRvA=
> +SIZE (lighttpd-1.4.60.tar.xz) = 1008548
> 



Re: UPDATE: aom 3.1.3

2021-10-16 Thread Rafael Sadowski
On Mon Oct 11, 2021 at 04:13:03PM +0200, Stefan Hagen wrote:
> Brad Smith wrote:
> > Here is an update to aom 3.1.3.
> > 
> > 
> > 2021-09-29 v3.1.3
> >   This release includes several bug fixes.
> > 
> >   - Bug fixes:
> > The following four cmake changes should help the people building
> > libaom using MSVC.
> >   1. exports: use CMAKE_SHARED_LIBRARY_PREFIX to determine lib name
> >  https://aomedia-review.googlesource.com/c/aom/+/142342
> >   2. aom_install: Install lib dlls to bindir
> >  https://aomedia-review.googlesource.com/c/aom/+/146546
> >   3. aom_install: use relpath for install
> >  https://aomedia-review.googlesource.com/c/aom/+/146550
> >   4. aom_install: don't exclude msvc from install
> >  https://aomedia-review.googlesource.com/c/aom/+/146547
> > 
> > aom/aom_encoder.h: remove configure option reference
> > https://aomedia-review.googlesource.com/c/aom/+/146743
> > 
> > Issue 3113: Tests for detecting chroma subsampling in
> > av1_copy_and_extend_frame() do not work when y_width or y_height is
> > 1
> > 
> > Issue 3115: image2yuvconfig() should calculate uv_crop_width and
> > uv_crop_height from y_crop_width and y_crop_height
> > 
> > Issue 3140: rc_overshoot_pct is documented as having a range of
> > 0-1000, but is range checked against 0-100
> > 
> > Issue 3147: Build failure on Apple M1 arm64
> 
> Encoding/decoding tested standalone and via ffmpeg on amd64 (boy is this 
> slow...).
> Portcheck and lib-depends-check are still happy.
> shlib check: No dynamic export changes, so no bump necessary.
> 
> ok sdk@
> 
> Best regards,
> Stefan
> 

Committed, Thanks



Re: UPDATE: libvpx 1.11.0

2021-10-16 Thread Rafael Sadowski
On Mon Oct 11, 2021 at 10:52:31PM -0400, Brad Smith wrote:
> Here is an update to libvpx 1.11.0.
> 

Committed, Thanks

> 
> Release v1.11.0 Smew Duck
> 
> 2021-09-27 v1.11.0 "Smew Duck"
>   This maintenance release adds support for VBR mode in VP9 rate control
>   interface, new codec controls to get quantization parameters and loop filter
>   levels, and includes several improvements to NEON and numerous bug fixes.
> 
>   - Upgrading:
> New codec control is added to get quantization parameters and loop filter
> levels.
> 
> VBR mode is supported in VP9 rate control library.
> 
>   - Enhancement:
> Numerous improvements for Neon optimizations.
> Code clean-up and refactoring.
> Calculation of rd multiplier is changed with BDRATE gains.
> 
>   - Bug fixes:
> Fix to overflow on duration.
> Fix to several instances of -Wunused-but-set-variable.
> Fix to avoid chroma resampling for 420mpeg2 input.
> Fix to overflow in calc_iframe_target_size.
> Fix to disallow skipping transform and quantization.
> Fix some -Wsign-compare warnings in simple_encode.
> Fix input file path in simple_encode_test.
> Fix valid range for under/over_shoot pct.
> 
> 
> Index: Makefile
> ===
> RCS file: /home/cvs/ports/multimedia/libvpx/Makefile,v
> retrieving revision 1.45
> diff -u -p -u -p -r1.45 Makefile
> --- Makefile  29 Apr 2021 04:07:21 -  1.45
> +++ Makefile  12 Oct 2021 00:00:14 -
> @@ -2,14 +2,13 @@
>  
>  COMMENT= Google VP8/VP9 video codec
>  
> -VER= 1.10.0
> -CATEGORIES=  multimedia
> -EPOCH=   0
>  GH_ACCOUNT=  webmproject
>  GH_PROJECT=  libvpx
> -GH_TAGNAME=  v${VER}
> +GH_TAGNAME=  v1.11.0
> +EPOCH=   0
> +CATEGORIES=  multimedia
>  
> -SHARED_LIBS= vpx 13.0
> +SHARED_LIBS= vpx 14.0
>  
>  HOMEPAGE=https://www.webmproject.org/
>  
> Index: distinfo
> ===
> RCS file: /home/cvs/ports/multimedia/libvpx/distinfo,v
> retrieving revision 1.19
> diff -u -p -u -p -r1.19 distinfo
> --- distinfo  29 Apr 2021 04:07:21 -  1.19
> +++ distinfo  11 Oct 2021 23:53:52 -
> @@ -1,2 +1,2 @@
> -SHA256 (libvpx-1.10.0.tar.gz) = hYA8y9vdejsD2TAYfLBV8TU1lpacH5Lr7C24OfpPg0o=
> -SIZE (libvpx-1.10.0.tar.gz) = 5340421
> +SHA256 (libvpx-1.11.0.tar.gz) = ll5RyRrZhR4jN668wPUXRAxjfFBvOgOUgGLj1eoSmoM=
> +SIZE (libvpx-1.11.0.tar.gz) = 5347256
> 



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 02:02:18

Modified files:
devel/fmt  : Makefile distinfo 
devel/fmt/patches: patch-CMakeLists_txt 
   patch-test_gtest-extra-test_cc 
devel/fmt/pkg  : PLIST 
Removed files:
devel/fmt/patches: patch-test_posix-mock-test_cc 
   patch-test_std-format-test_cc 

Log message:
Update to fmt 8.0.1.

>From Brad



Re: [update] lang/node to 12.22.7

2021-10-16 Thread Rafael Sadowski
On Tue Oct 12, 2021 at 09:23:44PM +0200, Volker Schlecht wrote:
> Hi,
> 
> the attached patch updates lang/node to 12.22.7, fixing
> 
> CVE-2021-22959
> CVE-2021-22960
> https://nodejs.org/en/blog/vulnerability/oct-2021-security-releases/
> 
> The update affects only their http parser.
> 
> OK?
> 
> regards,
> Volker

Thanks committed.



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2021/10/16 02:01:38

Modified files:
converters/p5-Convert-ASN1: Makefile distinfo 

Log message:
Update to p5-Convert-ASN1-0.33.



Re: CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
On Sat Oct 16, 2021 at 02:00:54AM -0600, Rafael Sadowski wrote:
> CVSROOT:  /cvs
> Module name:  ports
> Changes by:   rsadow...@cvs.openbsd.org   2021/10/16 02:00:54
> 
> Modified files:
>   lang/node  : Makefile distinfo 
> 
> Log message:
> Update node to 12.22.7
> 
> CVE-2021-22959, CVE-2021-22960
> https://nodejs.org/en/blog/vulnerability/oct-2021-security-releases/
> 
> OK abieber@
> 

Update diff from Volker Schlecht, thanks!



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 02:00:54

Modified files:
lang/node  : Makefile distinfo 

Log message:
Update node to 12.22.7

CVE-2021-22959, CVE-2021-22960
https://nodejs.org/en/blog/vulnerability/oct-2021-security-releases/

OK abieber@



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 01:59:50

Modified files:
multimedia/aom : Makefile distinfo 

Log message:
Update to aom 3.1.3.

2021-09-29 v3.1.3
This release includes several bug fixes.

- Bug fixes:
The following four cmake changes should help the people building
libaom using MSVC.
1. exports: use CMAKE_SHARED_LIBRARY_PREFIX to determine lib name
https://aomedia-review.googlesource.com/c/aom/+/142342
2. aom_install: Install lib dlls to bindir
https://aomedia-review.googlesource.com/c/aom/+/146546
3. aom_install: use relpath for install
https://aomedia-review.googlesource.com/c/aom/+/146550
4. aom_install: don't exclude msvc from install
https://aomedia-review.googlesource.com/c/aom/+/146547

aom/aom_encoder.h: remove configure option reference
https://aomedia-review.googlesource.com/c/aom/+/146743

Issue 3113: Tests for detecting chroma subsampling in
av1_copy_and_extend_frame() do not work when y_width or y_height is
1

Issue 3115: image2yuvconfig() should calculate uv_crop_width and
uv_crop_height from y_crop_width and y_crop_height

Issue 3140: rc_overshoot_pct is documented as having a range of
0-1000, but is range checked against 0-100

Issue 3147: Build failure on Apple M1 arm64

Update diff from Brad, OK sdk@



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 01:59:12

Modified files:
audio/openal   : Makefile 
audio/openal/patches: patch-alc_backends_sndio_cpp 

Log message:
Fix for a bug in the sndio backend with the capture support

Diff from Brad, OK maintainer David Carlier



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 01:54:22

Modified files:
www/lighttpd   : Makefile distinfo 

Log message:
Update to lighttpd 1.4.60

- HTTP/2 smoother and lower memory use (in general)
- HTTP/2 tuning to better handle aggressive client initial requests
- reduce memory footprint; workaround poor glibc behavior; jemalloc is better
- mod_magnet lua performance improvements
- mod_dirlisting performance improvements and new caching option
- memory constraints for extreme edge cases in mod_dirlisting, mod_ssi, 
mod_webdav
- connect(), write(), read() time limits on backends (separate from client 
timeouts)
- lighttpd restarts if large discontinuity in time occurs (embedded systems)
- RFC7233 Range support for all non-streaming responses, not only static files
- connect() to backend now has default 8 second timeout (configurable)

>From Brad



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2021/10/16 01:53:10

Modified files:
multimedia/libvpx: Makefile distinfo 

Log message:
Update to libvpx 1.11.0.

Pelease v1.11.0 Smew Duck

2021-09-27 v1.11.0 "Smew Duck"
This maintenance release adds support for VBR mode in VP9 rate control
interface, new codec controls to get quantization parameters and loop filter
levels, and includes several improvements to NEON and numerous bug fixes.

- Upgrading:
New codec control is added to get quantization parameters and loop filter
levels.

VBR mode is supported in VP9 rate control library.

- Enhancement:
Numerous improvements for Neon optimizations.
Code clean-up and refactoring.
Calculation of rd multiplier is changed with BDRATE gains.

- Bug fixes:
Fix to overflow on duration.
Fix to several instances of -Wunused-but-set-variable.
Fix to avoid chroma resampling for 420mpeg2 input.
Fix to overflow in calc_iframe_target_size.
Fix to disallow skipping transform and quantization.
Fix some -Wsign-compare warnings in simple_encode.
Fix input file path in simple_encode_test.
Fix valid range for under/over_shoot pct.

>From Brad



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2021/10/16 01:44:36

Modified files:
security/openssl/libretls: Makefile distinfo 

Log message:
update to libretls-3.4.1



Re: UPDATE: net/kdeconnect-kde

2021-10-16 Thread Rafael Sadowski
On Sat Sep 11, 2021 at 10:48:56AM +0200, Rafael Sadowski wrote:
> On Sat Sep 11, 2021 at 10:17:14AM +0200, Solene Rapenne wrote:
> > On Sat, 11 Sep 2021 10:01:22 +0200
> > Rafael Sadowski :
> > 
> > > On Sat Sep 11, 2021 at 09:23:26AM +0200, Solene Rapenne wrote:
> > > > On Sat, 11 Sep 2021 08:10:51 +0200
> > > > Rafael Sadowski :
> > > >   
> > > > > Update kdeconnect-kde to 21.08.1 and switch to x11/kde-applications.
> > > > > kdeconnect is part of KDE Gear now. Unfortunately we have to disable 
> > > > > two
> > > > > plugins because they depends on Wayland.
> > > > > 
> > > > > Does it make sense to do this update WITHOUT the two plugins?
> > > > > 
> > > > > Feedback, OK?
> > > > > 
> > > > > -SHARED_LIBS +=   kdeconnectinterfaces1.0 # 1.4
> > > > > -SHARED_LIBS +=   kdeconnectsmshelper 0.0 # 1.4
> > > > > +SHARED_LIBS +=   kdeconnectcore  2.0 # 1.4
> > > > > +SHARED_LIBS +=   kdeconnectinterfaces2.0 # 1.4  
> > > > 
> > > > should I understand the SMS plugin is being dropped? If so then you
> > > > are right, kdeconnect doesn't seem useful to me anymore.
> > > > 
> > > > I never used the other plugins, they didn't see particularly useful
> > > > compared to read / send SMS.
> > > >   
> > > 
> > >  bin/kdeconnect-sms and lib/qt5/plugins/kdeconnect/kdeconnect_sms.so are
> > >  still present.
> > 
> > I don't understand what features will be lost then. Could you explain? :)
> > 
> 
> Just like me. Don't shoot the messenger. This needs tests.
> 

Has anyone ever tested this?



Re: NEW: multimedia/mlt7

2021-10-16 Thread Rafael Sadowski
On Thu Oct 14, 2021 at 10:40:03AM -0600, Tracey Emery wrote:
> On Wed, Oct 13, 2021 at 09:14:34PM +0200, Rafael Sadowski wrote:
> > On Mon Oct 04, 2021 at 06:12:41AM +0200, Rafael Sadowski wrote:
> > > On Thu Sep 09, 2021 at 09:09:08PM +0200, Rafael Sadowski wrote:
> > > > Please find attached multimedia/mlt7. "This is a major new version that
> > > > breaks API to add a major new feature to the framework: retiming."
> > > > I need MLT 7 to update x11/kde-applications/kdenlive. I decided to leave
> > > > mlt6 as it is and create mlt7-7.0.1. Both ports can be installed side by
> > > > side.
> > > > 
> > > > More: https://www.mltframework.org/blog/v7.0.0_released/
> > > > 
> > > > $ pkg_info |rg mlt
> > > > mlt-6.22.1p0multimedia transformations framework
> > > > mlt-gpl2-6.22.1p0   GPLv2-licensed modules for mlt
> > > > mlt7-7.0.1  multimedia transformations framework
> > > > mlt7-gpl2-7.0.1 GPLv2-licensed modules for mlt
> > > > 
> > > > Feedback, OK?
> > > 
> > > Ping, I need this to update x11/kde-applications/kdenlive. Thanks!
> > > 
> > 
> > Anyone?
> 
> Any shotcut issues with this?
> 
> -- 
> 
> Tracey Emery
> 

Mlt 7 supports comes with shotcut 21.05.01, we are on 21.01.29.
https://www.shotcut.org/blog/new-release-210501/



CVS: cvs.openbsd.org: ports

2021-10-16 Thread Martin Reindl
CVSROOT:/cvs
Module name:ports
Changes by: mar...@cvs.openbsd.org  2021/10/16 01:22:17

Modified files:
net/py-tinytuya: Makefile distinfo 

Log message:
Update py-tinytuya to 1.2.9.



Re: vulkan maintainer update to sdk 1.2.189.1

2021-10-16 Thread Omar Polo


Thomas Frohwein  writes:

> Hi,
>
> An update to the latest Vulkan SDK 1.2.189.1 and associated ports
> (glslang, spirv-*). I built the whole suite and tested with vkcube
> (from vulkan-tools), vulkaninfo (same), vkquake, and Cryptark via
> fnaify with `/gldevice:Vulkan`. Basic runtime and also with
> VK_INSTANCE_LAYERS=VK_LAYER_KHRONOS_validation. Everything works
> including appropriate complaints from the validation layers in vkquake
> and Cryptark. No symbol changes to libvulkan, so no shared object bump.
>
> Fullscreen with vkquake seemed buggy though, but that is most likely a
> vkquake and not a vulkan issue, as the other apps ran fine in
> fullscreen.
>
> I tested on Intel i7-10700 with integrated UHD 630 GPU again. As usual,
> a test with amdgpu would be welcome.
>
> ok?

They all builds fine.  I did some testing with godot compiled from the
master branch and it runs fine.  I have an amdgpu

amdgpu0: RAVEN 11 CU rev 0x01

Thanks!



Re: sparc64 bulk build report

2021-10-16 Thread Brad Smith

On 10/15/2021 10:24 PM, k...@openbsd.org wrote:

Bulk build on sparc64-0a.ports.openbsd.org

Started : Wed Oct 13 11:06:06 MDT 2021
Finished: Fri Oct 15 20:24:21 MDT 2021
Duration: 2 Days 9 hours 18 minutes

Built using OpenBSD 7.0-current (GENERIC.MP) #1003: Wed Oct 13 00:52:31 MDT 2021

Built 9446 packages

Number of packages built each day:
Oct 13: 7437
Oct 14: 1507
Oct 15: 502


Critical path missing pkgs:
http://build-failures.rhaalovely.net/sparc64/2021-10-13/summary.log

Build failures: 22
http://build-failures.rhaalovely.net/sparc64/2021-10-13/archivers/fuse-zip.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/audio/ncmpcpp.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/devel/avr/gcc.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/emulators/openmsx.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/games/colobot/colobot.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/games/egoboo.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/games/godot.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/graphics/birdfont.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/graphics/enblend-enfuse.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/graphics/gmic.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/graphics/openexr.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/graphics/openimageio.log


Weird with the error shown in OpenEXR, but OpenImageIO is dependent on 
OpenEXR

and it did start to build.


http://build-failures.rhaalovely.net/sparc64/2021-10-13/lang/clazy.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/net/barrier.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/net/ntopng.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/net/pmacct,postgresql.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/productivity/gnucash.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/security/rnp.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/sysutils/polkit.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/textproc/docbook-utils.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/www/nextcloud_notify_push.log
http://build-failures.rhaalovely.net/sparc64/2021-10-13/x11/gnome/gjs.log





CVS: cvs.openbsd.org: ports

2021-10-16 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2021/10/16 00:38:26

Modified files:
astro/py-metar : Makefile distinfo 
astro/py-metar/pkg: PLIST 

Log message:
Update to py-metar-1.4.



  1   2   >