OpenBSD ports changes summary for 2015-10-11 to 2015-10-18 inclusive
====================================================================

INDEX                                   archivers/bzip2
archivers/unzip                         archivers/xz
audio/beets                             audio/deadbeef
audio/nap                               audio/quodlibet
comms/kermit                            databases
databases/evolution-data-server         databases/freetds
databases/redis                         databases/tokyocabinet
devel                                   devel/atlas
devel/c2hs                              devel/glib2
devel/goffice                           devel/harfbuzz
devel/hs-bytestring-mmap                devel/hs-hashed-storage
devel/hs-shellish                       devel/hs-test-framework-hunit
devel/hs-test-framework-quickcheck2     devel/libgit2
devel/libsoup                           devel/mercurial
devel/p5-Class-Mix                      devel/p5-Data-GUID
devel/p5-Date-Extract                   devel/p5-Module-Build-XSUtil
devel/p5-Mouse                          devel/p5-Role-Basic
devel/p5-Symbol-Global-Name             devel/pango
devel/py-gevent                         devel/py-greenlet
devel/py-ioflo                          devel/ruby-rspec
devel/smpeg                             devel/tortoisehg
devel/vte                               devel/vte3
devel/xulrunner                         fonts/cantarell-fonts
games/amph                              games/fire
games/gemdropx                          games/gtkballs
games/heroes                            games/icebreaker
games/lgeneral                          games/monadius
games/newvox                            games/sdlzombies
games/xpilot                            graphics/GraphicsMagick
graphics/blender                        graphics/clutter
graphics/comix                          graphics/compface
graphics/dumpmpeg                       graphics/enjoympeg
graphics/evince                         graphics/ffmpeg
graphics/gifsicle                       graphics/iview
graphics/p5-Imager                      graphics/pngcrush
infrastructure/bin                      infrastructure/db
infrastructure/lib                      infrastructure/mk
lang/fsharp                             lang/lua
lang/parrot                             lang/php
mail                                    mail/claws-mail
mail/evolution                          mail/evolution-ews
mail/mew                                mail/p5-Email-Address-List
mail/p5-Mail-Tools                      mail/postfix
mail/rspamd                             mail/z-push
math/gnumeric                           math/mcsim
math/sc                                 math/yorick
meta/gnome                              misc/libosinfo
multimedia/get_flash_videos             multimedia/gstreamer-0.10
multimedia/gstreamer1                   multimedia/minidlna
multimedia/xvidcore                     net/GeoIP
net/curl                                net/fping
net/freeradius                          net/glib2-networking
net/librenms                            net/lldpd
net/monitoring-plugins                  net/nagios
net/olsrd                               net/p5-Net-OpenSSH
net/p5-Net-RawIP                        net/p5-Net-SFTP-Foreign
net/pure-ftpd                           net/samba
net/sirc                                net/wireshark
plan9/rc                                print/poppler
print/scribus                           productivity/calcurse
productivity/tryton                     security
security/bunny                          security/chrootuid
security/libsodium                      security/opendnssec
security/p5-Crypt-Eksblowfish           security/p5-Crypt-X509
security/pinentry                       security/polarssl
security/py-secretstorage               security/stunnel
security/tclgpg                         security/xca
shells/nsh                              sysutils/bacula
sysutils/login_duo                      sysutils/login_krb5
sysutils/login_ldap                     sysutils/lsof
sysutils/salt                           sysutils/xuvmstat
telephony/asterisk                      telephony/asterisk-g729
textproc                                textproc/bibelot
textproc/go-xlsx                        textproc/gspell
textproc/palm-bookmarks                 textproc/patchutils
textproc/pdfpc                          textproc/podofo
www                                     www/chromium
www/firefox-esr                         www/firefox-i18n
www/goaccess                            www/lighttpd
www/mozilla-firefox                     www/owncloud
www/p5-HTML-FormatText-WithLinks-AndTableswww/p5-Mojo
www/p5-libwww                           www/py-django
www/rt                                  www/seamonkey
www/squidclamav                         www/webkitgtk4
x11                                     x11/dbus
x11/fvwm2                               x11/gnome
x11/gnustep                             x11/gtk+3
x11/gtksourceview3                      x11/kde
x11/sakura                              x11/vlc
x11/wxglade                             

== INDEX ============================================================= 01/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/INDEX

INDEX


  > sync, 9140 (naddy@)

== archivers ========================================================= 02/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/archivers

bzip2

  ~ Makefile                              ~ patches/patch-bzip2_c

  > bzip2 now also needs rpath (sthen@)

  ~ Makefile                              ~ patches/patch-bzip2_c

  > err.h for bzip2 as well, pointed out by jca@ (sthen@)

  ~ Makefile                              ~ patches/patch-bzip2_c

  > use standard "local" error handling (sprintf+exit/message_fatal) rather
  > than
  > err() to avoid the need to pull in err.h, idea from deraadt (sthen@)

  ~ Makefile                              ~ patches/patch-bzip2_c

  > If bzip2 is used to compress or decompress a single file to stdout,
  > or if it's used in a pipeline, then it can further pledge to only use
  > stdio-related system calls while doing the actual de/compression.
  > Since ports uses 'bzip2 -dc [file] | tar xf -', it can benefit from
  > this added protection during file extraction. (sthen@)

unzip

  ~ Makefile                              + patches/patch-funzip_c
  + patches/patch-unzip_c                 

  > unzip can pledge to use the following: stdio rpath wpath cpath fattr tty.
  > This is possible now that pledge(2) treats TIOCGWINSZ like TIOCGETA,
  > allowing
  > it to return ENOTTY rather than killing the process for a non-terminal
  > device. (sthen@)

xz

  ~ Makefile                              + patches/patch-src_xz_main_c

  > Initial pledge() for xz, after initial setup (which looks at a few sysctls)
  > it's easy to drop to only allowing stdio and file operations. There's scope
  > to
  > push this further (e.g. when used in a simple pipeline, no more than stdio
  > should be necessary).  ok naddy@ (maintainer). (sthen@)

  ~ Makefile                              ~ patches/patch-src_xz_main_c

  > oops, missed err.h (sthen@)

  ~ Makefile                              ~ patches/patch-src_xz_main_c

  > use standard "local" error handling (sprintf+exit/message_fatal) rather
  > than
  > err() to avoid the need to pull in err.h, idea from deraadt (sthen@)

  - patches/patch-src_xz_main_c           ~ Makefile

  > revert incomplete pledge support; there are problems with signals and
  > with multi-threading (naddy@)

  ~ Makefile                              ~ distinfo

  > maintenance update to 5.2.2 (naddy@)

== audio ============================================================= 03/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/audio

beets

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > update to beets-1.3.15 (sthen@)

deadbeef

  ~ Makefile                              
  ~ patches/patch-plugins_vfs_zip_vfs_zip_c

  > sync with upstream (dcoppa@)

nap

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

quodlibet

  ~ Makefile                              ~ distinfo

  > update to quodlibet-3.5.1 (sthen@)

== comms ============================================================= 04/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/comms

kermit

  ~ Makefile                              

  > Move to http mirror. (bentley@)

== databases ========================================================= 05/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/databases

databases

  ~ Makefile                              

  > +tokyocabinet (sthen@)

evolution-data-server

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to evolution-data-server-3.18.0. (ajacoutot@)

  ~ Makefile                              ~ distinfo

  > Update to evolution-data-server-3.18.1. (ajacoutot@)

freetds

  ~ Makefile                              ~ distinfo

  > update to freetds-0.95.21 (sthen@)

redis

  ~ Makefile                              ~ distinfo
  ~ patches/patch-redis_conf              

  > Bugfixing update to redis-3.0.5 (dcoppa@)

tokyocabinet

  + Makefile                              + distinfo
  + patches/patch-Makefile_in             + patches/patch-configure
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     import ports/databases/tokyocabinet, ok landry@

  ~ Makefile                              ~ pkg/PLIST

  > tweaks to tokyocabinet port:
  > - regen PLIST
  > - use srand_deterministic for tests
  > - add a comment explaining about the test failures, which appear to
  > be possibly related to cache coherency (tokyocabinet has code for non-
  > UBC systems, but some of the failures suggest it may not be working
  > correctly). (sthen@)

