OpenBSD ports changes summary for 2016-05-13
============================================

databases/barman                        databases/pg_stats_reporter
databases/pg_statsinfo                  databases/postgresql
databases/postgresql-pllua              databases/postgresql-plv8
databases/riak                          devel/p5-IO-KQueue
devel/yasm                              emulators/qemu
infrastructure/bin                      infrastructure/lib
infrastructure/man                      lang/go
mail/mozilla-thunderbird                mail/postfix
mail/thunderbird-i18n                   multimedia/get_flash_videos
net/cvsync                              net/haproxy
net/py-botocore                         security/vault
sysutils/awscli                         sysutils/logstash
sysutils/terraform                      www/youtube-dl
x11/gnome                               

== databases ========================================================= 01/12 ==

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

barman

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

  > Update to barman 1.6.0, from MAINTAINER Eric Lalonde.
  > Added some commented out/unimported yet test dependencies (landry@)

pg_stats_reporter

  - patches/patch-html_pg_stats_reporter_pg_stats_reporter_php
  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             + patches/patch-bin_pg_stats_reporter

  > Update to pg_stats_reporter 3.2.1 to chase pg_statsinfo. (landry@)

pg_statsinfo

  ~ Makefile                              

  > Doesn't build with PostgreSQL 9.5.
  > ok jeremy@ (pea@)

  - patches/patch-agent_lib_last_xact_activity_c
  - patches/patch-agent_lib_pgut_pgut-spi_c
  ~ Makefile                              ~ distinfo
  ~ patches/patch-agent_lib_libstatsinfo_c
  ~ patches/patch-agent_lib_port_c        ~ pkg/PLIST
  + patches/patch-agent_common_h          

  > Unbreak by updating to pg_statsinfo 3.2.1.
  > Project moved to sourceforge, see http://pgstatsinfo.sourceforge.net/
  > Basic testing seems to show it works fine with postgres 9.5. (landry@)

postgresql

  ~ Makefile                              ~ distinfo
  ~ patch-src_interfaces_ecpg_compatlib_Makefile
  ~ patch-src_interfaces_ecpg_ecpglib_Makefile
  ~ patch-src_interfaces_ecpg_pgtypeslib_Makefile
  ~ patch-src_interfaces_libpq_Makefile   ~ pkg/PLIST-contrib
  ~ pkg/PLIST-docs                        ~ pkg/PLIST-server

  > Update to 9.5.2
  > Tested in a bulk by ajacoutot@
  > ok jeremy@ (pea@)

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST-docs                        

  > Update ton 9.5.3
  > ok jeremy@ (pea@)

postgresql-pllua

  ~ Makefile                              

  > Bump for PostgreSQL 9.4 -> 9.5 upgrade (jeremy@)

postgresql-plv8

  ~ Makefile                              

  > Bump for PostgreSQL 9.4 -> 9.5 upgrade (jeremy@)

riak

  - pkg/patch-deps_eleveldb_c_src_leveldb_Makefile
  ~ Makefile                              ~ distinfo
  ~ patches/patch-deps_eleveldb_c_src_build_deps_sh
  ~ patches/patch-deps_eleveldb_c_src_leveldb_build_config_mk
  ~ patches/patch-deps_riak_kv_src_riak_kv_vnode_erl
  ~ patches/patch-erlang-js-rebar_config
  ~ patches/patch-rebar_config            ~ patches/patch-rel_reltool_config
  ~ pkg/PLIST                             
  + pkg/patch-deps_eleveldb_c_src_leveldb_include_leveldb_ldb_config_h

  > update to riak 2.1.4 and switch to erlang 17.
  > jasper@ kindly checked the erlang version bits. (jmatthew@)

== devel ============================================================= 02/12 ==

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

p5-IO-KQueue

  + patches/patch-Makefile_PL             

  > zap useless configure test. Either it builds or it doesn't. (espie@)

yasm

  ~ Makefile                              

  > skip the gettext dependency while there are no translations yet; ok Brad
  > (naddy@)

== emulators ========================================================= 03/12 ==

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

qemu

  - patches/patch-tcg_ppc_tcg-target_c    ~ Makefile
  ~ distinfo                              ~ patches/patch-block_curl_c
  ~ patches/patch-configure               ~ patches/patch-net_tap-bsd_c
  ~ pkg/PLIST                             
  + patches/patch-tcg_ppc_tcg-target_inc_c

  > Update to qemu-2.6.0.
  > from Brad (maintainer) (ajacoutot@)

== infrastructure ==================================================== 04/12 ==

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

