Re: CVS: cvs.openbsd.org: ports

2024-03-30 Thread Brad Smith

On 2024-03-30 4:43 p.m., Antoine Jacoutot wrote:

CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2024/03/30 14:43:30

Modified files:
graphics/lcms2 : Makefile distinfo

Log message:
Update to lcms2-2.16.


There is a major bump missing. removed: cmsGetToneCurveParams


Re: CVS: cvs.openbsd.org: ports

2023-06-12 Thread Brad Smith

On 2023-06-12 6:18 a.m., Stuart Henderson wrote:

Do you have time to take a look at this please Brad?
I think opencolorio should be using system minizip (which in our
case _is_ minizip-ng) rather than trying to fetch its own copy
but seems something maybe wrong with the cmake file and it's not
finding our minizip build which is done with the (default) MZ_COMPAT
option.

If not then I'll backout, I don't have time right now.



Thanks for backing it out. It should be using the system copy, but after
looking at OCIO it's not so straightforward. It builds the internal copy
as minizip-ng and wants the external copy with the same name. At one
point they used to look for both naming schemes but removed checking
for minizip (only) to simplify things.



Re: CVS: cvs.openbsd.org: ports

2022-10-19 Thread Brad Smith
On Wed, Oct 19, 2022 at 02:39:31PM +0100, Stuart Henderson wrote:
> On 2022/10/17 17:19, Christian Weisgerber wrote:
> > CVSROOT:/cvs
> > Module name:ports
> > Changes by: na...@cvs.openbsd.org   2022/10/17 17:19:36
> > 
> > Modified files:
> > graphics/png   : Makefile distinfo 
> > graphics/png/patches: patch-Makefile_in patch-libpng_pc_in 
> > graphics/png/pkg: PLIST 
> > 
> > Log message:
> > graphics/png: update to 1.6.38
> > 
> > * Fixed various errors in the handling of tRNS, hIST and eXIf.
> > * Implemented many stability improvements across all platforms.
> > 
> > from Brad
> > 
> 
> This moved zlib from 'Requires' to 'Requires.private' in the pkg-config
> file, which breaks graphics/azpainter (undefined references to zlib 
> functions).

Yes, there is a bug in the configure script.


Index: patches/patch-configure
===
RCS file: /home/cvs/ports/graphics/azpainter/patches/patch-configure,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 patch-configure
--- patches/patch-configure 16 Mar 2022 01:44:05 -  1.3
+++ patches/patch-configure 19 Oct 2022 17:50:12 -
@@ -13,15 +13,24 @@ Index: configure
fi
  fi
  
-@@ -290,6 +290,11 @@ elif test "$tmp1" = Darwin;then
-   CFLAGS=`fc_add_string "$CFLAGS" "-DMLK_NO_SIMD"`
- elif test "$tmp1" = FreeBSD;then
-   cf_os=freebsd
-+  cf_make=gmake
-+  CFLAGS=`fc_add_string "$CFLAGS" "-I/usr/local/include"`
-+  LDFLAGS=`fc_add_string "$LDFLAGS" "-L/usr/local/lib"`
-+elif test "$tmp1" = OpenBSD;then
-+  cf_os=openbsd
+@@ -293,6 +293,11 @@ elif test "$tmp1" = FreeBSD;then
cf_make=gmake
CFLAGS=`fc_add_string "$CFLAGS" "-I/usr/local/include"`
LDFLAGS=`fc_add_string "$LDFLAGS" "-L/usr/local/lib"`
++elif test "$tmp1" = OpenBSD;then
++  cf_os=openbsd
++  cf_make=gmake
++  CFLAGS=`fc_add_string "$CFLAGS" "-I/usr/local/include"`
++  LDFLAGS=`fc_add_string "$LDFLAGS" "-L/usr/local/lib"`
+ fi
+ 
+ # dir
+@@ -349,7 +354,7 @@ fc_check_sharedlib "iconv"
+ fc_check_funclink rt "clock_gettime"
+ 
+ fc_check_lib libpng "libpng" "" "-lpng -lz" "png.h" "" "libpng-dev or 
libpng-devel or libpng or png"
+-fc_check_lib zlib "zlib" "" "" "zlib.h" "" "zlib1g-dev or zlib-devel or zlib"
++fc_check_lib zlib "zlib" "" "-lz" "zlib.h" "" "zlib1g-dev or zlib-devel or 
zlib"
+ fc_check_lib libjpeg "libjpeg" "" "-ljpeg" "stdio.h jpeglib.h" "" 
"libjpeg-dev or libjpeg-devel or libjpeg-turbo or jpeg-turbo"
+ fc_check_lib libtiff "libtiff-4" "" "-ltiff" "tiff.h" "" "libtiff-dev or 
libtiff-devel or libtiff or tiff"
+ fc_check_lib libwebp "libwebp" "" "-lwebp" "webp/decode.h" "" "libwebp-dev or 
libwebp-devel or libwebp or webp"



Re: CVS: cvs.openbsd.org: ports

2020-12-23 Thread Brad Smith
On Wed, Dec 23, 2020 at 11:48:25AM -0500, Brad Smith wrote:
> On 12/23/2020 11:01 AM, Brad Smith wrote:
> > I definitely did not see that. But I also had both 5.1 and 5.2 installed
> > and it was picking
> > up 5.2 over 5.1. If the build needs or is expected to pick up 5.1 over
> > 5.2 then it might
> > need some further tweaking.
> 
> Looking?? at luajit?? ONLY_FOR_ARCHS = powerpc i386 amd64
> so this needs further tweaking. The commit below would break mpv on other
> archs.
> mpv builds on more than just those 3 archs. WAF should probably be made to
> pickup
> a particular release instead of scanning through and picking up whatever
> happens to
> be installed and not luajit.
> 
> > On 12/23/2020 9:09 AM, Rafael Sadowski wrote:
> > > CVSROOT:?? /cvs
> > > Module name:?? ports
> > > Changes by:?? rsadow...@cvs.openbsd.org?? 2020/12/23 07:09:38
> > > 
> > > Modified files:
> > > multimedia/mpv : Makefile
> > > 
> > > Log message:
> > > Unbreak mpv 0.33.0
> > > 
> > > Add missing dependency on libluajit-5.1. Error:
> > > 
> > > ld.so: mpv: can't load library 'libluajit-5.1.so.1.0'
> > > 
> > > Spotted by Tim van der Molen, thanks