== devel ============================================================= 06/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/devel

devel

  ~ Makefile                              

  > +p5-Module-Build-XSUtil (robert@)

  ~ Makefile                              

  > add p5-Class-Mix, p5-Data-GUID, p5-Date-Extract, p5-Role-Basic,
  > p5-Symbol-Global-Name (robert@)

atlas

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

c2hs

  ~ Makefile                              

  > Mark as broken. It either needs an update (which requires more
  > hs-ports) or will just get removed. (kili@)

glib2

  ~ Makefile                              ~ distinfo
  ~ patches/gcc3-patch-glib_tests_Makefile_in
  ~ pkg/PLIST                             

  > Update to glib2-2.46.1. (ajacoutot@)

  - patches/patch-gio_gunixmounts_c       ~ Makefile
  + patches/patch-gio_gunionvolumemonitor_c

  > Better workaround for BZ #753378. (ajacoutot@)

goffice

  ~ Makefile                              ~ distinfo

  > Update to goffice-0.10.24. (ajacoutot@)

harfbuzz

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST-main                        

  > Update to harfbuzz-1.0.5. (ajacoutot@)

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST-main                        

  > Update to harfbuzz-1.0.6. (ajacoutot@)

hs-bytestring-mmap

  ~ Makefile                              

  > Missing bump.
  > noticed by espie@ (kili@)

hs-hashed-storage

  ~ Makefile                              

  > Explicitely mark as broken to remove dpb clutter.
  > This will be removed after an uodate of devel/darcs. (kili@)

hs-shellish

  ~ Makefile                              

  > Explicitely mark as broken to remove dpb clutter.
  > This will be removed after an uodate of devel/darcs. (kili@)

hs-test-framework-hunit

  ~ Makefile                              

  > Explicitely mark as broken to remove dpb clutter.
  > This will be removed after an uodate of devel/darcs. (kili@)

hs-test-framework-quickcheck2

  ~ Makefile                              

  > Explicitely mark as broken to remove dpb clutter.
  > This will be removed after an uodate of devel/darcs. (kili@)

libgit2

  ~ libgit2/Makefile                      ~ libgit2/distinfo
  ~ libgit2/pkg/PLIST                     

  > update to libgit2-0.23.3 (jasper@)

  ~ libgit2-glib/Makefile                 ~ libgit2-glib/distinfo
  ~ libgit2-glib/pkg/PLIST                

  > update to libgit2-glib-0.23.6 (jasper@)

  ~ py-git2/Makefile                      ~ py-git2/distinfo
  ~ py-git2/pkg/PLIST                     

  > update to py-git2-0.23.2 (jasper@)

libsoup

  ~ Makefile                              ~ distinfo

  > Update to libsoup-2.52.1. (ajacoutot@)

mercurial

  ~ Makefile                              ~ distinfo

  > update mercurial to 3.5.2.
  > ok aja@. (rpointel@)

p5-Class-Mix

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Class-Mix-0.005, ok ajacoutot@

p5-Data-GUID

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Data-GUID-0.048, ok ajacoutot@

p5-Date-Extract

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Date-Extract-0.05, ok ajacoutot@

  ~ Makefile                              + patches/patch-t_05-format_t

  > Add modinst style to stop possible CPAN download,
  > include TDEP in BDEP, fix 05-format.t test.
  > Ok robert (nigel@)

p5-Module-Build-XSUtil

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     import of Module::Build::XSUtil which is subclass of Module::Build

p5-Mouse

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > update to 2.4.2; ok ajacoutot@ (robert@)

p5-Role-Basic

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Role-Basic-0.13, ok ajacoutot@

p5-Symbol-Global-Name

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Symbol-Global-Name-0.05, ok ajacoutot@

pango

  ~ Makefile                              ~ distinfo

  > Update to pango-1.38.1. (ajacoutot@)

py-gevent

  - patches/patch-gevent_ssl_py           - patches/patch-setup_py
  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > update to gevent 1.0.2
  > OK and cluestick from sthen@ (czarkoff@)

py-greenlet

  ~ Makefile                              ~ distinfo
  ~ patches/patch-slp_platformselect_h    

  > update to greenlet 0.4.9
  > OK sthen@ (czarkoff@)

py-ioflo

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to py-ioflo-1.4.1. (ajacoutot@)

ruby-rspec

  ~ specinfra/Makefile                    ~ specinfra/distinfo
  ~ specinfra/pkg/PLIST                   

  > update to specinfra-2.44.0 (jasper@)

smpeg

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

tortoisehg

  ~ Makefile                              ~ distinfo

  > update tortoisehg to 3.5.2.
  > ok aja@. (rpointel@)

vte

  ~ Makefile                              ~ pkg/PLIST-main

  > Match devel/vte3 and disable the gnome-pty-helper.
  > ok jasper@ (ajacoutot@)

vte3

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             + patches/patch-src_vte_cc

  > update to vte-0.42.0 (jasper@)

  - patches/patch-src_vte_cc              ~ Makefile
  ~ distinfo                              

  > update to vte-0.42.1 (jasper@)

xulrunner

  ~ 24/patches/patch-config_system-headers
  ~ 24/patches/patch-js_src_config_system-headers
  ~ 24/patches/patch-mozilla_config_system-headers

  > Preventive fixes for the upcoming update to freetype-2.6.1 (dcoppa@)

== fonts ============================================================= 07/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/fonts

cantarell-fonts

  ~ Makefile                              ~ distinfo

  > Update to cantarell-fonts-0.0.17.2. (ajacoutot@)

== games ============================================================= 08/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/games

amph

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

fire

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

gemdropx

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

gtkballs

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

heroes

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

icebreaker

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

lgeneral

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

monadius

  ~ Makefile                              

  > Mark as broken for now, until I find the time to fix (or remove) it.
  > (kili@)

newvox

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

sdlzombies

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

xpilot

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

== graphics ========================================================== 09/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/graphics

GraphicsMagick

  ~ Makefile                              ~ distinfo
  ~ patches/patch-configure               

  > update to GraphicsMagick 1.3.22, from Brad. (sthen@)

blender

  - pkg/patch-source_gameengine_Expressions_InputParser_cpp
  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             
  + pkg/patch-source_gameengine_Expressions_intern_InputParser_cpp

  > Update to blender 2.76. (pascal@)

clutter

  ~ clutter-gst/Makefile                  ~ clutter-gst/distinfo

  > update to clutter-gst-3.0.14 (jasper@)

  ~ clutter-gtk/Makefile                  ~ clutter-gtk/distinfo
  ~ clutter-gtk/pkg/PLIST                 

  > update to clutter-gtk-1.6.6 (jasper@)

  ~ core/Makefile                         ~ core/distinfo
  ~ core/patches/patch-clutter_Makefile_in
  ~ core/patches/patch-configure          

  > update to clutter-1.24.2 (jasper@)

comix

  ~ Makefile                              

  > call gzip(1) directly (naddy@)

compface

  ~ Makefile                              

  > Switch to working http mirror. Remove unresponsive maintainer. (bentley@)

dumpmpeg

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

enjoympeg

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

evince

  ~ Makefile                              + patches/patch-libview_ev-view_c

  > Fix hich CPU usage when selecting text.
  > reported by mpi@ (ajacoutot@)

  ~ Makefile                              

  > Add a LIB_DEPENDS to x11/gtk+3 to unbreak the -light FLAVOR. (ajacoutot@)