bin

  ~ proot                                 

  > try to copy mtimes and use that to check (espie@)

  ~ proot                                 

  > things that live strictly in the chroot can mostly be run there.
  > this solves the issue of resolving symlinks within the chroot
  > and matching them against nfs dirs, at the expense of a few more processes
  > (espie@)

  ~ proot                                 

  > check for absolute symlinks in the chroot.
  > report anything that we don't know about (from the base system) (espie@)

  ~ proot                                 

  > tweak user message, requested by dcoppa@ (espie@)

  ~ proot                                 

  > always do mkpath, THEN check for nfs mounts, so that non-existing
  > dirs (at first) get classified correctly.
  > thx aja@ for testing on a virgin dir (espie@)

lib

  ~ DPB/MiniCurses.pm                     

  > rely on Term::ReadKey here as well (espie@)

man

  ~ man1/proot.1                          

  > document new stuff (espie@)

== lang ============================================================== 05/12 ==

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

go

  ~ go.port.mk                            

  > bump MODGO_BUILD_DEPENDS to lang/go>=1.6
  > some ports that used to depend on GO15VENDOREXPERIMENT=1 need 1.6 or they
  > won't build as the usage of that variable has been removed in their
  > Makefiles.
  > ok czarkoff@ sthen@ (jasper@)

  ~ Makefile                              
  + patches/patch-src_cmd_link_internal_ld_elf_go
  + patches/patch-src_runtime_sys_openbsd_386_s

  > Stop using sigreturn from the Go openbsd/386 signal trampoline - the
  > sigreturn syscall is going away in future versions of OpenBSD and its
  > use for Go is already broken due to the trampoline return checks. Instead
  > just return directly from the signal trampoline (as we have always done
  > for Go openbsd/amd64).
  > Also fix a bug in the Go openbsd/386 linker, which results in symbols in
  > the dynamic symbol table being emitted with a size of zero. With a current
  > ld.so, this results in symbol mismatch warnings.
  > Unbreaks the Go port on openbsd/386, however it still fails to pass regress
  > due to the PT_TLS changes. (jsing@)

== mail ============================================================== 06/12 ==

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

mozilla-thunderbird

  ~ Makefile                              ~ distinfo

  > Bugfix update to thunderbird 45.1.0 / lightning 4.7.1
  > - See https://www.mozilla.org/en-US/thunderbird/45.1.0/releasenotes/
  > - Fixes MFSA 2016-39 (landry@)

postfix

  + snapshot/patches/patch-makedefs       
  + snapshot/patches/patch-src_util_sys_defs_h
  + stable/patches/patch-makedefs         
  + stable/patches/patch-src_util_sys_defs_h

  > fix with openbsd 6.x; from Brad (sthen@)

thunderbird-i18n

  ~ Makefile.inc                          ~ distinfo

  > Bugfix update to thunderbird 45.1.0 / lightning 4.7.1
  > - See https://www.mozilla.org/en-US/thunderbird/45.1.0/releasenotes/
  > - Fixes MFSA 2016-39 (landry@)

== multimedia ======================================================== 07/12 ==

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

get_flash_videos

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Take over as MAINTAINER, update to 1.25.92 version.
  > Ok sthen@ (nigel@)

== net =============================================================== 08/12 ==

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

cvsync

  ~ Makefile                              ~ files/cvsyncd.conf

  > The X11 and XF4 collections are no longer distributed.  Remove them from
  > the default cvsyncd.conf file, since otherwise cvsyncd will not start.
  > (naddy@)

haproxy

  ~ Makefile                              ~ distinfo

  > Update for Haproxy to 1.6.5 from David CARLIER
  > http://www.haproxy.org/download/1.6/src/CHANGELOG (gonzalo@)

py-botocore

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to py-botocore-1.4.19. (ajacoutot@)

== security ========================================================== 09/12 ==

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

vault

  ~ Makefile                              ~ files/vault.hcl

  > RCD ID. (ajacoutot@)

== sysutils ========================================================== 10/12 ==

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

awscli

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to awscli-1.10.28. (ajacoutot@)

logstash

  ~ Makefile                              ~ pkg/PLIST

  > Also install the logstash-plugin utility to be able to manage plugins.
  > at least 'list', 'pack', 'unpack' commands tested to be working.
  > i.e. run it as: JAVA_HOME="$(/usr/local/bin/javaPathHelper -h logstash)"
  > /usr/local/logstash/bin/logstash-plugin list
  > OK jasper@ (MAINTAINER) (sebastia@)

terraform

  ~ Makefile                              ~ distinfo
  ~ pkg/PLIST                             

  > Update to terraform-0.6.16. (ajacoutot@)

== www =============================================================== 11/12 ==

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

youtube-dl

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

  > Update to youtube-dl-2016.05.10 (dcoppa@)

== x11 =============================================================== 12/12 ==

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

gnome

  ~ empathy/Makefile                      ~ empathy/distinfo
  ~ empathy/pkg/PLIST                     

  > update to empathy-3.12.12 (jasper@)

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

Reply via email to