Here.. now it is not picking up 5.2 on my system.


Index: Makefile
===
RCS file: /home/cvs/ports/multimedia/mpv/Makefile,v
retrieving revision 1.67
diff -u -p -u -p -r1.67 Makefile
--- Makefile23 Dec 2020 14:09:38 -  1.67
+++ Makefile23 Dec 2020 16:43:39 -
@@ -5,7 +5,7 @@ COMMENT =   movie player based on MPlayer
 GH_ACCOUNT =   mpv-player
 GH_PROJECT =   mpv
 GH_TAGNAME =   v0.33.0
-REVISION = 0
+REVISION = 1
 
 SHARED_LIBS += mpv 0.2 # 1.107
 
@@ -26,9 +26,9 @@ WANTLIB += Xinerama Xrandr Xrender Xss X
 WANTLIB += avcodec avdevice avfilter avformat avresample avutil
 WANTLIB += bluray c cdio cdio_cdda cdio_paranoia drm dvdnav dvdread
 WANTLIB += epoxy expat fontconfig freetype fribidi gbm glib-2.0
-WANTLIB += graphite2 harfbuzz iconv intl jpeg lcms2 ${MODLUA_WANTLIB} m pcre
-WANTLIB += placebo postproc pthread swresample swscale xcb xcb-dri2
-WANTLIB += luajit-5.1 xcb-glx xml2 z
+WANTLIB += graphite2 harfbuzz iconv intl jpeg lcms2 ${MODLUA_WANTLIB}
+WANTLIB += m pcre placebo postproc pthread swresample swscale xcb
+WANTLIB += xcb-dri2 xcb-glx xml2 z
 
 MODULES =  lang/lua \
lang/python
@@ -53,8 +53,7 @@ LIB_DEPENDS = archivers/libarchive \
graphics/libplacebo \
multimedia/libass \
multimedia/libbluray \
-   multimedia/libdvdnav \
-   lang/luajit
+   multimedia/libdvdnav
 
 MODPY_RUNDEP = No
 RUN_DEPENDS =  devel/desktop-file-utils \