ffmpeg

  ~ Makefile                              ~ patches/patch-libavcodec_aaccoder_c
  ~ patches/patch-libavcodec_aaccoder_trellis_h
  ~ patches/patch-libavcodec_aaccoder_twoloop_h
  ~ patches/patch-libavcodec_aacenc_c     ~ patches/patch-libavcodec_aacenc_h
  ~ patches/patch-libavcodec_aacenc_is_c
  ~ patches/patch-libavcodec_aacenc_pred_c
  ~ patches/patch-libavcodec_aacenc_quantization_h
  ~ patches/patch-libavcodec_aacenc_utils_h
  ~ patches/patch-libavcodec_aacenctab_h
  ~ patches/patch-libavcodec_aacpsy_c     
  ~ patches/patch-libavcodec_mips_aaccoder_mips_c
  ~ patches/patch-libavcodec_psymodel_h   + patches/patch-libavcodec_aac_h
  + patches/patch-libavcodec_aacenc_is_h
  + patches/patch-libavcodec_aacenc_pred_h
  + patches/patch-libavcodec_aacenc_quantization_misc_h
  + patches/patch-libavcodec_lpc_c        + patches/patch-libavcodec_mathops_h
  + patches/patch-libavcodec_psymodel_c   + patches/patch-libavutil_opt_c
  + patches/patch-libavutil_opt_h         + patches/patch-tests_fate_aac_mak

  > Some more AAC stuffs.
  > from Brad (maintainer) (ajacoutot@)

  ~ Makefile                              ~ patches/patch-libavcodec_aac_h
  ~ patches/patch-libavcodec_aaccoder_c   ~ patches/patch-libavcodec_aacenc_c
  ~ patches/patch-libavcodec_aacenc_h     
  ~ patches/patch-libavcodec_aacenc_pred_c
  ~ patches/patch-libavcodec_aacenc_pred_h
  ~ patches/patch-libavcodec_aacenc_utils_h
  ~ patches/patch-libavcodec_aacenctab_h
  ~ patches/patch-libavcodec_mips_aaccoder_mips_c
  ~ patches/patch-libavutil_opt_c         + patches/patch-libavcodec_Makefile
  + patches/patch-libavcodec_aacdectab_h
  + patches/patch-libavcodec_aacenc_ltp_c
  + patches/patch-libavcodec_aacenc_ltp_h
  + patches/patch-libavcodec_aactab_h     

  > Guess what... more AAC stuffs.
  > from Brad (maintainer) (ajacoutot@)

gifsicle

  ~ Makefile                              

  > Prune dead mirrors.
  > ok benoit@ (bentley@)

iview

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

p5-Imager

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

pngcrush

  ~ Makefile                              ~ distinfo

  > Update to pngcrush-1.7.87. (benoit@)

== infrastructure ==================================================== 10/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/infrastructure

bin

  ~ dpb                                   

  > "summary" works better if I actually call the relevant code. (espie@)

db

  ~ user.list                             

  > reserve 757 for opendnssec (sthen@)

lib

  ~ DPB/Engine.pm                         

  > add a "summary" log that shows for each non built path, why it was non
  > built.
  > Makes loops obvious. Probably will come with sorting later on. (espie@)

mk

  ~ README.internals                      ~ bsd.port.mk

  > Replace "decompressor file | ..." with "decompressor <file | ..."
  > to run the decompressors as pure filters that can potentially be
  > pledge(2)d down to "stdio".
  > Get rid of the useless and mostly unused GZCAT and GUNZIP_CMD
  > variables while there.
  > ok sthen@ espie@ (naddy@)

  ~ bsd.port.mk                           

  > for decompressing .xz (.lzma) distfiles, switch to the simpler xzdec
  > (lzmadec) program; ok espie@ sthen@ (naddy@)

== lang ============================================================== 11/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/lang

fsharp

  ~ Makefile                              

  > BROKEN = unreliable build, frequently hangs in dpb (ajacoutot@)

lua

  ~ lua.port.mk                           

  > Only append lua52/lua53 to FLAVORS if MODLUA_VERSION is not defined.
  > I think this matches the intent of the comment above, and avoids producing
  > flavours for various ports (games, etc) where it doesn't make sense to
  > support multiple versions of lua. Makes sense to jasper@, and it doesn't
  > produce any unexpected changes to 'dump-vars' output across the tree.
  > Thanks to Pascal de Bruijn from darktable for letting me know about the
  > forthcoming darktable release and identifying this as an issue with
  > the port. (sthen@)

parrot

  ~ Makefile                              

  > Add http mirror.
  > ok pascal@ (bentley@)

php

  ~ 5.5/Makefile                          ~ 5.5/distinfo

  > update to 5.5.30 (robert@)

  ~ Makefile.inc                          ~ 5.4/Makefile
  ~ 5.4/distinfo                          ~ 5.5/Makefile
  ~ 5.5/distinfo                          ~ 5.6/Makefile
  ~ 5.6/distinfo                          

  > Re-introduce the suhosin extension and the no_suhosin flavor as well
  > which can be used to disable the suhosin extension in the php packages.
  > We are not going to build this flavor by default because people should
  > use suhosin by default, but in some corner-cases if someone wants to
  > disable
  > it, the flavor can be used.
  > Also move some variables and the sybase_ct subpackage from the Makefiles
  > to the shared one, there is no need to have the same data in 3 different
  > Makefiles. (robert@)

== mail ============================================================== 12/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/mail

mail

  ~ Makefile                              

  > add p5-Email-Address-List (robert@)

claws-mail

  ~ Makefile                              ~ distinfo
  ~ patches/patch-configure_ac            ~ pkg/PLIST-main
  + patches/patch-src_common_utils_c      

  > Update to claws-mail 3.13.0, from maintainer Daniel Jakots. (landry@)

evolution

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to evolution-3.18.0. (ajacoutot@)

  ~ Makefile                              ~ distinfo

  > Update to evolution-3.18.1. (ajacoutot@)

evolution-ews

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to evolution-ews-3.18.0. (ajacoutot@)

  ~ Makefile                              ~ distinfo

  > Update to evolution-ews-3.18.1. (ajacoutot@)

mew

  ~ Makefile                              + patches/patch-mew-vars_el

  > Use ftp(1) instead of wget for `mew-prog-pgpkey'. (yasuoka@)

p5-Email-Address-List

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Email-Address-List-0.05, ok ajacoutot@

p5-Mail-Tools

  ~ Makefile                              ~ distinfo

  > update to 2.14, ok ajacoutot@ (robert@)

postfix

  ~ stable/Makefile                       ~ stable/distinfo
  ~ stable/pkg/PLIST                      

  > update to Postfix 3.0.3, from Brad. (sthen@)

rspamd

  ~ Makefile                              ~ distinfo
  ~ patches/patch-CMakeLists_txt          

  > update to rspamd-1.0.6, from Brad (sthen@)

z-push

  ~ Makefile                              ~ distinfo
  ~ patches/patch-index_php               ~ pkg/PLIST

  > update to 2.2.4 (robert@)

== math ============================================================== 13/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/math

gnumeric

  ~ Makefile                              ~ distinfo

  > Update to gnumeric-1.12.24. (ajacoutot@)

mcsim

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

sc

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

yorick

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

== meta ============================================================== 14/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/meta

gnome

  ~ Makefile                              

  > Depend on security/pinentry,-gnome3. (ajacoutot@)

  ~ Makefile                              

  > Move the x11/gnome/keyring dependency here. (ajacoutot@)

  ~ Makefile                              

  > Add and extend comments. (ajacoutot@)

  ~ Makefile                              

  > Add x11/gnome/todo. (ajacoutot@)

  ~ Makefile                              

  > Welcome GNOME 3.18.1!
  > (well sort of, updated gnome-shell is still missing) (ajacoutot@)

== misc ============================================================== 15/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/misc

libosinfo

  ~ Makefile                              
  + patches/patch-data_oses_openbsd_xml_in

  > - add openbsd 5.7+5.8
  > ok aja@ (MAINTAINER) (jasper@)

== multimedia ======================================================== 16/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/multimedia

get_flash_videos

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > update to a newer github version of get_flash_videos (sthen@)

  ~ Makefile                              

  > fix MASTER_SITES for get_flash_videos, MODULES=cpan overrides the default
  > for
  > github GH_* variables, so it needs to be set explicitly to
  > MASTER_SITES_GITHUB.
  > found by naddy (sthen@)

gstreamer-0.10

  ~ plugins-base/Makefile                 

  > There's a weird dependency loop with gvfs; it was there before but the
  > bootstrap FLAVOR took care of it which it's not the case anymore.
  > So drop the dependency until I can make sense of how dpb logs. (ajacoutot@)

  ~ plugins-base/Makefile                 

  > Re-add gvfs dependency. (ajacoutot@)

gstreamer1

  ~ plugins-base/Makefile                 

  > There's a weird dependency loop with gvfs; it was there before but the
  > bootstrap FLAVOR took care of it which it's not the case anymore.
  > So drop the dependency until I can make sense of how dpb logs. (ajacoutot@)

  ~ plugins-base/Makefile                 

  > Re-add gvfs dependency. (ajacoutot@)

minidlna

  - patches/patch-Makefile_am             - patches/patch-Makefile_in
  - patches/patch-rescan_c                - patches/patch-rescan_h
  ~ Makefile                              ~ patches/patch-minidlna_c
  ~ patches/patch-scanner_c               ~ patches/patch-upnpglobalvars_c
  ~ patches/patch-upnpglobalvars_h        + patches/patch-inotify_c
  + patches/patch-inotify_h               

  > update the minidlna port to use a newer version of the 'rescan' patch
  > (sthen@)

xvidcore

  ~ Makefile                              ~ distinfo

  > Update to xvidcore-1.3.4. (ajacoutot@)

== net =============================================================== 17/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/net

GeoIP

  ~ Makefile                              ~ distinfo

  > update GeoIP port to use a newer geolite database (sthen@)

curl

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > update to 7.45.0 (naddy@)

fping

  ~ Makefile                              ~ distinfo

  > update to fping 3.11 (sthen@)

  ~ Makefile                              ~ distinfo

  > update to fping-3.12, fixes the new -R (random) flag with IPv6 (sthen@)

freeradius

  - patches/patch-raddb_sites-available_default
  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST-main                        

  > update to freeradius-2.2.9, include a crash fix, missing CRL checking
  > (CVE-2015-4680) and a fix for EAP-TTLS with TLSv1.2 (notably affecting
  > Android 6.x wifi clients in TTLS configurations). OK pea@
  > Note: not updating to 3.x at present as the build system first requires
  > significant untangling for use with ports (I've spent days on it already
  > and still not there). (sthen@)

  - patches/patch-raddb_sites-available_default
  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST-main                        

  TAGGED OPENBSD_5_8
  > MFC: update to freeradius-2.2.9, include a crash fix, missing CRL checking
  > (CVE-2015-4680) and a fix for EAP-TTLS with TLSv1.2 (notably affecting
  > Android 6.x wifi clients in TTLS configurations). (sthen@)

glib2-networking

  ~ Makefile                              ~ distinfo

  > Update to glib2-networking-2.46.1. (ajacoutot@)

librenms

  ~ Makefile                              ~ distinfo
  ~ patches/patch-config_php_default      ~ patches/patch-html_install_php
  ~ patches/patch-includes_defaults_inc_php
  ~ patches/patch-includes_definitions_inc_php
  ~ patches/patch-scripts_distro          ~ pkg/PLIST

  > update to librenms-201510 (sthen@)

  ~ Makefile                              ~ pkg/PLIST
  + pkg/patch-includes_discovery_sensors-openbsd_inc_php
  + pkg/patch-includes_discovery_sensors_inc_php

  > add support for snmpd(8)'s OPENBSD-SENSORS-MIB, merged upstream (sthen@)

lldpd

  ~ Makefile                              
  + patches/patch-src_daemon_protocols_lldp_c

  > add an upstream patch to lldpd: avoid an overflow on a (static) buffer
  > when a remote device advertises a too-large management address while still
  > respecting TLV boundaries. (sthen@)

  ~ Makefile                              
  + patches/patch-src_daemon_protocols_lldp_c

  TAGGED OPENBSD_5_8
  > MFC: add an upstream patch to lldpd: avoid an overflow on a (static) buffer
  > when a remote device advertises a too-large management address while still
  > respecting TLV boundaries. (sthen@)

  - patches/patch-src_daemon_protocols_lldp_c
  ~ Makefile                              ~ distinfo

  TAGGED OPENBSD_5_8
  > update to lldpd-0.7.19, rolling in management address TLV fix (sthen@)

monitoring-plugins

  - patches/patch-plugins_sslutils_c      ~ Makefile
  ~ distinfo                              ~ patches/patch-configure_ac

  > update to monitoring-plugins-2.1.2 (sthen@)

nagios

  ~ p5-Nagios-Plugin/Makefile             

  > take maintainer of p5-Monitoring-Plugin, and change HOMEPAGE to github
  > as it's more useful than the default from cpan.port.mk. (sthen@)

olsrd

  ~ Makefile                              

  > call gzip(1) directly (naddy@)

p5-Net-OpenSSH

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to p5-Net-OpenSSH-0.64.
  > ok Abel Abraham Camarillo Ojeda (maintainer) (benoit@)

p5-Net-RawIP

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

p5-Net-SFTP-Foreign

  ~ Makefile                              ~ distinfo

  > Update to Net-SFTP-Foreign-1.79. (benoit@)

pure-ftpd

  - patches/patch-configure_ac            - patches/patch-src_alt_arc4random_h
  ~ Makefile                              ~ distinfo

  > update to pure-ftpd 1.0.42, from Brad (sthen@)

samba

  ~ Makefile                              ~ distinfo

  > Bugfix update to samba-4.1.21
  > "diff looks fine" Ian McWilliam (jca@)

sirc

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

wireshark

  - patches/patch-configure               ~ Makefile
  ~ distinfo                              

  > update to wireshark-1.12.8 (sthen@)

== plan9 ============================================================= 18/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/plan9

rc

  ~ Makefile                              ~ distinfo

  > the external editline library is not required since that openbsd editline
  > in base is OK and happy.
  > sha256/binaries in the rc package are equal `with and without' this change,
  > that means that the editline provided by external editline-1.5.tar.gz was
  > never used,
  > so we can kill it with fire.
  > regen distfile; no package change...so no need bump.
  > noticed and diff from Michael Reed(MAINTAINER) (gsoares@)

== print ============================================================= 19/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/print

poppler

  ~ Makefile                              ~ distinfo
  ~ patches/patch-Makefile_in             ~ patches/patch-aclocal_m4

  > Update to poppler-0.37.0.
  > ok aja@ (kili@)

scribus

  ~ Makefile                              

  > scribus has a hidden dep on PoDoFo, found by naddy@ (sthen@)

== productivity ====================================================== 20/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/productivity