@@ -65,6 +64,7 @@ CONFIGURE_ARGS =  --confloaddir=${SYSCONF
--confdir=${LOCALBASE}/share/examples/mpv \
--mandir=${LOCALBASE}/man \
--docdir=${LOCALBASE}/share/examples/mpv \
+   --lua="${MODLUA_DEP_VERSION}obsd" \
--enable-cdda \
--enable-dvdnav \
--enable-libmpv-shared \



Re: CVS: cvs.openbsd.org: ports

2020-12-23 Thread Brad Smith

On 12/23/2020 11:01 AM, Brad Smith wrote:
I definitely did not see that. But I also had both 5.1 and 5.2 
installed and it was picking
up 5.2 over 5.1. If the build needs or is expected to pick up 5.1 over 
5.2 then it might

need some further tweaking.


Looking  at luajit  ONLY_FOR_ARCHS = powerpc i386 amd64
so this needs further tweaking. The commit below would break mpv on 
other archs.
mpv builds on more than just those 3 archs. WAF should probably be made 
to pickup
a particular release instead of scanning through and picking up whatever 
happens to

be installed and not luajit.


On 12/23/2020 9:09 AM, Rafael Sadowski wrote:

CVSROOT:    /cvs
Module name:    ports
Changes by:    rsadow...@cvs.openbsd.org    2020/12/23 07:09:38

Modified files:
multimedia/mpv : Makefile

Log message:
Unbreak mpv 0.33.0

Add missing dependency on libluajit-5.1. Error:

ld.so: mpv: can't load library 'libluajit-5.1.so.1.0'

Spotted by Tim van der Molen, thanks





Re: CVS: cvs.openbsd.org: ports

2020-12-23 Thread Brad Smith
I definitely did not see that. But I also had both 5.1 and 5.2 installed 
and it was picking
up 5.2 over 5.1. If the build needs or is expected to pick up 5.1 over 
5.2 then it might

need some further tweaking.

On 12/23/2020 9:09 AM, Rafael Sadowski wrote:

CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2020/12/23 07:09:38

Modified files:
multimedia/mpv : Makefile

Log message:
Unbreak mpv 0.33.0

Add missing dependency on libluajit-5.1. Error:

ld.so: mpv: can't load library 'libluajit-5.1.so.1.0'

Spotted by Tim van der Molen, thanks





Re: CVS: cvs.openbsd.org: ports

2020-11-15 Thread Brad Smith

It feels like deja vu.

On 11/15/2020 4:22 AM, Denis Fondras wrote:

CVSROOT:/cvs
Module name:ports
Changes by: de...@cvs.openbsd.org   2020/11/15 02:22:32

Log message:
 TimescaleDB is an open-source database designed to make SQL scalable
 for time-series data. It is engineered up from PostgreSQL and
 packaged as a PostgreSQL extension, providing automatic partitioning
 across time and space (partitioning key), as well as full SQL
 support.
 
 https://www.timescale.com/
 
 Based on the work by Martin Got, thanks.
 
 Help & OK sthen@
 
 Status:
 
 Vendor Tag:	denis

 Release Tags:  denis_20201115
 
 U ports/databases/timescaledb/Makefile

 U ports/databases/timescaledb/distinfo
 U ports/databases/timescaledb/pkg/DESCR
 U ports/databases/timescaledb/pkg/PLIST
 U ports/databases/timescaledb/pkg/README
 
 No conflicts created by this import






Re: CVS: cvs.openbsd.org: ports

2020-11-07 Thread Brad Smith

On 11/7/2020 6:45 AM, Jeremie Courreges-Anglas wrote:

CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2020/11/07 04:45:52

Modified files:
devel/llvm : Makefile

Log message:
Sync with base: performance optimizations CXXFLAGS

This adds:
-fno-ret-protector on powerpc and mips64el
-fomit-frame-pointer on mips64 and mips64el

Prompted by a similar diff from Brad


I intentionally did not include mips64el as it has not switched to Clang
as the default compiler and thus the compiler building the LLVM port.
No RETGUARD thus -fno-ret-protector is not valid for ports-gcc. base
will use Clang to rebuild itself once bootstrapped.



Re: CVS: cvs.openbsd.org: ports

2020-11-03 Thread Brad Smith

On 11/3/2020 4:39 AM, Stuart Henderson wrote:

On 2020/10/29 07:44, Antoine Jacoutot wrote:

CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2020/10/29 07:44:14

Modified files:
multimedia/mpv : Makefile distinfo

Log message:
Upstream updated to using WAF 2.0.20 for some bug fix.
Sync WANTLIB while here.

from Brad


Where did glib-2.0, pcre, intl come from? I get this in bulk


Oh sorry. Looks like libass.

humpty$ /usr/bin/pkg-config libass --libs --cflags libass
-I/usr/local/include -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 
-I/usr/local/include/harfbuzz -I/usr/local/include/glib-2.0 
-I/usr/local/lib/glib-2.0/include -I/usr/local/include/fribidi 
-L/usr/local/lib -L/usr/X11R6/lib -lass -lfontconfig -
lexpat -lharfbuzz -lgraphite2 -lglib-2.0 -lintl -lpcre -lfribidi 
-lfreetype -lz


Looking at debug output from pkg-config it appears pcre is pulled in via 
glib2 and glib2 is pulled in via harfbuzz.


package glib-2.0 requires.private libpcre>=8.31
package harfbuzz requires.private freetype2,graphite2,glib-2.0

Looking at the libass pkg-config file it changed in the latest pending 
update to include harfbuzz. But that's supposed
to be disabled. Looking closer it looks like they moved harfbuzz from an 
optional dependency to a hard requirement.



===>  Verifying specs:  EGL GL SDL2 X11 X11-xcb Xau Xdamage Xdmcp Xext Xfixes 
Xinerama Xrandr Xrender Xss Xv Xxf86vm archive ass avcodec avdevice avfilter 
avformat avresample avutil bluray c cdio cdio_cdda cdio_paranoia drm dvdnav 
dvdread epoxy expat fontconfig freetype fribidi gbm glib-2.0 iconv intl jpeg lcms2 
m pcre placebo postproc pthread sndio swresample swscale xcb xcb-dri2 xcb-glx xml2 
z lua5.1
Missing library for glib-2.0>=0.0
Missing library for pcre>=0.0
Fatal error

and this from check-lib-depends

mpv-0.32.0p0(multimedia/mpv):
Extra:  glib-2.0.4201 intl.7 pcre.3

Index: Makefile
===
RCS file: /cvs/ports/multimedia/mpv/Makefile,v
retrieving revision 1.63
diff -u -p -r1.63 Makefile
--- Makefile29 Oct 2020 13:44:14 -  1.63
+++ Makefile3 Nov 2020 09:38:53 -
@@ -5,7 +5,7 @@ COMMENT =   movie player based on MPlayer
  GH_ACCOUNT =  mpv-player
  GH_PROJECT =  mpv
  GH_TAGNAME =  v0.32.0
-REVISION = 0
+REVISION = 1
  
  SHARED_LIBS +=		mpv		0.1 # 1.107
  
@@ -22,12 +22,12 @@ EXTRACT_ONLY =		${DISTNAME}${EXTRACT_SUF

  PERMIT_PACKAGE =  Yes
  
  WANTLIB += EGL GL SDL2 X11 X11-xcb Xau Xdamage Xdmcp Xext Xfixes

-WANTLIB += Xinerama Xrandr Xrender Xss Xv Xxf86vm archive ass avcodec
-WANTLIB += avdevice avfilter avformat avresample avutil bluray c
-WANTLIB += cdio cdio_cdda cdio_paranoia drm dvdnav dvdread epoxy expat
-WANTLIB += fontconfig freetype fribidi gbm glib-2.0 iconv intl jpeg
-WANTLIB += lcms2 m pcre placebo postproc pthread sndio swresample
-WANTLIB += swscale xcb xcb-dri2 xcb-glx xml2 z ${MODLUA_WANTLIB}
+WANTLIB += Xinerama Xrandr Xrender Xss Xv Xxf86vm archive ass
+WANTLIB += avcodec avdevice avfilter avformat avresample avutil
+WANTLIB += bluray c cdio cdio_cdda cdio_paranoia drm dvdnav dvdread
+WANTLIB += epoxy expat fontconfig freetype fribidi gbm iconv jpeg
+WANTLIB += lcms2 m placebo postproc pthread sndio swresample swscale
+WANTLIB += xcb xcb-dri2 xcb-glx xml2 z ${MODLUA_WANTLIB}
  
  MODULES =		lang/lua \

lang/python





CVS: cvs.openbsd.org: ports

2015-02-17 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/17 20:59:27

Modified files:
multimedia/x265: Makefile 

Log message:
Hook up the tests.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/16 18:27:11

Modified files:
multimedia/mpv : Makefile 
multimedia/mpv/patches: patch-old-configure 
Added files:
multimedia/mpv/patches: patch-DOCS_man_mpv_rst 
patch-DOCS_man_options_rst 

Log message:
Use the correct default devices for CDROM / DVD playback on OpenBSD; copied
over from MPlayer.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/16 18:23:11

Modified files:
x11/mplayer: Makefile 
x11/mplayer/patches: patch-DOCS_man_en_mplayer_1 

Log message:
Fix the example of using a different DVD drive other than the
default for OpenBSD.



CVS: cvs.openbsd.org: ports

2015-02-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/16 18:28:52

Modified files:
graphics/ffmpeg: Makefile 

Log message:
Enable x265 on PowerPC since as of 1.5 it now works.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/16 18:28:01

Modified files:
multimedia/x265: Makefile distinfo 
Removed files:
multimedia/x265/patches: patch-source_common_constants_cpp 
 patch-source_common_constants_h 
 patch-source_common_param_cpp 
 patch-source_common_primitives_cpp 
 patch-source_common_quant_cpp 
 patch-source_common_threading_h 
 patch-source_common_threadpool_cpp 
 patch-source_common_wavefront_cpp 
 patch-source_common_wavefront_h 
 patch-source_common_winxp_h 
 patch-source_encoder_api_cpp 
 patch-source_encoder_entropy_cpp 
 patch-source_encoder_slicetype_cpp 

Log message:
Update to x265 1.5.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-12 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/12 09:14:00

Modified files:
infrastructure/mk: gcc4.port.mk 

Log message:
Switch hppa over to using 4.8.

ok pascal@ tobiasu@



CVS: cvs.openbsd.org: ports

2015-02-12 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/12 09:15:28

Modified files:
lang/gcc/4.6   : Makefile 

Log message:
Disable 4.6 on hppa.

ok pascal@ tobiasu@



CVS: cvs.openbsd.org: ports

2015-02-11 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/11 01:11:46

Modified files:
net/pidgin : Makefile 
Added files:
net/pidgin/patches: patch-pidgin_gtkconv_c 

Log message:
Use srand_deterministic() as Pidgin expects deterministic results
which fixes the nick colours in multiuser chat rooms changing between
restarts of Pidgin.

From Steven McDonald steven at steven-mcdonald dot id dot au

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 19:05:28

Modified files:
multimedia/libvpx: Tag: OPENBSD_5_6 Makefile 
Added files:
multimedia/libvpx/patches: Tag: OPENBSD_5_6 
   patch-build_make_configure_sh 
   patch-vp9_encoder_x86_vp9_variance_sse2_c 
   patch-vpx_ports_x86_cpuid_c 
   patch-vpx_ports_x86_h 

Log message:
Bring in fixes for the stack overflows with the SSE2 code on i386 and
fixes for the AVX detection (yes, just because a CPU has AVX support
does not mean the kernel does too -- silly Google developers).

Thanks to Mikolaj Kucharski mikolaj at kucharski dot name for reporting
the stack overflows, testing proposed patches and this back ported patch
against the current release.



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 14:53:57

Modified files:
mail/postfix/snapshot: Makefile distinfo 

Log message:
Update to Postfix 3.1-20150201.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 15:02:44

Modified files:
lang/gcc/4.8   : Makefile 
Added files:
lang/gcc/4.8/patches: patch-gcc_config_pa_pa-openbsd_h 

Log message:
Add -rdynamic handling for hppa.

ok pascal@



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 15:04:54

Modified files:
lang/gcc/4.9   : Makefile 
lang/gcc/4.9/pkg: PLIST-main 
Added files:
lang/gcc/4.9/patches: patch-gcc_Makefile_in 

Log message:
Copy over from 4.8.. Stop running the fixincludes script.

ok pascal@



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 15:00:47

Modified files:
mail/postfix/stable: Makefile distinfo 

Log message:
Update to Postfix 2.11.4.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 17:29:05

Modified files:
devel/llvm : Makefile 
devel/llvm/patches: 

patch-lib_Target_PowerPC_MCTargetDesc_PPCMCAsmInfo_cpp 

patch-lib_Target_Sparc_MCTargetDesc_SparcMCAsmInfo_cpp 
patch-tools_clang_lib_Driver_ToolChains_h 
Added files:
devel/llvm/patches: patch-lib_Support_regcomp_c 
patch-tools_clang_lib_Driver_ToolChains_cpp 

Log message:
r228507
Avoid integer overflows around realloc calls resulting in potential
heap. Problem identified by Guido Vranken.

r225819
Use the integrated assembler as default on PowerPC
r225957
Use the integrated assembler by default on SPARC.
r225958
Use the integrated assembler by default on 32-bit PowerPC and SPARC.



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 17:30:00

Modified files:
lang/clang : clang.port.mk 

Log message:
bump revision.



CVS: cvs.openbsd.org: ports

2015-02-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/02/10 17:07:47

Modified files:
multimedia/libvpx: Makefile 
Added files:
multimedia/libvpx/patches: patch-build_make_configure_sh 
   patch-vp9_encoder_x86_vp9_variance_sse2_c 
   patch-vpx_ports_x86_cpuid_c 
   patch-vpx_ports_x86_h 

Log message:
Bring in fixes for the stack overflows with the SSE2 code on i386 and
fixes for the AVX detection (yes, just because a CPU has AVX support
does not mean the kernel does too -- silly Google developers).

Thanks to Mikolaj Kucharski mikolaj at kucharski dot name for reporting
the stack overflows, testing proposed patches and this back ported patch
against the current release.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-01-30 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/30 11:43:12

Modified files:
databases/mariadb: Makefile distinfo 
databases/mariadb/patches: patch-libmysql_CMakeLists_txt 
   patch-scripts_CMakeLists_txt 
   patch-scripts_mysqld_safe_sh 
   patch-storage_oqgraph_CMakeLists_txt 
databases/mariadb/pkg: PLIST-tests 
Added files:
databases/mariadb/patches: patch-storage_connect_reldef_cpp 
Removed files:
databases/mariadb/patches: 
   patch-plugin_auth_socket_auth_socket_c 

Log message:
Update to MariaDB 10.0.16.

Mainly to deal with the 15 CVE assigned issues fixed by .15 and .16.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-01-26 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/26 17:28:34

Modified files:
devel/gettext  : Makefile distinfo 
devel/gettext/patches: 
   patch-gettext-tools_gnulib-lib_Makefile_in 
   patch-gettext-tools_src_Makefile_in 

Log message:
Update to gettext 0.19.4.

With input and ok naddy@



CVS: cvs.openbsd.org: ports

2015-01-26 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/26 05:08:06

Modified files:
graphics/png   : Makefile distinfo 

Log message:
Update to png 1.6.16.

ok naddy@



CVS: cvs.openbsd.org: ports

2015-01-22 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/22 05:29:36

Modified files:
devel/llvm : Makefile 
Added files:
devel/llvm/patches: patch-tools_llvm-config_llvm-config_cpp 

Log message:
r202719
Don't emit a blank line when running llvm-config --system-libs.



CVS: cvs.openbsd.org: ports

2015-01-22 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/22 11:19:46

Modified files:
mail/postfix/snapshot: Makefile 
mail/postfix/snapshot/pkg: PLIST 

Log message:
Comment out the empty postfix-files.d dir in the postfix examples dir as
it serves no purpose and it is just tripping up install(1) in the installation
script which does install * [dir]. The installation script creates the
postfix-files.d dir in the appropriate destination dir.

Issue pointed out by Rod Whitworth glisten at witworx dot com



CVS: cvs.openbsd.org: ports

2015-01-22 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/22 13:34:22

Modified files:
mail/postfix/snapshot: Tag: OPENBSD_5_6 Makefile 
mail/postfix/snapshot/pkg: Tag: OPENBSD_5_6 PLIST 

Log message:
Comment out the empty postfix-files.d dir in the postfix examples dir as
it serves no purpose and it is just tripping up install(1) in the installation
script which does install * [dir]. The installation script creates the
postfix-files.d dir in the appropriate destination dir.



CVS: cvs.openbsd.org: ports

2015-01-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/16 04:30:05

Modified files:
multimedia/libvpx: Makefile 

Log message:
Use a workaround on i386 for the stack overflows in the VP9 assembly code.



CVS: cvs.openbsd.org: ports

2015-01-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/16 04:33:47

Modified files:
multimedia/libvpx: Tag: OPENBSD_5_6 Makefile 

Log message:
Use a workaround on i386 for the stack overflows in the VP9 assembly code.



CVS: cvs.openbsd.org: ports

2015-01-13 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/13 23:17:11

Modified files:
net/libgadu: Makefile 

Log message:
Don't pick up doxygen.



CVS: cvs.openbsd.org: ports

2015-01-12 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/12 15:07:17

Modified files:
archivers/xz   : Makefile distinfo 
archivers/xz/patches: patch-config_h_in 
archivers/xz/pkg: PLIST 
Added files:
archivers/xz/patches: patch-src_xz_file_io_c 
Removed files:
archivers/xz/patches: patch-tests_xzgrep_expected_output 

Log message:
Update to xz 5.2.0.

ok naddy@



CVS: cvs.openbsd.org: ports

2015-01-11 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/11 20:51:58

Modified files:
multimedia/libass: Makefile distinfo 

Log message:
Update to libass 0.12.1.



CVS: cvs.openbsd.org: ports

2015-01-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/10 03:46:37

Modified files:
graphics/ffmpeg: Makefile distinfo 
graphics/ffmpeg/patches: patch-configure 

Log message:
Update to FFmpeg 20150107 snapshot. From 2.4 branch.



CVS: cvs.openbsd.org: ports

2015-01-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/10 04:06:13

Modified files:
x11/mplayer: Makefile 

Log message:
Bump for FFmpeg 20150107.



CVS: cvs.openbsd.org: ports

2015-01-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/10 19:44:44

Modified files:
x11/mplayer: Makefile 

Log message:
Remove USE_GROFF. naddy@ says its basically just whitespace differences
and the pages look more than readable to me.



CVS: cvs.openbsd.org: ports

2015-01-10 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/10 16:13:29

Modified files:
x11/mplayer: Makefile 

Log message:
Tidy up the Makefile so my eyes don't bleed.



CVS: cvs.openbsd.org: ports

2015-01-08 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/08 18:34:44

Modified files:
net/pidgin : Makefile 
net/pidgin/files: ssl-openssl.c 

Log message:
Fix a crash with the ssl_openssl_write() function. It turns out that
openssl_data can be NULL. The current code does not handle this correctly
which results in dereferencing a NULL pointer via openssl_data-ssl.

Also some format string fixes.

Issue found and fixed by jsing@



CVS: cvs.openbsd.org: ports

2015-01-08 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/08 21:44:11

Modified files:
net/pidgin : Tag: OPENBSD_5_5 Makefile 
net/pidgin/files: Tag: OPENBSD_5_5 ssl-openssl.c 
Added files:
net/pidgin/patches: Tag: OPENBSD_5_5 
patch-libpurple_protocols_irc_cmds_c 
patch-libpurple_protocols_msn_contact_c 
patch-libpurple_protocols_msn_contact_h 
patch-libpurple_protocols_msn_session_c 

Log message:
Fix a crash with the ssl_openssl_write() function. It turns out that
openssl_data can be NULL. The current code does not handle this correctly
which results in dereferencing a NULL pointer via openssl_data-ssl.

Some fixes from 2.10.10 and 2.10.11..

3edc70bf4e09
Emit sending/sent signals when doing /me irc command. Fixes #15750
ee51d84aacbf
msn: Hard fail if buddy list is unavailable.
f6a91e6c77a4
msn: Update Application ID to re-enable buddy list.



CVS: cvs.openbsd.org: ports

2015-01-08 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/08 21:43:44

Modified files:
net/pidgin : Tag: OPENBSD_5_6 Makefile 
net/pidgin/files: Tag: OPENBSD_5_6 ssl-openssl.c 
Added files:
net/pidgin/patches: Tag: OPENBSD_5_6 
patch-libpurple_protocols_irc_cmds_c 
patch-libpurple_protocols_msn_contact_c 
patch-libpurple_protocols_msn_contact_h 
patch-libpurple_protocols_msn_session_c 

Log message:
Fix a crash with the ssl_openssl_write() function. It turns out that
openssl_data can be NULL. The current code does not handle this correctly
which results in dereferencing a NULL pointer via openssl_data-ssl.

Some fixes from 2.10.10 and 2.10.11..

3edc70bf4e09
Emit sending/sent signals when doing /me irc command. Fixes #15750
ee51d84aacbf
msn: Hard fail if buddy list is unavailable.
f6a91e6c77a4
msn: Update Application ID to re-enable buddy list.



CVS: cvs.openbsd.org: ports

2015-01-08 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/08 03:00:12

Modified files:
devel/automake : Makefile 

Log message:
Add 1.15.



CVS: cvs.openbsd.org: ports

2015-01-08 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/08 02:59:17

Log message:
Import automake 1.15.

ok sthen@

Status:

Vendor Tag: brad
Release Tags:   brad_20150108

N ports/devel/automake/1.15/Makefile
N ports/devel/automake/1.15/distinfo
N ports/devel/automake/1.15/patches/patch-bin_automake_in
N ports/devel/automake/1.15/patches/patch-doc_automake_texi
N ports/devel/automake/1.15/pkg/DESCR
N ports/devel/automake/1.15/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-01-07 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/07 01:53:07

Modified files:
multimedia/x264: Makefile distinfo 
multimedia/x264/patches: patch-Makefile patch-configure 
multimedia/x264/pkg: PLIST 

Log message:
Update to x264-20141218.



CVS: cvs.openbsd.org: ports

2015-01-07 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/07 01:42:04

Modified files:
multimedia/gstreamer1/plugins-good: Makefile 
multimedia/gstreamer1/plugins-good/pkg: PLIST-main 
Added files:
multimedia/gstreamer1/plugins-good/patches: patch-configure_ac 

Log message:
Re-enable the V4L2 support after the workarounded that was added to
uvideo(4) has been commited.

ok ajacoutot@



CVS: cvs.openbsd.org: ports

2015-01-07 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/07 19:59:58

Modified files:
multimedia/gstreamer1/plugins-good/patches: patch-configure_ac 

Log message:
Submitted upstream.



CVS: cvs.openbsd.org: ports

2015-01-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/05 02:27:41

Modified files:
graphics/cairo : Makefile 
graphics/cairo/patches: patch-src_cairo-tor-scan-converter_c 
Added files:
graphics/cairo/patches: patch-src_cairo-image-compositor_c 

Log message:
From upstream..

image: Fix crash in _fill_xrgb32_lerp_opaque_spans
tor-scan-converter: Correctly align 64bit types

ok eric@



CVS: cvs.openbsd.org: ports

2015-01-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/05 01:29:37

Modified files:
net/pidgin : Makefile distinfo 
net/pidgin/patches: patch-libpurple_plugins_ssl_Makefile_am 
patch-libpurple_plugins_ssl_Makefile_in 
patch-pidgin_Makefile_in 
patch-pidgin_gtkdialogs_c 
net/pidgin/pkg : PLIST-main 

Log message:
Update to Pidgin 2.10.11.

ok jasper@



CVS: cvs.openbsd.org: ports

2015-01-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/05 14:50:29

Modified files:
mail/postfix/snapshot: Makefile distinfo 

Log message:
Update to Postfix 2.12-20141228.

ok sthen@



CVS: cvs.openbsd.org: ports

2015-01-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/05 17:58:02

Modified files:
devel/llvm/patches: 
patch-lib_Target_X86_MCTargetDesc_X86MCAsmInfo_cpp 

Log message:
Commited upstream.



CVS: cvs.openbsd.org: ports

2015-01-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/05 14:14:47

Modified files:
devel/boost: Makefile 
devel/boost/patches: patch-boost_config_posix_features_hpp 

Log message:
Remove some chunks of the patch now that _POSIX_VERSION has been
bumped higher.



CVS: cvs.openbsd.org: ports

2015-01-03 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/03 22:47:07

Modified files:
infrastructure/mk: bsd.port.mk 

Log message:
garbage collect ELF_TOOLCHAIN



CVS: cvs.openbsd.org: ports

2015-01-03 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/03 23:09:45

Modified files:
infrastructure/mk: arch-defines.mk 

Log message:
garbage collect the ELF property



CVS: cvs.openbsd.org: ports

2015-01-02 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/02 17:54:12

Modified files:
devel/llvm : Makefile 

Log message:
Contrary to pascal@'s disbelief there does seem to be an issue with PIE. Have
the build disable PIE on PowerPC as a workaround for the time being until it
can be determined what the issue is and fixed properly.

Workarounded provided by pascal@



CVS: cvs.openbsd.org: ports

2015-01-02 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2015/01/02 18:23:28

Modified files:
lang/clang : clang.port.mk 

Log message:
bump revision.



CVS: cvs.openbsd.org: ports

2014-12-30 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/30 15:25:47

Modified files:
devel/llvm : Makefile 
devel/llvm/patches: patch-lib_Target_PowerPC_PPCRegisterInfo_td 

Log message:
r223328
[PowerPC] 'cc' should be an alias only to 'cr0'



CVS: cvs.openbsd.org: ports

2014-12-30 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/30 15:41:09

Modified files:
devel/llvm : Makefile 
devel/llvm/patches: patch-lib_Target_PowerPC_PPCISelLowering_cpp 
Removed files:
devel/llvm/patches: patch-lib_Target_PowerPC_PPCRegisterInfo_td 

Log message:
r223708
[PowerPC] Don't use a non-allocatable register to implement the 'cc' alias



CVS: cvs.openbsd.org: ports

2014-12-29 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/29 22:23:32

Modified files:
devel/llvm : Makefile 
Added files:
devel/llvm/patches: patch-lib_MC_MCObjectFileInfo_cpp 

Log message:
r213890
Use the same .eh_frame encoding for 32bit PPC as on i386.



CVS: cvs.openbsd.org: ports

2014-12-27 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/27 17:30:18

Modified files:
devel/llvm : Makefile 
devel/llvm/patches: patch-lib_Target_PowerPC_PPCAsmPrinter_cpp 
patch-lib_Target_PowerPC_PPCISelDAGToDAG_cpp 
Added files:
devel/llvm/patches: 
patch-lib_Target_PowerPC_AsmParser_PPCAsmParser_cpp 

Log message:
r203699
Allow exclamation and tilde to be parsed as a part of the ppc asm operand.

r209821
[PPC] Use alias symbols in address computation.



CVS: cvs.openbsd.org: ports

2014-12-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/16 14:10:31

Modified files:
devel/llvm : Makefile 
Added files:
devel/llvm/patches: patch-tools_clang_lib_CodeGen_TargetInfo_cpp 

Log message:
r221170
Implement vaarg lowering for ppc32. Lowering of scalars and
aggregates is supported. Complex numbers are not.



CVS: cvs.openbsd.org: ports

2014-12-15 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/15 11:19:51

Modified files:
emulators/qemu : Makefile distinfo 
emulators/qemu/patches: patch-configure 
emulators/qemu/pkg: PLIST 

Log message:
Update to QEMU 2.2.0.

ok rpe@



CVS: cvs.openbsd.org: ports

2014-12-15 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/15 13:04:48

Modified files:
multimedia/x265: Makefile 

Log message:
The 32-bit atomic ops functions are missing for mips64 and miod@ says
this definitely won't build on gcc3 archs.



CVS: cvs.openbsd.org: ports

2014-12-14 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/14 13:56:07

Modified files:
math/amd   : Makefile 

Log message:
add missing WANTLIB.



CVS: cvs.openbsd.org: ports

2014-12-12 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/12 04:00:41

Modified files:
mail/postfix/snapshot: Makefile distinfo 

Log message:
Update to Postfix 2.12-20141208.

ok sthen@



CVS: cvs.openbsd.org: ports

2014-12-12 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/12 14:51:39

Modified files:
devel/llvm : Makefile 
Added files:
devel/llvm/patches: 
patch-lib_Transforms_Vectorize_LoopVectorize_cpp 

Log message:
r223171
PR21302. Vectorize only bottom-tested loops.



CVS: cvs.openbsd.org: ports

2014-12-12 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/12 14:52:26

Modified files:
lang/clang : clang.port.mk 

Log message:
bump revision.



CVS: cvs.openbsd.org: ports

2014-12-08 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/08 01:25:05

Modified files:
multimedia/x265: Makefile 
Added files:
multimedia/x265/patches: patch-source_common_constants_cpp 
 patch-source_common_constants_h 
 patch-source_common_param_cpp 
 patch-source_common_primitives_cpp 
 patch-source_common_quant_cpp 
 patch-source_common_threading_h 
 patch-source_common_threadpool_cpp 
 patch-source_common_wavefront_cpp 
 patch-source_common_wavefront_h 
 patch-source_common_winxp_h 
 patch-source_encoder_api_cpp 
 patch-source_encoder_entropy_cpp 
 patch-source_encoder_slicetype_cpp 

Log message:
Two commits from upstream..

constants: remove init/destroyROM functions
threading: use 32bit atomic integer operations exclusively

Tested on amd64/i386/sparc64 now builds on powerpc.



CVS: cvs.openbsd.org: ports

2014-12-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/05 23:10:19

Modified files:
lang/clang : clang.port.mk 

Log message:
bump revision.



CVS: cvs.openbsd.org: ports

2014-12-02 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/12/02 02:41:07

Modified files:
lang/php/5.5   : Makefile 
lang/php/5.5/patches: patch-main_php_ini_c 
lang/php/5.6   : Makefile 
lang/php/5.6/patches: patch-main_php_ini_c 

Log message:
Correct the php.ini file name used for PHP 5.6 to look for php-5.6.ini instead
of php-5.5.ini as it looks like the patch was simply copied over from 5.5 when
creating the new port. Also use the ${PV} variable with the 5.5 / 5.6 ports as
well so as to do things in the same manner as done with the 5.3 / 5.4 ports.

Issue noticed by otto@
ok sthen@



CVS: cvs.openbsd.org: ports

2014-11-26 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/26 20:23:57

Modified files:
graphics/cairo : Makefile 
graphics/cairo/patches: patch-src_cairoint_h 

Log message:
From upstream..

Improve performance of cpu_to_be32 and be32_to_cpu

maintainer timeout.



CVS: cvs.openbsd.org: ports

2014-11-20 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/20 02:11:22

Modified files:
misc/magicpoint: Makefile 
misc/magicpoint/patches: patch-configure_in 
Added files:
misc/magicpoint/patches: patch-contrib_xmindpath_main_c 
 patch-image_misc_c patch-image_new_c 

Log message:
- malloc.h header fixes
- sync WANTLIBs
- remove a no longer necessary patch for configure for the mng test
- add some patches to resolve implicit delaration messages from compiler
- drop USE_GROFF

ok sthen@



CVS: cvs.openbsd.org: ports

2014-11-20 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/20 02:22:31

Modified files:
textproc/lgrind/patches: patch-lgrind_1 patch-lgrindef_5 

Log message:
sync



CVS: cvs.openbsd.org: ports

2014-11-20 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/20 02:46:55

Modified files:
www/mongrel2   : Makefile 
Added files:
www/mongrel2/patches: patch-src_mem_halloc_c 

Log message:
Fix a tedu typo.. the symbol is __OpenBSD__ not __OpenBSD



CVS: cvs.openbsd.org: ports

2014-11-20 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/20 02:58:56

Modified files:
x11/fvwm95/patches: patch-modules_FvwmIconMan_FvwmIconMan_c 

Log message:
sync



CVS: cvs.openbsd.org: ports

2014-11-20 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/20 19:53:54

Modified files:
multimedia/libass: Makefile distinfo 
multimedia/libass/pkg: PLIST 

Log message:
Update to libass 1.12.0.



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 02:36:53

Modified files:
multimedia/transcode: Makefile 
multimedia/transcode/patches: patch-configure_in 

Log message:
Fix the autoconf script to be able to find the pkg-config file for libdvdread.
The file name is dvdread.pc not libdvdread.pc.



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 02:41:05

Modified files:
lang/php   : Makefile.inc 

Log message:
Add the missing PKGSPEC for 5.6.

ok robert@



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 02:52:26

Modified files:
lang/php/5.6   : Makefile 

Log message:
bump REVISION for PKGSPEC.



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 20:17:57

ports/games/irrlamb/patches

Update of /cvs/ports/games/irrlamb/patches
In directory cvs.openbsd.org:/tmp/cvs-serv2209/patches

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



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 21:10:33

ports/graphics/iec16022/patches

Update of /cvs/ports/graphics/iec16022/patches
In directory cvs.openbsd.org:/tmp/cvs-serv5569/patches

Log Message:
Directory /cvs/ports/graphics/iec16022/patches added to the repository



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 23:27:45

Added files:
editors/libreoffice/patches: 
 
patch-stoc_source_corereflection_criface_cxx 

Log message:
Don't use malloc.h header on OpenBSD.

ok robert@



CVS: cvs.openbsd.org: ports

2014-11-19 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/19 23:43:59

ports/productivity/librcps/patches

Update of /cvs/ports/productivity/librcps/patches
In directory cvs.openbsd.org:/tmp/cvs-serv29240/patches

Log Message:
Directory /cvs/ports/productivity/librcps/patches added to the repository



CVS: cvs.openbsd.org: ports

2014-11-18 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/18 02:34:09

ports/devel/luaevent/patches

Update of /cvs/ports/devel/luaevent/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9145/patches

Log Message:
Directory /cvs/ports/devel/luaevent/patches added to the repository



CVS: cvs.openbsd.org: ports

2014-11-18 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/18 03:12:28

Modified files:
astro/libnova/patches: patch-src_Makefile_in 

Log message:
add RCS id



CVS: cvs.openbsd.org: ports

2014-11-18 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/18 03:17:18

Modified files:
audio/calf : Makefile 
devel/cmockery : Makefile 
audio/cmt  : Makefile 
devel/codeblocks: Makefile 
astro/libnova  : Makefile 
devel/luaevent : Makefile 
converters/xlhtml: Makefile 
converters/xlhtml/patches: patch-oledecod_c 
astro/xphoon   : Makefile 
astro/xphoon/patches: patch-xphoon_c 
Added files:
audio/calf/patches: patch-src_ctl_curve_cpp 
patch-src_ctl_keyboard_cpp 
patch-src_ctl_led_cpp 
devel/cmockery/patches: patch-src_cmockery_c 
patch-src_example_allocate_module_c 
patch-src_example_calculator_c 
audio/cmt/patches: patch-src_analogue_cpp 
   patch-src_canyondelay_cpp patch-src_lofi_cpp 
   patch-src_phasemod_cpp patch-src_syndrum_cpp 
   patch-src_vcf303_cpp 
devel/codeblocks/patches: 
  patch-src_include_scripting_sqplus_sqplus_h 
astro/libnova/patches: patch-src_utility_c 
devel/luaevent/patches: patch-src_buffer_event_c 
patch-src_event_buffer_c 

Log message:
Eliminate the use of the malloc.h header and/or replace
with stdlib.h.

ok sthen@



CVS: cvs.openbsd.org: ports

2014-11-18 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/18 04:18:54

Modified files:
games/falconseye/patches: patch-include_system_h 
  patch-sys_unix_Makefile_src 
  patch-win_jtp_gamedata_config_jtp_opts_txt 

Log message:
sync



CVS: cvs.openbsd.org: ports

2014-11-18 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/18 18:07:52

Modified files:
www/xcache : Makefile distinfo 

Log message:
Update to XCache 3.2.0.

ok sthen@



CVS: cvs.openbsd.org: ports

2014-11-16 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/16 20:22:52

Modified files:
graphics/libwebp: Makefile distinfo 
graphics/libwebp/pkg: PLIST 

Log message:
Update to libwebp 0.4.2.

ok juanfra@



CVS: cvs.openbsd.org: ports

2014-11-14 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/14 20:26:40

Modified files:
devel/llvm : Makefile 
Added files:
devel/llvm/patches: patch-include_llvm_CodeGen_SelectionDAG_h 
patch-lib_CodeGen_SelectionDAG_SelectionDAG_cpp 

Log message:
r221709
Totally forget deallocated SDNodes in SDDbgInfo.

What would happen before that commit is that the SDDbgValues associated with
a deallocated SDNode would be marked Invalidated, but SDDbgInfo would keep
a map entry keyed by the SDNode pointer pointing to this list of invalidated
SDDbgNodes. As the memory gets reused, the list might get wrongly associated
with another new SDNode. As the SDDbgValues are cloned when they are transfered,
this can lead to an exponential number of SDDbgValues being produced during
DAGCombine like in http://llvm.org/bugs/show_bug.cgi?id=20893

Note that the previous behavior wasn't really buggy as the invalidation made
sure that the SDDbgValues won't be used. This commit can be considered a
memory optimization and as such is really hard to validate in a unit-test.



CVS: cvs.openbsd.org: ports

2014-11-13 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/13 23:18:42

Modified files:
x11/mplayer: Makefile distinfo 
x11/mplayer/patches: patch-DOCS_man_en_mplayer_1 patch-Makefile 
 patch-configure 

Log message:
Update to MPlayer 20141103 snapshot.

ok sthen@



CVS: cvs.openbsd.org: ports

2014-11-13 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/14 00:49:33

Modified files:
sysutils/duplicity: Makefile distinfo 
sysutils/duplicity/patches: patch-bin_duplicity 
patch-bin_duplicity_1 
patch-duplicity_globals_py 
patch-setup_py 

Log message:
Update to duplicity 0.6.25.

maintainer timeout



CVS: cvs.openbsd.org: ports

2014-11-05 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/05 17:45:31

Modified files:
net/ircd-hybrid: Makefile distinfo 
net/ircd-hybrid/patches: patch-doc_Makefile_in 
 patch-doc_reference_conf 
 patch-modules_core_Makefile_in 
 patch-src_ircd_c 
net/ircd-hybrid/pkg: PLIST 
Removed files:
net/ircd-hybrid/patches: patch-modules_core_m_server_c 
 patch-src_rsa_c 

Log message:
Upgrade to ircd-hybrid 8.2.1.



CVS: cvs.openbsd.org: ports

2014-11-03 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/03 21:27:47

ports/devel/cmockery/patches

Update of /cvs/ports/devel/cmockery/patches
In directory cvs.openbsd.org:/tmp/cvs-serv17950/patches

Log Message:
Directory /cvs/ports/devel/cmockery/patches added to the repository



CVS: cvs.openbsd.org: ports

2014-11-03 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/03 23:01:41

Modified files:
emulators/bochs: Makefile distinfo 
emulators/bochs/patches: patch-Makefile_in patch-_bochsrc 
emulators/bochs/pkg: PLIST 
Added files:
emulators/bochs/patches: patch-iodev_network_slirp_slirp_h 

Log message:
Update to Bochs 2.6.7.

ok ratchov@



CVS: cvs.openbsd.org: ports

2014-11-03 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/03 23:02:40

Modified files:
graphics/blender/patches: 
  
patch-extern_libmv_libmv_base_aligned_malloc_cc 
  patch-intern_ffmpeg_ffmpeg_compat_h 
  patch-intern_guardedalloc_intern_mallocn_c 
  
patch-intern_guardedalloc_intern_mallocn_intern_h 
  patch-source_blender_blenlib_intern_storage_c 

Log message:
Sprinkle some comments.

ok pascal@



CVS: cvs.openbsd.org: ports

2014-11-02 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/02 04:36:48

Modified files:
multimedia/x265: Makefile distinfo 
Removed files:
multimedia/x265/patches: patch-source_CMakeLists_txt 
 patch-source_common_version_cpp 

Log message:
Update to x265 1.4.

ok sthen@



CVS: cvs.openbsd.org: ports

2014-11-01 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/11/01 21:12:42

Modified files:
graphics/png   : Makefile distinfo 

Log message:
Update to png 1.6.14.

ok naddy@



CVS: cvs.openbsd.org: ports

2014-10-30 Thread Brad Smith
CVSROOT:/cvs
Module name:ports
Changes by: b...@cvs.openbsd.org2014/10/30 01:37:31

Modified files:
net/pidgin : Tag: OPENBSD_5_4 Makefile 
Added files:
net/pidgin/patches: Tag: OPENBSD_5_4 
patch-libpurple_protocols_jabber_jutil_c 
patch-libpurple_protocols_mxit_markup_c 
patch-libpurple_protocols_novell_nmevent_c 

Log message:
Security fixes from 2.10.10... CVE-2014-3695, CVE-2014-3696, CVE-2014-3698.

The commit for 2.10.10 mentioned CVE-2014-3697 but after looking at it
again I noticed it is a Windows specific isue.



  1   2   3   4   5   6   7   8   >