calcurse

  ~ Makefile                              + patches/patch-src_args_c
  + patches/patch-src_utils_c             

  > Fix date output in calcurse 'one-shot' mode ('-d' or '-Q --filter-type cal
  > --days') on 32-bit arch following 64-bit time_t. Reported by Raf Czlonka,
  > ok ajacoutot@ (sthen@)

tryton

  ~ Makefile.inc                          

  > Add PORTROACH limit. (ajacoutot@)

== security ========================================================== 21/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/security

security

  ~ Makefile                              

  > +opendnssec; ok sthen@ (jca@)

  ~ Makefile                              

  > Kill trailing whitespace. (jca@)

  ~ Makefile                              

  > add p5-Crypt-Eksblowfish, p5-Crypt-X509 (robert@)

  ~ Makefile                              

  > Build all pinentry PSEUDO_FLAVORS. (ajacoutot@)

bunny

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

chrootuid

  ~ Makefile                              

  > Add http mirror. (bentley@)

libsodium

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > update to libsodium-1.0.4 (sthen@)

opendnssec

  + Makefile                              + distinfo
  + pkg/PLIST                             + pkg/DESCR
  + pkg/README                            + pkg/opendnssec.rc
  + pkg/PFRAG.sqlite3                     + pkg/PFRAG.mysql
  + patches/patch-conf_conf_xml_in        

  > New import:
  >     Import opendnssec-1.4.8.2; from maintainer Patrik Lundin

p5-Crypt-Eksblowfish

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Crypt-Eksblowfish-0.009, ok ajacoutot@

p5-Crypt-X509

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-Crypt-X509-0.51, ok ajacoutot@

pinentry

  ~ Makefile                              ~ distinfo
  + patches/patch-configure               + pkg/DESCR-gnome3
  + pkg/PLIST-gnome3                      

  > Update to pinentry-0.9.6.
  > Add a -gnome3 subpackage which will be needed by an upcoming gnome-keyring
  > update. (ajacoutot@)

  - patches/patch-configure               

  > No need for that patch anymore; jasper@ fixed our pkg-config(1).
  > (ajacoutot@)

  ~ Makefile                              

  > Add a bootstrap FLAVOR to prevent a loop:
  > pinentry,-gnome3 -> gcr -> gnupg2 -> pinentry (ajacoutot@)

polarssl

  ~ Makefile                              ~ distinfo

  > Update to polarssl/mbedtls-2.1.2. (benoit@)

py-secretstorage

  ~ Makefile                              

  > Add comment; no pkg change. (ajacoutot@)

stunnel

  - patches/patch-src_ssl_c               ~ Makefile
  ~ distinfo                              ~ patches/patch-src_options_c
  ~ patches/patch-src_verify_c            
  ~ patches/patch-tools_stunnel_conf-sample_in
  ~ pkg/PLIST                             + patches/patch-src_stunnel3_in

  >  (gsoares@)

tclgpg

  ~ Makefile                              ~ distinfo

  > update tclgpg to snapshot from 2015-10-08
  > OK sthen@ (czarkoff@)

xca

  - patches/patch-configure               ~ Makefile
  ~ distinfo                              ~ patches/patch-widgets_hashBox_cpp

  > update to xca-1.3.2 (sthen@)

== shells ============================================================ 22/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/shells

nsh

  ~ Makefile                              

  > BROKEN=need to be adapted to current pflow(4)
  > ok sthen@ (ajacoutot@)

== sysutils ========================================================== 23/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/sysutils

bacula

  ~ Makefile                              

  > Drop myself from MAINTAINER and leave the baby to Stuart ;-)
  > ok sthen@ (ajacoutot@)

login_duo

  ~ Makefile                              ~ distinfo

  > Update login_duo to 1.9.16 (jturner@)

login_krb5

  ~ Makefile                              ~ distinfo

  > Update to login_krb5-5.8.3. (ajacoutot@)

login_ldap

  ~ Makefile                              + patches/patch-login_ldap_c

  > use explicit_bzero in login_ldap
  > reset maintainer (email address bounces) (sthen@)

lsof

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

salt

  - patches/patch-salt_utils___init___py
  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to salt-2015.8.1. (ajacoutot@)

xuvmstat

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

== telephony ========================================================= 24/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/telephony

asterisk

  - patches/patch-channels_chan_sip_c     
  - patches/patch-configs_asterisk_conf_sample
  - patches/patch-configs_res_odbc_conf_sample
  - patches/patch-configs_sip_conf_sample
  - patches/patch-main_features_c         - patches/patch-main_utils_c
  - patches/patch-res_res_fax_c           ~ Makefile
  ~ distinfo                              ~ patches/patch-Makefile
  ~ patches/patch-bootstrap_sh            ~ patches/patch-configure_ac
  ~ patches/patch-contrib_scripts_safe_asterisk
  ~ patches/patch-main_editline_configure
  ~ patches/patch-main_logger_c           ~ patches/patch-sounds_sounds_xml
  ~ pkg/PLIST-main                        
  + patches/patch-build_tools_cflags_xml
  + patches/patch-configs_samples_asterisk_conf_sample
  + patches/patch-configs_samples_res_odbc_conf_sample
  + patches/patch-configs_samples_sip_conf_sample
  + patches/patch-utils_Makefile          

  > update to asterisk-13.6.0
  > this is a major update - upgrading users should review UPGRADE-12.txt and
  > UPGRADE.txt in /usr/local/share/doc/asterisk. some configurations will work
  > unchanged, but there have been big changes in other areas, notably AMI,
  > CDR and CEL. (sthen@)

  ~ Makefile                              

  > tweaks to asterisk port: fix copy-and-pasto in COMMENT-tds, tidy Makefile
  > (sthen@)

asterisk-g729

  ~ Makefile                              

  > needs libtool m4 files, found by nigel@ (sthen@)

  ~ Makefile                              

  > switch asterisk-g729 for asterisk 13.x (sthen@)

  ~ Makefile                              

  > ...and bump (sthen@)

== textproc ========================================================== 25/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/textproc

textproc

  ~ Makefile                              

  > +gspell (ajacoutot@)

bibelot

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

go-xlsx

  ~ Makefile                              ~ distinfo

  > update to xlsx snapshot of 2015-10-10
  > OK sthen@ (czarkoff@)

gspell

  + Makefile                              + distinfo
  + pkg/PLIST                             + pkg/DESCR

  > New import:
  >     Import gspell-0.1.0.

  ~ Makefile                              

  > Missing dependency on devel/iso-codes.
  > reported by naddy@ (ajacoutot@)

palm-bookmarks

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

patchutils

  - patches/patch-doc_editdiff_1          - patches/patch-editdiff_in
  - patches/patch-espdiff_in              - patches/patch-move-to-front
  - patches/patch-src_util_c              
  - patches/patch-tests_combine2_run-test
  - patches/patch-tests_combine3_run-test
  ~ Makefile                              ~ distinfo
  + patches/patch-scripts_editdiff_in     + patches/patch-scripts_espdiff_in
  + patches/patch-scripts_move-to-front   

  > update to patchutils-0.3.4
  > tests now need bash (for some reason...not quite sure why) (sthen@)

pdfpc

  ~ Makefile                              

  > add a LIB_DEPENDS on x11/gtk+3, the only thing pulling it in previously was
  > gstreamer1/plugins-base's RUN_DEPENDS which is now removed. (sthen@)

podofo

  ~ Makefile                              ~ distinfo
  ~ patches/patch-CMakeLists_txt          
  ~ patches/patch-src_base_PdfString_cpp
  ~ patches/patch-src_base_PdfXRefStream_cpp
  ~ pkg/PLIST                             

  > update to PoDoFo 0.9.3 (sthen@)

== www =============================================================== 26/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/www

www

  ~ Makefile                              

  > add p5-HTML-FormatText-WithLinks-AndTables (robert@)

chromium

  - pkg/patch-chrome_browser_metrics_drive_metrics_provider_linux_cc
  - pkg/patch-media_video_capture_fake_video_capture_device_factory_cc
  - pkg/patch-media_video_capture_file_video_capture_device_factory_cc
  - pkg/patch-media_video_capture_video_capture_device_cc
  - pkg/patch-media_video_capture_video_capture_device_factory_cc
  - pkg/patch-media_video_capture_video_capture_device_h
  - pkg/patch-ui_events_x_keysym_to_unicode_cc
  - pkg/patch-ui_views_controls_menu_menu_scroll_view_container_cc
  ~ Makefile                              ~ distinfo
  ~ patch-ash_display_mirror_window_controller_cc
  ~ patch-base_base_gypi                  ~ patch-base_debug_debugger_posix_cc
  ~ patch-base_debug_stack_trace_posix_cc
  ~ patch-base_message_loop_message_loop_cc
  ~ patch-base_threading_platform_thread_linux_cc
  ~ patch-build_common_gypi               
  ~ patch-chrome_app_chrome_main_delegate_cc
  ~ patch-chrome_app_chromium_strings_grd
  ~ patch-chrome_app_google_chrome_strings_grd
  ~ patch-chrome_app_resources_locale_settings_grd
  ~ patch-chrome_app_theme_theme_resources_grd
  ~ patch-chrome_browser_about_flags_cc   
  ~ patch-chrome_browser_browser_resources_grd
  ~ patch-chrome_browser_chrome_browser_main_cc
  ~ patch-chrome_browser_chrome_content_browser_client_cc
  ~ patch-chrome_browser_chrome_content_browser_client_h
  ~ patch-chrome_browser_download_download_commands_cc
  ~ patch-chrome_browser_extensions_api_messaging_message_service_cc
  ~ patch-chrome_browser_extensions_bookmark_app_helper_cc
  ~ patch-chrome_browser_net_cookie_store_util_cc
  ~ patch-chrome_browser_notifications_message_center_notification_manager_cc
  ~ patch-chrome_browser_process_singleton_posix_cc
  ~ patch-chrome_browser_resources_plugin_metadata_plugins_linux_json
  ~ 
patch-chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc
  ~ patch-chrome_browser_sync_profile_sync_components_factory_impl_cc
  ~ patch-chrome_browser_tracing_crash_service_uploader_cc
  ~ patch-chrome_browser_ui_browser_cc    
  ~ patch-chrome_browser_ui_panels_panel_manager_cc
  ~ patch-chrome_browser_ui_startup_startup_browser_creator_cc
  ~ patch-chrome_browser_ui_views_chrome_views_delegate_cc
  ~ patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc
  ~ patch-chrome_browser_ui_views_task_manager_view_cc
  ~ patch-chrome_browser_ui_webui_about_ui_cc
  ~ patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc
  ~ patch-chrome_browser_ui_webui_options_browser_options_handler_cc
  ~ patch-chrome_browser_web_applications_web_app_cc
  ~ patch-chrome_browser_web_applications_web_app_h
  ~ patch-chrome_chrome_browser_extensions_gypi
  ~ patch-chrome_chrome_browser_gypi      ~ patch-chrome_chrome_browser_ui_gypi
  ~ patch-chrome_chrome_common_gypi       ~ patch-chrome_chrome_utility_gypi
  ~ patch-chrome_common_chrome_paths_cc   ~ patch-chrome_common_chrome_paths_h
  ~ patch-chrome_common_chrome_switches_cc
  ~ patch-chrome_common_chrome_switches_h
  ~ patch-chrome_common_extensions_api_schemas_gypi
  ~ patch-chrome_common_pref_names_cc     ~ patch-chrome_common_pref_names_h
  ~ patch-chrome_common_url_constants_cc
  ~ patch-chrome_common_url_constants_h   
  ~ patch-chrome_renderer_resources_neterror_js
  ~ patch-chromecast_browser_cast_content_browser_client_cc
  ~ patch-components_omnibox_browser_omnibox_field_trial_cc
  ~ patch-components_policy_resources_policy_templates_json
  ~ patch-content_app_content_main_runner_cc
  ~ patch-content_browser_browser_main_loop_cc
  ~ patch-content_browser_devtools_protocol_color_picker_cc
  ~ patch-content_browser_gpu_gpu_data_manager_impl_private_cc
  ~ patch-content_browser_gpu_gpu_internals_ui_cc
  ~ patch-content_browser_renderer_host_render_widget_host_view_aura_cc
  ~ patch-content_content_browser_gypi    ~ patch-content_content_common_gypi
  ~ patch-content_content_renderer_gypi   ~ patch-content_gpu_gpu_main_cc
  ~ patch-content_ppapi_plugin_ppapi_blink_platform_impl_cc
  ~ patch-content_ppapi_plugin_ppapi_blink_platform_impl_h
  ~ patch-content_public_common_content_switches_cc
  ~ patch-content_renderer_render_thread_impl_cc
  ~ patch-content_renderer_renderer_blink_platform_impl_cc
  ~ patch-content_renderer_renderer_blink_platform_impl_h
  ~ patch-dbus_property_cc                
  ~ patch-device_serial_serial_io_handler_posix_cc
  ~ patch-gpu_config_gpu_info_collector_linux_cc
  ~ patch-media_media_gyp                 ~ patch-net_base_net_util_cc
  ~ patch-net_base_network_change_notifier_cc
  ~ patch-net_net_gypi                    
  ~ patch-net_url_request_url_request_context_builder_cc
  ~ patch-pdf_pdfium_pdfium_engine_cc     
  ~ patch-printing_backend_cups_helper_cc
  ~ patch-remoting_remoting_host_gypi     ~ patch-skia_skia_chrome_gypi
  ~ patch-skia_skia_common_gypi           
  ~ patch-third_party_WebKit_Source_core_core_gyp
  ~ patch-third_party_WebKit_Source_platform_blink_platform_gyp
  ~ patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp
  ~ patch-third_party_WebKit_Source_platform_heap_ThreadState_h
  ~ patch-third_party_WebKit_Source_web_PopupMenuImpl_cpp
  ~ patch-third_party_WebKit_Source_web_web_gyp
  ~ patch-third_party_ffmpeg_ffmpeg_gyp   
  ~ patch-third_party_libjingle_libjingle_gyp
  ~ patch-third_party_libusb_libusb_gyp   
  ~ patch-third_party_pdfium_core_src_fxge_ge_fx_ge_linux_cpp
  ~ patch-third_party_pdfium_fpdfsdk_src_javascript_PublicMethods_cpp
  ~ patch-third_party_pdfium_fpdfsdk_src_jsapi_fxjs_v8_cpp
  ~ patch-third_party_skia_gyp_ports_gyp
  ~ patch-third_party_webrtc_base_base_gyp
  ~ patch-third_party_webrtc_base_network_cc
  ~ patch-tools_gyp_pylib_gyp_generator_ninja_py
  ~ patch-ui_accessibility_accessibility_gyp
  ~ patch-ui_base_ui_base_gyp             ~ patch-ui_base_webui_web_ui_util_cc
  ~ patch-ui_events_devices_x11_device_data_manager_x11_cc
  ~ patch-ui_gfx_gfx_gyp                  ~ patch-ui_gl_generate_bindings_py
  ~ patch-ui_gl_gl_bindings_autogen_glx_cc
  ~ patch-ui_gl_gl_gyp                    ~ patch-ui_gl_gl_surface_glx_cc
  ~ patch-ui_gl_sync_control_vsync_provider_cc
  ~ patch-ui_message_center_message_center_style_h
  ~ patch-ui_message_center_views_notification_view_cc
  ~ patch-ui_resources_ui_resources_grd   
  ~ patch-ui_views_bubble_bubble_delegate_cc
  ~ patch-ui_views_controls_button_label_button_cc
  ~ patch-ui_views_views_gyp              ~ patch-v8_src_globals_h
  ~ pkg/PLIST                             
  + pkg/patch-chrome_common_variations_fieldtrial_testing_config_gyp
  + pkg/patch-components_metrics_drive_metrics_provider_linux_cc
  + pkg/patch-media_capture_video_fake_video_capture_device_factory_cc
  + pkg/patch-media_capture_video_file_video_capture_device_factory_cc
  + pkg/patch-media_capture_video_video_capture_device_cc
  + pkg/patch-media_capture_video_video_capture_device_factory_cc
  + pkg/patch-media_capture_video_video_capture_device_h
  + pkg/patch-remoting_remoting_all_gyp   
  + pkg/patch-third_party_boringssl_src_crypto_bn_generic_c
  + pkg/patch-v8_src_log-utils_h          

  > update to 46.0.2490.71 (robert@)

firefox-esr

  ~ patches/patch-config_system-headers   

  > Preventive fixes for the upcoming update to freetype-2.6.1 (dcoppa@)

firefox-i18n

  ~ Makefile.inc                          ~ distinfo

  > Security update to firefox 41.0.2.
  > Fixes MFSA 2015-115 / CVE-2015-7184 (Cross-origin restriction bypass using
  > Fetch)
  > https://www.mozilla.org/en-US/security/advisories/mfsa2015-115/ (landry@)

goaccess

  ~ Makefile                              + patches/patch-configure_ac

  > add tokyocabinet support
  > requested by Adam Wolk, basen on a patch from sthen@
  > ok sthen@ (kirby@)

lighttpd

  ~ Makefile                              ~ patches/patch-src_connections_c

  > Backport from upstream:
  > [core] don't buffer request bodies smaller than 64k on disk
  > from Brad (maintainer) (ajacoutot@)

mozilla-firefox

  ~ Makefile                              ~ distinfo

  > Security update to firefox 41.0.2.
  > Fixes MFSA 2015-115 / CVE-2015-7184 (Cross-origin restriction bypass using
  > Fetch)
  > https://www.mozilla.org/en-US/security/advisories/mfsa2015-115/ (landry@)

  + patches/patch-config_system-headers   

  > Preventive fixes for the upcoming update to freetype-2.6.1 (dcoppa@)

owncloud

  ~ Makefile                              ~ distinfo

  TAGGED OPENBSD_5_7
  > SECURITY update to owncloud-7.0.10.
  > from Todd Mortimer (ajacoutot@)

  ~ Makefile                              ~ distinfo
  ~ patches/patch-apps_updater_appinfo_info_xml
  ~ pkg/PLIST                             

  TAGGED OPENBSD_5_8
  > SECURITY update to owncloud-8.1.3. (ajacoutot@)

p5-HTML-FormatText-WithLinks-AndTables

  + Makefile                              + distinfo
  + pkg/DESCR                             + pkg/PLIST

  > New import:
  >     initial import of p5-HTML-FormatText-WithLinks-AndTables-0.06, ok
  > ajacoutot@

p5-Mojo

  ~ Makefile                              ~ distinfo

  > Update to p5-Mojo-6.24.
  > from Mark Patruck (maintainer) (benoit@)

p5-libwww

  ~ Makefile                              ~ distinfo

  > Update to 6.13
  > OK sthen (nigel@)

py-django

  ~ lts/Makefile                          ~ lts/distinfo
  ~ lts/pkg/PLIST                         

  > update django-lts to 1.8.5.
  > ok aja@. (rpointel@)

rt

  ~ Makefile                              ~ distinfo
  ~ patches/patch-Makefile_in             ~ patches/patch-config_layout
  ~ pkg/PLIST                             
  + patches/patch-sbin_rt-test-dependencies_in

  > major update to rt-4.2.12 (robert@)

seamonkey

  + patches/patch-mozilla_config_system-headers

  > Preventive fixes for the upcoming update to freetype-2.6.1 (dcoppa@)

squidclamav

  - patches/patch-src_squidclamav_c       ~ Makefile
  ~ distinfo                              ~ patches/patch-configure_in

  > update to squidclamav-6.14 (sthen@)

webkitgtk4

  ~ Makefile                              ~ distinfo

  > Update to webkitgtk-2.10.2. (ajacoutot@)

== x11 =============================================================== 27/27 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/x11

x11

  ~ Makefile                              

  > +wxglade; ok sthen@ (jca@)

dbus

  ~ Makefile                              ~ pkg/README-main

  > Tweak now that dbus-launch isn't called automatically by our Xsession and
  > Xinit. (ajacoutot@)

fvwm2

  ~ Makefile                              

  > Update maintainer email address. (bentley@)

gnome

  ~ gvfs/Makefile                         

  > Google bits were missing in PSEUDO_FLAVORS. (ajacoutot@)

  ~ maps/Makefile                         ~ maps/distinfo

  > Update to gnome-maps-3.18.1. (ajacoutot@)

  ~ tracker/Makefile                      
  + tracker/patch-src_libtracker-miner_tracker-monitor_c

  > Cope with GKqueue Monitor change in newer GLib. (ajacoutot@)

  ~ gcr/Makefile                          ~ gcr/distinfo
  ~ gcr/pkg/PLIST                         

  > Update to gcr-3.18.0. (ajacoutot@)

  ~ user-docs/Makefile                    ~ user-docs/distinfo
  ~ user-docs/pkg/PLIST                   

  > Update to gnome-user-docs-3.18.0. (ajacoutot@)

  ~ keyring/Makefile                      ~ keyring/distinfo
  ~ keyring/pkg/PLIST                     
  + keyring/patches/patch-daemon_dbus_gkd-dbus-secrets_c
  + keyring/patches/patch-daemon_gkd-main_c

  > Update to gnome-keyring-3.18.0. (ajacoutot@)

  ~ tweak-tool/Makefile                   ~ tweak-tool/distinfo
  ~ tweak-tool/pkg/PLIST                  

  > Update to gnome-tweak-tool-3.18.0. (ajacoutot@)

  ~ power-manager/Makefile                ~ power-manager/distinfo

  > Update to gnome-power-manager-3.18.0. (ajacoutot@)

  ~ color-manager/Makefile                ~ color-manager/distinfo
  ~ color-manager/pkg/PLIST               

  > Update to gnome-color-manager-3.18.0. (ajacoutot@)

  ~ getting-started-docs/Makefile         ~ getting-started-docs/distinfo
  ~ getting-started-docs/pkg/PLIST        

  > Update to gnome-getting-started-docs-3.18.0. (ajacoutot@)

  ~ seahorse/Makefile                     ~ seahorse/distinfo
  ~ seahorse/pkg/PLIST                    

  > Update to seahorse-3.18.0. (ajacoutot@)

  ~ seahorse-sharing/Makefile             
  + seahorse-sharing/patches/patch-configure

  > gnupg -> gnupg2 (ajacoutot@)

  ~ seahorse-nautilus/Makefile            
  + seahorse-nautilus/patches/patch-configure

  > gnupg -> gnupg2 (ajacoutot@)

  ~ totem/Makefile                        ~ totem/distinfo

  > Update to totem-3.18.1. (ajacoutot@)

  ~ photos/Makefile                       ~ photos/distinfo

  > Update to gnome-photos-3.18.1. (ajacoutot@)

  ~ dconf-editor/Makefile                 ~ dconf-editor/distinfo

  > Update to dconf-editor-3.18.1. (ajacoutot@)

  ~ aisleriot/Makefile                    ~ aisleriot/distinfo

  > Update to aisleriot-3.18.1. (ajacoutot@)

  ~ libsecret/Makefile                    

  > Drop dependency on x11/gnome/keyring for now to prevent a dependency loop
  > reported by nigel@
  > pinentry -> libsecret -> gnome-keyring -> gcr -> gnupg2 -> pinentry
  > to be revisited very soon (ajacoutot@)

  ~ devel-docs/Makefile                   ~ devel-docs/distinfo
  ~ devel-docs/pkg/PLIST                  

  > Update to gnome-devel-docs-3.18.1. (ajacoutot@)

  ~ libgweather/Makefile                  ~ libgweather/distinfo
  ~ libgweather/pkg/PLIST                 

  > update to libgweather-3.18.1 (jasper@)

  ~ user-docs/Makefile                    ~ user-docs/distinfo
  ~ user-docs/pkg/PLIST                   

  > Update to gnome-user-docs-3.18.1. (ajacoutot@)

  ~ weather/Makefile                      ~ weather/distinfo
  ~ weather/pkg/PLIST                     

  > Update to gnome-weather-3.18.1. (ajacoutot@)

  ~ getting-started-docs/Makefile         ~ getting-started-docs/distinfo

  > Update to gnome-getting-started-docs-3.18.1. (ajacoutot@)

  ~ devhelp/Makefile                      ~ devhelp/distinfo

  > Update to devhelp-3.18.1. (ajacoutot@)

  ~ keyring/Makefile                      

  > The security/pinentry,-gnome3 dependency will move to meta/gnome to prevent
  > a cyclic dependency.
  > pinentry -> libsecret -> gnome-keyring -> gcr -> gnupg2 -> pinentry
  > (ajacoutot@)

  ~ libsecret/Makefile                    

  > Re-add dependency on x11/gnome/keyring now that libsecret does not depend
  > on security/pinentry,-gnome3 anymore. (ajacoutot@)

  ~ yelp/Makefile                         ~ yelp/distinfo

  > Update to yelp-3.18.1. (ajacoutot@)

  ~ at-spi2-core/Makefile                 ~ at-spi2-core/distinfo

  > Update to at-spi2-core-2.18.1. (ajacoutot@)

  ~ caribou/Makefile                      ~ caribou/distinfo
  ~ caribou/patches/patch-libcaribou_Makefile_in
  ~ caribou/pkg/PLIST                     

  > Update to caribou-0.4.19. (ajacoutot@)

  ~ documents/Makefile                    ~ documents/distinfo

  > Update to gnome-documents-3.18.1. (ajacoutot@)

  ~ gvfs/Makefile                         ~ gvfs/distinfo
  ~ gvfs/pkg/PLIST-main                   

  > Update to gvfs-1.26.1. (ajacoutot@)

  ~ gcr/Makefile                          

  > Yet another loop.
  > reported by Mark Patruck (ajacoutot@)

  ~ at-spi2-atk/Makefile                  ~ at-spi2-atk/distinfo

  > Update to at-spi2-atk-2.18.1. (ajacoutot@)

  ~ orca/Makefile                         ~ orca/distinfo

  > Update to orca-3.18.1. (ajacoutot@)

  ~ latexila/Makefile                     ~ latexila/distinfo
  ~ latexila/pkg/PLIST                    

  > Update to latexila-3.18.0. (ajacoutot@)

  - builder/patches/patch-src_greeter_gb-greeter-window_c
  ~ builder/Makefile                      ~ builder/distinfo
  ~ builder/pkg/PLIST                     

  > Update to gnome-builder-3.18.0. (ajacoutot@)

  ~ ghex/Makefile                         ~ ghex/distinfo
  ~ ghex/pkg/PLIST                        

  > update to ghex-3.18.0 (jasper@)

  ~ quadrapassel/Makefile                 ~ quadrapassel/distinfo

  > update to quadrapassel-3.18.0 (jasper@)

  ~ calculator/Makefile                   ~ calculator/distinfo
  ~ calculator/pkg/PLIST                  

  > update to gnome-calculator-3.18.1 (jasper@)

  ~ gcr/Makefile                          

  > Depend on gnupg2. (ajacoutot@)

  ~ keyring/Makefile                      

  > RUN_DEPENDS on security/pinentry,-gnome3,. (ajacoutot@)

  ~ libsecret/Makefile                    ~ libgnome-keyring/Makefile

  > Drop dependency on gnome-keyring; ETOOMANYLOOP. (ajacoutot@)

  ~ gvfs/Makefile                         ~ gvfs/pkg/PLIST-goa
  ~ gvfs/pkg/PLIST-main                   

  > Move gvfs-goa-volume-monitor.service to the -goa subpackage.
  > noticed by Mark Patruck, thanks. (ajacoutot@)

  ~ seahorse-nautilus/Makefile            ~ seahorse-sharing/Makefile

  > Consistency, no pkg change. (ajacoutot@)

  ~ libsecret/Makefile                    ~ libgnome-keyring/Makefile

  > Drop comment; no pkg change. (ajacoutot@)

  ~ libcryptui/Makefile                   + libcryptui/patches/patch-configure

  > security/gpgme depends on either gnupg-1 or gnupg-2; we want 2.X
  > (ajacoutot@)

  ~ gvfs/Makefile                         ~ gvfs/distinfo
  ~ gvfs/pkg/PLIST-goa                    

  > Update to gvfs-1.26.1.1. (ajacoutot@)

  ~ nautilus/Makefile                     ~ nautilus/distinfo

  > Update to nautilus-3.18.1. (ajacoutot@)

  ~ builder/Makefile                      ~ builder/distinfo
  ~ builder/pkg/PLIST                     

  > Update to gnome-builder-3.18.1. (ajacoutot@)

  - keyring/patches/patch-daemon_dbus_gkd-dbus-secrets_c
  - keyring/patches/patch-daemon_gkd-main_c
  ~ keyring/Makefile                      ~ keyring/distinfo

  > Update to gnome-keyring-3.18.1. (ajacoutot@)

  ~ libcryptui/patches/patch-configure    

  > Add BZ URL. (ajacoutot@)

  ~ libcryptui/patches/patch-configure    

  > Pushed upstream. (ajacoutot@)

  ~ builder/Makefile                      
  + builder/patches/patch-contrib_egg_Egg-1_0_gir

  > Do not hardcode solib version. (ajacoutot@)

  ~ libsecret/Makefile                    ~ libgnome-keyring/Makefile

  > Add and extend comments. (ajacoutot@)

  + todo/Makefile                         + todo/distinfo
  + todo/pkg/DESCR                        + todo/pkg/PLIST

  > New import:
  >     Import gnome-todo-3.18.1.

  ~ Makefile                              

  > +todo (ajacoutot@)

  ~ settings-daemon/Makefile              ~ settings-daemon/distinfo
  ~ 
settings-daemon/10_org.gnome.settings-daemon.peripherals.wacom.gschema.override
  ~ settings-daemon/pkg/PLIST             

  > Update to gnome-settings-daemon-3.18.1. (ajacoutot@)

  - control-center/files/timezone_8.5.png
  - control-center/files/timezone_8.5_dim.png
  - control-center/files/timezone_9.png   
  - control-center/files/timezone_9_dim.png
  - control-center/files/patch-panels_datetime_datetime_gresource_xml
  ~ control-center/Makefile               ~ control-center/distinfo
  ~ control-center/patch-panels_user-accounts_Makefile_in
  ~ control-center/pkg/PLIST              
  + control-center/patches/patch-po_sr@latin_po
  + control-center/patches/patch-po_sr_po

  > Update to gnome-control-center-3.18.1. (ajacoutot@)

  ~ desktop/Makefile                      ~ desktop/distinfo
  ~ desktop/patches/patch-libgnome-desktop_Makefile_in
  + desktop/patches/patch-libgnome-desktop_gnome-desktop-thumbnail_c

  > Update to gnome-desktop-3.18.1. (ajacoutot@)

  ~ session/Makefile                      ~ session/distinfo
  ~ session/patches/patch-gnome-session_main_c
  ~ session/pkg/PLIST                     

  > Update to gnome-session-3.18.1.2. (ajacoutot@)

  - gdm/patches/patch-data_Makefile_in    ~ gdm/Makefile
  ~ gdm/distinfo                          ~ gdm/patches/patch-configure_ac
  ~ gdm/patches/patch-daemon_gdm-launch-environment_c
  ~ gdm/patches/patch-daemon_gdm-manager_c
  ~ gdm/patches/patch-daemon_gdm-server_c
  ~ gdm/patches/patch-daemon_gdm-session-record_c
  ~ gdm/pkg/PLIST                         
  + gdm/patches/patch-common_gdm-common_c
  + gdm/patches/patch-common_gdm-common_h
  + gdm/patches/patch-common_gdm-log_c    
  + gdm/patches/patch-daemon_Makefile_am
  + gdm/patches/patch-daemon_gdm-local-display-factory_c
  + gdm/patches/patch-daemon_gdm-session-worker-job_c
  + gdm/patches/patch-daemon_gdm-session-worker_c
  + gdm/patches/patch-daemon_gdm-session-worker_xml
  + gdm/patches/patch-daemon_gdm-session_c
  + gdm/patches/patch-daemon_gdm-session_h
  + gdm/patches/patch-data_Makefile_am    
  + gdm/patches/patch-libgdm_gdm-user-switching_c

  > Update to gdm-3.18.0. (ajacoutot@)

gnustep

  ~ gnustep.port.mk                       ~ make/Makefile

  > Use http mirror.
  > ok sebastia@ (maintainer) (bentley@)

gtk+3

  ~ Makefile                              ~ distinfo

  > Update to gtk+3-3.18.2. (ajacoutot@)

gtksourceview3

  - patches/patch-configure               ~ Makefile
  ~ distinfo                              

  > update to gtksourceview-3.18.1 (jasper@)

kde

  ~ graphics3/Makefile                    

  > Regen WANTLIB-sane to unbreak.
  > breakage reported by naddy@ (ajacoutot@)

sakura

  ~ Makefile                              

  > regen WANTLIB (jasper@)

  ~ Makefile                              

  > simpler pre-configure (jasper@)

vlc

  ~ Makefile                              

  > Missing LIB_DEPENDS on devel/libidn. (ajacoutot@)

wxglade

  + Makefile                              + distinfo
  + patches/patch-wxglade                 + patches/patch-common_py
  + patches/patch-wxGlade_desktop         + pkg/DESCR
  + pkg/PLIST                             

  > New import:
  >     Import wxglade-0.7.0, from maintainer Daniel Winters.

===============================================================================
_______________________________________________
owc mailing list
[email protected]
http://www.squish.net/mailman/listinfo/owc

Reply via email to