CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 06:40:26 Modified files: libexec/tradcpp: files.c main.c output.c Log message: Add support for using - as shorthand for stdin/stdout in tradcpp. When looking into switching the /usr/bin/cpp wrapper to tradcpp I came across "| ${CPP} ${CPPFLAGS} -" in usr.bin/which. gcc documents this behaviour for cpp here: https://gcc.gnu.org/onlinedocs/cpp/Invocation.html Versions of the John F. Reiser derived cpp in 32V and CSRG SCCS accept this usage as well, as does the cpp in PCC. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:16:43 Modified files: sys/dev/usb : umass_scsi.c Log message: Fix debug printfs. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:17:53 Modified files: sys/dev/usb : xhci.c Log message: Even if the endpoint it reseted before the stack gets informed that a transfer stalled, report that a stall happen because umass(4) relies on this behavior... CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:20:05 Modified files: sys/dev/usb : usb.h usbdi_util.c usbdi_util.h Log message: Super Speed hub descriptor definition and routine, required for upcoming external USB 3.0 hub support. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:22:45 Modified files: sys/dev/usb : xhci.c Log message: Implement polling. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:28:02 Modified files: sys/dev/usb : xhci.c xhcireg.h Log message: Improve the logic to determine the maximum endpoint service interface time payload. Super speed companion descriptor are still not used but at least we can properly initialize super speed interrupt pipes. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:34:12 Modified files: sys/dev/usb : xhci.c Log message: Make sure asynchronous commands do not race with synchronous ones. Since asynchronous commands can be submitted from interrupt context it was possible to race with a process waiting for the completion of a previously submitted command. So stop relying on the per-softc TRB pointer for asynchronous commands and simply get the address of the command TRB from the event TRB. CVSROOT: /cvs Module name: www Changes by: bcallah@cvs.openbsd.org 2014/08/08 08:41:16 Modified files: . : events.html Log message: Move my August 2014 nycbug talk to past events. No recording this time, sorry. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 08:52:53 Modified files: share/man/man8 : autoinstall.8 Log message: * consistently use semantic mdoc(7) macros * add HISTORY and AUTHORS * some mdoc(7) style fixes * some wording fixes and avoid stray future tense feedback and ok rpe@ jmc@, ok jasper@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:03:25 Modified files: usr.bin/mandoc : mdoc.h mdoc_term.c mdoc_validate.c Log message: Partial implementation of .Bd -centered. In groff, .Bd -centered operates in fill mode, which is relatively hard to implement, while this implementation operates in non-fill mode so far. As long as you pay attention that your lines do not overflow, it works. To make sure that rendering is the same for mandoc and groff, it is recommended to insert .br between lines for now. This implementation will need improvement later. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:10:15 Modified files: usr.bin/mandoc : mandoc.h mdoc_html.c mdoc_man.c mdoc_term.c mdoc_validate.c read.c Log message: Various improvements related to .Ex and .Rv: * let .Nm fall back to the empty string, not to UNKNOWN * never let .Rv copy an argument from .Nm * avoid spurious \fR after empty .Nm in -Tman * correct handling of .Ex and .Rv in -Tman * correct the wording of the output for .Rv without arguments * use non-breaking spaces in .Ex and .Rv output where required * split MANDOCERR_NONAME into a warning for .Ex and an error for .Nm CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:15:27 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c roff.c Log message: better name and wording for the last two non-generic errors CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/08/08 09:16:39 Modified files: sys/net80211 : ieee80211.c ieee80211_node.c ieee80211_regdomain.c Log message: use nitems() instead of various local constructs ok stsp@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:21:17 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: Remove two useless FATAL errors. When a file contains neither text nor macros, treat it as an empty document. When the mdoc(7) document prologue is incomplete, use some default values. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:26:28 Modified files: usr.bin/mandoc : mandoc.h mdoc_macro.c mdoc_term.c mdoc_validate.c read.c Log message: Get rid of the useless FATAL error "child violates parent syntax". When finding items outside lists, simply skip them and throw an ERROR. Handle subsections before the first section instead of bailing out. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:32:17 Modified files: usr.bin/mandoc : libman.h libmdoc.h man.c man_macro.c mdoc.c Log message: Simplify: replace one global flag by one local variable and remove three unused global flags. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:35:31 Modified files: usr.bin/mandoc : man_macro.c man_validate.c Log message: Improve handling of next-line scope broken by end of file. Detect the condition earlier, report in the error message which block is broken, and delete the broken block. Consequently, empty section headers can no longer happen. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:38:46 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: Remove the useless FATAL error "argument count wrong, violates syntax". The last remaining instance was .It in .Bl -column with more than one excessive .Ta. However, simply downgrading from FATAL to ERROR, it just works fine, almost the same way as in groff, without any other changes. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:42:39 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: In .Bl -column, if some of the column width declarations are given right after the -column argument and some at the very end of the argument list, after some other arguments like -compact, concatenate the column lists. This gets rid of one of the last useless FATAL errors and actually shortens the code by a few lines. This fixes an issue introduced more than five years ago, at first causing an assert() since bsd.lv mdoc_action.c rev. 1.14 (June 17, 2009), then later a FATAL error since mdoc_validate rev. 1.130 (Nov. 30, 2010), and marked as "TODO" ever since. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:45:58 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: Split MANDOCERR_IGNARGV into one message for .An and one for .Bl and report the macro name and argument. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/08 09:46:01 Modified files: usr.sbin/httpd : server_http.c Log message: Allow to serve emtpy (0 bytes) files. Found by jasper@ OK florian@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:48:43 Modified files: usr.bin/mandoc : mandoc.h read.c roff.c Log message: Dynamically allocate the stack of roff(7) .ie condition values and thus get rid of the last useless fatal error. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:54:10 Modified files: usr.bin/mandoc : man.c man_validate.c mandoc.h mdoc.c mdoc_macro.c mdoc_validate.c read.c roff.c Log message: mention requests and macros in more messages CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:57:05 Modified files: usr.bin/mandoc : libman.h libmdoc.h man_validate.c mdoc_validate.c Log message: demacrify: get rid of man_nmsg(), man_pmsg(), mdoc_nmsg(), mdoc_pmsg() CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:00:23 Modified files: usr.bin/mandoc : man_html.c mdoc_html.c out.c term.c term_ascii.c term_ps.c Log message: Clarity with respect to floating point handling: Write double constants as double rather than integer literals. Remove useless explicit (double) cast done at one place and nowhere else. No functional change. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:02:03 Modified files: sys/dev/pci : pcidevs Log message: add bochs and microsoft emulated vga CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:02:55 Modified files: usr.bin/mandoc : term.c Log message: Fix floating point handling: When converting double to size_t, properly round to the nearest M (=0.001m), which is the smallest available unit. This avoids weirdness like (size_t)(0.6 * 10.0) == 5 by instead calculating (size_t)(0.6 * 10.0 + 0.0005) == 6, and so it fixes the indentation of the readline(3) manual. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:03:08 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:05:42 Modified files: usr.bin/mandoc : libman.h man.c man_validate.c Log message: Simplify man(7) validation: Drop pre-handlers, they were almost unused. Drop the needless complexity of allowing more than one post-handler. This saves one internal interface function, one static function, one private struct definition, sixteen static arrays, and 45 lines of code. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:08:19 Modified files: usr.bin/mandoc : mdoc_validate.c Log message: Simplify by allowing only one pre-handler. Saves 12 static arrays and 19 lines of code. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:11:10 Modified files: usr.bin/mandoc : mdoc_validate.c Log message: Simplify by allowing only one post-handler. Saves 36 static arrays and 10 lines of code at the expense of only five new trivial static functions. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:17:09 Modified files: usr.bin/mandoc : man_validate.c mandoc.h mandocdb.c mdoc.c mdoc_html.c mdoc_man.c mdoc_term.c mdoc_validate.c read.c Log message: Bring the handling of defective prologues even closer to groff, in particular relaxing the distinction between prologue and body and further improving messages. * The last .Dd wins and the last .Os wins, even in the body. * The last .Dt before the first body macro wins. * Missing title in .Dt defaults to UNTITLED. Warn about it. * Missing section in .Dt does not default to 1. But warn about it. * Do not warn multiple times about the same mdoc(7) prologue macro. * Warn about missing .Os. * Incomplete .TH defaults to empty strings. Warn about it. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:25:15 Modified files: usr.bin/mandoc : mandoc.1 Log message: Remove redundant verbiage in the style of "a file is a file, a line is a line, a column is a column"; suggested by jmc@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:32:17 Modified files: share/man/man7 : mdoc.7 Log message: some corrections and improvements with respect to prologue macros; found while working on mandoc(1) messages CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:33:27 Modified files: sys/dev/pci/drm/radeon: atombios_crtc.c Log message: drm/radeon: only apply hdmi bpc pll flags when encoder mode is hdmi From Alex Deucher 85cdd5e933c0f9fe3262067e707eed565db46378 in ubuntu 3.8 7d5ab3009a8ca777174f6f469277b3922d56fd4b in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:35:56 Modified files: sys/dev/pci/drm/radeon: atombios_encoders.c Log message: drm/radeon/atom: fix dithering on certain panels From Alex Deucher 9102ef0d290f01247918f5a519d8fa4a96eaf370 in ubuntu 3.8 642528355c694f5ed68f6bff9ff520326a249f99 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:38:23 Modified files: sys/dev/pci/drm/radeon: atombios_dp.c Log message: drm/radeon/dp: fix lane/clock setup for dp 1.2 capable devices From Alex Deucher c9a1adc31f78a30f33c591b61171f02d13a5b1a7 in ubuntu 3.8 3b6d9fd23e015b5397c438fd3cd74147d2c805b6 in mainline linux CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/08 10:38:25 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Tweak verbiage. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:41:16 Modified files: sys/dev/pci/drm/radeon: radeon_connectors.c Log message: drm/radeon: fix typo in radeon_connector_is_dp12_capable() From Alex Deucher 94dfc49785ea1acc1dd2c086ffd8d61ea3a5ee8f in ubuntu 3.8 af5d36539dfe043f1cf0f8b7334d6bb12cd14e75 in mainline linux CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/08 11:04:55 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Drop some useless verbiage. sysctl.conf is an example now. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 11:17:42 Modified files: usr.bin/mandoc : cgi.c Log message: mansearch.h uses uint64_t, so it needs stdint.h; found on Linux CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 11:36:21 Modified files: usr.bin/mandoc : mandocdb.c mansearch.c Log message: Absurdly, the return value of sqlite3_column_text() is "const unsigned char *", which causes warnings with GCC on Linux. Explicitly cast to "const char *" to avoid this. Issue noticed by kristaps@. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/08 12:26:50 Modified files: usr.sbin/relayd: relay_udp.c Log message: No events were added for DNS UDP so it stopped working after the first request. Additionally, the DNS code tried to use an invalid timeout. Fix from mm@freebsd.org Reported by Johan Schuijt CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/08 12:29:42 Modified files: usr.sbin/httpd : http.h httpd.h server_fcgi.c server_file.c server_http.c Log message: When opening directories, re-match the location after the index file has been appended. This allows to use a fastcgi target as the default index, for example index.php. OK florian@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/08 14:49:38 Modified files: share/man/man9 : bufq_init.9 Log message: zap trailing whitespace; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/08 14:50:28 Modified files: libexec/tradcpp: tradcpp.1 Log message: some basic fixes; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/08 14:51:43 Modified files: usr.bin/units : units.lib Log message: update currency exchange rates; CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 21:29:35 Modified files: lib/librthread : rthread_attr.c rthread_np.c Log message: Only need and not here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 22:35:17 Modified files: gnu/usr.bin/binutils-2.17/binutils: readelf.c gnu/usr.bin/binutils/binutils: readelf.c Log message: Match format width of symbol visibility to the column header This corrects the alignment of the columns of hidden symbols CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 22:49:47 Modified files: gnu/usr.bin/binutils-2.17/ld/scripttempl: elf.sc gnu/usr.bin/binutils/ld/scripttempl: elf.sc Log message: We don't use the __openbsd_randomdata_{start,end} symbols, but rather get that info via the PT_OPENBSD_RANDOM segment info, so kill the symbols While here, delete the commented out lines for __DYNAMIC as the question they ask is answered 'no' ok matthew@ back in May CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 22:59:02 Modified files: gnu/usr.bin/binutils/gas/config: tc-i386.c Log message: Backport from binutils-2.17 the correct i386/amd64 register->int assignments for CFI. This changes the unwind information generated on amd64. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 23:52:43 Modified files: gnu/usr.bin/binutils/bfd: elflink.c Log message: Backport from 2.17: mark the _GLOBAL_OFFSET_TABLE_, _DYNAMIC, and _PROCEDURE_LINKAGE_TABLE_ symbols as (at least) hidden. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/09 01:33:37 Modified files: usr.bin/tmux : format.c input.c server-client.c tmux.h tty.c Log message: Remove support for the continuous reporting "any" mouse mode which never really worked properly and is rarely used. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/09 01:35:45 Modified files: usr.sbin/httpd : parse.y Log message: Allow to inclue the types section anywhere in the configuration file. Found by chris@ OK doug@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 02:11:09 Modified files: net/cvsync : Makefile Log message: specify install command without a path, so that we can override it CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 02:49:48 Modified files: usr.sbin/httpd : httpd.8 Log message: basic cleanup; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 02:54:03 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: sort "prefork", and remove a useless macro; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 03:07:14 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: some minor tweaks; CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 03:45:14 Modified files: sys/dev/usb : uhub.c usb.c usb_subr.c usbdivar.h Log message: Do not store the whole USB hub descriptor in the "struct usbd_hub" to help integrating super speed hubs that use a different descriptor. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 03:48:32 Modified files: sys/dev/usb : uhub.c Log message: Handle super speed hub descriptors. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 03:58:11 Modified files: sys/dev/usb : uhub.c Log message: Correctly recognize Super Speed devices, this is part of the work to be able to use USB 3.0 devices behind an external hub. This is a bit tricky because the SS status use a different power bit that maps to the Low speed one. So no longer accept devices without power bit and fallback to the parent hub's speed in case the status does not report any particular speed. Note that xhci(4) root hubs still set the traditionnal UPS_PORT_POWER bit with the correct device speed. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 04:32:36 Modified files: sys/dev/usb : xhci.c Log message: Add support for non-root hubs now that uhub(4) can deal with them. For the moment only Super and High Speed devices are properly recognized. Some TT love is required for Full and Low speed devices. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:34:05 Modified files: usr.sbin/sysmerge: sysmerge.sh sysmerge.8 Log message: sysctl.conf is an example. Tweak error output. Mention that `-S' has no effect when sets aren't used. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:45:03 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Initial support for handling configuration files from packages (aka @sample) -- `sysmerge -p` Worked done at g2k14. Committing early so we have plenty of time for testing. with help from espie@ thanks to landry@ for feedback on initial testing CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:46:51 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Extend comment. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/09 08:24:49 Modified files: usr.bin/mandoc : mansearch.c Log message: mmap(2) requires MAP_PRIVATE ^ MAP_SHARED for flags; found by kristaps@ on Mac OS X CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 10:39:25 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: less chatty; ok ajacoutot CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/09 10:54:58 Modified files: lib/libssl/src/crypto/asn1: Tag: OPENBSD_5_5 a_object.c lib/libssl/src/crypto/ec: Tag: OPENBSD_5_5 ec_lib.c ecp_smpl.c lib/libssl/src/ssl: Tag: OPENBSD_5_5 d1_both.c d1_clnt.c d1_srvr.c s23_lib.c s23_srvr.c s3_clnt.c s3_enc.c s3_pkt.c s3_srvr.c ssl_lib.c t1_lib.c Log message: backport relevant security fixes from openssl 1.0.1i tested by bcook jsg CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/09 10:55:55 Modified files: lib/libssl/src/crypto/asn1: Tag: OPENBSD_5_4 a_object.c lib/libssl/src/crypto/ec: Tag: OPENBSD_5_4 ec_lib.c ecp_smpl.c lib/libssl/src/ssl: Tag: OPENBSD_5_4 d1_both.c d1_clnt.c d1_srvr.c s23_lib.c s23_srvr.c s3_clnt.c s3_enc.c s3_pkt.c s3_srvr.c ssl_lib.c t1_lib.c Log message: backport relevant security fixes from openssl 1.0.1i tested by bcook jsg CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 10:59:15 Modified files: games/komi/patches: patch-Makefile Log message: makefile patch lost +x right on directory, bad when non-root CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/09 13:29:23 Modified files: infrastructure/templates: network.conf.template Log message: The FreeBSD ports-distfiles and local-distfiles infrastructures have changed. "go for it" naddy@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/09 13:31:22 Modified files: devel/bouml : Makefile devel/libinotify: Makefile Log message: Use ${_MASTER_SITE_FREEBSD} instead of hardcoding (outdated) locations. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/09 13:39:34 Modified files: devel/bouml : Makefile Log message: New homepage. From Stefan Wollny. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/09 13:44:40 Modified files: shells/bash : Makefile distinfo Log message: update to 4.3 patchlevel 22 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/09 13:46:19 Modified files: archivers/gtar : Makefile distinfo archivers/gtar/patches: patch-configure archivers/gtar/pkg: DESCR PLIST Log message: Update to 1.28. Noteworthy changes in this release: * New checkpoint action: totals * Extended checkpoint format specification. * New option --one-top-level * New option --sort * New exclusion options * Manpages CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 14:08:44 Modified files: gnu/usr.bin/binutils-2.17/binutils: dwarf.c gnu/usr.bin/binutils/binutils: readelf.c Log message: Fix readelf --debug-dump=frames-interp output: once a register is given a column, it needs to included in all rows, even after the register is restored. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 15:33:22 Modified files: books/JVMS : Makefile Log message: only chmod files, fixes rights on directories CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 15:34:12 Modified files: infrastructure/lib/DPB: Signature.pm Log message: fix .a printed names and such. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 15:35:09 Modified files: textproc/html : Makefile Log message: unhardcode chown CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/08/09 15:51:29 Modified files: distrib/miniroot: install.sh install.sub Log message: After a cleanup by deraadt I noticed the four-space-indent had started infesting the scripts. As we generally use a single tab for line continuation indent in the scripts, let's reclaim 30 precious bytes! ok rpe@ krw@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:32:08 Modified files: gnu/usr.bin/binutils/bfd: bfd-in.h Log message: bfd-in2.h is generated from this; merge back a change that was made there CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:34:35 Modified files: gnu/usr.bin/binutils-2.17/bfd: bfd.c gnu/usr.bin/binutils/bfd: bfd.c Log message: Store timestamps in time_t CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:37:29 Modified files: gnu/usr.bin/binutils-2.17/bfd: bfd-in.h Log message: bfd-in2.h is generated from this; merge back a change that was made there CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:39:08 Modified files: gnu/usr.bin/binutils-2.17/bfd: bfd-in2.h libbfd.h gnu/usr.bin/binutils/bfd: bfd-in2.h libbfd.h Log message: Regenerate to pick up time_t changes CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:40:16 Modified files: gnu/usr.bin/binutils-2.17/bfd: coff-alpha.c gnu/usr.bin/binutils/bfd: coff-alpha.c Log message: Parse times with strtoll() instead of strtol() CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:42:13 Modified files: gnu/usr.bin/binutils/gdb: objfiles.h Log message: Use time_t for storing times CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:44:15 Modified files: bin/systrace : systrace.c Log message: Switch from calloc() to reallocarray() where the zeroing isn't needed CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 18:20:55 Modified files: bin/systrace : systrace-errno.h systrace-error.c Log message: Add newer errnos CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 18:21:49 Modified files: bin/systrace : systrace-translate.c Log message: Add F_DUPFD_CLOEXEC handling CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:09:35 Modified files: sbin/ldattach : ldattach.c Log message: msts(4) appears to support TIOCSTSTAMP From Maurice Janssen (maurice (at) z74.net) CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:15:18 Modified files: lib/libc/gdtoa : ldtoa.c lib/libc/stdlib: hcreate.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:38:24 Modified files: sbin/fsdb : fsdb.h Log message: Delete extern declarations for variables that don't exist (anymore?) CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:41:41 Modified files: usr.bin/telnet : telnet.1 Log message: Add Xr to skey and stty CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:44:26 Modified files: bin/ksh : io.c tty.c Log message: Replace F_DUPFD followed by setting FD_CLOEXEC with just F_DUPFD_CLOEXEC ok matthew@ millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:49:24 Modified files: include : string.h Log message: Delete duplicate conditional diff from frantisek holop (minusf (at) obiit.org) CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/08/09 21:24:51 Modified files: sys/netinet : ip_divert.c sys/netinet6 : ip6_divert.c Log message: Rename p_hdrlen to min_hdrlen to better reflect its purpose. No object file change ok florian@ henning@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 21:25:39 Modified files: gnu/usr.bin/binutils/bfd: som.c archive.c Log message: Format time_t with %lld after casting to long long CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/08/09 21:26:20 Modified files: sys/netinet : ip_divert.c Log message: Fix the length check for reinjected ICMP packets: sizeof(struct icmp) is 28 but an ICMP packet can be as small as 8 bytes (e.g. an ICMP echo request packet with no payload), so check against ICMP_MINLEN instead. Prior to this fix, divert(4) would erroneously discard valid ICMP packets that are shorter than 20 bytes. ICMPv6 is not affected, so this change applies to ICMP over IPv4 only. ok florian@ henning@ CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/08/09 21:47:20 Modified files: . : donations.html Log message: Thanks to Jay Huldeen for donating sparc64 hardware. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 22:57:33 Modified files: bin/systrace : intercept-translate.c linux-translate.c systrace-translate.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:00:25 Modified files: sbin/swapctl : swaplist.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:06:38 Modified files: libexec/login_radius: raddauth.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:08:31 Modified files: regress/lib/libpthread/stack: stack.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:09:31 Modified files: regress/lib/libutil/bcrypt_pbkdf: bcrypt_pbkdf_test.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:19:08 Modified files: lib/libc/sys : socket.2 Log message: AF_IMPLINK and AF_BLUETOOTH are gone CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:23:59 Modified files: share/man/man4 : netintro.4 Log message: AF_BLUETOOTH is gone. AF_LOCAL isn't involved pipe (and portals are gone). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 01:25:45 Modified files: misc/magicpoint: Makefile Log message: force install without path in xmindpath contrib CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:28:32 Modified files: sys/net : netisr.h Log message: No more bluetooth in netintr(), so delete NETISR_BT. Zap the declaration for btintr(), as well as the also gone atintr() and clnlintr() CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:29:45 Modified files: usr.bin/fstat : fstat.c Log message: Don't need to know how to format bluetooth socket info here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:31:58 Modified files: regress/lib/libc/asr/bin: common.c Log message: AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:44:57 Modified files: security : Makefile Log message: +heimdal ok sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:49:27 Modified files: print/cups : Makefile distinfo Log message: SECURITY update to cups-1.7.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:51:21 Modified files: misc/gramps : Makefile misc/gramps/pkg: PLIST Log message: Put icon under share/pixmaps so that it's found by the desktop file. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:54:56 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.268. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:56:40 Modified files: print/poppler : Makefile distinfo print/poppler/patches: patch-Makefile_in print/poppler/pkg: PLIST-main Log message: Update to poppler-0.26.3. input/ok kili@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:01:05 Modified files: devel/harfbuzz : Makefile distinfo devel/harfbuzz/pkg: PLIST-main Log message: Update to harfbuzz-0.9.34. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:05:35 Modified files: devel/vte3 : Makefile devel/vte3/patches: patch-src_vteaccess_c Log message: Merge upstream's fix for vte crash. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:09:34 Modified files: sysutils/salt-testing: Makefile distinfo Log message: Update to salt-testing-2014.8.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:11:06 Modified files: x11/nagstamon : Makefile distinfo x11/nagstamon/patches: patch-Nagstamon_Config_py patch-setup_py x11/nagstamon/pkg: PLIST Log message: Update to nagstamon-1.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:28:13 Modified files: sysutils/salt : Makefile distinfo sysutils/salt/pkg: PLIST Log message: Update to salt-2014.1.10. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 02:55:30 Modified files: infrastructure/bin: pkg_subst Log message: new flag -i, to ignore owner/group errors CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 02:59:48 Modified files: infrastructure/mk: pkgpath.mk perl.port.mk bsd.port.mk Log message: framework to allow fake as non-root, based on an idea and initial patch by naddy. Not turned on yet, as it involves a critical new file. Basically: - introduce new variations on SUBST cmds to install various files - use pkg_subst -i in !root mode - unhardcode install path where possible, to allow for an install-wrapper that disregards owner/groups. - do links during fake to disable chown/chgrp/install. Extra tweak (always-wrap) to actually encode "perl ${PORTSDIR}/infra/bin/install-wrapper" as an install script, required by a few ports that keep track of the install script for later (eg., ruby, postgres). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 03:02:21 Modified files: infrastructure/mk: bsd.port.mk Log message: okay, SUBST_DATA/SUBST_PROGRAM/SUBST_MAN are always -c, so encode it as well CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/10 03:11:07 Modified files: lib/libsndio : sio.c Log message: debug level test for clock_gettime() calls should match ok ratchov@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/08/10 03:15:40 Modified files: share/man/man4 : vio.4 Log message: Typo. ok deraadt@ jmc@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/10 03:23:06 Modified files: sys/msdosfs : msdosfs_vnops.c sys/miscfs/fuse: fuse_vnops.c Log message: fix kqueue read/write filters for msdosfs and fusefs ok tedu@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 03:58:07 Modified files: audio/umurmur : Makefile cad/fritzing : Makefile comms/smstools : Makefile databases/iodbc: Makefile databases/pkglocatedb: Makefile databases/ports-readmes-dancer: Makefile databases/py-couchdb: Makefile databases/redis: Makefile devel/boris : Makefile devel/intellij : Makefile devel/libJudy : Makefile devel/libaudiofile: Makefile devel/lualdoc : Makefile devel/ocaml-mlgmp: Makefile devel/vtcl : Makefile editors/vim : Makefile emulators/sdlmame: Makefile emulators/sdlmess: Makefile games/clonekeen: Makefile games/freecol : Makefile games/opentyrian: Makefile games/renpy : Makefile games/singularity: Makefile geo/qgis : Makefile lang/abcl : Makefile lang/clojure : Makefile lang/icon/interp: Makefile lang/lua/5.2 : Makefile lang/spidermonkey: Makefile mail/exim : Makefile mail/mozilla-thunderbird: Makefile mail/rss2email : Makefile misc/rocrail : Makefile multimedia/get_iplayer: Makefile multimedia/mediatomb: Makefile net/coccinella : Makefile net/jnettop : Makefile net/miniupnp/miniupnpd: Makefile net/rrdtool : Makefile net/zabbix : Makefile print/hplip : Makefile print/lyx : Makefile productivity/projectlibre: Makefile productivity/radicale: Makefile productivity/taskd: Makefile security/cyrus-sasl2: Makefile sysutils/logtail: Makefile textproc/dblatex: Makefile textproc/xml2rfc: Makefile www/chive : Makefile www/chromium : Makefile www/dillo : Makefile www/firefox-esr: Makefile www/mozilla-firefox: Makefile www/opengroupware: Makefile www/seamonkey : Makefile www/xombrero : Makefile x11/i3 : Makefile x11/qwt : Makefile Log message: use more specific version of SUBST_* where appropriate CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:01:03 Modified files: usr.sbin/pkg_add/OpenBSD: ArcCheck.pm Ustar.pm Log message: if pkg_create is run as non-root, restory correct group/owner to root/bin. also, remove write permissions without explicit modes. Allows fake installs to keep directories/files writable while producing correct package. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:03:46 Modified files: usr.sbin/pkg_add/OpenBSD: Ustar.pm Log message: Ouch... fuck cvs CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:04:39 Modified files: usr.sbin/pkg_add/OpenBSD: Ustar.pm Log message: comment what's going on CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:07:10 Modified files: infrastructure/man/man1: pkg_subst.1 Log message: document -i CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:10:21 Modified files: share/man/man5 : bsd.port.mk.5 Log message: Document SUBST_* CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:11:05 Modified files: devel/netbeans : Makefile Log message: missed SUBST_* CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:11:47 Modified files: security/samhain: Makefile www/mimetex : Makefile www/wwwcount : Makefile Log message: more appropriate uses of INSTALL_PROGRAM. Unhardcode chown. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:13:18 Modified files: lang/ocaml : ocaml.port.mk x11/kde4 : kde4.port.mk Log message: _FAKESUDO where needed, from naddy CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:20:34 Modified files: net/totd : Makefile Log message: unhardcode path to install CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/08/10 04:25:04 Modified files: usr.bin/aucat : wav.c Log message: initialize mmcpos, found by guenther CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/08/10 04:25:35 Modified files: usr.bin/aucat : dev.c Log message: typo in debug message CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 05:00:36 Modified files: sys/dev/usb : ehci.c ohci.c uhci.c usbdi.c xhci.c Log message: Set and check for XFER_BUSY in the common methods instead of doing it in every HC driver. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:06:54 Modified files: net/gssdp : Makefile distinfo net/gssdp/pkg : PLIST Log message: update to gssdp-0.14.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:11:36 Modified files: devel/srecord : Makefile Log message: remove BROKEN-sparc64 as it's autofixed; it works fine now on sparc64. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:12:26 Modified files: net/icinga/web : Makefile net/icinga/web/patches: patch-etc_apache2_icinga-web_conf_in Log message: don't hardcode path to mod_rewrite.so so that the default config works with openbsd-httd-openbsd again. ok sthen@ rpe@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 05:18:57 Modified files: sys/dev/usb : ehci.c ohci.c uhci.c usb.c usbdi.h usbf_subr.c xhci.c Log message: Since USB xfer pools are accessed in interrupt context, initialize them with the correct ipl to prevent your CPU from locking against itself. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 05:21:49 Modified files: sys/dev/usb : xhci.c Log message: Merge xhci_device_setup() into xhci_pipe_init() there's no reason to have a separate function anymore, it is just a wrapper around the "set address" command. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/10 05:23:02 Modified files: share/man/man5 : bsd.port.mk.5 Log message: some Ev fixes; CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/08/10 05:26:07 Modified files: usr.sbin/pkg_add: package.5 Log message: zap trailing whitespace CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:34:27 Modified files: infrastructure/mk: bsd.port.mk Log message: fix path to install(1) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:37:28 Modified files: sysutils/ruby-shadow: Makefile distinfo sysutils/ruby-shadow/pkg: PLIST Log message: update to ruby-shadow-2.3.4 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:57:05 Modified files: graphics/evince: Makefile distinfo Log message: update to evince-3.12.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:59:17 Modified files: devel/libpeas : Makefile distinfo devel/libpeas/patches: patch-tests_libpeas_engine_c Log message: update to libpeas-1.10.1 CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/08/10 06:28:09 Modified files: share/man/man4 : vio.4 Log message: Note that qemu 1.7.2 has the VLAN bug fix, too CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 06:48:43 Modified files: sys/dev/usb : uhidev.c Log message: sizeof() a pointer of the right struct to appease clang. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 06:58:49 Modified files: sys/dev/usb : usb_subr.c Log message: Do not allocate space for the whole structure when we just want to store a pointer, found by clang. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 07:32:14 Modified files: sys/dev/usb : uhub.c Log message: Ask for the descriptor size corresponding to the number of ports present in the hub, not from some random value from the stack. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 08:42:56 Modified files: lib/libssl/src/ssl: d1_clnt.c d1_meth.c d1_srvr.c s23_clnt.c s23_lib.c s23_meth.c s23_srvr.c s3_clnt.c s3_meth.c s3_srvr.c ssl.h ssl_lib.c ssl_locl.h ssl_sess.c t1_clnt.c t1_meth.c t1_srvr.c Log message: Since we no longer need to support SSLv2-style cipher lists, start unravelling the maze of function pointers and callbacks by directly calling ssl3_{get,put}_cipher_by_char() and removing the ssl_{get,put}_cipher_by_char macros. Prompted by similar changes in boringssl. ok guenther. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 08:57:04 Modified files: lib/libssl/src/ssl: s3_lib.c Log message: Remove disabled (weakened export and non-ephemeral DH) cipher suites from the cipher list. This reduces code size, saves data segment space and prevents them from being turned back on at runtime by flipping a bit in memory. ok guenther@ CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/10 08:59:22 Modified files: distrib/miniroot: install.sh upgrade.sh Log message: { foo ; bar ; } -> { foo; bar; } OK krw@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 09:06:15 Modified files: lib/libssl/src/ssl: s3_lib.c Log message: Tweak cipher list comments and add missing cipher value comments. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/10 10:32:28 Modified files: distrib/miniroot: install.sh install.sub Log message: Convert if foo; then bar; fi blocks to foo && bar but leave out enable_network() because it shares code&style with /etc/netstart. No functional change. with feedback and OK krw@ halex@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/10 10:36:13 Modified files: regress/lib/libutil/bcrypt_pbkdf: bcrypt_pbkdf_test.c Log message: guenther wants a copyright CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/10 10:51:53 Modified files: net/tor : Makefile distinfo Log message: Update to tor 0.2.4.23; mitigates the attack described at https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-august-6th-2014 CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/10 11:15:18 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: - add -p to SYNOPSIS - the argument to -s is not optional ok ajacoutot CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 12:32:23 Modified files: x11/virt-viewer: Makefile distinfo x11/virt-viewer/pkg: PLIST Log message: update to virt-viewer-1.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/10 13:23:00 Modified files: net/wireshark : Makefile distinfo net/wireshark/patches: patch-Makefile_in Log message: SECURITY update to wireshark 1.10.9: dissector crashes, buffer underruns. patch-Makefile_in is now empty but cannot be removed until trees are fully unlocked. Noted in an XXX comment in Makefile. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/10 13:50:37 Modified files: textproc/calibre: Makefile distinfo textproc/calibre/patches: patch-src_calibre_gui2___init___py patch-src_calibre_linux_py textproc/calibre/pkg: PLIST Log message: update to Calibre 1.48.0 CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 14:39:03 Modified files: infrastructure/bin: portcheck Log message: Add check for WANTLIBs hidden by RUN_DEPENDS. This WILL eventually break bulk build, and I know at least two people (ajacoutot@ and me) that were already bitten by this problem. This somewhat increase check time, unfortunately, but not too much. Test for this feature to follow after full unlock. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 14:41:54 Modified files: infrastructure/bin: portcheck Log message: Add support for SKIPDIR, STARTDIR and STARTAFTER environment variables, like bsd.port.subdir.mk does. Allows to continue a long "portcheck -A" session. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 14:46:04 Modified files: infrastructure/bin: portcheck Log message: Get rid of "|| error=true" where it's not needed. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/10 14:54:17 Modified files: distrib/miniroot: install.sub Log message: [] -> [[]] OK krw@ "well ok" halex@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 15:02:39 Modified files: x11/tellico-kde4: Makefile Log message: Add a note to remove patch on the next update, upstream did a good job. CVSROOT: /cvs Module name: src Changes by: zhuk@cvs.openbsd.org 2014/08/10 15:09:26 Modified files: share/man/man5 : port-modules.5 Log message: Improve variables listing in x11/kde4 module description. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/10 15:31:54 Modified files: games/manaplus : Makefile distinfo games/manaplus/pkg: PLIST Log message: Update to 1.4.8.2 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/10 15:35:32 Modified files: games/alephone/alephone: Makefile games/alephone/alephone/patches: patch-Source_Files_FFmpeg_SDL_ffmpeg_c Log message: Fix alephone for newer FFmpeg API. ok bentley@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/10 15:50:41 Modified files: net/lftp : Makefile distinfo net/lftp/patches: patch-configure net/lftp/pkg : PLIST Log message: Update to lftp-4.5.3, from Rafael Sadowski. While here: - remove MAINTAINER, mail address bounces - fix (rather, hack) libssl detection which got broken with the removal of RAND_egd ok sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/10 15:55:18 Modified files: usr.sbin/relayd: relay_http.c Log message: There was a race in relayd that caused connections to hang. It happend with non-persistent PUT connections that had a very short body. If the whole body was read from the client before the connection to the server was set up, the event callback was not called. Do the regular checks after relay_connect() succeeded. OK reyk@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 16:19:12 Modified files: x11 : Makefile Log message: Disable nagstamon since it depends on a new port and we are not allowed to import anything just yet. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/10 17:44:20 Modified files: sys/kern : kern_sig.c Log message: Write the core file of a non-suid process into the current directory even if sysctl kern.nosuidcoredump has been set to 2 or 3. This allows a regular user to debug his programs again. OK guenther@ deraadt@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/08/10 18:10:21 Modified files: . : errata54.html errata55.html Log message: openssl 1.0.1i fixes CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 19:06:22 Modified files: lib/libssl/src/ssl: s3_lib.c ssl_locl.h ssl_sess.c Log message: Provide a ssl3_get_cipher_by_id() function that allows ciphers to be looked up by their ID. For one, this avoids an ugly mess in ssl_sess.c, where the cipher value is manually written into a buffer, just so the cipher can be located using ssl3_get_cipher_by_char(). ok bcook@ miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 19:10:42 Modified files: lib/libssl/src/ssl: s3_clnt.c ssl3.h ssl_lib.c Log message: Currently, ssl3_put_char_by_bytes(NULL, NULL) is just a long handed way of writing "2". Add a define for the SSL3_CIPHER_VALUE_SIZE (rather than using a less-readable hardcoded constant everywhere) and replace the ssl3_put_char_by_bytes(NULL, NULL) calls with it. ok bcook@ miod@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/10 22:18:19 Modified files: regress/usr.bin/mandoc: Makefile.inc regress/usr.bin/mandoc/man/TH: case.out_lint emptydate.out_lint noTH.out_lint twoargs.out_lint regress/usr.bin/mandoc/man/TP: eof.out_ascii eof.out_lint regress/usr.bin/mandoc/man/nf: dupe.out_lint regress/usr.bin/mandoc/mdoc/An: break.in break.out_ascii regress/usr.bin/mandoc/mdoc/At: invalid.out_lint regress/usr.bin/mandoc/mdoc/Bd: badargs.out_lint regress/usr.bin/mandoc/mdoc/Bf: badargs.out_lint regress/usr.bin/mandoc/mdoc/Bl: badargs.out_lint bareTa.out_lint column.in column.out_ascii emptyhead.out_lint emptyitem.out_lint emptytag.out_lint notype.out_lint regress/usr.bin/mandoc/mdoc/Dt: badarch.out_lint badsec.out_lint case.out_lint dupe.in dupe.out_ascii dupe.out_lint order.out_lint regress/usr.bin/mandoc/mdoc/Nm: Makefile badNAME.out_ascii badNAME.out_lint badNAMEuse.out_ascii badNAMEuse.out_lint emptyNAME.out_ascii emptyNAMEuse.out_ascii regress/usr.bin/mandoc/mdoc/Sh: first.out_lint order.out_lint regress/usr.bin/mandoc/mdoc/St: badargs.out_lint regress/usr.bin/mandoc/roff/de: escname.out_lint regress/usr.bin/mandoc/roff/nr: escname.out_lint regress/usr.bin/mandoc/roff/string: name.out_lint Log message: start catching up with recent code changes, but no new files yet CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/10 22:45:19 Modified files: lib/libssl/src/ssl: ssl2.h Log message: Remove now-unused SSL2_STATE as well as ssl2-specific state machine values. ok guenther@ jsing@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/10 22:46:42 Modified files: lib/libssl/src/ssl: s3_srvr.c Log message: Unchecked memory allocation and potential leak upon error in ssl3_get_cert_verify(). ok guenther@ jsing@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 00:30:39 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Move a sentence to the corresponding option description. from jmc@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/11 00:55:51 Modified files: x11/wxSVG : Makefile distinfo x11/wxSVG/pkg : PLIST Log message: Update to wxSVG 1.4.2. ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/11 02:21:55 Modified files: usr.sbin/ldapd : ldapd.8 Log message: add a caveat about databases; From: Matthew Weigel ok gilles CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 03:03:27 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Steal stripcom() from /etc/rc to parse sysmerge.ignore. CVSROOT: /cvs Module name: www Changes by: gilles@cvs.openbsd.org 2014/08/11 03:25:55 Modified files: opensmtpd : index.html Log message: replace outdated mirror CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 03:47:56 Modified files: usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Do not try to delete RTF_LOCAL entries. Such routes are automatically created /deleted by the kernel when an IP address is added/removed on/from an interface and should not be manipulated by userland tools. ok henning@, jca@ CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/08/11 03:50:51 Modified files: usr.sbin/smtpd : table_api.c Log message: missing memset in table_api.c (currently only used by pluggable tables) diff from Martijn van Duren CVSROOT: /cvs Module name: www Changes by: dlg@cvs.openbsd.org 2014/08/11 04:00:45 Modified files: . : 56.html Log message: mpath was enabled this release. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/11 04:46:19 Modified files: lib/libssl/src/ssl: ssl_lib.c Log message: Check the return value of sk_SSL_CIPHER_new_null(), since it allocates memory and can return NULL. ok miod@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/11 05:18:37 Modified files: sysutils/ykpers: Makefile distinfo sysutils/ykpers/pkg: PLIST Log message: update to ykpers 1.15.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/11 05:34:42 Modified files: infrastructure/mk: bsd.port.mk Log message: When copying pkg/README{,-*} from the port directory, pass -m to SUBST_CMD to ensure that a sane file mode are set. Also use SUBST_CMD -m for rc.d scripts (it wasn't available at the time the current code using a separate chmod was written). Discussed with espie, slight tweaks to previous diff to take _FAKESUDO into account. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/08/11 05:37:08 Modified files: net/p5-Net-Whois-RIPE: Makefile distinfo Log message: Update p5-Net-Whois-RIPE to 2.005004. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 05:50:41 Modified files: sys/netinet : if_ether.c Log message: Convert ARP llinfo allocation to pool(9). ok henning@, dlg@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 05:59:05 Modified files: sys/net : route.c rtsock.c Log message: Put back the checks about RTF_LOCAL routes now that userland tools are aware of them. Original commit message was: Reserve the highest route priority for kernel-managed routes and prevent userland from playing with the local and broadcast flags. ok claudio@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 06:37:36 Modified files: sys/kern : subr_pool.c Log message: bring back r1.131: take the pools mutex when copying stats out of it in the sysctl path so we are guaranteed a consistent snapshot. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 06:45:45 Modified files: sys/dev/cardbus: if_fxp_cardbus.c if_re_cardbus.c if_rl_cardbus.c if_xl_cardbus.c sys/dev/eisa : if_ep_eisa.c sys/dev/isa : if_ec.c if_ef_isapnp.c if_eg.c if_el.c if_ep_isa.c if_ep_isapnp.c if_ie.c if_lc_isa.c if_ne_isa.c if_ne_isapnp.c if_sm_isa.c if_we.c sys/dev/pcmcia : if_cnw.c if_ep_pcmcia.c if_malo.c if_sm_pcmcia.c if_xe.c sys/dev/sbus : be.c if_gem_sbus.c if_hme_sbus.c if_ti_sbus.c qe.c Log message: Fewer CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/11 06:57:14 Modified files: share/man/man5 : login.conf.5 Log message: document "tc"; From: Edward ok millert CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 07:25:23 Modified files: etc/rc.d : rc.subr Log message: Make it possible to pass arguments to _rc_parse_conf(). ok robert@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/11 07:29:43 Modified files: lib/libcrypto/crypto/arch/amd64: Makefile.inc lib/libssl/src/crypto/engine: eng_rsax.c lib/libssl/src/crypto/evp: e_rc4_hmac_md5.c Log message: Guard RSA / RC4-5 ASM when NO_ASM is not defined Most assembly blocks remain inactive if OPENSSL_NO_ASM is not defined, only enabling inline assembly, but the RSA / RC4-5 blocks (used only in amd64 systems) turn on implicitly. Guard these two as well. This simplifies enabling just inline ASM in portable, no effective change in OpenBSD. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 07:31:42 Modified files: sys/kern : subr_pool.c Log message: bring back r1.132: provide a pool_count global so we can figure out how many pools there are active without having to walk the global pool_list. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 07:51:07 Modified files: sys/net : if.c sys/netinet : if_ether.c sys/netinet6 : nd6.c Log message: Use the RTF_LOCAL flag instead of abusing the RTF_LLINFO flag when adding local route entries. This hack made sense when we didn't have the RTF_LOCAL flag, but since some months it is set on every local route. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 08:02:08 Modified files: devel/pango : Makefile devel/pango/pkg: PLIST x11/gnome/gdm : Makefile x11/gnome/gdm/pkg: PLIST Log message: Drop XXX, we are past 5.6 now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 09:25:30 Modified files: databases/evolution-data-server: Makefile distinfo Log message: Update to evolution-data-server-3.12.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 09:25:51 Modified files: mail/evolution : Makefile distinfo Log message: Update to evolution-3.12.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 09:26:12 Modified files: mail/evolution-ews: Makefile distinfo Log message: Update to evolution-ews-3.12.5. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/11 09:26:33 Modified files: usr.sbin/httpd : server_fcgi.c Log message: make a few variables more local CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/11 10:18:10 Modified files: . : MODULES 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/11 10:49:31 Modified files: devel/git : Makefile distinfo devel/git/patches: patch-Makefile devel/git/pkg : PLIST-main Log message: Update to 2.0.4; also install the "multimail" hooks as requested by djm@ ok benoit@ (maintainer) CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 10:54:20 Modified files: sys/arch/octeon/conf: GENERIC Log message: Add option USER_PCICONF for pcidump(8) to be able to do its magic. CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/08/11 11:36:18 Modified files: devel/subversion: Makefile distinfo Log message: Update to Subversion 1.8.10. -stable backports of important fixes will follow in about a week when new files can be created in the tree again. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:08:17 Modified files: sys/arch/octeon/dev: cn30xxasx.c cn30xxfau.c cn30xxfpa.c cn30xxgmx.c cn30xxpow.c cn30xxsmi.c if_cnmac.c Log message: De-static so that my ddb backtrace get closer to reality. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:29:56 Modified files: sys/arch/octeon/dev: cn30xxasx.c cn30xxasxreg.h cn30xxasxvar.h cn30xxbootbusreg.h cn30xxciureg.h cn30xxfpa.c cn30xxfpareg.h cn30xxgmx.c cn30xxgmxreg.h cn30xxgmxvar.h cn30xxipd.c cn30xxipdreg.h cn30xxipdvar.h cn30xxpip.c cn30xxpipreg.h cn30xxpipvar.h cn30xxpko.c cn30xxpkovar.h cn30xxpow.c cn30xxpowreg.h cn30xxpowvar.h if_cnmac.c if_cnmacvar.h octhcireg.h sys/arch/octeon/include: octeonvar.h Log message: Remove evcnt and %b format strings relying upon SEIL extensions. This gives OCTEON_ETH_DEBUG kernels a chance to build. No functional change for regular kernels. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:33:36 Modified files: sys/conf : newvers.sh Log message: -current dammit CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/11 12:34:59 Modified files: net/icinga/core: Makefile net/icinga/core/patches: patch-configure Log message: use the correct format string for time_t on i386, unbreaking logging there. patch bodged into patch-configure for now, to be split out after full unlock. CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/11 12:39:41 Modified files: usr.sbin/dhcpd : dhcp.c Log message: validate len field for proper length, not just "not zero." ok krw@ CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/11 12:41:13 Modified files: sbin/dhclient : dhclient.c Log message: When parsing 32 bit values, verify that we received 4 bytes. ok krw@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/11 12:44:02 Modified files: devel/p5-Data-Validate: Makefile distinfo Log message: update p5-Data-Validate to 0.09 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:52:54 Modified files: sys/arch/octeon/dev: cn30xxgmx.c cn30xxgmxvar.h Log message: Get rid of the `quirks' member, which is never initialized (but by zero at softc creation) anyway. Sorry, we are not trying to support SEIL-specific hardware at this point. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:56:49 Modified files: sys/arch/octeon/dev: cn30xxpow.c if_cnmac.c sys/arch/octeon/octeon: machdep.c Log message: Do not use CKSEG0 to quickly map physical addresses, but XKPHYS, for we are not limited to 512MB physmem. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 13:00:50 Modified files: sys/arch/octeon/dev: cn30xxgmx.c if_cnmac.c octcf.c octeon_pcibus.c octrtc.c Log message: Do not extern octeon_boot_info, declares it for you. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 13:16:56 Modified files: sys/kern : vfs_biomem.c Log message: Do not pmap_update(pmap_kernel()) within the `create mappings' loop, but only once after it is over. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/11 13:19:40 Modified files: net/p5-Net-SMTP-TLS-ButMaintained: Makefile distinfo net/p5-Net-SMTP-TLS-ButMaintained/pkg: DESCR Log message: - update p5-Net-SMTP-TLS-ButMaintained to 0.24 - mention that this perl module is deprecated OK sthen@ CVSROOT: /cvs Module name: src Changes by: kili@cvs.openbsd.org 2014/08/11 14:16:04 Modified files: etc/rc.d : rc.subr Log message: Let _rc_parse_conf stick to parsing /etc/rc.conf and /etc/rc.conf.local if it's invoked without parameters. It's simpler than adding adding /etc/rc.conf and /etc/rc.conf.local parameters whereever _rc_parse_conf is used (e.g. /etc/rc and /etc/netstart). While here, replace a for foo in "$@"; do something; done by for foo; do something; done ok aja@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 14:24:57 Modified files: etc/rc.d : rc.subr Log message: Typo. ok kili@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/11 14:28:47 Modified files: bin/ksh : io.c Log message: Still need to separately set FD_CLOEXEC if the new fd was >= FDBASE. Affects scripts that directly use 9 of the first 10 fds. noted by miod@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/11 14:30:22 Modified files: sys/dev/pci : pcidevs Log message: Add some Intel Z97 chipset devices; ok deraadt@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/11 14:30:51 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/08/11 14:56:15 Modified files: sysutils/ansible: Makefile distinfo sysutils/ansible/pkg: PLIST Log message: Update ansible to 1.7 For fixes, new features and improvments see: https://github.com/ansible/ansible/blob/release1.7.0/CHANGELOG.md OK aja@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/08/11 15:03:03 Modified files: www/selfoss : Makefile distinfo www/selfoss/pkg: PLIST README Log message: Update to selfoss 2.11 For fixes and improvments see: https://github.com/SSilence/selfoss/releases/tag/2.11 README: - Point to nginx configuration examples - Add hint how to update with authentication enabled OK aja@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/11 16:14:30 Modified files: usr.bin/tmux : cmd-select-pane.c tmux.1 tmux.h window.c Log message: Add flags to selectp to enable and disable input to a pane, from Anish Athalye. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/11 16:18:16 Modified files: usr.bin/tmux : screen.c tmux.h window-copy.c Log message: Fix two copy mode problems: 1. In vi mode the selection doesn't include the last character if you moved the cursor up or left. 2. In emacs mode the selection includes the last character if you moved the cursor to the left. From Balazs Kezes. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/11 16:39:57 Modified files: usr.bin/tmux : window-copy.c mode-key.c Log message: No need to repeat other-end more than once, from Juho Pohjala. Also add it to the commands list while here. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:05:47 Modified files: productivity/attica: Makefile Log message: Fix WANTLIB and add HOMEPAGE for libattica. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:15:43 Modified files: graphics/qimageblitz: Makefile Log message: Fix WANTLIB for qimageblitz. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:30:35 Modified files: infrastructure/bin: portcheck Log message: Make perl code in check_hardcoded() return non-zero on failure. More standard and error-prone style. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:37:44 Modified files: infrastructure/bin: portcheck Log message: Fix make(1) calls when SKIPDIR framework is in use. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:41:00 Modified files: x11/kde4/graphics-mobipocket: Makefile x11/kde4/graphics-mobipocket/pkg: PLIST Log message: update-desktop-database isn't needed here, spotted by portcheck. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:53:38 Modified files: infrastructure/man/man1: portbump.1 Log message: Make description of operation modes combining more clear. Add missing .Ev while there. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 18:59:27 Modified files: sys/kern : subr_pool.c Log message: bring back r1.132. this is a bit different cos we're still using splvm to protect pool_list rather than the rwlock that made i386 blow up: provide a pool_count global so we can figure out how many pools there are active without having to walk the global pool_list. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:01:11 Modified files: sys/kern : subr_pool.c Log message: bring back r1.134: inline is the new __inline CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:03:51 Modified files: x11/kde4/kimono: Makefile Log message: Another hidden WANTLIB - didn't bite us yet thanks to mono.port.mk, but it's better be safe than sorry still. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:05:46 Modified files: sys/kern : subr_pool.c Log message: bring back r1.135: matthew@ noticed i wasnt populating npages in the kinfo_pool sent to userland. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:08:31 Modified files: x11/kde4/kig : Makefile Log message: Since the time of enabling Boost+Python support in Kig, the devel/boost became an LDEP, actually. Spotted by portcheck. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:25:21 Modified files: sys/kern : subr_pool.c Log message: i accidentally removed the check for whether the requested pool in the sysctl path exists. return ENOENT instead of trying a NULL deref. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:31:39 Modified files: x11/herbstluftwm: Makefile Log message: Use LOCALBASE instead of /usr/bin/env shebang hack. okay bcallah@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:31:43 Modified files: sys/kern : subr_pool.c Log message: sigh. when returning ENOENT in the sysctl path, unlock on the way out. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:44:08 Modified files: infrastructure/bin: portcheck Log message: Properly ignore default.kde* files, they live under share/icons/ directly. CVSROOT: /cvs Module name: ports Changes by: lteo@cvs.openbsd.org 2014/08/11 21:00:16 Modified files: net/daq : Makefile Log message: Update MASTER_SITES CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 22:28:07 Modified files: sys/arch/mips64/mips64: mips64_machdep.c Log message: Pass 0 instead of uvm_map_hint() to uvm_map() in exec_md_map() to figure out where to put the fpu assist page, for uvm_map_hint() may return an address outside userland bounds due to aggressive randomization. Passing zero will still get a random address, but correctly bounded. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 22:29:05 Modified files: sys/uvm : uvm_map.c Log message: Revert 1.173 now that the real cause of the octeon regression has been fixed. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 22:30:21 Modified files: sys/arch/mips64/mips64: cache_octeon.c Log message: Better cache information gathering. Only affects information put in dmesg. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/12 01:59:34 Modified files: infrastructure/bin: pkg_subst Log message: Sync usage after addition of -m flag. ok jca@ and kirby@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/12 02:06:28 Modified files: multimedia/k3b-kde4: Makefile multimedia/k3b-kde4/patches: patch-plugins_decoder_ffmpeg_k3bffmpegwrapper_cpp Log message: Prepare for new FFMpeg. Will work on both old and new, but the bump should happen now, as the patch it uses routines we have in current FFMpeg already. Initial prodding by brad@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/12 04:09:56 Modified files: databases/redis: Makefile distinfo databases/redis/patches: patch-src_Makefile patch-src_Makefile_dep patch-src_redis_h Log message: Update to redis-2.8.13 CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/08/12 05:01:44 Modified files: net/serf : Makefile distinfo Log message: Update to serf 1.3.7. CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/08/12 05:02:50 Modified files: net/serf : Makefile Log message: In net/serf, define TEST_TARGET so regression tests can be run. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/12 06:44:48 Modified files: net/ucspi-unix : Makefile Log message: Fix dead HOMEPAGE. ok avsm@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/12 07:52:08 Modified files: sys/net : route.c route.h rtsock.c Log message: route_cb is internal to rtsock.c CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/12 07:58:41 Modified files: net/munin : Makefile net/munin/files: sensors_ Log message: switch sensors_ plugin graph category from system to sensors request and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/12 08:04:14 Modified files: www/wordpress : Makefile distinfo www/wordpress/pkg: PLIST Log message: Security update to wordpress-3.9.2 Details are here: http://wordpress.org/news/2014/08/wordpress-3-9-2/ Ok gonzalo@ (maintainer) CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/12 08:38:28 Modified files: sys/net : pf.c pf_ioctl.c Log message: Apart from some minor code reshuffling the big change is that we start with a ruleset pointer assigned to pf_main_ruleset so that pf_purge_rule doesn't get called with a NULL. Prompted by the discussion with Alexandr Nedvedicky . OK henning CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/12 08:42:06 Modified files: sys/net : pf.c Log message: Make sure that pf_step_into_anchor always saves a pointer to the rule that owns the anchor on the pf anchor stack. There's no reason why we should check for depth here. As a side effect this makes sure that the correct nested anchor gets it's counter bumped instead of the top most. For the save/restore symmetry pf_step_out_of_anchor is made to always restore previous value of the anchor rule. depth == 0 means what we a at the top (main ruleset). OK henning CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/12 09:02:52 Modified files: lib/libssl/src/crypto: md32_common.h Log message: Replace intrinsic ROTATE macros with an inline. Without the cast/mask, the compiler is allowed to optimize this directly to the correct CPU intrinsic for rotate. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/12 09:29:33 Modified files: sys/net : pf.c pf_ioctl.c pfvar.h Log message: Finally implement what's stated in the man page regarding parent anchors for "once" rules: "In case this is the only rule in the anchor, the anchor will be destroyed automatically after the rule is matched." Employ an additional pointer pair to keep track of the parent ruleset containing the anchor that we want to remove. OK henning CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/12 13:19:42 Modified files: usr.bin/mandoc : out.h Log message: The macro SCALE_HS_INIT() is always passed the result of strlen() or an equivalent number as its argument, and strlen() measures the width of a string in characters, not in basic units. No functional change right now, but important for the upcoming scaling unit fixes. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/12 13:27:57 Modified files: usr.bin/mandoc : out.c Log message: In mdoc(7) and man(7), if a width is given as a bare number without specifying a unit, the implied unit is 'n' (on the terminal, one character position; in PostScript, half of the current font size in points), not 'u' (roff output device basic unit). No functional change right now, but important for the upcoming scaling unit fixes. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/12 13:33:59 Modified files: sys/arch/mips64/mips64: tlbhandler.S Log message: addu -> PTR_ADDU when doing address arithmetic in the octeon-specific code path. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/12 13:35:28 Modified files: sys/arch/octeon/include: vmparam.h Log message: Lower VM_PHYSSEG_MAX from the mips64 default to a generous 4, and change allocation strategy to VM_PSTRAT_BIGFIRST. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/12 14:36:41 Modified files: lib/libssl/src/doc/crypto: ASN1_OBJECT_new.pod lib/libssl/src/doc/ssl: SSL_CTX_set_max_cert_list.pod Log message: Merge a patch that i successfully pushed to OpenSSL, original OpenSSL commit message follows: Fixed as shown; to be released post-1.0.2 commit bebbb11d132cc149f7713d6693703f8bfae10072 Author: Ingo Schwarze Date: Sat Jan 18 11:46:25 2014 +0100 RT3239: Extra comma in NAME lines of two manpages In two OpenSSL manual pages, in the NAME section, the last word of the name list is followed by a stray trailing comma. While this may seem minor, it is worth fixing because it may confuse some makewhatis(8) implementations. While here, also add the missing word "size" to the one line description in SSL_CTX_set_max_cert_list(3). Reviewed by: Dr Stephen Henson CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/12 19:00:16 Modified files: usr.sbin/tftpd : tftpd.c Log message: setsockopt sets errno on failure, so we can use err instead of errx when handling the error. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/12 19:03:57 Modified files: usr.sbin/tftpd : tftpd.c Log message: use errc instead of juggling errno values in tftpd_listen. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/13 00:04:10 Modified files: lib/libcrypto/crypto: arc4random_linux.h arc4random_osx.h arc4random_solaris.h Log message: munmap correct object in (extremely unlikely, and effectively terminal) case of failing to map the 2nd object. found by Paul Maurers CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/13 00:18:48 Modified files: security/opensc: Makefile distinfo security/opensc/patches: patch-configure_ac patch-src_pkcs11_Makefile_in patch-src_tests_Makefile_in security/opensc/pkg: PLIST Log message: Update to opensc-0.14.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/13 00:19:59 Modified files: x11/xbindkeys : Makefile distinfo x11/xbindkeys/patches: patch-xbindkeys_1 Log message: Bugfix update to xbindkeys-1.8.6 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 01:36:21 Modified files: sys/dev/pci : pcidevs Log message: Add some more 9 series ids, correct some existing ones and add 9 series LP/Wildcat Point-LP entries. ok millert@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 01:36:58 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/13 01:44:20 Modified files: www/gtkhtml4 : Makefile distinfo Log message: update to gtkhtml4-4.8.4 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 01:45:37 Modified files: sys/dev/pci : ichiic.c azalia.c pucdata.c pciide.c Log message: match on Intel 9 series and 9 series LP PCH, and add 8 series KT to puc ok millert@ CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/13 02:08:55 Modified files: usr.sbin/httpd : httpd.c Log message: fix early loop termination in httpd path_info() without this fix httpd always put at least the first path component in SCRIPT_NAME even when it did not exist. Now for completely non-existant paths everything goes into PATH_INFO. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/13 02:42:46 Modified files: usr.bin/sndiod : dsp.c sndiod.1 Log message: Spelling - "alignment" not "alignement". ok ratchov CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/13 02:43:36 Modified files: infrastructure/db: user.list Log message: add a user for www/puppetboard OK jasper@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/13 02:44:47 Modified files: www/puppetboard: Makefile www/puppetboard/pkg: PLIST puppetboard.rc Log message: puppetboard doesn't need to run as root, so add a user for it. feedback and OK jasper@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/13 03:46:23 Modified files: sys/net : if_pflow.h if_pflow.c Log message: Bring IPFIX sequence numbers in line with the RFC; original diff from benno@. ok benno@, florian@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/08/13 05:13:53 Modified files: . : plus.html Log message: plus.html july 28 to august 3rd. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/13 05:22:39 Modified files: security/opensc: Makefile security/opensc/pkg: PFRAG.shared PLIST Log message: Fix: onepin-opensc-pkcs11.so belongs to PFRAG.shared CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/13 06:03:40 Modified files: sys/net : if_pppoe.c Log message: Correctly set the rtable ID of the packet header when sending Active Discovery Terminate packets. ok mikeb@, henning@, phessler@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/08/13 09:13:33 Modified files: devel/cppcheck : Makefile distinfo devel/cppcheck/pkg: PLIST Log message: update to cppcheck 1.66 ok gsoares@ (maintainer) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 09:19:24 Modified files: usr.bin/mandoc : html.c html.h mdoc_html.c Log message: Use for .Em and .Bf -emphasis. The vast majority of .Em in real-world manuals is stress emphasis, for which is the correct markup. Admittedly, there are some instances of .Em usage for alternate quality, for which would be a better match. Most of these are technical terms that neither allow semantic markup nor are keywords - for the latter, .Sy would be preferable. A typical example is that the shell breaks input into .Em words . Alternate voice or mood, which would also require , is almost absent from manuals. We cannot satisfy both stress emphasis and alternate quality, so pick the one that fits more often and looks less wrong when off. Patch from Guy Harris . ok bentley@ joerg@NetBSD CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/13 10:04:28 Modified files: usr.sbin/httpd : httpd.c httpd.h server_fcgi.c Log message: Provide a failsafe version of the path_info() function that doesn't need a temporary path variable. Based on an initial diff from chrisz@. "Commit any failsafe version and I'm ok with it" chrisz@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 11:02:21 Modified files: faq : faq9.html current.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 11:37:31 Modified files: . : 52.html alpha.html amd64.html goals.html i386.html plus32.html plus33.html plus34.html plus35.html policy.html sparc.html sparc64.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 11:38:53 Modified files: . : index.html Log message: using cvsweb.openbsd.org now for cvsweb CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/13 11:41:58 Modified files: usr.sbin/tftpd : tftpd.c Log message: Always call freeaddrinfo after getaddrinfo. ok dlg@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:00:25 Modified files: libressl : index.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/13 12:00:54 Modified files: usr.sbin/httpd : server_fcgi.c Log message: For a non-existent root we don't want the root prefix to show up in PATH_INFO. Therefore put a lower bound of strlen(root) on scriptlen. This makes perfect sense for virtual FastCGI scripts which run chrooted in another directory from httpd. ok reyk@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:05:19 Modified files: openbgpd : index.html opencvs : index.html openntpd : index.html opensmtpd : index.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:15:49 Modified files: faq/ports : ports.html specialtopics.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:20:33 Modified files: openssh : features.html history.html index.html manual.html specs.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:02:16 Modified files: app/ssh-askpass: Makefile app/xlockmore : Makefile.bsd-wrapper app/xsystrace : Makefile app/xterm : Makefile lib/libXt : Makefile.bsd-wrapper Log message: Install resource files in /usr/X11R6/share/X11/app-defaults /etc/X11/app-defaults stays 1st in the libXt search path so, people and ports can put customized versions there if needed. If you didn't customize the versions in /etc/X11/app-defaults, they should be removed to avoid future issues when one file changes. discussed at g2k14 and ok ajacoutot@ CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:17:10 Modified files: faq : current.html Log message: moved X resource files... I've added markers to ease rotation of the file once it's released. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:19:56 Modified files: etc/mtree : BSD.x11.dist Log message: Add /usr/X11R6/share/X11/app-defaults CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 16:09:28 Modified files: share/man/man7 : roff.7 usr.bin/mandoc : html.c term_ascii.c term_ps.c Log message: Begin cleanup of scaling units. Note that we use 240u := 1i for all devices, even -Tps and -Tpdf. Big fix of -Tascii rendering of f, m, and u. Small fix of -Tascii rendering of c. Big fix of -Thtml rendering of u. Big fix of -Tps rendering of m, p, and u. Clarify -Tps rendering of c. Correct documentation of scaling units, in particular with respect to u. This for example improves rendering of the OpenGL manuals. Joint work with kristaps@. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 18:07:55 Modified files: regress/usr.bin/mandoc: Makefile.inc Makefile.sub Log message: Add a simple target to validate the syntax of -Thtml output. Not hooked to the build yet because there are still too many bugs. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 18:29:12 Modified files: usr.bin/mandoc : html.c html.h mdoc_html.c Log message: Revert previous, as requested by kristaps@. The .Bf block can contain subblocks, so it has to render as an element that can contain flow content. But cannot contain flow content, only phrasing content. Rendering .Em and .Bf differently would by unfortunate, and closing out .Bf before subblocks and re-opening it afterwards would merely complicate both the C code of the program and the generated HTML code. Besides, converting .Em to semantic HTML markup would require some content to be put into and some into , but we cannot automatically distinguish which is which, so strictly speaking, we can't use semantic HTML here but have to fall back to physical markup. Wonders of HTML... CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/13 19:05:03 Modified files: emulators/qemu : Makefile distinfo emulators/qemu/patches: patch-configure emulators/qemu/pkg: PLIST Added files: emulators/qemu/patches: patch-tcg_ppc_tcg-target_c Removed files: emulators/qemu/patches: patch-util_cache-utils_c Log message: Update to QEMU 2.1.0 ok bcallah@ rpe@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/13 19:08:09 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_CodeGen_SelectionDAG_LegalizeVectorTypes_cpp Added files: devel/llvm/patches: patch-lib_CodeGen_SelectionDAG_LegalizeTypes_h Log message: r211435 Legalizer: Add support for splitting insert_subvectors. We handle this by spilling the whole thing to the stack and doing the insertion as a store. PR19492. This happens in real code because the vectorizer creates v2i128 when AVX is enabled. ok matthew@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:56 src/regress/usr.bin/mandoc/man/B Update of /cvs/src/regress/usr.bin/mandoc/man/B In directory cvs.openbsd.org:/tmp/cvs-serv30582/man/B Log Message: Directory /cvs/src/regress/usr.bin/mandoc/man/B added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:57 src/regress/usr.bin/mandoc/man/SH Update of /cvs/src/regress/usr.bin/mandoc/man/SH In directory cvs.openbsd.org:/tmp/cvs-serv30582/man/SH Log Message: Directory /cvs/src/regress/usr.bin/mandoc/man/SH added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:58 src/regress/usr.bin/mandoc/mdoc/Dd Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Dd In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Dd Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Dd added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:59 src/regress/usr.bin/mandoc/mdoc/Ex Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Ex In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Ex Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Ex added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:34:00 src/regress/usr.bin/mandoc/mdoc/Os Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Os In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Os Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Os added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:34:01 src/regress/usr.bin/mandoc/mdoc/Rv Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Rv In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Rv Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Rv added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:45:03 src/regress/usr.bin/mandoc/roff/scale Update of /cvs/src/regress/usr.bin/mandoc/roff/scale In directory cvs.openbsd.org:/tmp/cvs-serv14905/roff/scale Log Message: Directory /cvs/src/regress/usr.bin/mandoc/roff/scale added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:58:51 Modified files: regress/usr.bin/mandoc/man/TS: Makefile regress/usr.bin/mandoc/roff/esc: Makefile regress/usr.bin/mandoc/tbl: Makefile Log message: add missing NOPTS arguments CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:00:53 Modified files: regress/usr.bin/mandoc/man: Makefile regress/usr.bin/mandoc/man/TH: Makefile regress/usr.bin/mandoc/mdoc: Makefile regress/usr.bin/mandoc/mdoc/An: Makefile regress/usr.bin/mandoc/mdoc/Bd: Makefile regress/usr.bin/mandoc/mdoc/Bl: Makefile regress/usr.bin/mandoc/mdoc/Dt: Makefile regress/usr.bin/mandoc/mdoc/Sh: Makefile regress/usr.bin/mandoc/roff: Makefile regress/usr.bin/mandoc/roff/it: Makefile Added files: regress/usr.bin/mandoc/man/B: Makefile args.in args.out_ascii args.out_lint regress/usr.bin/mandoc/man/SH: Makefile broken.in broken.out_ascii broken.out_lint broken_eline.in broken_eline.out_ascii broken_eline.out_lint noarg.in noarg.out_ascii noarg.out_lint regress/usr.bin/mandoc/man/TH: noarg.out_lint onearg.out_lint regress/usr.bin/mandoc/mdoc/An: break.out_lint regress/usr.bin/mandoc/mdoc/Bd: centered.in centered.out_ascii regress/usr.bin/mandoc/mdoc/Bl: bareIt.in bareIt.out_ascii bareIt.out_lint column.out_lint regress/usr.bin/mandoc/mdoc/Dd: Makefile badarg.in badarg.out_ascii badarg.out_lint dupe.in dupe.out_ascii dupe.out_lint late.in late.out_ascii late.out_lint manarg.in manarg.out_ascii manarg.out_lint noarg.in noarg.out_lint order.in order.out_ascii order.out_lint regress/usr.bin/mandoc/mdoc/Dt: late.in late.out_ascii late.out_lint missing.in missing.out_ascii missing.out_lint noarg.in noarg.out_ascii noarg.out_lint nosec.in nosec.out_ascii nosec.out_lint regress/usr.bin/mandoc/mdoc/Ex: Makefile args.in args.out_ascii noname.in noname.out_ascii noname.out_lint nostd.in nostd.out_ascii nostd.out_lint regress/usr.bin/mandoc/mdoc/Os: Makefile dupe.in dupe.out_ascii dupe.out_lint late.in late.out_ascii late.out_lint missing.in missing.out_ascii missing.out_lint regress/usr.bin/mandoc/mdoc/Rv: Makefile args.in args.out_ascii noname.in noname.out_ascii noname.out_lint nostd.in nostd.out_ascii nostd.out_lint regress/usr.bin/mandoc/mdoc/Sh: subbefore.in subbefore.out_ascii subbefore.out_lint regress/usr.bin/mandoc/roff/it: badarg.in badarg.out_ascii badarg.out_lint regress/usr.bin/mandoc/roff/scale: Makefile horiz.in horiz.out_ascii Removed files: regress/usr.bin/mandoc/mdoc/Dt: baddate.in baddate.out_ascii baddate.out_lint lateos.in lateos.out_ascii lateos.out_lint nodate.in nodate.out_lint noos.in noos.out_lint Log message: new regression tests collected during recent work CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:49:23 Modified files: usr.bin/mandoc : Makefile Log message: mandoc 1.13.1 has been released CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:54:14 Modified files: regress/usr.bin/mandoc/roff/it: badarg.in Log message: fix date that got changed by Mdocdate and no longer matches the desired output CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 21:57:44 Modified files: sys/dev/pci/drm: drm.h i915_drm.h Log message: add some definitions from libdrm 2.4.56 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/08/13 22:00:28 Modified files: lib/libdrm : Makefile.inc xf86drm.c xf86drmMode.h lib/libdrm/radeon: radeon_surface.c Log message: update to libdrm 2.4.56 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/08/13 22:02:47 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 00:28:32 Modified files: x11/gnome/rygel: Makefile distinfo x11/gnome/rygel/pkg: PLIST Removed files: x11/gnome/rygel/patches: patch-configure Log message: update to 0.22.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:38:02 Modified files: textproc/py-enchant: Makefile distinfo textproc/py-enchant/pkg: PLIST Removed files: textproc/py-enchant/patches: patch-setup_py Log message: Update to py-enchant-1.6.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:38:51 Modified files: security/libpwquality: Makefile distinfo security/libpwquality/pkg: PLIST Removed files: security/libpwquality/patches: patch-python_Makefile_in Log message: Update to libpwquality-1.2.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:40:00 Modified files: security/libpwquality: Makefile Log message: Tweaks, no pkg change. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 00:42:16 Modified files: devel/libgit2/libgit2-glib: Makefile distinfo devel/libgit2/libgit2-glib/pkg: PLIST Added files: devel/libgit2/libgit2-glib/patches: patch-libgit2-glib_ggit-blob-output-stream_c Log message: - update to libgit2-glib-0.0.20 - whack the OutputStream statemachine with mutexes and conditional variables (from guenther@, thanks!) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 00:51:33 Modified files: graphics/clutter/core: Makefile distinfo graphics/clutter/core/pkg: PLIST Log message: update to clutter-1.18.4 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:52:06 Modified files: print/cups-filters: Makefile distinfo print/cups-filters/patches: patch-filter_foomatic-rip_foomaticrip_c print/cups-filters/pkg: PLIST Removed files: print/cups-filters/patches: patch-filter_foomatic-rip_util_h Log message: Update to cups-filters-1.0.55. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:52:59 Modified files: sysutils/bacula: Makefile distinfo sysutils/bacula/patches: patch-Makefile_in patch-src_dird_bacula-dir_conf_in patch-src_stored_bacula-sd_conf_in sysutils/bacula/pkg: PLIST-main PLIST-server Removed files: sysutils/bacula/patches: patch-src_cats_create_postgresql_database_in Log message: Update to bacula-client-7.0.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:54:24 Modified files: sysutils/nut : Makefile sysutils/nut/pkg: PLIST-main README-main Removed files: sysutils/nut/patches: patch-conf_nut_conf_sample Log message: Drop configuration files only used by System V init scripts and add a mention in the README. input/ok sthen@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:55:42 Modified files: www/owncloud : Makefile distinfo www/owncloud/patches: patch-apps_updater_appinfo_info_xml patch-lib_private_util_php www/owncloud/pkg: PLIST README Added files: www/owncloud/patches: patch-core_templates_installation_php Log message: Update to owncloud-7.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:56:55 Modified files: audio/pulseaudio: Makefile Added files: audio/pulseaudio/patches: patch-src_modules_rtp_rtp_c Log message: SECURITY fix for CVE-2014-3970 pulseaudio: denial of service in module-rtp-recv CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:00:25 Log message: import mFi-2.0.24 This package contains controller software for Ubiquiti mFi automation controllers. ok sthen@ Status: Vendor Tag: jasper Release Tags: jasper_20141408 N ports/net/mfi/Makefile N ports/net/mfi/distinfo N ports/net/mfi/pkg/DESCR N ports/net/mfi/pkg/PLIST N ports/net/mfi/pkg/mfi.rc No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:01:21 Modified files: net : Makefile Log message: +mfi CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 01:04:22 Modified files: graphics/py-Pillow: Makefile Added files: graphics/py-Pillow/patches: patch-Sane_setup_py graphics/py-Pillow/pkg: DESCR-main DESCR-sane PLIST-main PLIST-sane Removed files: graphics/py-Pillow/pkg: DESCR PLIST Log message: Build the python sane bindings. Subpackage this port: py-Pillow py-sane ok sthen@ rpointel@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 01:06:00 Modified files: games/fretsonfire: Makefile games/mnemosyne: Makefile geo/gmapcatcher: Makefile geo/tilecache : Makefile graphics/asymptote: Makefile graphics/comix : Makefile graphics/py-graphics: Makefile graphics/py-matplotlib: Makefile graphics/py-pyx: Makefile misc/gramps : Makefile multimedia/moovida/core: Makefile multimedia/moovida/plugins-ugly: Makefile multimedia/moovida/plugins-good: Makefile multimedia/moovida/plugins-bad: Makefile print/hplip : Makefile print/py-reportlab/reportlab: Makefile print/scribus : Makefile productivity/impressive: Makefile textproc/calibre: Makefile Log message: Bump after py-Pillow sub-packaging. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:15:22 Modified files: sysutils/ruby-libvirt: Makefile distinfo sysutils/ruby-libvirt/pkg: PLIST Log message: update to ruby-libvirt-0.5.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:15:52 Modified files: net/telepathy/folks: Makefile distinfo Log message: update to folks-0.9.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:24:29 Modified files: converters/ruby-json: Makefile distinfo converters/ruby-json/pkg: PLIST Log message: update to json-1.8.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 01:47:14 Modified files: print/cups-filters: Makefile distinfo Log message: Update to cups-filters-1.0.57. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/14 01:50:24 Modified files: devel/gdb : Makefile distinfo devel/gdb/patches: patch-bfd_coff-rs6000_c patch-bfd_elf_c patch-bfd_peXXigen_c patch-gdb_data-directory_Makefile_in patch-gdb_doc_Makefile_in patch-libiberty_Makefile_in devel/gdb/pkg : PLIST Removed files: devel/gdb/patches: patch-gdb_bsd-kvm_c Log message: Update to GDB 7.8. CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/14 01:50:35 Modified files: usr.sbin/httpd : server_file.c Log message: Remove obsolete struct stat parameters. ok reyk@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/14 01:55:17 Modified files: sys/net : pf_lb.c Log message: fix logging strings (correct function name via __func__ + a typo) ok florian@ henning@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 02:08:00 Modified files: usr.sbin/npppd/npppd: npppd_subr.c Log message: Do not set RTF_MASK, it is not used anymore. ok yasuoka@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 02:10:30 Modified files: usr.bin/systat : pool.c systat.1 Log message: Show only active pools by default, pressing 'A' shows all of them. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/14 02:20:27 Modified files: graphics/ffmpeg: Makefile distinfo graphics/ffmpeg/patches: patch-configure patch-version_sh graphics/ffmpeg/pkg: PLIST x11/mplayer : Makefile Removed files: graphics/ffmpeg/patches: patch-doc_examples_transcode_aac_c patch-libavutil_lzo_c Log message: Update to FFmpeg 20140810 snapshot. From master branch. ok ajacoutot@ zhuk@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 02:22:38 Modified files: sys/netinet : ip_mroute.c ip_mroute.h raw_ip.c Log message: Kill MRT_{ADD,DEL}_BW_UPCALL interfaces and the bandwidth monitoring code that comes with them. ok mikeb@, henning@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 02:26:10 Modified files: devel/libgit2/libgit2-glib: Makefile devel/libgit2/libgit2-glib/pkg: PLIST Log message: Add vala bindings. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 03:00:06 Modified files: net/icinga/core/patches: patch-configure Added files: net/icinga/core/patches: patch-base_logging_c Log message: normalize patches, now that trees are unlocked CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 03:00:21 Removed files: net/wireshark/patches: patch-Makefile_in Log message: normalize patches, now that trees are unlocked CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 03:01:47 Modified files: sys/kern : init_main.c sys/net : route.c sys/netinet : ip_mroute.c sys/netinet6 : ip6_mroute.c Log message: No need for raw_cb.h CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/14 03:12:26 Modified files: usr.sbin/httpd : http.h Log message: Sync with RFC 7230-7235 phrases and IANA registered status codes. ok reyk@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/14 03:52:03 Modified files: sys/dev/pci : if_oce.c Log message: Implement rxrinfo ioctl for cluster usage statistics CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/14 04:16:08 Modified files: www/puppet-dashboard: Makefile www/puppet-dashboard/pkg: README Added files: www/puppet-dashboard/patches: patch-lib_tasks_import_reports_rake Log message: make the import of old reports work fix HOMEPAGE add hidden RDEP to ruby-rake take MAINTAINER feedback and OK jasper@ (former MAINTAINER) CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/14 04:30:52 Modified files: usr.sbin/relayd: http.h Log message: Sync with httpd, including the following change from doug@: "Sync with RFC 7230-7235 phrases and IANA registered status codes. ok reyk@" CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/14 05:38:14 Modified files: sys/net : if.c Log message: Compare number of allocated clusters with a low watermark, not a magic number 4 since sometimes we can't fit a single packet (jumbo frame) into 4 clusters. OK dlg CVSROOT: /cvs Module name: src Changes by: bcallah@cvs.openbsd.org 2014/08/14 06:22:58 Modified files: usr.bin/mg : keymap.c Log message: Add bounce matching for [] and {} like mg already does with () and like Emacs does. ok florian@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 06:34:05 Modified files: usr.bin/netstat: mroute.c Log message: Kill bandwidth monitoring meters. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 06:44:44 Modified files: usr.sbin/tcpdump: pfctl_osfp.c print-802_11.c print-atalk.c print-atm.c print-domain.c print-dvmrp.c print-enc.c print-ether.c print-etherip.c print-fddi.c print-frag6.c print-gre.c print-gtp.c print-iapp.c print-icmp.c print-icmp6.c print-igrp.c print-ip.c print-ip6.c print-ipsec.c print-ipx.c print-krb.c print-lldp.c print-mobile.c print-netbios.c print-nfs.c print-null.c print-ospf.c print-ospf6.c print-pflog.c print-pfsync.c print-pim.c print-ppp.c print-raw.c print-rip.c print-ripng.c print-rt6.c print-skip.c print-sl.c print-slow.c print-stp.c print-sunrpc.c print-tcp.c print-udp.c Log message: No use for nor . CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 06:55:50 Modified files: usr.bin/systat : netstat.c pf.c usr.bin/netstat: inet.c inet6.c net80211.c Log message: No need for nor . CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 06:57:09 Modified files: audio/pulseaudio: Makefile Added files: audio/pulseaudio/patches: patch-src_pulse_util_c Log message: Implement pa_get_binary_name(). ok robert@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/14 08:36:49 Log message: perl client lib for clamav's clamd; help & ok sthen Status: Vendor Tag: henning Release Tags: henning_2014-08-14 N ports/security/p5-File-Scan-ClamAV/Makefile N ports/security/p5-File-Scan-ClamAV/distinfo N ports/security/p5-File-Scan-ClamAV/pkg/DESCR N ports/security/p5-File-Scan-ClamAV/pkg/PLIST N ports/security/p5-File-Scan-ClamAV/patches/patch-t_01ping_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_02reload_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_03quit_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_04scan_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_05streamscan_t No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/14 08:37:37 Modified files: security : Makefile Log message: SUBDIR += p5-File-Scan-ClamAV CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 09:38:34 Modified files: net/nagios/nsca: Makefile Log message: allow either nagios or icinga as a dependency of nsca, like already done for nsca-ng. noticed by henning@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 09:49:38 Modified files: net/monitoring-plugins: Makefile net/monitoring-plugins/pkg: PLIST-dbi PLIST-fping PLIST-game PLIST-ldap PLIST-mysql PLIST-pgsql PLIST-samba PLIST-snmp Log message: add some missing @conflicts CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/14 11:04:12 Modified files: databases/postgresql: Makefile lang/ruby : Makefile.inc Added files: infrastructure/bin: install-wrapper Log message: Add the remaining pieces to allow fake as non-root. Not enabled as a general default yet. Committing for espie@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/14 11:21:38 Modified files: sys/uvm : uvm_map.c Log message: Bring back 1.173 (reverting 1.174) - mips64 systems are still unhappy when the hint returned is over VM_MAXUSER_ADDRESS, apparently; better be safe for now while this is investigated further. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/14 11:49:50 Modified files: sys/arch/vax/if: sgec.c Log message: Unused variable, and more fixes in the attach failure path. CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/14 11:55:28 Modified files: lib/libc/sys : Makefile.inc lib/libcrypto : x509v3.cnf lib/libssl/src/crypto/dso: dso.h sys/arch/aviion/stand/vdmtool: vdmtool.c sys/arch/mips64/include: cpu.h Log message: fixed overrid(d)en typo millert@ and jmc@ agree that "overriden" is wrong CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/14 13:08:21 Modified files: usr.sbin/bgpctl: bgpctl.8 Log message: remove two duplicate command entries; reported by Denis Fondras CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/14 13:43:45 Modified files: gnu/usr.bin/binutils/bfd: elfxx-mips.c Log message: Backport from binutils-2.17: 2005-08-17 Alan Modra * elfxx-mips.c (_bfd_mips_elf_hide_symbol): Cope with being called without any got section. ok miod@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 13:54:10 Modified files: infrastructure/templates: rc.template Log message: Sync with reality. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/14 13:55:18 Modified files: geo/openbsd-developers: Makefile geo/openbsd-developers/files: OpenBSD Log message: I graduated from New Jersey to New York! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 13:57:49 Log message: Import py-secretstorage-2.1.1. This module provides a way for securely storing passwords and other secrets. It uses D-Bus Secret Service API that is supported by GNOME Keyring and KSecretsService. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/security/py-secretstorage/distinfo N ports/security/py-secretstorage/Makefile N ports/security/py-secretstorage/pkg/DESCR N ports/security/py-secretstorage/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 13:59:01 Log message: Import py-keyring-3.8. The Python keyring lib provides a easy way to access the system keyring service from python. It can be used in any application that needs safe password storage. <...> ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/security/py-keyring/distinfo N ports/security/py-keyring/Makefile N ports/security/py-keyring/pkg/DESCR N ports/security/py-keyring/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:00:22 Modified files: security : Makefile Log message: +py-keyring +py-secretstorage CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:02:28 Log message: Import ocrfeeder-0.8. OCRFeeder is a complete Optical Character Recognition and Document Analysis and Recognition program. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/x11/gnome/ocrfeeder/Makefile N ports/x11/gnome/ocrfeeder/distinfo N ports/x11/gnome/ocrfeeder/pkg/DESCR N ports/x11/gnome/ocrfeeder/pkg/PLIST N ports/x11/gnome/ocrfeeder/patches/patch-src_ocrfeeder_feeder_documentGeneration_py N ports/x11/gnome/ocrfeeder/patches/patch-configure N ports/x11/gnome/ocrfeeder/patches/patch-src_ocrfeeder_util_constants_py_in N ports/x11/gnome/ocrfeeder/patches/patch-src_ocrfeeder_studio_studioBuilder_py No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:03:00 Modified files: x11/gnome : Makefile Log message: +ocrfeeder CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:03:37 Modified files: x11 : Makefile Log message: Re-enable nagstamon; dependant ports are in tree now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:05:39 Log message: Import gstreamer1mm-1.0.10. gstreamermm provides C++ bindings for the GStreamer streaming multimedia library. With gstreamermm it is possible to develop applications that work with multimedia in C++. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/multimedia/gstreamer1/mm/Makefile N ports/multimedia/gstreamer1/mm/distinfo N ports/multimedia/gstreamer1/mm/pkg/DESCR N ports/multimedia/gstreamer1/mm/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:06:05 Modified files: multimedia/gstreamer1: Makefile Log message: +mm CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/14 14:06:41 Modified files: share/man/man7 : roff.7 Log message: double word fix-o; CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/14 14:29:08 Modified files: sys/dev/usb : usbdevs Log message: Add USB hubs found on Intel Z97 chipset boards (one attached to each EHCI root hub). OK deraadt@ jsg@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/14 14:29:31 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/14 14:55:41 Modified files: share/man/man7 : mdoc.7 Log message: Clarify that .Em and .Sy are physical, not semantic markup, explain appropriate usage, and provide some examples. ok jmc@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/14 15:14:09 Modified files: emulators/qemu : Makefile Log message: commit from the right dir so the actual 2.1.0 Makefile goes in. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/14 16:32:28 Modified files: usr.bin/mandoc : term_ascii.c Log message: Some compilers apparently worry that abort() might return and then throw a "may be used uninitialized" warning, so sprinkle some /* NOTREACHED */. No functional change. Noticed by Thomas Klausner . CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/14 16:34:36 ports/editors/py-qscintilla/patches Update of /cvs/ports/editors/py-qscintilla/patches In directory cvs.openbsd.org:/tmp/cvs-serv376/patches Log Message: Directory /cvs/ports/editors/py-qscintilla/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/14 16:34:54 Modified files: emulators/qemu : distinfo Log message: and this too. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/14 16:35:00 Modified files: editors/py-qscintilla: Makefile Added files: editors/py-qscintilla/patches: patch-Python_configure_py Log message: py-qscintilla could still run qmake from Qt3 on configure. Fix this by using the detected qmake where appropriate. Noticed by naddy@ a few weeks ago, committing now that tree is fully unlocked. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/14 17:05:57 Modified files: productivity/akonadi: Makefile productivity/akonadi/patches: patch-CMakeLists_txt Added files: productivity/akonadi/patches: patch-config-akonadi_h_cmake patch-shared_akcrash_cpp Log message: Use FindBacktrace.cmake here. Fixes floating dependency spotted by landry@. Patch went upstream already. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/14 18:50:22 Modified files: mail/bmf : Makefile mail/bmf/patches: patch-Makefile_in mail/bmf/pkg : PLIST Log message: Disable explicit root check. Regen PLIST while here and bump for safety. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/14 18:53:51 Modified files: security/reop : Makefile distinfo Log message: Update reop to 1.1.1 CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/08/14 20:27:03 Modified files: sys/dev/ic : mfi.c mfireg.h mfivar.h Log message: Create a function which loads sgd in the mfi_iop_ops struct so that skinny adapters can use "IEEE sgl". tested dlg yasuoka ok dlg jsg CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/14 21:51:40 Modified files: lib/libc/db/hash: hash.c lib/libkvm : kvm.c lib/libsndio : mio_rmidi.c sio_sun.c lib/libutil : passwd.c usr.bin/mail : names.c usr.bin/usbhidaction: usbhidaction.c usr.sbin/apmd : apmd.c usr.sbin/cron : misc.c Log message: Use O_CLOEXEC wherever we open a file and then call fcntl(F_SETFD, FD_CLOEXEC) on it, simplifying error checking, reducing system calls, and improving thread-safety for libraries. ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/14 22:14:36 Modified files: lib/libc/stdlib: Makefile.inc insque.c remque.c Removed files: lib/libc/arch/vax/stdlib: insque.S remque.S Log message: XPG requires insque() and remque() to work with linear lists and not just circular lists. Amazingly, they managed to extend the requirements to no longer match the behavior of the VAX instructions they were modeled after, so the trivial VAX ASM versions have to go. Nice job breaking it, X/Open! Based on a diff from enh (at) google.com ok miod@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/15 00:05:18 Modified files: usr.bin/calendar/calendars: calendar.holiday Log message: admission of hawaii happened in 1959, not 1984; from the freebsd bugs database, bug 192651: Reported: 2014-08-14 13:17 UTC by Richard CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/15 00:44:30 Modified files: share/man/man7 : hier.7 Log message: shorten share/doc/{html,mg} to share/doc, since nothing currently gets installed in html (i think!); CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/08/15 00:53:42 Modified files: . : donations.html index.html Log message: Some people asked specifically for paypal direct to me & project, so here we go. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:19:38 Modified files: devel/ruby-open4: Makefile distinfo devel/ruby-open4/pkg: PLIST Log message: update to open4-1.3.4 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:21:53 Log message: import rake-remote_task-2.2.2 Vlad the Deployer's sexy brainchild is rake-remote_task, extending Rake with remote task goodness. ok jeremy@ Status: Vendor Tag: jasper Release Tags: jasper_20141508 N ports/devel/ruby-rake-remote_task/distinfo N ports/devel/ruby-rake-remote_task/Makefile N ports/devel/ruby-rake-remote_task/pkg/PLIST N ports/devel/ruby-rake-remote_task/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:24:07 Modified files: devel : Makefile Log message: +ruby-rake-remote_task CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:24:10 Modified files: sysutils/ruby-vlad: Makefile distinfo sysutils/ruby-vlad/pkg: PLIST Removed files: sysutils/ruby-vlad/patches: patch-_metadata Log message: update to vlad-2.6.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 01:56:42 Modified files: security/heimdal: heimdal.port.mk Log message: Fix MODHEIMDAL_LIB_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/15 02:19:30 Modified files: lang/gcc/4.8 : Makefile Added files: lang/gcc/4.8/patches: patch-libgfortran_ChangeLog patch-libgfortran_generated_all_l16_c patch-libgfortran_generated_all_l1_c patch-libgfortran_generated_all_l2_c patch-libgfortran_generated_all_l4_c patch-libgfortran_generated_all_l8_c patch-libgfortran_generated_any_l16_c patch-libgfortran_generated_any_l1_c patch-libgfortran_generated_any_l2_c patch-libgfortran_generated_any_l4_c patch-libgfortran_generated_any_l8_c patch-libgfortran_generated_bessel_r10_c patch-libgfortran_generated_bessel_r16_c patch-libgfortran_generated_bessel_r4_c patch-libgfortran_generated_bessel_r8_c patch-libgfortran_generated_count_16_l_c patch-libgfortran_generated_count_1_l_c patch-libgfortran_generated_count_2_l_c patch-libgfortran_generated_count_4_l_c patch-libgfortran_generated_count_8_l_c patch-libgfortran_generated_cshift1_16_c patch-libgfortran_generated_cshift1_4_c patch-libgfortran_generated_cshift1_8_c patch-libgfortran_generated_eoshift1_16_c patch-libgfortran_generated_eoshift1_4_c patch-libgfortran_generated_eoshift1_8_c patch-libgfortran_generated_eoshift3_16_c patch-libgfortran_generated_eoshift3_4_c patch-libgfortran_generated_eoshift3_8_c patch-libgfortran_generated_iall_i16_c patch-libgfortran_generated_iall_i1_c patch-libgfortran_generated_iall_i2_c patch-libgfortran_generated_iall_i4_c patch-libgfortran_generated_iall_i8_c patch-libgfortran_generated_iany_i16_c patch-libgfortran_generated_iany_i1_c patch-libgfortran_generated_iany_i2_c patch-libgfortran_generated_iany_i4_c patch-libgfortran_generated_iany_i8_c patch-libgfortran_generated_in_pack_c10_c patch-libgfortran_generated_in_pack_c16_c patch-libgfortran_generated_in_pack_c4_c patch-libgfortran_generated_in_pack_c8_c patch-libgfortran_generated_in_pack_i16_c patch-libgfortran_generated_in_pack_i1_c patch-libgfortran_generated_in_pack_i2_c patch-libgfortran_generated_in_pack_i4_c patch-libgfortran_generated_in_pack_i8_c patch-libgfortran_generated_in_pack_r10_c patch-libgfortran_generated_in_pack_r16_c patch-libgfortran_generated_in_pack_r4_c patch-libgfortran_generated_in_pack_r8_c patch-libgfortran_generated_iparity_i16_c patch-libgfortran_generated_iparity_i1_c patch-libgfortran_generated_iparity_i2_c patch-libgfortran_generated_iparity_i4_c patch-libgfortran_generated_iparity_i8_c patch-libgfortran_generated_matmul_c10_c patch-libgfortran_generated_matmul_c16_c patch-libgfortran_generated_matmul_c4_c patch-libgfortran_generated_matmul_c8_c patch-libgfortran_generated_matmul_i16_c patch-libgfortran_generated_matmul_i1_c patch-libgfortran_generated_matmul_i2_c patch-libgfortran_generated_matmul_i4_c patch-libgfortran_generated_matmul_i8_c patch-libgfortran_generated_matmul_l16_c patch-libgfortran_generated_matmul_l4_c patch-libgfortran_generated_matmul_l8_c patch-libgfortran_generated_matmul_r10_c patch-libgfortran_generated_matmul_r16_c patch-libgfortran_generated_matmul_r4_c patch-libgfortran_generated_matmul_r8_c patch-libgfortran_generated_maxloc0_16_i16_c patch-libgfortran_generated_maxloc0_16_i1_c patch-libgfortran_generated_maxloc0_16_i2_c patch-libgfortran_generated_maxloc0_16_i4_c patch-libgfortran_generated_maxloc0_16_i8_c patch-libgfortran_generated_maxloc0_16_r10_c patch-libgfortran_generated_maxloc0_16_r16_c patch-libgfortran_generated_maxloc0_16_r4_c patch-libgfortran_generated_maxloc0_16_r8_c patch-libgfortran_generated_maxloc0_4_i16_c patch-libgfortran_generated_maxloc0_4_i1_c patch-libgfortran_generated_maxloc0_4_i2_c patch-libgfortran_generated_maxloc0_4_i4_c patch-libgfortran_generated_maxloc0_4_i8_c patch-libgfortran_generated_maxloc0_4_r10_c patch-libgfortran_generated_maxloc0_4_r16_c patch-libgfortran_generated_maxloc0_4_r4_c patch-libgfortran_generated_maxloc0_4_r8_c patch-libgfortran_generated_maxloc0_8_i16_c patch-libgfortran_generated_maxloc0_8_i1_c patch-libgfortran_generated_maxloc0_8_i2_c patch-libgfortran_generated_maxloc0_8_i4_c patch-libgfortran_generated_maxloc0_8_i8_c patch-libgfortran_generated_maxloc0_8_r10_c patch-libgfortran_generated_maxloc0_8_r16_c patch-libgfortran_generated_maxloc0_8_r4_c patch-libgfortran_generated_maxloc0_8_r8_c patch-libgfortran_generated_maxloc1_16_i16_c patch-libgfortran_generated_maxloc1_16_i1_c patch-libgfortran_generated_maxloc1_16_i2_c patch-libgfortran_generated_maxloc1_16_i4_c patch-libgfortran_generated_maxloc1_16_i8_c patch-libgfortran_generated_maxloc1_16_r10_c patch-libgfortran_generated_maxloc1_16_r16_c patch-libgfortran_generated_maxloc1_16_r4_c patch-libgfortran_generated_maxloc1_16_r8_c patch-libgfortran_generated_maxloc1_4_i16_c patch-libgfortran_generated_maxloc1_4_i1_c patch-libgfortran_generated_maxloc1_4_i2_c patch-libgfortran_generated_maxloc1_4_i4_c patch-libgfortran_generated_maxloc1_4_i8_c patch-libgfortran_generated_maxloc1_4_r10_c patch-libgfortran_generated_maxloc1_4_r16_c patch-libgfortran_generated_maxloc1_4_r4_c patch-libgfortran_generated_maxloc1_4_r8_c patch-libgfortran_generated_maxloc1_8_i16_c patch-libgfortran_generated_maxloc1_8_i1_c patch-libgfortran_generated_maxloc1_8_i2_c patch-libgfortran_generated_maxloc1_8_i4_c patch-libgfortran_generated_maxloc1_8_i8_c patch-libgfortran_generated_maxloc1_8_r10_c patch-libgfortran_generated_maxloc1_8_r16_c patch-libgfortran_generated_maxloc1_8_r4_c patch-libgfortran_generated_maxloc1_8_r8_c patch-libgfortran_generated_maxval_i16_c patch-libgfortran_generated_maxval_i1_c patch-libgfortran_generated_maxval_i2_c patch-libgfortran_generated_maxval_i4_c patch-libgfortran_generated_maxval_i8_c patch-libgfortran_generated_maxval_r10_c patch-libgfortran_generated_maxval_r16_c patch-libgfortran_generated_maxval_r4_c patch-libgfortran_generated_maxval_r8_c patch-libgfortran_generated_minloc0_16_i16_c patch-libgfortran_generated_minloc0_16_i1_c patch-libgfortran_generated_minloc0_16_i2_c patch-libgfortran_generated_minloc0_16_i4_c patch-libgfortran_generated_minloc0_16_i8_c patch-libgfortran_generated_minloc0_16_r10_c patch-libgfortran_generated_minloc0_16_r16_c patch-libgfortran_generated_minloc0_16_r4_c patch-libgfortran_generated_minloc0_16_r8_c patch-libgfortran_generated_minloc0_4_i16_c patch-libgfortran_generated_minloc0_4_i1_c patch-libgfortran_generated_minloc0_4_i2_c patch-libgfortran_generated_minloc0_4_i4_c patch-libgfortran_generated_minloc0_4_i8_c patch-libgfortran_generated_minloc0_4_r10_c patch-libgfortran_generated_minloc0_4_r16_c patch-libgfortran_generated_minloc0_4_r4_c patch-libgfortran_generated_minloc0_4_r8_c patch-libgfortran_generated_minloc0_8_i16_c patch-libgfortran_generated_minloc0_8_i1_c patch-libgfortran_generated_minloc0_8_i2_c patch-libgfortran_generated_minloc0_8_i4_c patch-libgfortran_generated_minloc0_8_i8_c patch-libgfortran_generated_minloc0_8_r10_c patch-libgfortran_generated_minloc0_8_r16_c patch-libgfortran_generated_minloc0_8_r4_c patch-libgfortran_generated_minloc0_8_r8_c patch-libgfortran_generated_minloc1_16_i16_c patch-libgfortran_generated_minloc1_16_i1_c patch-libgfortran_generated_minloc1_16_i2_c patch-libgfortran_generated_minloc1_16_i4_c patch-libgfortran_generated_minloc1_16_i8_c patch-libgfortran_generated_minloc1_16_r10_c patch-libgfortran_generated_minloc1_16_r16_c patch-libgfortran_generated_minloc1_16_r4_c patch-libgfortran_generated_minloc1_16_r8_c patch-libgfortran_generated_minloc1_4_i16_c patch-libgfortran_generated_minloc1_4_i1_c patch-libgfortran_generated_minloc1_4_i2_c patch-libgfortran_generated_minloc1_4_i4_c patch-libgfortran_generated_minloc1_4_i8_c patch-libgfortran_generated_minloc1_4_r10_c patch-libgfortran_generated_minloc1_4_r16_c patch-libgfortran_generated_minloc1_4_r4_c patch-libgfortran_generated_minloc1_4_r8_c patch-libgfortran_generated_minloc1_8_i16_c patch-libgfortran_generated_minloc1_8_i1_c patch-libgfortran_generated_minloc1_8_i2_c patch-libgfortran_generated_minloc1_8_i4_c patch-libgfortran_generated_minloc1_8_i8_c patch-libgfortran_generated_minloc1_8_r10_c patch-libgfortran_generated_minloc1_8_r16_c patch-libgfortran_generated_minloc1_8_r4_c patch-libgfortran_generated_minloc1_8_r8_c patch-libgfortran_generated_minval_i16_c patch-libgfortran_generated_minval_i1_c patch-libgfortran_generated_minval_i2_c patch-libgfortran_generated_minval_i4_c patch-libgfortran_generated_minval_i8_c patch-libgfortran_generated_minval_r10_c patch-libgfortran_generated_minval_r16_c patch-libgfortran_generated_minval_r4_c patch-libgfortran_generated_minval_r8_c patch-libgfortran_generated_norm2_r10_c patch-libgfortran_generated_norm2_r16_c patch-libgfortran_generated_norm2_r4_c patch-libgfortran_generated_norm2_r8_c patch-libgfortran_generated_pack_c10_c patch-libgfortran_generated_pack_c16_c patch-libgfortran_generated_pack_c4_c patch-libgfortran_generated_pack_c8_c patch-libgfortran_generated_pack_i16_c patch-libgfortran_generated_pack_i1_c patch-libgfortran_generated_pack_i2_c patch-libgfortran_generated_pack_i4_c patch-libgfortran_generated_pack_i8_c patch-libgfortran_generated_pack_r10_c patch-libgfortran_generated_pack_r16_c patch-libgfortran_generated_pack_r4_c patch-libgfortran_generated_pack_r8_c patch-libgfortran_generated_parity_l16_c patch-libgfortran_generated_parity_l1_c patch-libgfortran_generated_parity_l2_c patch-libgfortran_generated_parity_l4_c patch-libgfortran_generated_parity_l8_c patch-libgfortran_generated_product_c10_c patch-libgfortran_generated_product_c16_c patch-libgfortran_generated_product_c4_c patch-libgfortran_generated_product_c8_c patch-libgfortran_generated_product_i16_c patch-libgfortran_generated_product_i1_c patch-libgfortran_generated_product_i2_c patch-libgfortran_generated_product_i4_c patch-libgfortran_generated_product_i8_c patch-libgfortran_generated_product_r10_c patch-libgfortran_generated_product_r16_c patch-libgfortran_generated_product_r4_c patch-libgfortran_generated_product_r8_c patch-libgfortran_generated_reshape_c10_c patch-libgfortran_generated_reshape_c16_c patch-libgfortran_generated_reshape_c4_c patch-libgfortran_generated_reshape_c8_c patch-libgfortran_generated_reshape_i16_c patch-libgfortran_generated_reshape_i4_c patch-libgfortran_generated_reshape_i8_c patch-libgfortran_generated_reshape_r10_c patch-libgfortran_generated_reshape_r16_c patch-libgfortran_generated_reshape_r4_c patch-libgfortran_generated_reshape_r8_c patch-libgfortran_generated_shape_i16_c patch-libgfortran_generated_shape_i4_c patch-libgfortran_generated_shape_i8_c patch-libgfortran_generated_spread_c10_c patch-libgfortran_generated_spread_c16_c patch-libgfortran_generated_spread_c4_c patch-libgfortran_generated_spread_c8_c patch-libgfortran_generated_spread_i16_c patch-libgfortran_generated_spread_i1_c patch-libgfortran_generated_spread_i2_c patch-libgfortran_generated_spread_i4_c patch-libgfortran_generated_spread_i8_c patch-libgfortran_generated_spread_r10_c patch-libgfortran_generated_spread_r16_c patch-libgfortran_generated_spread_r4_c patch-libgfortran_generated_spread_r8_c patch-libgfortran_generated_sum_c10_c patch-libgfortran_generated_sum_c16_c patch-libgfortran_generated_sum_c4_c patch-libgfortran_generated_sum_c8_c patch-libgfortran_generated_sum_i16_c patch-libgfortran_generated_sum_i1_c patch-libgfortran_generated_sum_i2_c patch-libgfortran_generated_sum_i4_c patch-libgfortran_generated_sum_i8_c patch-libgfortran_generated_sum_r10_c patch-libgfortran_generated_sum_r16_c patch-libgfortran_generated_sum_r4_c patch-libgfortran_generated_sum_r8_c patch-libgfortran_generated_transpose_c10_c patch-libgfortran_generated_transpose_c16_c patch-libgfortran_generated_transpose_c4_c patch-libgfortran_generated_transpose_c8_c patch-libgfortran_generated_transpose_i16_c patch-libgfortran_generated_transpose_i4_c patch-libgfortran_generated_transpose_i8_c patch-libgfortran_generated_transpose_r10_c patch-libgfortran_generated_transpose_r16_c patch-libgfortran_generated_transpose_r4_c patch-libgfortran_generated_transpose_r8_c patch-libgfortran_generated_unpack_c10_c patch-libgfortran_generated_unpack_c16_c patch-libgfortran_generated_unpack_c4_c patch-libgfortran_generated_unpack_c8_c patch-libgfortran_generated_unpack_i16_c patch-libgfortran_generated_unpack_i1_c patch-libgfortran_generated_unpack_i2_c patch-libgfortran_generated_unpack_i4_c patch-libgfortran_generated_unpack_i8_c patch-libgfortran_generated_unpack_r10_c patch-libgfortran_generated_unpack_r16_c patch-libgfortran_generated_unpack_r4_c patch-libgfortran_generated_unpack_r8_c patch-libgfortran_intrinsics_cshift0_c patch-libgfortran_intrinsics_eoshift0_c patch-libgfortran_intrinsics_eoshift2_c patch-libgfortran_intrinsics_pack_generic_c patch-libgfortran_intrinsics_reshape_generic_c patch-libgfortran_intrinsics_spread_generic_c patch-libgfortran_intrinsics_string_intrinsics_inc_c patch-libgfortran_intrinsics_transpose_generic_c patch-libgfortran_intrinsics_unpack_generic_c patch-libgfortran_io_list_read_c patch-libgfortran_io_transfer_c patch-libgfortran_io_unit_c patch-libgfortran_io_write_c patch-libgfortran_libgfortran_h patch-libgfortran_m4_bessel_m4 patch-libgfortran_m4_cshift1_m4 patch-libgfortran_m4_eoshift1_m4 patch-libgfortran_m4_eoshift3_m4 patch-libgfortran_m4_iforeach_m4 patch-libgfortran_m4_ifunction_logical_m4 patch-libgfortran_m4_ifunction_m4 patch-libgfortran_m4_in_pack_m4 patch-libgfortran_m4_matmul_m4 patch-libgfortran_m4_matmull_m4 patch-libgfortran_m4_pack_m4 patch-libgfortran_m4_reshape_m4 patch-libgfortran_m4_shape_m4 patch-libgfortran_m4_spread_m4 patch-libgfortran_m4_transpose_m4 patch-libgfortran_m4_unpack_m4 patch-libgfortran_runtime_convert_char_c patch-libgfortran_runtime_environ_c patch-libgfortran_runtime_in_pack_generic_c patch-libgfortran_runtime_memory_c Log message: SECURITY fix for CVE-2014-5044. Upstream commit: https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=213313 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 03:27:28 Modified files: x11/gnome/controlcenter: Makefile Added files: x11/gnome/controlcenter/patches: patch-panels_user-accounts_Makefile_in patch-panels_user-accounts_um-realm-manager_c Removed files: x11/gnome/controlcenter/patches: patch-configure_ac patch-panels_user-accounts_Makefile_am patch-panels_user-accounts_um-account-dialog_c Log message: Enable heimdal since it's a hard dependency for the users panel. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 03:28:17 Modified files: x11/gnome/initial-setup: Makefile x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_account_Makefile_in patch-gnome-initial-setup_pages_keyboard_cc-input-chooser_c patch-gnome-initial-setup_pages_password_Makefile_in Added files: x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_account_um-realm-manager_c patch-gnome-initial-setup_pages_password_um-realm-manager_c Removed files: x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_account_gis-account-page_c patch-gnome-initial-setup_pages_account_gis-account-page_ui Log message: Enable heimdal since it's a hard dependency for the users panel. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/15 03:45:54 Modified files: distrib/alpha/common: install.md distrib/amd64/common: install.md distrib/aviion/ramdisk: install.md distrib/hppa : install.md distrib/i386/common: install.md distrib/loongson/ramdisk: install.md distrib/luna88k/ramdisk: install.md distrib/macppc/ramdisk: install.md distrib/sparc64/common: install.md Log message: Align install.md files with installer style. - { foo ; bar ; } -> { foo; bar; } - if foo ; then -> if foo; then OK halex@ CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/08/15 04:31:57 Modified files: faq : current.html Log message: Explicit list of X resource files to delete. There may be files installed by packages there that should not be removed. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:09:41 Log message: import ruby-mfi-0.9.1 Gem for integrating with mFi devices over SSH. Currently only the mPower devices are supported. ok jeremy@ Status: Vendor Tag: jasper Release Tags: jasper_20141508 N ports/net/ruby-mfi/distinfo N ports/net/ruby-mfi/Makefile N ports/net/ruby-mfi/pkg/PLIST N ports/net/ruby-mfi/pkg/DESCR N ports/net/ruby-mfi/patches/patch-_metadata No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:14:05 Modified files: net : Makefile Log message: +ruby-mfi and sort the entries CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:19:13 Modified files: audio : Makefile converters : Makefile databases : Makefile devel : Makefile editors : Makefile emulators : Makefile fonts : Makefile games : Makefile Log message: sort CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:24:47 Modified files: graphics : Makefile lang : Makefile mail : Makefile security : Makefile sysutils : Makefile textproc : Makefile www : Makefile x11 : Makefile Log message: sort CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 07:29:10 Modified files: sysutils/ruby-puppet/3: Makefile Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_type_service_rb Log message: Ensure flags are written out before starting the service as it may need to read it's flags from the filesystem. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:06:48 Modified files: sys/arch/alpha/conf: GENERIC sys/arch/amd64/conf: GENERIC sys/arch/i386/conf: GENERIC sys/arch/macppc/conf: GENERIC sys/arch/sgi/conf: GENERIC-IP27 GENERIC-IP30 GENERIC-IP32 sys/arch/sparc64/conf: GENERIC Log message: lofn(4) and nofn(4) are going away CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:07:39 Modified files: sys/dev/pci : files.pci Log message: unlink lofn(4) and nofn(4) CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:12:07 Removed files: sys/dev/pci : nofn.c nofnreg.h nofnvar.h lofn.c lofnreg.h lofnvar.h Log message: With deprecation of crypto(4) interface lofn(4) and nofn(4) become obsolete. No objections from the usual suspects. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:16:01 Modified files: share/man/man4 : Makefile crypto.4 pci.4 Removed files: share/man/man4 : lofn.4 nofn.4 Log message: lofn(4) and nofn(4) are gone CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:36:20 Modified files: regress/sys/crypto/aes: Makefile aestest.c Log message: Convert AES regress test from /dev/crypto to using kernel source code directly. This test case uses ECB vectors, therefore no chaining is required. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:39:04 Modified files: regress/sys/crypto/aesctr: Makefile aesctr.c Log message: Convert AES-CTR regress test from /dev/crypto to using kernel source code directly. This test is converted the same way jsing@ has recently converted an XTS test by pulling in xform.c code. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 08:51:03 Modified files: print/cups : Makefile Added files: print/cups/patches: patch-backend_usb-libusb_c Log message: This patch is still needed for proper USB support. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:13:38 Modified files: regress/sys/crypto/enc: Makefile des3.c Log message: Convert 3DES regress test from /dev/crypto to using kernel source code directly with a simplified CBC implementation. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:37:51 Modified files: sys/dev/pci : ubsec.c ubsecvar.h Log message: Remove support for public key operations CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:43:27 Modified files: sys/dev/pci : safe.c safevar.h Log message: Remove support for public key operations CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 09:45:38 Modified files: print/hplip : Makefile print/hplip/pkg: README-common Log message: README tweaks. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:46:24 Modified files: share/man/man4 : ubsec.4 safe.4 Log message: Public key operations are no longer supported CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/08/15 09:59:49 Modified files: www/chromium : Makefile distinfo Log message: update to 36.0.1985.143 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/15 10:48:58 Modified files: share/zoneinfo : Makefile share/zoneinfo/datfiles: africa antarctica asia australasia backward etcetera europe factory iso3166.tab northamerica pacificnew southamerica systemv yearistype.sh zone.tab Added files: share/zoneinfo/datfiles: zone1970.tab Log message: Update to tzdata2014f from ftp.iana.org. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/15 10:55:32 Modified files: lib/libressl : ressl.c ressl.h Log message: use void * instead of char *. ok jsing CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/15 14:20:50 Modified files: productivity/akonadi: Makefile Log message: Missing bump. CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/15 16:07:43 Modified files: lang/gcc/4.8/patches: patch-libgfortran_m4_bessel_m4 patch-libgfortran_m4_cshift1_m4 patch-libgfortran_m4_eoshift1_m4 patch-libgfortran_m4_eoshift3_m4 patch-libgfortran_m4_iforeach_m4 patch-libgfortran_m4_in_pack_m4 patch-libgfortran_m4_matmull_m4 patch-libgfortran_m4_pack_m4 patch-libgfortran_m4_shape_m4 patch-libgfortran_m4_spread_m4 patch-libgfortran_m4_transpose_m4 patch-libgfortran_m4_unpack_m4 Log message: Fix a bunch of patches that were recersed by accident. ok pascal@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/16 01:42:39 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/16 01:49:27 Modified files: usr.bin/ftp : cmds.c ftp.c small.c util.c Log message: I found a number of interactive events which can cause signals, and go down paths not previously marked as signal handled unsafe. Try to clean up a few of them especially regarding errno, mark others as unsafe, and repair a few by avoiding stdio. Glanced at by misc people in Slovenia, but considered too risky before release.. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/16 05:14:05 Modified files: devel/gdb : Makefile Added files: devel/gdb/patches: patch-include_filenames_h Log message: Our libiberty does not have filename_cmp(), but since it would simply call strcmp(), use a macro when building gdb and most of all libbfd. Fixes linking against libbfd with our system libiberty. reviewed and ok pascal@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/16 07:37:45 Modified files: devel/pango : Makefile distinfo Log message: Update to pango-1.36.6. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/16 10:38:38 Modified files: bin/ps : print.c Log message: reduce cutoff for "hours only" start times to reduce window of ambiguity. ok deraadt CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 11:21:56 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: getrandom(2) support for getentropy_linux This enables support for the new getrandom(2) syscall in Linux 3.17. If the call exists and fails, return a failure in getentropy(2) emulation as well. This adds a EINTR check in case the urandom pool is not initialized. Tested on Fedora Rawhide with 3.17rc0 and Ubuntu 14.04 ok deraadt@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 11:30:12 Modified files: regress/lib/libcrypto/gcm128: gcm128test.c Log message: use C rather than C++ array initialization syntax this causes errors with stricter C compilers CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/16 11:33:40 Modified files: lib/libc/sys : pipe.2 Log message: Fixed typo in "distinct". ok jmc@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 12:42:42 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: only build the getrandom path if SYS_getrandom is defined. like the sysctl path CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 12:47:40 Modified files: regress/lib/libcrypto/engine: enginetest.c Log message: replace sprintf/strdup with asprintf in engine test CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/16 13:47:17 Modified files: usr.bin/mandoc : mdoc_macro.c regress/usr.bin/mandoc/mdoc/Bl: bareIt.in bareIt.out_ascii bareIt.out_lint Log message: If a stray .It follows .El, we are no longer in the list, even though the list is still the last processed macro. This fixes a regression introduced in mdoc_macro.c rev. 1.95: Ulrich Spoerlein reports that various of their kernel manuals trigger assertions. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/16 15:09:36 Modified files: lib/libc/gen : exec.3 Log message: Cover execvpe() in the description of what the envp arg means. from Justus Baumgartner (meddev50 (at) gmail.com) ok jmc@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/16 15:39:16 Modified files: sbin/sysctl : sysctl.c Log message: repair operation of kern.arandom, which will only allow a buffer of 512 bytes. As a result, it stopped working... ok miod CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/16 15:45:21 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.8.16 CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/08/17 00:08:05 Modified files: games/scummvm : Makefile distinfo games/scummvm/patches: patch-Makefile_common patch-configure Log message: update to 1.7.0 CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/08/17 00:17:05 Modified files: games/scummvm-tools: Makefile distinfo Log message: update to 1.7.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 00:19:33 Modified files: x11/gnome/ocrfeeder: Makefile Log message: Missing RUN_DEPENDS. reported by Jiri B CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 00:38:16 Modified files: devel/libidn : Makefile distinfo devel/libidn/pkg: PLIST Log message: Update to libidn-1.29. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 00:47:39 Modified files: sysutils/polkit: Makefile Added files: sysutils/polkit/patches: patch-src_polkitagent_polkitagentsession_c patch-src_polkitbackend_polkitd_c Log message: Merge a couple of fixes from upstream. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/17 01:15:41 Modified files: bin/ksh : ksh.1 sh.1 Log message: update the built-ins list: - "times" is both promoted to posix and special (ooh!) - "pwd" is promoted to posix, but not special (aah!) while here, jiggle the text somewhat to clarify that "non-POSIX" actually meant when posix mode is off, not mandated by posix joint work with guenther CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/17 03:00:44 Modified files: usr.bin/calendar/calendars: calendar.openbsd Log message: sync with hackathons.html CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 03:48:55 Modified files: sys/kern : subr_extent.c Log message: i broke the userland shim used for the extent regress test when i made it so struct pool was only visible to _KERNEL. tedu broke it too when he added the size argument to the kernel free functions. this fixes both issues. the main change is to provide a local version of struct pool with just the bit (pr_size) needed for extent to run. if extents take advantage of more malloc/pool features (eg, {M,PR}_ZERO then this will need to be updated again. found by and based on a diff from Theo Buehler ok mpi@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/17 05:11:34 Modified files: sys/arch/mips64/mips64: trap.c Log message: On kernels compiled with R10000 support, ignore (by simply returning) `bus error upon instruction fetch' exceptions where the faulting address is in the kernel, and at the very beginning of an I$ cache line. (I've experienced these on an R16000 Fuel since several months already) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/17 06:04:42 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/pkg: PLIST Log message: Update to 0.46 ok aja@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/17 06:08:50 Modified files: graphics/birdfont/patches: patch-configure patch-dodo_py patch-install_py Log message: Don't know why these weren't part of the first commit. Part of the birdfont-0.46 diff ok'd by aja@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/17 06:30:29 Modified files: regress/libexec/ld.so/initfirst/test2/libaa: Makefile regress/libexec/ld.so/initfirst/test2/libab: Makefile regress/libexec/ld.so/initfirst/test2/libac: Makefile regress/libexec/ld.so/initfirst/test2/libad: Makefile regress/libexec/ld.so/initfirst/test2/libae: Makefile regress/libexec/ld.so/randomdata/libaa: Makefile Log message: Fix regression tests for ld.so It now runs correctly with 'make depend regress' CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 08:41:03 Modified files: etc/rc.d : rc.subr Log message: When running interactively, display the output of the "check" action (ok or failed) like we do with all other actions. ok jung@ rpe@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 08:43:34 Modified files: etc : rc Log message: Execute /etc/netstart using sh(1) instead of sourcing it. Committing early to make sure we have time to fix any side-effect. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 12:42:07 Modified files: usr.bin/mandoc : mdoc_term.c regress/usr.bin/mandoc/mdoc/Bl: break.in break.out_ascii break.out_lint regress/usr.bin/mandoc/mdoc/Nm: Makefile Added files: regress/usr.bin/mandoc/mdoc/Nm: break.in break.out_ascii break.out_lint Log message: Segfault fixes from kristaps@. Note that .It and .Nm blocks without bodies cannot be generated by valid mdoc(7) syntax but are a adequate representations of invalid mdoc(7) constructs like Bl -hang It Bo Sh and Sh SYNOPSIS Nm Bo Sh. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/17 12:46:29 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: don;t mark up {}; CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/17 15:01:24 Modified files: regress/usr.sbin/relayd: args-http-headerlength.pl Log message: Sync regress/usr.sbin/relayd with recent http.h changes CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 15:02:06 Modified files: usr.bin/mandoc : makewhatis.8 Log message: typo; Steven Honeyman CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 16:06:49 Modified files: usr.bin/mandoc : term_ascii.c Log message: While all current callers pass valid data to ascii_hspan() only, it's safer to assume incoming enum data might be invalid and catch it instead of happily returning an unitialized int. No functional change right now. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 16:08:53 Modified files: usr.bin/mandoc : term_ascii.c Log message: typo, sorry CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 16:25:53 Modified files: usr.bin/kdump : kdump.c Log message: Display symbolicly the mode argument of mkdir, mkfifo, mknod, and umask CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 16:43:07 Modified files: usr.bin/kdump : mksubr Log message: Use %#o instead of %#x for mode_t CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 19:28:44 Modified files: sys/kern : subr_pool.c Log message: external page headers use an RB tree to find the page header containing an item when its returned to the pool. this means you need to do an inexact comparison between an items address and the page address, cos a pool page can contain many items. previously this used RB_FIND with a compare function that would do math on every node comparison to see if one node (the key) was within the other node (the tree element). this cuts it over to using RB_NFIND to find the closest tree node instead of the exact tree node. the node compares turns into simple < and > operations, which inline very nicely with the RB_NFIND. the constraint (an item must be within a page) is then checked only once after the NFIND call. feedback from matthew@ and tedu@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 21:29:53 Modified files: usr.bin/kdump : kdump.c Log message: Add fancy printing of ktrace()'s ops argument mquery() has the exact same argument layout as mmap(), so share the case Fix a couple brace placement glitches CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 22:06:16 Modified files: share/man/man9 : Makefile mbuf.9 sys/kern : uipc_mbuf.c sys/sys : mbuf.h Log message: introduce mbuf list and queue apis. both manage fifo lists of mbufs and a count of the mbufs. struct mbuf_list and the ml_foo() apis can be used to build lists of mbufs where you dont need locking (eg, on the stack). struct mbuf_queue and mq_foo() wrap mbuf_lists with a mutex, and limits the number of mbufs that can be queued. they can be useful for moving mbufs between contexts/subsystems. with help from jmc@ for the manpage bits mpi@ is keen CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 22:23:11 Modified files: sys/dev/pcmcia : pcmcia_cis_quirks.c Log message: its a bit silly to include mbuf.h to get to malloc.h. just include malloc.h instead. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 22:48:22 Modified files: lib/libc/gen : exec.3 Log message: Add mention of execvpe() setting errno on failure. from Justus Baumgartner (meddev50 (at) gmail.com) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 23:11:03 Modified files: sys/arch/amd64/amd64: aesni.c sys/arch/hppa/hppa: machdep.c sys/arch/hppa64/hppa64: machdep.c sys/crypto : cryptodev.c sys/dev/pci : if_myx.c sys/kern : kern_sysctl.c uipc_mbuf2.c sys/sys : mbuf.h Log message: dont rely on mbuf.h to provide pool.h. ok miod@, who has offerred to help with any MD fallout ok guenther@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 00:53:07 Modified files: www/ruby-passenger: Makefile Log message: BROKEN-alpha = .got subsegment exceeds 64K (size 83312) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/18 01:06:27 Modified files: net/gssdp : Makefile distinfo Log message: update to gssdp-0.14.10 CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 01:42:12 Modified files: lang/gcc/4.9 : Makefile distinfo lang/gcc/4.9/patches: patch-gcc_config_alpha_alpha_c patch-gcc_config_gcc patch-gcc_configure patch-gcc_fortran_f95-lang_c patch-lto-plugin_configure Added files: lang/gcc/4.9/patches: patch-libgfortran_ChangeLog patch-libgfortran_generated_all_l16_c patch-libgfortran_generated_all_l1_c patch-libgfortran_generated_all_l2_c patch-libgfortran_generated_all_l4_c patch-libgfortran_generated_all_l8_c patch-libgfortran_generated_any_l16_c patch-libgfortran_generated_any_l1_c patch-libgfortran_generated_any_l2_c patch-libgfortran_generated_any_l4_c patch-libgfortran_generated_any_l8_c patch-libgfortran_generated_bessel_r10_c patch-libgfortran_generated_bessel_r16_c patch-libgfortran_generated_bessel_r4_c patch-libgfortran_generated_bessel_r8_c patch-libgfortran_generated_count_16_l_c patch-libgfortran_generated_count_1_l_c patch-libgfortran_generated_count_2_l_c patch-libgfortran_generated_count_4_l_c patch-libgfortran_generated_count_8_l_c patch-libgfortran_generated_cshift1_16_c patch-libgfortran_generated_cshift1_4_c patch-libgfortran_generated_cshift1_8_c patch-libgfortran_generated_eoshift1_16_c patch-libgfortran_generated_eoshift1_4_c patch-libgfortran_generated_eoshift1_8_c patch-libgfortran_generated_eoshift3_16_c patch-libgfortran_generated_eoshift3_4_c patch-libgfortran_generated_eoshift3_8_c patch-libgfortran_generated_iall_i16_c patch-libgfortran_generated_iall_i1_c patch-libgfortran_generated_iall_i2_c patch-libgfortran_generated_iall_i4_c patch-libgfortran_generated_iall_i8_c patch-libgfortran_generated_iany_i16_c patch-libgfortran_generated_iany_i1_c patch-libgfortran_generated_iany_i2_c patch-libgfortran_generated_iany_i4_c patch-libgfortran_generated_iany_i8_c patch-libgfortran_generated_in_pack_c10_c patch-libgfortran_generated_in_pack_c16_c patch-libgfortran_generated_in_pack_c4_c patch-libgfortran_generated_in_pack_c8_c patch-libgfortran_generated_in_pack_i16_c patch-libgfortran_generated_in_pack_i1_c patch-libgfortran_generated_in_pack_i2_c patch-libgfortran_generated_in_pack_i4_c patch-libgfortran_generated_in_pack_i8_c patch-libgfortran_generated_in_pack_r10_c patch-libgfortran_generated_in_pack_r16_c patch-libgfortran_generated_in_pack_r4_c patch-libgfortran_generated_in_pack_r8_c patch-libgfortran_generated_iparity_i16_c patch-libgfortran_generated_iparity_i1_c patch-libgfortran_generated_iparity_i2_c patch-libgfortran_generated_iparity_i4_c patch-libgfortran_generated_iparity_i8_c patch-libgfortran_generated_matmul_c10_c patch-libgfortran_generated_matmul_c16_c patch-libgfortran_generated_matmul_c4_c patch-libgfortran_generated_matmul_c8_c patch-libgfortran_generated_matmul_i16_c patch-libgfortran_generated_matmul_i1_c patch-libgfortran_generated_matmul_i2_c patch-libgfortran_generated_matmul_i4_c patch-libgfortran_generated_matmul_i8_c patch-libgfortran_generated_matmul_l16_c patch-libgfortran_generated_matmul_l4_c patch-libgfortran_generated_matmul_l8_c patch-libgfortran_generated_matmul_r10_c patch-libgfortran_generated_matmul_r16_c patch-libgfortran_generated_matmul_r4_c patch-libgfortran_generated_matmul_r8_c patch-libgfortran_generated_maxloc0_16_i16_c patch-libgfortran_generated_maxloc0_16_i1_c patch-libgfortran_generated_maxloc0_16_i2_c patch-libgfortran_generated_maxloc0_16_i4_c patch-libgfortran_generated_maxloc0_16_i8_c patch-libgfortran_generated_maxloc0_16_r10_c patch-libgfortran_generated_maxloc0_16_r16_c patch-libgfortran_generated_maxloc0_16_r4_c patch-libgfortran_generated_maxloc0_16_r8_c patch-libgfortran_generated_maxloc0_4_i16_c patch-libgfortran_generated_maxloc0_4_i1_c patch-libgfortran_generated_maxloc0_4_i2_c patch-libgfortran_generated_maxloc0_4_i4_c patch-libgfortran_generated_maxloc0_4_i8_c patch-libgfortran_generated_maxloc0_4_r10_c patch-libgfortran_generated_maxloc0_4_r16_c patch-libgfortran_generated_maxloc0_4_r4_c patch-libgfortran_generated_maxloc0_4_r8_c patch-libgfortran_generated_maxloc0_8_i16_c patch-libgfortran_generated_maxloc0_8_i1_c patch-libgfortran_generated_maxloc0_8_i2_c patch-libgfortran_generated_maxloc0_8_i4_c patch-libgfortran_generated_maxloc0_8_i8_c patch-libgfortran_generated_maxloc0_8_r10_c patch-libgfortran_generated_maxloc0_8_r16_c patch-libgfortran_generated_maxloc0_8_r4_c patch-libgfortran_generated_maxloc0_8_r8_c patch-libgfortran_generated_maxloc1_16_i16_c patch-libgfortran_generated_maxloc1_16_i1_c patch-libgfortran_generated_maxloc1_16_i2_c patch-libgfortran_generated_maxloc1_16_i4_c patch-libgfortran_generated_maxloc1_16_i8_c patch-libgfortran_generated_maxloc1_16_r10_c patch-libgfortran_generated_maxloc1_16_r16_c patch-libgfortran_generated_maxloc1_16_r4_c patch-libgfortran_generated_maxloc1_16_r8_c patch-libgfortran_generated_maxloc1_4_i16_c patch-libgfortran_generated_maxloc1_4_i1_c patch-libgfortran_generated_maxloc1_4_i2_c patch-libgfortran_generated_maxloc1_4_i4_c patch-libgfortran_generated_maxloc1_4_i8_c patch-libgfortran_generated_maxloc1_4_r10_c patch-libgfortran_generated_maxloc1_4_r16_c patch-libgfortran_generated_maxloc1_4_r4_c patch-libgfortran_generated_maxloc1_4_r8_c patch-libgfortran_generated_maxloc1_8_i16_c patch-libgfortran_generated_maxloc1_8_i1_c patch-libgfortran_generated_maxloc1_8_i2_c patch-libgfortran_generated_maxloc1_8_i4_c patch-libgfortran_generated_maxloc1_8_i8_c patch-libgfortran_generated_maxloc1_8_r10_c patch-libgfortran_generated_maxloc1_8_r16_c patch-libgfortran_generated_maxloc1_8_r4_c patch-libgfortran_generated_maxloc1_8_r8_c patch-libgfortran_generated_maxval_i16_c patch-libgfortran_generated_maxval_i1_c patch-libgfortran_generated_maxval_i2_c patch-libgfortran_generated_maxval_i4_c patch-libgfortran_generated_maxval_i8_c patch-libgfortran_generated_maxval_r10_c patch-libgfortran_generated_maxval_r16_c patch-libgfortran_generated_maxval_r4_c patch-libgfortran_generated_maxval_r8_c patch-libgfortran_generated_minloc0_16_i16_c patch-libgfortran_generated_minloc0_16_i1_c patch-libgfortran_generated_minloc0_16_i2_c patch-libgfortran_generated_minloc0_16_i4_c patch-libgfortran_generated_minloc0_16_i8_c patch-libgfortran_generated_minloc0_16_r10_c patch-libgfortran_generated_minloc0_16_r16_c patch-libgfortran_generated_minloc0_16_r4_c patch-libgfortran_generated_minloc0_16_r8_c patch-libgfortran_generated_minloc0_4_i16_c patch-libgfortran_generated_minloc0_4_i1_c patch-libgfortran_generated_minloc0_4_i2_c patch-libgfortran_generated_minloc0_4_i4_c patch-libgfortran_generated_minloc0_4_i8_c patch-libgfortran_generated_minloc0_4_r10_c patch-libgfortran_generated_minloc0_4_r16_c patch-libgfortran_generated_minloc0_4_r4_c patch-libgfortran_generated_minloc0_4_r8_c patch-libgfortran_generated_minloc0_8_i16_c patch-libgfortran_generated_minloc0_8_i1_c patch-libgfortran_generated_minloc0_8_i2_c patch-libgfortran_generated_minloc0_8_i4_c patch-libgfortran_generated_minloc0_8_i8_c patch-libgfortran_generated_minloc0_8_r10_c patch-libgfortran_generated_minloc0_8_r16_c patch-libgfortran_generated_minloc0_8_r4_c patch-libgfortran_generated_minloc0_8_r8_c patch-libgfortran_generated_minloc1_16_i16_c patch-libgfortran_generated_minloc1_16_i1_c patch-libgfortran_generated_minloc1_16_i2_c patch-libgfortran_generated_minloc1_16_i4_c patch-libgfortran_generated_minloc1_16_i8_c patch-libgfortran_generated_minloc1_16_r10_c patch-libgfortran_generated_minloc1_16_r16_c patch-libgfortran_generated_minloc1_16_r4_c patch-libgfortran_generated_minloc1_16_r8_c patch-libgfortran_generated_minloc1_4_i16_c patch-libgfortran_generated_minloc1_4_i1_c patch-libgfortran_generated_minloc1_4_i2_c patch-libgfortran_generated_minloc1_4_i4_c patch-libgfortran_generated_minloc1_4_i8_c patch-libgfortran_generated_minloc1_4_r10_c patch-libgfortran_generated_minloc1_4_r16_c patch-libgfortran_generated_minloc1_4_r4_c patch-libgfortran_generated_minloc1_4_r8_c patch-libgfortran_generated_minloc1_8_i16_c patch-libgfortran_generated_minloc1_8_i1_c patch-libgfortran_generated_minloc1_8_i2_c patch-libgfortran_generated_minloc1_8_i4_c patch-libgfortran_generated_minloc1_8_i8_c patch-libgfortran_generated_minloc1_8_r10_c patch-libgfortran_generated_minloc1_8_r16_c patch-libgfortran_generated_minloc1_8_r4_c patch-libgfortran_generated_minloc1_8_r8_c patch-libgfortran_generated_minval_i16_c patch-libgfortran_generated_minval_i1_c patch-libgfortran_generated_minval_i2_c patch-libgfortran_generated_minval_i4_c patch-libgfortran_generated_minval_i8_c patch-libgfortran_generated_minval_r10_c patch-libgfortran_generated_minval_r16_c patch-libgfortran_generated_minval_r4_c patch-libgfortran_generated_minval_r8_c patch-libgfortran_generated_norm2_r10_c patch-libgfortran_generated_norm2_r16_c patch-libgfortran_generated_norm2_r4_c patch-libgfortran_generated_norm2_r8_c patch-libgfortran_generated_pack_c10_c patch-libgfortran_generated_pack_c16_c patch-libgfortran_generated_pack_c4_c patch-libgfortran_generated_pack_c8_c patch-libgfortran_generated_pack_i16_c patch-libgfortran_generated_pack_i1_c patch-libgfortran_generated_pack_i2_c patch-libgfortran_generated_pack_i4_c patch-libgfortran_generated_pack_i8_c patch-libgfortran_generated_pack_r10_c patch-libgfortran_generated_pack_r16_c patch-libgfortran_generated_pack_r4_c patch-libgfortran_generated_pack_r8_c patch-libgfortran_generated_parity_l16_c patch-libgfortran_generated_parity_l1_c patch-libgfortran_generated_parity_l2_c patch-libgfortran_generated_parity_l4_c patch-libgfortran_generated_parity_l8_c patch-libgfortran_generated_product_c10_c patch-libgfortran_generated_product_c16_c patch-libgfortran_generated_product_c4_c patch-libgfortran_generated_product_c8_c patch-libgfortran_generated_product_i16_c patch-libgfortran_generated_product_i1_c patch-libgfortran_generated_product_i2_c patch-libgfortran_generated_product_i4_c patch-libgfortran_generated_product_i8_c patch-libgfortran_generated_product_r10_c patch-libgfortran_generated_product_r16_c patch-libgfortran_generated_product_r4_c patch-libgfortran_generated_product_r8_c patch-libgfortran_generated_reshape_c10_c patch-libgfortran_generated_reshape_c16_c patch-libgfortran_generated_reshape_c4_c patch-libgfortran_generated_reshape_c8_c patch-libgfortran_generated_reshape_i16_c patch-libgfortran_generated_reshape_i4_c patch-libgfortran_generated_reshape_i8_c patch-libgfortran_generated_reshape_r10_c patch-libgfortran_generated_reshape_r16_c patch-libgfortran_generated_reshape_r4_c patch-libgfortran_generated_reshape_r8_c patch-libgfortran_generated_shape_i16_c patch-libgfortran_generated_shape_i4_c patch-libgfortran_generated_shape_i8_c patch-libgfortran_generated_spread_c10_c patch-libgfortran_generated_spread_c16_c patch-libgfortran_generated_spread_c4_c patch-libgfortran_generated_spread_c8_c patch-libgfortran_generated_spread_i16_c patch-libgfortran_generated_spread_i1_c patch-libgfortran_generated_spread_i2_c patch-libgfortran_generated_spread_i4_c patch-libgfortran_generated_spread_i8_c patch-libgfortran_generated_spread_r10_c patch-libgfortran_generated_spread_r16_c patch-libgfortran_generated_spread_r4_c patch-libgfortran_generated_spread_r8_c patch-libgfortran_generated_sum_c10_c patch-libgfortran_generated_sum_c16_c patch-libgfortran_generated_sum_c4_c patch-libgfortran_generated_sum_c8_c patch-libgfortran_generated_sum_i16_c patch-libgfortran_generated_sum_i1_c patch-libgfortran_generated_sum_i2_c patch-libgfortran_generated_sum_i4_c patch-libgfortran_generated_sum_i8_c patch-libgfortran_generated_sum_r10_c patch-libgfortran_generated_sum_r16_c patch-libgfortran_generated_sum_r4_c patch-libgfortran_generated_sum_r8_c patch-libgfortran_generated_transpose_c10_c patch-libgfortran_generated_transpose_c16_c patch-libgfortran_generated_transpose_c4_c patch-libgfortran_generated_transpose_c8_c patch-libgfortran_generated_transpose_i16_c patch-libgfortran_generated_transpose_i4_c patch-libgfortran_generated_transpose_i8_c patch-libgfortran_generated_transpose_r10_c patch-libgfortran_generated_transpose_r16_c patch-libgfortran_generated_transpose_r4_c patch-libgfortran_generated_transpose_r8_c patch-libgfortran_generated_unpack_c10_c patch-libgfortran_generated_unpack_c16_c patch-libgfortran_generated_unpack_c4_c patch-libgfortran_generated_unpack_c8_c patch-libgfortran_generated_unpack_i16_c patch-libgfortran_generated_unpack_i1_c patch-libgfortran_generated_unpack_i2_c patch-libgfortran_generated_unpack_i4_c patch-libgfortran_generated_unpack_i8_c patch-libgfortran_generated_unpack_r10_c patch-libgfortran_generated_unpack_r16_c patch-libgfortran_generated_unpack_r4_c patch-libgfortran_generated_unpack_r8_c patch-libgfortran_intrinsics_cshift0_c patch-libgfortran_intrinsics_eoshift0_c patch-libgfortran_intrinsics_eoshift2_c patch-libgfortran_intrinsics_pack_generic_c patch-libgfortran_intrinsics_reshape_generic_c patch-libgfortran_intrinsics_spread_generic_c patch-libgfortran_intrinsics_string_intrinsics_inc_c patch-libgfortran_intrinsics_transpose_generic_c patch-libgfortran_intrinsics_unpack_generic_c patch-libgfortran_io_list_read_c patch-libgfortran_io_transfer_c patch-libgfortran_io_unit_c patch-libgfortran_io_write_c patch-libgfortran_libgfortran_h patch-libgfortran_m4_bessel_m4 patch-libgfortran_m4_cshift1_m4 patch-libgfortran_m4_eoshift1_m4 patch-libgfortran_m4_eoshift3_m4 patch-libgfortran_m4_iforeach_m4 patch-libgfortran_m4_ifunction_logical_m4 patch-libgfortran_m4_ifunction_m4 patch-libgfortran_m4_in_pack_m4 patch-libgfortran_m4_matmul_m4 patch-libgfortran_m4_matmull_m4 patch-libgfortran_m4_pack_m4 patch-libgfortran_m4_reshape_m4 patch-libgfortran_m4_shape_m4 patch-libgfortran_m4_spread_m4 patch-libgfortran_m4_transpose_m4 patch-libgfortran_m4_unpack_m4 patch-libgfortran_runtime_convert_char_c patch-libgfortran_runtime_environ_c patch-libgfortran_runtime_in_pack_generic_c patch-libgfortran_runtime_memory_c Log message: Update to GCC 4.9.1 + fix for CVE-2014-5044. As usual, sparc64 adastrap generated by tobiasu@, thanks! CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/18 02:46:27 Modified files: x11/i3 : Makefile x11/i3/patches : patch-src_commands_c patch-src_x_c Added files: x11/i3/patches : patch-i3bar_src_xcb_c patch-include_load_layout_h patch-src_con_c patch-src_load_layout_c Log message: Fixes from upstream: Bugfix: properly restore workspace containers (upstream git commit 679a5de8cfb9211afb1a1dd882e53bd672084754) Bugfix: missed case for decoration rerender (upstream git commit 56c284af8e281d9d5657e55b3edb7f7c673fc747) Bugfix: add a sync call to i3bar to confirm reparents before exiting (upstream git commit 4699c714b33afb1c264f3d19911b880267165b94) Bugfix: don't set focus in con_set_layout() on invisible workspaces (upstream git commit fc886315342b3a2292ad0c08394b6bb452663bb1) CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/18 03:30:52 Modified files: games/dunelegacy: Makefile games/dunelegacy/patches: patch-src_Game_cpp Added files: games/dunelegacy/patches: patch-include_FileClasses_GFXManager_h patch-src_FileClasses_GFXManager_cpp Log message: Performance fix for dunelegacy on OpenBSD. OK kirby@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/18 03:43:02 Modified files: sbin/iked : iked.c iked.h proc.c Log message: Sync proc.c with httpd. httpd needs SIGUSR1 but iked will ignore it now instead of terminating the process. ok mikeb@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/18 04:34:02 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-awesomeConfig_cmake Added files: x11/awesome/patches: patch-lib_awful_widget_taglist_lua_in patch-lib_wibox_widget_systray_lua_in patch-systray_c Log message: Fixes from upstream: Fix check against clients in taglist (upstream git commit aedcd90d4da41132303636ba15170b6a43cc231f) wibox.widget.systray: Special case the empty systray (upstream git commit 3dd0c442a031f174000950981154139879933ab0) systray: Small consistency fixes (upstream git commit a250dcdbe12a3afa6ffa9fbb26f8c48c7e9cc049) CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/18 06:59:00 Modified files: usr.sbin/relayd: proc.c relayd.c relayd.h Log message: Sync proc.c with httpd. httpd needs SIGUSR1 but relayd will ignore it now instead of terminating the process. ok florian@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/18 07:13:42 Modified files: usr.sbin/snmpd : proc.c snmpd.c snmpd.h Log message: Sync proc.c with httpd. httpd needs SIGUSR1 but snmpd will ignore it now instead of terminating the process. ok blambert@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/18 07:25:54 Modified files: usr.bin/mandoc : mandoc.c Log message: kristaps@ found this with valgrind, merge his patch from bsd.lv: Fix a corner case where \H (where is the \0 character) would cause mandoc_escape() to read past the end of an allocated string. Found when a script scanning of all Mac OSX manuals accidentally also scanned binary (gzip'd) files, discussed with schwarze@ on tech@mdocml. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/18 07:29:13 Modified files: sys/arch/sparc64/dev: vnet.c Log message: this uses pools, but relied on mbuf.h to provide them. found by benoit@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/18 07:57:57 Modified files: app/cwm : calmwm.h group.c Log message: Get rid of nhidden in group_ctx; it actually never reported correctly since nhidden wasn't incremented nor decremeted in all the right places, thus confusing matters. We don't need to carry a count around, so just use a local variable in the one place we need one to supply XRestackWindows(). CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/18 08:34:58 Modified files: lib/libc/stdlib: malloc.c Log message: a small tweak to improve malloc in multithreaded programs. we don't need to hold the malloc lock across mmap syscalls in all cases. dropping it allows another thread to access the existing chunk cache if necessary. could be improved to be a bit more aggressive, but i've been testing this simple diff for some time now with good results. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/18 08:35:37 Modified files: sys/conf : GENERIC Log message: pool debug back on CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/18 10:26:13 Modified files: usr.bin/mandoc : man_macro.c regress/usr.bin/mandoc/man/RS: Makefile regress/usr.bin/mandoc/man/SH: Makefile Added files: regress/usr.bin/mandoc/man/RS: broken.in broken.out_ascii broken.out_lint regress/usr.bin/mandoc/man/SH: empty_before.in empty_before.out_ascii empty_before.out_lint Log message: When the first child of the node being validated gets deleted during validation, man_node_unlink() switches to MAN_NEXT_CHILD. After that, we have to switch back to MAN_NEXT_SIBLING after completing validation, or subsequent parsing would add content into an already closed node, clobbering potentially existing children, causing information loss and a memory leak. Bug found by kristaps@ with valgrind in groff(7) on Mac OS X. Note that the switch back must be conditional, for if the node being validated itself gets deleted, we must *not* go to MAN_NEXT_SIBLING, which would not only yield wrong results in general but also crash in malformed manuals having an empty paragraph before the first .SH, for example OpenBSD c++filt(1). While here, add the missing as required before mandoc.h. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/18 11:23:06 Modified files: sys/arch/mips64/mips64: trap.c Log message: Sigh, ignoring instruction fetch bus errors for the kernel code should not depend upon the address being at the beginning of a cache line, for we may arrive in the middle of a line thanks to a branch. Noticed the hard way... CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/18 11:32:40 Log message: Import devel/colordiff: a colorized diff tool. OK chrisz@, jca@. Thanks. Status: Vendor Tag: edd Release Tags: edd_20140818 N ports/devel/colordiff/Makefile N ports/devel/colordiff/distinfo N ports/devel/colordiff/patches/patch-Makefile N ports/devel/colordiff/pkg/DESCR N ports/devel/colordiff/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/18 11:34:03 Modified files: devel : Makefile Log message: Link devel/colordiff. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/18 11:41:09 Modified files: x11/gnome/totem: Makefile distinfo Removed files: x11/gnome/totem/patches: patch-src_totem-grilo_c Log message: Update to totem-3.12.2. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/18 11:56:45 Modified files: sys/arch/armv7/omap: if_cpsw.c sys/arch/macppc/macppc: machdep.c Log message: Explicitely need now. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 11:59:58 Modified files: devel/colordiff: Makefile Log message: Add NO_TEST=Yes. ok edd@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/18 12:13:13 Modified files: x11/gnome/devel-docs: Makefile distinfo x11/gnome/devel-docs/pkg: PLIST Log message: Update to gnome-devel-docs-3.12.3. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 12:25:22 Modified files: devel/colordiff: Makefile Log message: Mark as GPLv2+, not just GPLv2. ok edd@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 12:29:08 Modified files: x11/qt4 : Makefile Log message: BROKEN-hppa = libQtWebKit.so.3.0: undefined reference to `__sync_sub_and_fetch_4' No point in trying to build it for days before seeing it failing horribly because hppa/atomic ops/webkit... there might be an easy fix/workaround; but right now hope is lost. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 13:01:59 Modified files: comms/gnokii : Makefile Log message: Mark BROKEN-alpha: gnokii-sms.c: In function 'savesms': gnokii-sms.c:577: error: unrecognizable insn: (insn 500 499 501 29 (set (reg:DI 291) (plus:DI (reg/f:DI 65 virtual-stack-vars) (const_int -41228 [0xffffffffffff5ef4]))) -1 (nil) (nil)) gnokii-sms.c:577: internal compiler error: in extract_insn, at recog.c:2077 CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/18 13:11:48 Modified files: lib/libssl/src/crypto: md32_common.h lib/libssl/src/crypto/md4: md4_dgst.c md4_locl.h lib/libssl/src/crypto/md5: md5_locl.h lib/libssl/src/crypto/ripemd: rmd_dgst.c rmd_locl.h lib/libssl/src/crypto/sha: sha256.c sha_locl.h Log message: remove return value from HOST_c2l/l2c macros These macros and asm inlines simulate a function returning a value, but nothing ever uses this return value. Remove the pseudo-returns and (void) casts discarding the unused values. This, maybe unsurprisingly, speeds things up a bit. It also removes the GCC 4.9 warnings about unused values. ok miod@ deraadt@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/18 13:15:34 Modified files: lib/libssl/src/crypto/des: des_locl.h lib/libssl/src/crypto/rc5: rc5_locl.h Log message: replace more ROTATE macros with plain-old C code. Let the compiler optimize these. Even older versions of gcc generate equal or better quality code than the inline asm. ok miod@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 13:28:50 Modified files: devel/colordiff: Makefile Added files: devel/colordiff/patches: patch-cdiff_sh Log message: In cdiff, use ftp(1) by default instead of tools from the ports tree. ok edd@ (maintainer) CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/18 13:41:18 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 14:50:29 Modified files: security/polarssl: Makefile distinfo security/polarssl/pkg: PLIST Removed files: security/polarssl/patches: patch-library_rsa_c patch-tests_suites_helpers_function Log message: SECURITY update to polarssl-1.3.8 - includes a fix for CVE-2014-4911 (DoS) - delete patches committed upstream - unbreak sparc64 - new features, see ChangeLog Regress tests pass on amd64 and sparc64. ok sthen@ Note that no port uses it yet. CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/18 14:58:56 Modified files: usr.sbin/dhcpd : packet.c Log message: Variables to count seen packets should be unsigned. ok krw@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:21:45 Log message: Import p5-Devel-CheckBin 0.02 Devel::CheckBin is a perl module that checks whether a particular command is available. OK sthen@ Status: Vendor Tag: bluhm Release Tags: bluhm_20140818 N ports/devel/p5-Devel-CheckBin/distinfo N ports/devel/p5-Devel-CheckBin/Makefile N ports/devel/p5-Devel-CheckBin/pkg/PLIST N ports/devel/p5-Devel-CheckBin/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:23:51 Modified files: devel : Makefile Log message: + p5-Devel-CheckBin CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:29:10 Modified files: devel/p5-Sub-Name: Makefile distinfo Log message: Update p5-Sub-Name to 0.09 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:43:45 Added files: regress/usr.sbin/relayd: args-http-multi.pl args-http-put-multi.pl args-https-multi.pl args-https-put-multi.pl Log message: Add test cases for multiple small HTTP requests. Many PUT requests with ony byte content length triggered relayd to hang. This has been fixed already. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:49:17 Modified files: regress/sys/kern/sosplice/udp: args-multi.pl Log message: Make the multiple UDP packet test more reliable. The receive buffer limit also counts the mbufs in it, so packets could be dropped. Increase both send and receive socket buffer size. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:51:45 Modified files: regress/sys/kern/sosplice: funcs.pl Log message: Make the forking tests more reliable. During copy the read(2) system call might fail with EAGAIN when the other forked process has already read the data. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:53:40 Modified files: regress/sys/kern/sosplice/tcp: args-oobinline-nonblock.pl args-oobinline-reverse-nonblock.pl args-oobinline-reverse.pl args-oobinline.pl Log message: Make out of band data tests more reliable. As multiple tcp urgent bytes cannot be handled correctly, allow another variation. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 16:05:08 Modified files: regress/usr.sbin/relayd: README Added files: regress/sys/kern/sosplice: README Log message: Add a description of what the relayd and sosplice regression tests do. Also explain the optional environment variables. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/18 16:21:52 Modified files: usr.bin/mandoc : term.c Log message: Fix read access to uninitialized memory found by kristaps@ with valgrind, patch from kristaps@. Theoretically, this could lead to a buffer overrun and segfault, but only for very long output lines (about 1000 charecters) of exactly the right length or if by ill chance, the complete unused, uninitialized tail of the line output buffer (at least 1000 characters total length) would contain all blank characters. Anyway, the uninitialized data read wasn't used for anything. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 16:58:19 Modified files: regress/usr.sbin/relayd: Proc.pm Relayd.pm Remote.pm direct.pl funcs.pl relayd.pl remote.pl regress/usr.sbin/ospfd: Client.pm Ospfd.pm Proc.pm ospfd.pl regress/sys/kern/sosplice: LICENSE Proc.pm Remote.pm regress/sys/kern/sosplice/error: error.pl remote.pl regress/sys/kern/sosplice/tcp: direct.pl relay.pl remote.pl regress/sys/kern/sosplice/udp: direct.pl relay.pl remote.pl regress/sys/net/pf_divert: LICENSE Makefile Proc.pm Remote.pm Log message: Make the perl modules consistent for the multiple regression tests. This includes coding style, better error messages and variable naming. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/18 17:02:59 Log message: Import devel/py-singledispatch The singledispatch library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3. PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. This library is a backport of this functionality to Python 2.6 - 3.3. ok jca@ Status: Vendor Tag: bcallah Release Tags: bcallah-20140818 N ports/devel/py-singledispatch/Makefile N ports/devel/py-singledispatch/distinfo N ports/devel/py-singledispatch/pkg/DESCR N ports/devel/py-singledispatch/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/18 17:03:22 Modified files: devel : Makefile Log message: +py-singledispatch CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/18 17:07:11 Modified files: multimedia/livestreamer: Makefile distinfo multimedia/livestreamer/pkg: PLIST Log message: Update to 1.10.0 Large Changelog here: https://github.com/chrippa/livestreamer/releases CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 18:24:00 Modified files: usr.sbin/syslogd: syslogd.c Log message: Fix trailing white spaces. OK sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 18:28:48 Modified files: usr.sbin/syslogd: privsep.c Log message: Replace manually written function names with __func__. OK sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 18:53:01 Modified files: usr.sbin/syslogd: privsep.c Log message: The _exit codes in syslogd privsep.c were the wrong way around. Fatal errors should exit with 1, and regular shutdown should result in exit with 0. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/18 21:28:53 Modified files: usr.bin/tcpbench: tcpbench.1 tcpbench.c Log message: add -4 and -6 flags for saying if you want to force ipv4 or ipv6 respectively. tweaks from jmc@ ok djm@ CVSROOT: /cvs Module name: ports Changes by: lteo@cvs.openbsd.org 2014/08/18 22:22:53 Modified files: net/snort : Makefile distinfo Log message: Update to Snort 2.9.6.2 (and its MASTER_SITES). Tested by myself on amd64, i386, macppc, and sparc64; tested by Markus Lude on sparc64. ok Markus Lude (maintainer) CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/08/18 23:18:16 Modified files: usr.bin/mandoc : roff.c Log message: libroff depends on libmandoc and so libmandoc should be included first. this change makes the code slightly more portable by removing a gcc extension (incomplete enum types) which is not part of ISO C. ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:33:47 Modified files: comms/gnokii : Makefile Log message: Instead of BROKEN-alpha, use CFLAGS=-fno-stack-protector to fix the build. Suggested by miod@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:35:58 Modified files: net/wireshark : Makefile Log message: BROKEN-alpha = .got subsegment exceeds 64K (size 101480) while here, remove comment about patch that got removed.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:36:58 Modified files: lang/moarvm : Makefile Log message: BROKEN-alpha = dyncall_callvm.c:66:4: error: #error unsupported platform CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:50:29 Modified files: emulators/dgen-sdl: Makefile Log message: BROKEN-hppa the same reason as alpha, build was never reliable and never finished after spending days building the same file. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:51:58 Modified files: multimedia/libvpx: Makefile Log message: BROKEN-hppa, constantly hits the 12h timeout building the same file... CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 23:53:37 Modified files: infrastructure/db: user.list Log message: reserve _icbd user CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:53:59 Modified files: emulators/vbam : Makefile Log message: BROKEN-hppa, never built reliably there, gcc OOM or ICE after a while.. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 23:54:37 Log message: Import net/icbd, ok jca@. ICB (Internet Citizen's Band) is an Internet teleconferencing program that uses a client-server model to allow users across the Internet to communicate with each other. Status: Vendor Tag: pascal Release Tags: pascal_20140819 N ports/net/icbd/Makefile N ports/net/icbd/distinfo N ports/net/icbd/pkg/DESCR N ports/net/icbd/pkg/PLIST N ports/net/icbd/pkg/icbd.rc No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 23:56:17 Modified files: net : Makefile Log message: sync CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/19 00:21:48 Modified files: games/oolite/patches: patch-src_Core_Debug_OODebugTCPConsoleClient_m Added files: games/oolite/patches: patch-src_Core_OOCPUInfo_h Log message: Fix build on alpha by properly defining endianess CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/19 00:39:05 Modified files: audio/mpd : Makefile Log message: Fix build on alpha by adding it to MODGCC4_ARCHS, 4.6 works. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 00:39:48 Modified files: x11/gnome/librsvg: Makefile distinfo x11/gnome/librsvg/patches: patch-configure x11/gnome/librsvg/pkg: PLIST Log message: Update to librsvg-2.40.3. CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/08/19 02:04:51 Modified files: sys/net : if_pppx.c Log message: pppx(4): Correct pppx_dev_lookup() and pppx_dev2pxd() local declarations Those two functions take one dev_t argument, not int. Match declarations with reality. No functional changes. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/19 02:11:16 Log message: Import py-peewee, a small expressive ORM. Supports SQLite, MySQL and PostgreSQL as backends. For the latter two you'll need to install corresponding packages. okay jca@ Status: Vendor Tag: zhuk Release Tags: zhuk_20140819 N ports/databases/py-peewee/Makefile N ports/databases/py-peewee/distinfo N ports/databases/py-peewee/pkg/DESCR N ports/databases/py-peewee/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/19 02:12:13 Modified files: databases : Makefile Log message: Link in py-peewee. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/19 03:38:39 Modified files: build : mirrors.dat Log message: update email address and add fingerprints for anoncvs.jp.openbsd.org CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/19 03:38:55 Modified files: . : anoncvs.html Log message: sync CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/08/19 04:01:50 Modified files: libexec/ld.so : boot.c Log message: ld.so(1): Missing stack var initialization Explicitly zero-clear stack array to read dynamic segments. This code has been working because stack is mapped as anon and zero'ed right after execve(2). Found by work-in-progress Valgrind port for OpenBSD/amd64. OK millert@ guenther@ CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/19 04:43:48 Log message: memcached backend for CGI::Session, ok sthen Status: Vendor Tag: henning Release Tags: henning_2014-08-19 N ports/www/p5-CGI-Session-Driver-memcached/Makefile N ports/www/p5-CGI-Session-Driver-memcached/distinfo N ports/www/p5-CGI-Session-Driver-memcached/pkg/DESCR N ports/www/p5-CGI-Session-Driver-memcached/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/19 04:44:44 Modified files: www : Makefile Log message: + p5-CGI-Session-Driver-memcached CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 05:13:16 Modified files: sys/dev/pci : if_myx.c Log message: in myx_start, replace while (space) { IFQ_POLL; myx_dequeue(free descr); IFQ_DEQUEUE; etc; } with while (space && myx_dequeue(free descr)) { IFQ_DEQUEUE; etc; } CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:24:04 Modified files: sys/dev/pckbc : pms.c Log message: Make sure state changes are properly serialized. When pms(4) is attached to a touchpad it generally presents two different wsmouse(4) devices: one for the touchpad itself and one for the clitpad and/or some interleaved packets. But since both devices are writing to the same pckbc slot, a race can occur if they try to change the state at the same time. So prevent two process opening the two /dev/wsmouse* node at the same time to corrupt the magic sequences needed to enable/disable the touchpad. ok schadchin@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:28:03 Modified files: sys/netinet6 : in6_proto.c ip6_mroute.c Log message: Keep pim code under #ifdef PIM to be coherent with what's in netinet/. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:39:36 Modified files: sbin/route : route.c usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Entries for broadcast addresses should also be ignored, just like local entries. ok florian@, mikeb@, henning@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/19 06:47:51 Modified files: app/cwm : calmwm.h group.c Log message: Pull highstack from group_ctx (and useless calculations of); in the one place that we use highstack, replace that usage with a local variable (for now until stacking is done properly). CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:49:41 Modified files: sys/net : route.c sys/netinet : if_ether.c Log message: When a local route entry is added for an ifa having a broadcast address, also adds a broadcast entry flagged with RTF_BROADCAST. Prior to this change broadcast entries were simple clonned ARP entries, that would be deleted once their timer expired since they would always be incomplete. With this change they are now persistant and identifiable with a new flag. Committing early to be able to deal with any potential fallout before we start relying on this. ok florian@, mikeb@, henning@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/08/19 07:54:56 Modified files: mail/postgrey : Makefile distinfo mail/postgrey/patches: patch-postgrey Log message: bugfix update to 1.35 maintainer timeout CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 08:06:38 src/usr.sbin/rcctl Update of /cvs/src/usr.sbin/rcctl In directory cvs.openbsd.org:/tmp/cvs-serv19263/rcctl Log Message: Directory /cvs/src/usr.sbin/rcctl added to the repository CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 08:08:20 Added files: usr.sbin/rcctl : Makefile rcctl.8 rcctl.sh Log message: Introduce rcctl(8), a simple utility for maintaining rc.conf.local(8). # rcctl usage: rcctl enable|disable|status|action [service [flags [...]]] Lots of man page improvement from the usual suspects (jmc@ and schwarze@) not hooked up yet but committing now so work can continue in-tree agreed by several CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/08/19 08:25:11 Modified files: textproc/py-yaml: Makefile distinfo Log message: update py-yaml to 3.11. ok pea@ (maintainer). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 09:26:18 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop commented code. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 10:05:02 Modified files: usr.sbin/rcctl : rcctl.8 Log message: mdoc(7) style: remove trailing whitespace and .Pp before non-compact .Bd/.Bl CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 10:13:25 Modified files: lib/libssl/src/crypto/sha/asm: sha1-586.pl sys/dev/ic : arcofi.c sys/dev/pci : if_age.c Log message: Three independent typos for `independent' or `independently'. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/19 10:42:40 Modified files: databases/mariadb: Makefile distinfo databases/mariadb/patches: patch-cmake_install_macros_cmake patch-libmysql_CMakeLists_txt patch-scripts_mysqld_safe_sh patch-sql_CMakeLists_txt databases/mariadb/pkg: PLIST-server PLIST-tests Added files: databases/mariadb/patches: patch-CMakeLists_txt Log message: Update to MariaDB 10.0.13. ok giovanni@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 10:47:18 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify some checks Return immediatly from add_flags() if we are already enabled and no flags are (re)set; unbreak "enable" under some circumstances. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 11:28:57 Modified files: usr.bin/mandoc : mdoc_validate.c regress/usr.bin/mandoc/mdoc/Bl: notype.in notype.out_ascii notype.out_lint Log message: Do not dereference a NULL pointer if a .Bl macro has no -type, -width, -offset or -compact arguments whatsoever; this got broken in mdoc_validate.c rev. 1.156. While here, sort headers. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 11:45:43 Modified files: usr.sbin/rcctl : rcctl.8 Log message: To make it even more obvious which combinations are allowed, provide sub-synopses for the various internal commands, and make it explicit what applies to daemons only and what applies to other services as well. Feedback and OK ajacoutot@. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 11:51:05 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Sync usage. CVSROOT: /cvs Module name: src Changes by: phessler@cvs.openbsd.org 2014/08/19 11:55:03 Modified files: sys/dev/ic : rtsx.c rtsxvar.h sys/dev/pci : rtsx_pci.c Log message: Enable rts5227, as found in my new Thinkpad x240. Shuffle the code around slightly, so we special case the 5209 chipset instead of semi-randomly. Tested on rts5227 by me, and rts5209 by stsp@ OK stsp@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 12:02:48 Modified files: sys/dev/ic : arcofi.c Log message: yet another typo CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/19 12:39:42 Modified files: app/cwm : conf.c Log message: Remove unnecessary memset since reload was replaced with restart; from Kent Spillner. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 13:01:15 Modified files: sys/arch/sgi/gio: giodevs Log message: Set Eng. GFE has a 32-bit ID register, so put it in the 32-bit section. No change but ordering in the generated files, so I won't even bother to regen them - this is only a `documentation' change. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 13:04:07 Modified files: sys/arch/sgi/xbow: xbridge.c xbridgereg.h Log message: More PIC programming magic, as well as a specific workaround for lost interrupts in PIC rev 1; from IRIX via Linux 2.5.69. This doesn't fix the lost SCSI interrupts jasper@ eventually experiences on Origin 350 systems, but this can't hurt anyway. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 13:44:39 Modified files: devel/git : Makefile distinfo devel/git/patches: patch-Makefile patch-t_t0000-basic_sh patch-t_test-lib_sh devel/git/pkg : PLIST-main PLIST-x11 Log message: Update to git 2.1.0. ok benoit@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/19 15:19:00 Modified files: net/iftop : Makefile distinfo net/iftop/patches: patch-iptop.c Log message: update to iftop 1.0pre4, from Mikolaj Kucharski - mandoc -Tlint -Werror seems happy, drop groff dependency - fix wantlibs to make port-lib-depends-check happy - fix small typo - add OpenBSD cvs tag, to make portcheck happy - remove maintainer per his request CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/19 15:46:55 Modified files: mail/postfix/snapshot: Makefile distinfo Log message: Update to Postfix 2.12-20140801. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:35:01 Log message: Import x11/cegui. feedback bentley@/kirby@, ok kirby@ Crazy Eddie's GUI System is a free library providing windowing and widgets for graphics APIs / engines where such functionality is not natively available, or severely lacking. The library is object orientated, written in C++, and targeted at games developers who should be spending their time creating great games, not building GUI sub-systems! Status: Vendor Tag: pascal Release Tags: pascal_20140820 N ports/x11/cegui/Makefile N ports/x11/cegui/distinfo N ports/x11/cegui/pkg/DESCR N ports/x11/cegui/pkg/PLIST N ports/x11/cegui/patches/patch-cegui_src_DynamicModule_cpp N ports/x11/cegui/patches/patch-cegui_src_SimpleTimer_cpp N ports/x11/cegui/patches/patch-samples_framework_src_CEGuiGLFWSharedBase_cpp N ports/x11/cegui/patches/patch-samples_framework_src_CEGuiIrrlichtBaseApplication_cpp N ports/x11/cegui/patches/patch-samples_framework_src_CEGuiOgreBaseApplication_cpp N ports/x11/cegui/patches/patch-samples_framework_src_SamplesFrameworkBase_cpp No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/19 16:38:33 Modified files: net/iftop : Makefile net/iftop/patches: patch-iptop.c Log message: Print the MAC address correctly on architectures where char is signed. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:40:34 Log message: Import games/sumwars. feedback bentley@/kirby@, ok kirby@ Summoning Wars is an open source role-playing game, featuring both a single-player and a multiplayer mode for about 2 to 8 players. Status: Vendor Tag: pascal Release Tags: pascal_20140820 N ports/games/sumwars/Makefile N ports/games/sumwars/distinfo N ports/games/sumwars/pkg/DESCR N ports/games/sumwars/pkg/PLIST N ports/games/sumwars/patches/patch-CMakeLists_txt No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:44:17 Modified files: x11 : Makefile Log message: sync CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:44:44 Modified files: games : Makefile Log message: sync CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/08/19 16:51:20 Modified files: lang/racket : Makefile distinfo lang/racket/patches: patch-racket_src_configure patch-src_racket_sconfig_h lang/racket/pkg: PLIST Removed files: lang/racket/patches: patch-src_racket_src_mzrt_h Log message: Update to Racket 6.1. Tested on amd64 and i386. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/19 16:52:41 Log message: Import www/vimb Vimb is a fast and lightweight vim like web browser based on the webkit web browser engine and the GTK toolkit. Vimb is modal like the great vim editor and also easily configurable during runtime. Vimb is mostly keyboard driven and does not detract you from your daily work. ok landry@ zhuk@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140820 N ports/www/vimb/Makefile N ports/www/vimb/distinfo N ports/www/vimb/patches/patch-Makefile N ports/www/vimb/patches/patch-tests_Makefile N ports/www/vimb/patches/patch-src_setting_c N ports/www/vimb/pkg/DESCR N ports/www/vimb/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/19 16:52:59 Modified files: www : Makefile Log message: +vimb CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/19 16:54:29 Modified files: net/iftop : Makefile Log message: Missing MODGNU_CONFIG_GUESS_DIRS. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 17:35:29 Modified files: usr.bin/mg : theo.c Log message: Let's talk about obstacles you face when trying to pull off a partial tedu@. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/08/19 17:57:18 Modified files: usr.bin/ssh : sftp.c Log message: ~-expand lcd paths CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/08/19 17:58:28 Modified files: usr.bin/ssh : servconf.c Log message: When dumping the server configuration (sshd -T), print correct KEX, MAC and cipher defaults. Spotted by Iain Morgan CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 18:00:46 Modified files: sys/kern : subr_pool.c Log message: bring back r1.130: add an explicit rwlock around the global state (the pool list and serial number) rather than rely on implicit process exclusion, splhigh and splvm. the only things touching the global state come from process context so we can get away with an rwlock instead of a mutex. thankfully. ok matthew@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/19 18:29:15 Modified files: sysutils/binwalk: Makefile Added files: sysutils/binwalk/patches: patch-src_magic_executables patch-src_magic_filesystems patch-src_magic_images Log message: handler new py-libmagic, breakage reported by chris@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 18:50:45 Modified files: sys/dev/pci : if_sk.c if_skvar.h Log message: replace sks jumbo allocator with MCLGETI. the system provides jumbos in the right shape now, we dont have to do it by hand all over the place any more. rework the rxr ring management to use if_rxring while here. largely based on if_sk.c r1.152 and if_skvar.h r1.4 by kettenis. tested by me on: skc0 at pci3 dev 11 function 0 "Schneider & Koch SK-98xx" rev 0x12, GEnesis (0x0): apic 3 int 5 sk0 at skc0 port A: address 00:00:5a:99:8a:ec xmphy0 at sk0 phy 0: XMAC II Gigabit PHY, rev. 2 and this from ian mcwilliam skc0 at pci0 dev 9 function 0 "D-Link DGE-530T B1" rev 0x11, Yukon Lite (0x9): apic 2 int 17 sk0 at skc0 port A: address 00:17:9a:ba:b5:39 eephy0 at sk0 phy 0: 88E1011 Gigabit PHY, rev. 5 tested by brad@ too CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 18:59:56 Modified files: sys/dev/pci : if_nge.c if_ngereg.h Log message: replace the custom jumbo allocator with MCLGETI. putting this in the tree to make it easier for people to test. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 19:00:15 Modified files: sys/dev/pci : if_lge.c if_lgereg.h Log message: replace the custom jumbo allocator with MCLGETI. putting this in the tree to make it easier for people to test. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 19:02:02 Modified files: sys/dev/ic : ti.c tireg.h Log message: replace the custom jumbo allocator with MCLGETI. putting this in the tree to make it easier for people to test. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 19:02:50 Modified files: sys/dev/pci : if_nfe.c if_nfevar.h Log message: remove the custom jumbo allocator. its never been enabled or used. putting this into the tree to make it easier to test. CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/08/19 19:10:04 Modified files: . : security.html Log message: this isn't the right place to list all errata. link to the correct pages. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/19 19:28:55 Modified files: usr.bin/ssh : sftp.c Log message: djm how did you make a typo like that... CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 21:29:35 Modified files: sys/dev/pci : if_sk.c Log message: brad said i had some whitespace screwups in my previous diff. this cleans them up and the others i found in this file. no functional change. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/19 22:12:31 Modified files: gnu/usr.bin/binutils/include/opcode: i386.h gnu/usr.bin/binutils/opcodes: i386-dis.c Log message: Backport support for i386/amd64 'rdtscp' instruction from binutils-2.17 Request and testing by krw@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/20 00:03:20 Modified files: sys/dev/pci : eap.c sys/compat/linux: linux_futex.c Log message: Release CPU mutexes on EINVAL. ok guenther@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 00:14:43 Modified files: sys/arch/alpha/alpha: conf.c sys/arch/alpha/conf: GENERIC sys/arch/amd64/amd64: conf.c sys/arch/amd64/conf: GENERIC sys/arch/arm/arm: conf.c sys/arch/armish/conf: GENERIC sys/arch/hppa/hppa: conf.c sys/arch/hppa64/hppa64: conf.c sys/arch/i386/conf: GENERIC sys/arch/i386/i386: conf.c sys/arch/landisk/landisk: conf.c sys/arch/loongson/loongson: conf.c sys/arch/macppc/macppc: conf.c sys/arch/octeon/octeon: conf.c sys/arch/sgi/sgi: conf.c sys/arch/socppc/conf: GENERIC sys/arch/socppc/socppc: conf.c sys/arch/sparc64/sparc64: conf.c Log message: unlink crypto(4) pseudo device from the architecture dependant character device tables and kernel config files. ok deraadt CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 00:23:03 Modified files: sys/conf : files sys/crypto : crypto.c cryptodev.c cryptodev.h sys/kern : kern_sysctl.c sys/sys : conf.h sysctl.h Log message: Bye bye /dev/crypto The interface has been disabled by default for about 4 years and currently there's not much value in having it around at all. ok deraadt CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 00:31:22 Removed files: sys/crypto : cryptodev.c Log message: Bye bye /dev/crypto The interface has been disabled by default for about 4 years and currently there's not much value in having it around at all. ok deraadt CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 00:34:16 Modified files: mail : Makefile mail/bmf : Makefile Log message: Fix a typo in the mysql of bmf as noticed by brad@ Add the FLAVOR to the build so we can catch issues like this. CVSROOT: /cvs Module name: src Changes by: phessler@cvs.openbsd.org 2014/08/20 00:52:21 Modified files: distrib/macppc/ramdisk: install.md Log message: When doing Whole disk installs on macppc, blank the first 1 meg of the disk, so we can successfully create our partitions including the all important boot partition. Reported by many, but last by /u/TheWalkingGlitch via reddit OK krw@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:18:25 Modified files: security/libnettle: Makefile Log message: Better MASTER_SITES. CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/08/20 01:19:42 Modified files: sys/dev/ic : arcofi.c Log message: Call audio_{pint,rint}() call-backs with the mutex held. Found by Izumi Tsutsui, thanks! ok miod@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 01:20:10 Added files: net/synergy/patches: patch-src_lib_ipc_IpcClientProxy_cpp patch-src_lib_ipc_IpcServerProxy_cpp patch-src_lib_server_ClientProxy1_4_cpp patch-src_lib_synergy_ProtocolUtil_h Log message: Readd some patches to let this build on sparc64, and probably mips64*/hppa. Fix is probably still wrong, but at least it builds.. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:28:03 Modified files: graphics/babl : Makefile graphics/gegl : Makefile Log message: Fix MASTER_SITES. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:38:45 Modified files: x11/gnome/libmediaart: Makefile distinfo x11/gnome/libmediaart/pkg: PLIST Log message: Update to libmediaart-0.6.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:39:32 Modified files: x11/gnome/tracker: Makefile Added files: x11/gnome/tracker/patches: patch-configure_ac patch-data_tracker-miner_pc_in patch-src_libtracker-extract_tracker-extract-info_c patch-src_libtracker-extract_tracker-extract-info_h patch-src_tracker-extract_tracker-extract-gstreamer_c patch-src_tracker-extract_tracker-extract-libav_c patch-src_tracker-extract_tracker-extract-mp3_c patch-src_tracker-extract_tracker-extract-vorbis_c patch-src_tracker-extract_tracker-extract_c patch-src_tracker-extract_tracker-extract_h patch-src_tracker-extract_tracker-main_c Log message: Merge code from upstream to support new libmediaart. CVSROOT: /cvs Module name: src Changes by: rpointel@cvs.openbsd.org 2014/08/20 01:55:45 Modified files: usr.sbin/rcctl : rcctl.sh Log message: unify the declaration of functions. ok aja@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/08/20 02:48:56 Modified files: . : plus.html Log message: plus.html for Aug 4-7 (last lot before unlock), ok from jj@. Includes changes to mandoc et al entries from prior weeks, from schwarze@. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 02:49:33 ports/geo/qgis/files Update of /cvs/ports/geo/qgis/files In directory cvs.openbsd.org:/tmp/cvs-serv19795/files Log Message: Directory /cvs/ports/geo/qgis/files added to the repository CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 02:54:45 Modified files: geo/qgis : Makefile distinfo geo/qgis/patches: patch-cmake_FindGDAL_cmake patch-cmake_FindGEOS_cmake patch-cmake_FindPostgres_cmake patch-debian_qgis_desktop patch-doc_CMakeLists_txt patch-src_app_qgisapp_cpp patch-src_core_CMakeLists_txt patch-src_core_qgsapplication_cpp patch-src_helpviewer_CMakeLists_txt patch-src_mapserver_CMakeLists_txt geo/qgis/pkg : PLIST Added files: geo/qgis/files : qgsexpressionparser.cpp qgsexpressionparser.hpp qgsrastercalcparser.cpp qgsrastercalcparser.hpp geo/qgis/patches: patch-CMakeLists_txt patch-src_analysis_CMakeLists_txt patch-src_core_qgsvectorlayerfeatureiterator_cpp patch-src_providers_delimitedtext_qgsdelimitedtextfeatureiterator_cpp patch-src_providers_gpx_qgsgpxfeatureiterator_cpp patch-src_providers_grass_qgsgrassfeatureiterator_cpp patch-src_providers_memory_qgsmemoryfeatureiterator_cpp patch-src_providers_mssql_qgsmssqlfeatureiterator_cpp patch-src_providers_ogr_qgsogrfeatureiterator_cpp patch-src_providers_oracle_qgsoraclefeatureiterator_cpp patch-src_providers_postgres_qgspostgresconnpool_h patch-src_providers_postgres_qgspostgresfeatureiterator_cpp patch-src_providers_spatialite_qgsspatialiteconnpool_h patch-src_providers_spatialite_qgsspatialitefeatureiterator_cpp patch-src_providers_wfs_qgswfsfeatureiterator_cpp Removed files: geo/qgis/patches: patch-src_app_attributetable_qgsattributetabledelegate_cpp patch-src_app_qgsabout_cpp patch-src_core_qgsmaplayerregistry_h patch-src_core_qgssearchstringparser_yy patch-src_gui_qgsmapcanvas_h patch-src_providers_postgres_qgspostgresprovider_cpp Log message: Long awaited update to QGIS 2.4.0. Since 1.8, QGIS requires bison > 2.4 at build time, but since noone cares enough our bison is still stuck at 2.3. To workaround this, add the parsers generated with a WIP bison 2.6.2 to files/, and comment out the Cmake goo to call/detect bison. Add patches from http://hub.qgis.org/issues/10762. I've used QGIS 1.8, 2.0, 2.2 and 2.4 without issues since > 2 years. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 03:00:36 Added files: geo/qgis/patches: patch-src_app_qgsabout_cpp Removed files: geo/qgis/patches: patch-src_core_spatialite_headers_spatialite_sqlite3_h patch-src_core_spatialite_headers_spatialite_sqlite3ext_h patch-src_core_spatialite_spatialite_c patch-src_core_spatialite_sqlite3_c Log message: Moar cvs add/rm CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 04:06:31 Modified files: sys/dev/pci : if_ix.c Log message: Implement rxrinfo ioctl for cluster usage statistics CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 05:23:42 Modified files: etc : MAKEDEV.common etc/etc.alpha : MAKEDEV etc/etc.amd64 : MAKEDEV etc/etc.armish : MAKEDEV etc/etc.armv7 : MAKEDEV etc/etc.hppa : MAKEDEV etc/etc.hppa64 : MAKEDEV etc/etc.i386 : MAKEDEV etc/etc.landisk: MAKEDEV etc/etc.loongson: MAKEDEV etc/etc.macppc : MAKEDEV etc/etc.octeon : MAKEDEV etc/etc.sgi : MAKEDEV etc/etc.sparc64: MAKEDEV etc/etc.zaurus : MAKEDEV etc/examples : sysctl.conf lib/libc/gen : sysctl.3 sbin/sysctl : sysctl.8 share/man/man4 : Makefile hifn.4 safe.4 ubsec.4 share/man/man4/man4.i386: glxsb.4 share/man/man8/man8.alpha: MAKEDEV.8 share/man/man8/man8.amd64: MAKEDEV.8 share/man/man8/man8.armish: MAKEDEV.8 share/man/man8/man8.armv7: MAKEDEV.8 share/man/man8/man8.hppa: MAKEDEV.8 share/man/man8/man8.hppa64: MAKEDEV.8 share/man/man8/man8.i386: MAKEDEV.8 share/man/man8/man8.landisk: MAKEDEV.8 share/man/man8/man8.loongson: MAKEDEV.8 share/man/man8/man8.macppc: MAKEDEV.8 share/man/man8/man8.octeon: MAKEDEV.8 share/man/man8/man8.sgi: MAKEDEV.8 share/man/man8/man8.sparc64: MAKEDEV.8 share/man/man8/man8.zaurus: MAKEDEV.8 share/man/man9 : crypto.9 malloc.9 usr.bin/fstat : fstat.1 fstat.c usr.bin/kdump : Makefile mkioctls usr.sbin/pstat : pstat.c Removed files: share/man/man4 : crypto.4 Log message: Remove userland bits related to the crypto(4) interface; ok deraadt CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/08/20 06:20:26 Modified files: emulators/nestopia: Makefile Log message: Fix homepage ok bentley@ (maintainer) CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 06:33:12 Modified files: app/cwm : group.c Log message: fix a misleading comment and function name CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 06:35:39 Modified files: app/cwm : screen.c Log message: whitespace CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 07:23:57 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop default values from rc.conf.local when we run "enable". CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 07:42:27 Modified files: app/cwm : group.c Log message: Split off group window restacking. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 09:04:14 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Greatly simplify get/set flags and status. Provide a unified output for the status of disabled services/daemons: foobar_flags will always be "NO" regardless of the type (pkg script, base system daemon, special variable). CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 09:15:29 Modified files: app/cwm : calmwm.h client.c conf.c group.c mousefunc.c screen.c search.c xutil.c Log message: Purely mechanical; unify 'num', 'no' and 'shortcut'. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/08/20 10:20:57 Modified files: x11/smtube : Makefile distinfo x11/smtube/pkg : PLIST Log message: Update for SMTube to 14.7.0 sync with youtube changes. Ok zhuk@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/08/20 10:24:11 Modified files: x11/smplayer : Makefile distinfo x11/smplayer/patches: patch-src_preferences_cpp x11/smplayer/pkg: PLIST Log message: UPDATE for Smplayer to 14.3.0 Ok edd@ (Maintainer) CVSROOT: /cvs Module name: www Changes by: gonzalo@cvs.openbsd.org 2014/08/20 10:30:14 Modified files: . : events.html Log message: BSDDay .ar is over. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/20 11:15:17 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Store the positional args in vars with meaningful names which makes the arg checking block easier to comprehend. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/20 11:57:16 Modified files: mail/femail : Makefile distinfo Log message: after 9 years, I took the opportunity of two minor fixes/adjustments to finally call femail 1.0. so, update the port to femail-1.0. ok aja okan CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/20 12:59:56 Modified files: share/man/man4 : ubsec.4 Log message: remove one more reference to crypto(4); ok mikeb CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/20 13:13:03 Modified files: usr.sbin/unbound/doc: unbound.8.in Log message: Better explain what unbound is for. While there fix some nits. Problem pointed out by deraadt@ Input jmc@, schwarze@ wouter@ committed a slightly different diff upstream. Pull that on out of svn and hand merge it. OK schwarze@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 13:16:27 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Rename priv_gethostserv() to priv_getaddrinfo() as this is what the function does. Change the return code semantics to match getaddrinfo(3). OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/20 13:26:56 Modified files: audio/ruby-sonos: Makefile distinfo audio/ruby-sonos/pkg: PLIST Removed files: audio/ruby-sonos/patches: patch-lib_sonos_endpoint_a_v_transport_rb Log message: update to sonos-0.3.6 containing lots of bugfixes and new features: https://github.com/soffes/sonos/blob/master/Changelog.markdown CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 13:33:43 Modified files: usr.sbin/syslogd: syslogd.h Log message: Add missing OpenBSD RCS id. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 14:10:17 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Replace gethostbyaddr(3) with getnameinfo(3). Remove the sigprocmask() that was necessary for gethostbyaddr() because the latter is not signal safe. Change the return code semantics of priv_getnameinfo() to match getnameinfo(3). input and OK jca@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/20 14:23:42 Modified files: driver/xf86-video-wsudl: configure.ac Log message: Remove duplicate AC_SUBST() CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 14:52:14 Log message: Run syslogd regressions tests. As only one syslogd can run per machine, each test kills any syslogd first. At the end the system's syslogd gets restarted. The test framework runs a client, and a server, and a syslogd. The messages are passed via the log socket or via UDP from the client to syslogd. From there UDP transport is used to reach the server. All processes write log files where the message has to show up. The test arguments are kept in the args-*.pl files. The content of a log file, the data sent to a pipe process and what the server received are checked. The invocation of the sendsyslog(2) syscall is checked with ktrace, the open file descriptors of syslogd are checked with fstat. Status: Vendor Tag: bluhm Release Tags: bluhm_20140820 N src/regress/usr.sbin/syslogd/Proc.pm N src/regress/usr.sbin/syslogd/README N src/regress/usr.sbin/syslogd/LICENSE N src/regress/usr.sbin/syslogd/Syslogd.pm N src/regress/usr.sbin/syslogd/Makefile N src/regress/usr.sbin/syslogd/args-default.pl N src/regress/usr.sbin/syslogd/Client.pm N src/regress/usr.sbin/syslogd/Server.pm N src/regress/usr.sbin/syslogd/funcs.pl N src/regress/usr.sbin/syslogd/syslogd.pl N src/regress/usr.sbin/syslogd/args-client-udp.pl N src/regress/usr.sbin/syslogd/args-client-udp4.pl N src/regress/usr.sbin/syslogd/args-client-udp-nodns.pl N src/regress/usr.sbin/syslogd/args-client-udp4-nodns.pl N src/regress/usr.sbin/syslogd/args-sendsyslog.pl N src/regress/usr.sbin/syslogd/args-socket.pl No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 14:54:27 Modified files: regress/usr.sbin: Makefile Log message: Link ospfd and syslogd regression tests to the build. CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/20 15:15:23 Modified files: www/polipo : Makefile distinfo www/polipo/patches: patch-Makefile patch-forbidden_c patch-polipo_h www/polipo/pkg : PLIST Removed files: www/polipo/patches: patch-log_c Log message: Update to polipo-1.1.1. Two users (David Schaefer and me) are happy. no feedback from the third user. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/20 16:13:24 Modified files: share/man/man8 : rc.conf.8 Log message: Move the examples to the EXAMPLES section and add some actual reference manual style documentation to the DESCRIPTION. Feedback and OK rpe@ and ajacoutot@, also using feedback from deraadt@. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/20 17:56:57 Modified files: sys/dev/pci : if_nfe.c Log message: after allocating an mbuf and cluster you still need to init the length fields. found by steven roberts, who also tested this fix for me CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 18:04:58 Modified files: usr.sbin/syslogd: privsep.c syslogd.c Log message: Parse loghost in a separate function. Allow [] around hostname, needed for IPv6 addresses. Print full loghost specifier in case of error or debug. Make string sizes more precise. input henning@; input and OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/20 18:49:17 Modified files: games/renpy : Makefile distinfo games/renpy/pkg: PLIST Log message: Update to renpy-6.17.7. Release announcement: http://www.renpy.org/release/6.17 CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/20 19:08:52 Modified files: usr.bin/ssh : moduli.c ssh-keygen.c Log message: Free resources on error in mkstemp and fdopen ok djm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 01:30:25 Modified files: print/cups-filters: Makefile distinfo print/cups-filters/pkg: PLIST Log message: Update to cups-filters-1.0.58. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 01:43:41 Modified files: print/foomatic-db: Makefile distinfo print/foomatic-db/pkg: PLIST Log message: Update to foomatic-db-4.0.20140707. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/21 02:02:56 Modified files: sysutils/pciutils: Makefile distinfo sysutils/pciutils/patches: patch-Makefile patch-lib_names-net_c patch-lib_obsd-device_c Log message: Update to pciutils-3.2.1 suggestion and ok jca@ ok matthieu@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/08/21 02:04:16 Modified files: archivers/sltar: Makefile devel/cmocka : Makefile devel/cxxtools : Makefile x11/xglobe : Makefile Log message: Remove tab at end of HOMEPAGE revision bump explained & ok sthen CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/21 02:18:58 Modified files: x11/gtksourceview3: Makefile distinfo x11/gtksourceview3/pkg: PLIST Log message: update to gtksourceview3-3.12.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/21 02:23:00 Modified files: comms/minicom : Makefile distinfo comms/minicom/patches: patch-man_minicom_1 patch-src_main_c Added files: comms/minicom/patches: patch-src_script_c Log message: update to minicom-2.7 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 02:54:58 Modified files: usr.sbin/rcctl : rcctl.sh Log message: If a service is disabled its flags are unconditionally set to "NO", so there's not need to display "enabled" or "disabled" when calling "status", we have the information already. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 04:06:14 Modified files: etc/rc.d : rc.subr Log message: Drop sanitation, _rc_parse_conf does this for us already. ok schwarze@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 04:07:07 Modified files: sys/net : route.c Log message: If an ifa has as NULL ifp pointer then is should be considered as invalid. When such thing happens, it means that the address is no longer configured on the system but still referenced by some routes. So do not return such ifa in ifa_ifwithroute(). Fix a panic reported by Pierre Bardou. ok mikeb@, henning@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 04:15:11 Modified files: usr.sbin/rcctl : rcctl.8 Log message: Now that rc.conf(8) defines what a base system service, a base system daemon, and a package daemon is, refer to it instead of duplicating information. While here, clean up wording. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 04:23:47 Modified files: usr.sbin/arp : arp.8 arp.c Log message: Change the output of arp(8) to match what ndp(8) does and include the expire timer. This will makes it easier to add further information in a coherent way between these tools for local and broadcast entries. This new view displays either symbolic names (by default) or numerical addresses (with "-n") for hosts but not both at the same time, just like ndp(8), route(8) or netstat(1) do. ok henning@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 04:38:27 Modified files: security/p11-kit: Makefile distinfo Log message: Update to p11-kit-0.20.4. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 05:54:00 Modified files: sys/netinet6 : in6_pcb.c Log message: Misleading comments about splnet(). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/21 06:27:52 Modified files: x11/gnome/empathy: Makefile distinfo Log message: update to empathy-3.12.5 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 06:37:27 Modified files: security/gnutls: Makefile distinfo security/gnutls/pkg: PLIST Added files: security/gnutls/patches: patch-lib_x509_rfc2818_hostname_c Log message: Update to gnutls-3.2.16. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 06:47:22 Modified files: usr.sbin/rcctl : rcctl.8 rcctl.sh Log message: Make "rcctl status" output match rc.conf(8) format. ok jasper@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 06:56:24 Modified files: usr.bin/mandoc : mdoc_html.c mdoc_macro.c mdoc_man.c mdoc_term.c regress/usr.bin/mandoc/mdoc/Ar: punct.in punct.out_ascii regress/usr.bin/mandoc/mdoc/Fl: Makefile noarg.in noarg.out_ascii punct.in punct.out_ascii regress/usr.bin/mandoc/mdoc/Nm: Makefile regress/usr.bin/mandoc/mdoc/Pa: Makefile Added files: regress/usr.bin/mandoc/mdoc/Nm: punct.in punct.out_ascii regress/usr.bin/mandoc/mdoc/Pa: punct.in punct.out_ascii Log message: Right after .Fl, a middle delimiter triggers an empty scope, just like a closing delimiter. This didn't work in groff-1.15, but it now works in groff-1.22. After being closed by delimiters, .Nm scopes do not reopen. Do not suppress white space after .Fl if the next node is a text node on the same input line; that can happen for middle delimiters. Fixing an issue reported by jmc@. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 08:24:08 Modified files: sys/arch/alpha/alpha: in_cksum.c sys/arch/alpha/stand/netboot: if_prom.c sys/arch/amd64/stand/libsa: pxe.c pxe_net.c sys/arch/arm/arm: genassym.cf sys/arch/armv7/imx: imxenet.c sys/arch/armv7/sunxi: sxie.c sys/arch/aviion/stand/boot: conf.c dev_net.c if_le.c sys/arch/i386/stand/libsa: pxe.c pxe_net.c sys/arch/landisk/stand/boot: getsecs.c sys/arch/luna88k/stand/boot: conf.c if_le.c sys/arch/m88k/m88k: in_cksum.c sys/arch/macppc/stand: net.c netif_of.c sys/arch/sparc/stand/common: net.c netif_sun.c sys/arch/sparc64/sparc64: in4_cksum.c sys/arch/sparc64/stand/ofwboot: net.c netif_of.c sys/arch/vax/if: if_de.c sys/arch/vax/stand/boot: if_de.c if_le.c if_qe.c if_ze.c netio.c sys/arch/vax/vax: in4_cksum.c Log message: Kill the remaining inclusion! CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/21 08:26:16 Modified files: usr.sbin/rcctl : rcctl.sh Log message: add $OpenBSD$ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/21 08:30:21 Modified files: sys/dev/pci : if_bge.c Log message: Fix a copy and pasto with the standard ring setup with calling if_rxr_init() to use BGE_STD_RX_RING_CNT instead of BGE_JUMBO_RX_RING_CNT. ok dlg@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/21 08:41:41 Modified files: devel/intellij : Makefile distinfo devel/intellij/pkg: PLIST Log message: Update IntelliJ IDEA port to 13.1.4b. Set MAINTAINER to face the reality. There are many tweaks pending, to be reviewed and committed separately. Many input from and okay daniel@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 08:52:56 Modified files: sys/dev/usb : uaudio.c ukbd.c umass.c ums.c Log message: Now that DVACT_DEACTIVATE is propagated to the children of a device when a driver does not implement a specific *_activate() handler and that our USB stack sets the dying flag before detaching a device, these specific handlers can die. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/21 09:09:27 Modified files: sbin/pfctl : parse.y Log message: deny "once" flags for match rules; ok henning CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 10:03:50 Modified files: usr.bin/mandoc : cgi.c Log message: limit CGI process execution time to make REDoS attacks less effective; attack surface pointed out by Sebastien Marie CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/08/21 10:46:48 Modified files: usr.bin/ftp : fetch.c Log message: Fix double free. ok guenther@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 10:50:11 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Unbreak when "SRCDIR=." reported by phessler@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/21 11:00:34 Modified files: usr.sbin/syslogd: privsep.c syslogd.c Log message: Send and receive UDP syslog packets on the IPv6 socket. OK henning@ CVSROOT: /cvs Module name: ports Changes by: jcs@cvs.openbsd.org 2014/08/21 11:07:56 Modified files: x11/xbanish : Makefile distinfo x11/xbanish/pkg: PLIST Log message: update to xbanish-1.2 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/21 11:16:37 Modified files: usr.sbin/syslogd: syslog.conf.5 Log message: Document square brackets for IPv6 addresses. From FreeBSD. OK logan@ henning@ CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/21 13:23:11 Modified files: usr.sbin/httpd : httpd.h server_fcgi.c server_file.c server_http.c Log message: Add Last-Modified: HTTP header. OK reyk@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/21 13:58:07 Modified files: comms/conserver: Makefile distinfo comms/conserver/pkg: PLIST conserver.rc Log message: fix up some more things to cope with the change to running conserver as a separate uid CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 14:27:03 Modified files: usr.bin/mandoc : mansearch.c Log message: Bugfix: make whatis(1) case-insensitive again. The traditional whatis(1) was case-insensitve and it's still documented that way, that but apparently got broken with or after the switch. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/21 14:54:04 Modified files: sysutils/findlib: Makefile sysutils/findlib/pkg: PLIST graphics/ocaml-camlimages: Makefile lang/ocaml : Makefile ocaml.port.mk Added files: lang/ocaml/pkg : DESCR-camlp4 DESCR-graphics DESCR-labltk DESCR-main PFRAG.dynlink-native-graphics PFRAG.dynlink-native-main PFRAG.native-camlp4 PFRAG.native-graphics PFRAG.native-labltk PFRAG.native-main PFRAG.shared-graphics PFRAG.shared-labltk PFRAG.shared-main PLIST-camlp4 PLIST-graphics PLIST-labltk PLIST-main Removed files: lang/ocaml/pkg : DESCR PFRAG.dynlink-native PFRAG.native PFRAG.shared PLIST Log message: Split off camlp4, labltk and graphics from our current OCaml 4.01. This will help when upgrading to upcoming OCaml 4.02, which will miss camlp4 and labltk. For a smooth transision, make all OCaml ports BUILD_DEPEND on camlp4 via MODULES=ocaml. sysutils/findlib is the only port using -labltk. graphics/ocaml-camlimage is the only port using -graphics. ok avsm@ CVSROOT: /cvs Module name: ports Changes by: jcs@cvs.openbsd.org 2014/08/21 15:03:10 Modified files: x11/xbanish : Makefile distinfo Log message: oops, update to xbanish-1.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/21 15:41:57 Modified files: net/bitlbee : Makefile distinfo Removed files: net/bitlbee/patches: patch-configure patch-lib_misc_c patch-otr_c Log message: update to bitlbee 3.2.2, from maintainer Tom Doherty (plus minor wantlib sync) CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/21 15:49:37 Modified files: sys/dev/acpi : acpidock.c Log message: Set the sensor's status when docking and undocking, not just its value. With this change sensorsd(8) now correctly detects state changes when docking and undocking. ok mlarkin@ CVSROOT: /cvs Module name: ports Changes by: kspillner@cvs.openbsd.org 2014/08/21 15:59:55 Modified files: geo/openbsd-developers: Makefile geo/openbsd-developers/files: OpenBSD Log message: Add myself (hello, OpenBSD world!). ok many CVSROOT: /cvs Module name: ports Changes by: millert@cvs.openbsd.org 2014/08/21 16:31:49 Modified files: geo/openbsd-developers: Makefile geo/openbsd-developers/files: OpenBSD Log message: Update my location since I've moved. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/21 17:15:57 Modified files: security/openssl: Makefile distinfo security/openssl/pkg: PLIST Log message: security update to OpenSSL 1.0.1i CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/21 19:28:19 Modified files: distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/21 19:51:42 Modified files: games/wtf : Makefile distinfo Log message: Update to 20140820. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/21 20:03:20 Modified files: x11/sakura : Makefile distinfo Log message: Minor update to 3.1.5 CVSROOT: /cvs Module name: ports Changes by: gsoares@cvs.openbsd.org 2014/08/21 20:22:25 Modified files: security/stunnel: Makefile distinfo security/stunnel/patches: patch-tools_stunnel_conf-sample_in Log message: update to 5.03 OK kili@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/21 20:32:26 Modified files: games/openttd : Makefile distinfo games/openttd/pkg: PLIST Removed files: games/openttd/patches: patch-src_music_extmidi_cpp Log message: Update to openttd-1.4.2. Replace an unnecessary patch with a configure option. (from zhuk@) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/21 21:15:46 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/pkg: PLIST Log message: Update to 0.47 CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/21 22:16:31 Log message: Import etl-0.04.17. ETL is a multi-platform class and template library designed to add new datatypes and functions which combine well with the existing types and functions from the C++ Standard Template Library (STL). ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140821 N ports/devel/etl/Makefile N ports/devel/etl/distinfo N ports/devel/etl/pkg/DESCR N ports/devel/etl/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/21 22:17:10 Modified files: devel : Makefile Log message: +etl CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/21 22:36:16 Modified files: usr.sbin/npppd/npppd: npppd_auth.c Log message: remove an uneeded test ok yasuoka@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 23:47:08 Modified files: usr.sbin : Makefile Log message: Enable rcctl(8). prodded by deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 01:41:48 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/22 01:42:56 Modified files: geo/openbsd-developers/files: OpenBSD Log message: Add myself. CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/22 01:59:52 Modified files: sbin/isakmpd : ike_phase_1.c Log message: fix memory leak in isakmpd ok gerhard@ (also corrected first version) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/22 01:59:54 Added files: security/openssl/patches: patch-crypto_des_Makefile Log message: Fix build on sparc64. In the 'you didnt think openssl was that insane' series, it tries to use m4 -B 8192 to generate some sparc asm from an m4 file. Unsurprisingly, our m4 doesn't support -B, it's not even in gm4's manpage, and gm4 info page says this about -B : These options are present for compatibility with System V `m4', but do nothing in this implementation. They may disappear in future releases, and issue a warning to that effect. I'm glad openssl can be built with System V m4.. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/22 02:10:38 Modified files: etc/rc.d : nfsd Log message: Set the default nfsd flags to "-tun 4". Matches the comment in rc.conf and the behaviour of the backwards compatibility code in rc.subr for nfs_server=YES. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/22 02:15:55 Modified files: lang/ruby/2.0 : Makefile Log message: add alpha/hppa to list of arches for no_ri_docs instead of marking it broken. sebastia@ confirms ruby works good enough for puppet on these arches. the underlying problem in miniruby still needs to be addressed though. ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 03:16:05 Modified files: devel/jdk/1.7 : Makefile distinfo devel/jdk/1.7/pkg: PLIST-jre PLIST-main Log message: Update to Java 7u65, including some security fixes. Committing on behalf of kurt@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/22 04:24:16 Modified files: geo/openbsd-developers: Makefile Log message: Also do a revision bump as noted by stsp@ thanks! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 06:21:47 ports/sysutils/salt/files Update of /cvs/ports/sysutils/salt/files In directory cvs.openbsd.org:/tmp/cvs-serv22428/files Log Message: Directory /cvs/ports/sysutils/salt/files added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 06:22:09 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_openbsdservice_py sysutils/salt/pkg: PLIST Added files: sysutils/salt/files: openbsdrcctl.py Log message: Implement full service management using rcctl(8). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 06:39:41 Modified files: x11/gnome/tracker: Makefile distinfo x11/gnome/tracker/patches: patch-configure_ac patch-src_tracker-extract_tracker-extract-gstreamer_c patch-src_tracker-extract_tracker-extract-mp3_c patch-src_tracker-extract_tracker-main_c x11/gnome/tracker/pkg: PLIST Removed files: x11/gnome/tracker/patches: patch-data_tracker-miner_pc_in Log message: Update to meta-tracker-1.0.3. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/22 07:24:56 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to latest youtube-dl 2014.08.22.2. This fixes the vimeo extractor and brings some new ones in. ok pirofti@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 08:30:08 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Implement enabled/disabled. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/22 09:49:45 Modified files: usr.bin/mandoc : man.cgi.8 Log message: typo; noticed by jmc@ some time ago CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/22 10:14:11 Modified files: usr.sbin/syslogd: syslogd.c Log message: Instead of getting a nasty error message from privsep "syslogd: priv_getaddrinfo: overflow attempt in hostname" check the host and port length when parsing the config. OK henning@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/22 10:29:27 Removed files: usr.bin/signify: ge25519.c Log message: don't need this file, only the mod version CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/22 11:02:46 Modified files: mail/geary : Makefile distinfo Log message: Bugfix update to geary 0.6.2, reminded by aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/22 12:43:32 Modified files: devel/ruby-hub : Makefile distinfo Log message: update to hub-1.12.2 CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/22 13:04:01 Modified files: app/cwm : group.c mousefunc.c search.c xutil.c Log message: Fix nogroup regression, where nogroup became an actual group - the symantics between cwm groups and ewmh got in the way. Ensure a client that wants to be in nogroup stays in nogroup (thus stays in view), even when (re)reading NET_WM_DESKTOP. Paritially reverts patchset 644 (2014-02-07 13:09 PST) which deals with a NULL cc->group. All to be revisited when NET_WM_STATE_STICKY hits cwm. Reported by many; testing and ok phessler. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 13:18:44 Modified files: infrastructure/db: user.list Log message: reserve uid for bind CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 13:19:25 Modified files: etc : Makefile changelist group master.passwd rc rc.conf etc/mail : aliases etc/mtree : 4.4BSD.dist Removed files: etc/bind : db.localhost db.loopback db.loopback6.arpa named-dual.conf named-simple.conf root.hint etc/rc.d : named etc/systrace : usr_sbin_named Log message: disable use of bind in base; in the base use nsd/unbound instead. a proper & complete bind port will show up. discussed with many for years CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/22 13:28:25 Modified files: usr.sbin/bind : Makefile.bsd-wrapper Makefile.in configure configure.in usr.sbin/bind/bin: Makefile.in Log message: Strip the BIND code down to just building and installing dig, host and nslookup. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 13:52:56 ports/net/isc-bind/files Update of /cvs/ports/net/isc-bind/files In directory cvs.openbsd.org:/tmp/cvs-serv15616/files Log Message: Directory /cvs/ports/net/isc-bind/files added to the repository CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 14:03:56 Modified files: sys/arch/armish/conf: RAMDISK sys/arch/armv7/conf: RAMDISK-IMX RAMDISK-OMAP RAMDISK-SUNXI sys/arch/landisk/conf: RAMDISK sys/arch/sgi/conf: GENERIC-IP22 GENERIC-IP26 GENERIC-IP27 GENERIC-IP28 GENERIC-IP30 GENERIC-IP32 sys/arch/zaurus/conf: RAMDISK Log message: pseudo-device crypto was accidentally left for some architectures. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 14:32:13 Modified files: net/isc-bind : Makefile net/isc-bind/patches: patch-bin_named_include_named_globals_h net/isc-bind/pkg: PLIST isc_named.rc Added files: net/isc-bind/files: localhost loopback loopback6.arpa named.conf root.hint Log message: install sample configs and switch to running as _bind uid CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/22 14:42:57 Modified files: security/p5-Net_SSLeay: Makefile distinfo Log message: - update p5-Net-SSLeay to 1.66 - change license from OpenSSL to Perl CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/22 14:53:44 Modified files: faq : current.html Log message: bind->ports CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 14:56:00 Modified files: net/isc-bind : Makefile Log message: add comment (notes for possible renamings, things are a tad inconsistent at present) CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/08/22 16:14:53 Modified files: usr.sbin/arp : arp.c Log message: print leading 0's in MAC addresses again, ok deraadt CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/22 16:21:54 Modified files: devel/omake : Makefile devel/ocaml-camomile: Makefile graphics/ocaml-camlimages: Makefile devel/ocaml-pcre: Makefile textproc/gonzui: Makefile devel/ocaml-batteries: Makefile textproc/ocaml-xml-light: Makefile textproc/ocaml-xmlm: Makefile devel/ocaml-curses: Makefile devel/ocaml-extlib: Makefile textproc/ocaml-csv: Makefile textproc/ocaml-rss: Makefile devel/ocaml-bitstring: Makefile databases/ocaml-sqlite3: Makefile devel/ocaml-net: Makefile databases/ocaml-postgresql: Makefile devel/ocaml-calendar: Makefile devel/ocaml-mlgmp: Makefile Log message: Bump after lang/ocaml pkgname change (first round, more bumps will follow). CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/08/22 16:37:32 Modified files: usr.sbin/ndp : ndp.c Log message: switch ndp to display MAC addresses in 00:00:00:00:00:00 format, ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/22 16:49:07 Modified files: devel/ounit : Makefile devel/ocaml-react: Makefile textproc/ocaml-text: Makefile devel/ocaml-zed: Makefile security/ocaml-ssl: Makefile devel/coccinelle: Makefile devel/ocaml-lwt: Makefile productivity/wyrd: Makefile devel/ocaml-lambda-term: Makefile devel/cil : Makefile devel/utop : Makefile x11/lablgtk2 : Makefile net/unison/stable: Makefile textproc/hevea : Makefile net/mldonkey/stable: Makefile Log message: More bumps due to lang/ocaml pkgname change. CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 16:59:05 Log message: Import icoutils-0.31.0. The icoutils are a set of command-line programs for extracting and converting images in Microsoft Windows(R) icon and cursor files. These files usually have the extension .ico or .cur, but they can also be embedded in executables and libraries (.dll-files). ok sthen@ Status: Vendor Tag: bentley Release Tags: bentley_20140822 N ports/graphics/icoutils/icoutils/Makefile N ports/graphics/icoutils/icoutils/distinfo N ports/graphics/icoutils/icoutils/pkg/DESCR N ports/graphics/icoutils/icoutils/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 16:59:45 Modified files: graphics : Makefile Log message: +icoutils CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/08/22 17:05:15 Modified files: lib/libc/sys : stat.2 sys/sys : _types.h stat.h types.h Log message: POSIX/FreeBSD/NetBSD/Linux/etc agree -- blk[size|cnt]_t is the bomb. So add the types blksize_t (a.k.a. int32_t) and blkcnt_t (a.k.a. int64_t). Use blkcnt_t in stat.h since the base type (int64_t) does not change. blksize_t in stat.h will follow after the tree is audited for signed issues, since the base type will change from u_int32_t to a POSIX compliant int32_t. Guidance and feedback from guenther@ ok millert@ CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/08/22 17:52:00 Modified files: faq : current.html Log message: Also clear out the man pages for BIND. CVSROOT: /cvs Module name: src Changes by: pelikan@cvs.openbsd.org 2014/08/22 18:11:03 Modified files: regress/sbin/pfctl: Makefile sbin/pfctl : parse.y pfctl.c pfctl_parser.h Added files: regress/sbin/pfctl: pfail54.in pfail54.ok Log message: when you specify queues in a rule, make sure they have been defined. DIOCADDRULE EBUSY turns into an error message that pfctl -n catches. DIOCXCOMMIT EINVAL after the kernel rejected the rules was reported to occur, possibly from hfsc.c: this should be fixed as well. ok henning mikeb sthen CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/22 18:48:57 Modified files: sbin/isakmpd : ike_auth.c Log message: Fix double free in ike_auth.c ok jca@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/22 19:00:20 Modified files: usr.bin/mandoc : mandocdb.c Log message: Fix fd leak when fdopen fails. ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/22 20:25:34 Modified files: databases/mariadb: Makefile databases/mariadb/pkg: PLIST-main Log message: Add a conflict marker for MySQL server to the MariaDB client sub-package as some files moved around between the two ports/packages and their respective sub-packages. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 20:57:43 Log message: Import quadrupleback-0.1.0. Quadrupleback is a video game where intruders must be circled. It is a clone of the 1982 Doubleback game by Dale Lear for the Tandy Color Computer. ok bcallah@ Status: Vendor Tag: bentley Release Tags: bentley_20140822 N ports/games/quadrupleback/Makefile N ports/games/quadrupleback/distinfo N ports/games/quadrupleback/pkg/DESCR N ports/games/quadrupleback/pkg/PLIST N ports/games/quadrupleback/patches/patch-src_Makefile_in N ports/games/quadrupleback/patches/patch-Makefile_in No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 20:58:15 Modified files: games : Makefile Log message: +quadrupleback CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 22:00:41 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 23:49:42 Modified files: etc : pf.conf Log message: Shrink this to the minimum, but reference /etc/examples/pf.conf (someone should really sit down and flesh out the examples) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/23 00:54:18 Modified files: security/ocaml-cryptokit: Makefile Log message: Another missing bump after ocaml change.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/23 01:02:12 Modified files: devel/intellij/pkg: PLIST Log message: Remove duplicate items in PLIST, i doubt amd64 jars are installed on i386.. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/23 01:09:18 Modified files: devel/frama-c : Makefile lang/obc : Makefile math/coq : Makefile Log message: Last OCaml REVISION bumps do to changes in BUILD_DEPENDS. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/23 01:25:54 Modified files: lib/libc/net : getaddrinfo.3 gethostbyname.3 getnameinfo.3 getrrsetbyname.3 resolver.3 share/man/man5 : hosts.5 networks.5 resolv.conf.5 share/man/man7 : hier.7 hostname.7 share/man/man8 : intro.8 Log message: unbind; CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/23 01:33:11 Modified files: sysutils/salt/pkg: PLIST Log message: install_egg_info() behaves differently on some machines; fix the egg-info file to match the most successful ones (I will have a look at the underlying issue). CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/23 03:53:18 Modified files: sysutils/symon/patches: patch-platform_OpenBSD_sm_mbuf_c Log message: fix build, now needs to include sys/pool.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:01:51 ports/graphics/icoutils/pkg Update of /cvs/ports/graphics/icoutils/pkg In directory cvs.openbsd.org:/tmp/cvs-serv17401/pkg Log Message: Directory /cvs/ports/graphics/icoutils/pkg added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:02:42 Added files: graphics/icoutils: Makefile distinfo graphics/icoutils/pkg: DESCR PLIST Removed files: graphics/icoutils/icoutils: Makefile distinfo graphics/icoutils/icoutils/pkg: DESCR PLIST Log message: fix bad import (ports/graphics/icoutils/icoutils) CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/08/23 04:34:18 Modified files: usr.sbin/ldomctl: ldomctl.8 Log message: Enhance the ldomctl(8) man page. Describe all available commands, document the init-system file format, and add examples guiding users through the process of setting up guest domains based on http://undeadly.org/cgi?action=article&sid=20121214153413 input and ok jasper jmc schwarze CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:45:41 Modified files: lang/php/5.4 : Makefile distinfo lang/php/5.4/patches: patch-ext_openssl_openssl_c Log message: update to php 5.4.32, ok robert@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:45:51 Modified files: lang/php/5.5 : Makefile distinfo lang/php/5.5/patches: patch-ext_openssl_openssl_c Log message: update to php 5.5.16, ok robert@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/23 05:38:56 Modified files: sys/arch/sparc64/sparc64: in4_cksum.c Log message: oddly now needs sys/socket.h, because someone removed struct socket fwd decl definition from somewhere in .h. This appears to be the only fallout in the kernel. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/23 06:09:39 Modified files: multimedia/livestreamer: Makefile distinfo multimedia/livestreamer/pkg: PLIST Log message: Mostly bugfix update to 1.10.1 CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/23 08:33:07 Modified files: graphics/qiv : Makefile distinfo graphics/qiv/patches: patch-Makefile graphics/qiv/pkg: PLIST Added files: graphics/qiv/patches: patch-qiv_1 Log message: - update qiv to 2.3.1, Changelog: http://spiegl.de/qiv/changes.shtml - install qiv-command example and mention it in man. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/23 08:52:41 Modified files: lib/libssl/src/ssl: s3_clnt.c s3_lib.c ssl_lib.c ssl_locl.h Log message: Replace the remaining ssl3_get_cipher_by_char() calls with n2s() and ssl3_get_cipher_by_id(). ok bcook@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/23 09:29:55 Modified files: usr.sbin/npppd/npppd: privsep.c Log message: close fd when fdopen fails ok yasuoka@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/23 09:37:38 Modified files: lib/libssl/src/ssl: s3_lib.c Log message: Remove non-standard GOST cipher suites (which are not compiled in currently). From Dmitry Eremin-Solenikov. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/23 12:23:37 Removed files: games/naev/base/patches: patch-src_opengl_c Log message: remove unneeded patch CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/23 12:32:55 Modified files: sys/netinet : in.c Log message: Move splnet() in in_ifinit() to protect less code that does not need it. OK mpi@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/23 14:44:30 Modified files: . : mail.html Log message: missing

, from "TJ" as part of a larger diff CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/23 23:01:42 Modified files: sys/dev/pci : if_bgereg.h Log message: Add some TX BD flags for BCM5717 family chips. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:33:26 Modified files: usr.sbin/rcctl : rcctl.8 rcctl.sh Log message: Make it possible to pass `-d' and `-f' to the rc.d(8) script. man page bits from schwarze@ ok jasper@ schwarze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:46:54 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Since rcctl(8) can changes the position of such and such variable, sort the file so that we always have a consistent output. ok schwarze@ jasper@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:55:20 Modified files: etc/rc.d : rc.subr Log message: In debug mode (`-d'), only print the flags relevant to the rc.d(8) we are calling instead of all flags which makes it very difficult to see the information we actually need. ok schwarze@ robert@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:59:37 Modified files: x11/gnome/gvfs : Makefile distinfo Log message: Update to gvfs-1.20.3. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 02:13:15 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Fix args to needs_root() when using "disable" (broken in the v1.9 positional args cleanup commit). from Sebastien Marie CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/08/24 02:46:42 Modified files: sysutils/ansible: Makefile distinfo sysutils/ansible/pkg: PLIST Log message: Update ansible to 1.7.1 Besides performance enhancements and other bug fixes: - Security fix to disallow specifying 'args:' as a string, which could allow the insertion of extra module parameters through variables. OK aja@ sthen@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/24 03:03:05 Modified files: geo/spatialindex: Makefile distinfo geo/spatialindex/pkg: PLIST Log message: update to spatialindex 1.8.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 03:17:52 Modified files: www/privoxy : Makefile www/privoxy/pkg: privoxy.rc Log message: Multiline flags are not supported by the new parser for now; so unbreak default daemon_flags. reported by Sebastien Marie CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/24 03:50:17 Modified files: games/quadrupleback: Makefile Removed files: games/quadrupleback/patches: patch-Makefile_in Log message: Add libiconv MODULE and replace unnecessary patch with FAKE_FLAGS. Pointed out by ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/24 07:25:55 Modified files: games/quadrupleback: Makefile Log message: plist change -> revision bump CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 07:29:16 Modified files: etc/rc.d : rc.subr Log message: In debug mode, make it clear when we are using the default flags when none are set. initial patch from me but reworked by schwarze@ ok schwarze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 07:30:27 Modified files: etc/rc.d : rc.subr Log message: Drop unused variables. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 07:32:53 Modified files: etc/rc.d : rc.subr Log message: Drop uneeded parenthesis in usage(). ok schwarze@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 07:46:57 Modified files: usr.sbin/rcctl : rcctl.sh Log message: reduce indentation of main program by one tab, no functional change ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/24 08:36:46 Modified files: lib/libssl/src/ssl: d1_srvr.c s3_lib.c s3_srvr.c ssl_lib.c ssl_locl.h Log message: Replace the remaining uses of ssl3_put_cipher_by_char() with s2n and a ssl3_cipher_get_value() helper function, which returns the cipher suite value for the given cipher. ok miod@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/24 08:45:00 Modified files: sbin/mountd : mountd.8 mountd.c Log message: Remove imaginary non-reserved port support from mountd. This bug was reported by Julian Hsiao. ok concept deraadt@, miod@ mountd.8 diff is from jmc@. ok doug@ mountd.c diff is from me. ok miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/24 08:55:23 Modified files: lib/libssl/src/apps: ciphers.c Log message: Let SSL_CIPHER_description() allocate the buffer for the description, rather than passing in a fixed size buffer. This is yet another example of a horribly designed API - if the given buffer is NULL then SSL_CIPHER_description() allocates one for us (great!), which we then need to free (no problem). However, if this allocation fails it returns a pointer to a static string "OPENSSL_malloc Error" - obviously bad things happen if we call free() with this pointer. Unfortunately, there is no way of knowing that the function failed, other than comparing the returned string against the string literal - so do that before calling free()... Joint work with beck@ during g2k14. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/24 09:37:45 Modified files: app/cwm : calmwm.h group.c screen.c Log message: gc->hidden has never consistently kept track of a group's state; group_show() and group_hide() are not the only ways a group can change state - if all clients in a group are either hidden or unhidden, then that group's state should change, as well as the various EWMH ways. Instead of trying to keep track in a wide variety of places, simply query the clients in a group before needing to take action based on the group's state. Solves long standing confusion of when a group is hidden or not. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/24 09:49:58 Modified files: app/cwm : conf.c Log message: Continue effort to bring keyboard and mouse functions together; merge name_to_kbfunc and name_to_mousefunc. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 09:53:09 Modified files: share/mk : bsd.xorg.mk Log message: less verbose CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/24 10:07:29 Modified files: lib/libssl/src/apps: ocsp.c s_client.c s_server.c s_time.c Log message: Include to get select These files currently depends on the wrapper file indirectly including a header that provides select(). from Jonas 'Sortie' Termansen ok deraadt@ tedu@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/24 10:08:30 Modified files: lib/libssl/src/crypto/bio: bss_dgram.c Log message: Include to get struct timeval The crypto/bio/bss_dgram.c file assumes that another file indirectly includes that includes . from Jonas 'Sortie' Termansen ok deraadt@ tedu@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/24 10:11:39 Modified files: lib/libssl/src/crypto/err: err.c Log message: constify strerror return value There is no intention to modify the string returned by strerror and doing so is forbidden by the standard. from Jonas 'Sortie' Termansen ok tedu@ deraadt@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 11:01:44 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop obvious comments. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 11:15:24 Modified files: etc/rc.d : rc.subr Log message: Fix reversed logic. ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/24 11:17:16 Modified files: devel/intellij : Makefile devel/intellij/pkg: PLIST Log message: More appropriate PLIST fix. Bumping this time, too. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 11:47:54 Modified files: distrib/sets/lists/xbase: mi distrib/sets/lists/xetc: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 11:52:38 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Add a comment to unconfuse Ingo :-) CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/08/24 11:55:14 Modified files: sys/arch/amd64/amd64: pmap.c Log message: remove trailing whitespace CVSROOT: /cvs Module name: src Changes by: zhuk@cvs.openbsd.org 2014/08/24 12:01:27 Modified files: sys/dev/ic : if_wi_hostap.h if_wi_ieee.h sys/net80211 : ieee80211_ioctl.h Log message: Fix wrong IEEE 802.11 ioctl's: * SIOCG80211ALLNODES operates on struct ieee80211_nodereq_all, not struct ieee80211_nodereq. * Six SIOC* from wi(4) were using same codes with generic parts of IEEE 802.11 framework. Things worked due to the fact that size of data struct being passed is encoded in actual SIOC*, too. This commit means that ifconfig and some ports will need to be rebuilt, if any of affected SIOC* codes is used. Port bumps to follow. First part okay reyk@, whole diff okay mpi@ Heavy prodding to commit now from deraadt@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/24 12:05:17 Modified files: net/kismet : Makefile net/wmifinfo : Makefile sysutils/wmwlmon: Makefile security/bsd-airtools: Makefile Log message: Bump after changing a few IEEE 802.11 ioctls. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 12:10:26 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Start all error messages with "rcctl: " such that it is clear where they come from. While here, there is no need to check the argument of needs_root() before displaying it, it is always provided. ok ajacoutot@ jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/24 12:32:20 Modified files: x11/gnome/grilo: Makefile distinfo x11/gnome/grilo/pkg: PLIST Log message: update to grilo-0.2.11 CVSROOT: /cvs Module name: www Changes by: austin@cvs.openbsd.org 2014/08/24 12:41:02 Modified files: . : orders.html Log message: No more mugs available CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 13:00:46 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Whitelisting allowed services is safer and less confusing than blacklisting auxiliary variables, and it makes the coupling to rc.subr(8) less tight. Feedback and OK ajacoutot@. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/24 13:15:46 Modified files: shells/bash : Makefile distinfo Log message: update to 4.3 patchlevel 24 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 13:44:02 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Delete the function svc_get_all(). In svc_is_avail(), this simplifies the code by getting rid of the loop. When running "rcctl status", this allows to not run svc_is_special() - which spawns a grep - for each and every service, resulting in a 20% speedup. As a bonus, we get the special services listed at the end, where they are easier to see than mixed in with the daemons. ok ajacoutot@ jasper@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 13:58:52 Modified files: app/xsm : Makefile.bsd-wrapper Log message: Don't need to override datadir anymore. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/24 14:04:10 Modified files: . : Makefile.cross Log message: more NO_CROSS CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/24 14:06:57 Modified files: sys/arch/sparc64/sparc64: in4_cksum.c Log message: socketvar.h instead of socket.h, oops CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 14:22:20 Modified files: app/xwininfo : Makefile.bsd-wrapper Log message: Enable xcb-iccm CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/24 14:29:08 Modified files: shells/nsh/patches: patch-stats_c Log message: Unbreak, needs #include now ? CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/24 14:56:06 Modified files: www/liferea : Makefile distinfo www/liferea/pkg: PLIST Log message: Bugfix update to 1.10.11 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/24 16:25:03 Modified files: security/libsodium: Makefile distinfo security/libsodium/pkg: PLIST Log message: update to libsodium-0.70, for new features see https://github.com/jedisct1/libsodium/releases/tag/0.7.0 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 17:40:41 Modified files: usr.bin/mandoc : term_ps.c Log message: When support for bold italic font was added to the parsers and to the generic parts of the formatters some time ago, the PostScript- and PDF-specific part of the formatters was neglected. Now pascal@ reports that mandoc -Tps throws an assertion on perl(1), apparently because that manual actually uses bold italic font. So here is an overdue implementation of bold italic font support for PostScript and PDF output. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 17:44:50 Modified files: usr.bin/mandoc : term_ps.c Log message: Oops. Garbage collect unused variable. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/24 19:38:40 Modified files: www/vimb : Makefile distinfo www/vimb/patches: patch-src_setting_c Log message: Update to 2.7 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 01:05:46 Modified files: devel/ptlib : Makefile Added files: devel/ptlib/patches: patch-make_ptbuildopts_mak_in Log message: Do not re-define INSTALL otherwise we end up using the one from ${WRKBUILD}. This unbreaks dependant ports like h323plus. CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/08/25 01:08:29 Modified files: . : 21.html 22.html 23.html 24.html 25.html 26.html 27.html 28.html 29.html 30.html 31.html 32.html 33.html 34.html 35.html 36.html 37.html 38.html 39.html 40.html 41.html Log message: Correct old source archive names, xenocara isn't quite so old and sys was named srcsys for a while. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/25 01:08:34 Removed files: usr.sbin/bind/bin/check: Makefile.in check-tool.c check-tool.h named-checkconf.8 named-checkconf.c named-checkconf.docbook named-checkconf.html named-checkzone.8 named-checkzone.c named-checkzone.docbook named-checkzone.html usr.sbin/bind/bin/dnssec: Makefile.in dnssec-keygen.8 dnssec-keygen.c dnssec-keygen.docbook dnssec-keygen.html dnssec-signzone.8 dnssec-signzone.c dnssec-signzone.docbook dnssec-signzone.html dnssectool.c dnssectool.h usr.sbin/bind/bin/named: Makefile.in builtin.c client.c config.c control.c controlconf.c interfacemgr.c listenlist.c log.c logconf.c lwaddr.c lwdclient.c lwderror.c lwdgabn.c lwdgnba.c lwdgrbn.c lwdnoop.c lwresd.8 lwresd.c lwresd.docbook lwresd.html lwsearch.c main.c named.8 named.conf.5 named.conf.docbook named.conf.html named.docbook named.html notify.c query.c server.c sortlist.c tkeyconf.c tsigconf.c update.c xfrout.c zoneconf.c usr.sbin/bind/bin/named/include/named: builtin.h client.h config.h control.h globals.h interfacemgr.h listenlist.h log.h logconf.h lwaddr.h lwdclient.h lwresd.h lwsearch.h main.h notify.h ns_smf_globals.h query.h server.h sortlist.h tkeyconf.h tsigconf.h types.h update.h xfrout.h zoneconf.h usr.sbin/bind/bin/named/unix: Makefile.in os.c usr.sbin/bind/bin/named/unix/include/named: os.h usr.sbin/bind/bin/nsupdate: Makefile.in nsupdate.8 nsupdate.c nsupdate.docbook nsupdate.html usr.sbin/bind/bin/rndc: Makefile.in rndc-confgen.8 rndc-confgen.c rndc-confgen.docbook rndc-confgen.html rndc.8 rndc.c rndc.conf rndc.conf.5 rndc.conf.docbook rndc.conf.html rndc.docbook rndc.html util.c util.h usr.sbin/bind/bin/rndc/include/rndc: os.h usr.sbin/bind/bin/rndc/unix: Makefile.in os.c usr.sbin/bind/bin/tests/system/masterformat: clean.sh setup.sh tests.sh usr.sbin/bind/bin/tests/system/masterformat/ns1: compile.sh example.db named.conf usr.sbin/bind/bin/tests/system/masterformat/ns2: named.conf usr.sbin/bind/bin/tests/system/rrsetorder: clean.sh dig.out.cyclic.good1 dig.out.cyclic.good2 dig.out.cyclic.good3 dig.out.cyclic.good4 dig.out.fixed.good dig.out.random.good1 dig.out.random.good10 dig.out.random.good11 dig.out.random.good12 dig.out.random.good13 dig.out.random.good14 dig.out.random.good15 dig.out.random.good16 dig.out.random.good17 dig.out.random.good18 dig.out.random.good19 dig.out.random.good2 dig.out.random.good20 dig.out.random.good21 dig.out.random.good22 dig.out.random.good23 dig.out.random.good24 dig.out.random.good3 dig.out.random.good4 dig.out.random.good5 dig.out.random.good6 dig.out.random.good7 dig.out.random.good8 dig.out.random.good9 tests.sh usr.sbin/bind/bin/tests/system/rrsetorder/ns1: named.conf root.db usr.sbin/bind/bin/tests/system/rrsetorder/ns2: named.conf usr.sbin/bind/bin/tests/system/rrsetorder/ns3: named.conf usr.sbin/bind/bin/tests/system/tsig: clean.sh tests.sh usr.sbin/bind/bin/tests/system/tsig/ns1: example.db named.conf usr.sbin/bind/bin/tests/system/zonechecks: a.db aaaa.db clean.sh cname.db dname.db noaddress.db nxdomain.db tests.sh usr.sbin/bind/doc: Makefile.in usr.sbin/bind/doc/arm: Bv9ARM-book.xml Bv9ARM.ch01.html Bv9ARM.ch02.html Bv9ARM.ch03.html Bv9ARM.ch04.html Bv9ARM.ch05.html Bv9ARM.ch06.html Bv9ARM.ch07.html Bv9ARM.ch08.html Bv9ARM.ch09.html Bv9ARM.ch10.html Bv9ARM.html Bv9ARM.pdf Makefile.in README-SGML isc-logo.eps isc-logo.pdf latex-fixup.pl man.dig.html man.dnssec-keygen.html man.dnssec-signzone.html man.host.html man.named-checkconf.html man.named-checkzone.html man.named.html man.rndc-confgen.html man.rndc.conf.html man.rndc.html usr.sbin/bind/doc/misc: Makefile.in dnssec format-options.pl ipv6 migration migration-4to9 options rfc-compliance roadmap sdb usr.sbin/bind/doc/xsl: Makefile.in copyright.xsl isc-docbook-chunk.xsl.in isc-docbook-html.xsl.in isc-docbook-latex-mappings.xml isc-docbook-latex.xsl.in isc-docbook-text.xsl isc-manpage.xsl.in pre-latex.xsl Log message: Start removing unused documentation and the server and related binaries source code. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 01:34:12 Modified files: etc/rc.d : rc.subr Log message: Put _rc_err argument under quotes to respect the syntax we are passing. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 01:35:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Display usage on 2 lines. reworked from an original diff by schwarze@ CVSROOT: /cvs Module name: www Changes by: doug@cvs.openbsd.org 2014/08/25 01:40:35 Modified files: faq : current.html Log message: Fix the path to rndc.conf.5 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 01:48:06 Modified files: sysutils/ruby-libvirt: Makefile sysutils/ruby-libvirt/pkg: PLIST Log message: unbreak by @comment the mkmf.log file which ruby 2.1 doesn't create spotted by aja@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/25 01:50:26 Modified files: bin/systrace : systrace.c lib/libc/gen : auth_subr.c lib/libutil : check_expire.c libexec/ftpd : ftpd.c monitor.c sbin/iked : ikev2_msg.c usr.bin/gzsig : sign.c ssh.c usr.sbin/cron : entry.c usr.sbin/ikectl: ikeca.c usr.sbin/ldapd : ldapd.c usr.sbin/pwd_mkdb: pwd_mkdb.c usr.sbin/smtpd : smtpd.c ssl.c Log message: Delete secret or secret-derived data with explicit_bzero. concept ok deraadt@ diff looks ok tedu@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 02:00:37 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Removed files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_type_service_rb Log message: rewrite the service provider to use rcctl, shrinking the code by about 75% percent.. ..while retaining some of the puppet-intrinsic quirks where a service won't be restarted if the flags change. that's still under investigation. this does however now allow for valid resources that would previously fail: service { 'multicast_host': enable => true} or service { 'ipsec': enable => true} CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/25 02:00:48 Modified files: sbin/isakmpd : ike_auth.c Log message: Fix a few fd leaks in isakmpd. The latter close is from a sweep of the tree looking for fdopen problems. While reviewing the patch, gerhard@ fixed another leak. ok gerhard@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 02:09:57 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Log message: tyop CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/25 03:43:10 Modified files: mail/postfix : Makefile.inc Log message: Don't try to utilize libicu4c if it is installed. CVSROOT: /cvs Module name: ports Changes by: tobiasu@cvs.openbsd.org 2014/08/25 03:57:04 Modified files: lang/gcc/4.9 : Makefile lang/gcc/4.9/patches: patch-gcc_config_gcc patch-libgcc_config_host Added files: lang/gcc/4.9/patches: patch-gcc_config_sparc_openbsd_h patch-libatomic_configure_tgt Log message: Add sparc backend to gcc 4.9.1 Build time: 3.5 days @ 150MHz I do take 200MHz HyperSPARC and memory donations :-) OK pascal@ CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/08/25 05:33:55 Modified files: usr.bin/ftp : fetch.c Log message: When using a proxy for an https connection, validate the cert hostname against the target hostname, not the proxy hostname. Issue reported by dlg@, fix by Alex Wilson on tech@, tweaks by me. No reply from tech@ CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/08/25 06:08:55 Modified files: etc/rc.d : snmpd Log message: snmpd cannot reload ok reyk@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/25 06:49:19 Modified files: app/cwm : calmwm.h client.c conf.c cwm.1 cwmrc.5 group.c kbfunc.c xutil.c Log message: Implement _NET_WM_STATE_STICKY, bound to CM-s by default; allows any client to 'stick' to all desktops (ewmh speak) or groups - this currently has the same affect as setting a client's group to 'nogroup', with the exception that the client can also be in a group, so when un-sticking, the client will go back to its original group/desktop. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/25 07:13:19 Modified files: usr.bin/tmux : paste.c Log message: Don't allow pasting into input-disabled panes, from Anish R Athalye. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 07:30:32 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Fix pylint issues. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:43:01 Modified files: net/telepathy/telepathy-mission-control: Makefile distinfo Log message: update to telepathy-mission-control-5.16.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:44:54 Modified files: net/telepathy/telepathy-farstream: Makefile distinfo Log message: update to telepathy-farstream-0.6.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:45:40 Modified files: net/telepathy/telepathy-logger: Makefile distinfo net/telepathy/telepathy-logger/patches: patch-configure Log message: update to telepathy-logger-0.8.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:47:01 Modified files: net/telepathy/telepathy-glib: Makefile distinfo net/telepathy/telepathy-glib/pkg: PLIST Log message: update to telepathy-glib-0.24.1 CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/25 08:00:34 Modified files: sys/net : if.c sys/netinet6 : in6.c in6_ifattach.c in6_var.h nd6.c nd6.h nd6_rtr.c Log message: Move sending of router solicitations to the kernel; receiving and processing of router advertisements was already in the kernel. With this rtsol{,d}(8) is no longer necessary. The kernel starts sending solicitations with # ifconfig $IF inet6 autoconf or inet6 autoconf in /etc/hostname.$IF. input stsp@ much help & OK mpi@ tweaks & OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 08:07:49 Modified files: net/telepathy/telepathy-glib: Makefile net/telepathy/telepathy-haze: Makefile net/telepathy/telepathy-idle: Makefile net/telepathy/telepathy-logger: Makefile net/telepathy/telepathy-qt: Makefile Log message: - zap pointless homepage - sort, shuffle, whitespace CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/25 08:26:25 Modified files: sys/dev/pci : if_ix.c ixgbe_phy.c ixgbe_type.h ixgbe_x540.c Log message: We have never limited the definition of "supported SPF modules" to the vendor/make whitelist maintained by Intel so there's no reason to start doing it now. When syncing the driver to the FreeBSD codebase I have decided to take this chunk as is but it appears that it breaks cheap chinese SFP+ fiber optics modules that we all love. And while there's still a lot of places where we check for the vendor OUI, most of these checks are not necessary. Issue reported and fix tested by Tony Sarendal. Thanks! CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:27:54 Modified files: etc/examples : httpd.conf usr.sbin/httpd : httpd.conf.5 parse.y Added files: share/misc : mime.types Log message: Add a generic system-wide /usr/share/misc/mime.types file that can be included in httpd.conf. httpd(8) now supports both mime.types flavours with or without semicolon at the end of the line (nginx- or apache-style). Discussed with many, with input from halex@ OK halex@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/25 08:29:18 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify rm_from_pkg_scripts(); minus ten lines; no functional change; ok ajacoutot@. For non-trivial automated text editing in sh(1), thou shalt use sed(1). CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:29:49 Modified files: share/misc : Makefile Log message: Previosuly forgot the Makefile bit: add mime.types CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/25 08:31:22 Modified files: app/cwm : calmwm.h group.c xutil.c Log message: Since the flatting out of sc->group_names is only for setting NET_DESKTOP_NAMES, merge the helper into xu_ewmh_net_desktop_names, where we actually set the property. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:36:10 Modified files: sbin/iked : dh.c iked.conf.5 parse.y Log message: Add support for DH groups 27-30 using the Brainpool curves which have previously been added to LibreSSL's libcrypto. ok markus@ mikeb@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:42:23 Modified files: sbin/isakmpd : dh.c dh.h Log message: Sync dh.[ch] from iked. The files are identical, so any change in either iked or isakmpd should be synced to the other daemon. The previous changes from iked include: plug two memory leaks, verify EC points and add the Brainpool curves. All tests in regress/sbin/isakmpd/dh passed OKAY. ok markus@ mikeb@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/25 08:46:08 Modified files: share/man/man4 : vmwpvs.4 Log message: add an example vmx config line ok dlg@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 09:15:29 Modified files: graphics/sxiv : Makefile distinfo Log message: switch to GH_* variables ok chrisz@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 09:17:24 Modified files: devel/py-liblarch: Makefile distinfo Log message: switch to GH_* variables ok chrisz@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/25 09:20:19 Modified files: sysutils/findlib: Makefile distinfo sysutils/findlib/pkg: PFRAG.native PLIST Added files: sysutils/findlib/patches: patch-src_bytes_Makefile sysutils/findlib/pkg: PFRAG.dynlink-native Removed files: sysutils/findlib/patches: patch-Makefile patch-configure patch-src_findlib_Makefile Log message: Upgrade findlib to 1.5.2. * Don't use MODULES = lang/ocaml, because with 4.02 we will need to build findlib without camlp4, which will depend on findlib. * Remove patches accepted upstream. * Add one patch from upstream to fix building without ocamlfind in path yet and respecting PREFIX. OK avsm@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/25 09:36:00 Modified files: usr.bin/ftp : fetch.c Log message: you broke the ramdisk builds... CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 09:39:38 Modified files: geo/osm-gps-map: Makefile Log message: another switch to GH_* vars CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 10:15:23 Modified files: graphics/opencolorio: Makefile distinfo Log message: use GH_* vars. ok pascal@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 10:18:07 Modified files: graphics/openimageio: Makefile distinfo Log message: use GH_* vars. ok pascal@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 10:27:01 Modified files: security/libtasn1: Makefile distinfo security/libtasn1/pkg: PLIST Log message: Update to libtasn1-4.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 10:27:25 Modified files: security/libgcrypt: Makefile distinfo Log message: Update to libgcrypt-1.6.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 10:27:57 Modified files: security/gnutls: Makefile distinfo security/gnutls/patches: patch-lib_x509_rfc2818_hostname_c Added files: security/gnutls/patches: patch-src_libopts_autoopts_h Log message: Update to gnutls-3.2.17. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 11:55:27 Modified files: regress/usr.sbin/syslogd: Client.pm Server.pm args-socket.pl funcs.pl Added files: regress/usr.sbin/syslogd: args-client-udp6-nodns.pl args-client-udp6.pl args-localhost.pl args-maxhostlen.pl args-maxloghostlen.pl args-maxportlen.pl args-server-udp4.pl args-server-udp6.pl Log message: Add tests for syslogd sending and receiving over IPv6 sockets. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 12:05:30 Modified files: usr.sbin/syslogd: privsep.c syslogd.c ttymsg.c Log message: Fix the gcc compiler warnings "comparison between signed and unsigned". Some checks got stricter. The (size_t) cast is only done, if the argument is not negative. OK henning@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 12:19:18 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Allow to restrict syslogd to a protocol family with -4 and -6 command line switches. If the log server is an FQDN, DNS chooses wether to take the IPv4 or IPv6 route. Allow to prefix the log host with udp4:// or udp6:// to choose a protocol. OK henning@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 12:50:22 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Cope with some weird rc.conf.local file like "foobar" in pkg_scripts while "foobar_flags" is set to "NO"... Reparse deamon_flags at the end of add_flags() since they may have been modified by the function. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 13:01:26 Modified files: usr.sbin/rcctl : rcctl.sh Log message: For functions that take args, return immediately if no args is passed. Add/drop missing/unused local variables. no functionnal change CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/25 13:14:54 Modified files: app : Makefile Log message: Unlink xfs from the build. no objections from at least krw@, ajacoutot@, dcoppa@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/08/25 13:15:42 Modified files: etc/mtree : BSD.x11.dist Log message: No more /etc/X11/fs CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/25 13:16:37 Modified files: distrib/sets/lists/xbase: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus mi distrib/sets/lists/xetc: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 13:19:09 Modified files: print/poppler-data: Makefile distinfo print/poppler-data/pkg: PLIST Log message: Update to poppler-data-0.4.7. ok kili@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 13:19:42 Modified files: print/poppler : Makefile distinfo print/poppler/patches: patch-aclocal_m4 Log message: Update to poppler-0.26.4. ok kili@ (maintainer) CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 13:19:54 src/regress/sbin/iked Update of /cvs/src/regress/sbin/iked In directory cvs.openbsd.org:/tmp/cvs-serv19644/iked Log Message: Directory /cvs/src/regress/sbin/iked added to the repository CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 13:20:04 src/regress/sbin/iked/dh Update of /cvs/src/regress/sbin/iked/dh In directory cvs.openbsd.org:/tmp/cvs-serv8551/iked/dh Log Message: Directory /cvs/src/regress/sbin/iked/dh added to the repository CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 13:22:20 Added files: regress/sbin/iked: Makefile regress/sbin/iked/dh: Makefile dhtest.c Log message: Inspired by the previous brainpool addition, copy isakmpd's dh test to iked. Both daemons share the same dh implementation, but this makes it easier to test iked directly. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 13:32:29 Added files: regress/usr.sbin/syslogd: args-localhost-only4.pl args-localhost-only6.pl args-localhost-proto-udp4.pl args-localhost-proto-udp6.pl args-only4.pl args-only6.pl args-proto-invalid.pl args-proto-udp.pl args-proto-udp4-host6.pl args-proto-udp4-only6.pl args-proto-udp4.pl args-proto-udp6-host4.pl args-proto-udp6-only4.pl args-proto-udp6.pl Log message: Add tests where the IP address family has been chosen by -4 or -6 command line switch and udp4:// or udp6:// loghost prefix. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/25 14:15:28 Modified files: graphics/py-Pillow: Makefile distinfo graphics/py-Pillow/patches: patch-setup_py graphics/py-Pillow/pkg: PLIST-main Removed files: graphics/py-Pillow/patches: patch-Scripts_player_py Log message: Update to py-Pillow 2.5.3. https://pypi.python.org/pypi/Pillow/2.5.3 2.5.2 fixes CVE-2014-3589 and 2.5.3 fixes CVE-2014-3598. Went in a bulk build without fallout, ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 14:19:14 Modified files: usr.sbin/syslogd: privsep.c Log message: Call check_tty_name() and check_log_name() with the string size and don't access memory beyond. Make sure that the complete string "/dev/null" can be copied. OK henning@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 14:25:46 Modified files: usr.sbin/syslogd: syslog.conf.5 syslogd.8 Log message: Document the IPv4/IPv6 command line switches and protocol loghost prefixes. OK jmc@ henning@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 14:39:09 Modified files: x11/gnome/grilo-plugins: Makefile distinfo x11/gnome/grilo-plugins/pkg: PLIST Log message: update to grilo-plugins-0.2.13 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 15:06:46 Modified files: usr.sbin/rcctl : rcctl.sh Log message: rc.d scripts are shell scripts and need to be sourced in svc_get_flags(). It's the only way to get daemon_flags in case it contains line continuation... We only need to do that for enable package scripts. original idea from Sebastien Marie discussed with, input from and ok schwarze@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/25 15:34:34 Modified files: usr.sbin/rcctl : rcctl.sh Log message: get rid of the tempfile in svc_default_enabled_flags(); feedback and ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 16:05:14 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_openbsdservice_py Log message: rcctl(8) implementation committed upstream. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/25 17:15:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Base system special services have no flags, so move the test for them up front in add_flags(). This avoids unnecessary work, avoids setting bogus variables, and reduces the risk of screwing up things when changing the code. No functional change right now. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 01:03:31 Modified files: sysutils/ruby-facter: Makefile distinfo sysutils/ruby-facter/pkg: PLIST Removed files: sysutils/ruby-facter/patches: patch-lib_facter_partitions_rb patch-lib_facter_util_partitions_openbsd_rb patch-lib_facter_util_partitions_rb patch-lib_facter_virtual_rb Log message: - update to facter-2.2.0 * https://docs.puppetlabs.com/facter/2.2/release_notes.html CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 01:18:13 Modified files: graphics/colord: Makefile distinfo graphics/colord/patches: patch-configure patch-lib_colord_cd-icc-store_c patch-src_cd-main_c Log message: Update to colord-1.2.2. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 01:38:36 Modified files: sysutils/ruby-facter: Makefile Added files: sysutils/ruby-facter/patches: patch-lib_facter_processors_os_rb Log message: implement processors['speed'] CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 02:03:33 Modified files: security/sslScanner: Makefile Log message: drop MASTER_SITES. it's already set with GH_* CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 03:29:51 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Log message: only do a restart if the service supports it; resort to stop/start otherwise CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/26 05:01:22 Modified files: sys/dev/pci : if_bge.c if_em.c if_ix.c Log message: Revert part of the if_rxr diff that incorrectly moves RX ring tail index update code from the buf_get success path to the do it all the time code path. Tested by millert; ok dlg, deraadt CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 05:13:58 Modified files: usr.bin/mandoc : cgi.c msec.in Log message: Unify console and CGI section titles, bringing them closer to groff, is an attempt to reduce confusion for users switching between media and between different operating systems. Not using the groff title for section 4 is intentional, it is just too awful ("Kernel Interfaces Manual"), and the difference from sections 2 and 9 would be too hard to see. Positive feedback from at least deraadt@ millert@ bluhm@ jca@. Previously also agreed with the general direction: jmc@ Nick@. The title for 3p was polished by bluhm@. The existing mismatches were originally noticed by jsg@. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 05:32:57 Modified files: regress/usr.bin/mandoc/char/N: basic.out_ascii regress/usr.bin/mandoc/char/accent: combine.out_utf8 nocombine.out_ascii nocombine.out_utf8 utf8only.out_utf8 regress/usr.bin/mandoc/char/bar: man.out_ascii mdoc.out_ascii regress/usr.bin/mandoc/char/hyphen: man.out_ascii mdoc.out_ascii regress/usr.bin/mandoc/char/space: break.out_ascii eos-man.out_ascii eos.out_ascii esct-man.out_ascii esct-mdoc.out_ascii leading-man.out_ascii leading-mdoc.out_ascii multiple.out_ascii nobreak.out_ascii tab-man.out_ascii tab.out_ascii zerowidth.out_ascii regress/usr.bin/mandoc/char/unicode: man.out_utf8 mdoc.out_utf8 regress/usr.bin/mandoc/man/B: args.out_ascii regress/usr.bin/mandoc/man/BI: literal.out_ascii regress/usr.bin/mandoc/man/EX: args.out_ascii nested.out_ascii spacing.out_ascii regress/usr.bin/mandoc/man/HP: break.out_ascii literal.out_ascii macrotag.out_ascii manyargs.out_ascii spacing.out_ascii regress/usr.bin/mandoc/man/IP: empty.out_ascii literal.out_ascii longhead.out_ascii manyargs.out_ascii spacing.out_ascii width.out_ascii regress/usr.bin/mandoc/man/PD: args.out_ascii spacing.out_ascii regress/usr.bin/mandoc/man/PP: args.out_ascii empty.out_ascii regress/usr.bin/mandoc/man/RS: breaking.out_ascii broken.out_ascii empty.out_ascii literal.out_ascii lonelyRE.out_ascii nested.out_ascii noRE.out_ascii width.out_ascii regress/usr.bin/mandoc/man/SH: broken.out_ascii broken_eline.out_ascii empty_before.out_ascii noarg.out_ascii regress/usr.bin/mandoc/man/TH: baddate.out_ascii case.out_ascii emptydate.out_ascii isodate.out_ascii mdocdate.out_ascii nobody.out_ascii onlyyear.out_ascii regress/usr.bin/mandoc/man/TP: badarg.out_ascii double.out_ascii eof.out_ascii literal.out_ascii longhead.out_ascii macrotag.out_ascii manyargs.out_ascii sameline.out_ascii width.out_ascii regress/usr.bin/mandoc/man/TS: vspace.out_ascii regress/usr.bin/mandoc/man/UR: args.out_ascii noUE.out_ascii regress/usr.bin/mandoc/man/blank: afterSH.out_ascii afterSS.out_ascii line.out_ascii regress/usr.bin/mandoc/man/nf: args.out_ascii dupe.out_ascii indent.out_ascii userdef.out_ascii vert.out_ascii regress/usr.bin/mandoc/mdoc/Ad: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/An: break.out_ascii regress/usr.bin/mandoc/mdoc/Ap: eos.out_ascii middle.out_ascii regress/usr.bin/mandoc/mdoc/Aq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Ar: font.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/At: invalid.out_ascii regress/usr.bin/mandoc/mdoc/Bd: badargs.out_ascii blank.out_ascii break.out_ascii broken.out_ascii centered.out_ascii empty.out_ascii nested.out_ascii offset-empty.out_ascii spacing.out_ascii unclosed.out_ascii regress/usr.bin/mandoc/mdoc/Bf: badargs.out_ascii break.out_ascii broken.out_ascii multiargs.out_ascii nest.out_ascii regress/usr.bin/mandoc/mdoc/Bk: badarg.out_ascii break.out_ascii inputlines.out_ascii lines.out_ascii synopsis.out_ascii regress/usr.bin/mandoc/mdoc/Bl: badargs.out_ascii bareIt.out_ascii bareTa.out_ascii break.out_ascii broken.out_ascii bullet.out_ascii column.out_ascii dash.out_ascii diag.out_ascii empty.out_ascii emptyhead.out_ascii emptyitem.out_ascii emptytag.out_ascii enum.out_ascii extend.out_ascii hang.out_ascii inset.out_ascii item.out_ascii multitag.out_ascii multitype.out_ascii nested.out_ascii noIt.out_ascii notype.out_ascii ohang.out_ascii tag.out_ascii unclosed.out_ascii regress/usr.bin/mandoc/mdoc/Brq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Bx: args.out_ascii regress/usr.bin/mandoc/mdoc/Cd: eos.out_ascii font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Cm: basic.out_ascii font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/D1: spacing.out_ascii regress/usr.bin/mandoc/mdoc/Dd: badarg.out_ascii dupe.out_ascii late.out_ascii manarg.out_ascii order.out_ascii regress/usr.bin/mandoc/mdoc/Dl: spacing.out_ascii regress/usr.bin/mandoc/mdoc/Dq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Dt: case.out_ascii dupe.out_ascii nobody.out_ascii order.out_ascii regress/usr.bin/mandoc/mdoc/Dv: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Em: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Eo: empty.out_ascii obsolete.out_ascii regress/usr.bin/mandoc/mdoc/Er: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ev: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ex: args.out_ascii noname.out_ascii nostd.out_ascii regress/usr.bin/mandoc/mdoc/Fd: break.out_ascii eos.out_ascii font.out_ascii regress/usr.bin/mandoc/mdoc/Fl: font.out_ascii multiarg.out_ascii noarg.out_ascii parsed.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Fo: basic.out_ascii break.out_ascii eos.out_ascii font.out_ascii noarg.out_ascii obsolete.out_ascii section.out_ascii regress/usr.bin/mandoc/mdoc/Ft: font.out_ascii regress/usr.bin/mandoc/mdoc/Ic: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/In: break.out_ascii eos.out_ascii font.out_ascii regress/usr.bin/mandoc/mdoc/Lb: badargs.out_ascii break.out_ascii eos.out_ascii regress/usr.bin/mandoc/mdoc/Li: font.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Lk: font.out_ascii link.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ms: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Mt: font.out_ascii simple.out_ascii regress/usr.bin/mandoc/mdoc/Nd: hyph.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Nm: badNAME.out_ascii badNAMEuse.out_ascii break.out_ascii empty.out_ascii emptyNAME.out_ascii emptyNAMEuse.out_ascii font.out_ascii long.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/No: punct.out_ascii spacing.out_ascii regress/usr.bin/mandoc/mdoc/Ns: position.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Oo: punct.out_ascii regress/usr.bin/mandoc/mdoc/Op: broken.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Os: dupe.out_ascii late.out_ascii missing.out_ascii regress/usr.bin/mandoc/mdoc/Ox: keep.out_ascii regress/usr.bin/mandoc/mdoc/Pa: font.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Pf: spacing.out_ascii regress/usr.bin/mandoc/mdoc/Pp: arg.out_ascii regress/usr.bin/mandoc/mdoc/Qq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Rs: allch.out_ascii break.out_ascii three_authors.out_ascii regress/usr.bin/mandoc/mdoc/Rv: args.out_ascii noname.out_ascii nostd.out_ascii regress/usr.bin/mandoc/mdoc/Sh: badNAME.out_ascii before.out_ascii emptyNAME.out_ascii order.out_ascii subbefore.out_ascii regress/usr.bin/mandoc/mdoc/Sm: badarg.out_ascii noarg.out_ascii scope.out_ascii spacing-No.out_ascii spacing-Op.out_ascii regress/usr.bin/mandoc/mdoc/Sq: empty.out_ascii regress/usr.bin/mandoc/mdoc/St: badargs.out_ascii regress/usr.bin/mandoc/mdoc/Sx: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Sy: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Tn: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ux: eos.out_ascii spacing.out_ascii regress/usr.bin/mandoc/mdoc/Va: basic.out_ascii font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Vt: child.out_ascii font.out_ascii noarg.out_ascii spacing.out_ascii regress/usr.bin/mandoc/mdoc/Xr: args.out_ascii regress/usr.bin/mandoc/mdoc/blank: comment.out_ascii line.out_ascii list.out_ascii regress/usr.bin/mandoc/roff/args: man.out_ascii mdoc.out_ascii roff.out_ascii regress/usr.bin/mandoc/roff/br: args.out_ascii regress/usr.bin/mandoc/roff/cc: basic.out_ascii regress/usr.bin/mandoc/roff/cond: before-Dd.out_ascii close.out_ascii ie.out_ascii if.out_ascii numeric.out_ascii strcmp.out_ascii regress/usr.bin/mandoc/roff/de: Dd.out_ascii Dd.out_ascii_opt TH.out_ascii TH.out_ascii_opt append.out_ascii escname.out_ascii indir.out_ascii regress/usr.bin/mandoc/roff/ds: append.out_ascii escname.out_ascii nested.out_ascii quoting.out_ascii regress/usr.bin/mandoc/roff/esc: B.out_ascii c.out_ascii f.out_ascii h.out_ascii ignore.out_ascii multi.out_ascii one.out_ascii two.out_ascii w.out_ascii z.out_ascii regress/usr.bin/mandoc/roff/ft: badargs.out_ascii regress/usr.bin/mandoc/roff/ig: basic.out_ascii regress/usr.bin/mandoc/roff/it: badarg.out_ascii double.out_ascii text.out_ascii regress/usr.bin/mandoc/roff/ll: basic.out_ascii regress/usr.bin/mandoc/roff/na: args.out_ascii regress/usr.bin/mandoc/roff/nr: argc.out_ascii escname.out_ascii eval.out_ascii int.out_ascii predef.out_ascii rr.out_ascii regress/usr.bin/mandoc/roff/ps: ignore.out_ascii regress/usr.bin/mandoc/roff/rm: basic.out_ascii regress/usr.bin/mandoc/roff/scale: horiz.out_ascii regress/usr.bin/mandoc/roff/sp: badargs-man.out_ascii badargs-mdoc.out_ascii negative.out_ascii regress/usr.bin/mandoc/roff/string: escape.out_ascii infinite.out_ascii name.out_ascii zerolength.out_ascii regress/usr.bin/mandoc/tbl: center.out_ascii numbers.out_ascii span.out_ascii vert.out_ascii Log message: inevitable churn caused by the section title change CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 05:42:27 Modified files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Log message: submitted upstream CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 06:22:04 Modified files: sysutils/salt : Makefile sysutils/salt/pkg: PLIST Added files: sysutils/salt/files: openbsd_sysctl.py Log message: Add a module to handle sysctl(8) values. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/26 06:34:24 Modified files: usr.sbin/sensorsd: sensorsd.8 Log message: Don't single out ami(4) here; other RAID drivers support logical drive reporting too. OK jsing@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/26 08:16:28 Modified files: net/arpd : Makefile news/plor : Makefile sysutils/pscpug: Makefile Log message: Drop USE_GROFF since groff and mandoc produce identical output. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/26 09:09:26 Modified files: sys/net : route.c sys/netinet : if_ether.c Log message: Revert the addition of broadcast addresses, it apparently also corrupts the tree. Found by millert@. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 09:51:14 Modified files: security/scanlogd: Makefile security/scanlogd/pkg: PLIST Added files: security/scanlogd/pkg: scanlogd.rc Log message: add rc script for scanlogd OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 10:28:43 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_useradd_py Log message: Fix the useradd module to work with OpenBSD. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:33:26 src/usr.bin/openssl Update of /cvs/src/usr.bin/openssl In directory cvs.openbsd.org:/tmp/cvs-serv19925/openssl Log Message: Directory /cvs/src/usr.bin/openssl added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:47:25 Modified files: usr.bin : Makefile usr.sbin : Makefile usr.sbin/ikectl: ikeca.c usr.sbin/pkg_add/OpenBSD: Paths.pm Added files: usr.bin/openssl: Makefile apps.c apps.h asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendh.c gendsa.c genpkey.c genrsa.c nseq.c ocsp.c openssl.1 openssl.c passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c progs.h rand.c req.c rsa.c rsautl.c s_apps.h s_cb.c s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c spkac.c testdsa.h testrsa.h timeouts.h ts.c verify.c version.c x509.c Removed files: usr.sbin/openssl: Makefile openssl.1 lib/libssl/src/apps: apps.c apps.h asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendh.c gendsa.c genpkey.c genrsa.c nseq.c ocsp.c openssl.c passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c progs.h rand.c req.c rsa.c rsautl.c s_apps.h s_cb.c s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c spkac.c testdsa.h testrsa.h timeouts.h ts.c verify.c version.c x509.c Log message: Move openssl(1) from /usr/sbin/openssl to /usr/bin/openssl, since it is not a system/superuser binary. At the same time, move the source code from its current lib/libssl/src/apps location to a more appropriate home under usr.bin/openssl. ok deraadt@ miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:47:44 src/regress/usr.bin/openssl Update of /cvs/src/regress/usr.bin/openssl In directory cvs.openbsd.org:/tmp/cvs-serv13655/openssl Log Message: Directory /cvs/src/regress/usr.bin/openssl added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:50:07 Modified files: regress/usr.bin: Makefile regress/usr.sbin: Makefile regress/lib/libcrypto/sha2: Makefile Added files: regress/usr.bin/openssl: Makefile README openssl.cnf test_client.sh test_server.sh testdsa.sh testenc.sh testrsa.sh Removed files: regress/usr.sbin/openssl: Makefile README openssl.cnf test_client.sh test_server.sh testdsa.sh testenc.sh testrsa.sh Log message: Update regress to follow openssl(1) move. CVSROOT: /cvs Module name: www Changes by: jsing@cvs.openbsd.org 2014/08/26 12:06:56 Modified files: faq : current.html Log message: Document the migration of openssl(1) from /usr/sbin to /usr/bin. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 12:38:49 Log message: Import mapcache 1.2.1. MapCache is a WMTS/TMS server that implements tile caching to speed up access to WMS layers. The primary objectives are to be fast and easily deployable, while offering the essential features (and more!) expected from a tile caching solution. ok ajacoutot@ sthen@ Status: Vendor Tag: landry Release Tags: landry_20140826 N ports/geo/mapcache/Makefile N ports/geo/mapcache/distinfo N ports/geo/mapcache/patches/patch-util_mapcache_seed_c N ports/geo/mapcache/pkg/DESCR N ports/geo/mapcache/pkg/PLIST N ports/geo/mapcache/pkg/mapcache.rc N ports/geo/mapcache/pkg/README No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 12:47:04 Log message: Import mapproxy 1.7.0. MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client. It supports WMS-C, TMS and WMTS protocols. MapProxy is a tile cache, but also offers many new and innovative features like full support for WMS clients. ok ajacoutot@ sthen@ Status: Vendor Tag: landry Release Tags: landry_20140826 N ports/geo/mapproxy/Makefile N ports/geo/mapproxy/distinfo N ports/geo/mapproxy/pkg/PLIST N ports/geo/mapproxy/pkg/DESCR N ports/geo/mapproxy/patches/patch-setup_cfg N ports/geo/mapproxy/patches/patch-setup_py No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 12:47:52 Modified files: geo : Makefile Log message: +mapcache,mapproxy CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:00:31 Modified files: geo/geos : Makefile distinfo geo/geos/patches: patch-include_geos_platform_h_in patch-src_Makefile_in geo/geos/pkg : PLIST Log message: Update to geos 3.4.2. patch-include_geos_platform_h_in merged upstream, will disappear in next update. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:02:03 Modified files: geo/spatialite/libspatialite: Makefile distinfo geo/spatialite/libspatialite/patches: patch-src_Makefile_in geo/spatialite/libspatialite/pkg: PLIST Log message: Update to libspatialite 4.2.0. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:02:27 Modified files: geo/spatialite/freexl: Makefile distinfo geo/spatialite/freexl/pkg: PLIST Log message: update to freexl-1.0.0g CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:02:54 Modified files: geo/spatialite/gui: Makefile distinfo Log message: update to spatialite_gui 1.7.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:03:35 Modified files: geo/spatialite/librasterlite: Makefile distinfo Log message: update to librasterlite 1.1g CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:04:02 Modified files: geo/spatialite/tools: Makefile distinfo geo/spatialite/tools/pkg: PLIST Log message: update to spatialite-tools 4.2.0 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/26 13:16:53 Modified files: security/aide : Makefile Removed files: security/aide/patches: patch-config_h_in Log message: * Fix the build after OpenBSD has gained blkcnt_t. * Bump revision because the type of blkcnt_t has changed. * Drop unneeded USE_GROFF. ok benoit@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/26 13:17:46 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/08/26 13:33:48 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi etc : Makefile changelist newsyslog.conf rc rc.conf etc/mtree : 4.4BSD.dist share/man/man7 : hier.7 share/man/man8 : intro.8 ssl.8 Removed files: etc/rc.d : nginx Log message: usr.sbin CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/08/26 13:35:34 Modified files: usr.sbin : Makefile Removed files: usr.sbin/nginx : CHANGES CHANGES.ru LICENSE Makefile.bsd-wrapper README README.OpenBSD configure usr.sbin/nginx/auto: define endianness feature have have_headers headers include init install make modules nohave options sources stubs summary unix usr.sbin/nginx/auto/cc: acc bcc ccc clang conf gcc icc msvc name owc sunc usr.sbin/nginx/auto/lib: conf make test usr.sbin/nginx/auto/lib/geoip: conf usr.sbin/nginx/auto/lib/google-perftools: conf usr.sbin/nginx/auto/lib/libatomic: conf make usr.sbin/nginx/auto/lib/libgd: conf usr.sbin/nginx/auto/lib/libxslt: conf usr.sbin/nginx/auto/lib/md5: conf make makefile.bcc makefile.msvc makefile.owc usr.sbin/nginx/auto/lib/openssl: conf make makefile.bcc makefile.msvc usr.sbin/nginx/auto/lib/pcre: conf make makefile.bcc makefile.msvc makefile.owc usr.sbin/nginx/auto/lib/perl: conf make usr.sbin/nginx/auto/lib/sha1: conf make makefile.bcc makefile.msvc makefile.owc usr.sbin/nginx/auto/lib/zlib: conf make makefile.bcc makefile.msvc makefile.owc patch.zlib.h usr.sbin/nginx/auto/os: conf darwin freebsd linux solaris win32 usr.sbin/nginx/auto/types: sizeof typedef uintptr_t value usr.sbin/nginx/conf: fastcgi.conf fastcgi_params koi-utf koi-win mime.types nginx.conf scgi_params uwsgi_params win-utf usr.sbin/nginx/contrib: README geo2nginx.pl usr.sbin/nginx/contrib/unicode2nginx: koi-utf unicode-to-nginx.pl win-utf usr.sbin/nginx/html: 50x.html index.html usr.sbin/nginx/man: nginx.8 nginx.conf.5 usr.sbin/nginx/src/core: nginx.c nginx.h ngx_array.c ngx_array.h ngx_buf.c ngx_buf.h ngx_conf_file.c ngx_conf_file.h ngx_config.h ngx_connection.c ngx_connection.h ngx_core.h ngx_cpuinfo.c ngx_crc.h ngx_crc32.c ngx_crc32.h ngx_crypt.c ngx_crypt.h ngx_cycle.c ngx_cycle.h ngx_file.c ngx_file.h ngx_hash.c ngx_hash.h ngx_inet.c ngx_inet.h ngx_list.c ngx_list.h ngx_log.c ngx_log.h ngx_md5.c ngx_md5.h ngx_murmurhash.c ngx_murmurhash.h ngx_open_file_cache.c ngx_open_file_cache.h ngx_output_chain.c ngx_palloc.c ngx_palloc.h ngx_parse.c ngx_parse.h ngx_proxy_protocol.c ngx_proxy_protocol.h ngx_queue.c ngx_queue.h ngx_radix_tree.c ngx_radix_tree.h ngx_rbtree.c ngx_rbtree.h ngx_regex.c ngx_regex.h ngx_resolver.c ngx_resolver.h ngx_sha1.h ngx_shmtx.c ngx_shmtx.h ngx_slab.c ngx_slab.h ngx_spinlock.c ngx_string.c ngx_string.h ngx_syslog.c ngx_syslog.h ngx_times.c ngx_times.h usr.sbin/nginx/src/event: ngx_event.c ngx_event.h ngx_event_accept.c ngx_event_busy_lock.c ngx_event_busy_lock.h ngx_event_connect.c ngx_event_connect.h ngx_event_mutex.c ngx_event_openssl.c ngx_event_openssl.h ngx_event_openssl_stapling.c ngx_event_pipe.c ngx_event_pipe.h ngx_event_posted.c ngx_event_posted.h ngx_event_timer.c ngx_event_timer.h usr.sbin/nginx/src/event/modules: ngx_aio_module.c ngx_devpoll_module.c ngx_epoll_module.c ngx_eventport_module.c ngx_kqueue_module.c ngx_poll_module.c ngx_rtsig_module.c ngx_select_module.c ngx_win32_select_module.c usr.sbin/nginx/src/http: ngx_http.c ngx_http.h ngx_http_busy_lock.c ngx_http_busy_lock.h ngx_http_cache.h ngx_http_config.h ngx_http_copy_filter_module.c ngx_http_core_module.c ngx_http_core_module.h ngx_http_file_cache.c ngx_http_header_filter_module.c ngx_http_parse.c ngx_http_parse_time.c ngx_http_postpone_filter_module.c ngx_http_request.c ngx_http_request.h ngx_http_request_body.c ngx_http_script.c ngx_http_script.h ngx_http_spdy.c ngx_http_spdy.h ngx_http_spdy_filter_module.c ngx_http_spdy_module.c ngx_http_spdy_module.h ngx_http_special_response.c ngx_http_upstream.c ngx_http_upstream.h ngx_http_upstream_round_robin.c ngx_http_upstream_round_robin.h ngx_http_variables.c ngx_http_variables.h ngx_http_write_filter_module.c usr.sbin/nginx/src/http/modules: ngx_http_access_module.c ngx_http_addition_filter_module.c ngx_http_auth_basic_module.c ngx_http_auth_request_module.c ngx_http_autoindex_module.c ngx_http_browser_module.c ngx_http_charset_filter_module.c ngx_http_chunked_filter_module.c ngx_http_dav_module.c ngx_http_degradation_module.c ngx_http_empty_gif_module.c ngx_http_fastcgi_module.c ngx_http_flv_module.c ngx_http_geo_module.c ngx_http_geoip_module.c ngx_http_gunzip_filter_module.c ngx_http_gzip_filter_module.c ngx_http_gzip_static_module.c ngx_http_headers_filter_module.c ngx_http_image_filter_module.c ngx_http_index_module.c ngx_http_limit_conn_module.c ngx_http_limit_req_module.c ngx_http_log_module.c ngx_http_map_module.c ngx_http_memcached_module.c ngx_http_mp4_module.c ngx_http_not_modified_filter_module.c ngx_http_proxy_module.c ngx_http_random_index_module.c ngx_http_range_filter_module.c ngx_http_realip_module.c ngx_http_referer_module.c ngx_http_rewrite_module.c ngx_http_scgi_module.c ngx_http_secure_link_module.c ngx_http_split_clients_module.c ngx_http_ssi_filter_module.c ngx_http_ssi_filter_module.h ngx_http_ssl_module.c ngx_http_ssl_module.h ngx_http_static_module.c ngx_http_stub_status_module.c ngx_http_sub_filter_module.c ngx_http_upstream_ip_hash_module.c ngx_http_upstream_keepalive_module.c ngx_http_upstream_least_conn_module.c ngx_http_userid_filter_module.c ngx_http_uwsgi_module.c ngx_http_xslt_filter_module.c usr.sbin/nginx/src/http/modules/perl: Makefile.PL nginx.pm nginx.xs ngx_http_perl_module.c ngx_http_perl_module.h typemap usr.sbin/nginx/src/mail: ngx_mail.c ngx_mail.h ngx_mail_auth_http_module.c ngx_mail_core_module.c ngx_mail_handler.c ngx_mail_imap_handler.c ngx_mail_imap_module.c ngx_mail_imap_module.h ngx_mail_parse.c ngx_mail_pop3_handler.c ngx_mail_pop3_module.c ngx_mail_pop3_module.h ngx_mail_proxy_module.c ngx_mail_smtp_handler.c ngx_mail_smtp_module.c ngx_mail_smtp_module.h ngx_mail_ssl_module.c ngx_mail_ssl_module.h usr.sbin/nginx/src/misc: ngx_cpp_test_module.cpp ngx_google_perftools_module.c usr.sbin/nginx/src/os/unix: ngx_aio_read.c ngx_aio_read_chain.c ngx_aio_write.c ngx_aio_write_chain.c ngx_alloc.c ngx_alloc.h ngx_atomic.h ngx_channel.c ngx_channel.h ngx_daemon.c ngx_darwin.h ngx_darwin_config.h ngx_darwin_init.c ngx_darwin_sendfile_chain.c ngx_errno.c ngx_errno.h ngx_file_aio_read.c ngx_files.c ngx_files.h ngx_freebsd.h ngx_freebsd_config.h ngx_freebsd_init.c ngx_freebsd_rfork_thread.c ngx_freebsd_rfork_thread.h ngx_freebsd_sendfile_chain.c ngx_gcc_atomic_amd64.h ngx_gcc_atomic_ppc.h ngx_gcc_atomic_sparc64.h ngx_gcc_atomic_x86.h ngx_linux.h ngx_linux_aio_read.c ngx_linux_config.h ngx_linux_init.c ngx_linux_sendfile_chain.c ngx_os.h ngx_posix_config.h ngx_posix_init.c ngx_process.c ngx_process.h ngx_process_cycle.c ngx_process_cycle.h ngx_pthread_thread.c ngx_readv_chain.c ngx_recv.c ngx_send.c ngx_setaffinity.c ngx_setaffinity.h ngx_setproctitle.c ngx_setproctitle.h ngx_shmem.c ngx_shmem.h ngx_socket.c ngx_socket.h ngx_solaris.h ngx_solaris_config.h ngx_solaris_init.c ngx_solaris_sendfilev_chain.c ngx_sunpro_amd64.il ngx_sunpro_atomic_sparc64.h ngx_sunpro_sparc64.il ngx_sunpro_x86.il ngx_thread.h ngx_time.c ngx_time.h ngx_udp_recv.c ngx_user.c ngx_user.h ngx_writev_chain.c rfork_thread.S usr.sbin/nginx/src/pcre: LICENCE config.h pcre.h pcre_chartables.c pcre_compile.c pcre_exec.c pcre_fullinfo.c pcre_globals.c pcre_internal.h pcre_newline.c pcre_ord2utf8.c pcre_study.c pcre_tables.c pcre_ucd.c pcre_valid_utf8.c pcre_xclass.c ucp.h Log message: remove nginx from the base system in favor of OpenBSD's own httpd(8) CVSROOT: /cvs Module name: www Changes by: robert@cvs.openbsd.org 2014/08/26 13:42:35 Modified files: faq : current.html Log message: add notes about nginx moving to ports CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/08/26 13:43:59 Modified files: www/nginx : Makefile Added files: www/nginx : distinfo www/nginx/patches: patch-conf_mime_types patch-conf_nginx_conf www/nginx/pkg : DESCR PFRAG.no-passenger PFRAG.passenger PLIST README nginx.rc Removed files: www/nginx : Makefile.inc www/nginx/devel: Makefile distinfo www/nginx/devel/patches: lua-lua-nginx-module_config patch-src_http_ngx_http_spdy_c www/nginx/devel/pkg: DESCR PLIST README enginx.rc www/nginx/stable: Makefile distinfo www/nginx/stable/patches: lua-lua-nginx-module_config www/nginx/stable/pkg: DESCR PFRAG.no-passenger PFRAG.passenger PLIST README enginx.rc Log message: - remove the devel nginx packages - apply chroot and other patches from the base system - update to 1.7.4 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/08/26 13:48:06 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Log message: add @pkgpaths CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 13:58:25 Modified files: sysutils/ruby-facter: Makefile sysutils/ruby-facter/patches: patch-lib_facter_processors_os_rb Log message: report a unit (MHz or GHz) for the processor speed CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/08/26 14:03:32 Modified files: usr.bin/htpasswd: htpasswd.1 usr.bin/mandoc : man.cgi.8 usr.bin/openssl: openssl.1 usr.sbin/slowcgi: slowcgi.8 Log message: remove nginx references CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/26 14:11:31 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/26 14:19:26 Modified files: . : Makefile distrib/miniroot: install.sub distrib/notes : m4.common distrib/sets : checkflist maketars distrib/sets/lists/base: mi distrib/sets/lists/etc: mi etc : Makefile Added files: distrib/sets : makeetcset Removed files: distrib/sets : makeflist Log message: Create etc set during 'make build' and embed it in base set to make it available during a regular install or upgrade so that it doesn't need to be independently fetched. Idea, directions and OK deraadt@ Feedback and Ok halex@ and aja@ CVSROOT: /cvs Module name: www Changes by: rpe@cvs.openbsd.org 2014/08/26 15:02:22 Modified files: faq : current.html Log message: Add move of openssl to TOC CVSROOT: /cvs Module name: www Changes by: rpe@cvs.openbsd.org 2014/08/26 15:16:10 Modified files: faq : current.html Log message: remove redundant entry about openssl move and revert TOC entry noted by dorian buettner at gmx.de, thanks CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 15:29:56 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Fist shot at fixing sysmerge(8) with etc-in-base; note that it's still in transition state and the utility will get a lot of revamping in the near future. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 15:31:03 Modified files: www/webkit : Makefile distinfo www/webkit/patches: patch-Source_WTF_wtf_Platform_h patch-Source_WTF_wtf_dtoa_utils_h Log message: Update to webkit-2.4.5. ok landry@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/26 15:36:44 Modified files: distrib/alpha/iso: Makefile distrib/amd64/iso: Makefile distrib/hppa/iso: Makefile distrib/i386/iso: Makefile distrib/macppc/iso: Makefile distrib/sgi/iso: Makefile distrib/sparc/iso: Makefile distrib/sparc64/iso: Makefile distrib/vax/iso: Makefile Log message: no more exposed etc set CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 15:41:43 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_useradd_py Log message: All patches have been pushed upstream. CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/26 15:44:29 Modified files: sys/netinet6 : in6.c in6.h nd6_rtr.c Log message: Do not hand-roll all routers link local address. pointed out & OK bluhm@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/26 15:48:08 Modified files: share/man/man8 : ssl.8 Log message: sort SEE ALSO; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/26 15:50:38 Modified files: usr.bin/htpasswd: htpasswd.1 Log message: fix SEE ALSO; CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 16:39:09 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify the function add_flags(). Do not validate input twice, scrap needless array, and avoid needless expensive function calls to svc_get_flags(), svc_default_enabled_flags(), _rc_parse_conf(), and resolve code duplication. No functional change. Feedback and OK ajacoutot@. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:01:52 Added files: devel/kdevplatform/patches: patch-plugins_filetemplates_CMakeLists_txt Log message: Fix missing UI files dependencies when building test program. Pure build file dependency patch, so no bump needed. Found by ajacoutot@ in a bulk build. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:08:45 Modified files: x11/kde4/libs : Tag: OPENBSD_5_5 Makefile Added files: x11/kde4/libs/patches: Tag: OPENBSD_5_5 patch-kdecore_auth_backends_polkit-1_Polkit1Backend_cpp Log message: Security fix for kdelibs 4.11 branch, CVE-2014-5033: The KAuth framework uses polkit-1 API which tries to authenticate using the requestors PID. This is prone to PID reuse race conditions. More details here: http://www.kde.org/info/security/advisory-20140730-1.txt okay jca@, "I trust you" naddy@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:14:27 Modified files: x11/kde4/libs : Makefile Added files: x11/kde4/libs/patches: patch-kdecore_auth_backends_polkit-1_Polkit1Backend_cpp Log message: Security fix for kdelibs 4.13 branch, CVE-2014-5033: The KAuth framework uses polkit-1 API which tries to authenticate using the requestors PID. This is prone to PID reuse race conditions. More details here: http://www.kde.org/info/security/advisory-20140730-1.txt CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:17:20 ports/x11/kde4/krfb/patches Update of /cvs/ports/x11/kde4/krfb/patches In directory cvs.openbsd.org:/tmp/cvs-serv9896/patches Log Message: Directory /cvs/ports/x11/kde4/krfb/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:22:02 Modified files: x11/kde4/krfb : Makefile Added files: x11/kde4/krfb/patches: patch-libvncserver_lzoconf_h patch-libvncserver_lzodefs_h patch-libvncserver_minilzo_c patch-libvncserver_minilzo_h Log message: Security fix for krfb 4.13 branch, CVE-2014-4607: krfb embeds libvncserver which embeds liblzo2, it contains various flaws that result in integer overflow problems. This commit actually updates bundled lzo library, as suggested by upstream. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:27:42 Modified files: x11/kde4/krfb : Tag: OPENBSD_5_5 Makefile Added files: x11/kde4/krfb/patches: Tag: OPENBSD_5_5 patch-libvncserver_lzoconf_h patch-libvncserver_lzodefs_h patch-libvncserver_minilzo_c patch-libvncserver_minilzo_h Log message: Security fix for krfb 4.11 branch, CVE-2014-4607: krfb embeds libvncserver which embeds liblzo2, it contains various flaws that result in integer overflow problems. This commit actually updates bundled lzo library, as suggested by upstream. testing and okay jca@, "I trust you" naddy@ CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/08/26 17:28:19 Modified files: faq : current.html Log message: Also remove the rc.d script for BIND. From Jiri B CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/26 17:55:28 Modified files: sys/dev/pci : if_vmx.c Log message: dont base the mru on the mtu. unconditionally make it what the hardware can do (9k). implement the rxr ioctl while here. ok jsg@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 18:06:08 Modified files: usr.bin/mandoc : Makefile apropos.1 cgi.c main.c mandoc.1 mansearch.c mansearch.h Added files: usr.bin/mandoc : man.1 Removed files: usr.bin/mandoc : apropos.c Log message: Add an implementation of man(1) into the /usr/bin/mandoc binary and provide a unified set of command line options for mandoc(1), man(1), apropos(1), and whatis(1), each option doing the same for all four. Not adding any completely new options, only extending exiting ones from one tool to the others. New options are: * apropos & whatis -acfkw (in the past, these were man(1) only) * apropos & whatis -a -IOTW (in the past, mandoc(1) only) * mandoc -ac (in the past, man(1) only) * man -IOTW (in the past, mandoc(1) only) Before we can decide whether or not we want to replace src/usr.bin/man with this implementation, considerable bugfixing, testing, and performance measurements are needed, which i'd rather do in the tree than outside. Note that these bugs only affect the new man(1) mode, existing mandoc(1), apropos(1), and whatis(1) is fine. The new functionality in mandoc(1), apropos(1), and whatis(1) is fully enabled. To play with the new man(1), you can try: # mv /usr/bin/man /usr/bin/oman # ln -s /usr/bin/mandoc /usr/bin/man Positive feedback about the general direction from sthen@ and jmc@, and deraadt@ is not against it. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/26 18:22:26 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: deprecate the "item offset" handling. nothing uses it, so we can cut it out of the code to simplify things. ok mikeb@ CVSROOT: /cvs Module name: ports Changes by: gsoares@cvs.openbsd.org 2014/08/26 19:36:16 Modified files: sysutils/ggrep : Makefile distinfo sysutils/ggrep/pkg: PLIST Log message: update to 2.20 OK naddy@(maintainer) CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/26 20:10:24 Modified files: sys/arch/sgi/hpc: if_sq.c Log message: Remove redundant setting of if_mtu which ether_ifattach() already takes care of. ok dlg@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 23:07:37 Removed files: geo/qlandkarte : Makefile distinfo geo/qlandkarte/patches: patch-common_in patch-src_CCentralResources_cpp patch-src_CGarminRoute_h patch-src_CProjEckII_cpp patch-src_CProjMercDynamic_cpp patch-src_CProjMerc_cpp patch-src_CProjUTM_cpp patch-src_GeoMath_h patch-src_IProjection_h patch-src_src_pro geo/qlandkarte/pkg: DESCR PFRAG.shared PLIST Log message: Remove. It was terminated upstream a long time ago. Use qlandkartegt instead. OK landry@ and sebastia@. Maintainer mail bounces. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 23:09:24 Modified files: geo : Makefile Log message: -qlandkarte CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/26 23:54:15 Modified files: sys/dev/ic : gem.c Log message: rxr ioctl handling. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 00:46:49 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Removed files: www/nginx/pkg : README Log message: Drop out-dated README. ok robert@ CVSROOT: /cvs Module name: src Changes by: sebastia@cvs.openbsd.org 2014/08/27 00:51:35 Modified files: usr.sbin/user : user.c Log message: Add missing capability to handle new $2b version of blowfish password encryption for usermod and friends. OK millert@, seems reasonable for now tedu@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 00:58:00 Modified files: comms/mgetty+sendfax: Makefile comms/mgetty+sendfax/files: new_voice mail/courier-imap: Makefile mail/mutt : Makefile mail/sympa : Makefile mail/sympa/patches: patch-src_lib_confdef_pm security/stunnel: Makefile security/tinyca: Makefile security/tinyca/patches: patch-tinyca2 www/owncloud : Makefile www/owncloud/pkg: README www/phpldapadmin: Makefile Removed files: mail/mutt/patches: patch-smime_keys_pl security/stunnel/patches: patch-tools_Makefile_in www/phpldapadmin/patches: patch-lib_emuhash_functions_php Log message: Cope with openssl(1) move from /usr/sbin to /usr/bin ok landry@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/27 01:33:55 src/regress/sys/kern/setuid Update of /cvs/src/regress/sys/kern/setuid In directory cvs.openbsd.org:/tmp/cvs-serv3959/setuid Log Message: Directory /cvs/src/regress/sys/kern/setuid added to the repository CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/27 01:36:14 Added files: regress/sys/kern/setuid: Makefile setegid.c seteuid.c setgid.c setgid_child.c setgid_exec_inherit.c setgid_none.c setresgid.c setresgid_effective_exec.c setresgid_real_exec.c setresgid_saved_exec.c setresuid.c setresuid_effective_exec.c setresuid_real_exec.c setresuid_saved_exec.c setuid.c setuid_child.c setuid_exec_inherit.c setuid_none.c setuid_real_exec.c sgidexec.c sgidexec_inherit.c sgidexec_none.c suidexec.c suidexec_inherit.c suidexec_none.c setuid_regress.h Log message: Regression tests for setuid-and-friends. Thanks to djm@ for good suggestions. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 01:47:47 Modified files: devel/ocaml-camomile: Makefile distinfo devel/ocaml-camomile/pkg: PFRAG.native PLIST Added files: devel/ocaml-camomile/patches: patch-Camomile_Makefile_in Removed files: devel/ocaml-camomile/patches: patch-Makefile_in Log message: Upgrade ocaml-camomile to 0.8.5. Use cpp instead of the not available cppo. Cpp needs the directives without indent. Therefore remove the indent in post-extract. OK jca@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 01:54:22 Modified files: devel/ocaml-batteries: Makefile distinfo devel/ocaml-batteries/patches: patch-src_batUnix_mliv devel/ocaml-batteries/pkg: PFRAG.native PLIST Added files: devel/ocaml-batteries/patches: patch-Makefile patch-build_prefilter_ml patch-src_batPrintf_mliv patch-src_batPrintf_mlv Log message: Update ocaml-batteries to 2.2.0. Also include fixes from upstream to support OCaml 4.02 OK jca@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 02:05:17 Modified files: devel/ocaml-react: Makefile distinfo devel/ocaml-react/pkg: PLIST devel/ocaml-lwt: Makefile distinfo devel/ocaml-lwt/patches: patch-setup_ml devel/ocaml-lambda-term: Makefile distinfo devel/ocaml-lambda-term/pkg: PLIST devel/ocaml-zed: Makefile distinfo devel/ocaml-zed/pkg: PLIST devel/utop : Makefile distinfo Removed files: devel/ocaml-lambda-term/patches: patch-_oasis patch-_tags patch-myocamlbuild_ml patch-setup_ml patch-src_lTerm_unix_stubs_c Log message: Upgrade ocaml-react. Since it has a major api charge, all of its dependers need an upgrade, too. * react uses opam without findlib as build system. Therefore call ocamlbuild directly. And roll a custom do-install. * lwt will need camlp4. * zed has moved to github. * utop, too. * lambda-term, too. Also will it need camlp4. OK jca@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/27 02:26:05 Modified files: bin/ksh : c_sh.c Log message: promote "times" to posix special built-in; ok guenther CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/27 02:28:29 Modified files: geo/geos : Makefile geo/geos/pkg : PLIST Log message: Fix packaging by using DOXYGEN_ENCODE_PATH_STRIP=${WRKSRC} in the env when running doxygen. I hate you doxygen. Didnt package so no bump. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/27 03:02:26 Modified files: geo/qlandkartegt: Makefile Log message: - add @pkgpath for smooth updates from qlandkarte - add rcs id in readme - remove duplicated dependency ok landry@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/27 03:04:40 Modified files: devel/quirks : Makefile Log message: qlandkarte => qlandkartegt CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/27 03:35:14 Modified files: geo/qlandkartegt: Makefile geo/qlandkartegt/pkg: PLIST README Log message: missed changes for pkg/*. spotted by zhuk@, thanks! bump for safety CVSROOT: /cvs Module name: ports Changes by: daniel@cvs.openbsd.org 2014/08/27 03:44:59 Modified files: math/coq : Makefile distinfo math/coq/patches: patch-test-suite-Makefile Added files: math/coq/patches: patch-kernel_univ_ml Log message: Update to 8.4pl4. Compilation problem with ocaml 4.02 noted by chrisz@; fix taken from coq trunk. ok Yozo Toda (MAINTAINER) some time ago. ok chrisz@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 03:45:39 Modified files: net/mldonkey/stable: Makefile distinfo Added files: net/mldonkey/stable/patches: patch-src_utils_net_terminal_ml Removed files: net/mldonkey/stable/patches: patch-src_daemon_common_commonMessages_ml patch-src_daemon_driver_driverCommands_ml patch-src_daemon_driver_driverControlers_ml patch-src_utils_lib_gettext_ml4 patch-src_utils_lib_gettext_mli Log message: Update to 3.1.5. Fix one "string literal in comment" for upcoming OCaml 4.02 OK dcoppa@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/27 03:51:53 Modified files: usr.sbin/httpd : server.c Log message: Write all data before closing the server socket if the output buffer is not empty. This fixes a bug of short responses that could happen with large files or fcgi data on connections with a higher latency. OK florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 04:26:59 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_bsd_shadow_py patch-salt_modules_disk_py patch-salt_modules_groupadd_py Log message: Fix and implement OpenBSD support in the following modules: bsd_shadow, disk, groupadd CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/27 04:28:57 Modified files: sbin/iked : Makefile dh.c dh.h iked.conf.5 ikev2.h parse.y regress/sbin/iked/dh: Makefile dhtest.c Added files: sbin/iked : smult_curve25519_ref.c Log message: Add support for Curve25519 using the public domain code that is found in OpenSSH. The "private use" DH group 1034 is based on the value that was picked by strongswan recently. OK mikeb@ markus@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 04:31:07 Modified files: geo/qlandkartegt: Makefile geo/qlandkartegt/pkg: README Log message: Apply README template. CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/08/27 04:36:55 Modified files: usr.sbin/mrouted: main.c Log message: c99 no longer allows implicit ints. make the declaration explicit. ok henning@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/27 04:46:53 Modified files: lib/libressl : ressl.h ressl_config.c ressl_internal.h ressl_server.c Log message: Add the API function ressl_config_set_ecdhcurve(config, name) to set a non-standard ECDH curve by name or to disable it by passing NULL. OK jsing@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 06:50:07 Modified files: geo/qlandkartegt: Makefile geo/qlandkartegt/pkg: PLIST Removed files: geo/qlandkartegt/pkg: README Log message: Drop useless and wrong README. ok sebastia@ (maintainer) CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2014/08/27 07:46:32 Modified files: etc : newsyslog.conf Log message: Add httpd default log files to the rotation. ok reyk@ (who suggested these lines a while ago) CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/27 08:04:16 Modified files: distrib/miniroot: install.sh etc/examples : sysctl.conf etc : rc.conf lib/libc/gen : sysctl.3 sbin/sysctl : sysctl.8 sys/netinet : icmp6.h sys/netinet6 : icmp6.c in6_proto.c usr.sbin/rtsold: rtsold.8 rtsold.c Log message: Nuke net.inet6.icmp6.rediraccept and allow redirects on interfaces with autoconf enabled. If one is doing SLAAC one does already trust link local icmp6 so the policy for icmp6 redirects should be the same. pointed out by & OK bluhm@; OK henning@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 08:13:17 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Simplify examples handling. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 08:44:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: One less option. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 08:59:44 Modified files: usr.bin/openssl: apps.c apps.h rand.c Log message: Implement table-driven option parsing that allows an application to specify what its valid options are and where it wants them to be stored. This also allows for usage to be generated, almost for free, ensuring that the options and usage are automatically kept in sync. This will allow for a single option parsing implementation, rather than the current one-hand-rolled-option-parsing-and-random-usage-implementation per application. As a starting point, port the openssl(1) rand application to the new option parsing and usage (along with associated code clean up). With input from doug@. ok bcook@ doug@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 09:22:40 Modified files: usr.bin/diff : diffreg.c Log message: Ensure diff -uw always produces valid output when one file doesn't end with a newline. Issue reported by guenther@. ok guenther@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 09:27:20 Modified files: regress/usr.bin/diff: Makefile Added files: regress/usr.bin/diff: t14.1 t14.2 t15.1 t15.2 Log message: Add regression tests for diff -uw issue reported by guenther@. Ensure the '+' and '-' always appear in the first column of a newline in diff -uw output, even when one file doesn't end with a newline and the other file contains additional lines. ok guenther@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 09:51:41 Modified files: usr.bin/openssl: apps.h apps.c Log message: Add an option type that handles argument to integer conversion. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 09:54:02 Modified files: usr.bin/openssl: rand.c Log message: Reset the config struct before calling options_parse(), otherwise config options from the previous run stick in interactive mode. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 09:55:23 Modified files: usr.bin/openssl: prime.c Log message: Convert openssl(1) prime to the new options/usage handling. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/27 12:07:55 Modified files: net/p5-Net-DNS : Makefile distinfo net/p5-Net-DNS/pkg: PLIST Log message: Update p5-Net-DNS to 0.79. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 12:40:03 Modified files: usr.sbin/pkg_add: Makefile usr.sbin/pkg_add/OpenBSD/PackageRepository: HTTP.pm SCP.pm Added files: usr.sbin/pkg_add/OpenBSD/PackageRepository: Persistent.pm Removed files: usr.sbin/pkg_add/OpenBSD/PackageRepository: Persistant.pm Log message: Rename Persistant to Persistent. sure espie@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 12:45:57 Modified files: regress/usr.sbin/pkg_add: check-sig Log message: Remove $_ usage that warns under Perl 5.18. Yep espie@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/27 14:36:17 Modified files: distrib/sets/lists/xetc: mi distrib/sets/lists/xbase: mi Log message: move fontconfig configuration files that don't change to xbase CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/27 17:50:45 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Disentangle svc_default_enabled_flags() and svc_get_flags(). This saves three expensive function calls in svc_default_enabled_flags(), two to _rc_parse_conf() and one to svc_get_flags(). No functional change. Feedback and ok ajacoutot@. CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/27 19:00:57 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: preserve errno value on success. If getrandom returns a temporary failure, make sure errno is not polluted when it succeeds. Thanks to deraadt@ for pointing it out. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/27 19:36:10 Modified files: usr.bin/mandoc : term_ps.c Log message: I just noticed that -Tps writes "%%CreationDate:" headers. That's an unwelcome leak of potentially private information. Kill it with fire. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/27 21:49:59 Modified files: usr.bin/mandoc : st.in share/man/man7 : mdoc.7 Log message: Support .St -susv1 and .St -susv4. Illumos wants to use this, and it's illogical anyway to have -susv2 and -susv3 but not -susv4. CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/08/27 23:40:49 Modified files: devel/py-nose : Makefile distinfo Log message: update nose to 1.3.4. ok martynas (maintainer). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 00:32:56 Modified files: sysutils/salt/patches: patch-salt_modules_bsd_shadow_py patch-salt_modules_disk_py patch-salt_modules_groupadd_py Log message: Everything has been merged uptream. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 00:52:57 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Consistency in conditionals; no functional change. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 01:53:07 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/28 02:09:39 Modified files: usr.sbin/slowcgi: slowcgi.8 Log message: fix previous, and add a SEE ALSO section for httpd; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/28 02:22:42 Modified files: usr.sbin/tcpdrop: tcpdrop.8 Log message: er, rehook httpd. here's a thought: if i just leave man pages alone, they will eventually come good. while here, remove some escape sequences; CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 04:26:21 Modified files: devel/xdg-utils: Makefile distinfo Added files: devel/xdg-utils/patches: patch-scripts_xdg-email_in patch-scripts_xdg-mime_in patch-scripts_xdg-open_in patch-scripts_xdg-screensaver_in patch-scripts_xdg-utils-common_in Removed files: devel/xdg-utils/patches: patch-scripts_xdg-desktop-menu patch-scripts_xdg-email patch-scripts_xdg-icon-resource patch-scripts_xdg-mime patch-scripts_xdg-open patch-scripts_xdg-screensaver patch-scripts_xdg-settings Log message: Update to xdg-utils-1.1.0rc2 + fixes from upstream. Committing now since these utilities tend to break after an update in very subtle ways... CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:37:41 Modified files: usr.bin/openssl: apps.c apps.h Log message: Add option handling for input/output formats. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:39:07 Modified files: usr.bin/openssl: apps.c apps.h Log message: Add option handling for ordered flags. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:51:38 Modified files: usr.bin/openssl: apps.c Log message: Ensure that a format option argument is a known specifier. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:55:19 Modified files: usr.bin/openssl: apps.c Log message: Given the usage option name/argument name width a few more characters. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:01:32 Modified files: usr.bin/openssl: crl.c Log message: Convert openssl(1) crl to new option/usage handling. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:15:28 Modified files: usr.bin/openssl: apps.c apps.h Log message: Add option handling with a callback function for argument processing. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:23:52 Modified files: usr.bin/openssl: asn1pars.c ca.c crl.c crl2p7.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c genpkey.c genrsa.c nseq.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c req.c rsa.c rsautl.c sess_id.c spkac.c ts.c verify.c x509.c Log message: openssl_setup() calls SSL_load_error_strings(), which happens to call ERR_load_crypto_strings() - as such, we do not need to call the same function from most of the applications. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:25:48 Modified files: usr.bin/openssl: genpkey.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c rsautl.c Log message: OpenSSL_add_all_algorithms() is called from openssl_startup() - it does not need to also be called from some of the applications. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 08:51:16 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop check and tweak comment. with schwarze@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:08:33 Modified files: . : Makefile distrib/sets : Makefile distrib/sets/lists/xbase: mi distrib/sets/lists/xetc: mi Added files: distrib/sets : makexetc Log message: Move xetc set to xbase like etc in base. ok and a tweak by ajacoutot@ There are still some issues, they will be fixed in tree. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:11:19 Modified files: distrib/sets : Makefile Log message: Use a phony target to build xetc.tgz so that its gets rebuilt everytime CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:34:29 Modified files: app/xinit : configure.ac Log message: Reduce diffs with upstream. No functional change. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:34:57 Modified files: app/xinit : Makefile.in aclocal.m4 configure app/xinit/launchd: Makefile.in app/xinit/launchd/privileged_startx: Makefile.in app/xinit/launchd/user_startx: Makefile.in app/xinit/man : Makefile.in Log message: regen CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 11:43:21 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Major sysmerge cleanup now that both etc and xetc sets are part of base. Expect more changes/cleanup/... in the near future. -S (signature) option is gone since we are not fetching sets anymore -s and -x are gone as well for obvious reasons Left is: usage: sysmerge [-bdp] I would appreciate feedback, *lots* of things have changed and there may be side effects I missed. Consider sysmerge as WIP for the time being. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 11:51:43 Modified files: print/foomatic-db-engine: Makefile print/foomatic-db-engine/pkg: README print/cups : Makefile print/cups/pkg : README-main Log message: README tweaks. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 13:02:19 Log message: Import cups-bjnp-1.2.2. cups-bjnp is a CUPS backend for Canon USB over IP protocol which adds functionality to some Canon printers to connect and print over the network. from maintainer Julian Andrej ok robert@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140828 N ports/print/cups-bjnp/Makefile N ports/print/cups-bjnp/distinfo N ports/print/cups-bjnp/patches/patch-configure N ports/print/cups-bjnp/patches/patch-bjnp-debug_c N ports/print/cups-bjnp/pkg/PLIST N ports/print/cups-bjnp/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 13:02:48 Modified files: print : Makefile Log message: +cups-bjnp CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/28 14:55:28 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: tweak AUTHORS; ok ajacoutot CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 16:09:00 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Merge a paragraph. CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/08/28 23:48:47 Modified files: faq : faq6.html Log message: Add otus(4), rsu(4), urtwn(4) and remove ray(4). The additions from Carlin Bingham. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/29 00:03:34 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: knock out double .Pp; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/29 00:09:35 Modified files: share/man/man7 : hier.7 Log message: update entry for /usr/share/sysmerge; ok ajacoutot CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 00:52:20 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Some cleanings, no functional change. CVSROOT: /cvs Module name: ports Changes by: dlg@cvs.openbsd.org 2014/08/29 00:56:48 Modified files: lang/php/5.4 : Makefile lang/php/5.4/patches: patch-ext_tidy_tidy_c Log message: port the fix for the tidy tidyReleaseDate vs tidyVersion segfault. basically ports/lang/php/5.3/patches/patch-ext_tidy_tidy_c r1.3 ok robert@ sthen@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/29 02:06:30 Modified files: share/misc : mime.types Log message: The image/x-ms-bmp extension is bmp, not mp. Found by Navan Carson; Thanks! CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/29 03:03:36 Modified files: usr.sbin/relayd: parse.y relay.c relayd.conf.5 relayd.h Log message: Implement consistent host hashing for relayd, based on work done by andre@ Re-add a randomized hash seed (which had apparently gotten inadvertently removed in the past). Allows for multiple relayd instances to be configured to forward traffic to the same host, falling back to the random seed when not explicitly configured to do so. ok reyk@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/29 04:51:39 Modified files: databases/puppetdb: Makefile databases/puppetdb/pkg: PLIST-main README-main puppetdb.rc Log message: Tweak puppetdb port to install multiple .ini files in the puppetdb/conf.d configuration directory. Update the README to the according changes and add a section about upgrading. Feedback, testing and OK jasper@ (MAINTAINER) CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/29 05:18:49 Modified files: openbgpd : manual.html Log message: -rfc1771, +rfc4271, per man page. From Rob Pierce, (rob at 2keys dot ca), thanks! CVSROOT: /cvs Module name: www Changes by: sebastia@cvs.openbsd.org 2014/08/29 05:39:18 Modified files: faq : current.html Log message: mention split of puppetdb configuration file with puppetdb-2.1.0p1 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/29 06:01:41 Modified files: geo/qlandkartegt: Makefile distinfo geo/qlandkartegt/pkg: PLIST Added files: geo/qlandkartegt/patches: patch-CMakeLists_txt patch-src_CDeviceGarminBulk_cpp patch-src_CMakeLists_txt patch-src_CMouseMoveMap_cpp patch-src_CWptDB_cpp Log message: Update qlgt to 1.7.7 test, feedback and OK kirby@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/29 06:09:04 Modified files: sbin/newfs : newfs.8 Log message: mount_mfs does not require disklabel to be run; diff From: Navan Carson confirmed/ok mikeb CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/29 07:01:46 Modified files: usr.sbin/httpd : httpd.h server_fcgi.c server_file.c server_http.c Log message: Use two instead of one http descriptor for request and response. OK chrisz@ CVSROOT: /cvs Module name: www Changes by: sobrado@cvs.openbsd.org 2014/08/29 07:02:48 Modified files: . : 56.html Log message: OpenSSH 6.7 new features and bug fixes. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/29 07:24:29 Modified files: devel/gmake : Makefile Log message: gmake will use libguile when available during build. Therefore configure --without-guile. ok dcoppa@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/29 08:28:32 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp Added files: devel/llvm/patches: patch-lib_Target_PowerPC_MCTargetDesc_PPCMCAsmInfo_cpp patch-lib_Target_Sparc_MCTargetDesc_SparcMCAsmInfo_cpp Removed files: devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp Log message: - Remove a local PowerPC patch we don't need. - A fix for the SPARC float handling. Adding the missing & to the field allows the backend feature flag to be passed back which it was not without it. - Add some patches to enable the integrated assembler on PowerPC / SPARC. I left these out before as I thought because Clang was not obeying this setting and had its own similar bits they were not necessary but turns out the backend has some code that does obey this setting. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 09:58:32 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_useradd_py Added files: sysutils/salt/patches: patch-salt_states_user_py Log message: Implement login class support. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 10:19:17 Modified files: www/owncloud : Makefile distinfo www/owncloud/patches: patch-lib_private_util_php www/owncloud/pkg: PLIST Log message: Update to owncloud-7.0.2. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 11:17:22 Modified files: usr.sbin/rcctl : rcctl.8 Log message: Document the fact that 'enable' can also be used to modify flags even if the daemon is already enabled. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 12:05:39 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi etc : Makefile Added files: etc/examples : dhclient.conf Removed files: etc : dhclient.conf Log message: Move dhclient.conf(5) to examples. no objections from todd@ millert@ rpe@ CVSROOT: /cvs Module name: src Changes by: shadchin@cvs.openbsd.org 2014/08/29 14:09:09 Modified files: sys/dev/pckbc : pms.c Log message: Fix checking sync for old synaptics touchpad (ver 5.9) From Thierry Deval ok mpi@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/29 14:21:13 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify append_to_pkg_scripts(), in particular avoid the expensive svc_is_enabled() and look at ${pkg_scripts} only, flags are not relevant to this function. "please commit" ajacoutot@ CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/08/29 14:54:51 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 15:03:34 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.269. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/29 15:04:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Additional input validation: Error out on "rcctl enable daemon flags NO". Without this check, this "enable" command effectively disabled the daemon. "commit" ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 15:09:01 Modified files: misc/libosinfo : Makefile distinfo misc/libosinfo/pkg: PLIST Removed files: misc/libosinfo/patches: patch-data_oses_openbsd_xml_in Log message: Update to libosinfo-0.2.11. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/29 15:21:39 Modified files: sys/arch/hppa/hppa: autoconf.c sys/arch/hppa64/hppa64: autoconf.c Log message: Use the load average from averunnable.ldavg[] instead of bogus cp_time[] arithmetic to display the load average in leds 5-8 of 8 led systems. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/29 15:55:55 Modified files: regress/usr.sbin/syslogd: Makefile Syslogd.pm README Log message: Prepare for testing libevent in syslogd. Pass the EVENT_NO... environment variables over sudo into syslogd. Run the tests with the select(2) and poll(2) and kqueue(2) backend. Call "make libevent" for these tests. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/29 15:57:17 Modified files: regress/usr.sbin/syslogd: args-maxhostlen.pl args-maxloghostlen.pl args-maxportlen.pl args-proto-invalid.pl args-proto-udp.pl args-proto-udp4-host6.pl args-proto-udp4-only6.pl args-proto-udp4.pl args-proto-udp6-host4.pl args-proto-udp6-only4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl funcs.pl Log message: Make the syslogd regression tests more reliable. Other processes on the system may create log entries during the test run that show up in the log file. Ignore those additional lines. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 16:07:22 ports/misc/redshift/patches Update of /cvs/ports/misc/redshift/patches In directory cvs.openbsd.org:/tmp/cvs-serv10064/patches Log Message: Directory /cvs/ports/misc/redshift/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 16:07:38 Modified files: misc/redshift : Makefile distinfo misc/redshift/pkg: PLIST Added files: misc/redshift/patches: patch-src_gamma-drm_c patch-src_location-geoclue_c Log message: Update to redshift-1.9.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 01:22:56 Modified files: net/libaccounts-glib: Makefile distinfo net/libaccounts-glib/pkg: PLIST Added files: net/libaccounts-glib/patches: patch-libaccounts-glib_ag-provider_c Log message: Update to libaccounts-glib-1.16. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 01:30:58 Modified files: games/tuxpaint-config: Makefile distinfo games/tuxpaint-config/pkg: PLIST Log message: Update to tuxpaint-config-0.0.13. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 02:32:33 Modified files: games/tuxpaint-stamps: Makefile distinfo games/tuxpaint-stamps/pkg: PLIST Log message: Update to tuxpaint-stamps-20140823. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 02:33:39 Modified files: games/gcompris : Makefile distinfo games/gcompris/patches: patch-Makefile_in games/gcompris/pkg: PLIST Log message: Update to gcompris-14.07. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 02:48:23 Modified files: sys/kern : subr_prof.c Log message: Fix profiling (GPROF) build. CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/08/30 02:56:04 Modified files: mail/alpine : Makefile Added files: mail/alpine/patches: patch-pith_smime_c Log message: Remove RAND_egd tentacles in never-used code paths gcc 4 is smart enough to optimize away, but gcc 3 isn't. Bump VERSION. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:02:23 Modified files: x11/polkit-qt4 : Makefile distinfo x11/polkit-qt4/patches: patch-PolkitQt-1Config_cmake_in x11/polkit-qt4/pkg: PLIST Log message: Update to polkit-qt4-0.112.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:07:36 Modified files: net/h323plus : Makefile distinfo net/h323plus/patches: patch-configure net/h323plus/pkg: PLIST Log message: Update to h323plus-1.26.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:13:16 Modified files: graphics/simple-scan: Makefile distinfo Log message: Update to simple-scan-3.12.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:20:42 Modified files: devel/harfbuzz : Makefile distinfo Log message: Update to harfbuzz-0.9.35. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:32:19 Modified files: sys/dev/usb : xhci.c Log message: Allow new devices to get an address when XHCI_DEBUG is defined. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:33:11 Modified files: sys/dev/usb : ehci.c ehcivar.h Log message: Rewrite how queue heads are inserted and removed from the asynchronous list. Use a queue head per xfer and no longer per pipe. Since queue heads are now setup when a transfer is submited we do not need to open the control pipe more than once. This also simplify transfer abortion. Tested by many, thanks! CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:37:15 Modified files: sys/arch/macppc/dev: smu.c Log message: Bump the fan limit and avoid a panic on my quad G5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:37:27 Modified files: graphics/libgphoto2: Makefile distinfo graphics/libgphoto2/patches: patch-libgphoto2_port_gphoto2_gphoto2-port-portability_h graphics/libgphoto2/pkg: PFRAG.shared PLIST Log message: Update to libgphoto-2.5.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:37:50 Modified files: graphics/gphoto2: Makefile distinfo Log message: Update to gphoto-2.5.5. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:42:20 Modified files: sys/arch/macppc/dev: macintr.c openpic.c Log message: Don't panic when an illegal IRQ is passed to intr_{dis,}establish(). At least the device-tree for the second bge(4) on my PowerMac is not parsed correctly but we can live with that until the bug is fixed. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/30 03:48:23 Modified files: sys/dev/pci : if_oce.c Log message: let the mru always be what the chip can do, not what the mtu implies. tested by and ok mikeb@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/30 03:52:13 Modified files: sys/dev/pci : if_lii.c if_et.c Log message: Set the MRU to a full size frame instead of basing it on the MTU. ok dlg@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 04:32:58 Modified files: www/bacula-web : Makefile distinfo www/bacula-web/pkg: PLIST Log message: SECURITY update to bacula-web-6.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 04:33:57 Modified files: www/bacula-web : Tag: OPENBSD_5_5 Makefile distinfo www/bacula-web/pkg: Tag: OPENBSD_5_5 PLIST Log message: SECURITY update to bacula-web-6.0.1. (XSS and SQL injection) CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 04:41:10 Modified files: sys/arch/amd64/amd64: disksubr.c sys/arch/i386/i386: disksubr.c Log message: Make sure we check for GPT in writedisklabel() if kernel is compiled with GPT support, for it would risk being overwritten otherwise. From Markus Mueller CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 04:44:02 Modified files: sys/kern : subr_disk.c sys/sys : disklabel.h Log message: Recognize EFI protective and system partitions. Do not put disklabel entries for the protective ones when creating a fake label, but do, for the system ones, so that we may eventually copy boot code to them. From Markus Mueller CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:29:08 Log message: Import appstream-glib-0.2.5. This library provides GObjects and helper methods to make it easy to read and write AppStream metadata. It also provides a simple DOM implementation that makes it easy to edit nodes and convert to and from the standardized XML representation. <...> ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140830 N ports/devel/appstream-glib/distinfo N ports/devel/appstream-glib/Makefile N ports/devel/appstream-glib/pkg/DESCR N ports/devel/appstream-glib/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:29:40 Modified files: devel : Makefile Log message: +appstream-glib CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:30:11 Modified files: misc/appdata-tools: Makefile distinfo Log message: Update to appdata-tools-0.1.8. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:33:56 Modified files: textproc/link-grammar: Makefile distinfo textproc/link-grammar/patches: patch-configure textproc/link-grammar/pkg: PLIST-main Added files: textproc/link-grammar/patches: patch-link-grammar_structures_h Log message: Update to link-grammar-5.1.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:47:08 Modified files: productivity/tryton/trytond: Makefile distinfo Log message: Update to trytond-3.2.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:47:20 Modified files: productivity/tryton/tryton: Makefile distinfo Log message: Update to tryton-3.2.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:48:09 Modified files: productivity/tryton/account: Makefile distinfo productivity/tryton/account/pkg: PLIST productivity/tryton/account_asset: Makefile distinfo productivity/tryton/account_asset/pkg: PLIST productivity/tryton/account_invoice: Makefile distinfo productivity/tryton/account_invoice/pkg: PLIST productivity/tryton/account_payment: Makefile distinfo productivity/tryton/account_payment/pkg: PLIST productivity/tryton/account_payment_sepa: Makefile distinfo productivity/tryton/ldap_authentication: Makefile distinfo productivity/tryton/project_invoice: Makefile distinfo productivity/tryton/project_invoice/pkg: PLIST productivity/tryton/stock: Makefile distinfo productivity/tryton/stock_supply: Makefile distinfo productivity/tryton/stock_supply/pkg: PLIST Log message: Update tryton modules to their latest release. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:17:48 Modified files: x11/xruskb : Makefile distinfo x11/xruskb/pkg : PLIST Log message: Install config under /usr/local/lib/X11/app-defaults instead of /etc/X11/app-default. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:18:26 Modified files: x11 : Makefile Log message: Build the motif FLAVOR of xruskb. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:29:36 Modified files: meta/gnome : Makefile meta/gnome/pkg : README-main Log message: Use rcctl(8) in the cheat sheet section. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:52:22 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi Log message: /etc/amd/master.sample is effectively an example file, so move it to base but keep the current location until we know how to handle subdirs under /etc/examples. ok rpe@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 08:07:45 Modified files: databases/puppetdb: Makefile distinfo databases/puppetdb/pkg: README-main Log message: update to puppetdb-2.2.0 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/30 08:15:36 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.8.30 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 08:16:02 Modified files: sysutils/ruby-libvirt: Makefile sysutils/ruby-libvirt/pkg: PLIST Log message: and unbreak with ruby19; spotted by naddy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 08:16:07 Modified files: databases/puppetdb: Makefile databases/puppetdb/pkg: README-main Log message: Document pg_trgm indexes procedure CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 08:40:09 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: DESTDIR is gone. from Nathanael Rensen, thanks! CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 08:42:05 Modified files: sys/arch/hppa/dev: sti_sgc.c sys/dev/ic : sti.c sys/dev/pci : sti_pci.c Log message: Fix format strings in STIDEBUG code. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 08:44:20 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Indent. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/30 09:14:03 Modified files: usr.bin/openssl: apps.c apps.h Log message: Move the callback function pointer outside the opt union so that the option values are useable by the function. Also provide an option type that calls a function without consuming/passing an argument. CVSROOT: /cvs Module name: src Changes by: sobrado@cvs.openbsd.org 2014/08/30 09:33:50 Modified files: usr.bin/ssh : ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 ssh_config.5 sshd.8 Log message: improve capitalization for the Ed25519 public-key signature system. ok djm@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/30 09:59:43 Modified files: usr.bin/openssl: version.c Log message: Convert openssl(1) version to new option/usage handling. CVSROOT: /cvs Module name: src Changes by: sobrado@cvs.openbsd.org 2014/08/30 10:32:25 Modified files: usr.bin/ssh : sshd_config.5 Log message: typo. CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/30 10:34:33 Modified files: devel/py-py : Makefile devel/py-py/pkg: PLIST Log message: Fix spaces after MODPY_COMMENT in PLIST. Causes creation of dirs starting with a space in the python3 flavor. Spotted by, and OK ajacoutot@. Thanks. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 10:37:12 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: sm_warn() always returns 0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 10:56:56 Modified files: devel/iso-codes: Makefile distinfo devel/iso-codes/pkg: PLIST Log message: update to iso-codes-3.55 CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/30 11:16:47 Modified files: devel/nagelfar : Makefile distinfo devel/nagelfar/patches: patch-nagelfar_tcl devel/nagelfar/pkg: PLIST Log message: Update to 1.2. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/30 11:19:39 Modified files: lang/eagle : Makefile Log message: Adjust for ALL_TEST_ENV. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/30 11:32:34 Modified files: devel/tklib : Makefile distinfo devel/tklib/pkg: PLIST Log message: Update to 0.6pl1. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/30 12:04:52 Modified files: usr.bin/mandoc : apropos.1 main.c man.1 mandoc.1 Log message: Introduce a man(1) -l option as an alias for mandoc -a. Basically, this does the same as man -l in Linux man-db. The point is that now all functionality of the combined tool is reachable from the man(1) command name: apropos = man -k, whatis = man -f, mandoc = man -cl. Originally suggested by Carsten dot Kunze at arcor dot de, current maintainer of the Heirloom Documentation Tools. While here, add various missing information to the usage() and to the manuals. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/30 14:03:43 Modified files: . : MODULES 3RDPARTY Log message: update CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/30 14:07:08 Modified files: . : 3RDPARTY Log message: fix xterm entry CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 14:24:31 Modified files: devel/mm : Makefile Log message: add mirror that doesn't reset connections most of the time CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:31:03 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Refactor sum checks; all the information we need is already available so not need to create sum files anymore (except in pkg mode). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:33:27 Modified files: etc/rc.d : rc.subr Log message: Make it possible to pass a specific error code to _rc_err(). ok robert@ schwarze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:37:46 Modified files: usr.sbin/rcctl : rcctl.sh Log message: When a service is not available, return ENOENT. Previous to this commit it was not possible to know whether a service existed without parsing the output of 'rcctl status' which is very expensive. req. by armani@ ok robert@ schwarze@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 15:30:23 Modified files: libexec/ld.so/sparc64: rtld_machine.c Log message: Make the handling of PLT entries above the 32k mark thread-safe. Also, make a comment not lie: use the V9 ISA's relative branch immediate instruction for short (with in 2^19 words) PLT branches. ok miod@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 15:34:02 Modified files: www/decss : Makefile distinfo Log message: update to decss-0.07 and switch to a versioned distfile CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 15:42:31 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Huge improvement to the rcctl service module. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 15:43:16 Modified files: www/py-tempita : Makefile distinfo www/py-tempita/pkg: PLIST Log message: update to py-tempita-0.5.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 15:54:08 Modified files: archivers/makeself: Makefile audio/mpegaudio: Makefile chinese/ttfm : Makefile devel/luapack : Makefile devel/py-protocols: Makefile devel/py-ruledispatch: Makefile fonts/zh-arphicttf: Makefile fonts/zh-bg5ps : Makefile games/oilwar : Makefile games/spatial : Makefile games/xgolgo : Makefile games/xmj : Makefile games/xneko : Makefile lang/ucblogo : Makefile misc/cbb : Makefile misc/pymissile : Makefile net/queso : Makefile security/antisniff: Makefile security/cgichk: Makefile security/l0phtcrack: Makefile www/pecl-chroot: Makefile Log message: Remove MASTER_SITES=${MASTER_SITE_BACKUP} which is already taken care of by bsd.port.mk CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 16:02:39 Modified files: www/urlwatch : Makefile distinfo Log message: update to urlwatch-1.17 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 16:11:33 Modified files: databases/ruby-hiera-file: Makefile Log message: fix maintainer name... CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 16:38:31 Modified files: databases : Makefile Added files: databases/mdbtools: Makefile Log message: don't reach directly into the subdirectory from the category Makefile CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 17:51:42 Modified files: lib/libpthread/man: pthread_create.3 Log message: Xr __tfork instead of fork CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 19:02:51 Modified files: gnu/lib/libiberty: Makefile.bsd-wrapper shlib_version gnu/lib/libiberty/include: hashtab.h Removed files: gnu/lib/libiberty/src: oldhashtab.c Log message: Now that gcc 2.95 is out of the tree, get rid of the old hash table interface it was the only user of. Bump major. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 19:04:01 Modified files: gnu/lib/libiberty/src: pexecute.c pexecute.txh Log message: Finally ``revert'' to the recent pexecute interface, now that we do not need to support gcc 2.95. Tested on gcc 3 and gcc 4 platforms, riding on the major bump. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 19:42:36 Modified files: include : unistd.h lib/libc/gen : signal.3 lib/libc : shlib_version lib/libc/sys : Makefile.inc accept.2 dup.2 pipe.2 recv.2 sigaction.2 socket.2 socketpair.2 sys/kern : kern_descrip.c sys_pipe.c syscalls.master uipc_socket.c uipc_syscalls.c uipc_usrreq.c sys/sys : domain.h socket.h un.h Log message: Add additional kernel interfaces for setting close-on-exec on fds when creating them: pipe2(), dup3(), accept4(), MSG_CMSG_CLOEXEC, SOCK_CLOEXEC. Includes SOCK_NONBLOCK support. ok matthew@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 19:47:17 Modified files: sys/sys : syscall.h syscallargs.h sys/kern : init_sysent.c syscalls.c Log message: regen CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/30 20:06:36 Log message: Import www/uget uGet is a lightweight and full-featured Download Manager. uGet allows you to download in multiple parallel streams for download acceleration, put files in a Download Queue, Pause & Resume downloads, Advanced Category Management, Browser Integration, Clipboard Monitoring, Batch Downloads, localized into 23 Languages, and many more features. ok juanfra@ edd@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140830 N ports/www/uget/Makefile N ports/www/uget/distinfo N ports/www/uget/pkg/PLIST N ports/www/uget/pkg/DESCR N ports/www/uget/pkg/README N ports/www/uget/patches/patch-po_POTFILES_in N ports/www/uget/patches/patch-uget-gtk_UgSetting_c No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/30 20:07:12 Modified files: www : Makefile Log message: +uget CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 20:21:18 Modified files: include : stdlib.h lib/libc/gen : popen.3 popen.c posix_spawn.c posix_spawn_file_actions_addopen.3 lib/libc/stdio : Makefile.inc fdopen.c flags.c fopen.3 freopen.c mktemp.3 mktemp.c Log message: Add additional userland interfaces for setting close-on-exec on fds when creating them: mkostemp(), mkostemps(), the 'e' mode letter for fopen(), freopen(), fdopen(), and popen(). The close-on-exec flag will be cleared by the action created by posix_spawn_file_actions_adddup2(). Also, add support for the C11 'x' mode letter for fopen() and freopen(), setting O_EXCL when possibly creating files. Note: this requires kernel support for pipe2() and dup3()! ok millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 20:27:37 Modified files: sys/sys : socket.h lib/libc/net : Makefile.inc Added files: lib/libc/net : sockatmark.3 sockatmark.c Log message: Add sockatmark() ok millert@ manpage feedback jmc@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:02:08 Modified files: include : unistd.h lib/librthread : rthread.h lib/libc/sys : Makefile.inc Added files: lib/libc/sys : getthrid.2 Log message: Declare and document getthrid() indirectly prodded by krw@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:04:01 Modified files: include/arpa : inet.h Log message: inet_nsap_{addr,ntoa}() were removed on 2013/12/17 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:04:38 Modified files: include : grp.h Log message: setgrfile() isn't implemented CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:06:37 Modified files: lib/libc/gen : __tfork_thread.3 Log message: They're thread IDs, not PIDs. The wording is a bit clunky, but closer to the truth CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/31 00:36:30 Modified files: lib/libc/stdio : fopen.3 mktemp.3 Log message: provide section numbers for xrs; CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 00:40:46 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Do not overwrite examplessum; use the one we are provided with. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/31 00:41:24 Modified files: lib/libc/sys : getthrid.2 Log message: tweaks; CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 00:52:46 Modified files: usr.sbin/rcctl : rcctl.8 Log message: Document that exit code 2 indicates a non-existent service. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:08:25 Modified files: usr.sbin/rcctl : rcctl.sh Log message: No need to update daemon_flags in the enviroment anymore since the recent change to append_to_pkg_scripts(). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:31:26 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: When we are not running in pkg mode, /usr/share/sysmerge/examplessum should always be part of the temproot, so there's not need to check for its existence. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:35:52 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Only use the sum files corresponding to the mode we run in. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:59:58 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Simplify examples files handling. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 02:32:41 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: In pkg mode, warn if the directory we want to copy the @sample file into does not exist and is not a @sample because we have no knowledge of the required owner/group/mode so we cannot create it. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 03:20:06 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Make sysmerge(8) completely silent by default when no file is modified. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 03:31:55 src/lib/libc/uuid Update of /cvs/src/lib/libc/uuid In directory cvs.openbsd.org:/cvs.d/hack/miod/traba/src/lib/libc/uuid Log Message: Directory /cvs/src/lib/libc/uuid added to the repository CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 03:36:39 Modified files: include : Makefile lib/libc : Makefile.inc sys/sys : uuid.h Added files: include : uuid.h lib/libc/uuid : Makefile.inc uuid.3 uuid_compare.c uuid_create.c uuid_create_nil.c uuid_equal.c uuid_from_string.c uuid_hash.c uuid_is_nil.c uuid_stream.c uuid_to_string.c Log message: Add uuid support routines to libc. From FreeBSD via NetBSD via Bitrig via Markus Mueller. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 03:55:16 Modified files: devel/p5-Event : Makefile distinfo Log message: update to p5-Event-1.23 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 03:55:47 Modified files: devel/p5-Object-Realize: Makefile distinfo Log message: update to p5-Object-Realize-0.19 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 04:44:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Add Ingo's copyright as per his request. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 04:48:53 Modified files: lang/coffeescript: Makefile distinfo lang/coffeescript/pkg: PLIST Log message: update to coffeescript-1.8.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:15 Modified files: sysutils/libvirt: Makefile distinfo sysutils/libvirt/patches: patch-src_Makefile_in patch-src_rpc_virnetsocket_c sysutils/libvirt/pkg: PLIST Log message: update to libvirt-1.2.7 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:17 Modified files: devel/libvirt-glib: Makefile distinfo devel/libvirt-glib/pkg: PLIST Log message: update to libvirt-glib-0.1.9 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:22 Modified files: sysutils/libvirt-python: Makefile distinfo Log message: update to libvirt-python-1.2.7 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:23 Modified files: sysutils/p5-Sys-Virt: Makefile distinfo sysutils/p5-Sys-Virt/pkg: PLIST Log message: update to p5-Sys-Virt-1.2.6 CVSROOT: /cvs Module name: src Changes by: tobiasu@cvs.openbsd.org 2014/08/31 07:40:03 Modified files: gnu/usr.bin/binutils/binutils: addr2line.c ar.c coffdump.c cxxfilt.c deflex.c dlltool.c dllwrap.c nlmconv.c nm.c objcopy.c objdump.c rclex.c readelf.c size.c srconv.c strings.c sysdump.c windres.c gnu/usr.bin/binutils/gas: as.c itbl-lex.c gnu/usr.bin/binutils/gprof: gprof.c gnu/usr.bin/binutils/include: libiberty.h gnu/usr.bin/binutils/ld: ldmain.c Log message: Backport @file support from binutils-2.17 @file allows reading command line arguments from a file. Gcc now uses this to pass very long arguments lists to ld. ok guenther@ miod@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/31 07:50:27 Modified files: lib/fontconfig/conf.d: Makefile Log message: Install relative symlinks in conf.d. Noticed by ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/31 08:15:56 Modified files: security/spiped: Makefile distinfo Removed files: security/spiped/patches: patch-lib_events_events_network_c Log message: Update spiped to 1.4.0. Includes code cleanup and bug fixes plus a new -g option to drop connections if another host is using -f. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/31 08:21:12 Modified files: security/reop : Makefile distinfo Log message: Update to reop 2.1.0. "Newer, better, bolder. v2 is now ready to go I think. The encrypted message format is possibly more secure in some scenarios. For backwards compat, a -1 option is available." CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 08:54:01 Modified files: www/yaws : Makefile distinfo www/yaws/patches: patch-configure www/yaws/pkg : PLIST-main Log message: update to yaws-1.98 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 08:56:51 Modified files: sysutils/mcollective: Makefile distinfo sysutils/mcollective/pkg: PLIST Log message: update to mcollective-2.6.0 CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/31 09:51:49 Modified files: lang/tcltutor : Makefile distinfo lang/tcltutor/patches: patch-TclTutor_tcl Log message: Update to 3.0b7. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/31 10:52:26 Modified files: distrib/sets : makeflist makelocatedb maketars Removed files: distrib/sets : genlists nocreate Log message: Get rid of the 'nocreate' feature, unused for 6 years and stop building the xetcXX.tgz set CVSROOT: /cvs Module name: ports Changes by: shadchin@cvs.openbsd.org 2014/08/31 11:03:33 Modified files: editors/texmaker: Makefile distinfo editors/texmaker/patches: patch-latexeditor_h patch-texmaker_cpp patch-texmaker_pro editors/texmaker/pkg: PLIST Added files: editors/texmaker/patches: patch-texmakerapp_cpp Log message: Update to texmaker 4.3. CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/08/31 11:28:35 Log message: import textproc/gpresent The gpresent and piclink groff macros and the presentps PostScript postprocessor support the creation of PDF presentations. Without using the PAUSE macro, the macros can also be used to make slides. ok MAINTAINER pascal@ Status: Vendor Tag: schwarze Release Tags: schwarze_20140831 N ports/textproc/gpresent/Makefile N ports/textproc/gpresent/distinfo N ports/textproc/gpresent/pkg/PLIST N ports/textproc/gpresent/pkg/DESCR N ports/textproc/gpresent/patches/patch-presentps No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 11:46:12 Modified files: devel/spice-protocol: Makefile distinfo devel/spice-protocol/pkg: PLIST Log message: update to spice-protocol-0.12.7 CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/31 11:52:28 Modified files: textproc : Makefile Log message: + gpresent. tsk tsk tsk. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/31 11:57:40 Modified files: lib/libSM/src : sm_genid.c Log message: Fix the HAVE_UUID_CREATE code now that its gets used: - fix temp declaration - use snprintf instread of strcpy() CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 13:16:53 Modified files: net/apache-activemq: Makefile distinfo net/apache-activemq/pkg: PLIST Log message: update to apache-activemq-5.10.0 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/31 13:20:44 Modified files: sys/netinet6 : in6.h lib/libc/net : vars6.c Log message: Make the in6addr constant declarations and definitions consistent in kernel and user land. OK florian@ mpi@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/31 13:24:45 Modified files: education/gtypist: Makefile distinfo Log message: maintenance update to 2.9.5 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 13:58:53 Modified files: lib/libc/uuid : uuid_stream.c Log message: Fix incorrect behaviour by syncing with FreeBSD; reported by Jonas 'Sortie' Termansen, thanks! CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 13:59:18 Modified files: lib/libc/uuid : uuid_compare.c Log message: Sync with FreeBSD. No functional change but more readable code. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 13:59:35 Modified files: lib/libc/uuid : uuid.3 Log message: Don't .Xr uuidgen(1) yet. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/31 14:10:36 Modified files: distrib/miniroot: install.sub Log message: The xetc set is now part of xbase and not distributed separately anymore. Extract it from xbase during installation. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 14:15:37 Modified files: www/pecl-chroot: Makefile Log message: revert previous, pecl.port.mk needs to be introduced to a cluebat; spotted by espie@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 14:15:54 Modified files: sys/kern : kern_uuid.c Log message: Sync enc/dec routines with libc. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 14:23:10 Modified files: lib/librthread : rthread_cancel.c shlib_version lib/libpthread/man: pthread_testcancel.3 Log message: accept4() should be a cancellation point. Update the list in the pthread_testcancel(3) manpage: several were missing. noted by miod@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/31 14:34:28 Modified files: lib/libc/uuid : uuid.3 Log message: no Pp needed before non-compact lists; CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/31 14:51:31 Modified files: usr.sbin/syslogd: syslogd.c Log message: Do not call free() on an array in the data section. Fortunately the code was not reached. No binary change. OK miod@ guenther@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/31 15:08:48 Modified files: sys/sys : buf.h sys/kern : vfs_bio.c Log message: replace LRU bufcache with something originally modelled after 2Q. this should provide a degree of scan resistance, and also serves as a midway point for further development of multi queue algorithms. i've tried to minimize the risk and degree of regressions. probably ok beck CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/31 15:23:34 Modified files: faq : upgrade55.html Log message: The problem with predicting the future is it is subject to change. Inspired by Daniel Jakots, though I went in a slightly different direction. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/31 16:11:43 Modified files: usr.sbin/syslogd: syslogd.c Log message: The reapchild() signal handler collects all children. This can be done easier by ignoring SIGCHLD. OK guenther@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 20:48:00 Modified files: libexec/spamd : spamd.8 Log message: Simplify the syslog.conf example: .info means that *and higher* ok beck@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/31 21:15:22 Modified files: devel/tcllib : Makefile distinfo devel/tcllib/patches: patch-installer_tcl patch-support_installation_actions_tcl devel/tcllib/pkg: PLIST Removed files: devel/tcllib/patches: patch-apps_pt Log message: Update to 1.16pl0. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 21:37:10 Modified files: sys/kern : kern_rwlock.c Log message: Add explicit membars, so that we can stop requiring rw_cas() to provide the magic. ok matthew@ dlg@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 21:39:15 Modified files: sys/arch/amd64/include: atomic.h Log message: Add implementations of atomic_{inc,dec,add,sub}_{int,long}() and atomic_{add,sub}_{int,long}_nv(), based on Solaris and translated through the mind of dlg@ Remove the 'memory' constraint from atomic_cas_{uint,ulong,ptr}() now that rw_{enter,exit}*() use membars. ok dlg@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/31 23:09:53 Modified files: include : unistd.h lib/libc/sys : readlink.2 libexec/ld.so/alpha: syscall.h libexec/ld.so/amd64: syscall.h libexec/ld.so/arm: syscall.h libexec/ld.so/hppa: syscall.h libexec/ld.so/i386: syscall.h libexec/ld.so/m88k: syscall.h libexec/ld.so/mips64: syscall.h libexec/ld.so/powerpc: syscall.h libexec/ld.so/sh: syscall.h libexec/ld.so/sparc: syscall.h libexec/ld.so/sparc64: syscall.h sys/compat/linux: syscalls.master sys/kern : syscalls.master Log message: Sync readlink(2) with IEEE Std 1003.1-2008. discussion, help and ok guenther@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/31 23:13:22 Modified files: sys/compat/linux: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c sys/kern : init_sysent.c syscalls.c sys/sys : syscall.h syscallargs.h Log message: sync generated files CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 23:20:54 Modified files: sys/compat/linux: Makefile Log message: Make this consistent with sys/kern/Makefile: require the 'syscalls' target CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/01 00:45:47 Modified files: gnu/usr.bin/perl: patchlevel.h gnu/usr.bin/perl/cpan/libnet/Net/FTP: dataconn.pm Log message: apply fix from upstream to remedy RT 37700, which hardens the close() function ok millert@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 00:55:37 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Do not compare checksum of checksums... CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/01 01:29:19 Modified files: usr.bin/units : units.lib Log message: update currency exchange rates; CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/01 01:52:30 Modified files: sys/dev/ic : mpivar.h mpi.c Log message: move mpi(4) from workq to taskq ok dlg@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/01 02:13:02 Modified files: sys/dev/usb : ehci.c ehcivar.h Log message: Revert previous, it puts too much pressure on memory allocation as reported by Bryan Linton on bugs@. CVSROOT: /cvs Module name: ports Changes by: pea@cvs.openbsd.org 2014/09/01 02:42:01 Modified files: security/gnupg2: Makefile distinfo Log message: Update to 2.0.26 ok dcoppa@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/01 03:28:41 Modified files: net/wireshark : Makefile Log message: BROKEN-powerpc for relocation overflows CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/01 03:32:43 Modified files: usr.sbin/httpd : httpd.c httpd.h server_fcgi.c Log message: Replace the code to get the FastCGI Status header with a proper way to parse and write the headers using the http response descriptor. This allows to add other tweaks, like support for chunked encoding, later. OK florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 04:04:01 Modified files: sysutils/salt/patches: patch-salt_modules_bsd_shadow_py sysutils/salt : Makefile Log message: Add support for account and password expiration. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 04:15:31 Modified files: multimedia/gstreamer-0.10/plugins-gl: Makefile distinfo multimedia/gstreamer-0.10/plugins-gl/pkg: PLIST Log message: Update to gstreamer-plugins-gl-0.10.3. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/01 04:23:51 Modified files: net/bing : Makefile Log message: mirror distfile CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/01 04:41:55 Modified files: usr.sbin/pkg_add/OpenBSD: ArcCheck.pm Log message: be a wee bit more paranoid about file sizes. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/01 05:29:15 Modified files: usr.sbin/pkg_add/OpenBSD: Ustar.pm Log message: @newuser and @newgroup won't necessarily be on the machine during pkg_create, so fake uid/gid 0 if they're not. (removes some warning message) CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/01 06:22:38 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: remove Xr, but not the reference, to nginx, after some discussion with reyk; CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/01 06:28:11 Modified files: usr.sbin/httpd : server_fcgi.c Log message: Don't pass the local buffer array by reference. OK florian@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/01 07:02:25 Modified files: usr.bin/bgplg : bgplg.8 Log message: Replace the obsolete nginx example with an httpd(8) example. ok jmc@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/01 07:03:40 Modified files: devel/ocaml-net: Makefile distinfo devel/ocaml-net/pkg: PFRAG.native PFRAG.shared PLIST Removed files: devel/ocaml-net/pkg: PFRAG.pcre PFRAG.pcre-native Log message: Upgrade to 3.7.5 This will work with OCaml 4.02. Always use -enable-pcre, because Netstring_str will now use the builtin Str module, while Netstring_pcre will use ocaml-pcre. ok avsm@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/01 07:07:51 Modified files: devel/utop : Makefile distinfo devel/utop/pkg : PLIST Removed files: devel/utop/pkg : README Log message: Upgrade to 1.15 the bar-completion with the default Meta-Tab binding seems to work now. Therefore remove the README. ok avsm@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/01 07:26:29 Modified files: lib/libevent : event.c Log message: The libevent event_log() function called by event_msgx() adds a new line itself. Do not print a double new line when EVENT_SHOW_METHOD is set. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/01 07:36:04 Modified files: graphics/py-Pillow: Tag: OPENBSD_5_5 Makefile Added files: graphics/py-Pillow/patches: Tag: OPENBSD_5_5 patch-PIL_IcnsImagePlugin_py Log message: Security fix for CVE-2014-3589 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/01 08:21:06 Modified files: usr.bin/openssl: apps.c Log message: Improve option usage output. If the option/argument string exceeds the given width, add a hanging indent prior to displaying the description. Also, if the description includes newlines, wrap and indent for each newline so that the indentation is correctly maintained. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/01 08:26:01 Modified files: usr.bin/openssl: ecparam.c Log message: Convert ecparam to new option/usage handling. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/01 08:52:52 Modified files: net/zabbix : Makefile distinfo net/zabbix/patches: patch-configure Log message: update to 2.2.6 ; patch from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 08:56:12 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_mount_py Log message: Implement OpenBSD support to the mount module. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 09:11:11 Modified files: misc/redshift : Makefile Log message: Missing BUILD_DEPENDS. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/01 10:02:06 Modified files: sys/dev/usb : if_urtw.c if_urtwreg.h Log message: Set the configuration number and get the interface handle in attach(), like urtwn(4) does, to prevent a null dereference of the configuration descriptor. Issue reported and fix tested by Ludovic Coues on misc@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 10:31:57 Modified files: productivity/calcurse: Makefile distinfo productivity/calcurse/pkg: PLIST Log message: Update to calcurse-3.2.1. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/01 10:36:04 Modified files: net/wireshark : Makefile Log message: Use -Wl,--relax to unbreak on powerpc. ok landry@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 12:01:55 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Fix evil typo. from wbyte via Bryan Steele CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/01 12:04:58 Modified files: app/cwm : calmwm.h group.c mousefunc.c Log message: Merge group_menu into mousefunc_menu_group. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/01 12:17:32 Modified files: app/cwm : kbfunc.c mousefunc.c Log message: add explicit paran and drop some empty lines bringing like functions closer CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/01 14:07:26 Modified files: www/tt-rss : Makefile distinfo www/tt-rss/pkg : PLIST Log message: Update to tt-rss 1.13. Based on a mailer-mangled diff from Atanas Vladimirov, thanks! CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/01 14:19:12 Modified files: lang/seed7 : Makefile Log message: BROKEN-hppa = SIGILL during build CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/01 14:54:38 Modified files: usr.bin/openssl: Makefile ca.c enc.c s_client.c s_time.c Log message: Enable -Wshadow in openssl(1) and fix a few shadow warnings. ok jsing@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/01 14:58:42 Modified files: usr.sbin/smtpd : queue_api.c Log message: Close fd if fdopen fails ok gilles@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/01 15:30:39 Modified files: devel/iso-codes: Makefile distinfo devel/iso-codes/pkg: PLIST Log message: update to iso-codes-3.56 CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/01 15:50:18 Modified files: usr.bin/tmux : client.c cmd-list.c cmd-load-buffer.c cmd-new-window.c cmd-queue.c cmd-set-option.c cmd-split-window.c cmd-wait-for.c grid.c paste.c screen.c server-client.c tmux.h window-copy.c Log message: Various minor style and spacing nits. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/01 15:55:25 Modified files: cad/xcircuit : Makefile distinfo Removed files: cad/xcircuit/patches: patch-files_c Log message: Update to 3.7.57. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/01 15:58:41 Modified files: usr.bin/tmux : cmd-wait-for.c server.c tmux.h Log message: Wake up any clients waiting with the wait-for command when the server exits. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/01 16:00:42 Modified files: usr.bin/tmux : tmux.1 Log message: Fix typo (paneas -> panes). CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/01 16:45:11 Modified files: usr.bin/mandoc : main.c mansearch.c mansearch.h Log message: In man(1) mode, change to the right directory before starting the parser, just like traditional man(1) does, such that .so links have a chance to work. After this point, we don't need the current directory for anything else before exit, so we don't need to worry about getting back and we can safely ignore failure. This lets man(1) find more Xenocara manuals, but not all of them yet. Other issues remain that need to be fixed, too. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/01 17:15:53 Modified files: devel : Makefile Log message: Unhook ocamlnet,pcre. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/01 17:47:56 Modified files: usr.bin/mandoc : mandocdb.c Log message: When makewhatis(8) finds an .so link after the manual being pointed to has already been processed, add the file names to the names table, too, not just to the mlinks table. This fixes a bug where apropos(1) and the new man(1) wouldn't find some of the Xenocara manuals via some of their .so links. After rebuilding, run "makewhatis /usr/X11R6/man" or just wait for weekly(8). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/01 18:21:00 Modified files: lib/libc/gen : posix_spawn.c Log message: Fix previous commit: fd wasn't set in the FAE_DUP2 case CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/01 18:26:30 Modified files: regress/usr.sbin/syslogd: Makefile Proc.pm Syslogd.pm args-client-udp4-nodns.pl args-client-udp4.pl args-client-udp6-nodns.pl args-client-udp6.pl args-localhost-only4.pl args-localhost-only6.pl args-localhost-proto-udp4.pl args-localhost-proto-udp6.pl args-localhost.pl args-maxportlen.pl args-only4.pl args-only6.pl args-proto-udp.pl args-proto-udp4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl args-socket.pl funcs.pl syslogd.pl Added files: regress/usr.sbin/syslogd: args-sighup-config.pl args-sighup-privsep.pl args-sighup.pl args-sigpipe.pl args-sigterm.pl Log message: Add tests that run the syslogd signal handlers. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 00:08:00 Modified files: x11/xfce4/libxfcegui4: Makefile Log message: Force disabling gtk-doc; otherwise it breaks if configure picks it up and dpb removes it. CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/02 00:39:22 Modified files: games/scummvm : Makefile Log message: scummvm 1.7.0 switched from a builtin jpeg decoder to libjpeg. Add the missing libjpeg dep, problem found by espie@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 01:50:44 Modified files: devel/ninja : Makefile distinfo Log message: Update to ninja-1.5.1 bulk build && ok landry@ kde build && ok zhuk@ ok matthew@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:01:29 Modified files: www/tomcat/v7 : Makefile distinfo www/tomcat/v7/pkg: PLIST-examples PLIST-main Log message: Update to 7.0.55 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:11:46 Modified files: databases/redis: Makefile distinfo databases/redis/patches: patch-deps_Makefile patch-redis_conf patch-src_Makefile patch-src_scripting_c Log message: Update to redis-2.8.14 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:33:59 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in Removed files: audio/mpd/patches: patch-src_system_ByteOrder_hxx Log message: Bugfix update to mpd-0.18.13 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 02:37:53 Modified files: geo/spatialite/libspatialite: Makefile geo/spatialite/libspatialite/pkg: PLIST Log message: @comment lib/mod_spatialite.la and bump REVISION. prodded by a comment from ajacoutot@ on another upcoming port - since mod_spatialite.so is a module, we dont need to install the libtool archive. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 02:41:43 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_postgres_py Log message: Fix the postgres module on OpenBSD. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:44:16 Modified files: audio/ncmpc : Makefile distinfo audio/ncmpc/patches: patch-configure patch-src_colors_c patch-src_screen_c Log message: Update to ncmpc-0.24 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 02:47:36 Log message: Import lang/ocaml-camlp4, which is not included with OCaml 4.02 anymore. ok avsm@ Status: Vendor Tag: chrisz Release Tags: chrisz_20140902 N ports/lang/ocaml-camlp4/distinfo N ports/lang/ocaml-camlp4/Makefile N ports/lang/ocaml-camlp4/pkg/PFRAG.native N ports/lang/ocaml-camlp4/pkg/DESCR N ports/lang/ocaml-camlp4/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 02:49:53 Log message: Import lang/ocaml-camlp4 which is no longer included with OCaml 4.02 ok avsm@ Status: Vendor Tag: chrisz Release Tags: chrisz_20140902 U ports/lang/ocaml-camlp4/distinfo U ports/lang/ocaml-camlp4/Makefile U ports/lang/ocaml-camlp4/pkg/PFRAG.native U ports/lang/ocaml-camlp4/pkg/DESCR U ports/lang/ocaml-camlp4/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:56:23 Modified files: audio/pianobar : Makefile Added files: audio/pianobar/patches: patch-src_player_c Log message: Fix volume control with newer FFmpeg CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 02:59:43 Modified files: lang : Makefile Log message: Add lang/ocaml-camlp4 which is no longer included with OCaml 4.02 ok avsm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 03:14:45 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_timezone_py Log message: Fix the timezone module on BSDs. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 03:23:13 Modified files: games/xkobo : Makefile Added files: games/xkobo/patches: patch-enemies_h Log message: work-around addition of pipe2() in unistd.h CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 03:24:10 Modified files: www/php-predis : Makefile distinfo www/php-predis/pkg: PLIST Log message: Update to Predis-1.0.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 03:24:24 Log message: Import librasterlite2 1.0.0rc0. librasterlite2 is an open source library that stores and retrieves huge raster coverages using a SpatiaLite DBMS. It doesnt conflict with the existing librasterlite. with tweaks from and ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/geo/spatialite/librasterlite2/Makefile N ports/geo/spatialite/librasterlite2/distinfo N ports/geo/spatialite/librasterlite2/patches/patch-src_Makefile_in N ports/geo/spatialite/librasterlite2/pkg/DESCR N ports/geo/spatialite/librasterlite2/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 03:24:45 Modified files: devel/coccinelle: Makefile devel/ocaml-bitstring: Makefile devel/ocaml-camomile: Makefile devel/ocaml-lambda-term: Makefile devel/ocaml-lwt: Makefile devel/ocaml-net: Makefile devel/ounit : Makefile devel/utop : Makefile lang/ocaml : Makefile distinfo ocaml.port.mk lang/ocaml/patches: patch-configure lang/ocaml/pkg : PFRAG.native-main PLIST-main net/mldonkey/stable: Makefile productivity/wyrd: Makefile sysutils/findlib: Makefile sysutils/findlib/pkg: PFRAG.dynlink-native PFRAG.native PLIST textproc/ocaml-text: Makefile x11/lablgtk2 : Makefile Added files: lang/ocaml/patches: patch-asmrun_signals_osdep_h Removed files: lang/ocaml/pkg : DESCR-camlp4 DESCR-labltk PFRAG.native-camlp4 PFRAG.native-labltk PFRAG.shared-labltk PLIST-camlp4 PLIST-labltk Log message: Upgrade OCaml to 4.02. Since camlp4 is now a seperate port, add / change BUILD_DEPENDS for all ports using camlp4. Findlib is changed because it won't use camlp4 and doesn't install the Bytes module anymore, which is now included in OCaml 4.02. ok avsm@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 03:25:28 Log message: Import librewms 1.0.0. LibreWMS is a light-weight, elementary simple free software application implementing the functionalities of an almost complete standard compliant WMS client; in other words, you can use this simple tool in order to directly access an external WMS server. ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/geo/spatialite/librewms/Makefile N ports/geo/spatialite/librewms/distinfo N ports/geo/spatialite/librewms/pkg/DESCR N ports/geo/spatialite/librewms/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 03:26:12 Modified files: geo/spatialite : Makefile Log message: +librasterlite2,librewms CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 03:33:53 Modified files: games/kobodeluxe: Makefile Added files: games/kobodeluxe/patches: patch-enemies_h Log message: work-around addition of pipe2() in unistd.h CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 04:14:33 Modified files: net/mfi : Makefile Log message: prepare for FAKE_AS_ROOT=No CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/02 04:14:55 Modified files: sys/dev/pci : if_bge.c if_bgereg.h Log message: Add Jumbo support for BCM5714 / BCM5780 and BCM5717 / BCM5719 / BCM5720 / BCM57765 / BCM57766 chipsets. ok mikeb@ "i think it should go in" dlg@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/02 04:21:32 Modified files: share/man/man4 : bge.4 Log message: Jumbo support for some newer chipsets. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/02 04:24:32 Modified files: share/man/man4 : msk.4 sk.4 Log message: we dont enable jumbos based on the interfaces mtu config. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 04:52:43 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-CMakeLists_txt patch-lib_awful_widget_taglist_lua_in patch-lib_menubar_menu_gen_lua_in patch-systray_c Added files: x11/awesome/patches: patch-globalconf_h patch-lib_wibox_init_lua_in Log message: Merge fixes from the stable branch. systray: Only intern the atom once systray: Only register/unregister when needed systray: Systray won't show with margin layout lib.awful.taglist: fix multiple tag selection menubar: Menubar should check all standard directories wibox: Make :find_widgets() easily accessible CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/02 05:09:38 Modified files: mail/zarafa : Makefile.inc mail/zarafa/zarafa: Makefile distinfo mail/zarafa/zarafa/patches: patch-common_Makefile_in patch-common_platform_linux_h patch-configure patch-doc_Makefile_in patch-doc_manual_xml patch-inetmapi_Makefile_in patch-installer_linux_server_cfg patch-libfreebusy_Makefile_in patch-provider_client_Makefile_in patch-provider_contacts_Makefile_in patch-provider_libserver_Makefile_in patch-provider_server_ECServer_cpp patch-provider_server_Makefile_in patch-provider_soap_Makefile_in patch-spooler_DAgent_cpp Log message: update to 7.1.11 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/02 05:10:35 Modified files: mail/zarafa/webapp: Makefile distinfo mail/zarafa/webapp/pkg: PLIST Log message: update to 1.6 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 05:16:49 Modified files: devel/py-doit : Makefile distinfo devel/py-doit/pkg: PLIST Log message: Update to 0.26.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 06:07:46 Modified files: geo/postgis : Makefile distinfo geo/postgis/patches: patch-liblwgeom_lwin_geojson_c geo/postgis/pkg: PLIST Removed files: geo/postgis/patches: patch-configure Log message: Update to postgis 2.1.3. Remove patch merged upstream in http://trac.osgeo.org/postgis/ticket/2723 pass INSTALL=install to the do-test target so that things are not installed with -o/-g. All tests are successful on amd64. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 06:31:47 Log message: import portscout-0.8.1.1 (0.8.1 with OpenBSD support) Portscout is a tool which looks for new versions of software in the FreeBSD ports tree, and potentially other software repositories. Various factors make this task a bit more difficult than it might initially seem. In particular, the array of weird and wonderful versioning schemes software vendors manage to come up with. A list of results can be found here: http://portscout.jasper.la/ ok ajacoutot@ Status: Vendor Tag: jasper Release Tags: jasper_20140209 N ports/misc/portscout/distinfo N ports/misc/portscout/Makefile N ports/misc/portscout/pkg/PLIST N ports/misc/portscout/pkg/DESCR N ports/misc/portscout/patches/patch-portscout_conf No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 06:32:24 Modified files: misc : Makefile Log message: +portscout CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 06:35:30 Modified files: net/unifi : Makefile Log message: fix for FAKE_AS_ROOT=No CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 06:56:35 Modified files: databases/postgresql: Makefile lang/ruby : Makefile.inc Log message: not yet on by default, still some love needed for umasks CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 07:04:34 Modified files: security/wpa_supplicant: Makefile distinfo security/wpa_supplicant/patches: patch-src_utils_eloop_c Removed files: security/wpa_supplicant/patches: patch-src_crypto_ms_funcs_c patch-src_crypto_tls_h patch-src_crypto_tls_openssl_c patch-src_utils_common_c Log message: Update to wpa_supplicant-2.2 Tested by pascal@ and myself. I also take maintainership, as per sthen's request. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:22:32 Log message: Import girara 0.2.2. Girara is a library that implements a user interface that focuses on simplicity and minimalism. Currently based on GTK+3, a cross-platform widget toolkit, it provides an interface that focuses on three main components: A so-called view widget that represents the actual application (e.g. a website (browser), an image (image viewer) or the document (document viewer)), an input bar that is used to execute commands of the application and the status bar which provides the user with current information. girara was designed to replace and enhance the user interface that is used by zathura and jumanji and other features that those applications share. ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/x11/girara/Makefile N ports/x11/girara/distinfo N ports/x11/girara/patches/patch-Makefile N ports/x11/girara/patches/patch-macros_h N ports/x11/girara/pkg/DESCR N ports/x11/girara/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:23:30 Modified files: x11 : Makefile Log message: +girara CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:29:57 Log message: (re-)import zathura/core 0.2.9. zathura is a highly customizable and functional PDF viewer based on the poppler rendering library and the gtk+ toolkit. The idea behind zathura is an application that provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. Note that after 0.1.0, zathura was rearchitectured/splitted between 'core' (the viewer itself) and 'plugins' (taking care of the rendering itself). Users of previous version will need to install zathura-pdf-poppler or zathura-pdf-mupdf to restore their featureset. ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/textproc/zathura/core/Makefile N ports/textproc/zathura/core/distinfo N ports/textproc/zathura/core/patches/patch-Makefile N ports/textproc/zathura/core/patches/patch-tests_Makefile N ports/textproc/zathura/core/pkg/DESCR N ports/textproc/zathura/core/pkg/PLIST N ports/textproc/zathura/core/pkg/README No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 07:30:13 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_timezone_py patch-salt_modules_mount_py Log message: Use strip() and lstrip() instead of replace(). CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:32:54 Log message: Import zathura/plugins: - zathura-pdf-poppler-0.2.5 using poppler lib for pdf rendering - zathura-pdf-mupdf-0.2.6 using mupdf backend for pdf (note, the two pdf plugins install the same file and thus conflict) - zathura-ps-0.2.2 for PostScript files - zathura-djvu-0.2.3 for DJVU files - zathura-cb-0.1.2 for comic book archives ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/textproc/zathura/plugins/Makefile.inc N ports/textproc/zathura/plugins/Makefile N ports/textproc/zathura/plugins/cb/Makefile N ports/textproc/zathura/plugins/cb/distinfo N ports/textproc/zathura/plugins/cb/pkg/DESCR N ports/textproc/zathura/plugins/cb/pkg/PLIST N ports/textproc/zathura/plugins/djvu/Makefile N ports/textproc/zathura/plugins/djvu/distinfo N ports/textproc/zathura/plugins/djvu/pkg/DESCR N ports/textproc/zathura/plugins/djvu/pkg/PLIST N ports/textproc/zathura/plugins/mupdf/Makefile N ports/textproc/zathura/plugins/mupdf/distinfo N ports/textproc/zathura/plugins/mupdf/pkg/DESCR N ports/textproc/zathura/plugins/mupdf/pkg/PLIST N ports/textproc/zathura/plugins/poppler/Makefile N ports/textproc/zathura/plugins/poppler/distinfo N ports/textproc/zathura/plugins/poppler/pkg/DESCR N ports/textproc/zathura/plugins/poppler/pkg/PLIST N ports/textproc/zathura/plugins/ps/Makefile N ports/textproc/zathura/plugins/ps/distinfo N ports/textproc/zathura/plugins/ps/pkg/DESCR N ports/textproc/zathura/plugins/ps/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:33:39 Modified files: textproc/zathura: Makefile Removed files: textproc/zathura: distinfo textproc/zathura/patches: patch-config_def_h patch-config_mk textproc/zathura/pkg: DESCR PLIST Log message: Remove old files from previous zathura port - update Makefile to recurse into core and plugins subdirs. CVSROOT: /cvs Module name: ports Changes by: pea@cvs.openbsd.org 2014/09/02 07:39:39 Modified files: databases/postgresql: Makefile distinfo databases/postgresql/pkg: PLIST-docs PLIST-plpython Log message: Update to 9.3.5 ok sthen@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:42:47 Modified files: textproc/zathura/plugins: Makefile.inc Log message: fix LDEP CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 08:01:51 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_network_py Log message: Fix arp() and mod_hostname() to work on OpenBSD. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/02 08:08:39 Modified files: app/cwm : mousefunc.c Log message: bring menu bits closer together CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 08:26:39 Modified files: infrastructure/mk: bsd.port.mk databases/sqlports: Makefile databases/sqlports/files: Info.pm Log message: hookup PORTSCOUT ok espie@ CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/02 08:27:23 Modified files: share/man/man5 : bsd.port.mk.5 Log message: document new PORTSCOUT variable. w/ and ok espie@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 08:28:20 Modified files: www/webkit : Makefile x11/gnome : Makefile.inc Log message: use the new PORTSCOUT variable to instruct it to ignore odd versions (i.e. unstable releases) ok aja@ espie@ landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 08:39:37 Modified files: x11/gnome : Makefile.inc gnome.port.mk Log message: move PORTSCOUT to gnome.port.mk so all gnome ports can use it CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 08:55:37 Modified files: math/R : Makefile distinfo math/R/patches : patch-Makefile_in patch-configure patch-src_main_connections_c patch-src_main_main_c patch-src_main_platform_c patch-src_scripts_javareconf_in math/R/pkg : PLIST Added files: math/R/patches : patch-src_main_Rstrptime_h Log message: Update to R-3.1.1 From maintainer Rafael Sadowski with a patch by zhuk@ to please -Wbounded checks. Also, I patched Makefile.in to not check for java during the build. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 09:01:12 Modified files: lang/open-cobol: Makefile Log message: do not pick up kpathsea/getopt.h from print/texlive/base CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:04:59 Modified files: misc/portscout : Makefile misc/portscout/pkg: PLIST Added files: misc/portscout/patches: patch-portscout_pod Log message: Rename the utility to 'portscout' (instead of portscout.pl). Install the sample file with mode 0640 since it can contain a DB password. In the man page, rename the postgres user to match OpenBSD's. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:12:22 Modified files: misc/portscout : Makefile Log message: Missing RUN_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:16:26 Modified files: x11/gnome : gnome.port.mk Log message: Move PORTSCOUT at the top. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:36:27 Modified files: x11/gnome/tracker: Makefile distinfo x11/gnome/tracker/pkg: PLIST Log message: Update to meta-tracker-1.0.4. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/02 10:01:34 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/02 10:20:41 Modified files: usr.sbin/httpd : httpd.h server.c server_fcgi.c Log message: FastCGI did not support persistent connections. Add initial support for persistent connections with FastCGI by implementing chunked Transfer-Encoding. This only works with HTTP/1.1. With input and help from florian@ who found some FastCGI edge cases. OK florian@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:34:57 Modified files: mail/mozilla-thunderbird: Makefile distinfo mail/thunderbird-i18n: Makefile.inc distinfo Log message: Update to thunderbird 31.1.0/lightning 3.3.1. See https://www.mozilla.org/en-US/thunderbird/31.1.0/releasenotes/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:36:52 Modified files: www/firefox-esr: Makefile distinfo www/firefox-esr-i18n: Makefile.inc distinfo Log message: Update to firefox-esr 31.1.0. See https://www.mozilla.org/en-US/firefox/31.1.0/releasenotes/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:37:24 Modified files: devel/xulrunner/24: Makefile distinfo Log message: Update to xulrunner 24.8.0 built from the corresponding firefox ESR. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:43:04 Modified files: www/firefox-i18n: Makefile.inc distinfo www/mozilla-firefox: Makefile distinfo www/mozilla-firefox/patches: patch-browser_installer_Makefile_in patch-gfx_skia_moz_build patch-js_src_ctypes_libffi_src_dlmalloc_c patch-storage_src_mozStorageConnection_cpp Removed files: www/mozilla-firefox/patches: patch-configure_in patch-toolkit_components_downloads_nsDownloadManager_cpp patch-webapprt_gtk2_Makefile_in patch-webapprt_moz_build patch-xpcom_io_SpecialSystemDirectory_cpp Log message: Update to firefox 32.0 - see https://www.mozilla.org/en-US/firefox/32.0/releasenotes/ - remove patch-toolkit_components_downloads_nsDownloadManager_cpp and patch-xpcom_io_SpecialSystemDirectory_cpp fiddling with modes when creating user dirs, they never made sense to me, and this is the wrong place to touch this. - remove patch-webapprt_moz_build, patch-webapprt_gtk2_Makefile_in and patch-configure_in from #1012447, merged upstream CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 11:18:55 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_bsd_shadow_py patch-salt_modules_mount_py patch-salt_modules_network_py patch-salt_modules_postgres_py patch-salt_modules_timezone_py patch-salt_modules_useradd_py patch-salt_states_user_py Log message: All patches have been committed upstream. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 11:43:10 Modified files: misc/portscout : Makefile misc/portscout/patches: patch-portscout_conf Log message: Tweak default config. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/02 11:43:29 Modified files: regress/usr.sbin/syslogd: Syslogd.pm args-localhost-only4.pl args-localhost-only6.pl args-localhost-proto-udp4.pl args-localhost-proto-udp6.pl args-localhost.pl args-proto-udp.pl args-proto-udp4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl args-sighup-config.pl args-sighup-privsep.pl args-sighup.pl args-sigpipe.pl args-sigterm.pl funcs.pl Log message: To examine the operation of the signal handlers, the tests grep in the ktrace output of syslogd. Also make the tests work without DNS and without sudo. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 12:31:32 Modified files: sysutils/ttyload: Makefile Log message: Change maintainer email address to my openbsd address (sync with my other ports) and bump. ok jturner@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 13:15:40 Modified files: misc/vttest : Makefile distinfo Log message: maintenance update to 20140305 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 13:17:01 Modified files: news/trn : Makefile Added files: news/trn/patches: patch-filter_c Log message: work-around addition of pipe2() in unistd.h; ok espie@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 13:23:33 Modified files: sysutils/upower: Makefile distinfo Removed files: sysutils/upower/patches: patch-src_openbsd_up-backend_c Log message: Update to upower 0.99.1. Remove patch merged upstream, and now useless dep on polkit. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/02 13:39:35 Modified files: net/mirmon : Makefile distinfo Log message: update to mirmon 2.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/02 13:45:53 Modified files: security/sslsplit: Makefile distinfo security/sslsplit/patches: patch-GNUmakefile patch-sslsplit_1 Log message: update to sslsplit 0.4.8 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 13:46:53 Modified files: audio/scmpc : Makefile distinfo audio/scmpc/patches: patch-scmpc_1_in patch-src-preferences_c Log message: update to scmpc 0.4.1, now uses libmpdclient CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 13:48:39 Log message: Import games/cpat CPat is a curses based solitaire/patience collection. It's pretty stable and at present contains implementations of Freecell, Klondike, Spider, 40 Thieves, Baker's Dozen, Scorpion, Penguin, Yukon and Stategy. The games are played in your favourite shell using keyboard commands. ok landry@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140902 N ports/games/cpat/Makefile N ports/games/cpat/distinfo N ports/games/cpat/pkg/PLIST N ports/games/cpat/pkg/DESCR N ports/games/cpat/patches/patch-doc_cpat_6 No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 13:49:52 Modified files: games : Makefile Log message: +cpat CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/02 13:53:08 Modified files: telephony/asterisk: Makefile distinfo telephony/asterisk/patches: patch-channels_chan_sip_c Log message: update to asterisk 11.12.0 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 13:54:24 Modified files: net/curl : Makefile distinfo net/curl/pkg : PLIST Log message: maintenance update to 7.37.1 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/02 14:45:54 Modified files: archivers/lzip/lunzip: Makefile distinfo Log message: Update to lunzip 1.6. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/02 16:59:37 Modified files: devel/p5-Data-Validate-IP: Makefile distinfo Log message: update p5-Data-Validate-IP to 0.24 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/02 18:46:04 Modified files: sys/dev/ic : mpivar.h mpi.c Log message: tasks dont need a mutex and a semaphore to protect against multiple uses of the task structure like workq tasks did. tested on an fc929 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/02 20:34:34 Modified files: sbin/dump : dump.h Log message: Kill off compat for systems that don't define NAME_MAX or that lack stuff like, oh, strchr() and prototypes for read() and write(). Mark quit() as both __dead and printf-like, and dumpabort() as __dead. ok krw@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/02 20:37:24 Modified files: sbin/restore : extern.h tape.c Log message: Mark msg() and panic() as printf-like and fix the format error it turns up ok krw@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/02 23:17:08 Modified files: usr.bin/mandoc : apropos.1 main.c man.1 man_term.c mandoc.1 mdoc_term.c term.h term_ascii.c Log message: Implement the traditional -h option for man(1): show the SYNOPSIS only. As usual, we get mandoc -h and apropos -h for free. Try stuff like "apropos -h In=dirent" or "apropos -h Fa=timespec". Only useful for terminal output, so -Tps, -Tpdf, -Thtml ignore -h for now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 23:57:51 Modified files: misc/portscout : Makefile misc/portscout/pkg: PLIST Log message: Install missing reminder.mail template. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 00:03:41 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to youtube-dl-2014.09.01.2 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 00:23:10 Modified files: mail/geary : Makefile distinfo mail/geary/pkg : PLIST Log message: Update to geary 0.6.3, reminded by ajacoutot@ and jasper@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 00:43:28 Modified files: x11/mplayer : Makefile distinfo x11/mplayer/patches: patch-DOCS_man_en_mplayer_1 patch-configure Removed files: x11/mplayer/patches: patch-libmpdemux_demux_real_c Log message: Update to MPlayer 20140824 snapshot. ok jca@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 01:13:02 Modified files: net/p5-Net-Patricia: Makefile distinfo net/p5-Net-Patricia/pkg: PLIST Log message: Update p5-Net-Patricia to 1.22. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/03 01:41:10 Modified files: devel/ounit : Makefile distinfo devel/ounit/pkg: PFRAG.dynlink-native PFRAG.native PLIST Log message: Update to 2.0.0 ok avsm@ CVSROOT: /cvs Module name: src Changes by: giovanni@cvs.openbsd.org 2014/09/03 01:42:47 Modified files: usr.sbin/smtpd : lka.c Log message: if crypt(3) fails return an authentication error ok gilles@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/03 01:44:33 Modified files: sys/arch/amd64/conf: GENERIC.MP sys/arch/i386/conf: GENERIC.MP Log message: Sync amd64 and i386 GENERIC.MP with other arches by including a commented-out MP_LOCKDEBUG option ok mpi@ phessler@ dlg@ guenther@ CVSROOT: /cvs Module name: src Changes by: giovanni@cvs.openbsd.org 2014/09/03 01:47:50 Modified files: usr.bin/encrypt: encrypt.1 encrypt.c Log message: kill md5 support, broken since May ok tedu@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/03 02:26:00 Modified files: usr.bin/encrypt: encrypt.c Log message: remove -m from usage(); CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 02:51:01 Modified files: sys/net : route.c Log message: Treat broadcast entries like local ones and give them the highest route priority. While here document a RTM_ADD message is only send to userland for local entries. ok mikeb@, florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 02:53:49 Modified files: sysutils/salt : Makefile Log message: Add missing TEST_DEPENDS and update the 'make test' stats. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 02:53:54 Modified files: sys/netinet : if_ether.c Log message: Make sure broadcast entries won't be freed by the arp timer so we can use them for address lookups. While here do let in_arpinput() overwrite local or broadcast entries. ok mikeb@, florian@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 02:54:41 Modified files: security/zkt : Makefile Log message: fix following removal of BIND from base; pick up tools from the package instead CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 02:59:06 Modified files: sys/netinet : in.c Log message: When a route to prefix (connected route) is added, if its associated broadcast address is non null, add a broadcast entry flagged with RTF_BROADCAST. Re-use the existing logic to switch a route to prefix from an ifa to another to also move this broadcast entry. Prior to this change broadcast entries were simple clonned ARP entries, that would be deleted once their timer expired since they would always be incomplete. With this change they are now persistant and identifiable with a new flag This version of the diff prevent a corruption reported by millert@ ok mikeb@, florian@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/03 03:05:25 Modified files: infrastructure/mk: bsd.port.mk Log message: fix FAKE_AS_ROOT=Yes... don't create links in that case. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 03:11:20 Modified files: sysutils/salt : Makefile sysutils/salt/pkg: PLIST Log message: Seems that the egg-info file now always installs with the proper version. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 03:28:13 Modified files: devel/libwnck3 : Makefile distinfo devel/libwnck3/pkg: PLIST Log message: update to libwnck3-3.4.9 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 03:46:46 Modified files: math/ntl : Makefile distinfo math/ntl/patches: patch-src_DoConfig patch-src_tools_c math/ntl/pkg : PLIST Log message: Update ntl to 6.2.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 03:53:55 Modified files: x11/gnome : gnome.port.mk Log message: Consistency. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 03:55:19 Modified files: devel/appstream-glib: Makefile security/p11-kit: Makefile Log message: Add PORTSCOUT entries. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 04:06:23 Log message: Import p5-Modern-Perl 1.20140107. Modern Perl programs use several modules to enable additional features of Perl and of the CPAN. Instead of copying and pasting all of these use lines, instead write only one: use Modern::Perl; This enables the strict and warnings pragmas, as well as all of the features available in Perl 5.10. It also enables C3 method resolution order as documented in perldoc mro and loads IO::File and IO::Handle so that you may call methods on filehandles. In the future, it may include additional core modules and pragmas. From MAINTAINER edward # rdtan / net, ok sthen@ Status: Vendor Tag: edward Release Tags: landry_20140903 N ports/devel/p5-Modern-Perl/Makefile N ports/devel/p5-Modern-Perl/distinfo N ports/devel/p5-Modern-Perl/pkg/DESCR N ports/devel/p5-Modern-Perl/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 04:08:47 Modified files: devel : Makefile Log message: +p5-Modern-Perl CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 04:16:43 Modified files: multimedia/get_iplayer: Makefile multimedia/get_iplayer/patches: patch-get_iplayer Log message: pull up get_iplayer changes from git head CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 04:21:39 Modified files: infrastructure/db: systrace.filter Log message: add native-pipe2, from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/03 04:22:03 Modified files: lang/ocaml-camlp4: Makefile lang/ocaml-camlp4/pkg: PLIST Log message: fix installation location of findlib META. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 04:24:24 Modified files: devel/ptlib : Makefile Removed files: devel/ptlib/patches: patch-make_ptbuildopts_mak_in Log message: Drop patch; not needed anymore since the recent FAKE_AS_ROOT fix. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 04:39:41 Modified files: usr.sbin/arp : arp.8 arp.c usr.sbin/ndp : ndp.8 ndp.c Log message: Be coherent in the way arp(8) and ndp(8) display local entries and use a new flag `l' to ditinguish them. Also skip broadcast entries, they are not reall ARP entries and will never be resolved to anything, requested by deraadt@. ok bluhm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 05:11:27 Modified files: net/librest : Makefile distinfo net/librest/pkg: PLIST Log message: update to librest-0.7.92 CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/03 05:17:59 Modified files: graphics/opencolorio: Makefile Added files: graphics/opencolorio/patches: patch-CMakeLists_txt patch-export_OpenColorIO_OpenColorIO_h patch-ext_yaml-cpp-0_5_1_patch patch-src_core_Config_cpp patch-src_core_Display_cpp patch-src_core_Display_h patch-src_core_OCIOYaml_cpp patch-src_core_OCIOYaml_h Log message: Merge commit 63c6bde2acac363c8c5e7fd3d744e17ea99e20ab from upstream to make this work with both the in-tree and a newer version of yaml-cpp. Requested by jasper@, same diff from kirby@. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 05:19:33 Modified files: devel/py-clint : Makefile distinfo devel/py-clint/pkg: PLIST Log message: maintainer update to py-clint 0.3.7, from frantisek holop (plus whitespace consistency tweak from me) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 05:47:30 Modified files: devel/py-tz : Makefile distinfo devel/py-tz/pkg: PLIST Log message: maintainer update to py-tz 2014.7, from frantisek holop CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 05:55:55 Modified files: net/icinga/core: Makefile distinfo net/icinga/core/pkg: PLIST-ido Log message: update to icinga 1.11.7 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 06:03:51 Added files: x11/ogre/patches: patch-Samples_Browser_CMakeLists_txt Log message: Fix this in preparation for cmake-3.0.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 06:12:42 Modified files: misc/portscout : Makefile distinfo Log message: sync with upstream git: - prevent annoying warning with empty master sites - enable reading PORTSCOUT variable on OpenBSD CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 06:51:50 Modified files: mail/p5-Email-Filter: Makefile distinfo Log message: Maintainer update to p5-Email-Filter 1.034, from Armin Wolfermann CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 07:19:00 Log message: Import Dust Racing 1.7.3. Dust Racing (Dustrac) is a tile-based, cross-platform 2D racing game written in Qt (C++) and OpenGL. Dust Racing comes with a Qt-based level editor for easy level creation. A separate engine, MiniCore, is used for physics modeling. From an original submission by bentley@, updated and tweaked by me & dcoppa ok kirby@ dcoppa@ Status: Vendor Tag: bentley Release Tags: landry_20140903 N ports/games/dustrac/Makefile N ports/games/dustrac/distinfo N ports/games/dustrac/pkg/DESCR N ports/games/dustrac/pkg/PLIST N ports/games/dustrac/patches/patch-InstallLinux_cmake No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 07:19:57 Modified files: games : Makefile Log message: +dustrac CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 07:39:15 ports/textproc/py-sphinx/patches Update of /cvs/ports/textproc/py-sphinx/patches In directory cvs.openbsd.org:/tmp/cvs-serv1125/patches Log Message: Directory /cvs/ports/textproc/py-sphinx/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 07:43:16 Modified files: textproc/py-sphinx: Makefile Added files: textproc/py-sphinx/patches: patch-sphinx_writers_manpage_py Log message: Fix manpage writer, from upstream HG changeset ffb145b7884fc926d6a68f4aaeede1d4964f727c Needed by the upcoming update to cmake-3.0.1 This port could use an update... CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 07:43:39 Modified files: databases/py-mysql: Makefile distinfo databases/py-mysql/patches: patch-_mysql_c databases/py-mysql/pkg: PLIST Log message: Update py-mysql to 1.2.5, from frantisek holop, thanks ! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 08:00:25 Modified files: devel/appstream-glib: Makefile distinfo Log message: Update to appstream-glib-0.2.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 08:57:14 Modified files: x11/gnome/caribou: Makefile distinfo x11/gnome/caribou/pkg: PLIST Removed files: x11/gnome/caribou/patches: patch-libcaribou_Makefile_in Log message: Update to caribou-0.4.14. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 09:03:33 Modified files: textproc/libxml++: Makefile textproc/libxml++/pkg: PLIST Removed files: textproc/libxml++/pkg: PFRAG.shared Log message: Move to the x11/gnome MODULE. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/03 09:56:07 Modified files: regress/usr.sbin/syslogd: Makefile funcs.pl Added files: regress/usr.sbin/syslogd: args-client-unix.pl args-maxunix.pl Log message: Add tests that send log messages via unix domain sockets to syslogd. Also check that the maximum number of -a path is handled correctly. CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/03 10:12:14 Modified files: www/piwik : Makefile distinfo www/piwik/pkg : PLIST Log message: Update to 2.5.0 CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/03 10:28:31 Modified files: databases/mysql-utilities: Makefile distinfo Log message: Bugfix update to 1.4.4 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/03 11:48:19 Modified files: lang/ocaml/pkg : PFRAG.native-main PLIST-main Log message: Fix PLISTs for bytecode archs. No plist change for native archs. Bytecode archs were broken until now. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/03 12:08:26 Modified files: usr.bin/mandoc : main.c mandocdb.c mansearch.c mansearch.h share/man/man5 : mandoc.db.5 Log message: If a manual page is installed gzip(1)ed, let makewhatis(8) take note in mandoc.db(5), such that man(1) -w and apropos(1) -w can report the correct filename. This is a prerequisite for letting apropos -a and man support gzip'ed manuals in the future, which doesn't work yet. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/09/03 12:55:07 Modified files: usr.bin/ssh : sshpty.c Log message: tighten permissions on pty when the "tty" group does not exist; pointed out by Corinna Vinschen; ok markus CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:14:21 Modified files: audio/py-mpd2 : Makefile distinfo Log message: update to py-mpd2-0.5.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:16:08 Modified files: devel/p5-Test-Manifest: Makefile distinfo devel/p5-Test-Manifest/pkg: PLIST Log message: update to p5-Test-Manifest-2.02 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:19:45 Modified files: net/p5-POE-Filter-IRCD: Makefile distinfo Log message: update to p5-POE-Filter-IRCD-2.44 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:23:54 Modified files: audio/glyr : Makefile distinfo audio/glyr/pkg : PLIST Log message: update to glyr-1.0.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:24:36 Modified files: misc/portscout : Makefile distinfo misc/portscout/pkg: PLIST Log message: - unbreak the sourceforge scanner and add a scanner for ports with releases on github CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:29:14 Modified files: sysutils/libvirt: Makefile distinfo Log message: update to libvirt-1.2.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:29:19 Modified files: sysutils/libvirt-python: Makefile distinfo Log message: update to libvirt-python-1.2.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:42:16 Modified files: x11/gnome : gnome.port.mk Log message: use += to set PORTSCOUT so consumers of this module can append their own stuffs to it as discussed with aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:42:45 Modified files: devel/vte : Makefile Log message: limit portscout to the gnome2 version of vte. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:44:51 Modified files: x11/gnome/gedit: Makefile distinfo Log message: gedit-3.12.2 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/03 13:53:02 Modified files: misc/p5-File-LibMagic: Makefile distinfo Log message: update p5-File-LibMagic to 1.03 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 15:15:44 Modified files: multimedia/minidlna: Makefile distinfo multimedia/minidlna/patches: patch-upnphttp_c Removed files: multimedia/minidlna/patches: patch-metadata_c Log message: update to minidlna 1.1.4, from Mark Patruck CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/03 15:19:34 Modified files: etc : changelist Log message: No more /etc/rndc.key. ok sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/03 17:20:33 Modified files: usr.bin/mandoc : main.c mandoc.h mandocdb.c msec.c read.c Log message: Add *.gz support to apropos(1) -a, manm(1), and even mandoc(1). Implemented by moving the zip code from makewhatis(8) to the parser lib. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/03 18:36:00 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: rework how pools with large pages (>PAGE_SIZE) are implemented. this moves the size of the pool page (not arch page) out of the pool allocator into struct pool. this lets us create only two pools for the automatically determined large page allocations instead of 256 of them. while here support using slack space in large pages for the pool_item_header by requiring km_alloc provide pool page aligned memory. lastly, instead of doing incorrect math to figure how how many arch pages to use for large pool pages, just use powers of two. ok mikeb@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/09/03 19:17:11 Modified files: . : stable.html Log message: add hint about GENERIC.MP CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 23:31:34 Modified files: x11/gnome/gdm : Makefile x11/gnome/gdm/pkg: PLIST Log message: Fix @extra files list. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 23:32:44 Modified files: devel/pango : Makefile distinfo Log message: Update to pango-1.36.7. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 23:37:41 Log message: Import of x265. x265 is an open-source project and free application library for encoding video streams into the H.265/High Efficiency Video Coding (HEVC) format. ok ajacoutot@ Status: Vendor Tag: brad Release Tags: brad_20140904 N ports/multimedia/x265/Makefile N ports/multimedia/x265/distinfo N ports/multimedia/x265/patches/patch-source_CMakeLists_txt N ports/multimedia/x265/patches/patch-source_common_version_cpp N ports/multimedia/x265/pkg/PLIST N ports/multimedia/x265/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 23:39:11 Modified files: multimedia : Makefile Log message: +x265 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 23:49:49 Modified files: graphics/ffmpeg: Makefile Log message: Enable the x265 support. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 23:58:50 Modified files: devel/pyflakes : Makefile distinfo devel/pyflakes/pkg: PLIST Log message: Maintainer update to pyflakes 0.8.1, from frantisek holop CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/04 01:04:57 Log message: Import html-xml-utils-6.7. html-xml-utils contains a number of simple utilities for manipulating HTML and XML files. They perform actions such as number headings in HTML, make a table of contents, pretty-print, and so on. ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140904 N ports/textproc/html-xml-utils/Makefile N ports/textproc/html-xml-utils/distinfo N ports/textproc/html-xml-utils/pkg/PLIST N ports/textproc/html-xml-utils/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/04 01:05:42 Modified files: textproc : Makefile Log message: +html-xml-utils CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 01:43:56 Modified files: devel/ocaml-extlib: Makefile distinfo devel/ocaml-extlib/pkg: PFRAG.native PLIST Removed files: devel/ocaml-extlib/patches: patch-Makefile Log message: straightforward upgrade to 1.6.1 ok avsm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 01:46:07 Modified files: editors/subtitleeditor: Makefile distinfo Log message: Update to subtitleeditor-0.41.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 02:20:16 Modified files: security/heimdal: Makefile Log message: Make sure not to pick-up libexecinfo if installed. spotted by espie@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:24:43 Modified files: productivity/projectlibre: Makefile distinfo Log message: update to projectlibre-1.5.9 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:32:56 Modified files: sysutils/mcollective-plugins/package-agent: Makefile distinfo Log message: update to mcollective-package-agent-4.3.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:36:47 Modified files: devel/py-gobject: Makefile textproc/gtkspell: Makefile devel/libwnck : Makefile www/gtkhtml3 : Makefile www/gtkhtml4 : Makefile Log message: these ports have multiple versions in the tree, (e.g. py-gobject and py-gobject3), so add PORTSCOUT annotations to limit the versions to look for as otherwise it would pickup a newer version (3.something) which is actually packaged by the other port (py-gobject3). ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:52:09 Modified files: sysutils/mcollective-plugins/puppet-agent: Makefile distinfo sysutils/mcollective-plugins/puppet-agent/pkg: PLIST Log message: update to puppet-agent 1.8.0 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/04 04:23:50 Modified files: graphics/pngcrush: Makefile distinfo Log message: Update pngcrush to 1.7.77. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 04:43:07 Modified files: graphics/libgphoto2: Makefile distinfo Log message: Update to libgphoto-2.5.5.1. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/04 05:48:36 Modified files: security/pdfcrack: Makefile distinfo security/pdfcrack/patches: patch-Makefile Log message: Update pdfcrack to 0.14. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 05:56:52 Modified files: games/tuxpaint : Makefile distinfo games/tuxpaint/patches: patch-Makefile patch-src_manpage_tuxpaint_1 patch-src_tuxpaint_c games/tuxpaint/pkg: PLIST Removed files: games/tuxpaint/pkg: PFRAG.shared Log message: Update to tuxpaint-0.9.22. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/04 06:32:45 Modified files: devel/protobuf-c: Makefile distinfo devel/protobuf-c/pkg: PLIST Added files: devel/protobuf-c/patches: patch-Makefile_am Removed files: devel/protobuf-c/patches: patch-configure patch-src_Makefile_in patch-src_google_protobuf-c_protobuf-c-data-buffer_c patch-src_google_protobuf-c_protobuf-c-dispatch_c patch-src_google_protobuf-c_protobuf-c-rpc_c patch-src_google_protobuf-c_protobuf-c_c devel/protobuf-c/pkg: PFRAG.shared Log message: Update to protobuf-c 1.0.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/04 06:33:27 Modified files: audio/umurmur : Makefile distinfo audio/umurmur/patches: patch-src_client_c patch-src_conf_c patch-src_messages_c patch-src_ssl_h Added files: audio/umurmur/patches: patch-CMakeLists_txt patch-cmake_Modules_FindLibconfig_cmake patch-cmake_Modules_FindProtobufC_cmake patch-src_byteorder_h patch-src_config_h_in patch-src_server_c Removed files: audio/umurmur/patches: patch-src_conf_h patch-src_crypt_c patch-src_crypt_h patch-src_types_h Log message: Update to umurmur-0.2.15 CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/04 07:45:17 Modified files: usr.sbin/httpd : parse.y Log message: One line change adding the 'include' directive to the valid server options. This allows to include external configuration files from within server and location sections, not just from global context, for example to share common configuration within multiple servers (or virtual hosts). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/04 07:46:35 Modified files: sysutils/ykpers: Makefile distinfo Log message: minor update to ykpers 1.15.3 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/04 07:51:54 Modified files: lib/libc/net : htonl.3 Log message: POSIX specifies arpa/inet.h as the include file for these. OK aja@ mikeb@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 08:24:20 Modified files: net/gnugk : Makefile distinfo Log message: Update to gnugk-3.7. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/04 08:35:47 Modified files: audio/mumble : Makefile distinfo Log message: Bugfix update to mumble-1.2.8 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/04 08:45:56 Modified files: net/pidgin-sipe: Makefile distinfo net/pidgin-sipe/pkg: PLIST Log message: maintainer update to pidgin-sipe-1.18.3, from Tom Doherty CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/04 09:19:05 Modified files: usr.sbin/syslogd: syslogd.c Log message: Move the handlers for the poll events into separate functions. They will become the libevent callbacks later. input and OK doug@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 09:56:26 Modified files: lang/ocaml : Makefile Log message: bump due to reordering of plist. Noticed by naddy@ Thanks! CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/04 09:57:13 Modified files: regress/usr.sbin/syslogd: args-client-unix.pl Added files: regress/usr.sbin/syslogd: args-client-native.pl Log message: Check that messages from sendsyslog(2) or unix domain sockets contain the short host name. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 10:46:37 Log message: Add patches to fix bytecode only building. Status: Vendor Tag: chrisz Release Tags: chrisz_20140904 N ports/lang/ocaml-camlp4/patches/patch-Makefile N ports/lang/ocaml-camlp4/patches/patch-configure No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/04 11:11:45 Modified files: multimedia/x265: distinfo Log message: sync distinfo with the addition of DIST_SUBDIR. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 12:38:04 Modified files: misc/portscout : Makefile distinfo misc/portscout/pkg: PLIST Log message: add dedicated handlers for CPAN, Hackage and Rubygems to prevent pounding the master sites and instead query the relevant APIs for the latest version. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/04 13:01:02 Modified files: sys/arch/hppa/hppa: autoconf.c sys/arch/hppa64/hppa64: autoconf.c Log message: Revert previous change, but use curcpu()->ci_schedstate.spc_cp_time[] instead of global cp_time[] for live information, as loadavg is not updated fast enough for hz/16 blinking rate. Prompted by feedback from mickey@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/04 13:14:47 Modified files: sys/kern : kern_clock.c kern_sysctl.c sys/sys : dkstat.h Log message: Remove global cp_time[] array; no longer used now that all arches implement cpu_info. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 13:44:09 Modified files: devel/ocaml-extlib: Makefile Log message: Add missing BUILD_DEPENDS for camlp4. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/04 13:53:07 Modified files: www/conkeror : Makefile Log message: bump required after xulrunner update CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/04 14:30:45 Modified files: mail/zarafa/zarafa: Makefile mail/zarafa/zarafa/patches: patch-common_platform_linux_cpp Log message: unbreak build: use uuid_create() from the base system CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/04 14:38:59 Modified files: benchmarks/speedtest-cli: Makefile distinfo Log message: Update speedtest-cli to 0.3.1 OK sthen@ aja@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/04 15:28:56 Modified files: net/ortp : Makefile distinfo net/ortp/pkg : PLIST Added files: net/ortp/patches: patch-src_ortp_srtp_c Removed files: net/ortp/patches: patch-configure_ac patch-src_b64_c patch-src_netsim_c patch-src_ortp_c patch-src_rtpsession_c patch-src_rtpsession_inet_c patch-src_stun_c patch-src_zrtp_c Log message: Update oRTP to 0.23.0. Includes some security fixes, and also incorporates all local patches we had. The only new patch will be needed until security/srtp gets updated. Major library version bumped because some types in API changed (int -> size_t). Pointed out by portscout-based service hosted by jasperla@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/04 15:41:43 Modified files: security/py-M2Crypto: Makefile distinfo security/py-M2Crypto/pkg: PLIST Removed files: security/py-M2Crypto/patches: patch-SWIG__ssl_i patch-tests_test_ssl_py Log message: Update py-M2Crypto to 0.22.3 - remove obsolete patches - set HOMEPAGE to Github, previous one is not reachable - remove post-build target because tests are not distributed anymore OK aja@ CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/09/04 18:45:58 Modified files: textproc/igor : Makefile distinfo Log message: update to 1.474: new options: -p (warn about mdoc(7) blank lines), -X (XML output) some new spelling errors and bad phrases, some additions to DocBook support ok afresh1@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/04 19:06:36 Modified files: share/man/man9 : if_rxr_init.9 Log message: functions are .Fn, not .Fa CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/04 19:54:15 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/patches: patch-configure patch-dodo_py graphics/birdfont/pkg: PLIST Log message: Update to birdfont 1.0 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/04 21:13:52 Modified files: sys/kern : subr_pool.c Log message: KASSERT that the page header pool will use in page headers. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 00:29:12 Modified files: multimedia/gstreamer-0.10: Makefile.inc Log message: Add PORTSCOUT annotations. CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/05 00:53:07 Modified files: gnu/usr.bin/perl: patchlevel.h gnu/usr.bin/perl/cpan/libnet: Changes Config.eg Makefile.PL README gnu/usr.bin/perl/cpan/libnet/Net: Cmd.pm Config.pm Domain.pm FTP.pm NNTP.pm Netrc.pm POP3.pm SMTP.pm Time.pm libnetFAQ.pod gnu/usr.bin/perl/cpan/libnet/Net/FTP: A.pm dataconn.pm gnu/usr.bin/perl/cpan/libnet/t: config.t datasend.t ftp.t hostname.t libnet_t.pl netrc.t nntp.t require.t smtp.t time.t Log message: update libnet to 1.27; various bugfixes and improvements: http://cpansearch.perl.org/src/SHAY/libnet-1.27/Changes ok millert@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 01:16:38 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: /etc/{hosts,myname} are going away from etc.tgz. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 01:22:29 Modified files: etc : Makefile distrib/miniroot: install.sh distrib/sets/lists/etc: mi Removed files: etc : hosts myname Log message: Remove /etc/{hosts,myname} from etc.tgz. Make the installer create the /etc/hosts template. While here, re-add a missing 'echo' from install.sh. ok miod@ krw@ halex@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 02:22:04 Modified files: audio/mumble : Makefile audio/mumble/pkg: PLIST Added files: audio/mumble/patches: patch-src_mumble_main_cpp Log message: Fix loading of translation files CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 02:27:20 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Added files: sysutils/salt/patches: patch-salt_states_service_py patch-tests_integration_modules_cmdmod_py patch-tests_integration_modules_file_py patch-tests_integration_modules_sysctl_py patch-tests_unit_utils_find_test_py Log message: Fix tests to properly recognize OpenBSD. openbsdrcctl: extend enabled() to check flags On OpenBSD, it's possible to define particular flags a daemon should be enabled with. To make sure the flags are properly updated when changed (in pillars or states), we return a service as "disabled" if the currently configured flags do not match the provided ones; this ensures /etc/rc.conf.local is always in sync. All patches merged upstream. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 02:28:12 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Tweaks, no functionnal change. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:47:27 Modified files: devel/hs-ConfigFile: Makefile distinfo Log message: Bugfix update to ConfigFile-1.1.2 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:48:13 Modified files: devel/hs-hslogger: Makefile distinfo Log message: Bugfix update to hslogger-1.2.4 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:49:00 Modified files: textproc/hs-libxml-sax: Makefile distinfo Log message: Bugfix update to libxml-sax-0.7.5 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:49:48 Modified files: x11/hs-dbus : Makefile distinfo Log message: Update to hs-dbus-0.10.8 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:50:18 Modified files: x11/xmobar : Makefile distinfo x11/xmobar/patches: patch-src_Plugins_Monitors_hs patch-xmobar_cabal Log message: Update to xmobar-0.21 CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/05 04:04:20 Modified files: usr.sbin/httpd : config.c httpd.c httpd.h parse.y server.c server_http.c Log message: Remove a limitation that only allowed to specify a server name once. The key has been changed to server name + address + port and now it is possible to use the same server name for multiple servers with different addresses, eg. http://www.example.com and https://www.example.com/. OK doug@ florian@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/05 04:19:26 Modified files: usr.sbin/relayd: parse.y relay.c relayd.conf.5 relayd.h Log message: revert previous; was based on a work-in-progress, as well as being an incomplete and therefore incorrect adaptation apologies to anybody who got bitten by this mistake ok reyk@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/05 04:35:31 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: tweak previous; CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/05 04:36:39 Modified files: usr.bin/libtool/LT: LaFile.pm usr.bin/libtool/LT/Mode: Install.pm Log message: recognize install-wrapper as a valid install program CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/05 06:57:53 Modified files: x11/spectrwm : Makefile distinfo Log message: Update for Spectrwm to 2.6.0: Improve English man page. fix typo s/fallowing/following/ Fix bug in baraction.sh that causes bar text to flicker every 20s. Fix man page to use escape codes for aring å and pi �^�. Add new quirk IGNOREPID. Add new quirk IGNORESPAWNWS. Fix stacking issue at (re)start when spawn_position = first or Convert all booleans to stdbool.h bool. Add new option: warp_pointer. Add new quirk: WS[n] Add new option: urgent_collapse cleanup baraction.sh Ok remi@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 07:18:41 Modified files: security/wpa_supplicant: Makefile security/wpa_supplicant/pkg: README Added files: security/wpa_supplicant/patches: patch-src_rsn_supp_wpa_c Log message: Fix validation of EAPOL-Key length with AES key wrap (upstream git commit b7c61c9d4e968e7254112631a9f6a1a1f8ef6f7f) pkg/README: avoid confusion, we were talking about so many interfaces... CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/05 07:52:19 Modified files: mail/procmail : Makefile mail/procmail/patches: patch-src_formisc_c Log message: fix CVE-2014-3618 in mail/procmail, heap overflow in formail when parsing addresses with unbalanced quotes. ok jca@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 08:06:33 Modified files: devel/py-gobject: Makefile Log message: Fix PORTSCOUT. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 08:36:47 Log message: import portroach-1.0.0, a fork of portscout focusing on OpenBSD support ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140509 N ports/misc/portroach/Makefile N ports/misc/portroach/distinfo N ports/misc/portroach/patches/patch-README_md N ports/misc/portroach/patches/patch-portroach_conf_dist N ports/misc/portroach/pkg/DESCR N ports/misc/portroach/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 08:39:08 Modified files: misc : Makefile Removed files: misc/portscout : Makefile distinfo misc/portscout/patches: patch-portscout_conf patch-portscout_pod misc/portscout/pkg: DESCR PLIST Log message: portscout is dead, long live portroach! CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/05 08:39:16 Modified files: share/man/man5 : bsd.port.mk.5 Log message: PORTSCOUT -> PORTROACH CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 08:45:02 Modified files: databases/sqlports/files: Info.pm devel/libwnck : Makefile devel/appstream-glib: Makefile devel/py-gobject: Makefile devel/vte : Makefile infrastructure/mk: bsd.port.mk security/p11-kit: Makefile www/gtkhtml3 : Makefile www/gtkhtml4 : Makefile www/webkit : Makefile textproc/gtkspell: Makefile x11/gnome : gnome.port.mk multimedia/gstreamer-0.10: Makefile.inc Log message: PORTSCOUT -> PORTROACH CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/05 09:06:05 Modified files: usr.sbin/httpd : http.h server_http.c Log message: Add various RFC-based WebDAV methods to the list of accepted HTTP methods. This fixes (Fast)CGI-based WebDAV and CalDAV (calendar) servers with httpd. ok benno@ stsp@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/05 09:29:41 Modified files: multimedia/x265/patches: patch-source_CMakeLists_txt patch-source_common_version_cpp Log message: Sync one of the patches with what was commited upstream and add URLs to the commited patches. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 09:52:16 Modified files: misc/portroach : Makefile Added files: misc/portroach/patches: patch-Portroach_SiteHandler_CPAN_pm Log message: Ensure we only add a download url for actual hits on CPAN CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/05 10:43:20 Modified files: security/cracklib: Makefile distinfo Log message: Update cracklib to 2.9.1. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 10:59:46 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Spring cleanup in preparation for more changes. Lots of moving around. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:19:48 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Drop support for sendmail(8) -- hopefully it'll go away from base soon. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:22:10 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Sync _ignorefiles. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:26:08 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Drop support for SM_MERGE. The goal is to be a less interactive as possible so there is no point in allowing graphical merge tools to be used; especially since it is _completely_ untested... CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:39:03 Modified files: graphics/dia : Makefile distinfo graphics/dia/pkg: PLIST Removed files: graphics/dia/patches: patch-app_render_gdk_c patch-objects_custom_shape_typeinfo_c patch-plug-ins_cairo_diacairo-renderer_c patch-plug-ins_pgf_render_pgf_c patch-plug-ins_postscript_diapsft2renderer_c patch-plug-ins_vdx_vdx_c patch-plug-ins_xfig_xfig_c patch-tests_test-boundingbox_c patch-tests_test-objects_c Log message: Update to dia-0.97.3. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/05 13:17:37 Modified files: telephony/asterisk: Makefile Log message: +PORTROACH CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/05 13:32:25 Modified files: sys/dev/pci : pcidevs Log message: Another Intel 10GbE CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/05 13:34:01 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: sync CVSROOT: /cvs Module name: ports Changes by: matthieu@cvs.openbsd.org 2014/09/05 13:42:28 Modified files: misc : Makefile Log message: Unlink omconsole. ok jasper@x CVSROOT: /cvs Module name: ports Changes by: matthieu@cvs.openbsd.org 2014/09/05 13:43:43 Removed files: misc/omconsole : Makefile distinfo misc/omconsole/pkg: DESCR PLIST Log message: Remove omconsole. Ok jasper@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/05 14:01:49 Modified files: sys/dev/pci : vioblk.c Log message: Don't bother messing with minphys, we always need to support transfers of size MAXBSIZE. If the number of DMA segments supported by the device is too low, don't use it. Discussion at http://marc.info/?l=openbsd-tech&m=140978303923966&w=2 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/05 16:11:38 Modified files: multimedia/livestreamer: Makefile distinfo multimedia/livestreamer/pkg: PLIST Log message: Update to 1.10.2 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/05 22:05:40 Modified files: sbin/fsck_ffs : dir.c extern.h fsck.h inode.c pass1.c pass2.c pass5.c setup.c utilities.c Log message: inodesc.id_entryno holds a file size, so upgrade it from int to u_int64_t; this fixes handling of very large files on FFS2. Correct a copy-n-pasto that rendered useless the check for allocated fragmented that are marked free in the bitmap. allocdir() returns an inode number, so return an ino_t. sizeof()*N should be printed with %zu, while direct and indirect block numbers should be cast to (long long) use %lld inodesc.id_entryno fix based on a diff from David Vasek ok krw@ otto@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/05 22:46:58 Modified files: sys/dev/pci : if_re_pci.c sys/dev/cardbus: if_re_cardbus.c sys/dev/ic : re.c rtl81x9reg.h Log message: Various changes to the re(4) feature flags.. Changed RL_FLAG_MACLDPS to RL_FLAG_MACRESET. Removed RL_FLAG_INVMAR and RL_FLAG_NOJUMBO. Added RL_FLAG_FASTETHER, RL_FLAG_CMDSTOP_WAIT_TXQ, RL_FLAG_JUMBOV2, RL_FLAG_WOL_MANLINK, RL_FLAG_WAIT_TXPOLL, RL_FLAG_WOLRXENB. Also set in the softc the maximum MTU for the various generations of chips. Input from and Ok jsg@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/05 23:41:35 Modified files: sys/dev/ic : acx.c bwi.c mtd8xx.c mtd8xxvar.h rt2560.c rt2661.c rt2860.c rtl81x9.c Log message: reduce the amount of pci includes CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/06 00:00:54 Modified files: sys/dev/pci : agp_i810.c Log message: Match q33 devices. Previously only inteldrm matched on q33, which would lead to a panic. Problem reported by karlis.mikelsons at lf.lv. CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/06 01:03:52 Log message: Import synfig-0.64.1. synfig is a vector based 2D animation package. It is designed to be capable of producing feature-film quality animation. It eliminates the need for tweening, preventing the need to hand-draw each frame. synfig features spatial and temporal resolution independence (sharp and smooth at any resolution or framerate), high dynamic range images, and a flexible plugin system. This package contains the renderer used to convert synfig .sif files to raster images, videos and other formats. Layer types include geometric, gradient, filter, distortion, transformation, fractal and others. Output targets include JPEG, PNG, GIF, BMP, PPM, DV, OpenEXR, ffmpeg (MPEG1), libavcodec (AVI), imagemagick (MIFF), yuv420p, MNG and others. ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140906 N ports/multimedia/synfig/Makefile N ports/multimedia/synfig/distinfo N ports/multimedia/synfig/pkg/PLIST N ports/multimedia/synfig/pkg/PFRAG.shared N ports/multimedia/synfig/pkg/DESCR N ports/multimedia/synfig/patches/patch-src_modules_Makefile_in N ports/multimedia/synfig/patches/patch-src_synfig_main_cpp No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/06 01:05:10 Log message: Import synfigstudio-0.64.1. synfig is a vector based 2D animation package. It is designed to be capable of producing feature-film quality animation. It eliminates the need for tweening, preventing the need to hand-draw each frame. synfig features spatial and temporal resolution independence (sharp and smooth at any resolution or framerate), high dynamic range images, and a flexible plugin system. synfigstudio is the animation studio for synfig and provides the GUI interface to create synfig animations which are saved in synfig .sif or .sifz format. ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140906 N ports/multimedia/synfigstudio/Makefile N ports/multimedia/synfigstudio/distinfo N ports/multimedia/synfigstudio/patches/patch-src_synfigapp_cvs_cpp N ports/multimedia/synfigstudio/patches/patch-src_gui_app_cpp N ports/multimedia/synfigstudio/patches/patch-src_gui_autorecover_cpp N ports/multimedia/synfigstudio/pkg/PLIST N ports/multimedia/synfigstudio/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/06 01:06:02 Modified files: multimedia : Makefile Log message: +synfig{,studio} CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/06 01:09:34 Modified files: security/zebedee: Makefile distinfo security/zebedee/patches: patch-Makefile Log message: Update zebedee to 2.5.3. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:20:30 Modified files: www/ruby-jekyll: Makefile Log message: drop maintainership as I've not been using this for a while now. any takers? CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:20:54 Modified files: sysutils/p5-Sys-Virt: Makefile distinfo Log message: update to p5-Sys-Virt-1.2.8 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 01:21:05 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Log message: Update to p11-kit-0.20.5. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:24:37 Modified files: sysutils/ruby-puppet-lint: Makefile distinfo sysutils/ruby-puppet-lint/pkg: PLIST Log message: update to puppet-lint-1.0.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 01:25:29 Modified files: games/childsplay: Makefile distinfo Log message: Update to childsplay-2.6.4. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/06 01:25:55 Modified files: textproc/py-docutils: Makefile distinfo Log message: Update py-docutils to 0.12, from frantisek holo CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/06 01:37:27 Modified files: devel/yasm : Makefile distinfo Log message: Update to yasm 1.3.0. ok daniel@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/06 01:44:53 Modified files: mail/pyzor : Makefile distinfo mail/pyzor/pkg : PLIST Log message: Update pyzor to 0.7.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:58:16 Modified files: devel/ruby-rgen: Makefile distinfo Log message: update to ruby-rgen-0.7.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 02:48:04 Log message: import darkhttpd-1.10 Simple, small and efficient webserver intended for ad-hoc usage. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140609 N ports/www/darkhttpd/Makefile N ports/www/darkhttpd/distinfo N ports/www/darkhttpd/pkg/DESCR N ports/www/darkhttpd/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 02:48:56 Modified files: www : Makefile Log message: +darkhttpd CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 03:18:56 Modified files: multimedia/synfig: Makefile multimedia/synfig/pkg: PLIST Removed files: multimedia/synfig/patches: patch-src_modules_Makefile_in multimedia/synfig/pkg: PFRAG.shared Log message: Set SHARED_ONLY and drop .la and .a module files. Strip LIB_DEPENDS. Add CPPFLAGS to use our libltdl headers instead of the bundled ones. Drop patch and use FAKE_FLAGS instead. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 03:22:40 Modified files: sys/arch/powerpc/include: cpu.h sys/arch/powerpc/powerpc: cpu_subr.c Log message: Add functions to manipulate IBM PowerPC 970 specific registers that will be used in upcoming MP and idle support. ok miod@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/06 03:23:00 Modified files: devel/yaml-cpp : Makefile distinfo devel/yaml-cpp/pkg: PLIST Log message: now that graphics/opencolorio has been patched for newer yaml-cpp update yaml-cpp to 0.5.1 with input from bcallah@ ok jasper@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/06 03:32:21 Modified files: games/openxcom : Makefile distinfo games/openxcom/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt patch-src_Engine_CrossPlatform_cpp games/openxcom/pkg: PLIST Added files: games/openxcom/files: cpuid.h games/openxcom/patches: patch-src_Engine_Zoom_cpp Log message: update to OpenXcom 1.0 with input from bcallah@ earlier version ok jasper@ kirby@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 03:42:23 Modified files: sys/arch/macppc/macppc: locore.S sys/arch/powerpc/ddb: db_trace.c sys/arch/powerpc/powerpc: trap.c sys/arch/socppc/socppc: locore.S Log message: Rewrite the PowerPC stack dump routine to delimit the trap & interrupt contexts with markers (---like on x86---) and print the associated type or number when available. While here, gyp' the support for process tracing (tr /p). ok miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 04:15:52 Modified files: sys/arch/macppc/macppc: cpu.c genassym.cf locore.S sys/arch/powerpc/include: cpu.h sys/arch/powerpc/powerpc: cpu_subr.c sys/arch/socppc/socppc: cpu.c genassym.cf locore.S Log message: Rewrite cpu_idle & friends to not check and update the hid0 register in the idle loop, in preparation for G5 support. Only do a disable/enable interrupt dance if the running CPU supports a sleep mode. Fix entering ddb(8) from interrupt context by not modifying the return address of the 'forced' trap frame. While here, modify the existing logic to terminate prefetching of all data streams if AltiVec is supported before setting the POW bit. With inputs/explanations from drahn, looks ok to miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 04:18:34 Modified files: sys/dev/adb : akbdmap.h Log message: Magical sequences to ender ddb(4) from an ADB keyboard. This is possible now that the idle (sleeping) flag is cleared by the deliberate ddb entry. ok miod@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 04:38:02 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Files may have been removed in the previous step, so make sure they exist before trying to remove them again. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 04:43:24 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Remove backup checksums after a successfull run. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 04:45:29 Modified files: sys/arch/macppc/dev: macintr.c openpic.c sys/arch/macppc/macppc: genassym.cf locore.S sys/arch/powerpc/include: cpu.h sys/arch/socppc/socppc: genassym.cf locore.S machdep.c Log message: Rename ci_iactive into ci_flags, this field now holds the going-to- sleep bit. CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/09/06 05:53:05 Modified files: devel : Makefile Removed files: devel/ctm : Makefile distinfo devel/ctm/patches: patch-ctm_README patch-ctm_ctm_Makefile patch-ctm_ctm_ctm_1 patch-ctm_ctm_ctm_5 patch-ctm_ctm_ctm_c patch-ctm_ctm_ctm_ed_c patch-ctm_ctm_ctm_h patch-ctm_ctm_ctm_pass1_c patch-ctm_ctm_ctm_pass2_c patch-ctm_ctm_ctm_pass3_c patch-ctm_ctm_ctm_passb_c patch-ctm_ctm_ctm_syntax_c patch-ctm_ctm_rmail_Makefile patch-ctm_ctm_rmail_ctm_rmail_1 patch-ctm_ctm_rmail_ctm_rmail_c devel/ctm/pkg : DESCR PLIST Log message: Remove devel/ctm, openbsd.org/ctm.html was removed 5 years ago and upstream seems to not exist anymore "you can nuke it" espie@, ok jca@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/09/06 05:55:47 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Add entry for ctm removal. While there add an entry that was missed in last commit. ctm entry probbed by sthen@ and ok jca@ missed entry ok jasper@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/06 07:06:27 Modified files: devel/yaml-cpp : Makefile Log message: Fix MASTER_SITES, not noticed here as I still had the distfile around from a few months ago. Problem noticed by naddy@ CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/09/06 07:59:35 Modified files: . : errata.html errata21.html errata22.html errata23.html errata24.html errata25.html errata26.html errata27.html errata28.html errata29.html errata30.html errata31.html errata32.html errata33.html errata34.html errata35.html errata36.html errata37.html errata38.html errata39.html errata40.html errata41.html errata42.html errata43.html errata44.html errata45.html errata46.html errata47.html errata48.html errata49.html errata50.html errata51.html errata52.html errata53.html errata54.html errata55.html Added files: . : errata56.html Log message: roll the errata pages for 5.6 and add the rx ring errata for 5.6 CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/09/06 08:12:17 Modified files: . : security.html Log message: roll for 5.6 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 08:48:00 Modified files: misc/portroach : Makefile distinfo misc/portroach/patches: patch-portroach_conf_dist misc/portroach/pkg: PLIST Removed files: misc/portroach/patches: patch-Portroach_SiteHandler_CPAN_pm patch-README_md Log message: - update to portroach-1.1.0 * reworked generated webpages * add npmjs handler CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/09/06 09:49:50 Modified files: security/p5-Authen-NTLM: Makefile distinfo Log message: Update to Authen::NTLM 1.09 (minor bugfix release); ok gsoares@ I'm quite happy that nobody forces me to use NTLM any longer, and i'm certainly not using it voluntarily, so drop MAINTAINER. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:08:58 Modified files: app/cwm : calmwm.h group.c mousefunc.c xevents.c xutil.c Log message: Rework group names: stash the group name inside the group_ctx as opposed to having to manage an array outside in screen_ctx for group names and shortcuts. Simplifies (and moves bits for) reading, and constructing data for, EWMH's _NET_DESKTOP_NAMES. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:14:35 Modified files: app/cwm : calmwm.h conf.c kbfunc.c Log message: Move termpath and lockpath into cmdq; side effect is that 'lock' and 'term' now show up in the application menu. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:18:08 Modified files: app/cwm : menu.c Log message: style nit CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:24:32 Modified files: app/cwm : calmwm.c Log message: generic sighandler CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 12:50:43 Modified files: app/cwm : kbfunc.c Log message: Few style nits; extend 'path' to MAXPATHLEN. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/06 14:47:44 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Convert vars used as boolean (unset or 1) to true or false. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/06 15:46:15 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Replace awk with either sed or shell equivalents. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 16:38:35 Modified files: usr.bin/mandoc : libmandoc.h read.c roff.c Log message: Move main format autodetection from the parser dispatcher to the roff parser where .Dd and .TH are already detected, anyway. This improves robustness because it correctly handles whitespace or an alternate control character before Dd. In the parser dispatcher, provide a fallback looking ahead in the input buffer instead of always assuming man(7). This corrects autodetection when Dd is preceded by other macros or macro-like handled requests like .ll. Triggered by reports from Daniel Levai about issues on Slackware Linux. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 17:24:27 Modified files: usr.bin/mandoc : man.c mdoc.c read.c roff.c Log message: Simplify by handling empty request lines at the one logical place in the roff parser instead of in three other places in other parsers. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 18:04:47 Modified files: usr.bin/mandoc : mdoc_macro.c mdoc_validate.c Log message: Allow .ll in the prologue; Daniel Levai reports Slackware Linux uses this. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 18:21:23 Modified files: share/man/man7 : roff.7 usr.bin/mandoc : roff.c Log message: Parse and ignore the .pl (page length) request; Daniel Levai reports that Slackware Linux uses this. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 20:17:36 Modified files: usr.bin/mandoc : read.c Log message: always use the right buffer, and fix one evil typo CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 21:00:03 Modified files: usr.bin/mandoc : mandocdb.c Log message: fix debugging output CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/06 21:07:16 Modified files: sys/conf : Tag: OPENBSD_5_6 newvers.sh Log message: 5.6-stable CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 21:08:42 Modified files: usr.bin/mandoc : mandocdb.c Log message: Do not report a page as arch=any merely because .Dt lacks the third argument. Pages found outside arch-specific dirs still get arch=any, of course. Issue reported by justinhenryhaynes at gmail dot com on misc@, thanks! CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/06 21:15:42 Modified files: sys/dev/pci : Tag: OPENBSD_5_6 if_bge.c if_em.c if_ix.c Log message: OpenBSD 5.6 errata 1: Incorrect RX ring computation leads to panics under load with bge(4), em(4) and ix(4). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:09 src/regress/libexec/ld.so/dependencies Update of /cvs/src/regress/libexec/ld.so/dependencies In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:10 src/regress/libexec/ld.so/dependencies/order1 Update of /cvs/src/regress/libexec/ld.so/dependencies/order1 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:11 src/regress/libexec/ld.so/dependencies/order2 Update of /cvs/src/regress/libexec/ld.so/dependencies/order2 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:12 src/regress/libexec/ld.so/dependencies/order1/libaa Update of /cvs/src/regress/libexec/ld.so/dependencies/order1/libaa In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1/libaa Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1/libaa added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:13 src/regress/libexec/ld.so/dependencies/order1/libbb Update of /cvs/src/regress/libexec/ld.so/dependencies/order1/libbb In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1/libbb Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1/libbb added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:14 src/regress/libexec/ld.so/dependencies/order1/prog1 Update of /cvs/src/regress/libexec/ld.so/dependencies/order1/prog1 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1/prog1 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1/prog1 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:15 src/regress/libexec/ld.so/dependencies/order2/libaa Update of /cvs/src/regress/libexec/ld.so/dependencies/order2/libaa In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2/libaa Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2/libaa added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:16 src/regress/libexec/ld.so/dependencies/order2/libbb Update of /cvs/src/regress/libexec/ld.so/dependencies/order2/libbb In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2/libbb Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2/libbb added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:17 src/regress/libexec/ld.so/dependencies/order2/prog1 Update of /cvs/src/regress/libexec/ld.so/dependencies/order2/prog1 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2/prog1 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2/prog1 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:13:52 Added files: regress/libexec/ld.so/dependencies: Makefile regress/libexec/ld.so/dependencies/order1: Makefile Makefile.inc regress/libexec/ld.so/dependencies/order1/libaa: Makefile aa.c shlib_version regress/libexec/ld.so/dependencies/order1/libbb: Makefile bb.c shlib_version regress/libexec/ld.so/dependencies/order1/prog1: Makefile main.c regress/libexec/ld.so/dependencies/order2: Makefile Makefile.inc regress/libexec/ld.so/dependencies/order2/libaa: Makefile aa.c shlib_version regress/libexec/ld.so/dependencies/order2/libbb: Makefile bb.c shlib_version regress/libexec/ld.so/dependencies/order2/prog1: Makefile main.c Log message: Add dependency tests from Henri Kemppainen (duclare (at) guu.fi). order1 demonstrates why the fix in ld.so/library_subr.c rev 1.34 is necessary order2 demonstrates that that fix isn't completely correct CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:14:25 Modified files: regress/libexec/ld.so: Makefile Log message: Add dependency tests from Henri Kemppainen (duclare (at) guu.fi) CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 00:40:01 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Simplify checks. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 00:53:16 Modified files: regress/libexec/ld.so/dependencies/order1/libaa: aa.c regress/libexec/ld.so/dependencies/order1/libbb: bb.c regress/libexec/ld.so/dependencies/order1/prog1: main.c regress/libexec/ld.so/dependencies/order2/libaa: aa.c regress/libexec/ld.so/dependencies/order2/libbb: bb.c regress/libexec/ld.so/dependencies/order2/prog1: main.c Log message: Add Henri Kemppainen's copyright CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 01:46:26 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Use shell substitution instead of dirname. Fix installing pkg @sample when the target directory is missing. Fix output when a file fails to install. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 02:15:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Fix regression in detecting changed files. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 02:17:44 Modified files: sys/uvm : uvm_fault.c Log message: typo in comment CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 02:39:04 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Consistency in var names. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 03:07:27 Modified files: net/samba4 : Makefile distinfo net/samba4/pkg : PLIST-main Log message: update to samba4 4.0.21, fixes http://www.samba.org/samba/security/CVE-2014-3560 From Ian Mcwilliam, jca@ thinks this should go in too CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 03:11:40 Modified files: www/py-jinja2 : Makefile distinfo www/py-jinja2/patches: patch-jinja2_bccache_py Log message: update to py-jinja2 2.7.3, from frantisek holop the only change is a fix for the insecure tempdir creation bug that we already had a different fix for in patches CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 03:13:03 Modified files: www/py-beautifulsoup: Makefile Log message: MASTER_SITES tweak from frantisek holop whitespace tweak from me CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 03:21:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Drop 2 uneeded xargs(1). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 03:46:32 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Only compare CVS Id when it's not empty. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 04:12:17 Modified files: lib/libsndio : aucat.c Log message: Use SOCK_CLOEXEC (instead of later using fcntl(F_SETFD)) when creating sockets for talking to aucat/sndiod ok ratchov@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 04:54:15 Modified files: www/p5-URI : Makefile distinfo Log message: update to p5-URI 1.64, from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 04:55:37 Modified files: devel/p5-common-sense: Makefile distinfo devel/p5-common-sense/pkg: PLIST Log message: update to p5-common-sense 3.73, from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 04:59:42 Modified files: converters/p5-Net-IDN-Encode: Makefile distinfo converters/p5-Net-IDN-Encode/pkg: PLIST Log message: update to p5-Net-IDN-Encode 2.005 (newer version that works with Module::Build <0.42), from Mark Patruck CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 05:41:49 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Remove last use of xargs(1). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/07 06:16:23 Modified files: lib/libssl/src/ssl: d1_clnt.c d1_srvr.c s3_clnt.c s3_lib.c s3_srvr.c ssl_ciph.c ssl_lib.c ssl_locl.h Log message: Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them, nor do we plan on supporting them. ok guenther@ CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:09:05 Log message: Import Mesa 10.2.7 Status: Vendor Tag: mesa Release Tags: v10_2_7 U xenocara/dist/Mesa/aclocal.m4 U xenocara/dist/Mesa/configure U xenocara/dist/Mesa/Makefile.in U xenocara/dist/Mesa/Android.common.mk U xenocara/dist/Mesa/Android.mk U xenocara/dist/Mesa/Makefile.am U xenocara/dist/Mesa/SConstruct U xenocara/dist/Mesa/VERSION U xenocara/dist/Mesa/autogen.sh U xenocara/dist/Mesa/common.py C xenocara/dist/Mesa/configure.ac U xenocara/dist/Mesa/install-gallium-links.mk U xenocara/dist/Mesa/install-lib-links.mk U xenocara/dist/Mesa/bin/ar-lib U xenocara/dist/Mesa/bin/compile C xenocara/dist/Mesa/bin/config.guess C xenocara/dist/Mesa/bin/config.sub U xenocara/dist/Mesa/bin/depcomp U xenocara/dist/Mesa/bin/install-sh U xenocara/dist/Mesa/bin/ltmain.sh U xenocara/dist/Mesa/bin/missing U xenocara/dist/Mesa/bin/test-driver U xenocara/dist/Mesa/bin/bugzilla_mesa.sh U xenocara/dist/Mesa/bin/get-pick-list.sh U xenocara/dist/Mesa/bin/perf-annotate-jit U xenocara/dist/Mesa/bin/shortlog_mesa.sh U xenocara/dist/Mesa/src/Makefile.in U xenocara/dist/Mesa/src/Makefile.am U xenocara/dist/Mesa/src/SConscript U xenocara/dist/Mesa/src/egl/drivers/dri2/Makefile.in U xenocara/dist/Mesa/src/egl/drivers/dri2/Android.mk U xenocara/dist/Mesa/src/egl/drivers/dri2/Makefile.am C xenocara/dist/Mesa/src/egl/drivers/dri2/egl_dri2.c U xenocara/dist/Mesa/src/egl/drivers/dri2/egl_dri2.h U xenocara/dist/Mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_android.c U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_drm.c U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_wayland.c U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_x11.c U xenocara/dist/Mesa/src/egl/main/Makefile.in U xenocara/dist/Mesa/src/egl/main/Android.mk U xenocara/dist/Mesa/src/egl/main/Makefile.am U xenocara/dist/Mesa/src/egl/main/README.txt U xenocara/dist/Mesa/src/egl/main/SConscript U xenocara/dist/Mesa/src/egl/main/egl.def U xenocara/dist/Mesa/src/egl/main/egl.pc.in U xenocara/dist/Mesa/src/egl/main/eglapi.c U xenocara/dist/Mesa/src/egl/main/eglapi.h U xenocara/dist/Mesa/src/egl/main/eglarray.c U xenocara/dist/Mesa/src/egl/main/eglarray.h U xenocara/dist/Mesa/src/egl/main/eglcompiler.h U xenocara/dist/Mesa/src/egl/main/eglconfig.c U xenocara/dist/Mesa/src/egl/main/eglconfig.h C xenocara/dist/Mesa/src/egl/main/eglcontext.c U xenocara/dist/Mesa/src/egl/main/eglcontext.h U xenocara/dist/Mesa/src/egl/main/eglcurrent.c U xenocara/dist/Mesa/src/egl/main/eglcurrent.h U xenocara/dist/Mesa/src/egl/main/egldefines.h U xenocara/dist/Mesa/src/egl/main/egldisplay.c U xenocara/dist/Mesa/src/egl/main/egldisplay.h U xenocara/dist/Mesa/src/egl/main/egldriver.c U xenocara/dist/Mesa/src/egl/main/egldriver.h U xenocara/dist/Mesa/src/egl/main/eglfallbacks.c U xenocara/dist/Mesa/src/egl/main/eglglobals.c U xenocara/dist/Mesa/src/egl/main/eglglobals.h U xenocara/dist/Mesa/src/egl/main/eglimage.c U xenocara/dist/Mesa/src/egl/main/eglimage.h U xenocara/dist/Mesa/src/egl/main/egllog.c U xenocara/dist/Mesa/src/egl/main/egllog.h U xenocara/dist/Mesa/src/egl/main/eglmisc.c U xenocara/dist/Mesa/src/egl/main/eglmisc.h U xenocara/dist/Mesa/src/egl/main/eglmode.c U xenocara/dist/Mesa/src/egl/main/eglmode.h U xenocara/dist/Mesa/src/egl/main/eglmutex.h U xenocara/dist/Mesa/src/egl/main/eglscreen.c U xenocara/dist/Mesa/src/egl/main/eglscreen.h U xenocara/dist/Mesa/src/egl/main/eglstring.c U xenocara/dist/Mesa/src/egl/main/eglstring.h U xenocara/dist/Mesa/src/egl/main/eglsurface.c U xenocara/dist/Mesa/src/egl/main/eglsurface.h U xenocara/dist/Mesa/src/egl/main/eglsync.c U xenocara/dist/Mesa/src/egl/main/eglsync.h U xenocara/dist/Mesa/src/egl/main/egltypedefs.h U xenocara/dist/Mesa/src/egl/wayland/Makefile.in U xenocara/dist/Mesa/src/egl/wayland/Makefile.am U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/Makefile.in U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/Makefile.am U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/wayland-drm.c U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/wayland-drm.h U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/wayland-drm.xml U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/Makefile.in U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/Makefile.am U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl-priv.h U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl-symbols-check U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl.c U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl.pc.in U xenocara/dist/Mesa/src/egl/docs/EGL_MESA_screen_surface U xenocara/dist/Mesa/src/gallium/Android.common.mk U xenocara/dist/Mesa/src/gallium/Android.mk U xenocara/dist/Mesa/src/gallium/Automake.inc U xenocara/dist/Mesa/src/gallium/README.portability U xenocara/dist/Mesa/src/gallium/SConscript U xenocara/dist/Mesa/src/gallium/auxiliary/Makefile.in U xenocara/dist/Mesa/src/gallium/auxiliary/Android.mk U xenocara/dist/Mesa/src/gallium/auxiliary/Makefile.am U xenocara/dist/Mesa/src/gallium/auxiliary/Makefile.sources U xenocara/dist/Mesa/src/gallium/auxiliary/SConscript U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/Makefile.in U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/Makefile.am U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_cache.h U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_hash.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_hash.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_fs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_fs.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_gs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_gs.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_llvm.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_llvm.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_private.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_offset.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_util.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vbuf.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_util.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_split_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vertex.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vertex.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs_exec.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs_variant.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/f.cpp U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h C xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.h C xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h C xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h U xenocara/dist/Mesa/src/gallium/auxiliary/hud/font.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/font.h U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_cpu.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_driver_query.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_fps.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_private.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices.c U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices_gen.py U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices_priv.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_primconvert.c U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_primconvert.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory_aligned.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory_debug.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory_stdc.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_misc.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_misc.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_mman.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_process.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_process.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_thread.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_time.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_time.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_alt.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/ADDING U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/filters.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/postprocess.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_celshade.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_celshade.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_colors.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_colors.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_filters.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_init.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_private.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_program.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_run.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/README U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_connection.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_connection.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_core.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_core.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_internal.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_proto.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_shader.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_shader.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_texture.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_texture.h U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.c U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.c U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.h U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.h U xenocara/dist/Mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h U xenocara/dist/Mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h U xenocara/dist/Mesa/src/gallium/auxiliary/target-helpers/inline_wrapper_sw_helper.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_build.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_build.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_info.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_info.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_scan.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_text.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_text.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_transform.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_util.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_util.h U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate.c U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate.h U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_cache.h U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_generic.c U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_sse.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/dbghelp.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_atomic.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_bitmask.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_bitmask.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blit.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blit.h C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blitter.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blitter.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_box.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cache.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_caps.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_caps.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_clear.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cpu_detect.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cpu_detect.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_describe.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_describe.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_flush.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_flush.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dl.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_memory.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_refcnt.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_refcnt.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_stack.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_stack.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_symbol.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_symbol.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dirty_flags.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dl.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_double_list.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw_quad.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw_quad.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dual_blend.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dump.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dump_defines.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dump_state.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dynarray.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_fifo.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format.csv U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_etc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_etc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_latc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_latc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_other.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_other.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_pack.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_parse.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_r11g11b10f.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_rgb9e5.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_rgtc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_rgtc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_s3tc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_s3tc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_srgb.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_srgb.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_table.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_tests.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_tests.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_yuv.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_yuv.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_zs.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_zs.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_framebuffer.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_framebuffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_gen_mipmap.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_gen_mipmap.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_half.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_handle_table.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_handle_table.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash_table.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash_table.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_helpers.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_helpers.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_index_modify.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_index_modify.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_init.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_inlines.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_keymap.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_keymap.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linear.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linear.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linkage.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linkage.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_math.c C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_math.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_memory.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_mm.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_mm.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_network.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_network.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pack_color.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pointer.h C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_prim.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pstipple.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pstipple.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_range.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_rect.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_resource.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_sse.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_resource.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_sampler.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_ringbuffer.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_ringbuffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_sampler.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_simple_list.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_simple_shaders.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_simple_shaders.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_slab.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_slab.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_snprintf.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_split_prim.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_staging.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_staging.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_string.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_suballoc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_suballoc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surface.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surface.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surfaces.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surfaces.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_texture.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_texture.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_tile.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_tile.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_time.h C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_transfer.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_transfer.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_upload_mgr.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_upload_mgr.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_vbuf.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_vbuf.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_video.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_compositor.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_compositor.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_csc.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_csc.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_decoder.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_decoder.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_defines.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_deint_filter.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_deint_filter.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_idct.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_idct.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mc.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mc.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_median_filter.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_median_filter.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_rbsp.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_types.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_video_buffer.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_video_buffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_vlc.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_winsys.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_zscan.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_zscan.h U xenocara/dist/Mesa/src/gallium/drivers/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/freedreno/Makefile.in N xenocara/dist/Mesa/src/gallium/drivers/freedreno/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/freedreno/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/freedreno/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/freedreno/adreno_common.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/adreno_pm4.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/disasm.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_context.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_context.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_draw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_draw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_fence.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_fence.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_gmem.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_gmem.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_lowering.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_lowering.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_program.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_program.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_resource.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_resource.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_screen.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_screen.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_state.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_state.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_surface.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_surface.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_texture.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_texture.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_util.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_util.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/a2xx.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/a3xx.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/disasm-a3xx.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_compiler_old.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_util.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_util.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/instr-a3xx.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_cp.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_depth.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_dump.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_flatten.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_ra.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_sched.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_visitor.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/galahad/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/galahad/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/galahad/SConscript U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_context.c U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_context.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_objects.c U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_objects.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_public.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_screen.c U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_screen.h U xenocara/dist/Mesa/src/gallium/drivers/i915/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/i915/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/i915/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/i915/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/i915/SConscript U xenocara/dist/Mesa/src/gallium/drivers/i915/TODO U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_batch.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_batchbuffer.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_blit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_blit.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_clear.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_context.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_context.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug_fp.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug_private.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_flush.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc_emit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc_optimize.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc_translate.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_prim_emit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_prim_vbuf.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_public.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_query.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_query.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_reg.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource_texture.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_screen.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_screen.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_dynamic.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_emit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_fpc.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_immediate.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_inlines.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_static.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_surface.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_surface.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/identity/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/identity/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/identity/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/identity/SConscript U xenocara/dist/Mesa/src/gallium/drivers/identity/id_context.c U xenocara/dist/Mesa/src/gallium/drivers/identity/id_context.h U xenocara/dist/Mesa/src/gallium/drivers/identity/id_objects.c U xenocara/dist/Mesa/src/gallium/drivers/identity/id_objects.h U xenocara/dist/Mesa/src/gallium/drivers/identity/id_public.h U xenocara/dist/Mesa/src/gallium/drivers/identity/id_screen.c U xenocara/dist/Mesa/src/gallium/drivers/identity/id_screen.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/ilo/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/ilo/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/ilo/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_dump.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen6.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen6.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen7.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen7.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blit.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blit.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter_blt.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter_rectlist.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_common.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_context.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_context.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_cp.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_cp.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_format.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_format.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen6.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen6.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen7.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen7.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpgpu.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpgpu.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_public.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_query.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_query.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_resource.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_resource.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_screen.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_screen.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_shader.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_shader.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_state.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_state.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_video.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_video.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_blitter.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_eu_isa.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_eu_message.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_mi.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_regs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_render_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_render_dynamic.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_render_surface.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/genhw.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/include/brw_defines.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/include/brw_structs.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_cs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_fs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_gs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_internal.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_vs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler_asm.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler_reg.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_helpers.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_legalize.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_legalize.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_legalize_ra.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_optimize.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_optimize.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_tgsi.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_tgsi.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/SConscript U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_clear.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_clear.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_context.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_context.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_debug.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_fence.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_fence.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_flush.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_flush.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_jit.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_jit.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_limits.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_memory.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_memory.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_perf.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_perf.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_public.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_query.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_query.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_screen.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_screen.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_so.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_surface.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_surface.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_format.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_main.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_texture.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_texture.h U xenocara/dist/Mesa/src/gallium/drivers/noop/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/noop/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/noop/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/noop/SConscript U xenocara/dist/Mesa/src/gallium/drivers/noop/noop_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/noop/noop_public.h U xenocara/dist/Mesa/src/gallium/drivers/noop/noop_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_buffer.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_debug.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_fence.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_fence.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_heap.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_heap.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_mm.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_mm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv_object.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_driver.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nv50.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvc0.asm U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvc0.asm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nve4.asm U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nve4.asm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvf0.asm U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvf0.asm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_3ddefs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_context.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_defs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_draw.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_query.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_surface.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_texture.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video_ppp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_2d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3ddefs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_draw.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_graph_macros.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_m2mf.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_push.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h U xenocara/dist/Mesa/src/gallium/drivers/r300/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/r300/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/r300/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/r300/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_blit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_cb.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_chipset.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_chipset.h C xenocara/dist/Mesa/src/gallium/drivers/r300/r300_context.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_context.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_cs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_debug.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_defines.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_emit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_emit.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_flush.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_fs.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_fs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_hyperz.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_public.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_query.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_reg.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_render.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_render_stencilref.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_render_translate.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_resource.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen_buffer.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_shader_semantics.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_state.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_state_inlines.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture_desc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture_desc.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_vs.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_vs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_vs_draw.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/memory_pool.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/memory_pool.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog_dump.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r500_fragprog.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_code.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_code.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_list.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_list.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_dead_sources.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_variable.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_variable.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/omod_two_writers.test U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_optimize_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_util_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/regalloc_tex_1d_swizzle.test U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/unit_test.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/unit_test.h U xenocara/dist/Mesa/src/gallium/drivers/r600/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/r600/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/r600/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/r600/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/r600/compute_memory_pool.c U xenocara/dist/Mesa/src/gallium/drivers/r600/compute_memory_pool.h U xenocara/dist/Mesa/src/gallium/drivers/r600/eg_asm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/eg_sq.h U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_compute.c U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_compute.h U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_compute_internal.h U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_hw_context.c C xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_state.c U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreend.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_asm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_asm.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_blit.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_formats.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_isa.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_hw_context.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_isa.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_llvm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_llvm.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_opcodes.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_pipe.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_public.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_shader.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_shader.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_sq.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_state.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_state_common.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_uvd.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600d.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r700_asm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r700_sq.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/notes.markdown U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_builder.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_finalize.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.inc U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_context.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_core.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_dump.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_expr.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_expr.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_gcm.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ir.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ir.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_pass.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_pass.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_psi_ops.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_public.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_sched.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_sched.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_shader.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_shader.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp U xenocara/dist/Mesa/src/gallium/drivers/radeon/Makefile.in N xenocara/dist/Mesa/src/gallium/drivers/radeon/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/radeon/LLVM_REVISION.txt U xenocara/dist/Mesa/src/gallium/drivers/radeon/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/radeon/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/radeon/cayman_msaa.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_buffer_common.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_cs.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_pipe_common.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_pipe_common.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_query.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_streamout.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_texture.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600d_common.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_elf_util.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_elf_util.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_emit.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_emit.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_util.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_util.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_uvd.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_uvd.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_vce.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_vce.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_vce_40_2_2.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_video.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_video.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_blit.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_commands.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_compute.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_descriptors.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_dma.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_hw_context.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pipe.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pm4.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pm4.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_public.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_shader.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_shader.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_state.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_state.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_state_draw.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_uvd.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/sid.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/rbug/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/rbug/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/rbug/README U xenocara/dist/Mesa/src/gallium/drivers/rbug/SConscript U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_context.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_context.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_core.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_objects.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_objects.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_public.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_screen.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_screen.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/softpipe/SConscript U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_clear.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_clear.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_context.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_context.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fence.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fence.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_flush.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_flush.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fs.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fs_exec.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_limits.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_public.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_blend.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_fs.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_query.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_query.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_screen.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_screen.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_setup.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_setup.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_blend.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_clip.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_shader.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_so.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_surface.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_vertex.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_surface.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_surface.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_sample.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_sample.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_texture.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_texture.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tile_cache.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tile_cache.h U xenocara/dist/Mesa/src/gallium/drivers/svga/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/svga/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/svga/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/svga/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/svga/SConscript U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_cmd.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_cmd.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_context.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_context.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_debug.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw_arrays.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw_elements.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw_private.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_format.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_format.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_hw_reg.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_blend.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_fs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_blit.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_clear.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_constants.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_draw.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_flush.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_misc.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_query.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_vertex.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_vs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_public.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_sampler_view.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_texture.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_texture.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_sampler_view.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen_cache.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen_cache.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_shader.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_shader.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_constants.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_framebuffer.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_fs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_rss.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_tss.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_vdecl.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_vs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_surface.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_surface.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_backend.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_draw.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_private.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_state.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi_emit.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi_insn.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/README U xenocara/dist/Mesa/src/gallium/drivers/svga/include/includeCheck.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_caps.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_cmd.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_limits.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_reg.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_types.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_escape.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_overlay.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_reg.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_types.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/vmware_pack_end.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_dump.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_dump.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_dump.py U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h U xenocara/dist/Mesa/src/gallium/drivers/trace/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/trace/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/trace/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/trace/README U xenocara/dist/Mesa/src/gallium/drivers/trace/SConscript U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_context.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_context.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump_defines.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump_state.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump_state.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_public.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_screen.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_screen.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_texture.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_texture.h U xenocara/dist/Mesa/src/gallium/drivers/trace/trace.xsl U xenocara/dist/Mesa/src/gallium/state_trackers/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/README U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Doxyfile U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/context.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/device.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/dispatch.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/dispatch.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/event.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/kernel.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/memory.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/platform.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/program.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/queue.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/sampler.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/transfer.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/util.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/compiler.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/context.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/context.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/device.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/device.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/error.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/event.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/event.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/format.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/format.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/kernel.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/kernel.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/memory.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/memory.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/module.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/module.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/object.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/platform.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/platform.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/program.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/program.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/property.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/queue.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/queue.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/resource.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/resource.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/sampler.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/sampler.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/timestamp.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/timestamp.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/llvm/invocation.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/adaptor.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/algebra.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/algorithm.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/compat.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/compat.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/factor.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/functional.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/lazy.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/pointer.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/range.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/tuple.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/dri/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/dri2.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/dri2_buffer.h U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/drisw.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_drawable.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_drawable.h U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_screen.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_screen.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Android.mk U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/egl/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/egl/android/native_android.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_api.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_api.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_image.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_image.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_loader.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_st.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_st.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_sync.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_sync.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_buffer.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_helper.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_helper.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_modeset.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_wayland_bufmgr.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_wayland_drm_bufmgr.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_wayland_drm_bufmgr.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/drm/modeset.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/drm/native_drm.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/drm/native_drm.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/fbdev/native_fbdev.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/gdi/native_gdi.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/null/native_null.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_drm.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_shm.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_wayland.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_wayland.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/glcore.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/glxinit.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/glxinit.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_dri2.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_x11.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_x11.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_ximage.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/x11_screen.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/x11_screen.h U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/gbm_drm.c U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/gbm_gallium_drmint.h U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/glx_api.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_api.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_api.h U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_public.h U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_st.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_st.h U xenocara/dist/Mesa/src/gallium/state_trackers/omx/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/omx/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/omx/entrypoint.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/entrypoint.h U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec.h U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec_h264.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec_mpeg12.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_enc.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_enc.h U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/osmesa.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/bitmap.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/decode.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/device.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/ftab.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/htab.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/mixer.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/output.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/preemption.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/presentation.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/query.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/surface.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/vdpau_private.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/vega/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/vega/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/vega/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_consts.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_filters.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_images.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_masks.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_misc.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_paint.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_params.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_path.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_text.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_transform.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/arc.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/arc.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/asm_fill.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/asm_filters.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/asm_util.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/image.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/bezier.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/bezier.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/handle.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/handle.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/image.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/mask.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/mask.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/matrix.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/paint.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/paint.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/path.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/path.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/path_utils.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/polygon.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/polygon.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/renderer.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/renderer.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shader.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shader.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shaders_cache.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shaders_cache.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/stroker.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/stroker.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/text.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/text.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/util_array.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vgu.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_api.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_manager.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_manager.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_state.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_state.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_translate.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_translate.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/xa/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/xa/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/xa/README U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa-indent U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_composite.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_composite.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_priv.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_renderer.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_tgsi.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_tracker.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_tracker.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_yuv.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/attributes.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/block.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/context.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/subpicture.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/surface.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/xvmc_private.h U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_surface.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/testlib.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/testlib.h U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/opengl32.def U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_device.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_device.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c C xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_icd.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_st.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_st.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_tls.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_tls.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_wgl.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_wgl.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_winsys.h U xenocara/dist/Mesa/src/gallium/targets/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri.sym U xenocara/dist/Mesa/src/gallium/targets/omx.sym U xenocara/dist/Mesa/src/gallium/targets/vdpau.sym U xenocara/dist/Mesa/src/gallium/targets/xvmc.sym U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/target-kgsl.c U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/target-msm.c U xenocara/dist/Mesa/src/gallium/targets/dri-i915/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-i915/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-i915/SConscript U xenocara/dist/Mesa/src/gallium/targets/dri-i915/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-ilo/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-ilo/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-ilo/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/nouveau_dri.dyn U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/SConscript U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/swrast_drm_api.c U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/SConscript U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/vmw_powf.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/egl-static/Android.mk U xenocara/dist/Mesa/src/gallium/targets/egl-static/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/egl-static/SConscript U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl.sym U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_pipe.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_pipe.h U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_st.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_st.h U xenocara/dist/Mesa/src/gallium/targets/egl-static/st_GL.c U xenocara/dist/Mesa/src/gallium/targets/gbm/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/gbm/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/gbm/gallium-gbm-symbols-check U xenocara/dist/Mesa/src/gallium/targets/gbm/gbm.c U xenocara/dist/Mesa/src/gallium/targets/gbm/gbm.sym U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/SConscript U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/xlib.c U xenocara/dist/Mesa/src/gallium/targets/omx-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/omx-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/omx-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/opencl/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/opencl/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/opencl/mesa.icd U xenocara/dist/Mesa/src/gallium/targets/opencl/opencl.sym U xenocara/dist/Mesa/src/gallium/targets/osmesa/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/osmesa/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/osmesa/osmesa.pc.in U xenocara/dist/Mesa/src/gallium/targets/osmesa/target.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe.sym U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_i915.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_msm.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_r300.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_r600.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_radeonsi.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_swrast.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c U xenocara/dist/Mesa/src/gallium/targets/r300/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r300/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r300/dri/radeon.dyn U xenocara/dist/Mesa/src/gallium/targets/r300/common/drm_target.c U xenocara/dist/Mesa/src/gallium/targets/r600/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/omx/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/omx/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/vdpau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/vdpau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/xvmc/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/xvmc/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/common/drm_target.c U xenocara/dist/Mesa/src/gallium/targets/radeonsi/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/radeonsi/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/radeonsi/omx/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/radeonsi/omx/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/radeonsi/vdpau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/radeonsi/vdpau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/radeonsi/common/drm_target.c U xenocara/dist/Mesa/src/gallium/targets/vdpau-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/vdpau-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/vdpau-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/xa/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/xa/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/xa/xa.sym U xenocara/dist/Mesa/src/gallium/targets/xa/xatracker.pc.in U xenocara/dist/Mesa/src/gallium/targets/xvmc-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/xvmc-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/xvmc-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/graw-gdi/SConscript U xenocara/dist/Mesa/src/gallium/targets/graw-gdi/graw_gdi.c U xenocara/dist/Mesa/src/gallium/targets/graw-null/SConscript U xenocara/dist/Mesa/src/gallium/targets/graw-null/graw_null.c U xenocara/dist/Mesa/src/gallium/targets/graw-null/graw_util.c U xenocara/dist/Mesa/src/gallium/targets/graw-xlib/SConscript U xenocara/dist/Mesa/src/gallium/targets/graw-xlib/graw_xlib.c U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumContext.cpp U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.cpp U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SConscript U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef U xenocara/dist/Mesa/src/gallium/targets/libgl-gdi/SConscript U xenocara/dist/Mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c U xenocara/dist/Mesa/src/gallium/tests/trivial/Makefile.in U xenocara/dist/Mesa/src/gallium/tests/trivial/Makefile.am U xenocara/dist/Mesa/src/gallium/tests/trivial/compute.c U xenocara/dist/Mesa/src/gallium/tests/trivial/quad-tex.c U xenocara/dist/Mesa/src/gallium/tests/trivial/tri.c U xenocara/dist/Mesa/src/gallium/tests/unit/Makefile.in U xenocara/dist/Mesa/src/gallium/tests/unit/Makefile.am U xenocara/dist/Mesa/src/gallium/tests/unit/SConscript U xenocara/dist/Mesa/src/gallium/tests/unit/pipe_barrier_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/translate_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_cache_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_format_compatible_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_format_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_half_test.c U xenocara/dist/Mesa/src/gallium/tests/graw/SConscript U xenocara/dist/Mesa/src/gallium/tests/graw/clear.c U xenocara/dist/Mesa/src/gallium/tests/graw/disasm.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-fragcoord.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-frontface.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-test.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-write-z.c U xenocara/dist/Mesa/src/gallium/tests/graw/graw_util.h U xenocara/dist/Mesa/src/gallium/tests/graw/gs-test.c U xenocara/dist/Mesa/src/gallium/tests/graw/occlusion-query.c U xenocara/dist/Mesa/src/gallium/tests/graw/quad-sample.c U xenocara/dist/Mesa/src/gallium/tests/graw/quad-tex.c U xenocara/dist/Mesa/src/gallium/tests/graw/shader-leak.c U xenocara/dist/Mesa/src/gallium/tests/graw/tex-srgb.c U xenocara/dist/Mesa/src/gallium/tests/graw/tex-swizzle.c U xenocara/dist/Mesa/src/gallium/tests/graw/tgsi_dump.gdb U xenocara/dist/Mesa/src/gallium/tests/graw/tri-gs.c U xenocara/dist/Mesa/src/gallium/tests/graw/tri-instanced.c U xenocara/dist/Mesa/src/gallium/tests/graw/tri-large.c U xenocara/dist/Mesa/src/gallium/tests/graw/tri.c U xenocara/dist/Mesa/src/gallium/tests/graw/vs-test.c U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-add.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-cb-1d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-cb-2d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-dp4.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-dst.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-ex2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-face.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-flr.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-frc.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-kil.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-lg2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-lit.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-lrp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mad-immx.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mad.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-max.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-min.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mov.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mul.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-rcp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-rsq.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-sge.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-slt.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-absneg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-neg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-swz.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-sub.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-tempx.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-ucmp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.sh U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/add-mix.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/add.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/line.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/mov.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/multi-line.txt U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-add.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-arl.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-arr.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-cb-1d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-cb-2d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-dp3.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-dp4.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-dst.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-ex2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-flr.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-frc.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-imul_hi.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-lit.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-lrp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-mad.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-max.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-min.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-mov.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-mul.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-rcp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-rsq.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-slt.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-absneg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-neg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-swz.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-sub.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-uadd.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-umul_hi.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.sh U xenocara/dist/Mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh U xenocara/dist/Mesa/src/gallium/winsys/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Makefile.in N xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/SConscript U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_batchbuffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/SConscript U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_batchbuffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_buffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_fence.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_public.h U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/intel/intel_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/intel_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.h C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.c C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.h U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs_dump.c U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/radeon/tools/radeon_ctx.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/SConscript U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/svga_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_buffer.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_buffer.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_context.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_context.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_fence.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_fence.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_shader.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_shader.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_surface.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_surface.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/fbdev_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/fbdev_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/null/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/null/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/null/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/null/null_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/null/null_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/wayland_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/wayland_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/android/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/sw/android/android_sw_winsys.cpp U xenocara/dist/Mesa/src/gallium/winsys/sw/android/android_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/gdi/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/bitmap_wrapper.cpp U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/bitmap_wrapper.h U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h U xenocara/dist/Mesa/src/gallium/docs/Makefile U xenocara/dist/Mesa/src/gallium/docs/d3d11ddi.txt U xenocara/dist/Mesa/src/gallium/docs/llvm-todo.txt U xenocara/dist/Mesa/src/gallium/docs/make.bat U xenocara/dist/Mesa/src/gallium/docs/source/conf.py U xenocara/dist/Mesa/src/gallium/docs/source/context.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso.rst U xenocara/dist/Mesa/src/gallium/docs/source/debugging.rst U xenocara/dist/Mesa/src/gallium/docs/source/distro.rst U xenocara/dist/Mesa/src/gallium/docs/source/format.rst U xenocara/dist/Mesa/src/gallium/docs/source/glossary.rst U xenocara/dist/Mesa/src/gallium/docs/source/index.rst U xenocara/dist/Mesa/src/gallium/docs/source/intro.rst U xenocara/dist/Mesa/src/gallium/docs/source/pipeline.txt U xenocara/dist/Mesa/src/gallium/docs/source/resources.rst U xenocara/dist/Mesa/src/gallium/docs/source/screen.rst U xenocara/dist/Mesa/src/gallium/docs/source/tgsi.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/blend.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/dsa.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/rasterizer.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/sampler.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/shader.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/velems.rst U xenocara/dist/Mesa/src/gallium/docs/source/exts/formatting.py U xenocara/dist/Mesa/src/gallium/include/pipe/p_compiler.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_config.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_context.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_defines.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_format.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_screen.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_shader_tokens.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_state.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_video_codec.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_video_enums.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_video_state.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/drisw_api.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/drm_driver.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/graw.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/st_api.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/sw_winsys.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/vdpau_interop.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/xlibsw_api.h U xenocara/dist/Mesa/src/gallium/tools/addr2line.sh U xenocara/dist/Mesa/src/gallium/tools/trace/README.txt U xenocara/dist/Mesa/src/gallium/tools/trace/TODO.txt U xenocara/dist/Mesa/src/gallium/tools/trace/diff_state.py U xenocara/dist/Mesa/src/gallium/tools/trace/dump.py U xenocara/dist/Mesa/src/gallium/tools/trace/dump_state.py U xenocara/dist/Mesa/src/gallium/tools/trace/format.py U xenocara/dist/Mesa/src/gallium/tools/trace/model.py U xenocara/dist/Mesa/src/gallium/tools/trace/parse.py U xenocara/dist/Mesa/src/gallium/tools/trace/tracediff.sh U xenocara/dist/Mesa/src/gbm/Makefile.in U xenocara/dist/Mesa/src/gbm/Makefile.am U xenocara/dist/Mesa/src/gbm/gbm-symbols-check U xenocara/dist/Mesa/src/gbm/backends/dri/gbm_dri.c U xenocara/dist/Mesa/src/gbm/backends/dri/gbm_driint.h U xenocara/dist/Mesa/src/gbm/main/backend.c U xenocara/dist/Mesa/src/gbm/main/backend.h U xenocara/dist/Mesa/src/gbm/main/common_drm.h U xenocara/dist/Mesa/src/gbm/main/gbm.c U xenocara/dist/Mesa/src/gbm/main/gbm.h U xenocara/dist/Mesa/src/gbm/main/gbm.pc.in U xenocara/dist/Mesa/src/gbm/main/gbmint.h C xenocara/dist/Mesa/src/glsl/glsl_lexer.cpp U xenocara/dist/Mesa/src/glsl/glsl_parser.cpp U xenocara/dist/Mesa/src/glsl/glsl_parser.h U xenocara/dist/Mesa/src/glsl/Makefile.in U xenocara/dist/Mesa/src/glsl/Android.gen.mk U xenocara/dist/Mesa/src/glsl/Android.mk U xenocara/dist/Mesa/src/glsl/Makefile.am U xenocara/dist/Mesa/src/glsl/Makefile.sources U xenocara/dist/Mesa/src/glsl/README U xenocara/dist/Mesa/src/glsl/SConscript U xenocara/dist/Mesa/src/glsl/TODO U xenocara/dist/Mesa/src/glsl/ast.h U xenocara/dist/Mesa/src/glsl/ast_array_index.cpp U xenocara/dist/Mesa/src/glsl/ast_expr.cpp U xenocara/dist/Mesa/src/glsl/ast_function.cpp U xenocara/dist/Mesa/src/glsl/ast_to_hir.cpp U xenocara/dist/Mesa/src/glsl/ast_type.cpp U xenocara/dist/Mesa/src/glsl/builtin_functions.cpp U xenocara/dist/Mesa/src/glsl/builtin_type_macros.h U xenocara/dist/Mesa/src/glsl/builtin_types.cpp U xenocara/dist/Mesa/src/glsl/builtin_variables.cpp U xenocara/dist/Mesa/src/glsl/glsl_lexer.ll U xenocara/dist/Mesa/src/glsl/glsl_parser.yy U xenocara/dist/Mesa/src/glsl/glsl_parser_extras.cpp U xenocara/dist/Mesa/src/glsl/glsl_parser_extras.h U xenocara/dist/Mesa/src/glsl/glsl_symbol_table.cpp U xenocara/dist/Mesa/src/glsl/glsl_symbol_table.h U xenocara/dist/Mesa/src/glsl/glsl_types.cpp U xenocara/dist/Mesa/src/glsl/glsl_types.h U xenocara/dist/Mesa/src/glsl/hir_field_selection.cpp U xenocara/dist/Mesa/src/glsl/ir.cpp U xenocara/dist/Mesa/src/glsl/ir.h U xenocara/dist/Mesa/src/glsl/ir_basic_block.cpp U xenocara/dist/Mesa/src/glsl/ir_basic_block.h U xenocara/dist/Mesa/src/glsl/ir_builder.cpp U xenocara/dist/Mesa/src/glsl/ir_builder.h U xenocara/dist/Mesa/src/glsl/ir_clone.cpp U xenocara/dist/Mesa/src/glsl/ir_constant_expression.cpp U xenocara/dist/Mesa/src/glsl/ir_equals.cpp U xenocara/dist/Mesa/src/glsl/ir_expression_flattening.cpp U xenocara/dist/Mesa/src/glsl/ir_expression_flattening.h U xenocara/dist/Mesa/src/glsl/ir_function.cpp U xenocara/dist/Mesa/src/glsl/ir_function_can_inline.cpp U xenocara/dist/Mesa/src/glsl/ir_function_detect_recursion.cpp U xenocara/dist/Mesa/src/glsl/ir_function_inlining.h U xenocara/dist/Mesa/src/glsl/ir_hierarchical_visitor.cpp U xenocara/dist/Mesa/src/glsl/ir_hierarchical_visitor.h U xenocara/dist/Mesa/src/glsl/ir_hv_accept.cpp U xenocara/dist/Mesa/src/glsl/ir_import_prototypes.cpp U xenocara/dist/Mesa/src/glsl/ir_optimization.h U xenocara/dist/Mesa/src/glsl/ir_print_visitor.cpp U xenocara/dist/Mesa/src/glsl/ir_print_visitor.h U xenocara/dist/Mesa/src/glsl/ir_reader.cpp U xenocara/dist/Mesa/src/glsl/ir_reader.h U xenocara/dist/Mesa/src/glsl/ir_rvalue_visitor.cpp U xenocara/dist/Mesa/src/glsl/ir_rvalue_visitor.h U xenocara/dist/Mesa/src/glsl/ir_set_program_inouts.cpp U xenocara/dist/Mesa/src/glsl/ir_uniform.h U xenocara/dist/Mesa/src/glsl/ir_validate.cpp U xenocara/dist/Mesa/src/glsl/ir_variable_refcount.cpp U xenocara/dist/Mesa/src/glsl/ir_variable_refcount.h U xenocara/dist/Mesa/src/glsl/ir_visitor.h U xenocara/dist/Mesa/src/glsl/link_atomics.cpp U xenocara/dist/Mesa/src/glsl/link_functions.cpp U xenocara/dist/Mesa/src/glsl/link_interface_blocks.cpp U xenocara/dist/Mesa/src/glsl/link_uniform_block_active_visitor.cpp U xenocara/dist/Mesa/src/glsl/link_uniform_block_active_visitor.h U xenocara/dist/Mesa/src/glsl/link_uniform_blocks.cpp U xenocara/dist/Mesa/src/glsl/link_uniform_initializers.cpp U xenocara/dist/Mesa/src/glsl/link_uniforms.cpp U xenocara/dist/Mesa/src/glsl/link_varyings.h U xenocara/dist/Mesa/src/glsl/link_varyings.cpp U xenocara/dist/Mesa/src/glsl/linker.cpp U xenocara/dist/Mesa/src/glsl/linker.h U xenocara/dist/Mesa/src/glsl/list.h U xenocara/dist/Mesa/src/glsl/loop_analysis.cpp U xenocara/dist/Mesa/src/glsl/loop_analysis.h U xenocara/dist/Mesa/src/glsl/loop_controls.cpp U xenocara/dist/Mesa/src/glsl/loop_unroll.cpp U xenocara/dist/Mesa/src/glsl/lower_clip_distance.cpp U xenocara/dist/Mesa/src/glsl/lower_discard.cpp U xenocara/dist/Mesa/src/glsl/lower_discard_flow.cpp U xenocara/dist/Mesa/src/glsl/lower_if_to_cond_assign.cpp U xenocara/dist/Mesa/src/glsl/lower_instructions.cpp U xenocara/dist/Mesa/src/glsl/lower_jumps.cpp U xenocara/dist/Mesa/src/glsl/lower_mat_op_to_vec.cpp U xenocara/dist/Mesa/src/glsl/lower_named_interface_blocks.cpp U xenocara/dist/Mesa/src/glsl/lower_noise.cpp U xenocara/dist/Mesa/src/glsl/lower_offset_array.cpp U xenocara/dist/Mesa/src/glsl/lower_output_reads.cpp U xenocara/dist/Mesa/src/glsl/lower_packed_varyings.cpp U xenocara/dist/Mesa/src/glsl/lower_packing_builtins.cpp U xenocara/dist/Mesa/src/glsl/lower_texture_projection.cpp U xenocara/dist/Mesa/src/glsl/lower_ubo_reference.cpp U xenocara/dist/Mesa/src/glsl/lower_variable_index_to_cond_assign.cpp U xenocara/dist/Mesa/src/glsl/lower_vec_index_to_cond_assign.cpp U xenocara/dist/Mesa/src/glsl/lower_vec_index_to_swizzle.cpp U xenocara/dist/Mesa/src/glsl/lower_vector.cpp U xenocara/dist/Mesa/src/glsl/lower_vector_insert.cpp U xenocara/dist/Mesa/src/glsl/main.cpp U xenocara/dist/Mesa/src/glsl/opt_algebraic.cpp U xenocara/dist/Mesa/src/glsl/opt_array_splitting.cpp U xenocara/dist/Mesa/src/glsl/opt_constant_folding.cpp U xenocara/dist/Mesa/src/glsl/opt_cse.cpp U xenocara/dist/Mesa/src/glsl/opt_constant_propagation.cpp U xenocara/dist/Mesa/src/glsl/opt_constant_variable.cpp U xenocara/dist/Mesa/src/glsl/opt_copy_propagation.cpp U xenocara/dist/Mesa/src/glsl/opt_copy_propagation_elements.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_builtin_varyings.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_code.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_code_local.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_functions.cpp U xenocara/dist/Mesa/src/glsl/opt_flatten_nested_if_blocks.cpp U xenocara/dist/Mesa/src/glsl/opt_flip_matrices.cpp U xenocara/dist/Mesa/src/glsl/opt_function_inlining.cpp U xenocara/dist/Mesa/src/glsl/opt_if_simplification.cpp U xenocara/dist/Mesa/src/glsl/opt_noop_swizzle.cpp U xenocara/dist/Mesa/src/glsl/opt_redundant_jumps.cpp U xenocara/dist/Mesa/src/glsl/opt_structure_splitting.cpp U xenocara/dist/Mesa/src/glsl/opt_swizzle_swizzle.cpp U xenocara/dist/Mesa/src/glsl/opt_tree_grafting.cpp U xenocara/dist/Mesa/src/glsl/opt_vectorize.cpp U xenocara/dist/Mesa/src/glsl/program.h U xenocara/dist/Mesa/src/glsl/ralloc.c U xenocara/dist/Mesa/src/glsl/ralloc.h U xenocara/dist/Mesa/src/glsl/s_expression.cpp U xenocara/dist/Mesa/src/glsl/s_expression.h U xenocara/dist/Mesa/src/glsl/standalone_scaffolding.cpp U xenocara/dist/Mesa/src/glsl/standalone_scaffolding.h U xenocara/dist/Mesa/src/glsl/strtod.c U xenocara/dist/Mesa/src/glsl/strtod.h U xenocara/dist/Mesa/src/glsl/test.cpp U xenocara/dist/Mesa/src/glsl/test_optpass.cpp U xenocara/dist/Mesa/src/glsl/test_optpass.h C xenocara/dist/Mesa/src/glsl/glcpp/glcpp-lex.c U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-parse.c U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-parse.h U xenocara/dist/Mesa/src/glsl/glcpp/README U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-lex.l U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-parse.y U xenocara/dist/Mesa/src/glsl/glcpp/glcpp.c U xenocara/dist/Mesa/src/glsl/glcpp/glcpp.h U xenocara/dist/Mesa/src/glsl/glcpp/pp.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/000-content-with-spaces.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/000-content-with-spaces.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/001-define.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/001-define.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/002-define-chain.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/002-define-chain.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/003-define-chain-reverse.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/003-define-chain-reverse.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/004-define-recursive.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/004-define-recursive.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/005-define-composite-chain.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/005-define-composite-chain.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/008-define-empty.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/006-define-composite-chain-reverse.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/006-define-composite-chain-reverse.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/007-define-composite-recursive.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/007-define-composite-recursive.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/008-define-empty.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/009-undef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/009-undef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/010-undef-re-define.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/010-undef-re-define.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/011-define-func-empty.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/011-define-func-empty.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/012-define-func-no-args.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/013-define-func-1-arg-unused.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/012-define-func-no-args.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/013-define-func-1-arg-unused.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/014-define-func-2-arg-unused.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/014-define-func-2-arg-unused.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/015-define-object-with-parens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/015-define-object-with-parens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/016-define-func-1-arg.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/016-define-func-1-arg.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/017-define-func-2-args.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/017-define-func-2-args.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/018-define-func-macro-as-parameter.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/021-define-func-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/019-define-func-1-arg-multi.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/018-define-func-macro-as-parameter.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/019-define-func-1-arg-multi.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/020-define-func-2-arg-multi.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/020-define-func-2-arg-multi.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/021-define-func-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/022-define-func-arg-with-parens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/022-define-func-arg-with-parens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/023-define-extra-whitespace.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/023-define-extra-whitespace.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/024-define-chain-to-self-recursion.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/024-define-chain-to-self-recursion.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/025-func-macro-as-non-macro.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/025-func-macro-as-non-macro.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/026-define-func-extra-newlines.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/026-define-func-extra-newlines.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/027-define-chain-obj-to-func.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/027-define-chain-obj-to-func.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/038-func-arg-with-commas.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/032-define-func-self-recurse.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/032-define-func-self-recurse.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/033-define-func-self-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/033-define-func-self-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/034-define-func-self-compose-non-func.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/034-define-func-self-compose-non-func.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/037-finalize-unexpanded-macro.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/037-finalize-unexpanded-macro.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/038-func-arg-with-commas.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/040-token-pasting.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/040-token-pasting.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/041-if-0.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/041-if-0.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/042-if-1.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/042-if-1.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/043-if-0-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/043-if-0-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/044-if-1-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/044-if-1-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/045-if-0-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/045-if-0-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/046-if-1-elsif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/046-if-1-elsif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/047-if-elif-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/047-if-elif-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/048-if-nested.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/048-if-nested.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/049-if-expression-precedence.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/049-if-expression-precedence.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/050-if-defined.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/050-if-defined.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/051-if-relational.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/051-if-relational.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/052-if-bitwise.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/052-if-bitwise.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/053-if-divide-and-shift.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/053-if-divide-and-shift.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/054-if-with-macros.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/glcpp-test U xenocara/dist/Mesa/src/glsl/glcpp/tests/054-if-with-macros.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/056-macro-argument-with-comma.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/056-macro-argument-with-comma.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/057-empty-arguments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/057-empty-arguments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/058-token-pasting-empty-arguments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/058-token-pasting-empty-arguments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/059-token-pasting-integer.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/059-token-pasting-integer.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/062-if-0-skips-garbage.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/062-if-0-skips-garbage.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/063-comments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/063-comments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/064-version.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/064-version.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/065-if-defined-parens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/065-if-defined-parens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/066-if-nospace-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/066-if-nospace-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/067-nested-ifdef-ifndef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/068-accidental-pasting.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/068-accidental-pasting.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/069-repeated-argument.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/069-repeated-argument.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/070-undefined-macro-in-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/070-undefined-macro-in-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/071-punctuator.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/071-punctuator.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/073-if-in-ifdef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/072-token-pasting-same-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/072-token-pasting-same-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/073-if-in-ifdef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/074-elif-undef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/074-elif-undef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/075-elif-elif-undef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/075-elif-elif-undef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/076-elif-undef-nested.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/076-elif-undef-nested.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/077-else-without-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/077-else-without-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/078-elif-without-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/078-elif-without-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/079-endif-without-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/079-endif-without-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/080-if-without-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/080-if-without-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/081-elif-without-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/081-elif-without-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/082-invalid-paste.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/082-invalid-paste.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/083-unterminated-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/083-unterminated-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/084-unbalanced-parentheses.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/084-unbalanced-parentheses.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/085-incorrect-argument-count.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/087-if-comments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/085-incorrect-argument-count.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/086-reserved-macro-names.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/086-reserved-macro-names.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/087-if-comments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/088-redefine-macro-legitimate.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/089-redefine-macro-error.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/089-redefine-macro-error.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/090-hash-error.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/090-hash-error.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/091-hash-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/091-hash-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/092-redefine-macro-error-2.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/092-redefine-macro-error-2.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/093-divide-by-zero.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/093-divide-by-zero.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/095-recursive-define.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/095-recursive-define.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/096-paste-twice.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/096-paste-twice.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/097-paste-with-non-function-macro.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/097-paste-with-non-function-macro.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/098-elif-undefined.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/099-c99-example.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/098-elif-undefined.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/099-c99-example.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/100-macro-with-colon.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/100-macro-with-colon.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/101-macros-used-twice.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/101-macros-used-twice.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/102-garbage-after-endif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/102-garbage-after-endif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/103-garbage-after-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/103-garbage-after-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/104-hash-line-followed-by-code.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/104-hash-line-followed-by-code.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/106-multiline-hash-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/105-multiline-hash-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/105-multiline-hash-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/106-multiline-hash-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/107-multiline-hash-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/107-multiline-hash-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/108-no-space-after-hash-version.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/108-no-space-after-hash-version.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/109-no-space-after-hash-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/109-no-space-after-hash-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/113-line-and-file-macros.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/113-line-and-file-macros.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/114-paste-integer-tokens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/114-paste-integer-tokens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/115-line-continuations.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/115-line-continuations.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/116-disable-line-continuations.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/116-disable-line-continuations.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-comment-becomes-space.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-comment-becomes-space.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-multiple-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-multiple-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/119-elif-after-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/119-elif-after-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/121-comment-bug-72686.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/121-comment-bug-72686.c.expected U xenocara/dist/Mesa/src/glsl/tests/builtin_variable_test.cpp U xenocara/dist/Mesa/src/glsl/tests/common.c U xenocara/dist/Mesa/src/glsl/tests/compare_ir U xenocara/dist/Mesa/src/glsl/tests/copy_constant_to_storage_tests.cpp U xenocara/dist/Mesa/src/glsl/tests/general_ir_test.cpp U xenocara/dist/Mesa/src/glsl/tests/invalidate_locations_test.cpp U xenocara/dist/Mesa/src/glsl/tests/optimization-test U xenocara/dist/Mesa/src/glsl/tests/ralloc_test.cpp U xenocara/dist/Mesa/src/glsl/tests/sampler_types_test.cpp U xenocara/dist/Mesa/src/glsl/tests/set_uniform_initializer_tests.cpp U xenocara/dist/Mesa/src/glsl/tests/sexps.py U xenocara/dist/Mesa/src/glsl/tests/uniform_initializer_utils.cpp U xenocara/dist/Mesa/src/glsl/tests/uniform_initializer_utils.h U xenocara/dist/Mesa/src/glsl/tests/varyings_test.cpp U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/create_test_cases.py U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_1.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_1.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_2.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_2.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_3.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_3.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_4.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_4.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_5.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_5.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_6.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_6.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_guarded_conditional_break.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_guarded_conditional_break.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_pulled_out_jump.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_pulled_out_jump.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_1.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_1.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_2.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_2.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_3.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_3.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_4.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_4.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_false.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_false.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_true.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_true.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_false.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_false.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_true.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_true.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_unified_returns.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_unified_returns.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/remove_continue_at_end_of_loop.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/remove_continue_at_end_of_loop.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_nothing.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_nothing.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return_and_break.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_nothing.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return_and_break.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_nothing.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return_and_break.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return_and_break.opt_test.expected U xenocara/dist/Mesa/src/glx/Makefile.in U xenocara/dist/Mesa/src/glx/Makefile.am U xenocara/dist/Mesa/src/glx/SConscript U xenocara/dist/Mesa/src/glx/XF86dri.c U xenocara/dist/Mesa/src/glx/applegl_glx.c U xenocara/dist/Mesa/src/glx/clientattrib.c U xenocara/dist/Mesa/src/glx/clientinfo.c U xenocara/dist/Mesa/src/glx/compsize.c U xenocara/dist/Mesa/src/glx/create_context.c U xenocara/dist/Mesa/src/glx/dri2.c U xenocara/dist/Mesa/src/glx/dri2.h U xenocara/dist/Mesa/src/glx/dri2_glx.c U xenocara/dist/Mesa/src/glx/dri2_priv.h U xenocara/dist/Mesa/src/glx/dri2_query_renderer.c U xenocara/dist/Mesa/src/glx/dri3_glx.c U xenocara/dist/Mesa/src/glx/dri3_priv.h U xenocara/dist/Mesa/src/glx/dri_common.c U xenocara/dist/Mesa/src/glx/dri_common.h U xenocara/dist/Mesa/src/glx/dri_glx.c U xenocara/dist/Mesa/src/glx/drisw_glx.c U xenocara/dist/Mesa/src/glx/eval.c U xenocara/dist/Mesa/src/glx/glx_error.c U xenocara/dist/Mesa/src/glx/glx_error.h U xenocara/dist/Mesa/src/glx/glx_pbuffer.c U xenocara/dist/Mesa/src/glx/glx_query.c U xenocara/dist/Mesa/src/glx/glxclient.h U xenocara/dist/Mesa/src/glx/glxcmds.c U xenocara/dist/Mesa/src/glx/glxconfig.c U xenocara/dist/Mesa/src/glx/glxconfig.h U xenocara/dist/Mesa/src/glx/glxcurrent.c U xenocara/dist/Mesa/src/glx/glxext.c U xenocara/dist/Mesa/src/glx/glxextensions.c U xenocara/dist/Mesa/src/glx/glxextensions.h U xenocara/dist/Mesa/src/glx/glxhash.c U xenocara/dist/Mesa/src/glx/glxhash.h U xenocara/dist/Mesa/src/glx/indirect_glx.c U xenocara/dist/Mesa/src/glx/indirect_init.h U xenocara/dist/Mesa/src/glx/indirect_texture_compression.c U xenocara/dist/Mesa/src/glx/indirect_transpose_matrix.c U xenocara/dist/Mesa/src/glx/indirect_vertex_array.c U xenocara/dist/Mesa/src/glx/indirect_vertex_array.h U xenocara/dist/Mesa/src/glx/packrender.h U xenocara/dist/Mesa/src/glx/packsingle.h U xenocara/dist/Mesa/src/glx/indirect_vertex_array_priv.h U xenocara/dist/Mesa/src/glx/indirect_vertex_program.c U xenocara/dist/Mesa/src/glx/indirect_window_pos.c U xenocara/dist/Mesa/src/glx/pixel.c U xenocara/dist/Mesa/src/glx/pixelstore.c U xenocara/dist/Mesa/src/glx/query_renderer.c U xenocara/dist/Mesa/src/glx/render2.c U xenocara/dist/Mesa/src/glx/renderpix.c U xenocara/dist/Mesa/src/glx/single2.c U xenocara/dist/Mesa/src/glx/singlepix.c U xenocara/dist/Mesa/src/glx/vertarr.c U xenocara/dist/Mesa/src/glx/xf86dri.h U xenocara/dist/Mesa/src/glx/xf86dristr.h U xenocara/dist/Mesa/src/glx/xfont.c U xenocara/dist/Mesa/src/glx/tests/Makefile.in U xenocara/dist/Mesa/src/glx/tests/Makefile.am U xenocara/dist/Mesa/src/glx/tests/clientinfo_unittest.cpp U xenocara/dist/Mesa/src/glx/tests/create_context_unittest.cpp U xenocara/dist/Mesa/src/glx/tests/enum_sizes.cpp U xenocara/dist/Mesa/src/glx/tests/fake_glx_screen.cpp U xenocara/dist/Mesa/src/glx/tests/fake_glx_screen.h U xenocara/dist/Mesa/src/glx/tests/indirect_api.cpp U xenocara/dist/Mesa/src/glx/tests/mock_xdisplay.h U xenocara/dist/Mesa/src/glx/tests/query_renderer_implementation_unittest.cpp U xenocara/dist/Mesa/src/glx/tests/query_renderer_unittest.cpp U xenocara/dist/Mesa/src/glx/apple/Makefile U xenocara/dist/Mesa/src/glx/apple/RELEASE_NOTES U xenocara/dist/Mesa/src/glx/apple/TODO U xenocara/dist/Mesa/src/glx/apple/apple_cgl.c U xenocara/dist/Mesa/src/glx/apple/apple_cgl.h U xenocara/dist/Mesa/src/glx/apple/apple_glapi.c U xenocara/dist/Mesa/src/glx/apple/apple_glx.c U xenocara/dist/Mesa/src/glx/apple/apple_glx.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_context.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_context.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_drawable.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_drawable.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_log.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_log.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_pbuffer.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_pixmap.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_surface.c U xenocara/dist/Mesa/src/glx/apple/apple_visual.c U xenocara/dist/Mesa/src/glx/apple/apple_visual.h U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api.h U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api_read.c U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api_stereo.c U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api_viewport.c U xenocara/dist/Mesa/src/glx/apple/appledri.c U xenocara/dist/Mesa/src/glx/apple/appledri.h U xenocara/dist/Mesa/src/glx/apple/appledristr.h U xenocara/dist/Mesa/src/glx/apple/glx_empty.c U xenocara/dist/Mesa/src/glx/apple/glxreply.c U xenocara/dist/Mesa/src/gtest/Makefile.in U xenocara/dist/Mesa/src/gtest/Makefile.am U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-death-test.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-message.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-param-test.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-param-test.h.pump U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-printers.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-spi.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-test-part.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-typed-test.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest_pred_impl.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest_prod.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-death-test-internal.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-filepath.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-internal.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h.pump U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-param-util.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-port.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-string.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-tuple.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-tuple.h.pump U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-type-util.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-type-util.h.pump U xenocara/dist/Mesa/src/gtest/src/gtest-all.cc U xenocara/dist/Mesa/src/gtest/src/gtest-death-test.cc U xenocara/dist/Mesa/src/gtest/src/gtest-filepath.cc U xenocara/dist/Mesa/src/gtest/src/gtest-internal-inl.h U xenocara/dist/Mesa/src/gtest/src/gtest-port.cc U xenocara/dist/Mesa/src/gtest/src/gtest-printers.cc U xenocara/dist/Mesa/src/gtest/src/gtest-test-part.cc U xenocara/dist/Mesa/src/gtest/src/gtest-typed-test.cc U xenocara/dist/Mesa/src/gtest/src/gtest.cc U xenocara/dist/Mesa/src/gtest/src/gtest_main.cc U xenocara/dist/Mesa/src/loader/Makefile.in U xenocara/dist/Mesa/src/loader/Android.mk U xenocara/dist/Mesa/src/loader/Makefile.am U xenocara/dist/Mesa/src/loader/Makefile.sources U xenocara/dist/Mesa/src/loader/SConscript U xenocara/dist/Mesa/src/loader/loader.c U xenocara/dist/Mesa/src/loader/loader.h U xenocara/dist/Mesa/src/loader/pci_id_driver_map.c U xenocara/dist/Mesa/src/loader/pci_id_driver_map.h U xenocara/dist/Mesa/src/mapi/Makefile.in U xenocara/dist/Mesa/src/mapi/Android.mk U xenocara/dist/Mesa/src/mapi/Makefile.am U xenocara/dist/Mesa/src/mapi/Makefile.sources U xenocara/dist/Mesa/src/mapi/entry.c U xenocara/dist/Mesa/src/mapi/entry.h U xenocara/dist/Mesa/src/mapi/entry_x86-64_tls.h U xenocara/dist/Mesa/src/mapi/entry_x86_tls.h U xenocara/dist/Mesa/src/mapi/entry_x86_tsd.h U xenocara/dist/Mesa/src/mapi/mapi.c U xenocara/dist/Mesa/src/mapi/mapi.h U xenocara/dist/Mesa/src/mapi/mapi_abi.py U xenocara/dist/Mesa/src/mapi/mapi_glapi.c U xenocara/dist/Mesa/src/mapi/mapi_tmp.h U xenocara/dist/Mesa/src/mapi/stub.c U xenocara/dist/Mesa/src/mapi/stub.h U xenocara/dist/Mesa/src/mapi/table.c U xenocara/dist/Mesa/src/mapi/table.h U xenocara/dist/Mesa/src/mapi/u_compiler.h U xenocara/dist/Mesa/src/mapi/u_current.c U xenocara/dist/Mesa/src/mapi/u_current.h U xenocara/dist/Mesa/src/mapi/u_execmem.c U xenocara/dist/Mesa/src/mapi/u_execmem.h U xenocara/dist/Mesa/src/mapi/u_macros.h U xenocara/dist/Mesa/src/mapi/u_thread.h U xenocara/dist/Mesa/src/mapi/es1api/Makefile.in U xenocara/dist/Mesa/src/mapi/es1api/ABI-check U xenocara/dist/Mesa/src/mapi/es1api/Makefile.am U xenocara/dist/Mesa/src/mapi/es1api/glesv1_cm.pc.in U xenocara/dist/Mesa/src/mapi/es2api/Makefile.in U xenocara/dist/Mesa/src/mapi/es2api/ABI-check U xenocara/dist/Mesa/src/mapi/es2api/Makefile.am U xenocara/dist/Mesa/src/mapi/es2api/glesv2.pc.in U xenocara/dist/Mesa/src/mapi/glapi/Makefile.in U xenocara/dist/Mesa/src/mapi/glapi/Makefile.am U xenocara/dist/Mesa/src/mapi/glapi/Makefile.sources U xenocara/dist/Mesa/src/mapi/glapi/SConscript U xenocara/dist/Mesa/src/mapi/glapi/glapi.c U xenocara/dist/Mesa/src/mapi/glapi/glapi.h U xenocara/dist/Mesa/src/mapi/glapi/glapi_dispatch.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_entrypoint.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_getproc.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_nop.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_priv.h U xenocara/dist/Mesa/src/mapi/glapi/gen/Makefile.in U xenocara/dist/Mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/APPLE_object_purgeable.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_base_instance.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_compute_shader.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_debug_output.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_geometry_shader4.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_invalidate_subdata.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_sync.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_multi_bind.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_robustness.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_sample_shading.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_float.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_gather.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_rg.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_storage.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_view.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_vertex_type_2_10_10_10_rev.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_viewport_array.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_texture_array.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_texture_integer.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/GL3x.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/GL4x.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/INTEL_performance_query.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/KHR_debug.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/Makefile.am U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_conditional_render.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_primitive_restart.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_texture_barrier.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/OES_EGL_image.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/OES_fixed_point.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/OES_single_precision.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/SConscript U xenocara/dist/Mesa/src/mapi/glapi/gen/es_EXT.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/extension_helper.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_XML.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_common.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_recv.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_send.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_size.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_server_table.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_API.dtd U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_SPARC_asm.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_XML.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_and_es_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_and_glX_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_apitemp.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_enums.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_genexec.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_gentable.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_offsets.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_procs.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_table.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_x86-64_asm.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_x86_asm.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glapi_gen.mk U xenocara/dist/Mesa/src/mapi/glapi/gen/license.py U xenocara/dist/Mesa/src/mapi/glapi/gen/mesadef.py U xenocara/dist/Mesa/src/mapi/glapi/gen/next_available_offset.sh U xenocara/dist/Mesa/src/mapi/glapi/gen/remap_helper.py U xenocara/dist/Mesa/src/mapi/glapi/gen/typeexpr.py U xenocara/dist/Mesa/src/mapi/glapi/tests/Makefile.in U xenocara/dist/Mesa/src/mapi/glapi/tests/Makefile.am U xenocara/dist/Mesa/src/mapi/glapi/tests/check_table.cpp U xenocara/dist/Mesa/src/mapi/shared-glapi/Makefile.in U xenocara/dist/Mesa/src/mapi/shared-glapi/Makefile.am U xenocara/dist/Mesa/src/mapi/shared-glapi/SConscript U xenocara/dist/Mesa/src/mapi/shared-glapi/tests/Makefile.in U xenocara/dist/Mesa/src/mapi/shared-glapi/tests/Makefile.am U xenocara/dist/Mesa/src/mapi/shared-glapi/tests/check_table.cpp U xenocara/dist/Mesa/src/mapi/vgapi/Makefile.in U xenocara/dist/Mesa/src/mapi/vgapi/Makefile.am U xenocara/dist/Mesa/src/mapi/vgapi/SConscript U xenocara/dist/Mesa/src/mapi/vgapi/vg.pc.in U xenocara/dist/Mesa/src/mapi/vgapi/vgapi.csv U xenocara/dist/Mesa/src/mesa/Makefile.in U xenocara/dist/Mesa/src/mesa/Android.gen.mk U xenocara/dist/Mesa/src/mesa/Android.libmesa_dricore.mk U xenocara/dist/Mesa/src/mesa/Android.libmesa_glsl_utils.mk U xenocara/dist/Mesa/src/mesa/Android.libmesa_st_mesa.mk U xenocara/dist/Mesa/src/mesa/Android.mesa_gen_matypes.mk U xenocara/dist/Mesa/src/mesa/Android.mk U xenocara/dist/Mesa/src/mesa/Makefile.am U xenocara/dist/Mesa/src/mesa/Makefile.sources U xenocara/dist/Mesa/src/mesa/SConscript U xenocara/dist/Mesa/src/mesa/gl.pc.in U xenocara/dist/Mesa/src/mesa/drivers/SConscript U xenocara/dist/Mesa/src/mesa/drivers/dri/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/dri.pc.in U xenocara/dist/Mesa/src/mesa/drivers/dri/gen-symbol-redefs.py U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/common/SConscript U xenocara/dist/Mesa/src/mesa/drivers/dri/common/dri_test.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/dri_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/dri_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/drirc U xenocara/dist/Mesa/src/mesa/drivers/dri/common/megadriver_stub.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/mmio.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/utils.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/utils.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlconfig.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlconfig.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/SConscript U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/ca.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/de.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/es.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/fr.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/gen_xmlpool.py U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/nl.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/sv.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/t_options.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_texblend.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_vtbl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_debug.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_fragprog.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_program.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_program.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_vtbl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffers.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffers.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_chipset.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_clear.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_clear.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_extensions.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_extensions.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_fbo.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_regions.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_regions.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_render.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_syncobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_image.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tris.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tris.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cc.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cfg.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cfg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clear.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_line.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_point.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_tri.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_unfilled.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_curbe.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.h C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_defines.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_device_info.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_device_info.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_disasm.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_draw.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_draw.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu_compact.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu_emit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu_util.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_cse.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_dead_code_eliminate.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_fp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_peephole_predicated_break.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_register_coalesce.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_sel_peephole.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs_emit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_interpolation_map.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_lower_unnormalized_offset.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_updownsample.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_misc_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_program.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_performance_monitor.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_program.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_queryobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_reset.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf_emit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_shader.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_shader.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_batch.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_cache.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_dump.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_structs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_urb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_vp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_vs_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_iz.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_blorp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_blorp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_cc.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_depthstencil.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_scissor_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_sol.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_urb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_viewport_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_wm_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_blorp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_blorp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_disable.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_misc_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_sampler_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_urb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_viewport_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_wm_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_blend_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_disable.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_disasm.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_draw_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_fs_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_generator.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_instruction.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_instruction.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_misc_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_ps_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_sol_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_vec4_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_viewport_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffers.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffers.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_chipset.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_debug.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_debug.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_extensions.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_fbo.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_image.h C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_resolve_map.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_resolve_map.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_syncobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_image.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_subimage.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_blorp_blit_eu_gen.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_eu_compact.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_vec4_copy_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h C xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_render_t.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c C xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_swtnl_t.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_render.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_render.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_render.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Doxyfile U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c C xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_fragshader.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_ioctl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_ioctl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_maos.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_maos.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_sanity.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_sanity.h C xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_state_init.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_swtcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_swtcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_vertprog.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_vertprog.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_debug.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_debug.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_dma.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_dma.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_fog.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_fog.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_span.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_span.h C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_texture.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_texture.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tile.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tile.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/server/radeon_dri.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/server/radeon_macros.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/swrast.c U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/swrast_priv.h U xenocara/dist/Mesa/src/mesa/drivers/osmesa/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/osmesa/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/osmesa/SConscript U xenocara/dist/Mesa/src/mesa/drivers/osmesa/osmesa.c U xenocara/dist/Mesa/src/mesa/drivers/osmesa/osmesa.def U xenocara/dist/Mesa/src/mesa/drivers/osmesa/osmesa.pc.in U xenocara/dist/Mesa/src/mesa/drivers/x11/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/x11/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/x11/SConscript U xenocara/dist/Mesa/src/mesa/drivers/x11/fakeglx.c U xenocara/dist/Mesa/src/mesa/drivers/x11/glxapi.c U xenocara/dist/Mesa/src/mesa/drivers/x11/glxapi.h U xenocara/dist/Mesa/src/mesa/drivers/x11/glxheader.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xfonts.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xfonts.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_api.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_buffer.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_dd.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_line.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_tri.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xmesa.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xmesaP.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xmesa_x.h U xenocara/dist/Mesa/src/mesa/drivers/common/driverfuncs.c U xenocara/dist/Mesa/src/mesa/drivers/common/driverfuncs.h C xenocara/dist/Mesa/src/mesa/drivers/common/meta.c U xenocara/dist/Mesa/src/mesa/drivers/common/meta.h U xenocara/dist/Mesa/src/mesa/drivers/common/meta_blit.c U xenocara/dist/Mesa/src/mesa/drivers/common/meta_generate_mipmap.c U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SConscript U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SoftwareRast.cpp U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SoftwareRast.h U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SoftwareRast.rdef U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/SConscript U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/colors.h U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/mesa.def U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/wgl.c U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/wmesa.c U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/wmesadef.h U xenocara/dist/Mesa/src/mesa/main/accum.c U xenocara/dist/Mesa/src/mesa/main/accum.h U xenocara/dist/Mesa/src/mesa/main/api_arrayelt.c U xenocara/dist/Mesa/src/mesa/main/api_arrayelt.h U xenocara/dist/Mesa/src/mesa/main/api_exec.h U xenocara/dist/Mesa/src/mesa/main/api_loopback.c U xenocara/dist/Mesa/src/mesa/main/api_loopback.h U xenocara/dist/Mesa/src/mesa/main/api_validate.c U xenocara/dist/Mesa/src/mesa/main/api_validate.h U xenocara/dist/Mesa/src/mesa/main/arbprogram.c U xenocara/dist/Mesa/src/mesa/main/arbprogram.h U xenocara/dist/Mesa/src/mesa/main/arrayobj.c U xenocara/dist/Mesa/src/mesa/main/arrayobj.h U xenocara/dist/Mesa/src/mesa/main/atifragshader.c U xenocara/dist/Mesa/src/mesa/main/atifragshader.h U xenocara/dist/Mesa/src/mesa/main/attrib.c U xenocara/dist/Mesa/src/mesa/main/attrib.h U xenocara/dist/Mesa/src/mesa/main/bitset.h U xenocara/dist/Mesa/src/mesa/main/blend.c U xenocara/dist/Mesa/src/mesa/main/blend.h U xenocara/dist/Mesa/src/mesa/main/blit.c U xenocara/dist/Mesa/src/mesa/main/blit.h U xenocara/dist/Mesa/src/mesa/main/clear.c U xenocara/dist/Mesa/src/mesa/main/bufferobj.c U xenocara/dist/Mesa/src/mesa/main/bufferobj.h C xenocara/dist/Mesa/src/mesa/main/buffers.c U xenocara/dist/Mesa/src/mesa/main/buffers.h U xenocara/dist/Mesa/src/mesa/main/clear.h U xenocara/dist/Mesa/src/mesa/main/clip.c U xenocara/dist/Mesa/src/mesa/main/clip.h U xenocara/dist/Mesa/src/mesa/main/colormac.h U xenocara/dist/Mesa/src/mesa/main/colortab.c U xenocara/dist/Mesa/src/mesa/main/colortab.h U xenocara/dist/Mesa/src/mesa/main/compiler.h U xenocara/dist/Mesa/src/mesa/main/compute.c U xenocara/dist/Mesa/src/mesa/main/compute.h U xenocara/dist/Mesa/src/mesa/main/condrender.c U xenocara/dist/Mesa/src/mesa/main/condrender.h U xenocara/dist/Mesa/src/mesa/main/config.h C xenocara/dist/Mesa/src/mesa/main/context.c U xenocara/dist/Mesa/src/mesa/main/context.h U xenocara/dist/Mesa/src/mesa/main/convolve.c U xenocara/dist/Mesa/src/mesa/main/convolve.h U xenocara/dist/Mesa/src/mesa/main/core.h U xenocara/dist/Mesa/src/mesa/main/cpuinfo.c U xenocara/dist/Mesa/src/mesa/main/cpuinfo.h U xenocara/dist/Mesa/src/mesa/main/dd.h U xenocara/dist/Mesa/src/mesa/main/debug.c U xenocara/dist/Mesa/src/mesa/main/debug.h U xenocara/dist/Mesa/src/mesa/main/depth.c U xenocara/dist/Mesa/src/mesa/main/depth.h U xenocara/dist/Mesa/src/mesa/main/dlist.c U xenocara/dist/Mesa/src/mesa/main/dlist.h U xenocara/dist/Mesa/src/mesa/main/dlopen.h U xenocara/dist/Mesa/src/mesa/main/drawpix.c U xenocara/dist/Mesa/src/mesa/main/drawpix.h U xenocara/dist/Mesa/src/mesa/main/drawtex.c U xenocara/dist/Mesa/src/mesa/main/drawtex.h U xenocara/dist/Mesa/src/mesa/main/enable.c U xenocara/dist/Mesa/src/mesa/main/enable.h U xenocara/dist/Mesa/src/mesa/main/enums.h U xenocara/dist/Mesa/src/mesa/main/errors.c U xenocara/dist/Mesa/src/mesa/main/errors.h U xenocara/dist/Mesa/src/mesa/main/es1_conversion.c U xenocara/dist/Mesa/src/mesa/main/es1_conversion.h U xenocara/dist/Mesa/src/mesa/main/eval.c U xenocara/dist/Mesa/src/mesa/main/eval.h U xenocara/dist/Mesa/src/mesa/main/execmem.c U xenocara/dist/Mesa/src/mesa/main/extensions.c U xenocara/dist/Mesa/src/mesa/main/extensions.h U xenocara/dist/Mesa/src/mesa/main/fbobject.c U xenocara/dist/Mesa/src/mesa/main/fbobject.h U xenocara/dist/Mesa/src/mesa/main/feedback.c U xenocara/dist/Mesa/src/mesa/main/feedback.h U xenocara/dist/Mesa/src/mesa/main/fog.c U xenocara/dist/Mesa/src/mesa/main/ff_fragment_shader.cpp U xenocara/dist/Mesa/src/mesa/main/ffvertex_prog.c U xenocara/dist/Mesa/src/mesa/main/ffvertex_prog.h U xenocara/dist/Mesa/src/mesa/main/fog.h U xenocara/dist/Mesa/src/mesa/main/format_pack.c U xenocara/dist/Mesa/src/mesa/main/format_pack.h U xenocara/dist/Mesa/src/mesa/main/format_unpack.c U xenocara/dist/Mesa/src/mesa/main/format_unpack.h U xenocara/dist/Mesa/src/mesa/main/formatquery.c U xenocara/dist/Mesa/src/mesa/main/formatquery.h U xenocara/dist/Mesa/src/mesa/main/formats.c U xenocara/dist/Mesa/src/mesa/main/formats.h U xenocara/dist/Mesa/src/mesa/main/framebuffer.c U xenocara/dist/Mesa/src/mesa/main/framebuffer.h U xenocara/dist/Mesa/src/mesa/main/genmipmap.c U xenocara/dist/Mesa/src/mesa/main/genmipmap.h U xenocara/dist/Mesa/src/mesa/main/get.c U xenocara/dist/Mesa/src/mesa/main/get.h U xenocara/dist/Mesa/src/mesa/main/get_hash_generator.py U xenocara/dist/Mesa/src/mesa/main/get_hash_params.py U xenocara/dist/Mesa/src/mesa/main/getstring.c U xenocara/dist/Mesa/src/mesa/main/glformats.c U xenocara/dist/Mesa/src/mesa/main/glformats.h U xenocara/dist/Mesa/src/mesa/main/glheader.h U xenocara/dist/Mesa/src/mesa/main/hash.c U xenocara/dist/Mesa/src/mesa/main/hash.h U xenocara/dist/Mesa/src/mesa/main/hash_table.c U xenocara/dist/Mesa/src/mesa/main/hash_table.h U xenocara/dist/Mesa/src/mesa/main/hint.c U xenocara/dist/Mesa/src/mesa/main/hint.h U xenocara/dist/Mesa/src/mesa/main/histogram.c U xenocara/dist/Mesa/src/mesa/main/histogram.h U xenocara/dist/Mesa/src/mesa/main/image.c U xenocara/dist/Mesa/src/mesa/main/image.h U xenocara/dist/Mesa/src/mesa/main/imports.c U xenocara/dist/Mesa/src/mesa/main/imports.h U xenocara/dist/Mesa/src/mesa/main/light.c U xenocara/dist/Mesa/src/mesa/main/light.h U xenocara/dist/Mesa/src/mesa/main/lines.c U xenocara/dist/Mesa/src/mesa/main/lines.h U xenocara/dist/Mesa/src/mesa/main/macros.h U xenocara/dist/Mesa/src/mesa/main/matrix.c U xenocara/dist/Mesa/src/mesa/main/matrix.h U xenocara/dist/Mesa/src/mesa/main/mipmap.c U xenocara/dist/Mesa/src/mesa/main/mipmap.h U xenocara/dist/Mesa/src/mesa/main/mm.c U xenocara/dist/Mesa/src/mesa/main/mm.h U xenocara/dist/Mesa/src/mesa/main/mtypes.h U xenocara/dist/Mesa/src/mesa/main/multisample.c U xenocara/dist/Mesa/src/mesa/main/multisample.h U xenocara/dist/Mesa/src/mesa/main/objectlabel.c U xenocara/dist/Mesa/src/mesa/main/objectlabel.h U xenocara/dist/Mesa/src/mesa/main/pack.c U xenocara/dist/Mesa/src/mesa/main/pack.h U xenocara/dist/Mesa/src/mesa/main/pack_tmp.h U xenocara/dist/Mesa/src/mesa/main/pbo.c U xenocara/dist/Mesa/src/mesa/main/pbo.h U xenocara/dist/Mesa/src/mesa/main/performance_monitor.c U xenocara/dist/Mesa/src/mesa/main/performance_monitor.h U xenocara/dist/Mesa/src/mesa/main/pipelineobj.c U xenocara/dist/Mesa/src/mesa/main/pipelineobj.h U xenocara/dist/Mesa/src/mesa/main/pixel.c U xenocara/dist/Mesa/src/mesa/main/pixel.h U xenocara/dist/Mesa/src/mesa/main/pixelstore.c U xenocara/dist/Mesa/src/mesa/main/pixelstore.h U xenocara/dist/Mesa/src/mesa/main/pixeltransfer.c U xenocara/dist/Mesa/src/mesa/main/pixeltransfer.h U xenocara/dist/Mesa/src/mesa/main/points.c U xenocara/dist/Mesa/src/mesa/main/points.h U xenocara/dist/Mesa/src/mesa/main/polygon.c U xenocara/dist/Mesa/src/mesa/main/polygon.h U xenocara/dist/Mesa/src/mesa/main/querymatrix.c U xenocara/dist/Mesa/src/mesa/main/querymatrix.h U xenocara/dist/Mesa/src/mesa/main/queryobj.c U xenocara/dist/Mesa/src/mesa/main/queryobj.h U xenocara/dist/Mesa/src/mesa/main/rastpos.c U xenocara/dist/Mesa/src/mesa/main/rastpos.h U xenocara/dist/Mesa/src/mesa/main/readpix.c U xenocara/dist/Mesa/src/mesa/main/readpix.h U xenocara/dist/Mesa/src/mesa/main/remap.c U xenocara/dist/Mesa/src/mesa/main/remap.h U xenocara/dist/Mesa/src/mesa/main/renderbuffer.c U xenocara/dist/Mesa/src/mesa/main/renderbuffer.h U xenocara/dist/Mesa/src/mesa/main/samplerobj.c U xenocara/dist/Mesa/src/mesa/main/samplerobj.h U xenocara/dist/Mesa/src/mesa/main/scissor.c U xenocara/dist/Mesa/src/mesa/main/scissor.h U xenocara/dist/Mesa/src/mesa/main/set.c U xenocara/dist/Mesa/src/mesa/main/set.h U xenocara/dist/Mesa/src/mesa/main/shader_query.cpp U xenocara/dist/Mesa/src/mesa/main/shaderapi.c U xenocara/dist/Mesa/src/mesa/main/shaderapi.h U xenocara/dist/Mesa/src/mesa/main/shaderimage.c U xenocara/dist/Mesa/src/mesa/main/shaderimage.h U xenocara/dist/Mesa/src/mesa/main/shaderobj.c U xenocara/dist/Mesa/src/mesa/main/shaderobj.h C xenocara/dist/Mesa/src/mesa/main/shared.c U xenocara/dist/Mesa/src/mesa/main/shared.h U xenocara/dist/Mesa/src/mesa/main/simple_list.h U xenocara/dist/Mesa/src/mesa/main/state.c U xenocara/dist/Mesa/src/mesa/main/state.h U xenocara/dist/Mesa/src/mesa/main/stencil.c U xenocara/dist/Mesa/src/mesa/main/stencil.h U xenocara/dist/Mesa/src/mesa/main/streaming-load-memcpy.c U xenocara/dist/Mesa/src/mesa/main/streaming-load-memcpy.h U xenocara/dist/Mesa/src/mesa/main/syncobj.c U xenocara/dist/Mesa/src/mesa/main/syncobj.h U xenocara/dist/Mesa/src/mesa/main/texcompress.c U xenocara/dist/Mesa/src/mesa/main/texcompress.h U xenocara/dist/Mesa/src/mesa/main/texcompress_cpal.c U xenocara/dist/Mesa/src/mesa/main/texcompress_cpal.h U xenocara/dist/Mesa/src/mesa/main/texcompress_etc.c U xenocara/dist/Mesa/src/mesa/main/texcompress_etc.h U xenocara/dist/Mesa/src/mesa/main/texcompress_etc_tmp.h U xenocara/dist/Mesa/src/mesa/main/texcompress_fxt1.c U xenocara/dist/Mesa/src/mesa/main/texcompress_fxt1.h U xenocara/dist/Mesa/src/mesa/main/texenv.c U xenocara/dist/Mesa/src/mesa/main/texcompress_rgtc.c U xenocara/dist/Mesa/src/mesa/main/texcompress_rgtc.h U xenocara/dist/Mesa/src/mesa/main/texcompress_rgtc_tmp.h U xenocara/dist/Mesa/src/mesa/main/texcompress_s3tc.c U xenocara/dist/Mesa/src/mesa/main/texcompress_s3tc.h U xenocara/dist/Mesa/src/mesa/main/texenv.h U xenocara/dist/Mesa/src/mesa/main/texenvprogram.h U xenocara/dist/Mesa/src/mesa/main/texformat.c U xenocara/dist/Mesa/src/mesa/main/texformat.h U xenocara/dist/Mesa/src/mesa/main/texgen.c U xenocara/dist/Mesa/src/mesa/main/texgen.h U xenocara/dist/Mesa/src/mesa/main/texgetimage.c U xenocara/dist/Mesa/src/mesa/main/texgetimage.h C xenocara/dist/Mesa/src/mesa/main/teximage.c C xenocara/dist/Mesa/src/mesa/main/teximage.h U xenocara/dist/Mesa/src/mesa/main/texobj.c U xenocara/dist/Mesa/src/mesa/main/texobj.h C xenocara/dist/Mesa/src/mesa/main/texparam.c U xenocara/dist/Mesa/src/mesa/main/texparam.h U xenocara/dist/Mesa/src/mesa/main/texstate.c U xenocara/dist/Mesa/src/mesa/main/texstate.h U xenocara/dist/Mesa/src/mesa/main/texstorage.c U xenocara/dist/Mesa/src/mesa/main/texstorage.h C xenocara/dist/Mesa/src/mesa/main/texstore.c U xenocara/dist/Mesa/src/mesa/main/texstore.h U xenocara/dist/Mesa/src/mesa/main/texturebarrier.c U xenocara/dist/Mesa/src/mesa/main/texturebarrier.h U xenocara/dist/Mesa/src/mesa/main/textureview.c U xenocara/dist/Mesa/src/mesa/main/textureview.h U xenocara/dist/Mesa/src/mesa/main/transformfeedback.c U xenocara/dist/Mesa/src/mesa/main/transformfeedback.h U xenocara/dist/Mesa/src/mesa/main/uniform_query.cpp U xenocara/dist/Mesa/src/mesa/main/uniforms.c U xenocara/dist/Mesa/src/mesa/main/uniforms.h U xenocara/dist/Mesa/src/mesa/main/varray.c U xenocara/dist/Mesa/src/mesa/main/varray.h U xenocara/dist/Mesa/src/mesa/main/vdpau.c U xenocara/dist/Mesa/src/mesa/main/vdpau.h U xenocara/dist/Mesa/src/mesa/main/version.c U xenocara/dist/Mesa/src/mesa/main/version.h U xenocara/dist/Mesa/src/mesa/main/viewport.c U xenocara/dist/Mesa/src/mesa/main/viewport.h U xenocara/dist/Mesa/src/mesa/main/vtxfmt.c U xenocara/dist/Mesa/src/mesa/main/vtxfmt.h U xenocara/dist/Mesa/src/mesa/main/tests/Makefile.in U xenocara/dist/Mesa/src/mesa/main/tests/Makefile.am U xenocara/dist/Mesa/src/mesa/main/tests/dispatch_sanity.cpp U xenocara/dist/Mesa/src/mesa/main/tests/enum_strings.cpp U xenocara/dist/Mesa/src/mesa/main/tests/program_state_string.cpp U xenocara/dist/Mesa/src/mesa/main/tests/stubs.cpp U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/Makefile.in U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/Makefile.am U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/collision.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/delete_and_lookup.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/delete_management.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/destroy_callback.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/insert_and_lookup.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/insert_many.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/null_destroy.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/random_entry.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/remove_null.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/replacement.c U xenocara/dist/Mesa/src/mesa/math/m_clip_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_copy_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_debug.h U xenocara/dist/Mesa/src/mesa/math/m_debug_clip.c U xenocara/dist/Mesa/src/mesa/math/m_debug_norm.c U xenocara/dist/Mesa/src/mesa/math/m_debug_util.h U xenocara/dist/Mesa/src/mesa/math/m_debug_xform.c U xenocara/dist/Mesa/src/mesa/math/m_dotprod_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_eval.c U xenocara/dist/Mesa/src/mesa/math/m_eval.h U xenocara/dist/Mesa/src/mesa/math/m_matrix.c U xenocara/dist/Mesa/src/mesa/math/m_matrix.h U xenocara/dist/Mesa/src/mesa/math/m_norm_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_trans_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_translate.c U xenocara/dist/Mesa/src/mesa/math/m_translate.h U xenocara/dist/Mesa/src/mesa/math/m_vector.c U xenocara/dist/Mesa/src/mesa/math/m_vector.h U xenocara/dist/Mesa/src/mesa/math/m_xform.c U xenocara/dist/Mesa/src/mesa/math/m_xform.h U xenocara/dist/Mesa/src/mesa/math/m_xform_tmp.h U xenocara/dist/Mesa/src/mesa/program/Android.mk U xenocara/dist/Mesa/src/mesa/program/arbprogparse.c U xenocara/dist/Mesa/src/mesa/program/arbprogparse.h U xenocara/dist/Mesa/src/mesa/program/hash_table.h U xenocara/dist/Mesa/src/mesa/program/ir_to_mesa.cpp U xenocara/dist/Mesa/src/mesa/program/ir_to_mesa.h U xenocara/dist/Mesa/src/mesa/program/prog_cache.c U xenocara/dist/Mesa/src/mesa/program/prog_cache.h U xenocara/dist/Mesa/src/mesa/program/prog_execute.c U xenocara/dist/Mesa/src/mesa/program/prog_execute.h U xenocara/dist/Mesa/src/mesa/program/prog_hash_table.c U xenocara/dist/Mesa/src/mesa/program/prog_instruction.c U xenocara/dist/Mesa/src/mesa/program/prog_instruction.h U xenocara/dist/Mesa/src/mesa/program/prog_noise.c U xenocara/dist/Mesa/src/mesa/program/prog_noise.h U xenocara/dist/Mesa/src/mesa/program/prog_opt_constant_fold.c U xenocara/dist/Mesa/src/mesa/program/prog_optimize.c U xenocara/dist/Mesa/src/mesa/program/prog_optimize.h U xenocara/dist/Mesa/src/mesa/program/prog_print.c U xenocara/dist/Mesa/src/mesa/program/prog_parameter.c U xenocara/dist/Mesa/src/mesa/program/prog_parameter.h U xenocara/dist/Mesa/src/mesa/program/prog_parameter_layout.c U xenocara/dist/Mesa/src/mesa/program/prog_parameter_layout.h U xenocara/dist/Mesa/src/mesa/program/prog_print.h U xenocara/dist/Mesa/src/mesa/program/prog_statevars.c U xenocara/dist/Mesa/src/mesa/program/prog_statevars.h U xenocara/dist/Mesa/src/mesa/program/program.c U xenocara/dist/Mesa/src/mesa/program/program.h U xenocara/dist/Mesa/src/mesa/program/program_lexer.l U xenocara/dist/Mesa/src/mesa/program/program_parse.y U xenocara/dist/Mesa/src/mesa/program/program_parse_extra.c U xenocara/dist/Mesa/src/mesa/program/program_parser.h U xenocara/dist/Mesa/src/mesa/program/programopt.c U xenocara/dist/Mesa/src/mesa/program/programopt.h U xenocara/dist/Mesa/src/mesa/program/register_allocate.c U xenocara/dist/Mesa/src/mesa/program/register_allocate.h U xenocara/dist/Mesa/src/mesa/program/sampler.cpp U xenocara/dist/Mesa/src/mesa/program/sampler.h U xenocara/dist/Mesa/src/mesa/program/symbol_table.c U xenocara/dist/Mesa/src/mesa/program/string_to_uint_map.cpp U xenocara/dist/Mesa/src/mesa/program/symbol_table.h U xenocara/dist/Mesa/src/mesa/sparc/norm.S U xenocara/dist/Mesa/src/mesa/sparc/sparc.c U xenocara/dist/Mesa/src/mesa/sparc/sparc.h U xenocara/dist/Mesa/src/mesa/sparc/sparc_clip.S U xenocara/dist/Mesa/src/mesa/sparc/sparc_matrix.h U xenocara/dist/Mesa/src/mesa/sparc/xform.S U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_array.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_blend.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_clip.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_constbuf.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_constbuf.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_depth.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_framebuffer.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_msaa.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_pixeltransfer.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_rasterizer.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_sampler.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_scissor.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_shader.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_shader.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_stipple.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cache.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_texture.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_viewport.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bitmap.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bitmap.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_blit.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_blit.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bufferobjects.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bufferobjects.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_clear.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_clear.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_condrender.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_condrender.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawpixels.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawpixels.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawtex.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawtex.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_eglimage.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_eglimage.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_fbo.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_fbo.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_feedback.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_feedback.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_flush.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_flush.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_msaa.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_msaa.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_program.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_program.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_queryobj.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_queryobj.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_rasterpos.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_rasterpos.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_readpixels.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_readpixels.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_strings.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_strings.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_syncobj.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_syncobj.h C xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texture.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texture.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texturebarrier.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texturebarrier.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_viewport.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_viewport.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_xformfb.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_xformfb.h C xenocara/dist/Mesa/src/mesa/state_tracker/st_context.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_context.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_debug.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_debug.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_draw.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_draw.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_draw_feedback.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_extensions.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_extensions.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_format.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_format.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_gen_mipmap.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_gen_mipmap.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_gl_api.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp U xenocara/dist/Mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_manager.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_manager.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_program.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_program.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_texture.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_texture.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_vdpau.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_vdpau.h U xenocara/dist/Mesa/src/mesa/swrast/NOTES U xenocara/dist/Mesa/src/mesa/swrast/s_aaline.c U xenocara/dist/Mesa/src/mesa/swrast/s_aaline.h U xenocara/dist/Mesa/src/mesa/swrast/s_aalinetemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_aatriangle.c U xenocara/dist/Mesa/src/mesa/swrast/s_aatriangle.h U xenocara/dist/Mesa/src/mesa/swrast/s_aatritemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_alpha.c U xenocara/dist/Mesa/src/mesa/swrast/s_alpha.h U xenocara/dist/Mesa/src/mesa/swrast/s_atifragshader.c U xenocara/dist/Mesa/src/mesa/swrast/s_atifragshader.h U xenocara/dist/Mesa/src/mesa/swrast/s_bitmap.c U xenocara/dist/Mesa/src/mesa/swrast/s_blend.c U xenocara/dist/Mesa/src/mesa/swrast/s_blend.h U xenocara/dist/Mesa/src/mesa/swrast/s_blit.c U xenocara/dist/Mesa/src/mesa/swrast/s_chan.h U xenocara/dist/Mesa/src/mesa/swrast/s_clear.c U xenocara/dist/Mesa/src/mesa/swrast/s_context.c U xenocara/dist/Mesa/src/mesa/swrast/s_context.h U xenocara/dist/Mesa/src/mesa/swrast/s_copypix.c U xenocara/dist/Mesa/src/mesa/swrast/s_depth.c U xenocara/dist/Mesa/src/mesa/swrast/s_depth.h U xenocara/dist/Mesa/src/mesa/swrast/s_drawpix.c U xenocara/dist/Mesa/src/mesa/swrast/s_feedback.c U xenocara/dist/Mesa/src/mesa/swrast/s_feedback.h U xenocara/dist/Mesa/src/mesa/swrast/s_fog.c U xenocara/dist/Mesa/src/mesa/swrast/s_fog.h U xenocara/dist/Mesa/src/mesa/swrast/s_fragprog.c U xenocara/dist/Mesa/src/mesa/swrast/s_fragprog.h U xenocara/dist/Mesa/src/mesa/swrast/s_lines.c U xenocara/dist/Mesa/src/mesa/swrast/s_lines.h U xenocara/dist/Mesa/src/mesa/swrast/s_linetemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_logic.c U xenocara/dist/Mesa/src/mesa/swrast/s_logic.h U xenocara/dist/Mesa/src/mesa/swrast/s_masking.c U xenocara/dist/Mesa/src/mesa/swrast/s_masking.h U xenocara/dist/Mesa/src/mesa/swrast/s_points.c U xenocara/dist/Mesa/src/mesa/swrast/s_points.h U xenocara/dist/Mesa/src/mesa/swrast/s_renderbuffer.c U xenocara/dist/Mesa/src/mesa/swrast/s_renderbuffer.h U xenocara/dist/Mesa/src/mesa/swrast/s_span.c U xenocara/dist/Mesa/src/mesa/swrast/s_span.h U xenocara/dist/Mesa/src/mesa/swrast/s_stencil.c U xenocara/dist/Mesa/src/mesa/swrast/s_stencil.h U xenocara/dist/Mesa/src/mesa/swrast/s_texcombine.c U xenocara/dist/Mesa/src/mesa/swrast/s_texture.c U xenocara/dist/Mesa/src/mesa/swrast/s_texcombine.h U xenocara/dist/Mesa/src/mesa/swrast/s_texfetch.c U xenocara/dist/Mesa/src/mesa/swrast/s_texfetch.h U xenocara/dist/Mesa/src/mesa/swrast/s_texfetch_tmp.h U xenocara/dist/Mesa/src/mesa/swrast/s_texfilter.c U xenocara/dist/Mesa/src/mesa/swrast/s_texfilter.h U xenocara/dist/Mesa/src/mesa/swrast/s_texrender.c U xenocara/dist/Mesa/src/mesa/swrast/s_triangle.c U xenocara/dist/Mesa/src/mesa/swrast/s_triangle.h U xenocara/dist/Mesa/src/mesa/swrast/s_tritemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_zoom.c U xenocara/dist/Mesa/src/mesa/swrast/s_zoom.h U xenocara/dist/Mesa/src/mesa/swrast/swrast.h U xenocara/dist/Mesa/src/mesa/swrast_setup/NOTES U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_context.c U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_context.h U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_triangle.c U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_triangle.h U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_tritmp.h U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_vb.h U xenocara/dist/Mesa/src/mesa/swrast_setup/swrast_setup.h U xenocara/dist/Mesa/src/mesa/tnl/NOTES U xenocara/dist/Mesa/src/mesa/tnl/t_context.c U xenocara/dist/Mesa/src/mesa/tnl/t_context.h U xenocara/dist/Mesa/src/mesa/tnl/t_draw.c U xenocara/dist/Mesa/src/mesa/tnl/t_pipeline.c U xenocara/dist/Mesa/src/mesa/tnl/t_pipeline.h U xenocara/dist/Mesa/src/mesa/tnl/t_rasterpos.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_cliptmp.h U xenocara/dist/Mesa/src/mesa/tnl/t_vb_fog.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_light.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_lighttmp.h U xenocara/dist/Mesa/src/mesa/tnl/t_vb_normals.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_points.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_program.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_render.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_rendertmp.h U xenocara/dist/Mesa/src/mesa/tnl/t_vb_texgen.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_texmat.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_vertex.c U xenocara/dist/Mesa/src/mesa/tnl/t_vertex.c U xenocara/dist/Mesa/src/mesa/tnl/t_vertex.h U xenocara/dist/Mesa/src/mesa/tnl/t_vertex_generic.c U xenocara/dist/Mesa/src/mesa/tnl/t_vertex_sse.c U xenocara/dist/Mesa/src/mesa/tnl/t_vp_build.c U xenocara/dist/Mesa/src/mesa/tnl/t_vp_build.h U xenocara/dist/Mesa/src/mesa/tnl/tnl.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_dmatmp.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_dmatmp2.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_triemit.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_tritmp.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_unfilled.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_vb.c U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_vertex.h U xenocara/dist/Mesa/src/mesa/vbo/vbo.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_attrib.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_attrib_tmp.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_context.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_context.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_api.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_array.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_draw.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_eval.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_noop.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_noop.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_primitive_restart.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_rebase.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_save_api.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save_draw.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save_loopback.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_split.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_split.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_split_copy.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_split_inplace.c U xenocara/dist/Mesa/src/mesa/x86-64/calling_convention.txt U xenocara/dist/Mesa/src/mesa/x86-64/x86-64.c U xenocara/dist/Mesa/src/mesa/x86-64/x86-64.h U xenocara/dist/Mesa/src/mesa/x86-64/xform4.S U xenocara/dist/Mesa/src/mesa/x86/3dnow.c U xenocara/dist/Mesa/src/mesa/x86/3dnow.h U xenocara/dist/Mesa/src/mesa/x86/3dnow_normal.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform1.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform2.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform3.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform4.S U xenocara/dist/Mesa/src/mesa/x86/assyntax.h U xenocara/dist/Mesa/src/mesa/x86/clip_args.h U xenocara/dist/Mesa/src/mesa/x86/common_x86.c U xenocara/dist/Mesa/src/mesa/x86/common_x86_asm.S U xenocara/dist/Mesa/src/mesa/x86/common_x86_asm.h U xenocara/dist/Mesa/src/mesa/x86/common_x86_features.h U xenocara/dist/Mesa/src/mesa/x86/gen_matypes.c U xenocara/dist/Mesa/src/mesa/x86/mmx.h U xenocara/dist/Mesa/src/mesa/x86/mmx_blend.S U xenocara/dist/Mesa/src/mesa/x86/mmx_blendtmp.h U xenocara/dist/Mesa/src/mesa/x86/norm_args.h U xenocara/dist/Mesa/src/mesa/x86/read_rgba_span_x86.S U xenocara/dist/Mesa/src/mesa/x86/sse.c U xenocara/dist/Mesa/src/mesa/x86/sse.h U xenocara/dist/Mesa/src/mesa/x86/sse_normal.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform1.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform2.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform3.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform4.S U xenocara/dist/Mesa/src/mesa/x86/x86_cliptest.S U xenocara/dist/Mesa/src/mesa/x86/x86_xform.c U xenocara/dist/Mesa/src/mesa/x86/x86_xform.h U xenocara/dist/Mesa/src/mesa/x86/x86_xform2.S U xenocara/dist/Mesa/src/mesa/x86/x86_xform3.S U xenocara/dist/Mesa/src/mesa/x86/x86_xform4.S U xenocara/dist/Mesa/src/mesa/x86/xform_args.h U xenocara/dist/Mesa/src/mesa/x86/rtasm/x86sse.c U xenocara/dist/Mesa/src/mesa/x86/rtasm/x86sse.h U xenocara/dist/Mesa/src/getopt/SConscript U xenocara/dist/Mesa/src/getopt/getopt.h U xenocara/dist/Mesa/src/getopt/getopt_long.c U xenocara/dist/Mesa/src/hgl/GLDispatcher.cpp U xenocara/dist/Mesa/src/hgl/GLDispatcher.h U xenocara/dist/Mesa/src/hgl/GLRenderer.cpp U xenocara/dist/Mesa/src/hgl/GLRendererRoster.cpp U xenocara/dist/Mesa/src/hgl/GLRendererRoster.h U xenocara/dist/Mesa/src/hgl/GLView.cpp U xenocara/dist/Mesa/src/hgl/SConscript U xenocara/dist/Mesa/docs/ARB_color_buffer_float.txt U xenocara/dist/Mesa/docs/COPYING U xenocara/dist/Mesa/docs/GL3.txt U xenocara/dist/Mesa/docs/README.UVD U xenocara/dist/Mesa/docs/README.VCE U xenocara/dist/Mesa/docs/README.WIN32 U xenocara/dist/Mesa/docs/VERSIONS U xenocara/dist/Mesa/docs/application-issues.html U xenocara/dist/Mesa/docs/autoconf.html U xenocara/dist/Mesa/docs/bugs.html U xenocara/dist/Mesa/docs/conform.html U xenocara/dist/Mesa/docs/contents.html U xenocara/dist/Mesa/docs/debugging.html U xenocara/dist/Mesa/docs/developers.html U xenocara/dist/Mesa/docs/devinfo.html U xenocara/dist/Mesa/docs/dispatch.html U xenocara/dist/Mesa/docs/download.html U xenocara/dist/Mesa/docs/egl.html U xenocara/dist/Mesa/docs/envvars.html U xenocara/dist/Mesa/docs/extensions.html U xenocara/dist/Mesa/docs/faq.html U xenocara/dist/Mesa/docs/gears.png U xenocara/dist/Mesa/docs/helpwanted.html U xenocara/dist/Mesa/docs/index.html U xenocara/dist/Mesa/docs/install.html U xenocara/dist/Mesa/docs/intro.html U xenocara/dist/Mesa/docs/libGL.txt U xenocara/dist/Mesa/docs/license.html U xenocara/dist/Mesa/docs/lists.html U xenocara/dist/Mesa/docs/llvmpipe.html U xenocara/dist/Mesa/docs/mangling.html U xenocara/dist/Mesa/docs/mesa.css U xenocara/dist/Mesa/docs/opengles.html U xenocara/dist/Mesa/docs/openvg.html U xenocara/dist/Mesa/docs/osmesa.html U xenocara/dist/Mesa/docs/patents.txt U xenocara/dist/Mesa/docs/perf.html U xenocara/dist/Mesa/docs/postprocess.html U xenocara/dist/Mesa/docs/precompiled.html U xenocara/dist/Mesa/docs/relnotes.html U xenocara/dist/Mesa/docs/repository.html U xenocara/dist/Mesa/docs/shading.html U xenocara/dist/Mesa/docs/thanks.html U xenocara/dist/Mesa/docs/sourcedocs.html U xenocara/dist/Mesa/docs/sourcetree.html U xenocara/dist/Mesa/docs/systems.html U xenocara/dist/Mesa/docs/utilities.html U xenocara/dist/Mesa/docs/versions.html U xenocara/dist/Mesa/docs/viewperf.html U xenocara/dist/Mesa/docs/vmware-guest.html U xenocara/dist/Mesa/docs/webmaster.html U xenocara/dist/Mesa/docs/xlibdriver.html U xenocara/dist/Mesa/docs/relnotes/10.0.1.html U xenocara/dist/Mesa/docs/relnotes/10.0.2.html U xenocara/dist/Mesa/docs/relnotes/10.0.3.html U xenocara/dist/Mesa/docs/relnotes/10.0.4.html U xenocara/dist/Mesa/docs/relnotes/10.0.5.html U xenocara/dist/Mesa/docs/relnotes/10.0.html U xenocara/dist/Mesa/docs/relnotes/10.1.1.html U xenocara/dist/Mesa/docs/relnotes/10.1.html U xenocara/dist/Mesa/docs/relnotes/10.2.1.html U xenocara/dist/Mesa/docs/relnotes/10.2.2.html U xenocara/dist/Mesa/docs/relnotes/10.2.3.html N xenocara/dist/Mesa/docs/relnotes/10.2.4.html N xenocara/dist/Mesa/docs/relnotes/10.2.5.html N xenocara/dist/Mesa/docs/relnotes/10.2.6.html N xenocara/dist/Mesa/docs/relnotes/10.2.7.html U xenocara/dist/Mesa/docs/relnotes/10.2.html U xenocara/dist/Mesa/docs/relnotes/3.1 U xenocara/dist/Mesa/docs/relnotes/3.2 U xenocara/dist/Mesa/docs/relnotes/3.2.1 U xenocara/dist/Mesa/docs/relnotes/3.3 U xenocara/dist/Mesa/docs/relnotes/3.4 U xenocara/dist/Mesa/docs/relnotes/3.4.1 U xenocara/dist/Mesa/docs/relnotes/3.4.2 U xenocara/dist/Mesa/docs/relnotes/3.5 U xenocara/dist/Mesa/docs/relnotes/4.0 U xenocara/dist/Mesa/docs/relnotes/4.0.1 U xenocara/dist/Mesa/docs/relnotes/4.0.2 U xenocara/dist/Mesa/docs/relnotes/4.0.3 U xenocara/dist/Mesa/docs/relnotes/4.1 U xenocara/dist/Mesa/docs/relnotes/5.0 U xenocara/dist/Mesa/docs/relnotes/5.0.1 U xenocara/dist/Mesa/docs/relnotes/5.0.2 U xenocara/dist/Mesa/docs/relnotes/5.1 U xenocara/dist/Mesa/docs/relnotes/6.0 U xenocara/dist/Mesa/docs/relnotes/6.0.1 U xenocara/dist/Mesa/docs/relnotes/6.1 U xenocara/dist/Mesa/docs/relnotes/6.2 U xenocara/dist/Mesa/docs/relnotes/6.2.1 U xenocara/dist/Mesa/docs/relnotes/6.3 U xenocara/dist/Mesa/docs/relnotes/6.3.1 U xenocara/dist/Mesa/docs/relnotes/6.3.2 U xenocara/dist/Mesa/docs/relnotes/6.4 U xenocara/dist/Mesa/docs/relnotes/6.4.1.html U xenocara/dist/Mesa/docs/relnotes/6.4.2.html U xenocara/dist/Mesa/docs/relnotes/6.4.html U xenocara/dist/Mesa/docs/relnotes/6.5.1.html U xenocara/dist/Mesa/docs/relnotes/6.5.2.html U xenocara/dist/Mesa/docs/relnotes/6.5.3.html U xenocara/dist/Mesa/docs/relnotes/6.5.html U xenocara/dist/Mesa/docs/relnotes/7.0.1.html U xenocara/dist/Mesa/docs/relnotes/7.0.2.html U xenocara/dist/Mesa/docs/relnotes/7.0.3.html U xenocara/dist/Mesa/docs/relnotes/7.0.4.html U xenocara/dist/Mesa/docs/relnotes/7.0.html U xenocara/dist/Mesa/docs/relnotes/7.1.html U xenocara/dist/Mesa/docs/relnotes/7.10.1.html U xenocara/dist/Mesa/docs/relnotes/7.10.2.html U xenocara/dist/Mesa/docs/relnotes/7.10.3.html U xenocara/dist/Mesa/docs/relnotes/7.10.html U xenocara/dist/Mesa/docs/relnotes/7.11.1.html U xenocara/dist/Mesa/docs/relnotes/7.11.2.html U xenocara/dist/Mesa/docs/relnotes/7.11.html U xenocara/dist/Mesa/docs/relnotes/7.2.html U xenocara/dist/Mesa/docs/relnotes/7.3.html U xenocara/dist/Mesa/docs/relnotes/7.4.1.html U xenocara/dist/Mesa/docs/relnotes/7.4.2.html U xenocara/dist/Mesa/docs/relnotes/7.4.3.html U xenocara/dist/Mesa/docs/relnotes/7.4.4.html U xenocara/dist/Mesa/docs/relnotes/7.4.html U xenocara/dist/Mesa/docs/relnotes/7.5.1.html U xenocara/dist/Mesa/docs/relnotes/7.5.2.html U xenocara/dist/Mesa/docs/relnotes/7.5.html U xenocara/dist/Mesa/docs/relnotes/7.6.1.html U xenocara/dist/Mesa/docs/relnotes/7.6.html U xenocara/dist/Mesa/docs/relnotes/7.7.1.html U xenocara/dist/Mesa/docs/relnotes/7.7.html U xenocara/dist/Mesa/docs/relnotes/7.8.1.html U xenocara/dist/Mesa/docs/relnotes/7.8.2.html U xenocara/dist/Mesa/docs/relnotes/7.8.3.html U xenocara/dist/Mesa/docs/relnotes/7.8.html U xenocara/dist/Mesa/docs/relnotes/7.9.1.html U xenocara/dist/Mesa/docs/relnotes/7.9.2.html U xenocara/dist/Mesa/docs/relnotes/7.9.html U xenocara/dist/Mesa/docs/relnotes/8.0.1.html U xenocara/dist/Mesa/docs/relnotes/8.0.2.html U xenocara/dist/Mesa/docs/relnotes/8.0.3.html U xenocara/dist/Mesa/docs/relnotes/8.0.4.html U xenocara/dist/Mesa/docs/relnotes/8.0.5.html U xenocara/dist/Mesa/docs/relnotes/8.0.html U xenocara/dist/Mesa/docs/relnotes/9.0.1.html U xenocara/dist/Mesa/docs/relnotes/9.0.2.html U xenocara/dist/Mesa/docs/relnotes/9.0.3.html U xenocara/dist/Mesa/docs/relnotes/9.0.html U xenocara/dist/Mesa/docs/relnotes/9.1.1.html U xenocara/dist/Mesa/docs/relnotes/9.1.2.html U xenocara/dist/Mesa/docs/relnotes/9.1.3.html U xenocara/dist/Mesa/docs/relnotes/9.1.4.html U xenocara/dist/Mesa/docs/relnotes/9.1.5.html U xenocara/dist/Mesa/docs/relnotes/9.1.6.html U xenocara/dist/Mesa/docs/relnotes/9.1.7.html U xenocara/dist/Mesa/docs/relnotes/9.1.html U xenocara/dist/Mesa/docs/relnotes/9.2.1.html U xenocara/dist/Mesa/docs/relnotes/9.2.2.html U xenocara/dist/Mesa/docs/relnotes/9.2.3.html U xenocara/dist/Mesa/docs/relnotes/9.2.4.html U xenocara/dist/Mesa/docs/relnotes/9.2.5.html U xenocara/dist/Mesa/docs/relnotes/9.2.html U xenocara/dist/Mesa/docs/specs/EXT_shader_integer_mix.spec U xenocara/dist/Mesa/docs/specs/MESA_agp_offset.spec U xenocara/dist/Mesa/docs/specs/MESA_configless_context.spec U xenocara/dist/Mesa/docs/specs/MESA_copy_sub_buffer.spec U xenocara/dist/Mesa/docs/specs/MESA_drm_image.spec U xenocara/dist/Mesa/docs/specs/MESA_multithread_makecurrent.spec U xenocara/dist/Mesa/docs/specs/MESA_pack_invert.spec U xenocara/dist/Mesa/docs/specs/MESA_pixmap_colormap.spec U xenocara/dist/Mesa/docs/specs/MESA_query_renderer.spec U xenocara/dist/Mesa/docs/specs/MESA_release_buffers.spec U xenocara/dist/Mesa/docs/specs/MESA_set_3dfx_mode.spec U xenocara/dist/Mesa/docs/specs/MESA_shader_debug.spec U xenocara/dist/Mesa/docs/specs/MESA_swap_control.spec U xenocara/dist/Mesa/docs/specs/enums.txt U xenocara/dist/Mesa/docs/specs/MESA_swap_frame_usage.spec U xenocara/dist/Mesa/docs/specs/MESA_texture_array.spec U xenocara/dist/Mesa/docs/specs/MESA_texture_signed_rgba.spec U xenocara/dist/Mesa/docs/specs/MESA_window_pos.spec U xenocara/dist/Mesa/docs/specs/MESA_ycbcr_texture.spec U xenocara/dist/Mesa/docs/specs/WL_bind_wayland_display.spec U xenocara/dist/Mesa/docs/specs/WL_create_wayland_buffer_from_image.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_program_debug.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_resize_buffers.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_sprite_point.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_trace.spec U xenocara/dist/Mesa/doxygen/Makefile U xenocara/dist/Mesa/doxygen/README U xenocara/dist/Mesa/doxygen/common.doxy U xenocara/dist/Mesa/doxygen/core_subset.doxy U xenocara/dist/Mesa/doxygen/doxy.bat U xenocara/dist/Mesa/doxygen/gallium.doc U xenocara/dist/Mesa/doxygen/gallium.doxy U xenocara/dist/Mesa/doxygen/gbm.doxy U xenocara/dist/Mesa/doxygen/glapi.doxy U xenocara/dist/Mesa/doxygen/glsl.doxy U xenocara/dist/Mesa/doxygen/header.html U xenocara/dist/Mesa/doxygen/header_subset.html U xenocara/dist/Mesa/doxygen/i965.doxy U xenocara/dist/Mesa/doxygen/main.doxy U xenocara/dist/Mesa/doxygen/math.doxy U xenocara/dist/Mesa/doxygen/math_subset.doxy U xenocara/dist/Mesa/doxygen/radeon_subset.doxy U xenocara/dist/Mesa/doxygen/shader.doxy U xenocara/dist/Mesa/doxygen/swrast.doxy U xenocara/dist/Mesa/doxygen/swrast_setup.doxy U xenocara/dist/Mesa/doxygen/tnl.doxy U xenocara/dist/Mesa/doxygen/tnl_dd.doxy U xenocara/dist/Mesa/doxygen/vbo.doxy U xenocara/dist/Mesa/include/c99_compat.h U xenocara/dist/Mesa/include/CL/cl.h U xenocara/dist/Mesa/include/CL/cl.hpp U xenocara/dist/Mesa/include/CL/cl_d3d10.h U xenocara/dist/Mesa/include/CL/cl_d3d11.h U xenocara/dist/Mesa/include/CL/cl_dx9_media_sharing.h U xenocara/dist/Mesa/include/CL/cl_egl.h U xenocara/dist/Mesa/include/CL/cl_ext.h U xenocara/dist/Mesa/include/CL/cl_gl.h U xenocara/dist/Mesa/include/CL/cl_gl_ext.h U xenocara/dist/Mesa/include/CL/cl_platform.h U xenocara/dist/Mesa/include/CL/opencl.h U xenocara/dist/Mesa/include/EGL/egl.h U xenocara/dist/Mesa/include/EGL/eglext.h U xenocara/dist/Mesa/include/EGL/eglmesaext.h U xenocara/dist/Mesa/include/EGL/eglplatform.h U xenocara/dist/Mesa/include/GL/gl.h U xenocara/dist/Mesa/include/GL/gl_mangle.h U xenocara/dist/Mesa/include/GL/glext.h U xenocara/dist/Mesa/include/GL/glx.h U xenocara/dist/Mesa/include/GL/glx_mangle.h U xenocara/dist/Mesa/include/GL/glxext.h U xenocara/dist/Mesa/include/GL/osmesa.h U xenocara/dist/Mesa/include/GL/wglext.h U xenocara/dist/Mesa/include/GL/wmesa.h U xenocara/dist/Mesa/include/GL/internal/dri_interface.h U xenocara/dist/Mesa/include/GL/internal/sarea.h U xenocara/dist/Mesa/include/GLES/egl.h U xenocara/dist/Mesa/include/GLES/gl.h U xenocara/dist/Mesa/include/GLES/glext.h U xenocara/dist/Mesa/include/GLES/glplatform.h U xenocara/dist/Mesa/include/GLES2/gl2.h U xenocara/dist/Mesa/include/GLES2/gl2ext.h U xenocara/dist/Mesa/include/GLES2/gl2platform.h U xenocara/dist/Mesa/include/GLES3/gl3.h U xenocara/dist/Mesa/include/GLES3/gl31.h U xenocara/dist/Mesa/include/GLES3/gl3ext.h U xenocara/dist/Mesa/include/GLES3/gl3platform.h U xenocara/dist/Mesa/include/HaikuGL/GLRenderer.h U xenocara/dist/Mesa/include/HaikuGL/GLView.h U xenocara/dist/Mesa/include/HaikuGL/OpenGLKit.h U xenocara/dist/Mesa/include/HaikuGL/README U xenocara/dist/Mesa/include/KHR/khrplatform.h U xenocara/dist/Mesa/include/VG/openvg.h U xenocara/dist/Mesa/include/VG/vgext.h U xenocara/dist/Mesa/include/VG/vgplatform.h U xenocara/dist/Mesa/include/VG/vgu.h U xenocara/dist/Mesa/include/c11/threads.h U xenocara/dist/Mesa/include/c11/threads_posix.h U xenocara/dist/Mesa/include/c11/threads_win32.h U xenocara/dist/Mesa/include/c99/inttypes.h U xenocara/dist/Mesa/include/c99/stdbool.h U xenocara/dist/Mesa/include/c99/stdint.h U xenocara/dist/Mesa/include/pci_ids/i810_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/i915_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/i965_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/r200_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/r300_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/r600_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/radeon_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/radeonsi_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/vmwgfx_pci_ids.h U xenocara/dist/Mesa/m4/ax_check_compile_flag.m4 U xenocara/dist/Mesa/m4/ax_gcc_builtin.m4 U xenocara/dist/Mesa/m4/ax_prog_bison.m4 U xenocara/dist/Mesa/m4/ax_prog_flex.m4 U xenocara/dist/Mesa/m4/ax_pthread.m4 U xenocara/dist/Mesa/scons/crossmingw.py U xenocara/dist/Mesa/scons/custom.py U xenocara/dist/Mesa/scons/dxsdk.py U xenocara/dist/Mesa/scons/fixes.py U xenocara/dist/Mesa/scons/gallium.py U xenocara/dist/Mesa/scons/llvm.py U xenocara/dist/Mesa/scons/source_list.py U xenocara/dist/Mesa/scons/x11.py 55 conflicts created by this import. Use the following command to help the merge: cvs checkout -jmesa:yesterday -jmesa xenocara/dist/Mesa CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:20:07 Modified files: dist/Mesa : configure.ac dist/Mesa/bin : config.guess config.sub dist/Mesa/src/egl/drivers/dri2: egl_dri2.c dist/Mesa/src/egl/main: eglcontext.c dist/Mesa/src/gallium/auxiliary/gallivm: lp_bld_debug.cpp lp_bld_misc.cpp lp_bld_sample.c dist/Mesa/src/gallium/auxiliary/util: u_blitter.c u_math.h u_prim.h u_transfer.c dist/Mesa/src/gallium/drivers/r300: r300_context.c dist/Mesa/src/gallium/drivers/r600: evergreen_state.c r600_asm.c r600_blit.c r600_shader.c r600_state.c dist/Mesa/src/gallium/state_trackers/wgl: stw_ext_pixelformat.c dist/Mesa/src/gallium/winsys/radeon/drm: radeon_drm_cs.c radeon_drm_cs.h radeon_drm_winsys.c radeon_drm_winsys.h radeon_winsys.h dist/Mesa/src/glsl: glsl_lexer.cpp dist/Mesa/src/glsl/glcpp: glcpp-lex.c dist/Mesa/src/mesa/drivers/common: meta.c dist/Mesa/src/mesa/drivers/dri/i915: intel_screen.c dist/Mesa/src/mesa/drivers/dri/i965: brw_clip_unfilled.c brw_defines.h brw_fs.cpp brw_fs.h brw_fs_visitor.cpp brw_wm.c brw_wm.h intel_mipmap_tree.c dist/Mesa/src/mesa/drivers/dri/nouveau: nouveau_bufferobj.c nouveau_state.c dist/Mesa/src/mesa/drivers/dri/r200: r200_context.c r200_state.c r200_state.h dist/Mesa/src/mesa/drivers/dri/radeon: radeon_common.c radeon_common_context.h radeon_context.c radeon_state.c radeon_state.h dist/Mesa/src/mesa/main: buffers.c context.c shared.c teximage.c teximage.h texparam.c texstore.c dist/Mesa/src/mesa/state_tracker: st_cb_texture.c st_context.c Removed files: dist/Mesa/src/mesa/program: lex.yy.c program_parse.tab.c program_parse.tab.h Log message: Merge Mesa 10.2.7 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:32:18 Modified files: lib/libEGL : Makefile lib/libGL : config.mk lib/libGL/gallium: Makefile.inc lib/libGL/generated/main: get_hash.h lib/libGLESv1_CM: Makefile lib/libGLESv2 : Makefile lib/libgbm : Makefile Log message: Mesa 10.2.7 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:34:12 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 10:14:43 Modified files: devel/cil : Makefile Log message: no support for bytecode, therefore don't try building on powerpc for the time being. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 10:27:24 Modified files: infrastructure/mk: arch-defines.mk Log message: PowerPC native code is broken at the moment. Therefore build native code only for the time being. Hopefully this can be reverted soon. ok jca@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 11:27:20 Modified files: app/cwm : calmwm.h group.c Log message: Get rid of a redundant array of groups per screen; we already have a link to the group queue for each screen. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 11:38:38 Modified files: app/cwm : calmwm.h client.c screen.c xevents.c Log message: screen_fromroot -> screen_find CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:00:11 Modified files: misc/portroach : Makefile distinfo Log message: - update to portroach-1.1.1 * various sorting and display fixes in html pages CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:11:07 Modified files: audio/metronome: Makefile databases/mdbtools/snapshot: Makefile databases/ports-readmes-dancer: Makefile games/circuit : Makefile net/ytalk : Makefile sysutils/superscript: Makefile textproc/rxp : Makefile x11/xglobe : Makefile Log message: mirror distfiles CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:16:42 Modified files: sysutils/ruby-puppet/3: Makefile distinfo sysutils/ruby-puppet/3/patches: patch-lib_puppet_defaults_rb patch-lib_puppet_provider_service_openbsd_rb sysutils/ruby-puppet/3/pkg: PLIST Removed files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_openbsd_rb patch-lib_puppet_type_resources_rb Log message: - update to puppet-3.7.0 * https://docs.puppetlabs.com/puppet/3.7/reference/release_notes.html testing/ok sebastia@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:24:56 Modified files: net/telepathy/telepathy-gabble: Makefile Log message: sort CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:25:01 Modified files: net/telepathy : Makefile.inc net/telepathy/folks: Makefile net/telepathy/telepathy-qt: Makefile net/telepathy/telepathy-salut: Makefile Log message: set PORTROACH CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:49:13 Modified files: lang/tcl/8.6 : Makefile distinfo lang/tcl/8.6/patches: patch-unix_Makefile_in patch-unix_installManPage lang/tcl/8.6/pkg: PLIST Log message: Update to 8.6.2. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:49:32 Modified files: x11/tk/8.6 : Makefile distinfo x11/tk/8.6/patches: patch-unix_Makefile_in patch-unix_installManPage x11/tk/8.6/pkg : PLIST Log message: Update to 8.6.2. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:50:07 Modified files: devel/tclthread: Makefile distinfo devel/tclthread/pkg: PLIST Log message: Update to 2.7.1. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:50:32 Modified files: databases/tdbc : Makefile distinfo databases/tdbc/patches: patch-tclconfig_tcl_m4 databases/tdbc/pkg: PLIST Log message: Update to 1.0.1. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 12:50:50 Modified files: www/py-beautifulsoup: Makefile Log message: oops, fix typo, pointed out by frantisek holop CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:50:54 Modified files: databases/tdbc-sqlite3: Makefile distinfo databases/tdbc-sqlite3/pkg: PLIST Log message: Update to 1.0.1. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 13:24:48 Modified files: editors/vim : Makefile distinfo editors/vim/pkg: PFRAG.no-no_x11-main PLIST-lang PLIST-main Log message: Update to 7.4.430. Changes: * build -lang subpackage only for gui flavors so we can include all documentation. * install OpenBSD syntax files to share/vim/vimfiles, which is version independent and in the runtimepath by default. This should be used as target for vim plugin ports as it is version independent. ok sthen@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 13:27:30 Modified files: app/cwm : calmwm.c client.c conf.c menu.c screen.c search.c xmalloc.c xutil.c Log message: more style nits CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 13:27:32 Removed files: www/py-jinja2/patches: patch-jinja2_bccache_py Log message: remove 0-byte file; pointed out by frantisek holop CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/07 13:41:51 Modified files: sys/dev/pci : Tag: OPENBSD_5_5 virtio.c virtiovar.h Log message: Fix hang with virtio event_idx feature backported from current virtio.c 1.6 / virtiovar.h 1.5: date: 2014/06/15 11:18:39; author: sf; commitid: 8b7wbadq7EgTO3mO; When using the RING_EVENT_IDX feature, we must first call publish_avail_idx() and then read VQ_AVAIL_EVENT(vq), or there is a race condition that may cause us to miss that the host needs to be notified. This resulted in an occasional hang of network in vio(4). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 13:43:35 Modified files: sbin/restore : dirs.c extern.h tape.c Log message: Reuse xtrfile() to avoid duplication. Casting from long to int for a size_t argument is dumb. Calling warnx() right before err() is silly. ok millert@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/07 13:44:29 Modified files: sys/dev/pci : Tag: OPENBSD_5_4 if_vio.c Log message: Backport from current revision 1.15: date: 2014/01/19 20:49:02; author: bluhm; state: Exp; lines: +29 -8; If the system runs out ouf mbufs, the receive queue of the vio interface may get emtpy. The driver did not recover from that starvation as it does not get receive interrupts anymore. Fix this by adding a one second receive timeout in that case. OK sf@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/07 13:46:41 Modified files: sys/dev/pci : Tag: OPENBSD_5_4 virtio.c virtiovar.h Log message: Fix hang with virtio event_idx feature backported from current virtio.c 1.6 / virtiovar.h 1.5: date: 2014/06/15 11:18:39; author: sf; commitid: 8b7wbadq7EgTO3mO; When using the RING_EVENT_IDX feature, we must first call publish_avail_idx() and then read VQ_AVAIL_EVENT(vq), or there is a race condition that may cause us to miss that the host needs to be notified. This resulted in an occasional hang of network in vio(4). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 14:06:07 Removed files: emulators/fuse/patches: patch-screenshot_c emulators/fuse-utils/patches: patch-configure devel/ocaml-batteries/patches: patch-src_batUnix_mliv Log message: remove more 0-byte files CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/07 14:08:09 Modified files: devel/p5-Sub-Name: Makefile distinfo Log message: update p5-Sub-Name to 0.12 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 14:18:16 Modified files: lib/libc/sys : vfork.2 Log message: Document that 4.4BSD changed the semantics but that others have restored the original ones ok jmc@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 14:57:26 Modified files: app/cwm : calmwm.h group.c Log message: Add screen_ctx to group_ctx, and populate on init. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/07 16:19:33 Modified files: sys/arch/amd64/include: atomic.h Log message: Implement membar(9) API for amd64. ok dlg@, guenther@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/07 16:40:30 Modified files: usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Remove useless comment, snprintf and if/else. OK mpi@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/07 17:24:33 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: warn about AUTHORS sections without .An macros, inspired by mdoclint(1) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/07 18:00:05 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: deprecate the use of the PR_PHINPAGE flag by replacing it with a test of pr_phoffset. ok doug@ guenther@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/07 18:05:22 Modified files: sys/sys : pool.h Log message: the PR_LOGGING flag is unused, so im cleaning it up CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/07 18:43:42 Modified files: usr.sbin/syslogd: privsep.c syslogd.8 syslogd.c syslogd.h Log message: Fix a syslogd regression when specifying all 20 additional log paths bluhm@ found and fixed this bug. This is a modified version of his patch which makes the intention a little clearer. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/07 19:27:56 Modified files: bin/pax : cpio.1 pax.1 tar.1 bin/systrace : systrace.1 games/adventure: adventure.6 games/atc : atc.6 games/banner : banner.6 games/bs : bs.6 games/cribbage : cribbage.6 games/gomoku : gomoku.6 games/grdc : grdc.6 games/hack : hack.6 games/mille : mille.6 games/monop : monop.6 games/rain : rain.6 games/robots : robots.6 games/tetris : tetris.6 lib/libc/stdlib: rand48.3 lib/libc/time : strftime.3 lib/libc/yp : ypclnt.3 lib/libutil : fmt_scaled.3 login_fbtab.3 sbin/atactl : atactl.8 share/man/man3 : tree.3 share/man/man5 : fbtab.5 share/man/man7 : ports.7 share/man/man8 : security.8 share/man/man9 : VOP_LOOKUP.9 bus_dma.9 bus_space.9 evcount.9 usr.bin/apply : apply.1 usr.bin/cdio : cdio.1 usr.bin/newsyslog: newsyslog.8 usr.bin/top : top.1 usr.bin/units : units.1 usr.bin/ypcat : ypcat.1 usr.bin/ypmatch: ypmatch.1 usr.bin/ypwhich: ypwhich.1 usr.sbin/map-mbone: map-mbone.8 usr.sbin/mopd/mopchk: mopchk.1 usr.sbin/mopd/mopprobe: mopprobe.1 usr.sbin/mopd/moptrace: moptrace.1 usr.sbin/mrouted: mrouted.8 usr.sbin/mtrace: mtrace.8 usr.sbin/pkg_add: pkg_add.1 pkg_create.1 pkg_delete.1 pkg_info.1 pkg_sign.1 usr.sbin/rarpd : rarpd.8 usr.sbin/traceroute: traceroute.8 usr.sbin/ypbind: ypbind.8 usr.sbin/ypldap: ypldap.8 usr.sbin/yppoll: yppoll.8 usr.sbin/ypset : ypset.8 Log message: obvious cases of missing .An; found with the new mandoc(1) MANDOCERR_AN_MISSING warning; no text changes CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 19:47:06 Modified files: sbin : Makefile sbin/mount : mount.c sys/arch/alpha/include: reg.h sys/arch/i386/conf: GENERIC files.i386 sys/arch/powerpc/include: reg.h sys/compat/linux: linux_misc.c linux_types.h sys/kern : Makefile kern_exec.c kern_fork.c sys_process.c vfs_init.c sys/sys : mount.h vnode.h share/man/man4 : options.4 usr.sbin/procmap: procmap.c Removed files: sbin/mount_procfs: Makefile mount_procfs.8 mount_procfs.c Log message: Delete procfs; it's always had races and is now unused: no one noticed for months that I broke it before the 5.5 release. confirmed as not being required by ports by sthen@, ajacoutot@, dcoppa@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 19:57:01 Removed files: sys/miscfs/procfs: procfs.h procfs_cmdline.c procfs_linux.c procfs_status.c procfs_subr.c procfs_vfsops.c procfs_vnops.c Log message: Actually remove the procfs files CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/07 20:39:57 Modified files: sys/dev/pci : if_ix.c Log message: Match 82599 as found on SuperMicro AOC-STGN-I1S ok mikeb@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 21:01:43 Removed files: sys/arch/i386/i386: procfs_machdep.c Log message: ...and the other file I missed cvs rm'ing in the procfs purge. noted by doug@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/07 22:40:30 Modified files: sbin/mount : mount.8 share/man/man5 : fstab.5 share/man/man8 : compat_linux.8 sys/conf : files usr.bin/man : man.1 usr.sbin/procmap: procmap.1 Log message: Additional cleanup for procfs removal ok guenther@ CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/09/07 23:04:40 Modified files: share/man/man5 : port-modules.5 Log message: OCAML_VERSION will be removed, document CONFIGURE_STYLE=oasis ok jca@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 23:10:10 Modified files: lang/ocaml : ocaml.port.mk Log message: Remove unused and wrong OCAML_VERSION. It's job is now done by bsd.port.arch.mk Noticed and ok by jca@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/08 00:24:13 Modified files: sys/dev/pci : if_de.c if_san_common.c sys/kern : uipc_socket.c sys/net : bridgestp.c if_bridge.c if_enc.c if_pflog.c if_pfsync.c if_pppx.c if_tun.c pf_lb.c pf_norm.c pf_table.c pfkey.c raw_cb.c raw_usrreq.c sys/netinet : igmp.c in4_cksum.c ip_carp.c ip_divert.c ip_ipsp.c ipsec_output.c sys/netinet6 : dest6.c in6_gif.c ip6_divert.c ip6_mroute.c sys/netmpls : mpls_proto.c sys/nfs : nfs_boot.c nfs_vfsops.c Log message: remove uneeded route.h includes ok miod@ mpi@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/08 00:38:07 Modified files: share/man/man5 : port-modules.5 Log message: tweak previous; CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 00:51:48 Added files: net/cadaver/patches: patch-configure Log message: Recognize neon 0.30.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 01:01:14 Added files: multimedia/gstreamer-0.10/plugins-bad/patches: patch-configure_ac Log message: Recognize 0.30.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 01:01:58 Modified files: net/neon : Makefile distinfo net/neon/pkg : PLIST Removed files: net/neon/patches: patch-configure patch-src_ne_openssl_c patch-src_ne_socket_c net/neon/pkg : PFRAG.shared Log message: Update to neon-0.30.0. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/08 01:21:40 Modified files: sys/dev/ic : acx.c Log message: Don't include ; we already include . Add missing and . Makes a sparc64 kernel compile again. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/08 01:33:58 Modified files: audio/xmcd/patches: patch-install_sh Log message: tell the root check to fuck off CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 01:35:31 Modified files: devel/libgtop2 : Makefile Added files: devel/libgtop2/patches: patch-sysdeps_openbsd_glibtop_machine_h Log message: unbreak with upcoming dkstat.h removal CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 01:40:29 Modified files: devel/libgtop2/patches: patch-sysdeps_openbsd_cpu_c patch-sysdeps_openbsd_glibtop_machine_h patch-sysdeps_openbsd_open_c Log message: these patches were committed upstream CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/08 01:44:39 Modified files: devel/codeblocks: Makefile Log message: use xargs -r because in FAKE_AS_ROOT=No mode, rights will get fixed beforehand CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 01:56:37 Modified files: sysutils/salt : Makefile Log message: textproc/py-yaml and www/py-jinja2 are needed to properly compute the egg-version because it uses the Salt module during build. This should finally unbreak packaging. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 02:06:34 Modified files: sysutils/virt-manager: Makefile distinfo sysutils/virt-manager/patches: patch-setup_py patch-virtcli_cliconfig_py sysutils/virt-manager/pkg: PLIST Removed files: sysutils/virt-manager/patches: patch-virtManager_addhardware_py patch-virtManager_create_py patch-virtManager_createinterface_py patch-virtManager_details_py patch-virtManager_fsdetails_py patch-virtManager_gfxdetails_py patch-virtManager_manager_py patch-virtManager_migrate_py patch-virtManager_netlist_py patch-virtManager_storagebrowse_py patch-virtManager_uiutil_py Log message: update to virt-manager-1.1.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 02:23:36 Modified files: devel/hs-MissingH: Makefile distinfo Log message: Update to MissingH-1.2.1.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 02:24:17 Modified files: textproc/hs-HaXml: Makefile distinfo Log message: Update to HaXml-1.24.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 02:28:23 Modified files: security/wpa_supplicant: Makefile Added files: security/wpa_supplicant/patches: patch-wpa_supplicant_main_c Log message: Zap Linuxisms from usage() CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/08 02:33:50 Modified files: build : mirrors.dat Log message: add mirror.one.com, in Copenhagen CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/08 02:34:58 Modified files: . : ftp.html ftplist openbgpd : ftp.html openntpd : ftp.html portable.html openssh : ftp.html portable.html Log message: sync CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 02:57:04 Added files: . : plus56.html Log message: Moving plus.html to plus56.html CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:09:03 Modified files: . : plus.html Log message: plus.html for Aug 8-24, fixes from jj@. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/08 03:32:04 Modified files: sys/netinet6 : nd6_rtr.c Log message: Prevent addition of redundant IPv6 autoconf addresses. Regression from r1.81 which switched from workq to taskq and incorrectly assumed duplicate addresses would be impossible with taskq. We ended up re-adding the SLAAC address whenever a privacy address expired. ok bluhm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 03:41:31 Modified files: databases/evolution-data-server: Makefile distinfo Log message: Update to evolution-data-server-3.12.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 03:41:48 Modified files: mail/evolution : Makefile distinfo Log message: Update to evolution-3.12.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 03:42:08 Modified files: mail/evolution-ews: Makefile distinfo Log message: Update to evolution-ews-3.12.6. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:48:42 Modified files: . : plus20.html plus21.html plus22.html plus23.html plus24.html plus25.html plus26.html Log message: rolling the plus*.html files. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:52:32 Modified files: . : plus27.html plus28.html plus29.html plus30.html plus31.html plus32.html plus33.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:53:05 Modified files: . : plus34.html plus35.html plus36.html plus37.html plus38.html plus39.html plus40.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:53:30 Modified files: . : plus41.html plus42.html plus43.html plus44.html plus45.html plus46.html plus47.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:53:59 Modified files: . : plus48.html plus49.html plus50.html plus51.html plus52.html plus53.html plus54.html plus55.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/08 04:40:12 Modified files: fonts/fira-fonts: Makefile distinfo fonts/fira-fonts/pkg: PLIST Log message: Update to Fira 3.111 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 05:23:37 Modified files: databases/hs-HDBC: Makefile distinfo Log message: Update to HDBC-2.4.0.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 05:24:42 Modified files: databases/hs-HDBC-mysql: Makefile databases/hs-HDBC-sqlite3: Makefile net/hpodder : Makefile Log message: Bump following hs-HDBC's update CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 05:26:09 Modified files: databases/hs-HDBC-postgresql: Makefile distinfo Log message: Update to HDBC-postgresql-2.3.2.2 Take maintainer, as per jasper's request. CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/09/08 05:27:49 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: strip excess verbiage from sed expressions ok and prodding ajacoutot@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/08 05:33:14 Modified files: build : mirrors.dat Log message: "ftp.eu syncs the mirror every 6h" - jj CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/08 06:21:42 Modified files: x11/gnustep/make: Makefile Added files: x11/gnustep/make/patches: patch-Master_rules_make Log message: remove the check for writing to /, as it breaks two ports in FAKE_AS_ROOT=No CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 06:34:44 Modified files: audio/hs-libmpd: Makefile distinfo x11/xmobar : Makefile Log message: Update to hs-libmpd-0.8.0.5 Take maintainership from jasper CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 06:41:54 Modified files: devel/hs-convertible: Makefile distinfo Log message: Update to convertible-1.1.0.0 (forgotten in my previous round) CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 07:51:29 Modified files: app/cwm : calmwm.h group.c mousefunc.c Log message: Now that a group knows its screen, only pass down the group_ctx. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/08 08:29:05 Modified files: usr.bin/tmux : format.c tmux.1 Log message: Add window_last_flag and window_zoomed_flag. From John Morrissey. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/08 08:42:40 Modified files: sys/netinet6 : Tag: OPENBSD_5_6 nd6_rtr.c Log message: Merge from -current: Prevent addition of redundant IPv6 autoconf addresses. Regression from r1.81 which switched from workq to taskq and incorrectly assumed duplicate addresses would be impossible with taskq. We ended up re-adding the SLAAC address whenever a privacy address expired. ok bluhm@, sthen@ (for 5.6-stable) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 09:43:04 Modified files: devel/yaml-cpp/patches: patch-CMakeLists_txt Log message: regen, no pkg change CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/08 09:45:20 Modified files: lib/libc/regex : regcomp.c Log message: add \ support to regcomp. prompted by renewed interest from jsg because such support is reportedly common and in somewhat wide use. undocumented for now because we don't endorse this. ok jsg millert CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 10:12:11 Modified files: comms/conserver: Makefile distinfo comms/conserver/patches: patch-conserver_Makefile_in patch-conserver_cf_Makefile_in patch-conserver_consent_c patch-conserver_cutil_c patch-conserver_group_c patch-console_console_c comms/conserver/pkg: README Log message: update to conserver 8.1.20, add more notes for upgrading users on how to unbreak things following the uid change CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 10:47:59 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Put chpass(1) args between quotes. spotted by matthieu@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 11:02:42 Modified files: devel/yaml-cpp : Makefile devel/yaml-cpp/pkg: PLIST Removed files: devel/yaml-cpp/pkg: PFRAG.shared Log message: yaml-cpp tweaks: add build dep on boost (yaml-cpp headers require it - found during a failing opencoorio build), merge PFRAG.shared into PLIST. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 11:04:51 Modified files: devel/hs-atom : Makefile devel/hs-base64-bytestring: Makefile devel/hs-blaze-builder: Makefile devel/hs-data-default: Makefile devel/hs-enumerator: Makefile devel/hs-hlint : Makefile devel/hs-largeword: Makefile devel/hs-monads-tf: Makefile devel/hs-tagged: Makefile devel/hs-type-level: Makefile security/hs-asn1-data: Makefile security/hs-certificate: Makefile security/hs-crypto-api: Makefile security/hs-cryptocipher: Makefile security/hs-tls: Makefile textproc/hs-attoparsec-enumerator: Makefile textproc/gonzui: Makefile audio/p5-cddb : Makefile audio/p5-Audio-MPD: Makefile audio/p5-Audio-MPD-Common: Makefile devel/p5-POE : Makefile devel/stm32loader: Makefile graphics/gfract: Makefile net/p5-POE-Component-IRC: Makefile net/p5-POE-Filter-IRCD: Makefile net/p5-Nmap-Scanner: Makefile www/p5-CGI-XMLApplication: Makefile Log message: drop maintainership of ports i haven't used in a long time and have no use for anymore CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/08 11:44:18 Modified files: www/mhonarc : Makefile distinfo Removed files: www/mhonarc/patches: patch-lib_mhamain_pl patch-lib_readmail_pl Log message: Maintainer update to MHonArc-2.6.19. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/08 11:51:09 Modified files: databases/tinycdb: Makefile distinfo databases/tinycdb/patches: patch-Makefile patch-tests_sh databases/tinycdb/pkg: PLIST Removed files: databases/tinycdb/pkg: PFRAG.shared Log message: Maintainer update to tinycdb-0.78. - remove most of the makefile patching - respect DEBUG=-g - merge PFRAG.shared Proofreading by sthen@. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/08 12:10:01 Modified files: sys/net : if_pflog.c pfvar.h Log message: When logging a packet to a listener on the pflog0 interface, the function pflog_bpfcopy() is setting up a packet description with pf_setup_pdesc(). When pf_setup_pdesc() is droppig a bad packet, it increments the the pf status counters. This way bad packets could be accounted multiple times. Now pflog_bpfcopy() passes a reason pointer NULL to indicate that no accounting should be done. From Florian Riehm; OK henning@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/08 12:35:20 Modified files: net/p5-Net-INET6Glue: Makefile distinfo Log message: - update p5-Net-INET6Glue to 0.603 - depend on p5-IO-Socket-IP instead of p5-IO-Socket-INET6 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/08 12:54:30 Modified files: archivers/unrar: Makefile distinfo archivers/unrar/patches: patch-makefile patch-os_hpp patch-rijndael_cpp patch-rijndael_hpp Removed files: archivers/unrar/patches: patch-suballoc_cpp Log message: update to 5.1.6; specifically tested on sparc64 CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2014/09/08 13:30:06 Modified files: lib/libc : shlib_version Log message: bump minor after addition of \ support to regcomp; ok miod@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/08 13:42:57 Modified files: sys/uvm : uvm_aobj.c Log message: Don't sleep on allocation of hash table entries. Should fix crashes people have been seeing with tmpfs. Based on a similar fix from Bitrig by Owain Ainsworth. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 13:52:22 Modified files: infrastructure/templates: network.conf.template Log message: remove a defunct site from and add a few more to MASTER_SITES_GNOME CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/08 14:01:03 Log message: Import dwb 2014.03.07. dwb is a lightweight web browser based on the webkit web browser engine and the gtk toolkit. dwb is highly customizable and can be easily configured through a web interface. It is mostly keyboard driven, inspired by firefox's vimperator plugin. From maintainer Henrik Friedrichsen with tweaks from me and sthen@, ok sthen@ Status: Vendor Tag: hfriedrichsen Release Tags: landry_20140908 N ports/www/dwb/distinfo N ports/www/dwb/Makefile N ports/www/dwb/pkg/PLIST N ports/www/dwb/pkg/DESCR N ports/www/dwb/patches/patch-config_mk N ports/www/dwb/patches/patch-dwbremote_Makefile N ports/www/dwb/patches/patch-src_session_c N ports/www/dwb/patches/patch-dwbem_Makefile N ports/www/dwb/patches/patch-exar_Makefile N ports/www/dwb/patches/patch-src_util_Makefile N ports/www/dwb/patches/patch-src_Makefile N ports/www/dwb/patches/patch-src_config_mk No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/08 14:01:31 Modified files: www : Makefile Log message: +dwb CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/08 14:08:12 Modified files: www/p5-CGI-Lite: Makefile distinfo Log message: Update p5-CGI-Lite to 2.04. OK Abel Abraham Camarillo Ojeda (MAINTAINER) and ajacoutot@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 14:11:22 Modified files: app/cwm : calmwm.c calmwm.h client.c kbfunc.c mousefunc.c screen.c xutil.c Log message: Remove duplicate client queue (mruq); instead, remove and take the global Clientq and place it inside screen_ctx since every client belongs to a screen, then use the same per screen clientq to track stacking order (the sole reason for mruq). CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/08 14:18:34 Modified files: textproc/markdown: Makefile distinfo textproc/markdown/pkg: PLIST Log message: Update markdown to 2.4.1 OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/08 14:20:52 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/pkg: PLIST Log message: Update to birdfont 1.1 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/08 14:25:03 Modified files: sys/dev/acpi : acpi.c Log message: Clear the PME Status bit on PCI devices in response to Device Wake events. Fixes the interrupt storm on the 2009 Mac mini with WOL enabled on its nfe(4) interface. ok mlarkin@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 14:32:40 Modified files: app/cwm : client.c Log message: since mruq has been folded in, rename mru-named functions CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 14:37:02 Modified files: app/cwm : client.c Log message: more style nits and wrapping CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/08 14:54:05 Modified files: security/p5-IO-Socket-SSL: Makefile distinfo Log message: update p5-IO-Socket-SSL 1.998 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 15:12:57 Modified files: www/dwb : Makefile Log message: LOCALBASE->TRUEPREFIX from aja CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 15:15:14 Modified files: app/cwm : calmwm.h client.c group.c mousefunc.c Log message: name the group client queue appropriately, like other queues CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 15:21:05 Modified files: infrastructure/templates: network.conf.template Log message: unbreak the ports tree; frantisek holop CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 15:24:27 Modified files: app/cwm : client.c Log message: move the check for an empty queue up during cycle CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/08 15:36:39 Modified files: sys/dev/pci : pcidevs Log message: Distinguish the 82599EN from the original 82599 ok miod@ CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/08 15:36:50 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: sync CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:28:08 Modified files: security/spiped: Makefile distinfo Log message: Update spiped to 1.4.1 CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:29:04 Modified files: mail/pop3d : Makefile distinfo Log message: Update pop3d to 1.0.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 16:36:22 Modified files: mail/mutt : Makefile Log message: build dep on www/lynx, problem reported by frantisek holop CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:42:03 Log message: Import ports/sysytils/login_duo. "reads good to me" landry@ login_duo provides two-factor authentication for Unix systems. When integrated with sshd(8) a challenge is sent to the users cell phone before access is granted. Status: Vendor Tag: jturner Release Tags: jturner_20140908 N ports/sysutils/login_duo/Makefile N ports/sysutils/login_duo/distinfo N ports/sysutils/login_duo/pkg/DESCR N ports/sysutils/login_duo/pkg/PLIST N ports/sysutils/login_duo/pkg/README N ports/sysutils/login_duo/patches/patch-login_duo_login_duo_8 No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:43:08 Modified files: sysutils : Makefile Log message: +login_duo CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/08 17:50:45 Modified files: sys/kern : subr_pool.c Log message: change some (flags & PR_WAITOK) to ISSET(flags, PR_WAITOK) no functional change. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/08 20:07:17 Modified files: sys/sys : socketvar.h sys/kern : uipc_socket.c uipc_socket2.c uipc_syscalls.c Log message: Delete the SS_ISCONFIRMING flag that supported delayed connection confirmation: it was only used for netiso, which was deleted a *decade* ago ok mpi@ claudio@ ports scan by sthen@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/08 21:08:30 Modified files: sys/dev/pci : mfi_pci.c sys/dev/ic : mfi.c Log message: mark the interrupt handler mpsafe, and give up biglock in the scsi cmd submission paths. take biglock again when calling back into the scsi stack. tested on a variety of cards here, including the skinny mfis on the firewall next to mpsafe myx. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/08 21:41:08 Modified files: usr.bin/telnet : commands.c externs.h sys_bsd.c telnet.c utilities.c Log message: Eliminate a pile of casts that were superfluous or wrong, or that were the result of bad type choices, particularly (unsigned char *) vs (const char *). Also, use reallocarray(). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/08 21:50:43 Modified files: lib/libc/sys : accept.2 Log message: We have no protocols which require explicit confirmation CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/08 22:20:24 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/08 23:43:25 Modified files: sys/scsi : scsi_base.c Log message: rework the hotplug requests to use tasks rather than workqs. tested on mpi(4) sas. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/09 00:02:09 Modified files: sysutils/login_duo: Makefile sysutils/login_duo/pkg: README Log message: LOCALBASE -> PREFIX CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 00:32:37 Modified files: lib/libc/sys : recv.2 send.2 setuid.2 wait.2 Log message: Various updates and corrections to SYNOPSIS, ERRORS, and STANDARDS Mention send(MSG_EOR) CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/09 00:37:57 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Replace last usage of awk in sysmerge with a shell equivalent. based on a diff from and OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/09 01:07:39 Modified files: sys/sys : sched.h sys/kern : vfs_bio.c vfs_sync.c sys/uvm : uvm_pdaemon.c Log message: Make the cleaner, syncer, pagedaemon, aiodone daemons all yield() if the cpu is marked SHOULDYIELD. ok miod@ tedu@ phessler@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/09 01:11:41 Modified files: . : plus56.html Log message: This file should also have been rolled yesterday. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/09 01:14:27 Modified files: . : plus.html Log message: Deleted the draft entries of plus.html that somehow got pasted in underneath the final version. Spotted by Scott Vandebilt (Scott (at) datagenic (dot) com) and Igor Sobrado (isd (at) orion (dot) ciencias (dot) uniovi (dot) es). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 01:23:19 Modified files: lib/libc/sys : rmdir.2 unlink.2 Log message: Various updates and corrections to SYNOPSIS, ERRORS, and STANDARDS Mention that unlinkat() serves the role of rmdirat(). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:30:29 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo Log message: - update to specinfra-1.14.0 (most recent version that works with serverspec-1.7.0) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:31:00 Modified files: devel/ruby-rspec/serverspec: Makefile distinfo devel/ruby-rspec/serverspec/pkg: PLIST Log message: - update to serverspec-1.7.0, most recent version that works with rspec2 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 01:36:42 Modified files: lib/libc/sys : rmdir.2 unlink.2 Log message: Don't need to mention names on .Rv line here CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/09 01:47:04 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Rreplace [[ -n $(grep..) ]] and [[ -z $(grep..) ]] with grep -q and ! grep -q. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:52:07 Modified files: devel/msp430 : Makefile.inc Log message: instruct portroach to ignore; the versions used are explicitly not the latest since it's the LTS release. besides, there may not ever be a release again in the current form and shape. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:53:02 Log message: import puppet-syntax-1.3.0 Syntax checks for Puppet manifests, templates, and Hiera YAML. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140909 N ports/sysutils/ruby-puppet-syntax/distinfo N ports/sysutils/ruby-puppet-syntax/Makefile N ports/sysutils/ruby-puppet-syntax/pkg/PLIST N ports/sysutils/ruby-puppet-syntax/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:54:01 Modified files: sysutils : Makefile Log message: +ruby-puppet-syntax CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:58:11 Modified files: devel/ruby-rspec/puppetlabs_spec_helper: Makefile distinfo devel/ruby-rspec/puppetlabs_spec_helper/pkg: PLIST Log message: update to puppetlabs_spec_helper-0.8.1 CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/09 02:16:12 Modified files: lib/libc/sys : setuid.2 Log message: tweak previous; CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 02:16:52 Modified files: lib/libc/sys : sigprocmask.2 Log message: Don't point to for SIG_*; they're told to use and don't need anything beyond that CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 02:17:59 Modified files: lib/libc/sys : sigaction.2 sigaltstack.2 sigpending.2 sigreturn.2 sigsuspend.2 Log message: Various updates and corrections to SYNOPSIS, ERRORS, and STANDARDS Mention that unlinkat() serves the role of rmdirat(). CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/09 02:43:01 Modified files: faq : current.html Log message: expand the notes about /etc/rc changes making an explicit note that updating etc* files (especially rc.conf) is a required step CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/09 02:53:51 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: 'rm -f' in case we skip a release. No functional change, just cosmetic. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 03:00:17 Modified files: lib/libc/sys : shutdown.2 Log message: Identify domains with AF_* instead of PF_* here Tweaks to SYNOPSIS and RETURN VALUES CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 03:04:31 Modified files: mail/procmail : Tag: OPENBSD_5_5 Makefile mail/procmail/patches: Tag: OPENBSD_5_5 patch-src_formisc_c Log message: security fix for CVE-2014-3618 CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/09 03:34:04 Modified files: infrastructure/mk: bsd.port.mk pkgpath.mk Log message: force umask 022 in fake !sudo situations. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/09 03:40:23 Modified files: usr.sbin/pkg_add/OpenBSD: PackingElement.pm PackingList.pm ArcCheck.pm Log message: register @newuser/@newgroup so that we try creating tarballs with the correct users (which doesn't really matter all that much, as the owner/group in the plist are what matters) Otherwise, if we're not root, dismiss user id and groups, replace with root/bin (significant fix from previous version: this interprets $( correctly). Should help with FAKE_AS_ROOT=No CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/09/09 03:45:36 Modified files: usr.bin/ssh : sshd_config.5 Log message: mention permissions on tun(4) devices in PermitTunnel documentation; bz#2273 CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/09/09 04:08:23 Modified files: www/apache-httpd: Makefile distinfo Log message: update to apache-httpd 2.2.29; ok sthen CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/09 05:10:35 Modified files: editors/nano : Makefile Removed files: editors/nano/patches: patch-doc_syntax_asm_nanorc patch-doc_syntax_awk_nanorc patch-doc_syntax_c_nanorc patch-doc_syntax_cmake_nanorc patch-doc_syntax_fortran_nanorc patch-doc_syntax_gentoo_nanorc patch-doc_syntax_java_nanorc patch-doc_syntax_makefile_nanorc patch-doc_syntax_nanorc_nanorc patch-doc_syntax_objc_nanorc patch-doc_syntax_ocaml_nanorc patch-doc_syntax_perl_nanorc patch-doc_syntax_php_nanorc patch-doc_syntax_pov_nanorc patch-doc_syntax_python_nanorc patch-doc_syntax_ruby_nanorc patch-doc_syntax_sh_nanorc patch-doc_syntax_tcl_nanorc Log message: regcomp now supports \ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/09 05:10:50 Modified files: x11/x11vnc : Makefile x11/x11vnc/patches: patch-x11vnc_ssltools_h Log message: regcomp now supports \; ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 06:55:40 ports/www/p5-Plack/patches Update of /cvs/ports/www/p5-Plack/patches In directory cvs.openbsd.org:/tmp/cvs-serv29500/patches Log Message: Directory /cvs/ports/www/p5-Plack/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 07:48:28 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Added files: www/nginx/pkg : README Log message: add a README to www/nginx with clues about log-rotation, ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 07:53:40 Modified files: lang/lua/5.1 : Tag: OPENBSD_5_5 Makefile Added files: lang/lua/5.1/patches: Tag: OPENBSD_5_5 patch-src_ldo_c Log message: Security fix for CVE-2014-5461 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 07:54:43 Modified files: lang/lua/5.1 : Makefile Added files: lang/lua/5.1/patches: patch-src_ldo_c Log message: Security fix for CVE-2014-5461 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 08:01:26 Modified files: lang/node : Makefile Added files: lang/node/patches: patch-deps_v8_src_isolate_h Log message: Security fix for CVE-2014-5256 ok abieber@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 08:05:48 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Log message: @sample nginx config files, suggested by/ok aja@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/09 08:10:35 Modified files: usr.bin/vi/ex : ex_subst.c Log message: We no longer need to convert "\<" and "\>" to "[[:<:]]" and "[[:>:]]" respectively now that the former is natively supported. OK jsg@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 08:49:56 Modified files: lang/node : Tag: OPENBSD_5_5 Makefile Added files: lang/node/patches: Tag: OPENBSD_5_5 patch-deps_v8_src_isolate_h Log message: Security fix for CVE-2014-5256 CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/09 12:55:08 Modified files: sys/dev/pci : if_iwn.c if_iwnreg.h if_iwnvar.h Log message: Backport https://svnweb.freebsd.org/base?view=revision&revision=258829 to fix scans with various iwn(4) devices. From Fabian Raetz, testing by Fabian, Marcin Piotr Pawlowski, Mike Burns, kettenis@ and myself. ok kettenis@ with minor tweaks for whitespace in #define lines which I've done; also I have done s/IWL/IWN/ in comments as noticed by dcoppa@. CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/09 12:56:24 Modified files: sys/dev/pci : if_iwnreg.h Log message: fix remaining spaces/tabs issues in #define lines CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/09 13:33:55 Modified files: usr.bin/mandoc : mandocdb.c Log message: If a manpath directory (for example, a _whatdb entry from man.conf(5) or an entry in the MANPATH environment variable) does not exist, silently skip it. This brings makewhatis(8) back closer to the behaviour of espie@'s version and ought to shut up the weekly(8) whining observed by henning@ on machines not having xbase installed. Also, don't error out after the first unusable manpath entry, still try the others. Of course, still complain about non-existent directories specified on the command line and about any directories failing for other reasons than ENOENT. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/09 14:15:25 Modified files: databases/libpqxx: Makefile databases/libpqxx/patches: patch-tools_lint Log message: * regcomp (and thus grep) now supports \ * running the tests requires the server ok zhuk@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/09 14:27:48 Modified files: sys/dev/pci : arc.c Log message: replace scsi_task(), which is a wrapper around workqs, with a quick conversion to tasks. tested by chris@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/09 14:30:08 Modified files: sys/scsi : scsiconf.h Log message: remove the scsi_task() wrapper around workq_add_task now that nothing uses it. dont need to include workq.h anymore here either now. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/09 14:33:24 Modified files: sys/netinet6 : nd6_rtr.c Log message: workqs were replaced with tasks in here, so dont need workq.h anymore. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 15:03:24 Modified files: x11/pcmanfm : Makefile distinfo Log message: update to pcmanfm 1.2.2, from Rafael Sadowski CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/09 15:27:17 Modified files: www/seamonkey : Makefile distinfo www/seamonkey/patches: patch-mozilla_js_src_configure_in patch-mozilla_js_src_ctypes_libffi_src_dlmalloc_c patch-mozilla_media_libvpx_Makefile_in patch-mozilla_storage_src_mozStorageConnection_cpp patch-suite_installer_Makefile_in www/seamonkey/pkg: PLIST-lightning Added files: www/seamonkey/patches: patch-mozilla_intl_icu_source_Makefile_in Removed files: www/seamonkey/patches: patch-calendar_base_jar_mn patch-calendar_lightning_jar_mn patch-mozilla_browser_components_certerror_content_aboutCertError_xhtml patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp patch-mozilla_xpcom_io_SpecialSystemDirectory_cpp Log message: (Long awaited) update to seamonkey 2.29 / lightning 3.4. - See http://www.seamonkey-project.org/releases/seamonkey2.29/ - this is based on gecko 32, so contains all the new changes since gecko 20 (which was the basis for seamonkey 2.26) - remove patches to fix lightning display (merged in #1001985) - remove mozilla/browser/components/certerror/content/aboutCertError.xhtml, boring patch. - add intl/icu patch from #990196 - remove patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp and patch-mozilla_xpcom_io_SpecialSystemDirectory_cpp, they neved made any sense to me and this is the wrong place to modify this. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/09 15:27:38 Modified files: www/seamonkey-i18n: Makefile.inc distinfo Log message: Update to seamonkey-i18n 2.29. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 15:50:48 Modified files: net/nagios/check_esxi_hardware: Makefile distinfo Log message: update to check_esxi_hardware 20140319, committing on behalf of merdely@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 18:02:21 Modified files: security/libsrtp: Makefile Log message: CATEGORIES+=telephony, lowercase at start of COMMENT CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/09 18:07:39 Modified files: graphics/GraphicsMagick: Makefile distinfo graphics/GraphicsMagick/patches: patch-configure graphics/GraphicsMagick/pkg: PLIST Log message: Update to GraphicsMagick 1.3.20. ok sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/09 20:55:46 Modified files: lib/libc/sys : sigaction.2 Log message: update STANDARDS reference from POSIX 1990 to POSIX 2008; joint work with and ok guenther@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/09/09 22:39:50 Modified files: sys/compat/linux: linux_socket.c Log message: Avoid possible use of uninitialized variable. From Maxime Villard via a post to tech@ a long time ago ok guenther@, doug@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/09 22:40:02 Modified files: gnu/usr.bin/cc/include: Makefile Added files: gnu/gcc/gcc/config/i386: cpuid.h Log message: Add cpuid.h from clang r197399 with additional feature bits, and defines for compatibility with the equivalent gcc header. cpuid.h was introduced in gcc 4.3 and a compatible header has been included with recent versions of clang. Earlier version ok miod@. Tested in a ports bulk build by landry@. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/09 23:14:38 Modified files: mail/enigmail : Makefile distinfo Log message: Update to enigmail 1.7.2 See https://www.enigmail.net/download/changelog.php#enig1.7.2 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 00:08:42 Modified files: sysutils/salt : Makefile distinfo sysutils/salt/patches: patch-salt_states_user_py Log message: Update to salt-2014.1.11. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 00:10:31 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Log message: Update to p11-kit-0.20.6. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:35:19 Modified files: www/p5-Plack : Makefile Added files: www/p5-Plack/patches: patch-lib_Plack_App_File_pm Log message: Security fix for CVE-2014-5269 ok maintainer CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:43:39 Modified files: www/p5-Plack : Tag: OPENBSD_5_5 Makefile Added files: www/p5-Plack/patches: Tag: OPENBSD_5_5 patch-lib_Plack_App_File_pm Log message: Security fix for CVE-2014-5269 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:44:26 Modified files: www/firefox-esr: Tag: OPENBSD_5_5 Makefile distinfo Log message: security update to firefox-24.8.0esr - note, this will be the last release of the 24ESR series CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:44:55 Modified files: www/firefox-esr-i18n: Tag: OPENBSD_5_5 Makefile.inc distinfo Log message: sync with firefox-24.8.0esr CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/10 01:04:23 Modified files: lib/libc/sys : sigaction.2 lib/libc/gen : signal.3 Log message: sockatmark(3) has been implemented; add it to the async-signal-safe lists CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:07:25 Modified files: devel/glib : Makefile x11/gtk+ : Makefile Log message: tell PORTROACH to ignore glib/gtk versions from this era, ie. stick to 1.x CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:13:06 Modified files: devel/rebar : Makefile distinfo Log message: update to rebar-2.5.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:16:24 Modified files: databases/leveldb: Makefile Log message: moved to github, but keep previous master sites as 1.5.0 wasn't released on github. this port could use an update to 1.7.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:19:10 Modified files: graphics/goocanvas: Makefile Log message: stick to versions 1.x CVSROOT: /cvs Module name: src Changes by: dcoppa@cvs.openbsd.org 2014/09/10 01:22:09 Modified files: sys/dev/pci : if_iwn.c Log message: s/IWL/IWN/ in comment here too CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/09/10 01:46:51 Modified files: games/openxcom : Makefile games/openxcom/patches: patch-CMakeLists_txt games/openxcom/pkg: PLIST Log message: Add desktop file and icons. Patch was sent upstream. OK jsg@, maintainer timed out. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:30:20 Modified files: net/farstream : Makefile distinfo net/farstream/pkg: PLIST Removed files: net/farstream/patches: patch-tests_check_testutils_c patch-tests_check_transmitter_stunalternd_c patch-transmitters_multicast_fs-multicast-transmitter_c patch-transmitters_rawudp_fs-rawudp-transmitter_h Log message: update to farstream-0.2.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 02:30:31 Log message: import ports/telephony/libzrtp, from maintainer Dmitrij D. Czarkoff, ok landry@ Zfone is VoIP encryption software, designed by Phil Zimmermann of PGP. This SDK is suitable for inclusion in software VoIP clients, firmware for hardware VoIP phones, VoIP PBX servers, mobile VoIP clients, and SIP border control servers. The SDK enables interoperation with the rest of the ZRTP community. Status: Vendor Tag: sthen Release Tags: sthen_20140910 N ports/telephony/libzrtp/Makefile N ports/telephony/libzrtp/distinfo N ports/telephony/libzrtp/patches/patch-include_zrtp_config_user_h N ports/telephony/libzrtp/patches/patch-third_party_bnlib_Makefile_in N ports/telephony/libzrtp/patches/patch-configure_in N ports/telephony/libzrtp/pkg/DESCR N ports/telephony/libzrtp/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 02:30:48 Modified files: telephony : Makefile Log message: +libzrtp CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:31:20 Modified files: net : Makefile Removed files: net/papyon : Makefile distinfo net/papyon/patches: patch-papyon_media_conference_py net/papyon/pkg : DESCR PLIST Log message: remove papyon which is unused (telepathy-butterfly was removed years ago), and unmaintained upstream (no activity in 3 years). ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:33:10 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register papyon CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/10 02:36:18 Modified files: math/coq : Makefile Log message: Add missing BUILD_DEPENDS/lang/ocaml-camlp4 to math/coq noticed by landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:42:33 Modified files: devel/lua-lgi : Makefile distinfo devel/lua-lgi/pkg: DESCR PLIST Log message: update to lgi-0.8.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 03:59:55 Modified files: www/squid/stable: Makefile distinfo Log message: SECURITY update to squid 3.4.7 - clients can perform a DoS due to incorrect input validation in range checking. http://www.squid-cache.org/Advisories/SQUID-2014_2.txt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 04:09:04 Modified files: www/squid/stable: Tag: OPENBSD_5_6 Makefile distinfo Log message: SECURITY update to squid 3.4.7 - clients can perform a DoS due to incorrect input validation in range checking. http://www.squid-cache.org/Advisories/SQUID-2014_2.txt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 04:11:08 Modified files: www/squid/stable: Tag: OPENBSD_5_5 Makefile distinfo www/squid/stable/patches: Tag: OPENBSD_5_5 patch-src_client_side_reply_cc Log message: SECURITY update to squid 3.3.13 - clients can perform a DoS due to incorrect input validation in range checking. http://www.squid-cache.org/Advisories/SQUID-2014_2.txt CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:17:45 Log message: import distorm3, powerful disassembler library for x86/amd64 (needed for volatility). ok and few tweaks by sthen@ (thanks). Status: Vendor Tag: rpointel Release Tags: rpointel_2014-Sep-10 N ports/security/distorm3/Makefile N ports/security/distorm3/distinfo N ports/security/distorm3/pkg/PLIST N ports/security/distorm3/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:19:29 Log message: import volatility, memory artifact extraction utility framework. few tweaks and ok sthen@ (thanks). Status: Vendor Tag: rpointel Release Tags: rpointel_2014-Sep-10 N ports/security/volatility/Makefile N ports/security/volatility/distinfo N ports/security/volatility/pkg/PLIST N ports/security/volatility/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:21:10 Modified files: security : Makefile Log message: + SUBDIR += distorm3 + SUBDIR += volatility CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/10 05:25:32 Modified files: lib/libc/regex : re_format.7 Log message: document \ as being non standard from Pedro F. Giffuni in FreeBSD pr 153257 ok millert@ tedu@ CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:28:06 Log message: import foremost, forensic data recovery program. few tweaks and ok sthen@ (thanks). Status: Vendor Tag: rpointel Release Tags: rpointel_2014-Sep-10 N ports/security/foremost/Makefile N ports/security/foremost/distinfo N ports/security/foremost/pkg/PLIST N ports/security/foremost/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:29:08 Modified files: security : Makefile Log message: SUBDIR += foremost CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/10 05:55:24 Modified files: x11/gnome/doc-utils: Makefile Removed files: x11/gnome/doc-utils/patches: patch-doc_xslt_Makefile_in Log message: * regcomp (and thus grep) now supports \ * drop misplaced GNU grep dependency ok ajacoutot@, jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 05:58:47 Modified files: audio/sonata : Makefile distinfo Log message: Update to a newer checkout. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 06:50:32 Modified files: telephony/libzrtp: Makefile telephony/libzrtp/pkg: PLIST Log message: don't enable sqlite, it does fix tests, but breaks use with WIP baresip port CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/10 07:16:20 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Remove redundant null check and rename vars consistently in syslogd Merge in more functionality from bluhm's patch. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/10 09:10:19 Modified files: lib/libc/regex : re_format.7 Log message: zap trailing whitespace; CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/10 09:39:57 Modified files: usr.sbin/httpd : httpd.h server_http.c Log message: Handle different possible variations of the Host header (eg. www.example.com, www.example.com:80, [2001:db8::1], [2001:db8::1]:80). The port is optional and is typically used on non-default ports. If the server name is a plain IPv6 address, it is commonly specified in square brackets. Makes ajacoutot@ happy OK florian@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/10 10:51:42 Modified files: usr.bin/openssl: Makefile Log message: Disable -Wshadow again, since it breaks builds on vax with gcc3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 11:08:03 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsd_sysctl.py Log message: Fix the sysctl module when a value is already set. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/10 13:14:30 Modified files: textproc/the_silver_searcher: Makefile distinfo Log message: Update to 0.24.1 From maintainer Florian Stinglmayr - thanks! CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/10 13:15:50 Modified files: net/hexchat : Makefile distinfo Log message: Update to hexchat 2.10.1, from MAINTAINER. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/10 13:47:17 Modified files: editors/emacs : Makefile Log message: Cope with FAKE_AS_ROOT=Yes. No package change. CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/10 14:21:43 Modified files: sysutils/ansible: Makefile Added files: sysutils/ansible/patches: patch-lib_ansible_runner_action_plugins_copy_py Log message: Patch ansible copy.py to write new line at end of file if 'content' passed without newline. suggested and OK landry@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/10 14:30:38 Modified files: app/cwm : calmwm.h client.c Log message: fold in 'active' into 'flags' CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/10 14:39:21 Modified files: mail/mozilla-thunderbird: Makefile distinfo mail/thunderbird-i18n: Makefile.inc distinfo Log message: Bugfix update to thunderbird 31.1.1. See https://www.mozilla.org/en-US/thunderbird/31.1.1/releasenotes/ CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/10 15:55:42 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/10 17:09:31 Modified files: devel/tcllib/patches: patch-installer_tcl patch-support_installation_actions_tcl Log message: Make installer work with FAKE_AS_ROOT=no. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/10 17:10:04 Modified files: devel/tklib/patches: patch-installer_tcl patch-support_installation_actions_tcl Log message: Make installer work with FAKE_AS_ROOT=no. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/10 21:49:27 Modified files: lang/jimtcl : Makefile Log message: Tidy Makefile. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 00:28:41 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_states_file_py Log message: Always add a newline character for 'contents'; already fixed in salt->=2014.7.0. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/11 01:08:37 Modified files: distrib/notes : m4.common Log message: Tweak notes after moving xetc to xbase. OK matthieu@ ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 01:40:07 Modified files: security/dante : Makefile distinfo security/dante/patches: patch-example_sockd-basic_conf patch-example_sockd_conf Log message: Bugfix update to dante-1.4.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 02:47:03 Modified files: lang/scm : Makefile Log message: Not a GNU configure script; sync WANTLIB while here. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/11 03:02:13 Modified files: audio/clementine: Makefile distinfo audio/clementine/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt patch-src_config_h_in patch-src_core_songloader_cpp patch-src_core_utilities_cpp patch-src_internet_spotifyblobdownloader_cpp Log message: Maintaince update of Clementine to 1.2.3. Contains minor bugfixes. Also adds support for GCC 4.9 and CMake 3.x. Problem with CMake 3.x noticed by landry@, fix from upstream repo via dcoppa@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/11 03:06:11 Modified files: net/tor : Tag: OPENBSD_5_5 Makefile distinfo Log message: Update to tor 0.2.4.23; mitigates the attack described at https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-august-6th-2014 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/11 03:14:45 Modified files: net/tor : Tag: OPENBSD_5_6 Makefile distinfo Log message: Update to tor 0.2.4.23; mitigates the attack described at https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-august-6th-2014 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 03:55:17 Modified files: www/bacula-web : Tag: OPENBSD_5_6 Makefile distinfo www/bacula-web/pkg: Tag: OPENBSD_5_6 PLIST Log message: SECURITY update to bacula-web-6.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 03:55:33 Modified files: print/cups : Tag: OPENBSD_5_6 Makefile Added files: print/cups/patches: Tag: OPENBSD_5_6 patch-backend_usb-libusb_c Log message: Fix USB printing. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/11 03:58:34 Modified files: misc/mc : Makefile Log message: depend on libssh2 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 04:24:38 Modified files: devel/cmake : Makefile cmake.port.mk distinfo devel/cmake/patches: patch-CMakeLists_txt patch-Modules_Compiler_GNU_cmake patch-Modules_FindJNI_cmake patch-Modules_FindJava_cmake patch-Modules_FindMPEG2_cmake patch-Modules_FindMPEG_cmake patch-Modules_FindPythonInterp_cmake patch-Modules_FindPythonLibs_cmake patch-Modules_FindQt3_cmake patch-Modules_FindQt4_cmake patch-Modules_FindQt_cmake patch-Modules_FindSDL_cmake patch-Modules_FindTCL_cmake patch-Modules_FindTclStub_cmake patch-Modules_FindTclsh_cmake patch-Modules_FindWish_cmake patch-Modules_FindXMLRPC_cmake patch-Modules_GNUInstallDirs_cmake patch-Modules_Platform_UnixPaths_cmake patch-Modules_Qt4ConfigDependentSettings_cmake patch-Source_CursesDialog_CMakeLists_txt patch-Source_cmComputeLinkInformation_cxx patch-Source_cmInstallCommand_cxx patch-Source_cmTarget_cxx patch-Source_kwsys_SystemTools_cxx patch-Tests_CMakeLists_txt patch-Tests_CMakeTests_ModuleNoticesTest_cmake_in patch-bootstrap devel/cmake/pkg: PLIST Added files: devel/cmake/patches: patch-Help_index_rst patch-Modules_FindLua_cmake Removed files: devel/cmake/files: FindBacktrace.cmake FindLuaInterp.cmake FindLuaLibs.cmake devel/cmake/patches: patch-Modules_FindFreetype_cmake patch-Modules_FindRuby_cmake Log message: Update to cmake-3.0.1 Tested in a bulk build by landry@ OK landry@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 04:27:17 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-awesomeConfig_cmake Log message: Unbreak build with cmake-3.0.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 04:33:44 Modified files: infrastructure/db: systrace.filter Log message: permit native-dup3: unbreak systraced build of gstreamer1. from patrick keshishian ok sthen@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/11 05:14:36 Modified files: share/man/man4 : usb.4 Log message: typo, from Daniel Jakots CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 08:02:55 Modified files: devel/codeblocks: Makefile distinfo devel/codeblocks/patches: patch-src_base_tinyxml_Makefile_in patch-src_plugins_compilergcc_compilergcc_cpp patch-src_src_appglobals_cpp patch-src_src_prefix_cpp devel/codeblocks/pkg: PLIST Added files: devel/codeblocks/patches: patch-configure Removed files: devel/codeblocks/patches: patch-src_CodeBlocks-unix_cbp patch-src_include_scripting_sqplus_sqplus_h patch-src_plugins_contrib_help_plugin_man2html_cpp Log message: Update to codeblocks-13.12. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/11 08:43:05 Modified files: www/wordpress : Makefile distinfo www/wordpress/pkg: PLIST Log message: Update for Wordpress to 4.0 http://codex.wordpress.org/Version_4.0 OK kili@ kirby@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 08:45:13 Modified files: devel/cmake/patches: patch-Modules_FindJNI_cmake patch-Modules_FindJava_cmake patch-Modules_FindSDL_cmake patch-Modules_GNUInstallDirs_cmake patch-Source_kwsys_SystemTools_cxx patch-Tests_CMakeLists_txt patch-Tests_RuntimePath_CMakeLists_txt Log message: cleanup comments; zap a couple of now meaningless comments related to java 1.6 CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/11 08:47:20 Modified files: net/haproxy : Makefile distinfo net/haproxy/patches: patch-doc_haproxy_1 Added files: net/haproxy/patches: patch-Makefile Removed files: net/haproxy/patches: patch-Makefile_bsd Log message: Update for HAproxy to 1.5.3: - DOC: fix typo in Unix Socket commands - BUG/MEDIUM: connection: fix memory corruption when building a proxy v2 header - BUG/MEDIUM: ssl: Fix a memory leak in DHE key exchange - DOC: mention that Squid correctly responds 400 to PPv2 header - BUG/MINOR: http: base32+src should use the big endian version of base32 - BUG/MEDIUM: connection: fix proxy v2 header again! Now use GMAKE. Ok benoit@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/11 10:06:26 Modified files: app/cwm : kbfunc.c Log message: Remove incorrect cast in kbfunc_exec. In kbfunc_ssh, reverse logic on truncation check so it's obvious. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/11 10:59:50 Modified files: distrib/sets : makeetcset Log message: Install files that moved from etc to base during "make build" to unbreak updating from src. OK ajacoutot@ CVSROOT: /cvs Module name: www Changes by: giovanni@cvs.openbsd.org 2014/09/11 11:37:00 Modified files: . : plus56.html Log message: typo in traceroute(8) CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/11 11:54:13 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_Target_PowerPC_PPCISelDAGToDAG_cpp Added files: devel/llvm/patches: patch-include_llvm_Support_ELF_h patch-lib_Object_ELF_cpp patch-lib_Target_PowerPC_InstPrinter_PPCInstPrinter_cpp patch-lib_Target_PowerPC_MCTargetDesc_PPCELFObjectWriter_cpp patch-lib_Target_PowerPC_PPCAsmPrinter_cpp patch-lib_Target_PowerPC_PPCFrameLowering_cpp patch-lib_Target_PowerPC_PPCFrameLowering_h patch-lib_Target_PowerPC_PPCISelLowering_cpp patch-lib_Target_PowerPC_PPCISelLowering_h patch-lib_Target_PowerPC_PPCInstrInfo_td patch-lib_Target_PowerPC_PPCMCInstLower_cpp patch-lib_Target_PowerPC_PPCMachineFunctionInfo_cpp patch-lib_Target_PowerPC_PPCMachineFunctionInfo_h patch-lib_Target_PowerPC_PPCRegisterInfo_cpp patch-lib_Target_PowerPC_PPCSubtarget_h patch-lib_Target_PowerPC_PPC_h Log message: r213427 [PowerPC] 32-bit ELF PIC support r213899 Don't use 128bit functions on PPC32. This adds initial support for PPC32 ELF PIC (Position Independent Code; the -fPIC variety), thus rectifying a long-standing deficiency in the PowerPC backend. r213960 [PowerPC] Support TLS on PPC32/ELF CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/11 11:59:51 Modified files: devel/llvm : Makefile Added files: devel/llvm/patches: patch-lib_Target_PowerPC_PPCInstrInfo_cpp patch-lib_Target_PowerPC_PPCInstrInfo_h patch-lib_Target_Sparc_SparcInstrInfo_cpp patch-lib_Target_Sparc_SparcInstrInfo_h Log message: r215238 / r217611 Provide implementations of getNoopForMachoTarget for PowerPC / SPARC. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/11 12:00:45 Modified files: net/curl : Makefile distinfo Log message: Security update to 7.38.0. Fixes CVE-2014-3613 (libcurl cookie leak with IP address as domain) CVE-2014-3620 (libcurl cookie leak for TLDs) Also switch to .lzma distfile. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/11 13:04:53 Modified files: www/chromium : Makefile distinfo www/chromium/patches: patch-base_base_gypi patch-base_posix_unix_domain_socket_linux_cc patch-build_all_gyp patch-build_common_gypi patch-chrome_app_chrome_main_delegate_cc patch-chrome_app_chrome_main_delegate_h patch-chrome_app_chromium_strings_grd patch-chrome_app_google_chrome_strings_grd patch-chrome_app_theme_theme_resources_grd patch-chrome_browser_about_flags_cc patch-chrome_browser_browser_process_impl_cc patch-chrome_browser_browser_resources_grd patch-chrome_browser_chrome_browser_main_posix_cc patch-chrome_browser_chrome_content_browser_client_cc patch-chrome_browser_chrome_content_browser_client_h patch-chrome_browser_extensions_api_serial_serial_api_cc patch-chrome_browser_first_run_upgrade_util_linux_cc patch-chrome_browser_memory_details_cc patch-chrome_browser_net_cookie_store_util_cc patch-chrome_browser_renderer_preferences_util_cc patch-chrome_browser_sync_profile_sync_components_factory_impl_cc patch-chrome_browser_ui_aura_chrome_browser_main_extra_parts_aura_cc patch-chrome_browser_ui_browser_command_controller_cc patch-chrome_browser_ui_browser_view_prefs_cc patch-chrome_browser_ui_panels_panel_manager_cc patch-chrome_browser_ui_startup_startup_browser_creator_cc patch-chrome_browser_ui_toolbar_wrench_menu_model_cc patch-chrome_browser_ui_views_accelerator_table_cc patch-chrome_browser_ui_views_apps_chrome_native_app_window_views_cc patch-chrome_browser_ui_views_chrome_views_delegate_cc patch-chrome_browser_ui_views_chrome_views_delegate_h patch-chrome_browser_ui_views_frame_browser_frame_cc patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc patch-chrome_browser_ui_views_message_center_message_center_widget_delegate_cc patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc patch-chrome_browser_ui_views_tabs_tab_strip_cc patch-chrome_browser_ui_views_toolbar_toolbar_view_cc patch-chrome_browser_ui_webui_about_ui_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_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_api_gyp patch-chrome_common_pref_names_cc patch-chrome_common_pref_names_h patch-components_policy_resources_policy_templates_json patch-components_usb_service_usb_context_cc patch-content_app_content_main_runner_cc patch-content_browser_browser_main_loop_cc patch-content_browser_child_process_launcher_cc patch-content_browser_download_base_file_cc patch-content_browser_renderer_host_render_widget_host_view_aura_cc patch-content_content_browser_gypi patch-content_content_common_gypi patch-content_renderer_renderer_main_platform_delegate_linux_cc patch-content_renderer_renderer_webkitplatformsupport_impl_cc patch-device_hid_hid_gyp patch-device_serial_serial_gyp patch-media_audio_openbsd_audio_manager_openbsd_cc patch-media_media_gyp patch-net_base_network_change_notifier_cc patch-net_net_gypi patch-printing_backend_cups_helper_cc patch-printing_printing_gyp patch-remoting_remoting_host_gypi patch-skia_skia_chrome_gypi patch-third_party_WebKit_Source_config_h 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_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h patch-third_party_libjingle_libjingle_gyp patch-third_party_libjingle_source_talk_base_cpumonitor_cc patch-tools_gyp_pylib_gyp_generator_ninja_py patch-ui_app_list_app_list_constants_cc patch-ui_app_list_app_list_constants_h patch-ui_app_list_views_app_list_item_view_cc patch-ui_app_list_views_app_list_view_cc patch-ui_base_ime_input_method_factory_cc patch-ui_base_ime_input_method_initializer_cc patch-ui_base_resource_resource_bundle_cc patch-ui_base_webui_web_ui_util_cc patch-ui_events_event_switches_cc patch-ui_events_event_switches_h patch-ui_gfx_canvas_skia_cc patch-ui_gl_gl_gyp patch-ui_message_center_views_message_center_button_bar_cc patch-ui_message_center_views_message_center_button_bar_h patch-ui_message_center_views_notification_view_cc patch-ui_shell_dialogs_select_file_dialog_cc patch-ui_views_bubble_bubble_delegate_cc patch-ui_views_controls_button_label_button_cc patch-ui_views_controls_menu_menu_scroll_view_container_cc patch-ui_views_controls_textfield_textfield_cc patch-ui_views_views_delegate_h patch-ui_views_views_gyp patch-ui_views_window_dialog_delegate_cc patch-v8_src_globals_h www/chromium/pkg: PLIST Added files: www/chromium/patches: patch-chrome_app_resources_locale_settings_grd patch-chrome_chrome_exe_gypi patch-chrome_utility_media_galleries_image_metadata_extractor_cc patch-components_usb_service_usb_error_cc patch-content_browser_renderer_host_p2p_socket_dispatcher_host_h patch-content_content_renderer_gypi patch-media_video_capture_linux_video_capture_device_factory_linux_cc patch-media_video_capture_video_capture_device_factory_cc patch-pdf_pdf_gyp patch-third_party_pdfium_build_standalone_gypi patch-third_party_pdfium_core_include_fxcrt_fx_system_h 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_pdfium_pdfium_gyp patch-third_party_webrtc_base_httpcommon_cc patch-third_party_webrtc_base_network_cc patch-third_party_webrtc_base_physicalsocketserver_cc patch-third_party_webrtc_base_stringutils_h patch-third_party_webrtc_build_common_gypi patch-ui_strings_app_locale_settings_grd Removed files: www/chromium/patches: patch-chrome_app_generated_resources_grd patch-content_common_gpu_gpu_memory_manager_cc patch-media_video_capture_linux_video_capture_device_linux_cc patch-third_party_ffmpeg_libavcodec_x86_h264_i386_h patch-ui_base_strings_app_locale_settings_grd Log message: update to 37.0.2062.120 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/11 13:09:01 Modified files: lang/php/5.3 : Makefile distinfo lang/php/5.3/patches: patch-sapi_fpm_php-fpm_conf_in Log message: update to 5.3.29; includes security fix for CVE-2014-3981 and CVE-2014-3515 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/11 14:32:16 Modified files: sys/arch/i386/include: atomic.h Log message: mplement membar(9) API for i386. ok matthew@, guenther@ CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/11 15:38:10 Modified files: . : 56.html Log message: Mention a few installer improvements in 5.6. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/11 15:57:00 Modified files: x11/nx/opennx : Makefile distinfo x11/nx/opennx/patches: patch-Makefile_in patch-opennxApp_cpp Log message: update to opennx-0.16.0.729 CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/11 16:01:45 Modified files: . : 56.html Log message: Mention some 4K-sector improvements in 5.6. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/11 17:52:47 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: warn about botched .Xr ordering and punctuation below SEE ALSO; inspired by mdoclint(1) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/11 17:57:33 Modified files: usr.sbin/pkg_add: pkg_sign.1 Log message: fix the only .Xr ordering and punctuation issue i could find with the new MANDOCERR_XR_* warnings in the whole tree CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/11 18:53:21 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: warn about commas in function arguments; inspired by mdoclint(1) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 00:24:01 Modified files: misc/redshift : Makefile Log message: Missing dependency. breakage reported by stsp@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:34:14 Modified files: sys/dev/ic : nvme.c Log message: fix some format string issues CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 00:37:12 Modified files: games/childsplay: Makefile distinfo Log message: Update to childsplay-2.6.5. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:48:25 Modified files: sys/dev/pci : pcidevs Log message: add Intel SSD DC P3700/P3600/P3500 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:49:23 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:54:38 Modified files: sys/dev/ic : nvme.c Log message: dont leak a ccb in identify CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 01:16:05 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsd_sysctl.py Log message: Don't use _formatfor(). CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/09/12 01:44:22 Modified files: devel/codeblocks: Makefile Log message: This needs devel/boost as BUILD_DEPENDS. ok aja@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/12 02:27:43 Modified files: devel/py-virtualenv: Makefile distinfo devel/py-virtualenv/pkg: PLIST Log message: Update py-virtualenv to 1.11.6, from frantisek holop CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/12 02:36:12 Modified files: devel/cmake : Makefile cmake.port.mk distinfo Added files: devel/cmake/patches: patch-Source_cmGlobalNinjaGenerator_cxx patch-Source_cmGlobalNinjaGenerator_h patch-Source_cmNinjaNormalTargetGenerator_cxx patch-Source_cmNinjaTargetGenerator_cxx Log message: Bugfixing update to cmake-3.0.2 Use Ninja-1.5's console pool to have visible output during long-running tasks which produce status updates on the console (such as test suites) CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/12 03:52:45 Modified files: sys/arch/i386/include: cpu.h sys/arch/amd64/include: cpu.h sys/arch/i386/i386: mp_setperf.c sys/arch/amd64/amd64: mp_setperf.c Log message: Remove the code that attempts to synchronize P-state transitions between CPUs. Spinning inside an IPI handler is generally a bad idea as it is very hard to avoid deadlocks. As far as I can tell the synchronization isn't necessary. Multi-core CPUs have hardware mechanisms to do the appropropriate coordination between cores and coordination between sockets isn't necessary either. This seems to fix the various hangs and suspend/resume failures that people have been seeing when running apmd -A or apmd -C. Tested by many. ok kspillner@, mpi@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 05:09:57 Modified files: x11/gnome/empathy: Makefile distinfo Log message: update to empathy-3.12.6 CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/09/12 05:53:57 Modified files: sys/dev/pci : pcidevs_data.h Log message: Something went amiss in last pcidevs_data.h generation/commit. Regen and unbreak kernel compiles. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/12 06:39:47 Modified files: devel/llvm : Makefile Added files: devel/llvm/patches: patch-tools_clang_lib_CodeGen_CGDebugInfo_cpp Log message: r205331 Debug info: fix a crash when emitting IndirectFieldDecls, which were previously not handled at all. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/12 06:47:24 Modified files: lang/clang : clang.port.mk Log message: bump revision. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:24:30 Modified files: security/gpgme : Makefile Added files: security/gpgme/patches: patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: Security fix for CVE-2014-35640 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:25:33 Modified files: security/gpgme : Tag: OPENBSD_5_6 Makefile Added files: security/gpgme/patches: Tag: OPENBSD_5_6 patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: Security fix for CVE-2014-35640 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:26:57 Modified files: security/gpgme/patches: patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: fix CVE number CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:27:13 Modified files: security/gpgme/patches: Tag: OPENBSD_5_6 patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: fix CVE number CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:28:47 Modified files: security/gpgme : Tag: OPENBSD_5_5 Makefile Added files: security/gpgme/patches: Tag: OPENBSD_5_5 patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: Security fix for CVE-2014-3564 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/12 08:22:53 Modified files: security/yubikey-personalization-gui: Makefile distinfo Log message: update to yubikey-personalization-gui-3.1.15 CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/12 10:02:40 Modified files: sys/net80211 : ieee80211_ioctl.c ieee80211_node.c ieee80211_node.h Log message: Remove cached 802.11 nodes in IEEE80211_STA_CACHE state (these are nodes which have been seen but which haven't otherwise interacted with us), fixing a problem where old cached nodes are seen when doing a scan. From Marcin Piotr Pawlowski, feedback stsp@ ok kspillner@ dcoppa@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/12 11:14:12 Modified files: mail/p5-Mail-SPF: Makefile distinfo mail/p5-Mail-SPF/patches: patch-Build_PL Log message: bugfix update to 2.9.0 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/12 11:18:44 Modified files: net/transmission: Makefile Log message: Enable the uTP support. According to bug reports I can find this was fixed for strict alignnment archs around 2.74. Tested on sparc64 by me and naddy@. ok naddy@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/12 12:42:37 Modified files: lang/php/5.3 : Tag: OPENBSD_5_5 Makefile distinfo Log message: MFC PHP security update to 5.3.29; includes security fix for CVE-2014-3981 and CVE-2014-3515 ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/12 12:42:54 Modified files: lang/php/5.3 : Tag: OPENBSD_5_6 Makefile distinfo lang/php/5.3/patches: Tag: OPENBSD_5_6 patch-sapi_fpm_php-fpm_conf_in Log message: MFC PHP security update to 5.3.29; includes security fix for CVE-2014-3981 and CVE-2014-3515 ok jasper@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/12 14:38:07 Modified files: www/tt-rss : Makefile www/tt-rss/pkg : README Log message: Add a note about cleaning the caches when encountering issues after an upgrade. CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/12 14:39:05 Modified files: security/py-paramiko: Makefile distinfo security/py-paramiko/pkg: PLIST Log message: Update py-paramiko to 1.14.1 with feedback from sthen@ OK aja@ benoit@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/12 14:41:53 Modified files: devel/py-six : Makefile distinfo Log message: Update to 1.8.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/12 14:46:46 Modified files: sysutils/ansible: Makefile Added files: sysutils/ansible/patches: patch-library_packaging_openbsd_pkg Log message: Use -z when invoking pkg_add in openbsd_pkg module, so that one can use for example php-fpm-5.4* and ensure the correct version is installed. Previously, one had to specify the exact version, or ansible would fail since there were alternatives. https://github.com/ansible/ansible/issues/8990 ok rpe@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/12 16:04:18 Modified files: lib/libc/arch/sparc64/fpu: fpu_sqrt.c Log message: Fix some bugs in the _Qp_sqrt implementation that would limit the accuracy of the result in many cases. From FreeBSD allbeit with some changes to keep the coding style consistent. This fixes the asinhl(4) issue reported by dickman@ on tech@. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/12 16:07:24 Modified files: lib/libm : Makefile Added files: lib/libm/arch/sparc64: e_sqrtl.c Log message: Provide a sparc64 version of sqrtl(3) that simply calls _Qp_sqrt. The generic sqrtl(3) is not nearly accurate enough for quad-precision floating point. CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/12 17:15:53 Modified files: . : 56.html Log message: Mention disklabel(8) enhancement, MSDOS timestamp fix in 5.6. CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/12 17:37:03 Modified files: . : 56.html Log message: Mention msgbuf_write(3) fixes in 5.6. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/12 19:09:31 Modified files: share/man/man3 : queue.3 Log message: Retire the CIRCLEQ_* and *_END macros here, noting why they were deprecated. kick started by Gre'goire Duche^ne ok millert@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/12 22:56:28 Modified files: audio/portaudio-svn: Makefile distinfo audio/portaudio-svn/patches: patch-configure_in audio/portaudio-svn/pkg: PLIST Log message: Update to portaudio-svn-1919. ok brad@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 23:00:05 Modified files: graphics/colord: Makefile distinfo Log message: Update to colord-1.2.3. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/09/12 23:05:51 Modified files: games/openxcom/patches: patch-CMakeLists_txt Log message: patch was committed upstream CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 23:09:03 Modified files: sysutils/salt : Makefile Log message: Committed upstream. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/12 23:11:27 Modified files: sys/dev/pci : pcidevs Log message: Add HP Gen9 Smart Array/Smart HBA devices and some devices from submitted dmesgs. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/12 23:12:43 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/12 23:17:48 Modified files: share/man/man4 : ciss.4 sys/dev/pci : ciss_pci.c Log message: Add HP Gen9 Smart Array/Smart HBA devices. Untested, but there doesn't seem to have been any changes to the firmware interface so these should work without additional changes, as was the case with the last few generations. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/13 00:32:13 Modified files: share/man/man3 : Makefile Log message: zap MLINK for *Q_END and CIRCLEQ*; CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/13 01:47:02 Modified files: sysutils/mcollective-plugins/puppet-agent: Makefile distinfo Log message: update to mcollective-puppet-agent-1.8.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 02:05:35 Removed files: www/bacula-web : Makefile distinfo www/bacula-web/patches: patch-application_config_config_php_sample www/bacula-web/pkg: DESCR PLIST README Log message: Drop bacula-web; there is no added value in packaging this; side note: there's a nice other webapp that people may want to try: baculastatus. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 02:05:54 Modified files: www : Makefile Log message: -bacula-web CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 02:06:11 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Register bacula-web removal. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/13 02:14:50 Modified files: distrib/sets/lists/comp: md.amd64 md.i386 mi Log message: cpuid.h is md not mi CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/13 02:18:23 Modified files: games/openxcom : Makefile games/openxcom/patches: patch-src_Engine_Zoom_cpp Removed files: games/openxcom/files: cpuid.h Log message: use the system cpuid.h CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/13 03:02:19 Modified files: distrib/sets/lists/base: md.alpha md.armish md.armv7 md.aviion md.hppa md.hppa64 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus Log message: remove invalid cpuid.ph entries CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/13 03:34:48 Modified files: misc/rlwrap : Makefile distinfo misc/rlwrap/patches: patch-Makefile_in patch-filters_Makefile_in Log message: update to rlwrap-0.41 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:08:43 Log message: Import qt4-qtsolutions-singleinstance-20110722 The QtSingleApplication component provides support for applications that can be only started once per user. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140913 N ports/devel/qt4-qtsolutions-singleinstance/distinfo N ports/devel/qt4-qtsolutions-singleinstance/Makefile N ports/devel/qt4-qtsolutions-singleinstance/pkg/DESCR N ports/devel/qt4-qtsolutions-singleinstance/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:09:18 Modified files: devel : Makefile Log message: +qt4-qtsolutions-singleinstance CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:10:24 Log message: Import lumina-0.6.2.1409847349 Lumina-DE is a lightweight, BSD licensed desktop environment. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140913 N ports/x11/lumina/distinfo N ports/x11/lumina/Makefile N ports/x11/lumina/patches/patch-libLumina_LuminaXDG_cpp N ports/x11/lumina/patches/patch-lumina-config_mainUI_cpp N ports/x11/lumina/patches/patch-lumina-desktop_SettingsMenu_cpp N ports/x11/lumina/patches/patch-libLumina_libLumina_pro N ports/x11/lumina/pkg/DESCR N ports/x11/lumina/pkg/PLIST N ports/x11/lumina/files/LuminaOS-OpenBSD.cpp No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:10:54 Modified files: x11 : Makefile Log message: +lumina CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 06:00:52 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: In PKG mode, cope with non-default PREFIX (e.g. /var/www/...). CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/13 07:04:09 Modified files: editors/dhex : Makefile distinfo Log message: Update to 0.68 ok Thanasoulas Spiros (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/13 07:11:17 Modified files: archivers/quazip: Makefile distinfo Log message: Update to 0.7 CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/09/13 08:02:19 Modified files: faq : current.html Log message: Mention removal of procfs. From Mark Patruck CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/13 08:05:25 Modified files: net/epic4 : Makefile distinfo net/epic4/patches: patch-Makefile_in patch-source_irc_c net/epic4/pkg : PLIST Log message: Update to epic4 2.10.5. ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/13 08:30:53 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.9.14 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/13 09:02:54 Modified files: net/curl : Tag: OPENBSD_5_5 Makefile Added files: net/curl/patches: Tag: OPENBSD_5_5 patch-lib_cookie_c patch-tests_data_test1105 patch-tests_data_test31 patch-tests_data_test61 patch-tests_data_test8 Log message: Security fixes for CVE-2014-3613 (libcurl cookie leak with IP address as domain) CVE-2014-3620 (libcurl cookie leak for TLDs) CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/13 09:09:24 Modified files: infrastructure/mk: bsd.port.mk net/curl : Makefile Log message: add default support for extracting *.tar.lzma; ok juanfra@ CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2014/09/13 09:13:44 Modified files: share/man/man5 : bsd.port.mk.5 Log message: document default EXTRACT_CASES support for *.tar.lzma (reminded by juanfra@) and add more bzip2 cases CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/13 10:06:37 Modified files: bin/md5 : md5.c lib/libevent : event-internal.h sbin/pfctl : parse.y pfctl_optimize.c sys/arch/alpha/dev: bus_dma.c sys/arch/arm/arm: bus_dma.c sys/arch/aviion/aviion: bus_dma.c sys/arch/loongson/loongson: bus_dma.c sys/arch/octeon/octeon: bus_dma.c sys/arch/sgi/sgi: bus_dma.c sys/arch/vax/vax: bus_dma.c sys/dev : softraid.c softraid_crypto.c sys/dev/ic : if_wi_hostap.c qla.c sys/dev/pci : maestro.c pci.c qle.c sys/dev/pci/drm: drm_drv.c drm_irq.c sys/kern : spec_vnops.c subr_extent.c sysv_sem.c vfs_cache.c vfs_subr.c sys/scsi : ses.c usr.bin/cdio : rip.c usr.sbin/ftp-proxy: ftp-proxy.c usr.sbin/ldapd : namespace.c usr.sbin/ldomctl: config.c mdstore.c Log message: Replace all queue *_END macro calls except CIRCLEQ_END with NULL. CIRCLEQ_* is deprecated and not called in the tree. The other queue types have *_END macros which were added for symmetry with CIRCLEQ_END. They are defined as NULL. There's no reason to keep the other *_END macro calls. ok millert@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:23:05 Modified files: devel/ptlib : Makefile Added files: devel/ptlib/patches: patch-Makefile Log message: Do not run configure twice; spotted by espie@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:28:47 Modified files: infrastructure/mk: gnu.port.mk Log message: When using GNU configure, always run with --disable-gtk-doc unless textproc/gtk-doc is in BUILD_DEPENDS and force ac_cv_path_GTKDOC_* to null. Even when --disable-gtk-doc is passed, if the gtk-doc tools are present at configure time, they will be run (at a time where the gtk-doc package may have been removed; for e.g. during a bulk). This is what we've been doing under x11/gnome for a while now. sthen@ espie@ and jasper@ agree CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:29:39 Modified files: x11/gnome : gnome.port.mk Log message: MODGNOME_TOOLS=gtk-doc is gone now CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:30:05 Modified files: share/man/man5 : port-modules.5 Log message: Tweak after recent gnome MODULE change. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:36:54 Modified files: audio/libcanberra: Makefile audio/libgpod : Makefile devel/harfbuzz : Makefile geo/geoclue : Makefile graphics/cairo : Makefile graphics/colord: Makefile graphics/colord-gtk: Makefile graphics/gegl : Makefile graphics/gimp/stable: Makefile inputmethods/ibus: Makefile multimedia/gstreamer-0.10: Makefile.inc multimedia/gstreamer1: Makefile.inc multimedia/ogmrip: Makefile net/bro : Makefile net/libnice : Makefile net/libpcapnav : Makefile net/loudmouth : Makefile net/telepathy : Makefile.inc print/poppler : Makefile productivity/rubrica2: Makefile security/gnutls: Makefile security/libtasn1: Makefile security/p11-kit: Makefile sysutils/polkit: Makefile sysutils/upower: Makefile textproc/gtkspell: Makefile textproc/ots : Makefile textproc/rasqal: Makefile textproc/redland: Makefile x11/dbus-glib : Makefile x11/libfm : Makefile x11/menu-cache : Makefile x11/spice-gtk : Makefile x11/xfce4/libxfcegui4: Makefile x11/xfce4/tumbler: Makefile Log message: --disable-gtk-doc is handled by the infrastructure now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 11:17:30 Modified files: devel/qt4-qtsolutions-singleinstance: Makefile devel/qt4-qtsolutions-singleinstance/pkg: DESCR Log message: fmt(1) CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/13 11:33:21 Modified files: share/man/man4 : bge.4 lge.4 msk.4 nge.4 re.4 sk.4 ti.4 Log message: Don't say or imply that using ifconfig has anything to do with whether the hardware can transmit or receive jumbo frames. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/13 12:09:22 Modified files: audio/squeezecenter: Makefile benchmarks/sysbench: Makefile databases : Makefile databases/dbic++: Makefile databases/hs-HDBC-mysql: Makefile databases/libdbi-drivers: Makefile databases/luadbi: Makefile databases/mydumper: Makefile databases/mysqlcc: Makefile databases/p5-Class-DBI-mysql: Makefile databases/p5-DBD-mysql: Makefile databases/py-mysql: Makefile databases/ruby-do_mysql: Makefile databases/ruby-mysql: Makefile databases/ruby-mysql2: Makefile databases/ruby-swift-db-mysql: Makefile devel/mysql++ : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm editors/calligra: Makefile games/rftg : Makefile graphics/digikam-kde4: Makefile lang/io : Makefile lang/php : Makefile.inc lang/php/5.3 : Makefile lang/php/5.4 : Makefile lang/php/5.5 : Makefile mail/bmf : Makefile mail/courier-authlib: Makefile mail/dovecot : Makefile mail/dspam : Makefile mail/exim : Makefile mail/perdition : Makefile mail/postfix : Makefile.inc mail/postfix/snapshot: Makefile mail/postfix/stable: Makefile mail/zarafa/zarafa: Makefile net/freeradius : Makefile net/gnugk : Makefile net/icinga/core2: Makefile net/jabberd : Makefile net/monitoring-plugins: Makefile net/nedi : Makefile net/pmacct : Makefile net/poco : Makefile net/powerdns : Makefile net/pure-ftpd : Makefile net/rtg : Makefile net/zabbix : Makefile productivity/akonadi: Makefile security/cvechecker: Makefile security/cyrus-sasl2: Makefile security/hydra : Makefile security/samhain: Makefile sysutils/bacula: Makefile sysutils/cfengine: Makefile sysutils/collectd: Makefile sysutils/rsyslog: Makefile telephony/asterisk: Makefile telephony/kamailio: Makefile tests/portbump/t2: Makefile Makefile.inc textproc/redland: Makefile textproc/sphinx: Makefile www/cherokee : Makefile www/lighttpd : Makefile www/mod_auth_mysql: Makefile www/mod_log_sql: Makefile www/mod_mp3 : Makefile www/sope : Makefile www/squidguard : Makefile x11/gnome/libgda: Makefile x11/gnustep/sqlclient: Makefile x11/qt3 : Makefile x11/qt4 : Makefile Log message: Switch from using MySQL to using MariaDB attempt #2. MariaDB is a drop-in replacement. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/13 13:57:07 Modified files: net/curl : Tag: OPENBSD_5_6 Makefile Added files: net/curl/patches: Tag: OPENBSD_5_6 patch-lib_cookie_c patch-tests_data_test1105 patch-tests_data_test31 patch-tests_data_test61 patch-tests_data_test8 Log message: Security fixes for CVE-2014-3613 (libcurl cookie leak with IP address as domain) CVE-2014-3620 (libcurl cookie leak for TLDs) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/13 14:10:12 Modified files: lib/libc/stdlib: strtoimax.c strtol.c strtoll.c strtoul.c strtoull.c strtoumax.c Log message: Make sure that the following functions return 0 and EINVAL as required by the C standard when called with an invalid base: strtoll(), strtoimax(), strtoul(), strtoull(), and strtoumax(). Same behaviour for strtoq() and strtouq() even though not standardized. No functional change in strtol(), it was the only one already correct. While here, simplify the conditional expression for checking the base and sync whitespace and comments among the six files. ok millert@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/13 14:40:20 Modified files: devel/nasm : Makefile distinfo Log message: Update to nasm 2.11.05. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:00:16 Modified files: archivers/lzip/clzip: Makefile distinfo Log message: Update to clzip-1.6 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:03:49 Modified files: archivers/lzip/lzip: Makefile distinfo Log message: Update to lzip-1.16 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:06:25 Modified files: archivers/lzip/lziprecover: Makefile distinfo Log message: Update to lziprecover-1.16 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:12:40 Modified files: archivers/lzip/lzlib: Makefile distinfo archivers/lzip/lzlib/patches: patch-Makefile_in archivers/lzip/lzlib/pkg: PLIST Log message: Update to lzlib-1.6 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/13 17:38:24 Modified files: regress/usr.sbin/syslogd: Makefile Proc.pm Syslogd.pm args-client-native.pl args-client-udp-nodns.pl args-client-udp.pl args-client-udp4-nodns.pl args-client-udp4.pl args-client-udp6-nodns.pl args-client-udp6.pl args-client-unix.pl args-localhost.pl args-maxhostlen.pl args-maxloghostlen.pl args-maxportlen.pl args-maxunix.pl args-only4.pl args-only6.pl args-proto-invalid.pl args-proto-udp.pl args-proto-udp4-host6.pl args-proto-udp4-only6.pl args-proto-udp4.pl args-proto-udp6-host4.pl args-proto-udp6-only4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl funcs.pl syslogd.pl Added files: regress/usr.sbin/syslogd: Syslogc.pm args-memory-clear.pl args-memory-flags.pl args-memory-list.pl args-memory-overflow-cont.pl args-memory-overflow-flags.pl args-memory-overflow.pl args-memory-read-clear.pl args-memory-read-cont.pl args-memory-read.pl Log message: Add tests for syslogd's memory buffer and read it with syslogc. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/13 17:49:58 Modified files: share/man/man4 : stge.4 Log message: Don't bother mentioning an unimplemented feature in a BUGS section. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/13 18:17:09 Modified files: share/man/man4 : bge.4 bnx.4 em.4 ixgb.4 lge.4 msk.4 nge.4 re.4 sk.4 ti.4 vge.4 Log message: - Don't capitalize jumbo. - Don't try to keep track of jumbo frame sizes in the pages. Users can use `ifconfig hwfeatures' to determine what the hardware supports. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/09/13 22:58:42 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update youtube-dl to 2014.09.12. Adds extractors for: - dbtv - hostingbulk - moevideo - nosvideo - vgtv Found out about the update through portroach thanks to jasper@! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 23:58:07 Modified files: net/zabbix : Makefile net/zabbix/pkg : README-server security/cvechecker: Makefile security/cvechecker/pkg: README security/samhain: Makefile security/samhain/pkg: README-server sysutils/bacula: Makefile sysutils/bacula/pkg: README-server www/puppet-dashboard: Makefile www/puppet-dashboard/pkg: README www/statusnet : Makefile www/statusnet/pkg: README www/owncloud : Makefile www/owncloud/pkg: README Log message: MySQL -> MariaDB in READMEs. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/14 00:58:02 Modified files: x11/lumina : Makefile x11/lumina/patches: patch-libLumina_LuminaXDG_cpp patch-libLumina_libLumina_pro patch-lumina-config_mainUI_cpp patch-lumina-desktop_SettingsMenu_cpp Added files: x11/lumina/patches: patch-lumina-config_lumina-config_pro patch-lumina-desktop_lumina-desktop_pro patch-lumina-fm_lumina-fm_pro patch-lumina-open_lumina-open_pro patch-lumina-screenshot_lumina-screenshot_pro Log message: Fix path to lrelease. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/09/14 03:38:32 Modified files: devel/udis86 : Makefile distinfo devel/udis86/pkg: PLIST Log message: Update udis86 to version 1.7.2 The manual changed format to HTML and luckly ajacoutot@ helped me make the transition without the use of patches, thanks! Found-by portroach from jasper@ Okay ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/14 03:43:49 Modified files: x11/gnome/librsvg: Makefile distinfo Log message: Update to librsvg-2.40.4. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/14 08:17:27 Modified files: sys/arch/amd64/amd64: bios.c cpu.c db_disasm.c db_interface.c db_memrw.c dkcsum.c est.c gdt.c i8259.c identcpu.c intr.c k1x-pstate.c lapic.c mem.c powernow-k8.c via.c sys/arch/i386/i386: apm.c bios.c cpu.c db_disasm.c db_interface.c db_memrw.c dkcsum.c esm.c est.c gdt.c k1x-pstate.c lapic.c longrun.c mem.c p4tcc.c powernow-k7.c powernow-k8.c powernow.c via.c sys/arch/i386/pci: ali1543.c elan520.c ichpcib.c piixpcib.c sys/compat/common: compat_dir.c sys/compat/linux: linux_file64.c linux_ioctl.c linux_ipc.c sys/crypto : criov.c crypto.c sys/ddb : db_access.c db_break.c db_elf.c db_examine.c db_expr.c db_input.c db_lex.c db_output.c db_print.c db_run.c db_sym.c db_trap.c db_variables.c db_watch.c db_write_cmd.c sys/dev : audio.c cninit.c cons.c midi.c radio.c softraid.c softraid_crypto.c softraid_raid0.c softraid_raid1.c softraid_raid5.c softraid_raid6.c video.c vscsi.c sys/dev/acpi : acpibat.c acpibtn.c acpicpu.c acpiec.c acpiprt.c acpipwrres.c acpisony.c acpithinkpad.c acpitoshiba.c dsdt.c sys/dev/ata : ata_wdc.c atascsi.c wd.c sys/dev/atapiscsi: atapiscsi.c sys/dev/cardbus: cardbus.c ehci_cardbus.c if_dc_cardbus.c if_xl_cardbus.c ohci_cardbus.c uhci_cardbus.c sys/dev/eisa : aha1742.c uha_eisa.c sys/dev/ic : acx.c adv.c adw.c aic6360.c aic79xx_openbsd.h aic7xxx_openbsd.h ami.c an.c bha.c bwi.c cac.c ciss.c com.c cy.c if_wi.c if_wi_hostap.c lpt.c malo.c mfi.c mpi.c ncr53c9x.c pckbc.c qla.c qlw.c sili.c twe.c uha.c wdc.c xl.c sys/dev/isa : ad1848.c aha.c aic_isa.c ess.c fd.c gscsio.c gus.c gus_isa.c gus_isapnp.c ics2101.c isadma.c mpu401.c mpu_isa.c mpu_isapnp.c pas.c pcppi.c sb.c sb_isa.c sb_isapnp.c sbdsp.c seagate.c spkr.c uha_isa.c wds.c wss.c wss_isa.c wss_isapnp.c ym.c ym_isapnp.c sys/dev/microcode/adw: adwmcode.c sys/dev/mii : eephy.c mii_physubr.c sys/dev/onewire: onewire.c owctr.c owid.c owsbm.c owtemp.c sys/dev/pci : glxpcib.c if_art.c if_lmc.c if_myx.c if_san_common.c if_san_obsd.c if_san_xilinx.c pci.c sys/dev/pci/bktr: bktr_audio.c bktr_tuner.c sys/dev/pcmcia : com_pcmcia.c if_malo.c wdc_pcmcia.c sys/dev/puc : com_puc.c sys/dev/sdmmc : sdmmc.c sdmmc_io.c sdmmc_scsi.c sys/dev/wscons : wsdisplay.c wsevent.c sys/isofs/cd9660: cd9660_node.c cd9660_util.c cd9660_vnops.c sys/kern : kern_lkm.c kern_lock.c kern_malloc.c kern_physio.c kern_sensors.c kern_tc.c kern_watchdog.c kern_xxx.c subr_autoconf.c subr_disk.c subr_evcount.c subr_extent.c subr_pool.c sysv_ipc.c tty_conf.c tty_endrun.c tty_msts.c tty_nmea.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c uipc_socket2.c vfs_cluster.c vfs_default.c sys/miscfs/deadfs: dead_vnops.c sys/miscfs/fifofs: fifo_vnops.c sys/miscfs/fuse: fusebuf.c sys/msdosfs : msdosfs_denode.c sys/net80211 : ieee80211.c ieee80211_crypto.c ieee80211_input.c ieee80211_ioctl.c ieee80211_node.c ieee80211_output.c ieee80211_pae_input.c ieee80211_pae_output.c ieee80211_proto.c sys/netinet : igmp.c ip_ether.c ip_gre.c ip_icmp.c ip_ipip.c ip_ipsp.c tcp_usrreq.c udp_usrreq.c sys/nfs : nfs_boot.c nfs_debug.c nfs_node.c nfs_srvcache.c nfs_subs.c nfs_vnops.c sys/ntfs : ntfs_ihash.c ntfs_subr.c sys/scsi : cd.c ch.c mpath.c mpath_emc.c mpath_hds.c mpath_rdac.c mpath_sym.c safte.c scsi_base.c sd.c ses.c st.c sys/ufs/ext2fs : ext2fs_alloc.c ext2fs_balloc.c ext2fs_readwrite.c sys/ufs/ffs : ffs_alloc.c ffs_vnops.c sys/ufs/ufs : ufs_dirhash.c ufs_ihash.c ufs_inode.c ufs_quota_stub.c ufs_vfsops.c sys/uvm : uvm_amap.c uvm_anon.c uvm_aobj.c uvm_device.c uvm_init.c uvm_io.c uvm_km.c uvm_object.c uvm_pager.c uvm_pdaemon.c uvm_pmemrange.c uvm_swap_encrypt.c uvm_user.c Log message: remove uneeded proc.h includes ok mpi@ kspillner@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/14 08:32:44 Modified files: lib/libc/stdlib: strtol.3 strtoul.3 Log message: Do not claim that empty numbers set EINVAL, our implementation doesn't. Mention that invalid bases do set EINVAL (as required by POSIX); this part of the change uses part of an earlier patch by millert@. Minor mdoc(7) cleanup and sync between the two pages while here. Feedback and ok jmc@ and millert@. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/14 11:50:51 Modified files: faq : faq6.html Log message: updated. website no longer lists supported devices on popular platforms (yay!). While here, update a few other things -- modern hw is enumerated by order of bus probing, make it clear quirky ISA stuff is unusual. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/14 12:40:49 Modified files: sys/arch/sparc64/fpu: fpu_sqrt.c Log message: Fix some bugs in the fpu_sqrt implementation that would limit the accuracy of the result in many cases. From FreeBSD allbeit with some changes to keep the coding style consistent. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/14 12:59:18 Modified files: sys/arch/hppa/conf: GENERIC sys/arch/macppc/conf: GENERIC RAMDISK sys/arch/sgi/conf: GENERIC-IP27 GENERIC-IP30 GENERIC-IP32 RAMDISK-IP27 RAMDISK-IP30 RAMDISK-IP32 Log message: Clean up isp(4) from kernel configs with the new drivers already added. The new drivers match at a higher priority. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/14 13:02:43 Modified files: sys/arch/sparc64/conf: GENERIC RAMDISK Log message: Add the ne(4) NE2000 PCI frontend. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/14 13:44:20 Modified files: usr.bin/mandoc : cgi.c man.cgi.8 Log message: Support backslash-escaping of white space in the query expression, to be more similar to apropos(1) called from the shell. Missing feature reported by Marcus MERIGHI on misc@. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/09/14 14:38:04 Modified files: devel/udis86 : Makefile Log message: Forgot to bump the major in the shared library. Kindly reminded by sthen@, thanks! Okay sthen@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/14 15:01:52 Log message: Import multimedia/sfml, requested by and ok bcallah@ SFML is a portable and easy to use multimedia API written in C++. You can see it as a modern, object-oriented alternative to SDL. SFML is composed of several packages to perfectly suit your needs. You can use SFML as a minimal windowing system to interface with OpenGL, or as a fully-featured multimedia library for building games or interactive programs. Status: Vendor Tag: pascal Release Tags: pascal_20140914 N ports/multimedia/sfml/Makefile N ports/multimedia/sfml/distinfo N ports/multimedia/sfml/patches/patch-cmake_Config_cmake N ports/multimedia/sfml/patches/patch-include_SFML_Window_WindowHandle_hpp N ports/multimedia/sfml/patches/patch-include_SFML_Config_hpp N ports/multimedia/sfml/patches/patch-include_SFML_OpenGL_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_Linux_JoystickImpl_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_GlContext_cpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_InputImpl_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_JoystickImpl_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_WindowImpl_cpp N ports/multimedia/sfml/patches/patch-src_SFML_System_CMakeLists_txt N ports/multimedia/sfml/patches/patch-src_SFML_Window_Linux_WindowImplX11_cpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_CMakeLists_txt N ports/multimedia/sfml/pkg/DESCR N ports/multimedia/sfml/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/14 15:02:34 Modified files: multimedia : Makefile Log message: sync CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/14 16:44:47 Modified files: bin/dd : args.c Log message: Error out when negative values are given for sizes on the command line. Do not error out when the maximum permissible value is given, but only when it is exceeded. Patch from William Orr using feedback from tedu@. ok millert@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/14 17:05:05 Log message: Import editors/moe ok landry@ jturner@ GNU Moe is a powerful, 8-bit clean, console text editor for ISO-8859 and ASCII character encodings. It has a modeless, user-friendly interface, online help, multiple windows, unlimited undo/redo capability, unlimited line length, global search/replace (on all buffers at once), block operations, automatic indentation, word wrapping, filename completion, directory browser, duplicate removal from prompt histories, delimiter matching, etc. Moe tries to rationalize the keyboard commands. The Alt key is used for harmless commands like cursor movements and scrolling. The Control key is used for more "dangerous" commands like copying text blocks, deleting lines, or exiting. The Tab key is used for filename completion and also shows/hides the directory browser when moe asks for a filename to save or load. In any case, the unlimited undo/redo capability of moe makes very difficult to accidentally cause an irreparable damage to your files. Moe uses the function keys, so that the most frequent commands can be issued with only one finger. The function key F1 shows the online help, and F10 allows you to change the options. Status: Vendor Tag: bcallah Release Tags: bcallah_20140914 N ports/editors/moe/Makefile N ports/editors/moe/distinfo N ports/editors/moe/patches/patch-Makefile_in N ports/editors/moe/pkg/DESCR N ports/editors/moe/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/14 17:05:41 Modified files: editors : Makefile Log message: +moe CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/14 17:36:12 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/patches: patch-dodo_py patch-install_py graphics/birdfont/pkg: PLIST Log message: Mostly bugfix update to 1.3 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/14 23:51:24 Modified files: lib/libc/sys : sigaction.2 Log message: Mention that SIGTHR is both local and weird "seems fair" schwarze@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:03:39 Modified files: lib/libc/asr : getnetnamadr_async.c Log message: Use _PATH_NETWORKS for "/etc/networks" ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:12:19 Modified files: lib/libc/db/btree: bt_open.c lib/libc/db/hash: hash_page.c Log message: Pass O_CLOEXEC to open() or mkostemp() instead of setting FD_CLOEXEC afterwards ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:15:48 Modified files: lib/libc/asr : asr.c getaddrinfo_async.c gethostnamadr_async.c getnetnamadr_async.c lib/libc/gen : fstab.c getcap.c getgrent.c getgrouplist.c getttyent.c getusershell.c lib/libc/locale: setrunelocale.c lib/libc/net : ethers.c getnetent.c getprotoent.c getservent.c ruserok.c lib/libc/rpc : getrpcent.c Log message: When fopen()ing internal to libc (the API doesn't support the use of the resulting FILE *), then pass fopen() the 'e' mode letter to mark it close-on-exec. ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:18:36 Modified files: lib/libc/gen : signal.3 lib/libc/sys : sigaction.2 Log message: We missed a hyphen in 'async-signal-safe' Noted by Jean-Philippe Ouellet (jean-philippe (at) ouellet.biz) CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 00:29:56 Modified files: www/chromium : Makefile www/chromium/patches: patch-build_common_gypi Log message: use GPU accelerated cross process image transport on openbsd as well CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 01:06:29 Modified files: devel/vte3 : Makefile devel/vte3/pkg : PLIST Log message: define and use API_V to reduce future diffs CVSROOT: /cvs Module name: ports Changes by: jmatthew@cvs.openbsd.org 2014/09/15 01:14:21 Modified files: databases/riak : Makefile Log message: disable gtest usage so it doesn't break bulk builds, as reported by naddy and espie. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 01:17:50 Modified files: x11/remmina : Makefile Log message: fix lie in COMMENT CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/15 02:00:27 Modified files: usr.sbin/httpd : server_http.c Log message: Make the HTTP version mandatory and abort if it is missing in the request. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 02:05:08 Modified files: x11/gnome/calculator: Makefile distinfo Log message: update to gnome-calculator-3.12.4 CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/15 02:06:11 Modified files: usr.sbin/relayd: relay_http.c Log message: Make the HTTP version mandatory and abort if it is missing in the request. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/15 02:16:21 Modified files: sys/arch/sparc64/dev: vdsk.c vnet.c Log message: Call ldc_send_unreliable() insteaf of duplicating the code to send an ldc packet. Rename vio_sendmsg() to vnet_sendmsg(). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 02:21:39 Modified files: misc/portroach : Makefile Added files: misc/portroach/patches: patch-Portroach_SQL_pm patch-portroach_pl patch-templates_reminder_mail Log message: backport fix from upstream git to unbreak sending mail CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 02:21:51 Modified files: net/telepathy/folks: Makefile distinfo Log message: update to folks-0.10.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/15 02:29:33 Modified files: databases/redis: Makefile distinfo databases/redis/patches: patch-sentinel_conf patch-src_scripting_c Log message: Bugfixing update to redis-2.8.15 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/15 02:31:12 Modified files: security/volatility: Makefile security/volatility/pkg: PLIST Log message: s/${MACHINE_ARCH}/amd64/ to fix packaging on !amd64 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/15 02:44:35 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in Log message: Bugfix update to mpd-0.18.14 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/15 03:37:55 Modified files: x11/ogre/patches: patch-Samples_Browser_CMakeLists_txt Log message: Link to upstream's changeset CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/15 05:46:55 Modified files: databases/hs-HDBC-mysql: Makefile Log message: missing bump after switch to MariaDB CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/15 06:00:04 Modified files: sys/dev/ic : mpi.c sys/dev/pci : mpi_pci.c Log message: mark the interrupt handler mpsafe, and drop the kernel lock in the scs_cmd paths. take it again when going back to other parts of the kernel. tested by and ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/15 06:07:58 Modified files: devel/mm-common: Makefile distinfo devel/mm-common/pkg: PLIST Log message: Update to mm-common-0.9.7. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/15 07:00:49 Modified files: app/cwm : client.c search.c xevents.c xutil.c Log message: use similiar style for client flags CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/15 08:22:07 Modified files: sys/dev/pci : ppb.c ppbreg.h Log message: Add generic support for bridges that support subtractive decoding. Fixes issues with pcmcia behind a ATI SB400 PCI bridge reported by Thierry Deval. ok mpi@ CVSROOT: /cvs Module name: www Changes by: bcallah@cvs.openbsd.org 2014/09/15 08:38:49 Modified files: . : events.html Log message: Was invited to give a talk at my university next month. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/15 09:11:35 Modified files: math/pari : Makefile distinfo math/pari/patches: patch-Configure math/pari/pkg : PLIST Added files: math/pari/patches: patch-src_test_dotest Log message: Update to pari 2.1.7, from Sebastien Marie (thanks!) Fixes readline support, correct tests target, and dont pickup emacs if installed. All tests pass and also Math::Pari tests. We cant update to 2.3 branch for obscure breakage with other things depending on it. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/15 09:18:16 Modified files: mail/courier-authlib: Makefile Log message: missing bump after switch to MariaDB CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 09:40:13 Modified files: mail/zarafa/zarafa: Makefile distinfo Log message: fix distfile checksum CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 09:55:22 Modified files: lang/php/5.5 : Tag: OPENBSD_5_6 Makefile distinfo Log message: security update to 5.5.16; ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 09:55:45 Modified files: lang/php/5.4 : Tag: OPENBSD_5_6 Makefile distinfo Log message: security update to 5.4.32; ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 10:00:25 Modified files: lang/php/5.4 : Tag: OPENBSD_5_5 Makefile distinfo Log message: security update to 5.4.30; ok jasper@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/15 11:10:45 Modified files: databases/mydumper: Makefile databases/mydumper/patches: patch-CMakeLists_txt patch-mydumper_c Added files: databases/mydumper/patches: patch-config_h_in Log message: mydumper is tocuhing internal MySQL API it should not be. upstream has disabled the binlog support until something can be done to fix it properly. "The real problem here is that no application should ever include sql_common.h or try to execute, the internal to libmysql functions, simple_command() or advanced_command() directly. The primary reason for this is that these functions are not safe for internal API or structure changes and may cause applications crashes between even minor versions of libmysql.a" https://bugs.launchpad.net/mydumper/+bug/1316001 ok giovanni@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/15 11:15:13 Modified files: devel/libsigc++-2: Makefile distinfo devel/libsigc++-2/pkg: PLIST Log message: Update to libsigc++-2.4.0. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/15 13:08:22 Modified files: libexec/rpc.rstatd: rstat_proc.c sbin/sysctl : sysctl.c sys/arch/hppa/hppa: autoconf.c sys/arch/hppa64/hppa64: autoconf.c sys/kern : kern_clock.c kern_sysctl.c tty.c sys/net : if_sl.c ppp_tty.c sys/sys : tty.h usr.bin/systat : cpu.c iostat.c pigs.c vmstat.c usr.bin/top : machine.c usr.bin/vmstat : dkstats.c vmstat.c usr.sbin/apmd : apmd.c usr.sbin/iostat: iostat.c Removed files: sys/sys : dkstat.h Log message: Remove non-standard header. It has not contained anything related to disk stastics for almost 17 years, and the remaining userland-visible defines duplicate those found in . Move the remaining _KERNEL defines to where they belong, and update all users to cope with this. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/15 13:24:16 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_Target_X86_X86ISelLowering_cpp Log message: r217410 Set trunc store action to Expand for all X86 targets. When compiling without SSE2, isTruncStoreLegal(F64, F32) would return Legal, whereas with SSE2 it would return Expand. And since the Target doesn't seem to actually handle a truncstore for double -> float, it would just output a store of a full double in the space for a float hence overwriting other bits on the stack. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/15 13:36:43 Modified files: usr.sbin/bind : Makefile.in Removed files: usr.sbin/bind : CHANGES COPYRIGHT FAQ FAQ.xml README README.OpenBSD usr.sbin/bind/docutil: HTML_COPYRIGHT MAN_COPYRIGHT Log message: Garbage collecting some further bits that are not necessary within the BIND directory and for Makefile.in removing some files that no longer exist for the distclean target. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/15 13:41:03 Modified files: devel/py-py : Makefile distinfo devel/py-py/pkg: PLIST Log message: Update to py-py-1.4.23. OK dcoppa@ CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/15 13:42:08 Modified files: devel/py-test : Makefile distinfo devel/py-test/pkg: PLIST Log message: Update to py-test-2.6.1. OK dcoppa@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 13:51:40 Modified files: textproc/p5-XML-Twig: Makefile distinfo textproc/p5-XML-Twig/patches: patch-Makefile_PL textproc/p5-XML-Twig/pkg: PLIST Log message: update to p5-XML-Twig-3.48 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 13:54:05 Modified files: devel/hs-failure: Makefile security/hs-cryptohash: Makefile audio/p5-POE-Component-Client-MPD: Makefile Log message: drop maintainership for i don't use these anymore CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/15 14:26:32 Modified files: etc : Makefile Log message: Ensure proper group ID for chio.conf example. Noted by and OK ajacoutot@ Positive feedback halex@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/15 14:34:15 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Fix logic error; we're out of IOs if we're not connected to the virtual disk server *or* if we've filled all the entries on the ring. CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/15 15:17:07 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/15 16:00:24 Modified files: sys/dev : rnd.c Log message: update comments to reflect chacha20. from Max Fillinger CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:25:57 Modified files: gnu/usr.sbin : Makefile Log message: Unlink sendmail from the build. ok krw@ ajacoutot@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:28:58 Modified files: etc : Makefile changelist crontab master.passwd rc rc.conf etc/mail : Makefile etc/mtree : 4.4BSD.dist Log message: Remove sendmail tentacles. ok krw@ ajacoutot@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:29:54 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:31:08 Modified files: usr.sbin/smtpd/smtpd: Makefile Log message: install sendmail.8 from smtpd now that sendmail is gone. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:34:32 Removed files: etc/mail : README access genericstable local-host-names relay-domains trusted-users virtusertable Log message: Remove sendmail specific files. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:35:25 Removed files: etc/mail : mailertable Log message: Remove sendmail specific files. CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:51:00 Modified files: faq : current.html Log message: Sendmail removed CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 18:05:41 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 18:19:31 Modified files: include : Makefile Log message: Missed this sendmail reference in the sendmail removal CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/15 20:28:35 Modified files: faq : faq6.html Log message: + 6.2.9 - Adding and Replacing NICs. Inspired by how easy this is on OpenBSD and what a nightmare it is on many other OSs. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/15 21:26:08 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: deprecate PR_DEBUG and MALLOC_DEBUG in pools. poked by kspillner@ ok miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/15 23:12:04 Modified files: sys/dev/pci : mpii.c Log message: mark the mpii interrupt handler as mpsafe, and drop the kernel lock in the scsi_cmd path and iopool backend. modelled on mfi and mpi. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 23:26:06 Modified files: distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/15 23:51:21 Modified files: security/libtasn1: Makefile distinfo Log message: Update to libtasn1-4.2. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 00:46:37 Modified files: sysutils/ruby-puppet/3: Makefile distinfo sysutils/ruby-puppet/3/patches: patch-lib_puppet_defaults_rb sysutils/ruby-puppet/3/pkg: PLIST Log message: - update to puppet-3.7.1 * https://docs.puppetlabs.com/puppet/3.7/reference/release_notes.html#puppet-371 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 00:52:47 Modified files: devel/p5-POE-Component-Supervisor: Makefile distinfo Removed files: devel/p5-POE-Component-Supervisor/patches: patch-lib_POE_Component_Supervisor_Handle_Proc_pm patch-t_04_global_restart_policy_t Log message: update to POE-Component-Supervisor-0.08 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 01:05:08 Modified files: x11/gnome/caribou: Makefile distinfo Log message: Update to caribou-0.4.15. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/16 01:14:14 Modified files: databases/py-redis: Makefile distinfo databases/py-redis/pkg: PLIST Log message: Update to py-redis-2.10.3 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/16 01:28:10 Modified files: sysutils/conky : Makefile sysutils/conky/patches: patch-src_openbsd_c Log message: unbreak with dkstat.h removal. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 02:12:27 Modified files: devel/libgit2/libgit2: Makefile distinfo Log message: update to libgit2-0.21.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 02:18:06 Modified files: devel/libgit2/libgit2-glib: Makefile distinfo devel/libgit2/libgit2-glib/pkg: PLIST Log message: update to libgit2-glib-0.0.22 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 02:18:07 Modified files: devel/libgit2/py-git2: Makefile distinfo devel/libgit2/py-git2/pkg: PLIST Removed files: devel/libgit2/py-git2/patches: patch-pygit2_ffi_py Log message: update to py-git2-0.21.3 CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/16 02:50:26 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: store explicit timestamps in generated plists. this prevents updates from fucking up mtime of new file, thus the "python exception" no longer prevents python files from being reordered. Note that this requires newish scaffolding in pkg_add proper. That scaffolding was committed prior to 5.6, in preparation for this change. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/16 02:51:38 Modified files: usr.sbin/pkg_add/OpenBSD: ArcCheck.pm Log message: if a @ts annotation is detected, wipe tarball timestamp. Archives will look as if all files were born in 1970. The useful side-effect is that meta-data for content-identical files WILL be identical as well. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 03:07:03 Modified files: mail/p5-Mail-SpamAssassin: Makefile net/nfsen : Makefile sysutils/ruby-facter: Makefile www/apache-httpd: Makefile www/apache-httpd-openbsd: Makefile www/xcache : Makefile sysutils/ruby-puppet/3: Makefile Log message: explicitly mark the few ports that don't build with FAKE_AS_ROOT=No CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 03:08:02 Modified files: infrastructure/mk: pkgpath.mk Log message: explicit path to perl to prevent gnu autoconf fucking up in ptlib okay aja@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 03:09:46 Modified files: lang/ruby : Makefile.inc databases/postgresql: Makefile devel/ptlib : Makefile Log message: turn on "always-wrap" for the 3 ports known to embed their install program in installed files. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 03:32:12 Modified files: sysutils/salt : Makefile Log message: Another missing TEST_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 03:56:07 Modified files: www/c-icap/c-icap: Makefile distinfo Log message: update to c-icap 0.3.4 CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/16 04:01:51 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: fix display of comments to use "say" properly. Prepare scaffolding to be able to chunk archives CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/16 04:07:00 Modified files: lang/ghc : Makefile Log message: Build ghc with '-fno-pie' on i386 ok kili@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:23:19 Modified files: sysutils/moreutils: Makefile distinfo Removed files: sysutils/moreutils/patches: patch-ifne_c Log message: update to moreutils 0.52; the ts timestamping filter gains the new -s option, which uses timestamps relative to the start of the program (compared to absolute timestamps as used by default, or incremental as selected with -i) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:32:39 Modified files: net/dnstop : Makefile distinfo net/dnstop/patches: patch-dnstop_c Log message: update to dnstop 20140915, which adds a "new-gtlds" filter, which shows only queries for doains ending with recently added generic TLDs which can be useful for tracking down hosts using internal names (maybe by relying on automatic qualification of names i.e. xy.prod -> xy.prod.example.com) that will conflict with new GTLDs. As the release notes put it, 'If you use short (not fully qualified) names internally you may be uknownlying[sic] relying on root (or other) name servers to return NXDOMAIN for them. If so, "you're gonna have a bad time."' CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:44:17 Modified files: www/haserl : Makefile distinfo Log message: SECURITY update to haserl 0.9.33, fixing various vulnerabilities including a heap overflow in sliding_buffer.c CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:44:37 Modified files: www/haserl : Tag: OPENBSD_5_6 Makefile distinfo Log message: SECURITY update to haserl 0.9.33, fixing various vulnerabilities including a heap overflow in sliding_buffer.c CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:44:58 Modified files: www/haserl : Tag: OPENBSD_5_5 Makefile distinfo Log message: SECURITY update to haserl 0.9.33, fixing various vulnerabilities including a heap overflow in sliding_buffer.c CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:46:22 Modified files: textproc/podofo: Makefile Log message: add a comment next to distname explaining why this isn't the latest upstream v CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/16 04:55:06 Modified files: faq : current.html Log message: typo s/enables/enable// CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/16 04:57:59 Modified files: faq : current.html Log message: zap stray


CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/16 04:59:17 Modified files: faq : current.html Log message: reorder
after previous CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 05:30:47 Modified files: mail/rcube-contextmenu: Makefile distinfo mail/rcube-contextmenu/pkg: PLIST Log message: update to rcube-contextmenu-2.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 05:55:04 Modified files: audio/beets : Makefile distinfo audio/beets/pkg: PLIST Log message: update to beets 1.3.7, take maintainer CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:02:05 Modified files: audio/mp3gain : Makefile distinfo audio/mp3gain/pkg: PLIST Log message: update to mp3gain 1.5.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:08:59 Modified files: audio/quodlibet: Makefile distinfo Log message: update to quodlibet-3.12, take maintainer CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:15:23 Modified files: databases/lbdb : Makefile distinfo databases/lbdb/patches: patch-Makefile_in patch-m_muttalias_sh_in Removed files: databases/lbdb/patches: patch-mutt_ldap_query_pl_in Log message: update to lbdb 0.39 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/16 06:24:26 Modified files: devel/vim-taglist: Makefile distinfo devel/vim-taglist/pkg: PLIST Log message: Update to 4.6. * Install into version agnostic share/vim/vimfiles instead of share/vim/vim74 * Install vim documentation tags into vim-taglist.tags and merge this file with other plugin's taglists using @exec-always. ok edd@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:35:18 Modified files: net/lftp : Makefile distinfo net/lftp/patches: patch-configure patch-src_Resolver_cc Log message: update to lftp 4.5.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:39:22 Modified files: games/xcowsay : Makefile distinfo games/xcowsay/pkg: PLIST Removed files: games/xcowsay/patches: patch-src_bubblegen_c Log message: update the xcowsay advanced textual alerting system for X11 to 1.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:45:21 Modified files: databases/xapian-core: Makefile www/xapian-omega: Makefile databases/p5-Search-Xapian: Makefile Log message: set PORTROACH for xapian's stable release numbering scheme, n..nn CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/16 06:58:58 Log message: Import vim-command-t. Fast, intuitive file opening in VIM OK chrisz@ Status: Vendor Tag: edd Release Tags: edd_20140916 N ports/devel/vim-command-t/Makefile N ports/devel/vim-command-t/distinfo N ports/devel/vim-command-t/patches/patch-ruby_command-t_watchman_c N ports/devel/vim-command-t/pkg/DESCR N ports/devel/vim-command-t/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/16 07:06:10 Modified files: devel : Makefile Log message: Link vim-command-t. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 07:10:46 Modified files: devel/vim-command-t: Makefile Log message: EXTRACT_SUFX defaults to .tar.gz CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/16 07:15:53 Modified files: devel/hgview : Makefile distinfo devel/hgview/patches: patch-setup_py devel/hgview/pkg: PLIST Removed files: devel/hgview/patches: patch-hgviewlib_curses_application_py Log message: Update hgview to 1.8.2. OK benoit@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 07:54:02 Modified files: devel/p5-Switch: Makefile distinfo Log message: update to Switch-2.17 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 08:01:42 Modified files: . : INDEX Log message: sync; 8883 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:02:53 Modified files: converters/p5-JSON-Any: Makefile distinfo Log message: update to p5-JSON-Any-1.36 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:23:46 Modified files: devel : Makefile Log message: -waf CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:25:02 Removed files: devel/waf : Makefile distinfo waf.port.mk devel/waf/patches: patch-waf-light patch-wscript devel/waf/pkg : DESCR PLIST Log message: if autoconf and scons had a child, it would've been 'waf'. 'nuf said. ok aja@ landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:25:17 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register waf removal CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:49:14 Modified files: converters/p5-Finance-Currency-Convert-XE: Makefile distinfo Log message: update to Finance-Currency-Convert-XE-0.25 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 09:01:48 Modified files: databases/iodbc: Makefile distinfo databases/iodbc/patches: patch-admin_libiodbc_pc_in patch-bin_iodbc-config_in patch-include_sqltypes_h patch-iodbc_connect_c patch-iodbcadm_gtk_administrator_c patch-samples_Makefile_in Log message: update to iODBC 3.52.9 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/16 09:19:25 Modified files: www/rawdog : Makefile distinfo Log message: Mostly bugfix update to 2.20 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 09:29:30 Modified files: www/squid/stable: Makefile distinfo Log message: update to squid-3.4.8, fix off by one in SNMP subsystem 3.4.8 also fixes an issue with the standalone pinger process as described in http://www.openwall.com/lists/oss-security/2014/09/16/6, but we don't have that enabled in the port at present. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/16 09:41:16 Modified files: lang/jimtcl : Makefile distinfo lang/jimtcl/patches: patch-Makefile_in lang/jimtcl/pkg: PLIST Added files: lang/jimtcl/patches: patch-examples_api_Makefile patch-examples_ext_Makefile patch-initjimsh_tcl Log message: Update to 0.75pl1. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/16 09:42:36 Modified files: devel/openocd : Makefile Added files: devel/openocd/patches: patch-src_flash_mflash_c patch-src_helper_command_c patch-src_helper_command_h Log message: Adjust for jimtcl-0.75pl1. Fix bad bound. ok sthen@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 09:56:36 Modified files: usr.bin/at : at.1 Log message: no need to discuss sendmail (or any particular mailer) here; while here, \*(Gt -> >, per ingo; CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/16 09:59:35 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Split out command submission code into its own function. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:05:44 Modified files: usr.bin/openssl: openssl.1 Log message: a little less sendmail specific; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:11:56 Modified files: usr.bin/vacation: vacation.1 Log message: sendmail -> smtpd; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:13:33 Modified files: share/man/man3 : intro.3 Log message: no more milter; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:17:49 Modified files: share/man/man3 : sysexits.3 Log message: less sendmail specific; CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 10:21:12 Modified files: comms/fldigi : Makefile distinfo Log message: update to fldigi 3.21.83 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 10:24:02 Modified files: mail/p5-Mail-SpamAssassin: Makefile Log message: fix FAKE_AS_ROOT CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/16 10:25:27 Modified files: geo/p5-Geo-StreetAddress-US: Makefile distinfo Log message: Update p5-Geo-StreetAddress-US to 1.04. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 10:26:25 Modified files: net/lldpd : Makefile distinfo net/lldpd/pkg : PLIST Log message: update to lldpd-0.7.10, take maintainer CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:27:23 Modified files: usr.bin/newsyslog: newsyslog.8 Log message: less sendmail specific; ok millert CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/16 10:53:49 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/16 10:54:08 Log message: update to NSD 4.1.0, ok sthen@ Status: Vendor Tag: NLNETLABS Release Tags: NSD_4_1_0 U src/usr.sbin/nsd/axfr.c C src/usr.sbin/nsd/rrl.c U src/usr.sbin/nsd/tsig-openssl.h U src/usr.sbin/nsd/LICENSE U src/usr.sbin/nsd/udbzone.h U src/usr.sbin/nsd/iterated_hash.h U src/usr.sbin/nsd/nsec3.h C src/usr.sbin/nsd/nsd.8.in U src/usr.sbin/nsd/remote.h C src/usr.sbin/nsd/server.c U src/usr.sbin/nsd/packet.h U src/usr.sbin/nsd/query.c U src/usr.sbin/nsd/answer.h U src/usr.sbin/nsd/buffer.h U src/usr.sbin/nsd/nsd.h C src/usr.sbin/nsd/nsec3.c C src/usr.sbin/nsd/configure.ac C src/usr.sbin/nsd/xfrd-tcp.c U src/usr.sbin/nsd/zonec.h C src/usr.sbin/nsd/xfrd-disk.c U src/usr.sbin/nsd/remote.c U src/usr.sbin/nsd/xfrd-tcp.h U src/usr.sbin/nsd/udb.h U src/usr.sbin/nsd/tsig-openssl.c U src/usr.sbin/nsd/netio.c C src/usr.sbin/nsd/nsd.c U src/usr.sbin/nsd/region-allocator.h U src/usr.sbin/nsd/axfr.h U src/usr.sbin/nsd/tsig.c U src/usr.sbin/nsd/nsd.conf.sample.in U src/usr.sbin/nsd/tsig.h C src/usr.sbin/nsd/nsd.conf.5.in U src/usr.sbin/nsd/nsd-control.c U src/usr.sbin/nsd/rdata.h U src/usr.sbin/nsd/answer.c U src/usr.sbin/nsd/xfrd.h C src/usr.sbin/nsd/xfrd.c U src/usr.sbin/nsd/xfrd-notify.c C src/usr.sbin/nsd/nsd-checkconf.c C src/usr.sbin/nsd/Makefile.in C src/usr.sbin/nsd/configure U src/usr.sbin/nsd/packet.c U src/usr.sbin/nsd/radtree.h U src/usr.sbin/nsd/rrl.h U src/usr.sbin/nsd/mini_event.h U src/usr.sbin/nsd/netio.h U src/usr.sbin/nsd/configyyrename.h U src/usr.sbin/nsd/options.h C src/usr.sbin/nsd/configparser.y C src/usr.sbin/nsd/dns.c U src/usr.sbin/nsd/difffile.c U src/usr.sbin/nsd/xfrd-disk.h U src/usr.sbin/nsd/namedb.h U src/usr.sbin/nsd/radtree.c U src/usr.sbin/nsd/zlexer.lex U src/usr.sbin/nsd/buffer.c U src/usr.sbin/nsd/difffile.h U src/usr.sbin/nsd/xfrd-notify.h U src/usr.sbin/nsd/install-sh U src/usr.sbin/nsd/dname.h U src/usr.sbin/nsd/namedb.c U src/usr.sbin/nsd/edns.h U src/usr.sbin/nsd/dns.h U src/usr.sbin/nsd/nsd-mem.c U src/usr.sbin/nsd/ipc.h U src/usr.sbin/nsd/rbtree.h U src/usr.sbin/nsd/mini_event.c U src/usr.sbin/nsd/edns.c U src/usr.sbin/nsd/mkinstalldirs U src/usr.sbin/nsd/nsd-control.8.in C src/usr.sbin/nsd/dname.c U src/usr.sbin/nsd/dbaccess.c N src/usr.sbin/nsd/nsd-checkzone.c U src/usr.sbin/nsd/dbcreate.c C src/usr.sbin/nsd/util.h U src/usr.sbin/nsd/ipc.c C src/usr.sbin/nsd/config.h.in U src/usr.sbin/nsd/region-allocator.c C src/usr.sbin/nsd/lookup3.c U src/usr.sbin/nsd/acx_nlnetlabs.m4 U src/usr.sbin/nsd/rdata.c U src/usr.sbin/nsd/udbradtree.c U src/usr.sbin/nsd/lookup3.h C src/usr.sbin/nsd/zparser.y U src/usr.sbin/nsd/udbzone.c U src/usr.sbin/nsd/nsd-control-setup.sh.in U src/usr.sbin/nsd/udbradtree.h U src/usr.sbin/nsd/zonec.c U src/usr.sbin/nsd/udb.c U src/usr.sbin/nsd/configlexer.lex U src/usr.sbin/nsd/options.c U src/usr.sbin/nsd/iterated_hash.c C src/usr.sbin/nsd/nsd-checkconf.8.in U src/usr.sbin/nsd/query.h C src/usr.sbin/nsd/util.c N src/usr.sbin/nsd/nsd-checkzone.8.in U src/usr.sbin/nsd/rbtree.c U src/usr.sbin/nsd/compat/pselect.c U src/usr.sbin/nsd/compat/malloc.c U src/usr.sbin/nsd/compat/b64_pton.c U src/usr.sbin/nsd/compat/b64_ntop.c U src/usr.sbin/nsd/compat/strlcpy.c U src/usr.sbin/nsd/compat/inet_pton.c U src/usr.sbin/nsd/compat/memcmp.c U src/usr.sbin/nsd/compat/memmove.c U src/usr.sbin/nsd/compat/fake-rfc2553.h U src/usr.sbin/nsd/compat/strptime.c U src/usr.sbin/nsd/compat/strlcat.c U src/usr.sbin/nsd/compat/snprintf.c U src/usr.sbin/nsd/compat/fake-rfc2553.c U src/usr.sbin/nsd/compat/inet_ntop.c U src/usr.sbin/nsd/compat/basename.c U src/usr.sbin/nsd/compat/inet_aton.c U src/usr.sbin/nsd/compat/memcmp.h 22 conflicts created by this import. Use the following command to help the merge: cvs checkout -jNLNETLABS:yesterday -jNLNETLABS src/usr.sbin/nsd CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 10:58:13 Modified files: share/man/man7 : hier.7 Log message: Drop sendmail references. ok jmc@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/16 11:01:38 Modified files: usr.sbin/nsd : Makefile.in config.h.in configparser.y configure configure.ac dname.c dns.c lookup3.c nsd-checkconf.8.in nsd-checkconf.c nsd.8.in nsd.c nsd.conf.5.in nsec3.c rrl.c server.c util.c util.h xfrd-disk.c xfrd-tcp.c xfrd.c zparser.y Log message: merge conflicts CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:08:45 Modified files: etc/mtree : special 4.4BSD.dist Log message: More sendmail removal. ok matthieu@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/16 11:09:24 Modified files: usr.sbin/nsd : Makefile.bsd-wrapper Log message: Add nsd-checkzone. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/16 11:09:32 Log message: Import sendmail-8.14.9 Thanks to matthieu@ for the work done in base, input from at least zhuk@ and sthen@, ok ajacoutot@ Status: Vendor Tag: jca Release Tags: jca_2014-09-16 N ports/mail/sendmail/distinfo N ports/mail/sendmail/Makefile N ports/mail/sendmail/files/cf-Makefile N ports/mail/sendmail/files/access N ports/mail/sendmail/files/local-host-names N ports/mail/sendmail/files/genericstable N ports/mail/sendmail/files/mailer.conf.sendmail N ports/mail/sendmail/files/mailertable N ports/mail/sendmail/files/relay-domains N ports/mail/sendmail/files/sendmail-disable N ports/mail/sendmail/files/sendmail-enable N ports/mail/sendmail/files/site.OS.m4 N ports/mail/sendmail/files/trusted-users N ports/mail/sendmail/files/virtusertable N ports/mail/sendmail/files/cf/openbsd-lists.mc N ports/mail/sendmail/files/cf/openbsd-bulk.mc N ports/mail/sendmail/files/cf/openbsd-localhost.mc N ports/mail/sendmail/files/cf/openbsd-proto.mc N ports/mail/sendmail/files/cf/openbsd-submit.mc N ports/mail/sendmail/patches/patch-mail_local_Makefile_m4 N ports/mail/sendmail/patches/patch-cf_cf_Makefile N ports/mail/sendmail/pkg/DESCR N ports/mail/sendmail/pkg/PLIST N ports/mail/sendmail/pkg/README N ports/mail/sendmail/pkg/sendmail.rc No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:10:32 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/16 11:11:29 Modified files: mail : Makefile Log message: Hook up sendmail. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:14:20 Modified files: mail : Makefile Log message: Build all sendmail FLAVORs. CVSROOT: /cvs Module name: www Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:16:32 Modified files: faq : current.html Log message: Another sendmail directory to remove. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 11:28:07 Modified files: databases/mongodb: Makefile distinfo databases/mongodb/patches: patch-SConstruct patch-src_mongo_SConscript databases/mongodb/pkg: PLIST Removed files: databases/mongodb/patches: patch-src_SConscript_client patch-src_third_party_s2_hash_h Log message: - update to mongodb-2.6.4 based on an earlier diff by sthen@, and ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 12:01:08 Log message: import bibtex2html-1.98 collection of tools for translating from BibTeX to HTML from Ingo Feinerer, ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20141609 N ports/textproc/bibtex2html/Makefile N ports/textproc/bibtex2html/distinfo N ports/textproc/bibtex2html/pkg/PLIST N ports/textproc/bibtex2html/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 12:02:23 Modified files: textproc : Makefile Log message: +bibtex2html CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 12:07:41 Modified files: lang/smlnj : Makefile Log message: BROKEN-powerpc: /usr/obj/ports/smlnj-110.76//bin/.run/run.ppc-openbsd: undefined symbol '' (note that this port is ONLY_FOR_ARCHS=i386 powerpc, so i doubt its usefulness in the portstree.. anybody using it ? rly ?) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 12:11:35 Modified files: multimedia/libaacs: Makefile Log message: BROKEN-powerpc, fails to link with missing refs to free()/malloc() since 20140513. PIE ? CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 12:13:58 Modified files: multimedia/x265: Makefile Log message: BROKEN-powerpc: when linking libx265.so.0.0 undefined reference to `__sync_val_compare_and_swap_8' undefined reference to `__sync_or_and_fetch_8' CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/16 12:15:21 Modified files: lib/libcrypto/man: Makefile distrib/sets/lists/comp: mi Log message: A few more MLINKs. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/16 12:37:57 Modified files: www/nginx : Makefile distinfo Log message: security update to 1.7.5: CVE-2014-3616 - fix an SSL session reuse vulnerability CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 12:54:29 Modified files: sysutils/bubblemon-dockapp/patches: patch-sys_openbsd_c Log message: fix build post dkstats.h removal CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 12:57:32 Modified files: sysutils/hot-babe/patches: patch-hot-babe_c Log message: byebye dkstats.h, you were not needed CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/16 12:57:51 Modified files: sys/arch/amd64/amd64: pmap.c sys/arch/amd64/include: pmap.h Log message: Simple cleanups for amd64 pmap - use __func__ in panics/printfs (fixes some out of sync function names) - tell the compiler that code paths where we print diagnostics are unlikely - use pmap_valid_entry() in some places - remove KERNSPACE, which is not used anywhere OK guenther@ mlarkin@ kettenis@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 13:03:33 Added files: x11/i3status/patches: patch-src_print_cpu_usage_c Log message: fix build past dkstats.h removal CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 13:10:55 Modified files: infrastructure/mk: bsd.port.mk Log message: FAKE_AS_ROOT=No as a default. "just turn it on!" naddy@ happy to oblige. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:18:07 Modified files: net/filezilla : Makefile Log message: BROKEN-hppa:serverpath.h:17:19: error: variable 'CServerPath final' has initializer but incomplete type seems hppa doesnt like class foo final {} declarations.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:19:24 Modified files: games/openxcom : Makefile Log message: BROKEN-hppa = OOM on Engine/Scalers/hq4x.cpp CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:21:21 Modified files: multimedia/x265: Makefile Log message: BROKEN-hppa - undefined refs to gcc builtin atomic ops. That's what happens when you only care about i386/amd64, and dont even try gcc4 module for other archs... CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:22:38 Modified files: cad/qucs : Makefile Log message: BORKEN-hppa: OOM on hicumL2V2p23.core.o CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 13:26:34 Modified files: textproc/bibtex2html: Makefile Log message: unbreak MASTER_SITES, oops CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/16 13:54:29 Modified files: mail/sendmail : Makefile mail/sendmail/files: site.OS.m4 mail/sendmail/pkg: PLIST Added files: mail/sendmail/files: sharedlibrary.m4 Log message: Build a shared version of libmilter. .m4 bits obtained from FreeBSD/Absolight/Sendmail then uglily hacked. major bump for safety. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/09/16 13:56:10 Modified files: archivers/pigz : Makefile archivers/zopfli: Makefile audio/celt : Makefile audio/flite : Makefile audio/opus : Makefile audio/xmms : Makefile benchmarks/bonnie++: Makefile cad/gnucap : Makefile devel/dconf : Makefile devel/glib2mm : Makefile devel/libaudiofile: Makefile devel/ninja : Makefile devel/sparsehash: Makefile graphics/cairomm: Makefile graphics/freeglut: Makefile graphics/glew : Makefile graphics/py-cairo: Makefile graphics/py3-cairo: Makefile net/xmlrpc-c : Makefile textproc/exempi: Makefile textproc/icu4c : Makefile x11/fltk : Makefile x11/qt3 : Makefile Log message: Add a bunch of NOT_FOR_ARCHS and BROKEN- annotations, either for all gcc3 platforms (due to compiler deficiencies) or m88k only (due to toolchain issues leading to libGL not being available). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 14:02:35 Modified files: x11/kde/base3/patches: patch-ksysguard_ksysguardd_OpenBSD_memory_c Added files: x11/kde/base3/patches: patch-ksysguard_ksysguardd_OpenBSD_cpu_c Log message: fix post dkstats.h removal CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 14:13:49 Modified files: x11/kde/base3/patches: patch-kicker_applets_naughty_NaughtyProcessMonitor_cpp Log message: yet a bit more dkstat.h breakage. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/16 14:23:42 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Check the right descriptor field when polling for completion. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:11:56 Modified files: share/man/man7 : mailaddr.7 libexec/lockspool: lockspool.1 Log message: no need to Xr sendmail here; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:16:57 Modified files: libexec/spamd : spamd.8 Log message: less sendmail; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:18:19 Modified files: usr.sbin/smtpd : makemap.8 Log message: there is no editmap; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:24:11 Modified files: usr.sbin/mailwrapper: mailer.conf.5 Log message: smtpd in SEE ALSO; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:28:51 Modified files: libexec/mail.local: mail.local.8 Log message: less sendmail; CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 15:45:12 Modified files: sys/kern : subr_pool.c Log message: tweak panics so they use __func__ consistently. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/16 15:56:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: zap unnecessary quotes OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 15:58:26 Modified files: devel/ruby-rspec/specinfra: Makefile Added files: devel/ruby-rspec/specinfra/patches: patch-lib_specinfra_command_openbsd_rb Log message: use rcctl(8) instead of various grep constructs CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/16 16:07:02 Modified files: libexec/login_passwd: login_passwd.c Log message: use crypt_checkpass function to make things simple CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 17:05:34 Modified files: sys/kern : subr_pool.c Log message: disable taking the mutex to read pool stats. some pool users (eg, mbufs and mbuf clusters) protect calls to pools with their own locks that operate at high spl levels, rather than pool_setipl() to have pools protect themselves. this means pools mtx_enter doesnt necessarily prevent interrupts that will use a pool, so we get code paths that try to mtx_enter twice, which blows up. reported by vlado at bsdbg dot net and matt bettinger diagnosed by kettenis@ CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/16 17:41:41 Modified files: mail/lumail : Makefile distinfo mail/lumail/patches: patch-src_bindings_cc Log message: Update lumail to 0.26 CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/16 18:33:42 Modified files: faq : index.html Log message: add 6.2.9 to recent updates CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/16 18:39:41 Modified files: papers : index.html Log message: there's a video here, too, from Daniel Jakots, (vigdis at chown dot me), thanks! CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/16 18:42:54 Modified files: share/man/man7 : mdoc.7 Log message: Five year old typo reported by Theo Buehler at math dot ethz dot ch, thanks. I nearly asked: ``What's wrong with it? It formats as "intended".'' (However, what Kristaps intended to write was "indented".) CVSROOT: /cvs Module name: ports Changes by: daniel@cvs.openbsd.org 2014/09/16 18:46:13 Modified files: math/py-numpy : Makefile distinfo math/py-numpy/patches: patch-numpy_core_include_numpy_npy_common_h patch-numpy_distutils_command_build_src_py powerpc-patch-numpy_distutils_fcompiler_gnu_py math/py-numpy/pkg: PLIST Added files: math/py-numpy/patches: patch-numpy_core_tests_test_umath_py Removed files: math/py-numpy/patches: patch-numpy_f2py___init___py patch-numpy_f2py_f2py2e_py Log message: - update numpy to 1.8.2 and take maintainer - python3 flavor contributed by Dawe with assistance from rpointel@ - tested in a bulk by landry@ - bcallah@ needs this update to update math/veusz ok landry@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/16 19:45:54 Modified files: faq : faq14.html Log message: crypto likes this zero step, from Daniel Jakots, (vigdis at chown dot me), thanks! CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 19:56:54 Modified files: usr.bin/top : machine.c machine.h top.c Log message: if there are more than 8 cpus, default to combined cpu stats (like you passed -1 on the command line). ok kettenis@ tedu@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 20:10:27 Modified files: usr.bin/top : top.1 Log message: be more explicit about what '1' toggles between CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/09/16 20:20:07 Modified files: regress/usr.bin/make: Makefile Log message: Stop using the Z malloc option which has been tedu'd by tedu@ sometime ago. ok espie@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 20:20:07 Modified files: usr.bin/top : top.1 Log message: try to document that the -1 option will be selected by default if more than 8 cpus are detected in the system. CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/09/16 20:20:45 Modified files: usr.bin/openssl: crl.c Log message: Remove unused #define. ok jsing@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 21:16:00 Modified files: sys/kern : subr_pool.c Log message: if userland asks for an unknown sysctl, return EOPNOTSUPP instead of EINVAL like other sysctl things do. CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/09/16 22:16:27 Modified files: . : 56.html Log message: Mention divert(4) checksum offload, tcpdump(8) bad checksum display, and ftp(1) User-Agent option. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 23:28:40 Added files: sysutils/symon/patches: patch-platform_OpenBSD_platform_h patch-platform_OpenBSD_sm_cpu_c Log message: more dkstat breakage CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 23:35:16 Added files: sysutils/libstatgrab/patches: patch-src_libstatgrab_cpu_stats_c Log message: more dkstat breakage CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 23:42:46 Modified files: graphics/libgexiv2: Makefile distinfo graphics/libgexiv2/pkg: PLIST Log message: Update to libgexiv2-0.10.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 23:49:15 Modified files: x11/dbus : Makefile distinfo x11/dbus/patches: patch-bus_Makefile_in patch-bus_config-parser_c patch-dbus_Makefile_in patch-dbus_dbus-sysdeps-unix_c patch-tools_Makefile_in Log message: SECURITY update to dbus-1.8.8. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 00:05:41 Modified files: x11/dbus : Tag: OPENBSD_5_6 Makefile distinfo x11/dbus/patches: Tag: OPENBSD_5_6 patch-bus_Makefile_in patch-bus_config-parser_c patch-dbus_Makefile_in patch-dbus_dbus-sysdeps-unix_c patch-tools_Makefile_in Log message: SECURITY update to dbus-1.8.8. Fixes: CVE-2014-3635 CVE-2014-3636 CVE-2014-3637 CVE-2014-3638 CVE-2014-3639 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 00:19:48 Modified files: devel/ruby-rspec/specinfra/patches: patch-lib_specinfra_command_openbsd_rb Log message: committed upstream CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/17 00:21:46 Modified files: lib/libkeynote : keynote.3 Log message: diff From: Theo Buehler who notes of kn_encode_base64(): "Since the function is a simple wrapper around b64_ntop(), there is no restriction on the possible lengths of the raw data in `src'." ok millert CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 00:26:03 Added files: x11/kde/utils3/patches: patch-ksim_monitors_cpu_ksimcpu_cpp Log message: unbreak dkstat CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 00:30:07 Modified files: x11/dbus : Tag: OPENBSD_5_5 Makefile distinfo Removed files: x11/dbus/patches: Tag: OPENBSD_5_5 patch-dbus_dbus-message_c Log message: SECURITY fix for: CVE-2014-3635 CVE-2014-3636 CVE-2014-3637 CVE-2014-3638 CVE-2014-3639 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 00:42:25 Modified files: math : Makefile Log message: +py-numpy,python3 CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 01:47:38 Modified files: x11/ede/desktop/patches: patch-ede-panel_applets_cpu-monitor_CpuMonitor_cpp Log message: dkstat.h again CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/17 01:52:42 Modified files: mail/dkim-milter: Makefile mail/milter-checkrcpt: Makefile mail/milter-greylist: Makefile mail/milter-regex: Makefile mail/milter-spamd: Makefile mail/mimedefang: Makefile mail/py-milter : Makefile mail/smtp-vilter: Makefile security/clamav: Makefile Log message: Cope with sendmail (and libmilter) moving to ports. Input from sthen@, ok ajacoutot@ sthen@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 03:04:38 Modified files: www/apache-httpd-openbsd: Makefile www/apache-httpd-openbsd/patches: patch-Makefile_bsd-wrapper Log message: Modify apache-httpd-openbsd Makefile to install CGIs as mode 700 instead of 000, so that pkg_create run as non-root is able to create the package. These files are annotated "@mode 000" in the PLIST so when the package is installed, they still have no access permissions, so no change to the end results. Remove FAKE_AS_ROOT=Yes. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 03:11:53 Modified files: mail/sendmail : Makefile Added files: mail/sendmail/pkg: DESCR-libmilter DESCR-main PLIST-libmilter PLIST-main README-main Removed files: mail/sendmail/pkg: DESCR PLIST README Log message: Subpackage libmilter. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 03:13:13 Modified files: mail/dkim-milter: Makefile mail/milter-checkrcpt: Makefile mail/milter-greylist: Makefile mail/milter-regex: Makefile mail/milter-spamd: Makefile mail/mimedefang: Makefile mail/py-milter : Makefile mail/smtp-vilter: Makefile security/clamav: Makefile Log message: Cope with recent sendmail subpackaging. Fix ports that were not able to find the milter includes (since it's not under /usr/includes anymore). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 03:20:01 Modified files: net/nfsen : Makefile net/nfsen/patches: patch-install_pl Log message: patch install.pl to allow FAKE_AS_ROOT build CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 03:36:55 Log message: import current rspec2 ports into their own subdirectory to prepare for rspec3 as discussed with jeremy@ ok aja@ jeremy@ Status: Vendor Tag: jasper Release Tags: jasper_20141709 N ports/devel/ruby-rspec/2/Makefile N ports/devel/ruby-rspec/2/Makefile.inc N ports/devel/ruby-rspec/2/core/Makefile N ports/devel/ruby-rspec/2/core/distinfo N ports/devel/ruby-rspec/2/core/pkg/DESCR N ports/devel/ruby-rspec/2/core/pkg/PLIST N ports/devel/ruby-rspec/2/expectations/Makefile N ports/devel/ruby-rspec/2/expectations/distinfo N ports/devel/ruby-rspec/2/expectations/pkg/DESCR N ports/devel/ruby-rspec/2/expectations/pkg/PLIST N ports/devel/ruby-rspec/2/mocks/Makefile N ports/devel/ruby-rspec/2/mocks/distinfo N ports/devel/ruby-rspec/2/mocks/pkg/DESCR N ports/devel/ruby-rspec/2/mocks/pkg/PLIST N ports/devel/ruby-rspec/2/rspec/Makefile N ports/devel/ruby-rspec/2/rspec/distinfo N ports/devel/ruby-rspec/2/rspec/pkg/DESCR N ports/devel/ruby-rspec/2/rspec/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 03:38:24 Modified files: devel/ruby-rspec: Makefile Log message: enter '2' and unhook rspec2 ports CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 03:38:46 Modified files: devel/ruby-rspec/puppet: Makefile devel/ruby-rspec/serverspec: Makefile Log message: adjust dependencies after rspec2 move CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 03:39:02 Modified files: devel/ruby-rspec/1: Makefile Removed files: devel/ruby-rspec/core: Makefile distinfo devel/ruby-rspec/core/pkg: DESCR PLIST devel/ruby-rspec/expectations: Makefile distinfo devel/ruby-rspec/expectations/pkg: DESCR PLIST devel/ruby-rspec/mocks: Makefile distinfo devel/ruby-rspec/mocks/pkg: DESCR PLIST devel/ruby-rspec/rspec: Makefile distinfo devel/ruby-rspec/rspec/pkg: DESCR PLIST Log message: remove rspec2 ports CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 03:39:35 Modified files: lang/ruby : ruby.port.mk Log message: adjust MODRUBY_RSPEC2_DEPENDS after rspec2 move CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 04:11:08 Modified files: www/apache-httpd: Makefile www/apache-httpd/pkg: PLIST apache2.rc Log message: apache2 FAKE_AS_ROOT tweak. We currently install suexec2 without setuid privileges, but the file in the fake directory is mode 4555 owned by the user building the port, so triggering checks at package creation time because the plist doesn't have a @mode 4555 annotation. Change the PLIST to explicitly install this file as mode 555 (no setuid bit) to allow packaging to succeed. This commit does not change the mode of the file installed by the package, users wanting suexec will still need to chmod it themselves, just allows a FAKE_AS_ROOT=No build to work. While there, swap some /var for LOCALSTATEDIR. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/17 04:11:33 Modified files: sys/dev/ic : mpi.c Log message: be less confusing to the compiler when setting up the sge. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 05:27:13 Modified files: devel/ruby-rspec/2/core: Makefile devel/ruby-rspec/2/core/pkg: PLIST devel/ruby-rspec/2/expectations: Makefile devel/ruby-rspec/2/expectations/pkg: PLIST devel/ruby-rspec/2/mocks: Makefile devel/ruby-rspec/2/mocks/pkg: PLIST devel/ruby-rspec/2/rspec: Makefile devel/ruby-rspec/2/rspec/pkg: PLIST Log message: add @conflict markers for upcoming rspec3 ports CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 05:27:51 Modified files: devel/ruby-rspec/2/core: Makefile devel/ruby-rspec/2/expectations: Makefile devel/ruby-rspec/2/mocks: Makefile Log message: 'rspec' -> 'rspec2' in COMMENT CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 05:50:27 Modified files: sysutils/salt : Makefile Log message: Add issue #15864. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 05:52:00 Modified files: x11/lumina/patches: patch-lumina-config_lumina-config_pro patch-lumina-desktop_lumina-desktop_pro patch-lumina-fm_lumina-fm_pro patch-lumina-open_lumina-open_pro patch-lumina-screenshot_lumina-screenshot_pro Log message: Merged upstream. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 05:57:17 Modified files: devel/cmake : Makefile cmake.port.mk Log message: devel/ninja is knocked out on m88k; disable its use with cmake (as already done with arm) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 05:58:31 Modified files: devel/ninja : Makefile Log message: add a comment to re-enable USE_NINJA in cmake if m88k is fixed for ninja CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/17 06:27:40 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 06:50:38 Modified files: mail/mutt : Makefile mail/mutt/pkg : DESCR PLIST Log message: remove some old flavours for mutt; idn (merged to main), mixmaster (removed). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:24:57 Modified files: x11/kde4/workspace/patches: patch-ksysguard_ksysguardd_OpenBSD_memory_c Added files: x11/kde4/workspace/patches: patch-ksysguard_ksysguardd_OpenBSD_cpu_c Log message: dkstat.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 08:28:36 Modified files: devel/ruby-rspec/1: Makefile Log message: HOMEPAGE changed -> bump REVISION CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/17 08:31:37 Modified files: app/cwm : calmwm.h group.c mousefunc.c Log message: Introduce a check to see if a group holds only 'sticky' clients and use this check to decide if a group is virtually empty. Rationale: if a group contains *only* 'sticky' clients, it should be skipped while cycling through groups. Apply similar logic to the group menu. Based on an idea from phessler@, who also tested another version. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:34:39 Modified files: sysutils/wmcube/patches: patch-wmcube_wmcube_c Log message: dkstat.h CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:37:23 Modified files: sysutils/wmmon/patches: patch-wmmon_wmmon_c Log message: dkstat.h CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:39:21 Modified files: sysutils/toprump/patches: patch-machine_c Log message: dkstats.h CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:42:52 Modified files: sysutils/monit/patches: patch-src_process_sysdep_OPENBSD_c Log message: fix for dkstat CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:48:30 Modified files: x11/xfce4/xfce4-systemload/patches: patch-panel-plugin_memswap_c Added files: x11/xfce4/xfce4-systemload/patches: patch-panel-plugin_cpu_c Log message: dkstat CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/17 08:52:18 Modified files: comms/lcdproc/patches: patch-clients_lcdproc_machine_OpenBSD_c Log message: dkstat.h CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/17 09:31:38 Modified files: usr.bin/tmux : grid.c Log message: Fix some comments (c -> colour) and join unnecessary line splits. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/17 09:35:25 Modified files: share/termtypes: termtypes.master Log message: Both tmux and screen expect \177 for backspace, so change our screen terminfo entry to have kbs=\177 (we already do this for xterm). Fixes problems with "le" editor reported by bcallah@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/17 09:43:59 Modified files: net/openmdns : Makefile distinfo Removed files: net/openmdns/patches: patch-mdnsctl_mdnsl_c patch-mdnsd_mdns_c patch-mdnsd_mdnsd_h Log message: Update for OpenMDNS to 0.6 * All patches are now in. * Support for multiple iface OK jca@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/17 09:56:50 Modified files: databases/mariadb: Makefile Log message: EPOCH=0 for seamless updates from mysql. ok/on behalf of sthen@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/17 10:00:44 Modified files: app/cwm : calmwm.h client.c conf.c xutil.c Log message: Implement EWMH _NET_WM_STATE_HIDDEN. CVSROOT: /cvs Module name: xenocara Changes by: shadchin@cvs.openbsd.org 2014/09/17 10:11:51 Modified files: data/xkeyboard-config/man: xkeyboard-config.7 data/xkeyboard-config/pc: Makefile data/xkeyboard-config/symbols: Makefile dist/xkeyboard-config: NEWS configure configure.ac dist/xkeyboard-config/docs: README.enhancing dist/xkeyboard-config/keycodes: xfree86 dist/xkeyboard-config/po: bg.po ca.po cs.po da.po de.po el.po es.po fr.po gl.po ko.po lt.po nl.po pl.po pt_BR.po ru.po uk.po dist/xkeyboard-config/rules: base.extras.xml.in base.o_s.part base.xml.in evdev.extras.xml.in evdev.xml.in dist/xkeyboard-config/rules/compat: base.l1v1_c.part base.l2v2_c.part base.l3v3_c.part base.l4v4_c.part base.lv_c.part dist/xkeyboard-config/symbols: Makefile.am Makefile.in af al ara ba ca cm cz de dk es fi fr group hr il in inet ir is it jp keypad kz lv ma me nl no rs ru se si sk tm tr tw ua us dist/xkeyboard-config/symbols/sharp_vndr: sl-c3x00 dist/xkeyboard-config/symbols/sun_vndr: de pl sk dist/xkeyboard-config/types: pc Added files: dist/xkeyboard-config/symbols: eu Log message: Update to xkeyboard-config 2.12. plus fix for fr(oss) from Daniel Jakots ok matthieu@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/17 10:30:21 Modified files: app/cwm : client.c Log message: don't toggle _WM_STATE_HIDDEN here yet CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/17 10:32:53 Modified files: app/cwm : calmwm.h group.c mousefunc.c Log message: Use a similarly named check as sticky for hidden check in a group. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/17 10:39:42 Modified files: share/man/man7 : hier.7 Log message: make the /var list width one character wider to improve formatting; CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 10:39:46 Modified files: etc/mail : Makefile distrib/sets/lists/etc: mi Log message: With sendmail(8) gone, there is not much point in keeping /etc/mail/Makefile. There is one table in the default configuration which is 'aliases' and the db can be created using newaliases(8). "go for it" guenther@ ok sthen@ matthieu@ gilles@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/09/17 11:58:41 Modified files: share/man/man5 : login.conf.5 usr.bin/passwd : pwd_gensalt.c Log message: Increase number of blowfish rounds to 8 by default when not specified in login.conf. ok deraadt@ doug@ millert@ "please commit" tedu@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 11:59:00 Log message: import ruby-rspec3 counterparts of current rspec ports, along with its. feedback/ok jeremy@ Status: Vendor Tag: jasper Release Tags: jasper_20141709 N ports/devel/ruby-rspec/3/Makefile N ports/devel/ruby-rspec/3/Makefile.inc N ports/devel/ruby-rspec/3/core/Makefile N ports/devel/ruby-rspec/3/core/distinfo N ports/devel/ruby-rspec/3/core/pkg/DESCR N ports/devel/ruby-rspec/3/core/pkg/PLIST N ports/devel/ruby-rspec/3/support/Makefile N ports/devel/ruby-rspec/3/support/distinfo N ports/devel/ruby-rspec/3/support/pkg/DESCR N ports/devel/ruby-rspec/3/support/pkg/PLIST N ports/devel/ruby-rspec/3/expectations/Makefile N ports/devel/ruby-rspec/3/expectations/distinfo N ports/devel/ruby-rspec/3/expectations/pkg/DESCR N ports/devel/ruby-rspec/3/expectations/pkg/PLIST N ports/devel/ruby-rspec/3/mocks/Makefile N ports/devel/ruby-rspec/3/mocks/distinfo N ports/devel/ruby-rspec/3/mocks/pkg/DESCR N ports/devel/ruby-rspec/3/mocks/pkg/PLIST N ports/devel/ruby-rspec/3/rspec/Makefile N ports/devel/ruby-rspec/3/rspec/distinfo N ports/devel/ruby-rspec/3/rspec/pkg/DESCR N ports/devel/ruby-rspec/3/rspec/pkg/PLIST N ports/devel/ruby-rspec/3/its/Makefile N ports/devel/ruby-rspec/3/its/distinfo N ports/devel/ruby-rspec/3/its/pkg/PLIST N ports/devel/ruby-rspec/3/its/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 11:59:42 ports/devel/ruby-rspec/serverspec/patches Update of /cvs/ports/devel/ruby-rspec/serverspec/patches In directory cvs.openbsd.org:/tmp/cvs-serv4335/serverspec/patches Log Message: Directory /cvs/ports/devel/ruby-rspec/serverspec/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 12:00:11 Modified files: devel/ruby-rspec: Makefile Log message: hookup rspec3 CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/17 12:09:30 Modified files: app/cwm : client.c kbfunc.c mousefunc.c Log message: ewmh states _NET_WM_STATE_STICKY should not alter position CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 12:26:59 Modified files: x11/i3status/patches: patch-src_print_cpu_usage_c Log message: submitted upstream CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/17 12:41:44 Modified files: app/cwm : calmwm.h client.c conf.c kbfunc.c xutil.c Log message: these client actions are just toggles; less confusing with better names CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/17 12:49:52 Removed files: gnu/usr.sbin/sendmail: CACerts FAQ KNOWNBUGS LICENSE Makefile Makefile.inc README RELEASE_NOTES gnu/usr.sbin/sendmail/cf: Makefile README sendmail.schema gnu/usr.sbin/sendmail/cf/cf: Makefile README chez.cs.mc clientproto.mc corpse.mc courtesan-nonet.mc courtesan.mc cs-hpux10.mc cs-hpux9.mc cs-osf1.mc cs-solaris2.mc cs-sunos4.1.mc cs-ultrix4.mc cyrusproto.mc generic-bsd4.4.mc generic-hpux10.mc generic-hpux9.mc generic-linux.mc generic-mpeix.mc generic-nextstep3.3.mc generic-osf1.mc generic-solaris.mc generic-sunos4.1.mc generic-ultrix4.mc huginn.cs.mc knecht.mc lucifier.mc mail.cs.mc mail.eecs.mc mailspool.cs.mc openbsd-bulk.mc openbsd-lists.mc openbsd-localhost.mc openbsd-proto.mc openbsd-submit.mc python.cs.mc s2k-osf1.mc s2k-ultrix4.mc submit.mc tcpproto.mc ucbarpa.mc ucbvax.mc uucpproto.mc vangogh.cs.mc gnu/usr.sbin/sendmail/cf/domain: Berkeley.EDU.m4 CS.Berkeley.EDU.m4 EECS.Berkeley.EDU.m4 S2K.Berkeley.EDU.m4 berkeley-only.m4 generic.m4 gnu/usr.sbin/sendmail/cf/feature: accept_unqualified_senders.m4 accept_unresolvable_domains.m4 access_db.m4 allmasquerade.m4 always_add_domain.m4 authinfo.m4 badmx.m4 bestmx_is_local.m4 bitdomain.m4 blacklist_recipients.m4 block_bad_helo.m4 compat_check.m4 conncontrol.m4 delay_checks.m4 dnsbl.m4 domaintable.m4 enhdnsbl.m4 generics_entire_domain.m4 genericstable.m4 greet_pause.m4 ldap_routing.m4 limited_masquerade.m4 local_lmtp.m4 local_no_masquerade.m4 local_procmail.m4 lookupdotdomain.m4 loose_relay_check.m4 mailertable.m4 masquerade_entire_domain.m4 masquerade_envelope.m4 msp.m4 mtamark.m4 no_default_msa.m4 nocanonify.m4 notsticky.m4 nouucp.m4 nullclient.m4 preserve_local_plus_detail.m4 preserve_luser_host.m4 promiscuous_relay.m4 queuegroup.m4 ratecontrol.m4 redirect.m4 relay_based_on_MX.m4 relay_entire_domain.m4 relay_hosts_only.m4 relay_local_from.m4 relay_mail_from.m4 require_rdns.m4 smrsh.m4 stickyhost.m4 use_client_ptr.m4 use_ct_file.m4 use_cw_file.m4 uucpdomain.m4 virtuser_entire_domain.m4 virtusertable.m4 gnu/usr.sbin/sendmail/cf/hack: cssubdomain.m4 gnu/usr.sbin/sendmail/cf/m4: cf.m4 cfhead.m4 proto.m4 version.m4 gnu/usr.sbin/sendmail/cf/mailer: cyrus.m4 cyrusv2.m4 fax.m4 local.m4 mail11.m4 phquery.m4 pop.m4 procmail.m4 qpage.m4 smtp.m4 usenet.m4 uucp.m4 gnu/usr.sbin/sendmail/cf/ostype: a-ux.m4 aix3.m4 aix4.m4 aix5.m4 altos.m4 amdahl-uts.m4 bsd4.3.m4 bsd4.4.m4 bsdi.m4 bsdi1.0.m4 bsdi2.0.m4 darwin.m4 dgux.m4 domainos.m4 dragonfly.m4 dynix3.2.m4 freebsd4.m4 freebsd5.m4 freebsd6.m4 gnu.m4 hpux10.m4 hpux11.m4 hpux9.m4 irix4.m4 irix5.m4 irix6.m4 isc4.1.m4 linux.m4 maxion.m4 mklinux.m4 mpeix.m4 nextstep.m4 openbsd.m4 osf1.m4 powerux.m4 ptx2.m4 qnx.m4 riscos4.5.m4 sco-uw-2.1.m4 sco3.2.m4 sinix.m4 solaris11.m4 solaris2.m4 solaris2.ml.m4 solaris2.pre5.m4 solaris8.m4 sunos3.5.m4 sunos4.1.m4 svr4.m4 ultrix4.m4 unicos.m4 unicosmk.m4 unicosmp.m4 unixware7.m4 unknown.m4 uxpds.m4 gnu/usr.sbin/sendmail/cf/sh: makeinfo.sh gnu/usr.sbin/sendmail/cf/siteconfig: uucp.cogsci.m4 uucp.old.arpa.m4 uucp.ucbarpa.m4 uucp.ucbvax.m4 gnu/usr.sbin/sendmail/contrib: README bitdomain.c bounce-resender.pl bsdi.mc buildvirtuser cidrexpand dnsblaccess.m4 domainmap.m4 doublebounce.pl etrn.0 etrn.pl expn.pl link_hash.sh mail.local.linux mailprio mh.patch mmuegel movemail.conf movemail.pl passwd-to-alias.pl qtool.8 qtool.pl re-mqueue.pl rmail.oldsys.patch smcontrol.pl socketmapClient.pl socketmapServer.pl gnu/usr.sbin/sendmail/doc/op: Makefile README op.me gnu/usr.sbin/sendmail/editmap: Makefile editmap.8 editmap.c gnu/usr.sbin/sendmail/include/libmilter: mfapi.h mfdef.h milter.h gnu/usr.sbin/sendmail/include/libsmdb: smdb.h gnu/usr.sbin/sendmail/include/sendmail: mailstats.h pathnames.h sendmail.h gnu/usr.sbin/sendmail/include/sm: assert.h bdb.h bitops.h cdefs.h cf.h clock.h conf.h config.h debug.h errstring.h exc.h fdset.h gen.h heap.h io.h ldap.h limits.h mbdb.h misc.h path.h rpool.h sem.h sendmail.h setjmp.h shm.h signal.h sm_os.h string.h sysexits.h tailq.h test.h time.h types.h varargs.h xtrap.h gnu/usr.sbin/sendmail/include/sm/os: sm_os_aix.h sm_os_dragonfly.h sm_os_freebsd.h sm_os_hp.h sm_os_irix.h sm_os_linux.h sm_os_mpeix.h sm_os_next.h sm_os_openbsd.h sm_os_openunix.h sm_os_osf1.h sm_os_qnx.h sm_os_sunos.h sm_os_ultrix.h sm_os_unicos.h sm_os_unicosmk.h sm_os_unicosmp.h sm_os_unixware.h gnu/usr.sbin/sendmail/libmilter: Makefile README comm.c engine.c example.c handler.c libmilter.h listener.c main.c monitor.c shlib_version signal.c sm_gethost.c smfi.c worker.c gnu/usr.sbin/sendmail/libmilter/docs: api.html design.html figure1.fig figure1.jpg figure1.ps figure2.fig figure2.jpg figure2.ps index.html installation.html other.html overview.html sample.html smfi_addheader.html smfi_addrcpt.html smfi_addrcpt_par.html smfi_chgfrom.html smfi_chgheader.html smfi_delrcpt.html smfi_getpriv.html smfi_getsymval.html smfi_insheader.html smfi_main.html smfi_opensocket.html smfi_progress.html smfi_quarantine.html smfi_register.html smfi_replacebody.html smfi_setbacklog.html smfi_setconn.html smfi_setdbg.html smfi_setmlreply.html smfi_setpriv.html smfi_setreply.html smfi_setsymlist.html smfi_settimeout.html smfi_stop.html smfi_version.html xxfi_abort.html xxfi_body.html xxfi_close.html xxfi_connect.html xxfi_data.html xxfi_envfrom.html xxfi_envrcpt.html xxfi_eoh.html xxfi_eom.html xxfi_header.html xxfi_helo.html xxfi_negotiate.html xxfi_unknown.html gnu/usr.sbin/sendmail/libsm: Makefile README assert.c assert.html b-strcmp.c b-strl.c cdefs.html cf.c clock.c clrerr.c config.c debug.c debug.html errstring.c exc.c exc.html fclose.c feof.c ferror.c fflush.c fget.c findfp.c flags.c fopen.c fpos.c fprintf.c fpurge.c fput.c fread.c fscanf.c fseek.c fvwrite.c fvwrite.h fwalk.c fwrite.c gen.html get.c glue.h heap.c heap.html index.html inet6_ntop.c io.html ldap.c local.h makebuf.c match.c mbdb.c memstat.c mpeix.c niprop.c path.c put.c refill.c rewind.c rpool.c rpool.html sem.c setvbuf.c shm.c signal.c smstdio.c snprintf.c sscanf.c stdio.c strcasecmp.c strdup.c strerror.c strexit.c string.c stringf.c strio.c strl.c strrevcmp.c strto.c syslogio.c t-cf.c t-event.c t-exc.c t-fget.c t-float.c t-fopen.c t-heap.c t-inet6_ntop.c t-match.c t-memstat.c t-path.c t-qic.c t-rpool.c t-scanf.c t-sem.c t-shm.c t-smstdio.c t-string.c t-strio.c t-strl.c t-strrevcmp.c t-types.c test.c ungetc.c util.c vasprintf.c vfprintf.c vfscanf.c vprintf.c vsnprintf.c wbuf.c wsetup.c xtrap.c gnu/usr.sbin/sendmail/libsmdb: Makefile smdb.c smdb1.c smdb2.c smndbm.c gnu/usr.sbin/sendmail/libsmutil: Makefile cf.c debug.c err.c lockfile.c safefile.c snprintf.c gnu/usr.sbin/sendmail/mail.local: Makefile README mail.local.8 mail.local.c gnu/usr.sbin/sendmail/mailstats: Makefile mailstats.8 mailstats.c gnu/usr.sbin/sendmail/makemap: Makefile makemap.8 makemap.c gnu/usr.sbin/sendmail/praliases: Makefile praliases.1 praliases.c gnu/usr.sbin/sendmail/rmail: Makefile rmail.8 rmail.c gnu/usr.sbin/sendmail/sendmail: Makefile README SECURITY TRACEFLAGS TUNING alias.c aliases aliases.5 arpadate.c bf.c bf.h collect.c conf.c conf.h control.c convtime.c daemon.c daemon.h deliver.c domain.c envelope.c err.c headers.c helpfile macro.c mailq.8 main.c map.c map.h mci.c milter.c mime.c newaliases.8 parseaddr.c queue.c ratectrl.c readcf.c recipient.c sasl.c savemail.c sendmail.8 sendmail.h sfsasl.c sfsasl.h shmticklib.c sm_resolve.c sm_resolve.h srvrsmtp.c stab.c stats.c statusd_shm.h sysexits.c sysexits.h timers.c timers.h tls.c trace.c udb.c usersmtp.c util.c version.c gnu/usr.sbin/sendmail/smrsh: Makefile README smrsh.8 smrsh.c gnu/usr.sbin/sendmail/vacation: Makefile vacation.1 vacation.c Log message: Bye. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/17 13:12:55 Modified files: usr.bin/kdump : kdump.c kdump_subr.h mksubr Log message: Add display of the flags to pipe2, dup3, and accept4, display of MSG_CMSG_CLOEXEC in recvmsg, and display of SOCK_{CLOEXEC,NONBLOCK} in socket and socketpair. Do _not_ display the O_ACCMODE bits in the arg to fcntl(F_SETFD) ok miod@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/17 13:26:06 Modified files: sys/kern : syscalls.master kern_prot.c Log message: The 2nd arg of setpgid(2) should be pid_t, not int. No functional change as pid_t is defined as int32_t. OK miod@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/17 13:27:59 Modified files: sys/sys : syscall.h syscallargs.h sys/kern : init_sysent.c syscalls.c Log message: regen CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/17 13:53:35 Modified files: usr.bin/mandoc : html.h mdoc_html.c Log message: implement .An -[no]split for -Thtml CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/17 14:17:55 Modified files: usr.bin/mandoc : mdoc_term.c term.h Log message: simplify handling of .An -[no]split for terminal output: delete one static function, one flag #define, and 25 lines of code; no functional change CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/17 14:32:11 Modified files: games/galois : Makefile Added files: games/galois/patches: patch-misc_galois_desktop_in Log message: fix path to galois binary in desktop file CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 15:48:55 Modified files: www/trac : Makefile Log message: add PORTROACH annotation to skip dev versions CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/17 15:57:08 Modified files: net/wireshark : Makefile Log message: set PORTROACH to exclude devel versions, currently a noop as there's a newer stable CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/09/17 18:24:25 Modified files: textproc/texi2html: Makefile distinfo textproc/texi2html/pkg: DESCR Log message: Add runtime dependency CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/09/17 20:15:04 Modified files: sys/kern : vfs_syscalls.c syscalls.master Log message: Correct argument name (int flags -> int amode) in sys_access(). OK guenther@ CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/09/17 20:16:32 Modified files: sys/sys : syscall.h syscallargs.h sys/kern : init_sysent.c syscalls.c Log message: regen CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/17 22:37:56 Modified files: include : unistd.h Log message: Our setpgrp() is the BSD version with two args and not the XSI version with zero args, so it should only be visible if __BSD_VISIBLE (and not also for __XPG_VISIBLE). Contrawise, readlink() has been part of base POSIX since 1995, so move to proper #if area for that. Move crypt_checkpass() to the pure-BSD section of the file. setpgrp() issue noted by Matti Karnaattu (mkarnaattu (at) gmail.com) ok millert@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/17 23:48:29 Modified files: geo/libchamplain: Makefile distinfo geo/libchamplain/pkg: PLIST Log message: update to libchamplain-0.12.9 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 23:52:39 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.270. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/18 00:15:07 Modified files: security/libnettle: Makefile security/libgcrypt: Makefile Log message: Take MAINTAINER. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/18 00:25:19 Modified files: security/libgpg-error: Makefile distinfo Added files: security/libgpg-error/patches: patch-src_gpgrt-int_h Log message: Update to libgpg-error-1.15. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/09/18 00:44:56 Modified files: www : Makefile Log message: enable build of nginx flavors again OK jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/18 01:14:12 Modified files: devel/gpatch : Makefile distinfo Log message: update to GNU patch 2.7.1 including 'two critical bug fixes in the "diff --git" format support'. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/18 01:15:16 Modified files: audio/py-mutagen: Makefile distinfo audio/py-mutagen/patches: patch-setup_py Log message: update to mutagen 1.24, minor fixes CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/18 01:26:38 Modified files: audio/py-eyed3 : Makefile distinfo audio/py-eyed3/patches: patch-Makefile_in patch-configure audio/py-eyed3/pkg: PLIST Log message: update to eyeD3 0.6.14 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 01:41:35 Log message: import uhttpmock-0.3.1 uhttpmock is a HTTP web service mocking project for projects which use libsoup. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20141809 N ports/net/uhttpmock/distinfo N ports/net/uhttpmock/Makefile N ports/net/uhttpmock/pkg/PLIST N ports/net/uhttpmock/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 01:42:23 Modified files: net : Makefile Log message: +uhttpmock CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 01:42:56 Modified files: lang/ruby : ruby.port.mk Log message: add needed bits for rspec3 ok jeremy@ CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/18 01:43:17 Modified files: share/man/man5 : ruby-module.5 Log message: document rspec3 ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 02:10:40 Modified files: devel/libgdata : Makefile distinfo devel/libgdata/pkg: PLIST Log message: update to libgdata-0.16.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/18 02:46:39 Modified files: databases/redis: Makefile distinfo Log message: Bugfix update to redis-2.8.16 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/18 03:25:13 Modified files: devel/vim-command-t: Makefile Log message: This doesn't need vim at build time. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/18 03:49:37 Modified files: archivers/lzip/plzip: Makefile distinfo Log message: Update to plzip-1.2 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/18 04:44:37 Modified files: sys/net : bpf_filter.c Log message: ansify function declaration things. ok mpi@ henning@ krw@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/18 04:51:46 Modified files: x11/lablgtk2 : Makefile distinfo x11/lablgtk2/patches: patch-src_gData_ml patch-src_gData_mli Removed files: x11/lablgtk2/patches: patch-src_gTree_mli patch-src_gtkTree_props Log message: Update to lablgtk2-2.18.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 05:04:54 Modified files: devel/libgdata : Makefile Log message: fixup BUILD_DEPENDS to match the actual name uhttpmock was imported as; spotted by naddy@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/18 05:51:20 Modified files: textproc/highlight: Makefile distinfo textproc/highlight/pkg: PLIST Log message: Update highlight to 3.19. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/18 07:26:43 Modified files: www/xcache : Makefile Log message: don't chmod directories 444, it worked when pkg_create was run as root, but fails in a FAKE_AS_ROOT=No world. remove FAKE_AS_ROOT=Yes. ok brad@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 07:39:56 Modified files: mail/procmail : Tag: OPENBSD_5_6 Makefile mail/procmail/patches: Tag: OPENBSD_5_6 patch-src_formisc_c Log message: security fix for CVE-2014-3618 CVSROOT: /cvs Module name: src Changes by: syl@cvs.openbsd.org 2014/09/18 07:46:54 Modified files: share/man/man4/man4.armv7: Makefile Added files: share/man/man4/man4.armv7: imx.4 imxenet.4 imxesdhc.4 imxiic.4 intro.4 omap.4 Log message: add some missing man pages for armv7. tweaks & ok jmc@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 07:56:42 Modified files: www/firefox-esr: Tag: OPENBSD_5_6 Makefile distinfo Log message: Security update to firefox-esr-31.1.0esr https://www.mozilla.org/en-US/firefox/31.1.0/releasenotes/ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 07:56:51 Modified files: www/firefox-esr-i18n: Tag: OPENBSD_5_6 Makefile.inc Log message: Security update to firefox-esr-31.1.0esr https://www.mozilla.org/en-US/firefox/31.1.0/releasenotes/ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/18 07:56:58 Modified files: app/cwm : mousefunc.c Log message: Move motion time check to the top of each MotionNotify block (and eliminate from ButtonRelease); further limits the amount of work done outside the threshold, notably mousefunc_sweep_calc, screen_find_xinerama and client_snapcalc. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/18 08:35:18 Modified files: x11/kde4/libs : Tag: OPENBSD_5_6 Makefile Added files: x11/kde4/libs/patches: Tag: OPENBSD_5_6 patch-kdecore_auth_backends_polkit-1_Polkit1Backend_cpp Log message: Security fix for kdelibs 4.13 branch, CVE-2014-5033: The KAuth framework uses polkit-1 API which tries to authenticate using the requestors PID. This is prone to PID reuse race conditions. More details here: http://www.kde.org/info/security/advisory-20140730-1.txt reminded by jasper@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/18 08:38:22 Modified files: x11/kde4/krfb : Tag: OPENBSD_5_6 Makefile Added files: x11/kde4/krfb/patches: Tag: OPENBSD_5_6 patch-libvncserver_lzoconf_h patch-libvncserver_lzodefs_h patch-libvncserver_minilzo_c patch-libvncserver_minilzo_h Log message: Security fix for krfb 4.13 branch, CVE-2014-4607: krfb embeds libvncserver which embeds liblzo2, it contains various flaws that result in integer overflow problems. This commit actually updates bundled lzo library, as suggested by upstream. reminded by jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/18 08:41:05 Modified files: mail/sendmail : Makefile mail/sendmail/pkg: README-main Log message: Use rcctl to disable smtpd. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/18 08:42:20 Modified files: meta/gnome : Makefile meta/gnome/pkg : README-main Log message: Disable xdm(1). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 08:58:27 Modified files: graphics/py-Pillow: Tag: OPENBSD_5_6 Makefile Added files: graphics/py-Pillow/patches: Tag: OPENBSD_5_6 patch-PIL_IcnsImagePlugin_py patch-PIL_Jpeg2KImagePlugin_py Log message: Security fixes for CVE-2014-3589 and CVE-2014-3598 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 09:06:04 Modified files: lang/lua/5.1 : Tag: OPENBSD_5_6 Makefile Added files: lang/lua/5.1/patches: Tag: OPENBSD_5_6 patch-src_ldo_c Log message: security fix for CVE-2014-5461 CVSROOT: /cvs Module name: ports Changes by: kspillner@cvs.openbsd.org 2014/09/18 09:14:47 Modified files: devel/quilt : Makefile Log message: Update my email address & bump. ok aja@, bcallah@, benoit@, jca@, jung@, landry@, sthen@ CVSROOT: /cvs Module name: ports Changes by: kspillner@cvs.openbsd.org 2014/09/18 09:15:03 Modified files: productivity/vit: Makefile Log message: Update my email address & bump. ok aja@, bcallah@, benoit@, jca@, jung@, landry@, sthen@ CVSROOT: /cvs Module name: ports Changes by: kspillner@cvs.openbsd.org 2014/09/18 09:15:23 Modified files: x11/yeahconsole: Makefile Log message: Update my email address & bump. ok aja@, bcallah@, benoit@, jca@, jung@, landry@, sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 09:19:06 Modified files: lang/node : Tag: OPENBSD_5_6 Makefile Added files: lang/node/patches: Tag: OPENBSD_5_6 patch-deps_v8_src_isolate_h Log message: Security fix for CVE-2014-5256 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/18 09:22:46 Modified files: plan9/plan9port/patches: patch-src_cmd_auxstats_OpenBSD_c Log message: dkstat.h fix CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/18 10:12:39 Modified files: mail/zarafa : Makefile.inc mail/zarafa/zarafa: Makefile distinfo Log message: rollback to a known to be working tarball until upstream fixes this CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/18 10:30:00 Modified files: graphics/opencv: Makefile Added files: graphics/opencv/patches: patch-apps_haartraining_CMakeLists_txt Log message: Fix linking problem, likely causing CMake crashes on i386 sthen@ is seeing. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/18 12:22:26 Modified files: www/p5-Plack : Tag: OPENBSD_5_6 Makefile Added files: www/p5-Plack/patches: Tag: OPENBSD_5_6 patch-lib_Plack_App_File_pm Log message: Security fix for CVE-2014-5269 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/18 12:47:29 Modified files: sys/scsi : sd.c Log message: Some disks, such as the Seagate Cheetah 73LP FC with Sun firmware (ST373405FSUN72G) respond to a START STOP UNIT command that spins down the disk with a "Logical Unit Not Ready, Initialization Command Required". Besides causing some dmesg spam, our sd(4) driver responds to such a response by spinning the disk back up. Prevent this from happening by respecting the SCSI_IGNORE_NOT_READY flag and using that flag when spinning down the disk. ok miod@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/18 12:54:29 Modified files: sys/sys : device.h sys/kern : subr_autoconf.c Log message: Introduce config_suspend_all(9) a function that invokes config_suspend(9) on all relevant device hierarchies in the appropriate order. For now this means mpath(4) and mainbus(4), doing mpath(4) before mainbus(4) when suspending or powering down and doing mpath(4) after mainbus(4) when resuming such that mpath(4) can realy on the underlying hardware being in a functional state. Fixes problems with unflushed disk caches on machines where mpath(4) takes control of some of your disks. ok dlg@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/18 12:55:23 Modified files: sys/arch/sparc64/sparc64: machdep.c Log message: Use config_suspend_all(9). ok dlg@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/18 13:17:02 Modified files: share/man/man8 : ssl.8 Log message: the sendmail section is no longer relevant; CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/18 14:07:15 Modified files: share/man/man4/man4.vax: intro.4 Log message: System III already had intro(4), 4.1BSD merely had a copy of the System III version, and the rewrite only happened for 4.2BSD. All info can be verified from http://minnie.tuhs.org/cgi-bin/utree.pl. ok sobrado@ jmc@ miod@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/18 14:16:26 Modified files: share/man/man4/man4.sparc: intro.4 Log message: fix HISTORY: NetBSD had intro(4/sparc) slightly before OpenBSD, both with respect to commit and release, see http://cvsweb.netbsd.org/bsdweb.cgi/src/share/man/man4/man4.sparc/intro.4 ok sobrado@ jmc@ miod@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/18 14:17:30 Modified files: share/man/man4/man4.aviion: intro.4 share/man/man4/man4.loongson: intro.4 share/man/man4/man4.luna88k: intro.4 Log message: add missing HISTORY sections; ok sobrado@ jmc@ miod@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/18 14:19:27 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_Target_Sparc_SparcInstr64Bit_td patch-lib_Target_Sparc_SparcInstrAliases_td Added files: devel/llvm/patches: patch-include_llvm_Target_TargetInstrInfo_h patch-lib_CodeGen_AsmPrinter_AsmPrinter_cpp patch-lib_CodeGen_TargetInstrInfo_cpp Removed files: devel/llvm/patches: patch-lib_Target_Sparc_SparcInstrInfo_cpp patch-lib_Target_Sparc_SparcInstrInfo_h Log message: r208965 Sparc: disable printing on longer "brX,pt" aliases r208966 Sparc: disable printing of jmp/call aliases (C++ does it) r217801 Fix a lot of confusion around inserting nops on empty functions. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/18 15:01:50 Modified files: databases/mariadb: Makefile Log message: Propagate EPOCH=0 to self-depends, fixes packaging. Reported by nigel@ & kili@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/18 15:16:24 Modified files: databases/iodbc: Makefile databases/iodbc/patches: patch-admin_libiodbc_pc_in Log message: Delete an accidentally duplicated "Libs.private" line in the .pc file which was causing "pkgconfig libiodbc --exists" to return false with a knock-on effect of triggering a different codepath in php's autoconf script causing it to link the main binary against libiodbc. PHP problem reported by naddy. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/18 19:44:47 Modified files: multimedia/xvidcore: Makefile distinfo multimedia/xvidcore/patches: patch-build_generic_Makefile patch-build_generic_configure multimedia/xvidcore/pkg: PLIST Removed files: multimedia/xvidcore/patches: patch-src_global_h multimedia/xvidcore/pkg: PFRAG.shared Log message: Update to xvidcore 1.3.3. ok zhuk@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/18 20:52:55 Modified files: sys/net : bpf.c Log message: passing M_NOWAIT to m_tag_get means it can fail, which could hit the failure path which leaks all the stuff the previous code in bpf_movein allocates. since it's only called from bpfwrite, use M_WAIT instead to make it reliable and just get rid of the bogus failure code. ok miod@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/18 22:36:00 Modified files: textproc/zathura/plugins/mupdf: Makefile textproc/zathura/plugins/mupdf/pkg: DESCR Log message: Fix DESCR to mention the correct backend. From Max Fillinger at uni-duesseldorf.de, thanks! CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 00:18:45 Modified files: etc/mtree : special Log message: Remove sendmail queue directories. ok matthieu@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 00:20:10 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Log message: Update to p11-kit-0.20.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 00:20:36 Modified files: sysutils/accountsservice: Makefile distinfo sysutils/accountsservice/patches: patch-src_Makefile_in patch-src_libaccountsservice_Makefile_in sysutils/accountsservice/pkg: PLIST Log message: Update to accountsservice-0.6.38. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 00:37:49 Modified files: security/gnutls: Makefile distinfo Removed files: security/gnutls/patches: patch-src_libopts_autoopts_h Log message: Update to gnutls-3.2.18. CVSROOT: /cvs Module name: src Changes by: rapha@cvs.openbsd.org 2014/09/19 01:34:14 Modified files: share/man/man4/man4.armv7: Makefile omap.4 Added files: share/man/man4/man4.armv7: dmtimer.4 edma.4 gptimer.4 intc.4 omdog.4 prcm.4 sitaracm.4 Log message: Add missing manual pages for armv7 (omap) drivers. Using feedback from schwarze@. ok syl@ schwarze@ CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/09/19 01:46:38 Modified files: usr.sbin/nginx/src/event: Tag: OPENBSD_5_6 ngx_event_openssl.c Log message: fix for the SSL session reuse vulnerability (CVE-2014-3616) ok jasper@ CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/09/19 01:47:23 Modified files: usr.sbin/nginx/src/event: Tag: OPENBSD_5_5 ngx_event_openssl.c Log message: fix for the SSL session reuse vulnerability (CVE-2014-3616) ok jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/19 01:51:08 Log message: import quadrupassel-3.12.2 Quadrapassel comes from the classic falling-block game, Tetris. The goal of the game is to create complete horizontal lines of blocks, which will disappear. The blocks come in seven different shapes made from four blocks each: one straight, two L-shaped, one square, and two S-shaped. The blocks fall from the top center of the screen in a random order. You rotate the blocks and move them across the screen to drop them in complete lines. You score by dropping blocks fast and completing lines. As your score gets higher, you level up and the blocks fall faster. requested by landry@ ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20141909 N ports/x11/gnome/quadrapassel/distinfo N ports/x11/gnome/quadrapassel/Makefile N ports/x11/gnome/quadrapassel/pkg/PLIST N ports/x11/gnome/quadrapassel/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/19 01:51:53 Modified files: x11/gnome : Makefile Log message: +quadrapassel CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 02:49:45 Modified files: x11/gnome/quadrapassel: Makefile Log message: Fix make test. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/19 02:51:04 Modified files: . : plus.html Log message: plus.html 25 aug to 7 sept. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 05:16:15 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi Log message: Move /etc/rc.conf from the etc to the base set. People should not have been hand-editing /etc/rc.conf (# DO NOT EDIT THIS FILE!!) but in the case you did, you need to merge your changes into /etc/rc.conf.local or they will be overwritten at next upgrade. ok deraadt@ CVSROOT: /cvs Module name: www Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 05:16:31 Modified files: faq : current.html Log message: Add a note about the rc.conf move. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/19 05:40:16 Modified files: sys/arch/macppc/macppc: lock_machdep.c Log message: Use correct printf format when MP_LOCKDEBUG is defined. CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2014/09/19 05:43:31 Modified files: sys/net : bpf_filter.c Log message: better boundchecks in validation; from Guy Harris; ok millert@ dlg@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/19 06:10:47 Modified files: share/man/man4/man4.armv7: dmtimer.4 gptimer.4 omdog.4 sitaracm.4 Log message: zap trailing whitespace (which, strangely, was not in the original version of these files posted to hackers) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/19 06:24:38 Modified files: share/man/man4/man4.alpha: intro.4 share/man/man4/man4.amd64: intro.4 share/man/man4/man4.armish: intro.4 share/man/man4/man4.armv7: intro.4 share/man/man4/man4.aviion: intro.4 share/man/man4/man4.hppa: intro.4 share/man/man4/man4.i386: intro.4 share/man/man4/man4.landisk: intro.4 share/man/man4/man4.loongson: intro.4 share/man/man4/man4.luna88k: intro.4 share/man/man4/man4.macppc: intro.4 share/man/man4/man4.socppc: intro.4 share/man/man4/man4.sparc: intro.4 share/man/man4/man4.sparc64: intro.4 share/man/man4/man4.vax: intro.4 share/man/man4/man4.zaurus: intro.4 Log message: Restore the true Copyright notice and license of intro(4) that various people illegally replaced with their own fabrications. Use the correct years when the original file was actually written and changed; the original in part listed wrong years. Some of the notices regarding later changes can be dropped because none of the respective text remains. ok sobrado@ jmc@ miod@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 06:31:52 Modified files: www/phpvirtualbox: Makefile www/phpvirtualbox/pkg: README Log message: Take maintainer. Drop the HTTP root directory symlink advise; most people will use a virtualhost. Updated extpack version. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/19 06:32:08 Modified files: regress/lib/libc/strtol: strtoltest.c Log message: Fix on 32bit platforms where 0xdeadbeef > LONG_MAX. To avoid making tests machine dependent, only test values inside 32bit LONG_{MIN,MAX} and outside 64bit LONG_{MIN,MAX}, but none in between. While here, cover 32bit edge cases, negative values, and overflows. ok jsing@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/19 06:52:02 Modified files: x11/lablgtk2 : Makefile Added files: x11/lablgtk2/patches: patch-src_ml_gobject_c Log message: Fix segfault triggered by unison. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/19 06:56:23 Modified files: net/unison/stable: Makefile Added files: net/unison/stable/patches: patch-ubase_util_ml Log message: Fix segfault in module UPrintf by using the stdlib instead. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/19 08:32:24 Modified files: lib/libssl/src/ssl: s3_clnt.c s3_srvr.c Log message: remove obfuscating parens. man operator is your friend. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/19 10:02:35 Modified files: lib/libssl/src/ssl: ssl_ciph.c Log message: Add CHACHA20 as a cipher symmetric encryption alias. From Ming CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/19 10:05:13 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: .py files no longer need to be special, as the timestamps are stored in the plist itself, so there's no longer any worry of the timestamp not getting updated and python throwing a fit. CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/19 10:08:26 Modified files: www/selfoss : Makefile distinfo www/selfoss/pkg: PLIST README Log message: Update selfoss to 2.12 OK aja@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/19 10:42:28 Modified files: net/vpnc-scripts: Makefile net/vpnc-scripts/pkg: PLIST Log message: @sample /etc/vpnc-script with mode 555, requested by gonzalo@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/19 10:43:19 Modified files: sys/arch/armv7/imx: imxccm.c Log message: add missing break statements to imxccm_get_fecclk() tested by matthieu@ on Sabre lite CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/19 10:45:55 Modified files: sys/arch/zaurus/dev: zaurus_audio.c Log message: add missing break statements giving alaw encoding a chance of working instead of returning EINVAL. ok miod@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/19 10:50:21 Modified files: sys/sys : errno.h Log message: Move EHOSTUNREACH, EOVERFLOW and ECANCELED out from under __BSD_VISIBLE since modern POSIX specifies them. OK guenther@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/19 11:17:04 Modified files: share/man/man4/man4.armv7: dmtimer.4 edma.4 gptimer.4 imxesdhc.4 intc.4 omap.4 omdog.4 prcm.4 sitaracm.4 Log message: Not Everything Is A Headline! or How I Attempted To Halt The March Of Noun Capitalisation In Nd Lines; CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/19 11:34:06 Modified files: sys/arch/macppc/macppc: machdep.c sys/arch/socppc/socppc: machdep.c Log message: Use config_suspend_all(9). CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/19 12:21:14 Modified files: sys/arch/hppa/hppa: machdep.c sys/arch/hppa64/hppa64: machdep.c Log message: Use config_suspend_all(9). CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/19 14:02:25 Modified files: sys/arch/amd64/amd64: acpi_machdep.c machdep.c sys/arch/i386/i386: acpi_machdep.c apm.c machdep.c sys/dev/acpi : acpi.c sys/kern : subr_hibernate.c Log message: Use config_suspend_all(9). CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/19 14:12:27 Modified files: devel/ruby-rake-remote_task: Makefile devel/ruby-zentest: Makefile graphics/ruby-mini_magick: Makefile Log message: Remove unnecessary RDEP on devel/ruby-hoe CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/19 14:21:05 Modified files: devel/ruby-transaction-simple: Makefile distinfo devel/ruby-transaction-simple/pkg: PLIST Log message: Update to transaction-simple 1.4.0.2 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/19 14:36:01 Modified files: graphics/ruby-gruff: Makefile distinfo graphics/ruby-gruff/pkg: PLIST Log message: Update to gruff 0.3.7 Update HOMEPAGE. Update test code. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/19 14:47:21 Modified files: graphics/ruby-color: Makefile distinfo graphics/ruby-color/pkg: PLIST Log message: Upgrade to color 1.4.2 Update HOMEPAGE. Disable tests as they require a higher version of minitest than the one in ports. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/19 14:58:39 Modified files: archivers/xz : Makefile distinfo archivers/xz/patches: patch-config_h_in archivers/xz/pkg: PLIST Added files: archivers/xz/patches: patch-src_liblzma_Makefile_in patch-tests_xzgrep_expected_output Log message: maintenance update to 5.0.6 CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/09/19 15:28:32 Modified files: usr.sbin/slowcgi: slowcgi.c Log message: Instead of doing the fcntl(2) and ioctl(2) song and dance just tell socket(2) and accept4(2) that we want non-blocking-close-on-exec sockets. OK benno@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/19 16:23:29 Log message: Import editors/le ok zhuk@ LE - text editor utilizing curses library for screen output. Here are its features: various operations with stream and rectangular blocks, search and replace with full regular expressions, text formatting, undelete/uninsert, hex editing, tunable key sequences, tunable colors, tunable syntax highlighting, mouse support via ncurses. Can use mmap to edit very large files or even devices. Submitted by Ivan Ivanov with patch from zhuk@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140919 N ports/editors/le/Makefile N ports/editors/le/distinfo N ports/editors/le/pkg/DESCR N ports/editors/le/pkg/PLIST N ports/editors/le/patches/patch-src_regex_c No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/19 16:23:49 Modified files: editors : Makefile Log message: +le CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/19 16:35:51 Modified files: graphics/opencv/patches: patch-apps_haartraining_CMakeLists_txt Log message: Breaking news from land of zhuk@: OpenCV was re-broken! Well, because it's usually better to commit _after_ "make update-patches"... Sorry, sthen@ and naddy@ (and, probably, others). CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/19 17:11:04 ports/math/veusz/patches Update of /cvs/ports/math/veusz/patches In directory cvs.openbsd.org:/tmp/cvs-serv23169/patches Log Message: Directory /cvs/ports/math/veusz/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/19 17:12:19 Modified files: math/veusz : Makefile distinfo Added files: math/veusz/patches: patch-pyqtdistutils_py Log message: Bugfix update to 1.21.1 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/19 21:03:19 Modified files: emulators/qemu : Makefile distinfo emulators/qemu/patches: patch-configure Log message: Update to QEMU 2.1.1. ok bcallah@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/19 23:40:03 Modified files: security/libgpg-error: Makefile distinfo Removed files: security/libgpg-error/patches: patch-src_gpgrt-int_h Log message: Update to libgpg-error-1.16. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/20 00:10:21 Modified files: graphics/shotwell: Makefile distinfo graphics/shotwell/patches: patch-Makefile graphics/shotwell/pkg: PLIST Log message: Update to shotwell-0.20.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/20 00:34:53 Modified files: devel/dconf : Makefile distinfo devel/dconf/patches: patch-editor_Makefile_in devel/dconf/pkg: PLIST-editor PLIST-main Log message: Update to dconf-0.22.0. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/20 01:41:14 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: need meta stuff that tells me those are "real files" to not create extra chunks at the beginning of the package... Also, be very verbose about everything. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/20 02:01:31 Added files: regress/usr.sbin/pkg_add: extract_chunks Log message: a small debug script to extract chunks from a chunked archive, as it is very difficult to do so with standard tools CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/20 03:04:31 Modified files: usr.sbin/pkg_add/OpenBSD: Signer.pm Log message: gzip timestamps are not needed there. In fact, they produce gratuitous differences CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/20 03:28:25 Modified files: sys/arch/alpha/alpha: machdep.c sys/arch/arm/xscale: pxa2x0_apm.c sys/arch/armish/armish: armish_machdep.c sys/arch/armv7/armv7: armv7_machdep.c sys/arch/aviion/aviion: machdep.c sys/arch/landisk/landisk: machdep.c sys/arch/loongson/dev: apm.c sys/arch/loongson/loongson: machdep.c sys/arch/luna88k/luna88k: machdep.c sys/arch/octeon/octeon: machdep.c sys/arch/sgi/sgi: machdep.c sys/arch/solbourne/solbourne: machdep.c sys/arch/sparc/sparc: machdep.c sys/arch/vax/vax: machdep.c sys/arch/zaurus/dev: zaurus_apm.c sys/arch/zaurus/zaurus: zaurus_machdep.c Log message: Use config_suspend_all(9). ok mpi@, uebayasi@, dlg@ CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/20 03:35:54 Modified files: regress/usr.sbin/pkg_add: extract_chunks Log message: texlive blasts thru the 999 chunks barrier CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/20 03:59:52 Modified files: etc : group etc/mail : aliases Log message: Drop smmsp group and alias. ok matthieu@ miod@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/20 10:15:16 Modified files: sys/dev/pci : agpvar.h sys/arch/i386/pci: agp_machdep.c sys/arch/amd64/pci: agp_machdep.c sys/dev/pci/drm/i915: i915_gem_execbuffer.c Log message: On i386, agp_map_subregion might sleep, which is not allowed in some of the inteldrm code. Fix this by adding new interfaces that can map a single page without sleeping and use that in the execbuffer fast path that needs this "atomic" behaviour. Should fix the panic I've seen under memory pressure on i386. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/20 10:18:24 Modified files: sys/scsi : scsi_base.c Log message: Fix bug in taskq conversion that would lead to a null pointer dereference. ok krw@, jsg@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/20 10:23:45 Modified files: devel/glib2 : Makefile distinfo devel/glib2/patches: patch-configure_ac devel/glib2/pkg: PLIST Removed files: devel/glib2/patches: patch-gio_gapplication-tool_c patch-gio_gapplication_c patch-gio_gnetworkmonitornetlink_c patch-gio_gtlscertificate_c patch-glib_gstrfuncs_c patch-gobject_Makefile_in Log message: Update to glib2-2.40.1. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/20 11:46:24 Modified files: x11/bwidget : Makefile distinfo Removed files: x11/bwidget/patches: patch-tests_entry_test Log message: Update to 1.9.8. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/20 12:40:27 Modified files: net/ircII : Makefile distinfo net/ircII/patches: patch-Makefile_in patch-configure patch-doc_ircII_1 patch-source_log_c net/ircII/pkg : PLIST Log message: update to 20140831: adds support for SSL; ok brad@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/20 14:30:09 Modified files: textproc/py-sphinx: Makefile distinfo textproc/py-sphinx/pkg: PLIST Removed files: textproc/py-sphinx/patches: patch-sphinx_writers_manpage_py Log message: update to py-sphinx 1.2.3, from maintainer frantisek holop CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/20 14:30:18 Modified files: sbin/ifconfig : ifconfig.8 Log message: provide a hint for enabling jumbo frames, since we removed it from the driver pages; CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/20 14:37:44 Modified files: telephony/asterisk: Makefile distinfo telephony/asterisk/pkg: PLIST-main Log message: security update to asterisk 11.12.1, "AST-2014-010: Remote crash when handling out of call message in certain dialplan configurations" https://issues.asterisk.org/jira/browse/ASTERISK-24301 CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/20 15:00:48 Modified files: lang/obc : Makefile Log message: Unbreak bulk builds. tclsh is used at build time but OCaml doesn't bring it automatically anymore. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/20 15:07:20 Modified files: sysutils/ruby-shadow: Makefile sysutils/ruby-shadow/pkg: PLIST Log message: Fix build with ruby21 FLAVOR OK jasper@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/20 15:17:43 Modified files: sys/dev/pci/drm: drm_linux.h sys/dev/pci/drm/i915: i915_gem.c Log message: Make another fast path properly atomic. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/20 19:25:52 Modified files: . : 56.html lyrics.html Added files: images : 56song.jpg CaptainTedu.jpg Log message: release the 5.6 song early (normal practice) this release theme comes primarily from the sick mind of Philip Guenther CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/20 22:29:42 Modified files: sys/dev/isa : pcppi.c Log message: Directly include sys/timeout.h so we don't depend on indirectly including it via dev/ic/pckbcvar.h Fixes kernel builds without ukbd(4) and pckbd(4). From Atticus on tech@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/20 23:06:23 Modified files: regress/lib/libc/regex: tests Log message: Add support for word anchors \< and \> to regex regression tests. These are copied from the existing [[:<:]] and [[:>:]] tests. CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/09/20 23:29:47 Modified files: usr.bin/cu : xmodem.c Log message: Fix an invalid escape sequence. ok nicm@ CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/09/20 23:33:49 Modified files: usr.sbin/ldapd : auth.c filter.c modify.c parse.y Log message: eliminate the use of a gcc C extension (conditionals with omitted operands). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/21 01:53:19 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: final bulk shows chunking to happen in all the right places, and signing works correctly as well. So activate this. This basically makes package snapshots rsync-friendly with a low-tech approach. Instead of having a patched gzip, we borrow from other archive formats, and cut the archive every few files. Since the files are already sorted in order of date of modification, packages that don't change tend to end with identical gzip archives. Note that this will still work when/if we transition to bzip2/xz packages... CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/21 02:58:45 Modified files: devel/help2man : Makefile Log message: gmake is horrible, shun it. okay sthen@, aja@ (+ a big comment explaining why) CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/21 03:02:47 Modified files: editors/calligra: Makefile Log message: parallel, okay zhuk@ (tends to red-lantern some bulks otherwise). CVSROOT: /cvs Module name: src Changes by: sasano@cvs.openbsd.org 2014/09/21 05:07:27 Modified files: sys/dev/pci : pcidevs Log message: add Winchiphead CH382 vendor/device ID ok by henning@ CVSROOT: /cvs Module name: src Changes by: sasano@cvs.openbsd.org 2014/09/21 05:08:26 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/21 06:14:34 Modified files: lib/libssl/src/crypto/asn1: a_mbstr.c Log message: Fix a memory leak in the error path in ASN1_mbstring_ncopy(). Replace an if() posse with a switch() statement in traverse_string(). Remove unnecessary casts in cpy_*(), with tweaks from guenther@; ok bcook@ jsing@ guenther@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/21 06:14:45 Modified files: print/cups : Makefile Log message: Drop unneeded CONFIGURE_ARGS. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/21 06:17:42 Modified files: lib/libssl/src/crypto/asn1: a_enum.c Log message: a_enum.c used to be a copy of a_int.c with s/INTEGER/ENUMERATED/g , but some changes an a_int.c did not get applied to a_enum.c; despite style changes, make sure BN_to_ASN1_ENUMERATED() correctly handles a zero value the same way BN_to_ASN1_INTEGER() does. ok bcook@ beck@ jsing@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/21 06:18:29 Modified files: archivers/xz : Makefile distinfo Removed files: archivers/xz/patches: patch-src_liblzma_Makefile_in Log message: update to 5.0.7: fix invalid Libs.private value in liblzma.pc CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/21 07:02:54 Modified files: meta/gnome : Makefile meta/gnome/pkg : README-main Log message: Re-depend on x11/gnome/initial-setup and add a note about how to run the welcome tour if wanted. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/21 07:03:56 Modified files: x11/gnome/initial-setup: Makefile Added files: x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_keyboard_cc-common-language_c patch-gnome-initial-setup_pages_language_cc-common-language_c patch-gnome-initial-setup_pages_language_cc-language-chooser_c patch-gnome-initial-setup_pages_region_cc-common-language_c Log message: Fix for our broken locales. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/21 07:43:25 Modified files: usr.bin/make : varmodifiers.c Log message: plug a small memory leak, fairly infrequent. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/09/21 07:44:45 Modified files: distrib/alpha/iso: Makefile distrib/amd64/iso: Makefile distrib/hppa/iso: Makefile distrib/i386/iso: Makefile distrib/macppc/iso: Makefile distrib/sgi/iso: Makefile distrib/sparc/iso: Makefile distrib/sparc64/iso: Makefile distrib/vax/iso: Makefile Log message: xetc set does not go onto little iso CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/21 08:00:16 Modified files: www/nginx : Makefile distinfo Added files: www/nginx/patches: lua-lua-nginx-module_src_ngx_http_lua_socket_tcp_c Log message: fix and update the lua flavor CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/09/21 08:01:15 Modified files: distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/21 08:15:01 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Decouple polled commands from the interrupt handler. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/21 08:52:37 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Don't request an ACK from the server if we're polling. CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/21 10:14:52 Modified files: sys/arch/amd64/amd64: lapic.c sys/arch/i386/i386: lapic.c Log message: Don't check LAPIC_DLSTAT_BUSY again after an IPI Depending on DIAGNOSTICS, i82489_icr_wait() will either spin or panic in this case. Therefore there is no need to check the flag again. On virtualization, this saves one VMEXIT per IPI. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/21 10:20:16 Modified files: sys/arch/aviion/aviion: eh.S Log message: Reset fault status registers to zero after reading them, even in the 2:1 CMMU-to-CPU ratio case. This is necessary at least on the AV530 family. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/09/21 10:29:56 Modified files: www/puppet-dashboard: Makefile www/puppet-dashboard/pkg: README puppet_dashboard.rc puppet_dashboard_workers.rc Log message: Fix, or more an ugly hack, after mysql -> mariadb switch, use LD_PRELOAD=libpthread.so., since investigation how to best upgrade, might take a bit longer. cluebat to the source of problem and fix from jeremy@ OK jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/21 10:47:45 Modified files: mail/smtp-vilter: Makefile Log message: fix now that libmilter headers have moved under /usr/local CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/21 10:50:24 Modified files: textproc/calibre: Makefile Log message: add b/rdep on py-xml, seems to be needed - failure to install bash-completions file with an "ImportError: No module named saxlib" in the backtrace via src/calibre/ebooks/lrf/pylrs/pylrs.py. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/21 10:52:11 Modified files: sys/dev/ic : re.c Log message: add a missing break statement in the RL_HWREV_8168E_VL case ok brad@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/21 10:54:02 Modified files: textproc/py-sphinx: Makefile Log message: unbreak last commit, py-* modules are not LIB_DEPENDS but BUILD_ and RUN_DEPENDS reported by nigel@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/21 11:11:04 Modified files: lib/libssl/src/ssl: ssl.h t1_lib.c Log message: Move the TLS padding extension under an SSL_OP_TLSEXT_PADDING option, which is off by default (instead of being enabled unconditionally). The TLS padding extension was added as a workaround for a bug in F5 SSL terminators, however appears to trigger bugs in IronPort SMTP appliances. Now the SSL client gets to choose which of these devices it wants to trigger bugs in... Ported from OpenSSL. Discussed with many. ok miod@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/21 11:32:41 Modified files: databases/mysqlcc: Makefile distinfo databases/mysqlcc/patches: patch-configure patch-mysqlcc_pro_in Removed files: databases/mysqlcc/patches: patch-src_main_cpp Log message: Update to mysqlcc 1.0.2. Fixes building with modern MySQL / MariaDB. ok sthen@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/21 11:44:37 Modified files: lib/libssl/src/doc/ssl: SSL_CTX_set_options.pod Log message: Document SSL_OP_TLSEXT_PADDING. From OpenSSL. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/21 13:00:06 Modified files: mail/geary : Makefile distinfo mail/geary/pkg : PLIST Log message: Update to geary 0.8.0, reminded by ajacoutot@ and jasper@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/21 13:17:22 Modified files: databases/mariadb: Makefile Log message: BROKEN-powerpc: rpl_parallel.cc:800: error: 'rli' was not declared in this scope CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/21 18:03:48 Modified files: etc : Makefile Log message: Get rid of intermediate file handling during sumfile creation by first changing to $DESTDIR and then simply piping to xargs. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/21 19:04:58 Modified files: sys/kern : subr_pool.c sys/sys : pool.h Log message: rework the pool code to make the locking more obvious (to me at least). after this i am confident that pools are mpsafe, ie, can be called without the kernel biglock being held. the page allocation and setup code has been split into four parts: pool_p_alloc is called without any locks held to ask the pool_allocator backend to get a page and page header and set up the item list. pool_p_insert is called with the pool lock held to insert the newly minted page on the pools internal free page list and update its internal accounting. once the pool has finished with a page it calls the following: pool_p_remove is called with the pool lock help to take the now unnecessary page off the free page list and uncount it. pool_p_free is called without the pool lock and does a bunch of checks to verify that the items arent corrupted and have all been returned to the page before giving it back to the pool_allocator to be freed. instead of pool_do_get doing all the work for pool_get, it is now only responsible for doing a single item allocation. if for any reason it cant get an item, it just returns NULL. pool_get is now responsible for checking if the allocation is allowed (according to hi watermarks etc), and for potentially sleeping waiting for resources if required. sleeping for resources is now built on top of pool_requests, which are modelled on how the scsi midlayer schedules access to scsibus resources. the pool code now calls pool_allocator backends inside its own calls to KERNEL_LOCK and KERNEL_UNLOCK, so users of pools dont have to hold biglock to call pool_get or pool_put. tested by krw@ (who found a SMALL_KERNEL issue, thank you) noone objected CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/21 19:09:29 Modified files: sys/dev : vscsi.c Log message: the kn_hook member of a knote is a void *, so we dont have to cast to or from it. ok gcc CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/21 22:33:45 Modified files: sys/arch/i386/i386: db_disasm.c Log message: Add missing format specifier. Pointed out by LLVM. db_disasm.c:1018:13: error: format string is not a string literal (potentially insecure) ok miod@ CVSROOT: /cvs Module name: xenocara Changes by: todd@cvs.openbsd.org 2014/09/22 00:17:22 Modified files: distrib/sets/lists/xbase: mi distrib/sets/lists/xshare: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/22 01:07:27 Modified files: x11/gnome/totem-pl-parser: Makefile distinfo Log message: Update to totem-pl-parser-3.10.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/22 01:45:24 Modified files: x11/gnome/initial-setup: Makefile x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_keyboard_cc-common-language_c Added files: x11/gnome/initial-setup: patch-gnome-initial-setup_pages_keyboard_cc-common-language_c x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_region_cc-region-chooser_c Log message: More locales fixes. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/22 02:01:50 Modified files: databases/redis: Makefile distinfo Log message: Bugfixing update to 2.8.17: plugged a memory leak in the hiredis library. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/22 02:13:33 Modified files: security/ccid : Makefile distinfo Log message: Update to ccid-1.4.18. Added support for: . Cherry Cherry TC 1100 . Cherry Smart Card Reader USB . Cherry Smartcard Keyboard G87-1xx44 . FujitsuTechnologySolutions GmbH Keyboard KB SCR2 . Lenovo Lenovo USB Smartcard Keyboard . Yubico Yubikey NEO OTP+U2F+CCID . Yubico Yubikey NEO U2F+CCID . eID_R6 001 X8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/22 02:25:57 Modified files: graphics/libraw: Makefile Log message: add mips64 to BROKEN list CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/22 02:26:16 Modified files: sys/arch/sparc64/dev: vdsp.c Log message: Drop the kernel lock when copying data to/from the other domain during read/write operations. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/22 03:24:55 Modified files: x11/awesome : Makefile Added files: x11/awesome/patches: patch-lib_awful_widget_button_lua_in Log message: Merge fix from the stable branch: awful.widget.button: Override :set_image() to do the right thing (upstream git commit 03b432cdff1146f30fa398b7ca6eb4a6b8e96f20) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/22 03:50:43 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/patches: patch-setup_py www/youtube-dl/pkg: PLIST Log message: Update to youtube-dl-2014.09.19 CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/22 04:45:06 Modified files: sys/arch/macppc/macppc: cpu.c Log message: Enable power saving modes for IBM PowerPC 970 CPUs. ok miod@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/22 05:37:42 Modified files: x11/lablgtk2 : Makefile x11/lablgtk2/patches: patch-src_ml_gobject_c Added files: x11/lablgtk2/patches: patch-CHANGES patch-src_ml_gtk_c patch-src_ml_gtkfile_c patch-src_ml_gtkmenu_c patch-src_ml_gtktext_c patch-src_wrappers_c patch-src_wrappers_h Log message: Backport upstream fix for lablgtk segfaults in unison: Upstream commit 60a61fabb5d9836e69130bf7c07eea206fe20928 2014.09.20 [Jacques] * CAMLparam initializes with Val_unit rather than 0 since ocaml 4.02. Fix a related problem in ml_gobject (Christopher Zimmermann, PR#1425) * Also factorize some code to use Val_option_* ok avsm@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 06:12:23 Modified files: sys/arch/hppa/hppa: lock_machdep.c machdep.c sys/arch/hppa/include: atomic.h lock.h Log message: implement atomic_{cas,swap}_{uint,ulong,ptr} and atomic_{add,sub}_{int,long}_nv. sys/atomic.h turns these into the rest of the atomic api. on uniprocessor hppa systems "atomic" operations are implemented as a non-interruptable sequence by disabling all interrupts on the cpu, doing the operation, and then restoring the interrupt mask. this isnt enough on MP systems, so we added a global atomic memory mutex that is taken inside the interrupt disabling above to coordinate operations between cpus. this is a lot of overhead though cos mutexes dance around with ipls, which is unecessary in our case because of the interrupt disabling that is already done. also, hppa spinlocks are implemented with ldcw which requires the word it operates on to be 16 byte aligned. mutexes arent guaranteed to have this alignment so they compensate by having lots of words inside themselves so they can hit the appropriate one to use for the ldcw op. with this in mind, this change pulls __cpu_simple_locks, which are simply ldcw spinlocks with a 16 byte aligned word, out of src/sys/arch/hppa/include/lock.h into src/sys/arch/hppa/include/atomic.h so atomic.h can use them. lock.h includes atomic.h, so it still gets and provides the same functionality as before. finally, this also pulls the rwlock cas implementation apart. cas ops now share the same serialising lock on MP systems as the other memory operations, and rw_cas is defined as a wrapper around atomic_cas_uint. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/22 06:36:06 Modified files: lib/libssl/src/ssl: s3_both.c Log message: It is possible (although unlikely in practice) for peer_finish_md_len to end up with a value of zero, primarily since ssl3_take_mac() fails to check the return value from the final_finish_mac() call. This would then mean that an SSL finished message with a zero-byte payload would successfully match against the calculated finish MAC. Avoid this by checking the length of peer_finish_md_len and the SSL finished message payload, against the known length already stored in the SSL3_ENC_METHOD finish_mac_length field (making use of a previously unused field). ok miod@ (a little while back) CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/22 06:58:04 Modified files: devel/ocaml-react: Makefile distinfo Log message: Update to 1.2.0 ok avsm@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/22 07:04:00 Modified files: net/unifi : Makefile distinfo net/unifi/pkg : PLIST Log message: update to unifi 3.2.5 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/22 07:18:50 Modified files: lib/libssl/src/ssl: s3_both.c Log message: Also check the result from final_finish_mac() against finish_mac_length in ssl3_send_finished(). While this previously checked against a zero return value (which could occur on failure), we may as well test against the expected length, since we already know what that is. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/22 07:35:43 Modified files: net/py-msgpack : Makefile distinfo Log message: Update to py-msgpack-0.4.2. CVSROOT: /cvs Module name: src Changes by: rapha@cvs.openbsd.org 2014/09/22 08:02:38 Modified files: share/man/man4/man4.armv7: Makefile Added files: share/man/man4/man4.armv7: a1xintc.4 sunxi.4 sxiccmu.4 sxidog.4 sxie.4 sxipio.4 sxitimer.4 Log message: Add some missing manual pages for armv7 (sunxi) drivers. Using feedback from jmc@. ok jmc@ syl@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/22 08:26:22 Modified files: lib/libssl/src/ssl: ssl_sess.c t1_lib.c Log message: Refactor and simplify the ECC extension handling. The existing code effectively built two "static" data structures - instead of doing this, just use static data structures to start with. From OpenSSL (part of a larger commit). ok miod@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/22 09:14:48 Modified files: lang/ruby/2.0 : Makefile distinfo Log message: Update to ruby 2.0.0p576. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/22 09:15:42 Modified files: lang/ruby/2.1 : Makefile distinfo lang/ruby/2.1/patches: patch-configure lang/ruby/2.1/pkg: PLIST-main PLIST-ri_docs Log message: Update to ruby 2.1.3. Add patch to work around bash-specific syntax in configure. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/22 09:17:01 Modified files: lang/jruby : Makefile distinfo lang/jruby/pkg : PLIST Log message: Update to jruby 1.7.15. Fix bad file modes in newly included gems. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/22 09:18:45 Modified files: sysutils/god : Makefile distinfo sysutils/god/pkg: PLIST Removed files: sysutils/god/patches: patch-lib_god_contacts_email_rb Log message: Update to god 0.7.22, the last 0.7 release. Remove test code as tests now require root access, and appear to hang when run as root. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/22 09:20:05 Modified files: devel/ruby-hoe : Makefile distinfo devel/ruby-hoe/pkg: PLIST Log message: Update to hoe 3.12.0. Remove test code as tests now require minitest 5.3+, which isn't in ports. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/22 09:21:00 Modified files: lang/ruby : ruby.port.mk Log message: Make ruby 2.1 the default ruby version CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/22 10:13:02 Modified files: libexec/ld.so/i386: ldasm.S Log message: Correct the token used. Pointed out by LLVM. ldasm.S:111:74: error: unexpected token in '.type' directive .section ".text" ; .align 4 ; .global _dl_issetugid ; .type _dl_issetugid%function ;_dl_issetugid: ; movl $253,%eax; int $0x80 ; jb .L_cerr ; ret ^ ok guenther@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/22 10:17:32 Modified files: share/man/man8 : rc.subr.8 Log message: obvious markup typo; frantisek holop CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/22 10:27:03 Modified files: share/man/man8 : rc.subr.8 Log message: add obviously forgotten daemon_timeout default and mention that it can be overridden CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/22 10:38:07 Modified files: x11/gnome/settings-daemon: Makefile distinfo Log message: Update to gnome-settings-daemon-3.12.3. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/22 10:54:11 Modified files: lang/tcl/8.5 : Makefile distinfo lang/tcl/8.5/patches: patch-unix_Makefile_in lang/tcl/8.5/pkg: DESCR PLIST Removed files: lang/tcl/8.5/patches: patch-unix_installManPage Log message: Update to 8.5.16. Drop threaded FLAVOR. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/22 10:55:11 Modified files: x11/tk/8.5 : Makefile distinfo x11/tk/8.5/patches: patch-unix_Makefile_in x11/tk/8.5/pkg : DESCR PLIST Removed files: x11/tk/8.5/patches: patch-unix_installManPage Log message: Update to 8.5.16. Drop threaded FLAVOR. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/22 11:23:47 Modified files: games/valyriatear: Makefile distinfo games/valyriatear/pkg: PLIST Log message: Update to 1.0.0 Testing/tweaks from kirby@ and bentley@ ok kirby@ CVSROOT: /cvs Module name: src Changes by: sasano@cvs.openbsd.org 2014/09/22 15:16:20 Modified files: sys/dev/pci : pucdata.c Log message: add Winchiphead CH382 support. CH382 has 2S/2S1P/1P configuration, the diff supports 2S/2S1P only (2S1P works as 2S). ok by deraadt@ and kettenis@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/22 16:06:49 Modified files: x11/tk/8.5 : distinfo Log message: Upstream updated the distfile about a day after release with MacOSX fixes. Nothing else has changed. Thanks to jasper@ for the heads-up. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 17:16:30 Modified files: sys/net : bpf.c Log message: if you request a read timeout and then use kqueues to wait for them, you end up waiting until the ring is full cos the timeout doesnt get set up when the knote is registered. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 17:19:59 Modified files: sys/net : bpf.c Log message: it's easy to allow bpfwrites bigger than MCLBYTES now that we have large cluster pools and MCLGETI. we could chain mbufs if we want to go even bigger. with a fix from Mathieu- CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 17:40:46 Modified files: sys/net : bpf.c Log message: stash a pointer to bpf_d in the knotes kn_hook instead of the device id. we refcount the bpf_d memory correctly so it cant go away. possibly worse is the bpf minor id could be reused between the kq calls, so this seems safer to me. also avoids a list walk on each op cos the ptr is just there. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 17:48:58 Modified files: sys/net : bpf.c Log message: remove a stupid comment above bpfilterattach about how we dont do anything in it cos its only called on new systems, when it actually does. we dont care about old or new systems, just ours. the code is called, the fact that it exists is enough to demonstrate that. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 18:26:11 Modified files: sys/net : bpf.c Log message: lock around the sysctl code that sets the bpf buffer sizes so if we ever get multiple processes in the kernel these sets cant race and allow people to set the default greater than the max. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/22 20:53:59 Modified files: sys/dev/ic : smc91cxx.c Log message: dont need to call bpfdetach cos if_detach does it for you. delete some stupid comments while there. ok deraadt@ brad@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/22 23:47:46 Modified files: x11/gnome/nautilus-sendto: Makefile distinfo x11/gnome/nautilus-sendto/pkg: PLIST Added files: x11/gnome/nautilus-sendto/patches: patch-src_nautilus-sendto_c Log message: Update to nautilus-sendto-3.8.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/22 23:49:55 Modified files: fonts/cantarell-fonts: Makefile distinfo Log message: Update to cantarell-fonts-0.0.16. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/22 23:57:14 Modified files: sys/dev/pci/drm/ttm: ttm_bo_vm.c Log message: Make use of the red-black tree as the original Linux code did instead of interating over the tree like a list. From Andriy Gapon in FreeBSD. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 00:15:21 Modified files: devel/glib2 : Makefile distinfo devel/glib2/patches: patch-configure_ac devel/glib2/pkg: PLIST Removed files: devel/glib2/patches: patch-glib_goption_c Log message: Update to glib2-2.40.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 00:43:54 Modified files: x11/lumina : Makefile distinfo Removed files: x11/lumina/files: LuminaOS-OpenBSD.cpp x11/lumina/patches: patch-libLumina_LuminaXDG_cpp patch-libLumina_libLumina_pro patch-lumina-config_lumina-config_pro patch-lumina-config_mainUI_cpp patch-lumina-desktop_SettingsMenu_cpp patch-lumina-desktop_lumina-desktop_pro patch-lumina-fm_lumina-fm_pro patch-lumina-open_lumina-open_pro patch-lumina-screenshot_lumina-screenshot_pro Log message: Update to lumina-0.6.3.1411413020. CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/09/23 00:47:37 Modified files: usr.bin/audioctl: audioctl.c Log message: Hide unused, duplicate and/or misleading fields. ok armani, shadchin, kspillner CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 02:10:58 Removed files: x11/gnome/initial-setup: patch-gnome-initial-setup_pages_keyboard_cc-common-language_c Log message: Bogus, spotted by stsp@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 02:39:52 Modified files: x11/gnome/nautilus-sendto: Makefile x11/gnome/nautilus-sendto/patches: patch-src_nautilus-sendto_c Log message: Merge patch from upstream. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/23 02:41:10 Modified files: databases/postgresql: Makefile databases/postgresql/pkg: README-server postgresql.rc Log message: use -w when starting postgresql, to wait for startup to complete before continuing. suggested by frantisek holop, ok ajacoutot@ while there, s/an another/another/ in README CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/23 03:21:52 Modified files: sysutils/ruby-facter: Makefile sysutils/ruby-puppet/3: Makefile Log message: Remove FAKE_AS_ROOT from these two ports, the failures seem to have vanished. These are the last ports which needed to run the fake-install stage as root, so now with the exception of pkg_add'ing dependencies (i.e. pkg_add code plus a few programs run from @exec hooks in PLISTs) all packages can be built as non-root. ok espie@ jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/23 03:42:41 Modified files: net/isc-bind : Makefile distinfo net/isc-bind/pkg: PLIST Removed files: net/isc-bind/patches: patch-lib_isc_random_c Log message: update to BIND 9.10.1 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/23 04:13:40 Modified files: net/isc-dhcp : Makefile distinfo net/isc-dhcp/patches: patch-client_Makefile_in patch-server_dhcpd_c Removed files: net/isc-dhcp/patches: patch-common_socket_c Log message: Update to isc-dhcp 4.3.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 06:02:40 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Add 5.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 06:08:03 Modified files: net/zeromq : Makefile distinfo net/zeromq/patches: patch-src_ipc_listener_cpp patch-src_tcp_listener_cpp net/zeromq/pkg : PLIST Added files: net/zeromq/patches: patch-tests_Makefile_in patch-tests_test_abstract_ipc_cpp Removed files: net/zeromq/patches: patch-configure Log message: Update to zeromq-4.0.4. ok jasper@ CVSROOT: /cvs Module name: src Changes by: rapha@cvs.openbsd.org 2014/09/23 06:08:13 Modified files: sys/dev/sdmmc : sdmmc_mem.c sdmmcreg.h Log message: Fix high capacity (> 2GB) eMMC support. Based on a diff by Cedric Tessier, nezetic at gmail dot com, thanks! Discussed with and ok jsg@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 06:08:45 Modified files: net/py-zmq : Makefile distinfo net/py-zmq/pkg : PLIST Log message: Update to py-zmq-14.3.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/23 06:09:40 Modified files: www/mongrel2 : Makefile distinfo www/mongrel2/patches: patch-Makefile www/mongrel2/pkg: PLIST Added files: www/mongrel2/patches: patch-src_polarssl_include_polarssl_dhm_h Log message: Update to mongrel2-1.9.1 to cope with recent zeromq update. ok jasper@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/23 07:27:51 Modified files: sys/dev/pci : pcidevs Log message: add Bay Trail and Braswell SMBus CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/23 07:28:27 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/23 07:29:30 Modified files: sys/dev/pci : ichiic.c Log message: add Bay Trail and Braswell SMBus CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/23 07:44:04 Modified files: audio/deadbeef : Makefile distinfo audio/deadbeef/files: Makefile.am audio/deadbeef/patches: patch-Makefile_am patch-configure_ac patch-junklib_c patch-playlist_c patch-plugins_aac_Makefile_am patch-plugins_alac_Makefile_am patch-plugins_ao_Makefile_am patch-plugins_artwork_artwork_c patch-plugins_c patch-plugins_converter_converter_c patch-plugins_flac_Makefile_am patch-plugins_gtkui_Makefile_am patch-plugins_gtkui_gtkui_c patch-plugins_gtkui_prefwin_c patch-plugins_lastfm_lastfm_c patch-plugins_mms_Makefile_am patch-plugins_musepack_Makefile_am patch-plugins_musepack_musepack_c patch-plugins_vorbis_Makefile_am patch-plugins_wavpack_wavpack_c audio/deadbeef/pkg: PLIST Added files: audio/deadbeef/patches: patch-plugins_gtkui_ddblistview_c patch-threading_pthread_c Removed files: audio/deadbeef/patches: patch-plugins_artwork_Makefile_am patch-plugins_cdda_Makefile_am patch-plugins_converter_Makefile_am patch-plugins_dca_Makefile_am patch-plugins_dumb_Makefile_am patch-plugins_ffap_Makefile_am patch-plugins_ffmpeg_Makefile_am patch-plugins_hotkeys_Makefile_am patch-plugins_lastfm_Makefile_am patch-plugins_m3u_Makefile_am patch-plugins_mpgmad_Makefile_am patch-plugins_notify_Makefile_am patch-plugins_nullout_Makefile_am patch-plugins_pltbrowser_Makefile_am patch-plugins_shellexec_Makefile_am patch-plugins_shellexecui_Makefile_am patch-plugins_shn_Makefile_am patch-plugins_sndfile_Makefile_am patch-plugins_tta_Makefile_am patch-plugins_vfs_curl_Makefile_am patch-plugins_vfs_zip_Makefile_am patch-plugins_vtx_Makefile_am patch-plugins_wavpack_Makefile_am Log message: Update to deadbeef-0.6.2 CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/23 07:45:48 Modified files: app/cwm : calmwm.h group.c screen.c Log message: Move stuff that doesn't belong in group_init; while here, explicitly initialize hideall and cycling. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/23 08:14:34 Modified files: audio/mpg123 : Makefile distinfo audio/mpg123/pkg: PLIST Log message: maintenance update to 1.20.1 CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/23 08:25:08 Modified files: app/cwm : calmwm.h group.c xutil.c Log message: Update _NET_CURRENT_DESKTOP with the screen's group_active->num. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/23 09:03:39 Modified files: audio/deadbeef : Makefile audio/deadbeef/patches: patch-plugins_artwork_artwork_c patch-plugins_c patch-plugins_gtkui_ddblistview_c Added files: audio/deadbeef/patches: patch-plugins_gtkui_ddblistview_h Log message: Merge fixes from the "0.6.2-fixes" branch: artwork: crash fix when file mask is empty (bug #1177) gtkui: fix random crash after closing playlist using menu (bug #1193) CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/23 09:16:29 Modified files: devel/gettext : Makefile distinfo devel/gettext/pkg: PLIST Removed files: devel/gettext/patches: patch-gettext-runtime_intl_Makefile_in Log message: update to 0.19.2: minor bug fixes CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/23 10:00:46 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to youtube-dl-2014.09.22.1 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/09/23 11:01:34 Modified files: security/tcltls: Makefile Log message: Fix usage of tcltls since SSLv2_method() got removed from LibReSSL. Fix from Dmitriy D. Czarkoff czarkoff AT gmail com incorporating feedback and OK from landry@, dcoppa@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/23 11:59:25 Modified files: sys/arch/amd64/stand/libsa: time.c sys/arch/i386/stand/libsa: time.c Log message: Fix constraint. We need a register here, and not a generic memory reference. We get lucky with GCC that it chooses a register for "p", but we can't blame clang for choosing a memory reference if we allow it to do so. Pointed out by LLVM. time.c:80:17: error: unexpected token in memory operand ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/23 12:19:21 Modified files: infrastructure/lib/DPB: Engine.pm Log message: refactor the engine code, so that new_path can put some stuff directly on the queue. This shaves significant cpu during initial scanning... CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/23 12:29:35 Modified files: . : lyrics.html Log message: fix a word CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/23 12:29:44 Modified files: . : hackathons.html Log message: wrapping issue CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/23 12:33:34 Modified files: sys/dev/acpi : acpi.c Log message: Release the acpi lock around calls to wsdisplay_suspend() and wsdisplay_resume(). The X server may adjust the display brightness just before/after the VT switch when suspending/resuming. In fact, it may already be blocked adjusting the display brightness for some reason unrelated to the suspend request. The VT switch request will eventually time out, but the delay is annoying and the failed VT switch will lead to problems after resume. Needed for a future update of the xf86-video-intel driver. ok mlarkin@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/23 12:55:32 Modified files: lang/clang : clang.port.mk Log message: bump revision. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/23 13:07:28 Modified files: devel/ruby-highline: Makefile Log message: Use testrb for testing, remove TDEP on devel/ruby-rdoc CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/23 13:54:47 Modified files: sys/kern : subr_pool.c Log message: Only compile poison-related code if DIAGNOSTIC instead of if !SMALL_KERNEL, for subr_poison.c will not get compiled at all on !DIAGNOSTIC kernels. Found the hard way by deraadt@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/23 14:01:11 Modified files: lib/libssl/src/crypto/x509: by_dir.c Log message: Fix regression introduced in revision 1.15 by using strndup() instead of strdup() to allocated directory list components. ok jsing@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/23 15:16:42 Modified files: sys/dev/pci : if_msk.c Log message: Enable MSI support. Tested with a number of chipsets. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/23 15:38:49 Modified files: multimedia/libvpx: Makefile Log message: Fix build on hppa by using -O1, from brad CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/23 15:48:28 Modified files: databases/mariadb: Makefile Log message: Use ONLY_FOR_ARCHS-server/-test instead of messing up with MULTI_PACKAGES, should unconfuse dpb on exotic archs. Note that powerpc is still BROKEN, for total lack of testing from MAINTAINER. With help from espie@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/23 16:41:21 Modified files: devel : Makefile Log message: Unlink ruby-echoe and ruby-rubyforge CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/23 16:45:35 Removed files: devel/ruby-echoe: Makefile distinfo devel/ruby-echoe/pkg: DESCR PLIST devel/ruby-rubyforge: Makefile distinfo devel/ruby-rubyforge/pkg: DESCR PLIST Log message: Remove ruby-echoe and ruby-rubyforge rubyforge has been completely dead for a while. echoe has no maintainer and hasn't been updated in many years, is a pure ruby gem with no dependencies, and it depends on rubyforge. No other ports depend on either. OK jca@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/23 17:06:18 Modified files: net/quagga : Makefile distinfo Log message: update to quagga-0.99.23.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/23 17:53:40 Modified files: security/libsodium: Makefile distinfo Log message: update to libsodium 0.71 (minor changes only; this is the second release candidate for 1.0) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/23 17:56:33 Modified files: net/dnscrypt-proxy: Makefile distinfo Log message: update to dnscrypt-proxy-1.4.1 CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/23 18:13:13 Modified files: sys/arch/hppa/stand/mkboot: mkboot.c sys/arch/hppa64/stand/mkboot: mkboot.c sys/dev/microcode/bwi/extract: extract.c Log message: Replace a few malloc() calls with reallocarray() so it checks for overflow. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/23 20:38:36 Modified files: audio/pithos : Makefile distinfo audio/pithos/patches: patch-setup_py audio/pithos/pkg: PLIST Log message: Update to 1.0.1 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/23 22:54:44 Modified files: sys/arch/sh/include: atomic.h Log message: implement atomic_{cas,swap}_{uint,long,ptr) and atomic_{add,sub}_{int,long} fixes from and ok miod@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 00:07:06 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register ruby-echo/ruby-rubyforge removal CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 00:17:56 Modified files: sysutils/ruby-puppet-lint: Makefile distinfo sysutils/ruby-puppet-lint/pkg: PLIST Log message: update to puppet-lint-1.1.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 00:27:41 Modified files: devel/ruby-rb-gsl: Makefile distinfo devel/ruby-rb-gsl/pkg: PLIST Log message: - switch to using rb-gsl and update to version 1.16.0.2 * unbreaks this gem with ruby > 1.9 breakage with ruby 2.1 pointed out by jeremy@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/24 00:34:37 Modified files: sys/arch/hppa/include: atomic.h Log message: jmatthew@ points out atomic_swap_foo takes two arguments, not three. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/24 00:36:07 Modified files: driver/xf86-video-geode/src: geode_msr.c Log message: Reduce diffs with upstreams. No functional change. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 00:40:44 Modified files: devel : Makefile Log message: don't restrict to building ,ruby19 for ruby-rb-gsl CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/24 01:38:04 Modified files: sys/arch/sh/include: atomic.h Log message: jmatthew@ found another case of me getting the number of args wrong to an atomic_swap_ptr. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/24 02:35:12 Modified files: sys/dev/pci : auich.c azalia.c Log message: Kill two generic DVACT_DEACTIVATE handlers since this event is now autoconf(9)ally passed to the children of a device. ok ratchov@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/24 03:13:20 Modified files: sys/kern : kern_sched.c Log message: Keep under #ifdef MULTIPROCESSOR the code that deals with SPCF_SHOULDHALT and SPCF_HALTED, these flags only make sense on secondary CPUs which are unlikely to be present on a SP kernel. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/24 03:24:22 Modified files: x11/ruby-dbus : Makefile Log message: changed default ruby -> need bump CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 03:30:48 Modified files: sysutils/monit : Makefile distinfo sysutils/monit/patches: patch-libmonit_src_system_Time_c patch-libmonit_test_InputStreamTest_c patch-libmonit_test_OutputStreamTest_c patch-src_sendmail_c patch-src_xml_c sysutils/monit/pkg: monit.rc Removed files: sysutils/monit/patches: patch-libmonit_test_TimeTest_c Log message: - update to monit-5.9 - remove unneeded daemon_flags from rc-script (from aja@) - undo upstream's time_t "fixes" after rejecting our fixes tested on i386 by aja@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/24 03:36:15 Modified files: x11/gnome/code-assistance: Makefile Log message: jeremy didn't bump CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/24 03:38:19 Modified files: sysutils/ruby-facter: Makefile Log message: make sure we don't grab stuff off HOME. also fix packaging error if HOME isn't readable, as can happen with chroot'd distributed builds. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 03:45:00 Modified files: sysutils/ruby-facter: Makefile Log message: cleanup after espie@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/24 04:07:02 Modified files: sysutils/ruby-puppet/3: Makefile Log message: same issue as ruby-facter, looks into $HOME CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/24 04:21:27 Modified files: net/rrdtool : Makefile Log message: missed ruby bump CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/24 04:35:39 Modified files: sys/dev/pci/drm: drm_drv.c Log message: fix the build when DRMDEBUG is defined CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/24 09:21:59 Modified files: x11/ruby-dbus : Makefile x11/gnome/code-assistance: Makefile net/rrdtool : Makefile Log message: Set MODRUBY_REV explicitly, instead of relying on default ruby version CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/24 10:16:29 Modified files: x11/ruby-dbus : Makefile x11/gnome/code-assistance: Makefile net/rrdtool : Makefile Log message: Remove setting of MODRUBY_REV explicitly, just use the default ruby discussed with aja@ and espie@ CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/09/24 12:17:27 Modified files: lang/node : Makefile distinfo lang/node/patches: patch-deps_npm_node_modules_node-gyp_lib_install_js lang/node/pkg : PLIST Removed files: lang/node/patches: patch-deps_v8_src_isolate_h Log message: Update to 0.10.32 which removes the need for isolate.h diff. goahead from landry@ and jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 12:38:14 Modified files: devel/ruby-rspec: Makefile Log message: disable rspec3 for the time being as the rspec2 vs rspec3 conflict is wreaking havoc on bulk builds reported by nigel@ and sthen@ ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/24 12:43:39 Modified files: devel/nspr : Makefile distinfo devel/nspr/patches: patch-nspr_configure_in devel/nspr/pkg : PLIST Log message: Update to NSPR 4.10.7. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/24 12:47:08 Modified files: security/nss : Makefile distinfo Log message: Security update to NSS 3.16.2.1. Fixes bug #1064636 / CVE-2014-1568: RSA signature malleability in NSS (sorry, that's all the information i could find) We'll update to 3.17.1 later.. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/24 12:51:15 Added files: www/mongrel2/patches: patch-src_polarssl_library_dhm_c Log message: Forgot to cvs add. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 12:56:04 Modified files: textproc/ruby-yard: Makefile distinfo textproc/ruby-yard/pkg: PLIST Log message: update to yard-0.8.7.4 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/24 13:16:18 Modified files: shells/bash : Makefile distinfo Log message: Security update to 4.3.25: Fix for CVE-2014-6271 (remote code execution through bash) CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/24 14:05:05 Modified files: shells/bash : Tag: OPENBSD_5_6 Makefile distinfo Log message: Security update to 4.3.25: Fix for CVE-2014-6271 (remote code execution through bash) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/24 14:06:14 Modified files: mail/enigmail : Makefile Log message: Add unzip to BDEP, since it's used during do-install.. noticed by rpe@, thanks! CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/24 15:11:57 Modified files: net/p5-Net-DNS : Makefile distinfo Log message: update p5-Net-DNS to 0.80 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/24 15:16:01 Modified files: shells/bash : Tag: OPENBSD_5_5 Makefile distinfo Removed files: shells/bash/patches: Tag: OPENBSD_5_5 patch-general_c Log message: Security update to 4.2.48: Fix for CVE-2014-6271 (remote code execution through bash) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/24 16:17:39 Added files: devel/ruby-rb-gsl/patches: patch-ext_gsl_matrix_complex_c patch-ext_gsl_vector_complex_c Removed files: devel/ruby-rb-gsl/patches: patch-ext_matrix_complex_c patch-ext_vector_complex_c Log message: i made you a patch, but i omitted it. from rpe@, ok jeremy@ committing now so nobody else wastes 15Gb on pointless logfiles CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/24 22:19:45 Modified files: sys/dev/ic : acx100.c acx111.c Log message: include bpfilter.h so the softc will be the same size in all files CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 00:55:47 Added files: devel/nspr/patches: patch-nspr_pr_tests_rwlockrank_c Log message: Fix c++-style comments breaking make test since we build with cc. #1072454 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/25 01:49:56 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to 2014.09.25 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/25 04:05:53 Modified files: infrastructure/db: user.list Log message: reserve 742 for _restund (baresip) CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/25 06:45:35 Modified files: usr.bin/tmux : cmd.c tmux.1 Log message: Support ! for last pane. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/25 06:51:40 Modified files: usr.bin/tmux : cmd.c Log message: Support using pane id as part of session or window specifier (so %1 means session-of-%1 or window-of-%1) and window id as part of session (so @1 means session-of-@1). CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/25 07:44:56 Modified files: games/gnuchess : Makefile distinfo games/gnuchess/pkg: PLIST Log message: Bugfix update to gnuchess-6.1.2 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/25 10:09:45 ports/net/py-impacket/patches Update of /cvs/ports/net/py-impacket/patches In directory cvs.openbsd.org:/tmp/cvs-serv9471/patches Log Message: Directory /cvs/ports/net/py-impacket/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/25 11:29:41 Modified files: security/libsodium: Makefile distinfo Log message: update to libsodium release 1.0.0 The API/ABI for 1.x.y releases will be backwards compatible. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/25 11:33:15 Modified files: net/nmap : Makefile distinfo net/nmap/patches: patch-timing_cc Log message: update to nmap 6.47, ok giovanni@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/25 13:32:37 Log message: Import ports/telephony/baresip, a portable and modular SIP voice/video client. From maintainer Dmitrij D. Czarkoff, tweak/ok landry@ Status: Vendor Tag: sthen Release Tags: sthen_20140925 N ports/telephony/baresip/Makefile N ports/telephony/baresip/Makefile.inc N ports/telephony/baresip/baresip/Makefile N ports/telephony/baresip/baresip/distinfo N ports/telephony/baresip/baresip/patches/patch-src_config_c N ports/telephony/baresip/baresip/patches/patch-Makefile N ports/telephony/baresip/baresip/patches/patch-mk_mod_mk N ports/telephony/baresip/baresip/pkg/DESCR N ports/telephony/baresip/baresip/pkg/MESSAGE N ports/telephony/baresip/baresip/pkg/PFRAG.shared N ports/telephony/baresip/baresip/pkg/PLIST N ports/telephony/baresip/re/Makefile N ports/telephony/baresip/re/distinfo N ports/telephony/baresip/re/patches/patch-src_dns_res_c N ports/telephony/baresip/re/patches/patch-Makefile N ports/telephony/baresip/re/pkg/DESCR N ports/telephony/baresip/re/pkg/PLIST N ports/telephony/baresip/rem/Makefile N ports/telephony/baresip/rem/distinfo N ports/telephony/baresip/rem/pkg/DESCR N ports/telephony/baresip/rem/pkg/PLIST N ports/telephony/baresip/rem/patches/patch-Makefile N ports/telephony/baresip/restund/Makefile N ports/telephony/baresip/restund/distinfo N ports/telephony/baresip/restund/pkg/PLIST N ports/telephony/baresip/restund/pkg/restund.rc N ports/telephony/baresip/restund/pkg/DESCR N ports/telephony/baresip/restund/patches/patch-Makefile No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/25 13:32:56 Modified files: telephony : Makefile Log message: +baresip CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 13:52:13 Log message: Import p5-Config-AutoConf 0.305. A module that implements some of the autohell^Wconf macros in pure Perl. ok zhuk@ Status: Vendor Tag: landry Release Tags: landry_20140925 N ports/devel/p5-Config-AutoConf/distinfo N ports/devel/p5-Config-AutoConf/Makefile N ports/devel/p5-Config-AutoConf/pkg/PLIST N ports/devel/p5-Config-AutoConf/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 13:53:10 Modified files: devel : Makefile Log message: +p5-Config-AutoConf CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 14:01:39 Modified files: sysutils/libstatgrab: Makefile distinfo sysutils/libstatgrab/pkg: PLIST Removed files: sysutils/libstatgrab/patches: patch-configure patch-src_libstatgrab_cpu_stats_c patch-src_libstatgrab_memory_stats_c patch-src_libstatgrab_page_stats_c patch-src_libstatgrab_process_stats_c patch-src_libstatgrab_swap_stats_c sysutils/libstatgrab/pkg: PFRAG.shared Log message: Update to libstatgrab 0.91, bringing in 4 years of development.. - API changed, consumers will be fixed accordingly - remove all patches, mostly merged upstream - switch to use http MASTER_SITES - merge PFRAG.shared into PLIST ok william@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 14:02:31 Modified files: sysutils/p5-Unix-Statgrab: Makefile distinfo sysutils/p5-Unix-Statgrab/pkg: PLIST Log message: Update to p5-Unix-Statgrab-0.104, depends on latest libstatgrab. ok william@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 14:04:42 Modified files: sysutils/luastatgrab: Makefile Log message: Mark BROKEN, doesnt build with newer libstatgrab, development has ceased upstream since 4+ years, and i dont have enough lua-macros-fu to whack it into shape ... but jasper@ promised to have a look at it :) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/25 14:10:13 Modified files: sysutils/collectd: Makefile distinfo sysutils/collectd/patches: patch-Makefile_in patch-configure patch-src_Makefile_in patch-src_tcpconns_c sysutils/collectd/pkg: PLIST-main Added files: sysutils/collectd/patches: patch-src_collectd_c patch-src_dns_c patch-src_libcollectdclient_Makefile_in patch-src_plugin_h patch-src_users_c sysutils/collectd/pkg: collectd.rc Removed files: sysutils/collectd/patches: patch-src_utils_db_query_c patch-src_utils_db_query_h sysutils/collectd/pkg: MESSAGE-main Log message: Long awaited update to collectd 5.4.1. - remove useless MESSAGE, provide an rc script instead - enable pf, target_v5upgrade, tail_csv and write_graphite plugins - backport fixes from FreeBSD and NetBSD to build with newer libstatgrab (upstream collectd github ticket #445) - remove the check and inclusion of pcap-bpf.h, we dont have/need it - users of the previous 4.x version should refer to https://collectd.org/wiki/index.php/V4_to_v5_migration_guide for the upgrade path. tested on ppc & amd64. CVSROOT: /cvs Module name: www Changes by: landry@cvs.openbsd.org 2014/09/25 14:53:08 Modified files: faq : current.html Log message: Add a note about collectd update. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/25 15:45:54 Modified files: sys/dev/acpi : acpi.c Log message: Bring back rev 1.249. Now that mp_setperf() has been fixed, it should be safe to restore perflevel when resuming. Should fix the issues people see with the processor running at full speed heating up the machine while the apm command reports that the CPUs are running at a low speed. ok dcoppa@, deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/25 23:43:14 Modified files: sys/kern : subr_pool.c Log message: fix the calculation of the number of items to prime the pool with in pool_setlowat. this was stopping arm things from getting spare items into their pmap entry pools, so things that really needed them in a delicate part of boot were failing. reported by rapha@ co-debugging with miod@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/26 01:53:57 Modified files: devel/goffice : Makefile distinfo Log message: Update to goffice-0.10.18. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/26 01:54:31 Modified files: math/gnumeric : Makefile distinfo math/gnumeric/pkg: PLIST Log message: Update to gnumeric-1.12.18. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/26 02:24:19 Modified files: misc/portroach : Makefile misc/portroach/patches: patch-portroach_pl Log message: apply patch from upstream to unbreak writing restricted.json CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/26 02:55:59 Modified files: usr.sbin/apmd : apmd.c Log message: now that mp setperf is fixed, let's try aggressive throttling again. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/26 03:25:38 Modified files: sys/sys : hibernate.h sys/kern : subr_hibernate.c sys/dev/acpi : acpi.c Log message: Rework piglet and pig allocation. Currently the piglet gets allocated deep down in the suspend path, where it is really hard to recover from allocation failure. So allocate the piglet early on in the suspend path. Also change the piglet and piglet allocation functions to use km_alloc(9) instead of doing pmemrange magic. This removes a bunch of code which, in the case of the piglet allocation, is broken since it results in a NULL pointer dereference. Also switch the piglet allocation to not wait. If we can't allocate 16MB of phys contig memory on a halfway modern machine we're almost certainly under a lot of memory pressure and we're better off not trying to hibernate anyway. ok mlarkin@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/26 03:31:08 Modified files: sys/dev/usb : usbdi.c Log message: Fix format signedness ok blambert@ doug@ CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/26 03:45:59 Modified files: sys/arch/sparc64/sparc64: autoconf.c Log message: ansify; ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dcoppa@cvs.openbsd.org 2014/09/26 04:39:28 Modified files: usr.sbin/apmd : apmd.c Log message: zap now unused "PERFINC" restore original behavior of apmtimeout ok tedu@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/26 05:41:47 Modified files: faq : obsd-faq.txt pf-faq.txt Log message: update text versions CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/26 05:47:47 Modified files: sysutils : Makefile Log message: -luastatgrab CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/26 05:48:19 Removed files: sysutils/luastatgrab: Makefile distinfo sysutils/luastatgrab/patches: patch-libstatgrab_c sysutils/luastatgrab/pkg: DESCR PLIST Log message: remove luastatgrab; ancient, unmaintained and broken. goodbye. ok landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/26 05:49:03 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register luastatgrab removal CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/09/26 06:04:07 Modified files: sys/dev/usb : if_run.c Log message: Revert a part of r1.98 if_run.c which caused a regression on older gen run(4) devices. ok stsp@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/26 06:11:01 Modified files: security/pcsc-lite: Makefile distinfo Removed files: security/pcsc-lite/patches: patch-configure_ac patch-src_Makefile_in Log message: Update to pcsc-lite-1.8.12 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/09/26 07:00:39 Modified files: sys/dev/pci : sdhc_pci.c Log message: new ricoh controllers must also be pushed into "old slow mode" at resume time. ok kettenis jsg CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/26 07:33:36 Modified files: . : plus.html Log message: plus.html Sept 8-21, ok jj@. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/26 07:55:44 Modified files: devel/git : Makefile distinfo devel/git/patches: patch-Makefile patch-t_test-lib_sh devel/git/pkg : PLIST-main Log message: Update to git-2.1.1 ok benoit@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/26 08:00:34 Log message: Lynis is an open source security auditing tool OK benoit@ Status: Vendor Tag: gonzalo Release Tags: gonzalo_20142609 N ports/security/lynis/Makefile N ports/security/lynis/distinfo N ports/security/lynis/pkg/DESCR N ports/security/lynis/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/26 08:02:16 Modified files: security : Makefile Log message: Hook Lynis. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/26 08:24:02 Modified files: sysutils/ykpers: Makefile distinfo Log message: update to ykpers 1.16.0, minor api addition (yk_get_key_vid_pid, to retrieve vendor and product id of a key) CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/26 08:32:07 Modified files: sys/arch/loongson/dev: bonito.c sys/arch/loongson/loongson: bus_dma.c machdep.c Log message: Use correct format specifiers in various loongson machine dependent code. Makes a loongson kernel buildable without -Wno-format. ok miod@ jsg@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/26 08:39:43 Modified files: sys/arch/hppa64/conf: Makefile.hppa64 sys/arch/loongson/conf: Makefile.loongson sys/arch/solbourne/conf: Makefile.solbourne Log message: remove the last uses of -Wno-format ok miod@ deraadt@ jsing@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/26 08:46:19 Modified files: security/lynis : Makefile security/lynis/pkg: PLIST Log message: We have higher standards... ok gonzalo@ (maintainer) CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/26 08:58:42 Modified files: lib/libssl/src/ssl: t1_lib.c Log message: Now that we have a static version of the default EC formats, also use it for the server hello. From OpenSSL. ok miod@ CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/09/26 09:18:01 Modified files: etc : netstart Log message: remove explicit 'down' of an interface before starting a dhcp request, thereby avoiding annoying delays for some switch configurations ok claudio@ deraadt@ i would add ok phessler@, but it was not valid without an ok krw@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/26 09:24:56 Modified files: sys/dev/i2c : i2c_scan.c Log message: Don't mask off revision bits for tests against a full device id/revision id value. Makes it possible for se98 and stts424 sensors to match. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: benno@cvs.openbsd.org 2014/09/26 09:44:22 Modified files: distrib/miniroot: install.sub Log message: make the default of the "Change the default console" question depend on whether the install is done on a serial console. ok halex@, deraadt@ likes it too CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/26 13:30:38 Modified files: lib/libssl/src/crypto/x509: x509_att.c Log message: X509at_add1_attr(): do not free stuff we did not allocate in the error path. ok tedu@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/26 13:31:09 Modified files: lib/libssl/src/crypto/x509: x509_cmp.c Log message: X509_issuer_and_serial_hash(): do not leak memory if an error occurs during the first EVP block. ok tedu@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/26 13:32:16 Modified files: lib/libssl/src/crypto/x509: x509_lu.c Log message: X509_STORE_new(): do not leak memory upon error. X509_STORE_get1_certs(), X509_STORE_get1_crls(): check the result of allocations. ok tedu@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/26 15:41:56 Modified files: games/boggle/boggle: boggle.6 games/canfield/canfield: canfield.6 games/hunt/hunt: hunt.6 games/hunt/huntd: huntd.6 Log message: Add missing .An macros (found with mandoc -Tlint) and resolve contractions (found with textproc/igor(1)). Work done by Kaspars at Bankovskis dot net during the EuroBSDCon 2014 documentation tutorial. Very minor addition of a few more missing .An macros by myself. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/26 16:19:32 Modified files: sysutils/collectd/patches: patch-src_collectd_conf_in Log message: Fix patch, somehow i failed at merging this.. noticed by rpe@, thanks! CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/26 16:31:58 Modified files: shells/bash : Makefile distinfo Log message: Security update to 4.3.26. Fixes CVE-2014-7169 (incomplete fix for CVE-2014-6271). CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/26 16:36:41 Modified files: shells/bash : Tag: OPENBSD_5_6 Makefile distinfo Log message: Security update to 4.3.26. Fixes CVE-2014-7169 (incomplete fix for CVE-2014-6271). CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/27 00:07:01 Modified files: sys/dev/i2c : i2c_scan.c sdtemp.c share/man/man4 : sdtemp.4 Log message: add some more sdtemp devices ok deraadt@ CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/09/27 00:23:30 Modified files: sys/arch/luna88k/dev: if_le.c Log message: Change spaces to tab. No binary change. CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/27 00:28:45 Modified files: regress/lib/libc/mkstemp: mkstemp_test.c regress/misc/X11/blt: blt.c regress/misc/X11/bltone: bltone.c regress/sys/kern/mmap3: mmaptest.c sbin/newfs_ext2fs: mke2fs.c usr.sbin/ztsscale: ztsscale.c Log message: Fix mmap() calls that check for a result other than MAP_FAILED. ok tedu@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/27 00:40:07 Modified files: lib/libutil : bcrypt_pbkdf.3 Log message: Explain why we deviate slightly from the PBKDF2 standard. This explanation is based off of Ted's site. Also, fix a comment from the SHA-1 version. ok tedu@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/27 01:48:07 Modified files: productivity/davical: Makefile Removed files: productivity/davical/patches: patch-dba_davical_sql Log message: Fix user creation (and probably other db-related issues) by removing quotes around LANGUAGE 'plpgsql' declarations, needed since pgsql > 9.3. Remove the patch that was fixing a single occurence, and apply some perl -pi -e magic during post-patch instead. Taken from https://gitlab.com/davical-project/davical/issues/26, tested by viq. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/27 01:53:31 Modified files: devel/droplet : Makefile Log message: BROKEN-hppa= no atomic ops in json-c CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/27 01:55:46 Modified files: telephony/libzrtp: Makefile Log message: #error "Libzrtp can't detect byte order: use manual setup in zrtp_config_user.h" #error "Can't define byte order for BG AES. Edit zrtp_system.h" BROKEN-hppa = no endianness definition CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/09/27 01:56:18 Modified files: sys/arch/amd64/amd64: machdep.c Log message: typo in a printf ok claudio@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/27 01:57:04 Modified files: lang/moarvm : Makefile Log message: BROKEN-hppa: dyncall_callvm.c:66:4: error: #error unsupported platform CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/27 02:00:51 Modified files: sysutils/dcled : Makefile sysutils/dcled/pkg: DESCR Log message: Add a DESCR. from THEvoid CVSROOT: /cvs Module name: src Changes by: benno@cvs.openbsd.org 2014/09/27 02:01:26 Modified files: usr.bin/mg : theo.c Log message: sound reasoning CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/27 02:04:54 Modified files: print/cups-filters: Makefile distinfo Log message: Update to cups-filters-1.0.59. CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/09/27 02:27:17 Modified files: sys/arch/amd64/amd64: machdep.c Log message: Removed an ununsed macro ok tedu@, deraadt@ CVSROOT: /cvs Module name: www Changes by: schwarze@cvs.openbsd.org 2014/09/27 02:27:55 Modified files: . : events.html papers : index.html Added files: papers : eurobsdcon2014-mandoc-paper.pdf eurobsdcon2014-mandoc-slides.pdf Log message: upload my EuroBSDCon 2014 slides and the paper that comes with it; source code will follow later CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/09/27 02:28:13 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi distrib/sets/lists/man: mi share/man/man4 : Makefile pci.4 sys/arch/alpha/conf: GENERIC sys/arch/amd64/conf: GENERIC sys/arch/i386/conf: GENERIC sys/arch/macppc/conf: GENERIC sys/arch/sparc64/conf: GENERIC sys/dev/pci : files.pci Removed files: share/man/man4 : art.4 sys/dev/pci : bt8370.c if_art.c if_art.h musycc.c musycc_obsd.c musyccreg.h musyccvar.h Log message: retire Accoom Networks Artery T1/E1 drive; ok claudio CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/27 02:50:32 Modified files: textproc/meld : Makefile distinfo textproc/meld/pkg: PLIST Added files: textproc/meld/patches: patch-setup_py Log message: Update to meld-3.12.0. CVSROOT: /cvs Module name: xenocara Changes by: kettenis@cvs.openbsd.org 2014/09/27 02:56:18 Modified files: lib/libpciaccess/src: openbsd_pci.c Log message: Use PCIOCREADMASK to size the PCI BARs. This makes more parts of libpciaccess usable when machdep.allowaperture is zero. ok matthieu@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/27 02:59:47 Modified files: audio/easytag : Makefile distinfo audio/easytag/pkg: PLIST Log message: Update to easytag-2.2.4. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/27 03:16:54 Modified files: security/distorm3: Makefile Log message: BROKEN-powerpc: src/config.h:147: error: duplicate 'static' CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/09/27 04:56:32 Modified files: . : events.html papers : index.html Added files: papers : dev-sw-hostile-env.html Log message: Developing Software in a Hostile Environment CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/27 05:01:06 Modified files: lib/libssl/src/ssl: s3_clnt.c ssl.h ssl_err.c ssl_locl.h t1_lib.c Log message: Check that the specified curve is one of the client preferences. Based on OpenSSL. ok miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/27 05:03:43 Modified files: lib/libssl/src/ssl: d1_srvr.c s3_srvr.c Log message: There is not much point checking ecdhp is not NULL... twice. ok miod@ CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/09/27 05:25:01 Modified files: telephony/libzrtp: Makefile Added files: telephony/libzrtp/patches: patch-include_zrtp_config_h Log message: Recognize hppa as a big-endian platform and unbreak on this arch. Bump VERSION. ok landry@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/27 05:28:37 Modified files: usr.sbin/syslogd: privsep.c syslogd.c Log message: Also in debug mode, close nullfd when it is not needed anymore. OK doug@ CVSROOT: /cvs Module name: www Changes by: mpi@cvs.openbsd.org 2014/09/27 06:10:31 Modified files: . : events.html papers : index.html Added files: papers : tamingdragons.pdf Log message: Taming OpenBSD Network Stack Dragons CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/27 06:23:41 Modified files: sys/kern : subr_poison.c Log message: add back inverted poison patterns. keep high bits, but twiddle low bits. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/27 06:26:16 Modified files: sys/net : pf.c pfkeyv2.c radix_mpath.c radix_mpath.h route.c route.h sys/netinet : in_pcb.c ip_input.c ip_output.c ip_spd.c sys/netinet6 : frag6.c in6_src.c ip6_forward.c ip6_input.c ip6_output.c Log message: Kill rtalloc() and update rtalloc1() and rtalloc_mpath() to no longer rely on "struct route" that should die. ok claudio@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/27 06:29:31 Modified files: lib/libcrypto/crypto: shlib_version lib/libcrypto/crypto/arch/hppa: Makefile.inc Log message: Disable assembler code for ghash on hppa, causes wrong computations in some cases and breaks TLS 1.2; crank libcrypto.so minor version out of safety and to be able to tell broken versions apart easily. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/27 06:31:47 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/27 06:37:26 Modified files: devel/pango : Makefile distinfo Log message: Update to pango-1.36.8. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/27 06:49:45 Modified files: usr.sbin/httpd : server_file.c Log message: In addition to READ, disable WRITE events when closing the file descriptor of the file I/O bufferevent. This fixes a potential event flood. OK florian@ CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2014/09/27 09:16:36 Modified files: usr.bin/rcs : xmalloc.c Log message: Use %zu where appropriate, from Fritjof Bornebusch. CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/09/27 09:57:39 Modified files: papers : index.html Log message: delete commas after titles. color and underline provide enough separation, and the green commas after blue links are making me twitch CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:31:41 Modified files: audio : Makefile converters : Makefile databases : Makefile devel : Makefile graphics : Makefile net : Makefile security : Makefile sysutils : Makefile textproc : Makefile www : Makefile Log message: Remove building of ruby 1.8 and 1.9 packages by default. This unlinks completely some ruby 1.8 and 1.9 specific packages, to be removed shortly. OK sthen@, no objection ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:37:44 Removed files: devel/ruby-home_run: Makefile distinfo devel/ruby-home_run/pkg: DESCR PLIST Log message: Remove home_run. These were faster versions of the Date/DateTime classes, but a similar approach was committed to ruby 1.9.3. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:38:48 Removed files: devel/ruby-parsetree: Makefile distinfo devel/ruby-parsetree/pkg: DESCR PLIST Log message: Remove parsetree. This manipulates the interpreter AST directly, and only runs on ruby 1.8. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:42:22 Removed files: devel/ruby-rdoc: Makefile distinfo devel/ruby-rdoc/patches: patch-lib_rdoc_generator_template_darkfish_js_darkfish_js devel/ruby-rdoc/pkg: DESCR PLIST Log message: Remove rdoc. rdoc has shipped with ruby since 1.8, and a newer version ships in ruby 1.9+. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:44:23 Removed files: devel/ruby-rcov: Makefile distinfo devel/ruby-rcov/pkg: DESCR PLIST Log message: Remove rcov. This was only reliable on ruby 1.8, as the 1.9 version was buggy and it didn't run on 2.0+. ruby 2.0+ ships with a coverage library. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:45:38 Removed files: textproc/ruby-fastercsv: Makefile distinfo textproc/ruby-fastercsv/pkg: DESCR PLIST Log message: Remove fastercsv. This became the official ruby csv library starting in ruby 1.9. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:46:41 Removed files: textproc/ruby-fastri: Makefile distinfo textproc/ruby-fastri/pkg: DESCR PLIST Log message: Remove fastri. This was only built for ruby 1.8, as newer versions of rdoc already have faster ri generation. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:48:02 Removed files: textproc/eruby : Makefile distinfo textproc/eruby/patches: patch-Makefile_in patch-configure_rb textproc/eruby/pkg: DESCR PLIST Log message: Remove eruby. This was a faster version of the ERB library for ruby 1.8, but with ruby 1.9+ it isn't necessary. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:49:24 Removed files: www/ruby-mongrel: Makefile distinfo www/ruby-mongrel/patches: patch-_metadata patch-lib_mongrel_rb www/ruby-mongrel/pkg: DESCR PLIST Log message: Remove mongrel. This was the first decent ruby webserver, but it's only built for ruby 1.8. Any remaining users should switch to unicorn, which is derived from mongrel. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:50:58 Removed files: www/mod_ruby : Makefile distinfo www/mod_ruby/patches: patch-configure_rb www/mod_ruby/pkg: DESCR MESSAGE PLIST UNMESSAGE Log message: Remove mod_ruby. Even 10 years ago it was considered a bad idea, as it cannot run multiple applications safely. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/09/27 10:52:50 ports/security/distorm3/patches Update of /cvs/ports/security/distorm3/patches In directory cvs.openbsd.org:/tmp/cvs-serv19031/patches Log Message: Directory /cvs/ports/security/distorm3/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/09/27 10:53:53 Modified files: security/distorm3: Makefile Added files: security/distorm3/patches: patch-src_config_h Log message: Fix on big-endian platforms. ok landry@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 10:59:31 Modified files: www/ruby-sanitize: Makefile distinfo www/ruby-sanitize/pkg: PLIST Log message: Update to sanitize 2.0.6. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:00:19 Modified files: textproc/ruby-nokogiri: Makefile distinfo textproc/ruby-nokogiri/pkg: PLIST Added files: textproc/ruby-nokogiri/patches: patch-_metadata Removed files: textproc/ruby-nokogiri/patches: patch-Rakefile Log message: Update to nokogiri 1.6.3.1 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:02:29 Modified files: devel/ruby-prof: Makefile distinfo devel/ruby-prof/pkg: PLIST Removed files: devel/ruby-prof/patches: patch-Rakefile patch-ext_ruby_prof_extconf_rb Log message: Update to ruby-prof 0.15.1 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:04:02 Modified files: net/munin : Makefile Log message: Don't set MODRUBY_REV explicitly, use default ruby version. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:05:37 Modified files: textproc/ruby-rss: Makefile Log message: Build a package for the default version of ruby, instead of ruby 1.9. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:06:25 Modified files: sysutils/god : Makefile sysutils/god/pkg: PLIST Log message: Use the default version of ruby instead of ruby 1.9. OK sthen@ ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:07:20 Modified files: net/weechat : Makefile Log message: Use default version of ruby instead of ruby 1.9 for ruby subpackage. OK sthen@ ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/27 11:08:47 Modified files: databases/puppetdb: Makefile sysutils/mcollective: Makefile sysutils/ruby-facter: Makefile sysutils/ruby-puppet: Makefile.inc sysutils/ruby-puppet/3: Makefile Log message: Use default version of ruby instead of ruby 2.0. OK jasper@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/27 11:16:00 Modified files: net/tor : Makefile distinfo Log message: Bugfix update to 0.2.4.24. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/27 11:23:45 Modified files: java/java-getopt: Makefile distinfo Log message: update to java-getopt-1.0.14 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:36:14 Modified files: driver/xf86-input-joystick/src: jstk_axis.c Log message: include explicitely in preparation for xserver 1.16 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:37:32 Modified files: driver/xf86-input-synaptics/src: synproto.h Log message: include explicitely in preparation for xserver 1.16 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:39:04 Modified files: driver/xf86-video-vmware: ChangeLog Makefile.in aclocal.m4 config.h.in config.sub configure configure.ac driver/xf86-video-vmware/man: Makefile.in driver/xf86-video-vmware/saa: Makefile.in saa_render.c driver/xf86-video-vmware/src: Makefile.in vmware_bootstrap.c vmware_bootstrap.h vmwaremodes.c driver/xf86-video-vmware/vmwarectrl: Makefile.in driver/xf86-video-vmware/vmwgfx: Makefile.am Makefile.in vmwgfx_dri2.c vmwgfx_driver.c vmwgfx_driver.h vmwgfx_drmi.c vmwgfx_drmi.h vmwgfx_output.c vmwgfx_overlay.c vmwgfx_saa.c vmwgfx_saa.h vmwgfx_saa_priv.h vmwgfx_tex_video.c vmwgfx_xa_surface.c Added files: driver/xf86-video-vmware/vmwgfx: vmwgfx_hosted.c vmwgfx_hosted.h vmwgfx_hosted_priv.h vmwgfx_xmir.c vmwgfx_xwayland.c Log message: Update to xf86-video-vmware 13.0.2 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:40:12 Modified files: proto/fontsproto: ChangeLog configure.ac font.h fontproto.h fontstruct.h proto/fontsproto/specs: fsproto.xml Log message: Update to fontsproto 2.1.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/27 11:41:20 Modified files: lang/myhdl : Makefile distinfo Log message: update to myhdl-0.8.1 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:42:15 Modified files: lib/libXfont : ChangeLog Makefile.bsd-wrapper README configure configure.ac lib/libXfont/include/X11/fonts: fntfil.h fontmisc.h lib/libXfont/src: Makefile.am Makefile.in lib/libXfont/src/FreeType: ftfuncs.c lib/libXfont/src/bitmap: Makefile.am Makefile.in bitmap.c bitmapfunc.c bitscale.c lib/libXfont/src/builtins: builtin.h dir.c file.c fpe.c lib/libXfont/src/fc: fsconvert.c fserve.c fserve.h lib/libXfont/src/fontfile: catalogue.c dirfile.c fontfile.c renderers.c lib/libXfont/src/stubs: Makefile.am Makefile.in cauthgen.c csignal.c delfntcid.c errorf.c findoldfnt.c getcres.c getdefptsize.c getnewfntcid.c gettime.c initfshdl.c regfpefunc.c rmfshdl.c servclient.c setfntauth.c stfntcfnt.c stubs.h lib/libXfont/src/util: atom.c miscutil.c patcache.c Removed files: lib/libXfont/src/stubs: fatalerror.c Log message: Update to libXfont 1.5.0 Tested together with xserver 1.16.1 by naddy@, jsg@ & kettenis@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:43:02 Added files: lib/libXfont/src/stubs: stubsinit.c Log message: Missed file in libXfont 1.5.0 update CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:44:20 xenocara/xserver/glamor Update of /cvs/xenocara/xserver/glamor In directory cvs.openbsd.org:/tmp/cvs-serv28086/glamor Log Message: Directory /cvs/xenocara/xserver/glamor added to the repository CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:44:21 xenocara/xserver/hw/xwayland Update of /cvs/xenocara/xserver/hw/xwayland In directory cvs.openbsd.org:/tmp/cvs-serv28086/hw/xwayland Log Message: Directory /cvs/xenocara/xserver/hw/xwayland added to the repository CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:44:22 xenocara/xserver/hw/xfree86/glamor_egl Update of /cvs/xenocara/xserver/hw/xfree86/glamor_egl In directory cvs.openbsd.org:/tmp/cvs-serv28086/hw/xfree86/glamor_egl Log Message: Directory /cvs/xenocara/xserver/hw/xfree86/glamor_egl added to the repository CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/27 11:47:54 Modified files: devel/ruby-rspec/1: Makefile devel/ruby-rspec/2: Makefile.inc devel/ruby-rspec/3: Makefile.inc Log message: add PORTROACH to restrict to the right major version CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/27 11:50:28 Modified files: lang/iverilog : Makefile distinfo lang/iverilog/pkg: PLIST Log message: update to iverilog-0.9.7 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 11:53:05 Modified files: xserver : configure configure.ac manpages.am test-driver xserver/Xext : Makefile.am Makefile.in dpmsproc.h geext.c hashtable.c hashtable.h panoramiX.c panoramiXprocs.c panoramiXsrv.h saver.c security.c shape.c shm.c sleepuntil.c sleepuntil.h sync.c syncsrv.h xace.c xacestr.h xres.c xselinux_ext.c xselinux_hooks.c xtest.c xvdisp.c xvdix.h xvmain.c xvmc.c xvmcext.h xserver/Xi : Makefile.am Makefile.in devbell.c exevents.c extinit.c grabdev.c listdev.c xibarriers.c xichangecursor.c xiproperty.c xserver/composite: Makefile.in compalloc.c compext.c compinit.c compint.h compositeext.h compoverlay.c compwindow.c xserver/config : 10-quirks.conf Makefile.am Makefile.in config-backends.h config.c dbus-core.c hal.c udev.c wscons.c xserver/damageext: Makefile.in damageext.c damageextint.h xserver/dbe : Makefile.in dbe.c midbe.c xserver/dix : Makefile.in colormap.c cursor.c devices.c dispatch.c dixfonts.c dixutils.c events.c extension.c gc.c getevents.c globals.c glyphcurs.c grabs.c main.c pixmap.c privates.c property.c protocol.txt resource.c touch.c window.c xserver/doc : Makefile.in xserver/doc/dtrace: Makefile.in xserver/dri3 : Makefile.in dri3.h dri3_request.c dri3_screen.c xserver/exa : Makefile.in exa.c exa.h exa_accel.c exa_classic.c exa_driver.c exa_glyphs.c exa_migration_classic.c exa_mixed.c exa_offscreen.c exa_priv.h exa_render.c exa_unaccel.c xserver/fb : Makefile.am Makefile.in fb.h fb24_32.c fb24_32.h fbblt.c fbglyph.c fboverlay.c fboverlay.h fbpict.c fbpict.h fbpixmap.c fbscreen.c xserver/glx : Makefile.in glxcmds.c glxdri2.c glxdricommon.c glxdriswrast.c glxext.c glxserver.h indirect_program.c indirect_texture_compression.c xserver/hw : Makefile.am Makefile.in xserver/hw/dmx : Makefile.am Makefile.in dmx.c dmxclient.h dmxextension.c dmxfont.c dmxgc.c dmxgc.h dmxgcops.c dmxgcops.h dmxinit.c dmxpict.c dmxpict.h dmxstat.c dmxsync.c dmxwindow.c xserver/hw/dmx/config: Canvas.c Makefile.in xdmxconfig.c xserver/hw/dmx/config/man: Makefile.in xserver/hw/dmx/doc: Makefile.in xserver/hw/dmx/doxygen: Makefile.in xserver/hw/dmx/examples: Makefile.in xserver/hw/dmx/glxProxy: Makefile.in glxcmds.c glxext.c glxswap.c xserver/hw/dmx/input: Makefile.in dmxbackend.c dmxbackend.h dmxcommon.c dmxcommon.h dmxconsole.c dmxconsole.h dmxevents.c dmxinputinit.c dmxinputinit.h lnx-keyboard.c lnx-keyboard.h lnx-ms.c lnx-ms.h lnx-ps2.c lnx-ps2.h usb-common.c usb-common.h xserver/hw/dmx/man: Makefile.in xserver/hw/kdrive: Makefile.in xserver/hw/kdrive/ephyr: Makefile.am Makefile.in ephyr.c ephyr.h ephyrdriext.c ephyrinit.c ephyrvideo.c hostx.c xserver/hw/kdrive/ephyr/man: Makefile.in xserver/hw/kdrive/fake: Makefile.in xserver/hw/kdrive/fbdev: Makefile.in xserver/hw/kdrive/linux: Makefile.in linux.c xserver/hw/kdrive/openbsd: Makefile.in xserver/hw/kdrive/src: Makefile.am Makefile.in kcmap.c kdrive.c kdrive.h kinput.c kxv.c kxv.h xserver/hw/kdrive/wscons: Makefile.in xserver/hw/vfb : InitOutput.c Makefile.am Makefile.in xserver/hw/vfb/man: Makefile.in xserver/hw/xfree86: Makefile.am Makefile.in sdksyms.sh xserver/hw/xfree86/common: Makefile.in compiler.h dgaproc.h vidmodeproc.h xf86.h xf86AutoConfig.c xf86Bus.c xf86Bus.h xf86Config.c xf86Config.h xf86Configure.c xf86DGA.c xf86DPMS.c xf86Events.c xf86Extensions.c xf86Globals.c xf86Helper.c xf86InPriv.h xf86Init.c xf86Mode.c xf86Module.h xf86Opt.h xf86Option.c xf86Optionstr.h xf86PM.c xf86Priv.h xf86Privstr.h xf86VGAarbiter.c xf86VGAarbiterPriv.h xf86VidMode.c xf86Xinput.c xf86Xinput.h xf86cmap.c xf86fbman.c xf86fbman.h xf86pciBus.c xf86pciBus.h xf86platformBus.c xf86platformBus.h xf86sbusBus.h xf86str.h xf86vmode.c xf86xv.c xf86xv.h xf86xvmc.h xserver/hw/xfree86/ddc: Makefile.in ddc.c interpret_edid.c xf86DDC.h xserver/hw/xfree86/dixmods: Makefile.am Makefile.in glxmodule.c xserver/hw/xfree86/doc: Makefile.in ddxDesign.xml xserver/hw/xfree86/dri: Makefile.in dri.c dri.h xserver/hw/xfree86/dri2: Makefile.in dri2.c xserver/hw/xfree86/exa: Makefile.in examodule.c xserver/hw/xfree86/exa/man: Makefile.in xserver/hw/xfree86/fbdevhw: Makefile.in fbdevhw.c xserver/hw/xfree86/fbdevhw/man: Makefile.in xserver/hw/xfree86/i2c: Makefile.in bt829.c fi1236.c msp3430.c xf86i2c.h xserver/hw/xfree86/int10: Makefile.in generic.c helper_exec.c helper_mem.c stub.c xf86int10.h xf86x86emu.c xserver/hw/xfree86/loader: Makefile.in loaderProcs.h loadmod.c xserver/hw/xfree86/man: Makefile.am Makefile.in Xorg.man xorg.conf.man xserver/hw/xfree86/modes: Makefile.in xf86Crtc.c xf86Crtc.h xf86Cursors.c xf86EdidModes.c xf86Modes.c xf86RandR12.c xf86Rotate.c xf86cvt.c xf86gtf.c xserver/hw/xfree86/os-support: Makefile.in xf86OSpriv.h xf86_OSproc.h xserver/hw/xfree86/os-support/bsd: Makefile.in alpha_video.c arm_video.c bsd_apm.c bsd_ev56.c bsd_kqueue_apm.c bsd_sbus.c hppa_video.c i386_video.c ppc_video.c sgi_video.c sparc64_video.c xserver/hw/xfree86/os-support/bus: Makefile.in Sbus.c nobus.c xserver/hw/xfree86/os-support/hurd: Makefile.in hurd_video.c xserver/hw/xfree86/os-support/linux: Makefile.am Makefile.in lnx_acpi.c lnx_apm.c lnx_ev56.c lnx_init.c lnx_kmod.c lnx_platform.c lnx_video.c xserver/hw/xfree86/os-support/linux/int10: linux.c xserver/hw/xfree86/os-support/misc: Makefile.in xserver/hw/xfree86/os-support/shared: posix_tty.c vidmem.c xserver/hw/xfree86/os-support/solaris: Makefile.in sun_apm.c sun_init.c sun_vid.c xserver/hw/xfree86/os-support/stub: Makefile.in xserver/hw/xfree86/parser: Configint.h DRI.c Device.c Extensions.c Files.c Flags.c Input.c InputClass.c Layout.c Makefile.am Makefile.in Module.c Monitor.c Pointer.c Screen.c Vendor.c Video.c configProcs.h read.c scan.c write.c xf86Parser.h xf86tokens.h xserver/hw/xfree86/ramdac: IBM.c Makefile.in TI.c xf86Cursor.c xf86Cursor.h xf86CursorPriv.h xf86HWCurs.c xserver/hw/xfree86/shadowfb: Makefile.in shadow.c xserver/hw/xfree86/utils: Makefile.in xserver/hw/xfree86/utils/cvt: Makefile.in cvt.c xserver/hw/xfree86/utils/gtf: Makefile.in xserver/hw/xfree86/utils/man: Makefile.in xserver/hw/xfree86/vbe: Makefile.in vbe.c vbe.h vbeModes.c vbeModes.h xserver/hw/xfree86/vgahw: Makefile.am Makefile.in vgaCmap.c vgaHW.h xserver/hw/xfree86/x86emu: Makefile.in ops.c xserver/hw/xfree86/x86emu/x86emu: regs.h xserver/hw/xnest: Color.c Events.c Font.c GC.c GCOps.c GCOps.h Handlers.c Handlers.h Init.c Keyboard.c Keyboard.h Makefile.am Makefile.in Pixmap.c Window.c XNGC.h XNPixmap.h xserver/hw/xnest/man: Makefile.in xserver/hw/xquartz: Makefile.am Makefile.in applewm.c quartz.c quartzCocoa.m quartzCommon.h xserver/hw/xquartz/GL: Makefile.in xserver/hw/xquartz/bundle: Makefile.in xserver/hw/xquartz/mach-startup: Makefile.in xserver/hw/xquartz/man: Makefile.in xserver/hw/xquartz/pbproxy: Makefile.in xserver/hw/xquartz/xpr: Makefile.in dri.c dri.h driWrap.c xprScreen.c xserver/hw/xwin: InitInput.c InitOutput.c Makefile.am Makefile.in win.h winallpriv.c winauth.c winblock.c winclipboardinit.c winclipboardxevents.c wincmap.c winconfig.c winconfig.h wincursor.c windialogs.c wingc.c winglobals.c winglobals.h winkeybd.c winmonitors.h winmsgwindow.c winmultiwindowicons.c winmultiwindowwindow.c winmultiwindowwm.c winmultiwindowwndproc.c winnativegdi.c winpfbdd.c winpixmap.c winprefslex.l winprefsyacc.y winprocarg.c winresource.h winshaddd.c winshadddnl.c winshadgdi.c winwakeup.c winwin32rootless.c winwindow.c winwindowswm.c winwndproc.c xserver/hw/xwin/glx: Makefile.in gen_gl_wrappers.py indirect.c xserver/hw/xwin/man: Makefile.in XWin.man xserver/include: Makefile.am Makefile.in callback.h closestr.h colormap.h cursor.h dix-config.h.in dix.h dixfont.h dixfontstubs.h dixgrabs.h dixstruct.h do-not-use-config.h.in eventstr.h extension.h extnsionst.h gc.h gcstruct.h globals.h hotplug.h input.h inputstr.h miscstruct.h opaque.h os.h pixmap.h privates.h property.h propertyst.h resource.h scrnintstr.h servermd.h window.h windowstr.h xkbrules.h xkbsrv.h xorg-config.h.in xorg-server.h.in xwin-config.h.in xserver/m4 : xorg-tls.m4 xserver/man : Makefile.in xserver/mi : Makefile.in mi.h miarc.c mibitblt.c micmap.c midispcur.c mieq.c miexpose.c migc.c migc.h miglblt.c miinitext.c mioverlay.c mipointer.c mipolyrect.c miscrinit.c misprite.c miwindow.c xserver/miext : Makefile.in xserver/miext/damage: Makefile.in damage.c damagestr.h xserver/miext/rootless: Makefile.in rootlessCommon.c rootlessGC.c rootlessScreen.c rootlessWindow.c xserver/miext/shadow: Makefile.in shadow.c xserver/miext/sync: Makefile.in misyncstr.h xserver/os : Makefile.in WaitFor.c access.c auth.c busfault.c connection.c io.c log.c osinit.c rpcauth.c utils.c xdmauth.c xdmcp.c xserver/present: Makefile.in present.c present_event.c present_fake.c present_priv.h present_request.c xserver/pseudoramiX: Makefile.in pseudoramiX.c xserver/randr : Makefile.in randr.c randrstr.h rrcrtc.c rrdispatch.c rrmode.c rroutput.c rrproperty.c rrprovider.c rrproviderproperty.c rrsdispatch.c xserver/record : Makefile.in record.c xserver/render : Makefile.in animcur.c glyph.c glyphstr.h mipict.c mipict.h mirect.c picture.c picturestr.h render.c xserver/test : Makefile.am Makefile.in hashtabletest.c input.c os.c signal-logging.c touch.c xfree86.c xkb.c xtest.c xserver/test/xi2: Makefile.in protocol-common.c protocol-common.h protocol-xigetselectedevents.c protocol-xipassivegrabdevice.c protocol-xiquerydevice.c protocol-xiqueryversion.c xserver/xfixes : Makefile.in cursor.c region.c select.c xfixes.c xfixes.h xserver/xkb : Makefile.in ddxBeep.c ddxLoad.c maprules.c xkb.c xkbAccessX.c xkbActions.c xkbEvents.c xkbInit.c xkbUtils.c xkbtext.c xkmread.c Added files: xserver/glamor : Makefile.am Makefile.in glamor.c glamor.h glamor_addtraps.c glamor_compositerects.c glamor_context.h glamor_copyarea.c glamor_copyplane.c glamor_copywindow.c glamor_core.c glamor_debug.h glamor_egl.c glamor_egl_stubs.c glamor_eglmodule.c glamor_fbo.c glamor_fill.c glamor_font.c glamor_font.h glamor_glx.c glamor_glyphblt.c glamor_glyphs.c glamor_gradient.c glamor_image.c glamor_largepixmap.c glamor_picture.c glamor_pixmap.c glamor_points.c glamor_polylines.c glamor_priv.h glamor_program.c glamor_program.h glamor_rects.c glamor_render.c glamor_segment.c glamor_spans.c glamor_text.c glamor_tile.c glamor_transfer.c glamor_transfer.h glamor_transform.c glamor_transform.h glamor_trapezoid.c glamor_triangles.c glamor_utils.h glamor_vbo.c glamor_window.c glamor_xv.c xserver/hw/kdrive/ephyr: ephyr_glamor_glx.c ephyr_glamor_glx.h xserver/hw/xfree86: Xorg.sh.in xorg-wrapper.c xserver/hw/xfree86/glamor_egl: Makefile.am Makefile.in xserver/hw/xfree86/man: Xorg.wrap.man Xwrapper.config.man xserver/hw/xfree86/os-support/linux: systemd-logind.c xserver/hw/xfree86/parser: OutputClass.c xserver/hw/xwayland: Makefile.am Makefile.in drm.xml xwayland-cursor.c xwayland-cvt.c xwayland-glamor.c xwayland-input.c xwayland-output.c xwayland-shm.c xwayland.c xwayland.h xserver/include: dbus-core.h systemd-logind.h Removed files: xserver/config : dbus.c non-seat0.conf.multi-seat xorg-server.conf Log message: Update to xserver 1.16.1. Tested by naddy@, jsg@ & kettenis@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 12:37:44 Modified files: . : MODULES 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/27 12:44:36 Modified files: games/manaplus : Makefile distinfo games/manaplus/pkg: PLIST Log message: Update to 1.4.9.27 CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/27 12:57:11 Modified files: app/cwm : group.c Log message: Pass just the group to group_setactive instead of the screen and an index which then needed to be found in a queue. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/27 13:04:32 Modified files: app/cwm : calmwm.h client.c group.c kbfunc.c mousefunc.c xevents.c Log message: these have nothing to do with 'sticky', but rather group membership; rename. CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/09/27 13:50:10 Modified files: sys/arch/luna88k/luna88k: clock.c machdep.c Log message: Move clock_reg[] definition. clock_reg[] is only used in clock.c, so move its definition from machdep.c to clock.c. ok miod@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 14:01:55 Modified files: distrib/sets/lists/xbase: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/27 14:04:32 Modified files: lib/libxcb/src : config.h Log message: I forgot to merge config.h.in in the update to libxcb 1.10. noticed by and ok kettenis@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/27 14:17:52 Modified files: lib/libssl/src/crypto/modes/asm: ghash-parisc.pl Log message: Doh, rev 1.4 had left out one routine with both 32-bit and 64-bit code, where the 64-bit code has to be disabled under OpenBSD/hppa. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/27 14:37:04 Modified files: lang/jruby : Makefile distinfo lang/jruby/patches: patch-lib_ruby_shared_ffi_library_rb lang/jruby/pkg : PLIST Log message: - update to jruby-1.7.16 ok jeremy@ who had the same diff CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/27 14:42:38 Modified files: lib/libcrypto/crypto/arch/hppa: Makefile.inc Log message: Revert r1.5 and reenable assembler version of ghash now that it has been fixed. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/27 15:46:32 Modified files: converters/recode: Makefile converters/recode/patches: patch-tests_bigauto_py Log message: fix big regression test CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/28 00:24:00 Modified files: lib/libressl : ressl.c ressl.h ressl_config.c Log message: revamp the config interface to own memory. easier to use correctly without caller worrying about leaks or lifetimes. after feedback from jsing CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/28 00:52:14 Modified files: www/webkit : Makefile www/webkit/patches: patch-Source_JavaScriptCore_heap_MachineStackMarker_cpp patch-Source_JavaScriptCore_llint_LLIntOfflineAsmConfig_h patch-Source_JavaScriptCore_llint_LowLevelInterpreter32_64_asm patch-Source_JavaScriptCore_llint_LowLevelInterpreter_asm patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port_h patch-Source_ThirdParty_leveldb_port_port_posix_h patch-Source_WTF_wtf_DisallowCType_h patch-Source_WTF_wtf_MathExtras_h patch-Source_WebKit2_Platform_IPC_Connection_h patch-Source_WebKit2_Platform_IPC_unix_ConnectionUnix_cpp patch-Source_WebKit2_UIProcess_StatisticsRequest_cpp patch-Source_WebKit2_WebProcess_soup_WebKitSoupRequestInputStream_h patch-Tools_MiniBrowser_gtk_main_c Log message: Cleanup to help future update and split; no pkg change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/28 01:53:02 Modified files: games/boggle/boggle: boggle.6 games/hunt/hunt: hunt.6 Log message: I was mistaken: Nothing's wrong with contractions, they're just a normal feature of the English language, so revert that part of the previous. Requested by jmc@. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/28 02:48:46 Modified files: net/p5-Net-Ident: Makefile Log message: add PERMIT_ line, given the huge vomit when this is lacking, how could it've been missed? CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/09/28 02:57:37 Modified files: . : events.html papers : index.html Added files: papers : eurobsdcon2014-libressl.html why-must-life-be-hard.gif Log message: LibreSSL: More Than 30 Days Later CVSROOT: /cvs Module name: www Changes by: claudio@cvs.openbsd.org 2014/09/28 02:58:18 www/papers/eurobsdcon2014_iscsi Update of /cvs/www/papers/eurobsdcon2014_iscsi In directory cvs.openbsd.org:/tmp/cvs-serv20009/papers/eurobsdcon2014_iscsi Log Message: Directory /cvs/www/papers/eurobsdcon2014_iscsi added to the repository CVSROOT: /cvs Module name: www Changes by: claudio@cvs.openbsd.org 2014/09/28 03:29:01 Modified files: . : events.html papers : index.html Added files: papers/eurobsdcon2014_iscsi: index.html mgp00001.html mgp00001.idx.png mgp00001.png mgp00001.txt mgp00002.html mgp00002.idx.png mgp00002.png mgp00002.txt mgp00003.html mgp00003.idx.png mgp00003.png mgp00003.txt mgp00004.html mgp00004.idx.png mgp00004.png mgp00004.txt mgp00005.html mgp00005.idx.png mgp00005.png mgp00005.txt mgp00006.html mgp00006.idx.png mgp00006.png mgp00006.txt mgp00007.html mgp00007.idx.png mgp00007.png mgp00007.txt mgp00008.html mgp00008.idx.png mgp00008.png mgp00008.txt mgp00009.html mgp00009.idx.png mgp00009.png mgp00009.txt mgp00010.html mgp00010.idx.png mgp00010.png mgp00010.txt mgp00011.html mgp00011.idx.png mgp00011.png mgp00011.txt mgp00012.html mgp00012.idx.png mgp00012.png mgp00012.txt mgp00013.html mgp00013.idx.png mgp00013.png mgp00013.txt mgp00014.html mgp00014.idx.png mgp00014.png mgp00014.txt mgp00015.html mgp00015.idx.png mgp00015.png mgp00015.txt mgp00016.html mgp00016.idx.png mgp00016.png mgp00016.txt mgp00017.html mgp00017.idx.png mgp00017.png mgp00017.txt mgp00018.html mgp00018.idx.png mgp00018.png mgp00018.txt mgp00019.html mgp00019.idx.png mgp00019.png mgp00019.txt mgp00020.html mgp00020.idx.png mgp00020.png mgp00020.txt mgp00021.html mgp00021.idx.png mgp00021.png mgp00021.txt mgp00022.html mgp00022.idx.png mgp00022.png mgp00022.txt mgp00023.html mgp00023.idx.png mgp00023.png mgp00023.txt mgp00024.html mgp00024.idx.png mgp00024.png mgp00024.txt mgp00025.html mgp00025.idx.png mgp00025.png mgp00025.txt mgp00026.html mgp00026.idx.png mgp00026.png mgp00026.txt mgp00027.html mgp00027.idx.png mgp00027.png mgp00027.txt mgp00028.html mgp00028.idx.png mgp00028.png mgp00028.txt mgp00029.html mgp00029.idx.png mgp00029.png mgp00029.txt mgp00030.html mgp00030.idx.png mgp00030.png mgp00030.txt mgp00031.html mgp00031.idx.png mgp00031.png mgp00031.txt Log message: Add my slides about iscsid and vscsi CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 04:01:52 Modified files: xserver/os : osinit.c Log message: white space diff redux CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/28 04:03:05 Modified files: sys/kern : subr_pool.c Log message: in pool_destroy, enter and leave mutex as necessary to satisfy assertions. ok dlg CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/28 04:41:50 www/papers/eurobsdcon2014_arc4random Update of /cvs/www/papers/eurobsdcon2014_arc4random In directory cvs.openbsd.org:/tmp/cvs-serv4287/papers/eurobsdcon2014_arc4random Log Message: Directory /cvs/www/papers/eurobsdcon2014_arc4random added to the repository CVSROOT: /cvs Module name: src Changes by: benno@cvs.openbsd.org 2014/09/28 04:43:33 Modified files: share/man/man1 : gcc-local.1 Log message: document -fstack-shuffle ok jmc@ tedu@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/28 04:45:35 Modified files: . : events.html papers : index.html Added files: papers/eurobsdcon2014_arc4random: index.html mgp00001.html mgp00001.idx.jpg mgp00001.jpg mgp00001.txt mgp00002.html mgp00002.idx.jpg mgp00002.jpg mgp00002.txt mgp00003.html mgp00003.idx.jpg mgp00003.jpg mgp00003.txt mgp00004.html mgp00004.idx.jpg mgp00004.jpg mgp00004.txt mgp00005.html mgp00005.idx.jpg mgp00005.jpg mgp00005.txt mgp00006.html mgp00006.idx.jpg mgp00006.jpg mgp00006.txt mgp00007.html mgp00007.idx.jpg mgp00007.jpg mgp00007.txt mgp00008.html mgp00008.idx.jpg mgp00008.jpg mgp00008.txt mgp00009.html mgp00009.idx.jpg mgp00009.jpg mgp00009.txt mgp00010.html mgp00010.idx.jpg mgp00010.jpg mgp00010.txt mgp00011.html mgp00011.idx.jpg mgp00011.jpg mgp00011.txt mgp00012.html mgp00012.idx.jpg mgp00012.jpg mgp00012.txt mgp00013.html mgp00013.idx.jpg mgp00013.jpg mgp00013.txt mgp00014.html mgp00014.idx.jpg mgp00014.jpg mgp00014.txt mgp00015.html mgp00015.idx.jpg mgp00015.jpg mgp00015.txt mgp00016.html mgp00016.idx.jpg mgp00016.jpg mgp00016.txt mgp00017.html mgp00017.idx.jpg mgp00017.jpg mgp00017.txt mgp00018.html mgp00018.idx.jpg mgp00018.jpg mgp00018.txt mgp00019.html mgp00019.idx.jpg mgp00019.jpg mgp00019.txt mgp00020.html mgp00020.idx.jpg mgp00020.jpg mgp00020.txt mgp00021.html mgp00021.idx.jpg mgp00021.jpg mgp00021.txt mgp00022.html mgp00022.idx.jpg mgp00022.jpg mgp00022.txt mgp00023.html mgp00023.idx.jpg mgp00023.jpg mgp00023.txt mgp00024.html mgp00024.idx.jpg mgp00024.jpg mgp00024.txt mgp00025.html mgp00025.idx.jpg mgp00025.jpg mgp00025.txt mgp00026.html mgp00026.idx.jpg mgp00026.jpg mgp00026.txt mgp00027.html mgp00027.idx.jpg mgp00027.jpg mgp00027.txt mgp00028.html mgp00028.idx.jpg mgp00028.jpg mgp00028.txt mgp00029.html mgp00029.idx.jpg mgp00029.jpg mgp00029.txt mgp00030.html mgp00030.idx.jpg mgp00030.jpg mgp00030.txt mgp00031.html mgp00031.idx.jpg mgp00031.jpg mgp00031.txt mgp00032.html mgp00032.idx.jpg mgp00032.jpg mgp00032.txt mgp00033.html mgp00033.idx.jpg mgp00033.jpg mgp00033.txt mgp00034.html mgp00034.idx.jpg mgp00034.jpg mgp00034.txt mgp00035.html mgp00035.idx.jpg mgp00035.jpg mgp00035.txt mgp00036.html mgp00036.idx.jpg mgp00036.jpg mgp00036.txt mgp00037.html mgp00037.idx.jpg mgp00037.jpg mgp00037.txt mgp00038.html mgp00038.idx.jpg mgp00038.jpg mgp00038.txt mgp00039.html mgp00039.idx.jpg mgp00039.jpg mgp00039.txt Log message: arc4random CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/28 04:50:33 Modified files: lib/libssl/src/crypto/x509: x509_req.c Log message: Someone (TM) thought it was smart to save memory by using malloc(1) and manual field fiddling to create an ASN1_INTEGER object, instead of using M_ASN1_INTEGER_new() which will allocate sizeof(long) bytes. That person had probably never looked into malloc(3) and never heard of allocation size rounding. Thus, replace the obfuscated code with M_ASN1_INTEGER_new() followed by ASN1_INTEGER_set(), to achieve a similar result, without the need for /* version == 0 */ comments. ok bcook@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/28 04:52:59 Modified files: lib/libssl/src/crypto/x509: x509_trs.c Log message: X509_TRUST_add(): check X509_TRUST_get0() return value before dereferencing it, for it may be NULL. Do not leak memory upon error. ok bcook@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/28 04:53:57 Modified files: lib/libssl/src/crypto/x509: x509_v3.c Log message: X509v3_add_ext(): do not free stuff we did not allocate in the error path. ok bcook@ CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/28 05:02:37 Modified files: dist/Mesa/src/egl/main: egl.pc.in lib/libEGL : Makefile Log message: Match the behaviour of Mesa when built by autoconf and link libEGL against libgbm and libglapi. The libgbm requirement comes from the drm EGL backend that was enabled with the 10.2.3 update. ok matthieu@ kettenis@ CVSROOT: /cvs Module name: xenocara Changes by: kettenis@cvs.openbsd.org 2014/09/28 06:53:26 Modified files: lib/libEGL : Makefile Log message: Add -DHAVE_LIBDRM to CPPFLAGS when approriate. ok jsg@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2014/09/28 06:58:02 Modified files: etc : netstart Log message: Revert 1.142. Without the down netstart will just print the ifconfig output because it may end up just calling 'ifconfig $if'. This needs to be done better and properly tested. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/28 07:26:55 Modified files: shells/bash : Makefile distinfo Log message: Security update to 4.3.27: This patch changes the encoding bash uses for exported functions to avoid clashes with shell variables and to avoid depending only on an environment variable's contents to determine whether or not to interpret it as a shell function. (CVE-2014-6277, CVE-2014-7186, CVE-2014-7187) CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/28 07:27:38 Modified files: shells/bash : Tag: OPENBSD_5_6 Makefile distinfo Log message: Security update to 4.3.27: This patch changes the encoding bash uses for exported functions to avoid clashes with shell variables and to avoid depending only on an environment variable's contents to determine whether or not to interpret it as a shell function. (CVE-2014-6277, CVE-2014-7186, CVE-2014-7187) CVSROOT: /cvs Module name: www Changes by: guenther@cvs.openbsd.org 2014/09/28 07:39:54 www/papers/eurobsdcon2014_securelazy Update of /cvs/www/papers/eurobsdcon2014_securelazy In directory cvs.openbsd.org:/tmp/cvs-serv29443/eurobsdcon2014_securelazy Log Message: Directory /cvs/www/papers/eurobsdcon2014_securelazy added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/28 07:44:48 Modified files: math/graphviz : Makefile math/graphviz/patches: patch-configure Log message: Make sure not to pick up guile2 if present. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/28 07:50:24 Modified files: . : events.html Log message: it is over CVSROOT: /cvs Module name: www Changes by: guenther@cvs.openbsd.org 2014/09/28 07:55:56 Modified files: papers : index.html Added files: papers/eurobsdcon2014_securelazy: Lazy.slides TABLE_OF_CONTENTS.html flowers.jpg fun.png goodbye.gif hacker.png map.png slide001.html slide002.html slide003.html slide003a.html slide004.html slide005.html slide006.html slide006a.html slide006b.html slide007.html slide008.html slide008a.html slide009.html slide009a.html slide009b.html slide010.html slide010a.html slide011.html slide011a.html slide012.html slide012a.html slide013.html slide014.html slide015.html slide015a.html slide016.html slide017.html slide017a.html slide017b.html slide018.html slide019.html slide019a.html slide019b.html slide020.html slide021.html slide021a.html slide022.html slide023.html slide024.html slide025.html slide026.html slide026a.html slide026b.html slide027.html slide028.html slide029.html slide030.html slide031.html slide031a.html slide032.html slide032a.html slide033.html slide033a.html slide034.html slide035.html slide036.html slide037.html Log message: blah blah blah CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/28 07:57:16 Modified files: regress/lib/libressl/goressl: ressl.go Log message: Make the goressl regress test compile again. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/28 08:11:14 Modified files: productivity/gnucash: Makefile distinfo productivity/gnucash/pkg: DESCR PLIST Log message: Update to gnucash-2.6.4. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/28 08:26:42 Modified files: sys/netinet : ip_carp.c Log message: Remove a limitation that ignored IPv6 link-local addresses on carp(4). This workaround was needed when the interface link-local address was still enabled by default to prevent immediate state transition on interfaces without any configured addresses. This is not needed anymore and removing the limitation allows to use carp(4) with addresses like fe80::2%carp0. discussed with some ok mpi@ pelikan@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/28 08:45:48 Modified files: lib/libssl/src/doc/ssl: SSL_CTX_use_certificate.pod lib/libssl/src/ssl: ssl.h ssl_rsa.c lib/libressl : ressl.c Log message: Add a new API function SSL_CTX_use_certificate_chain() that allows to read the PEM-encoded certificate chain from memory instead of a file. This idea is derived from an older implementation in relayd that was needed to use the function with a privep'ed process in a chroot. Now it is time to get it into LibreSSL to make the API more privsep- friendly and to make it available for other programs and the ressl library. ok jsing@ miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/28 08:46:09 Modified files: lib/libressl : ressl.h ressl_config.c Log message: Provide a ressl config function that explicitly clears keys. Now that ressl config takes copies of the keys passed to it, the keys need to be explicitly cleared. While this can be done by calling the appropriate functions with a NULL pointer, it is simpler and more obvious to call one function that does this for you. ok tedu@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/28 08:47:06 Modified files: lib/libssl/ssl : shlib_version Log message: Bump minor after adding SSL_CTX_use_certificate_chain(). ok jsing@ miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/28 09:08:02 Modified files: lib/libressl : ressl.h Log message: Wrap long lines and add missing argument name. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/28 09:43:32 Modified files: devel/ruby-rake: Makefile Log message: Remove rcov from TEST_DEPENDS, as rcov was removed, and it's not even necessary to run the tests. Pointed out by nigel@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/28 09:55:54 ports/databases/ruby-amalgalite/patches Update of /cvs/ports/databases/ruby-amalgalite/patches In directory cvs.openbsd.org:/tmp/cvs-serv1227/patches Log Message: Directory /cvs/ports/databases/ruby-amalgalite/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/28 09:56:45 Modified files: databases/ruby-amalgalite: Makefile Added files: databases/ruby-amalgalite/patches: patch-_metadata Log message: Drop dependency on fastercsv, only needed on ruby 1.8. Pointed out by naddy@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/28 10:08:44 Modified files: databases/puppetdb: Makefile Log message: Unbreak by removing ${MODRUBY_FLAVOR} from RDEP that doesn't use FLAVORs. Pointed out by nigel@ and naddy@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/28 10:13:07 Modified files: www/puppet-dashboard: Makefile Log message: Remove rdoc from RDEPs, should be unnecessary as a copy of rdoc is embedded. Pointed out by naddy@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/28 10:20:36 Modified files: . : events.html Log message: Xr to lazy binding CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 10:56:06 Modified files: lib/libxtrans : ChangeLog Makefile.in Xtrans.c Xtrans.h Xtransint.h Xtranslcl.c Xtranssock.c aclocal.m4 configure configure.ac lib/libxtrans/doc: Makefile.in xtrans.xml Log message: Update to xtrans 1.3.5 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/28 11:06:25 Modified files: devel/cmake : Makefile devel/cmake/patches: patch-Source_cmComputeLinkInformation_cxx Log message: Temporary workaround for a sporadic segfault which seems to result from memory corruption. To be removed when CMake 3.1 will be released. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 11:18:23 Modified files: lib/libXext : ChangeLog Makefile.in aclocal.m4 config.h.in configure configure.ac lib/libXext/include/X11/extensions: extutil.h multibuf.h lib/libXext/man: Makefile.in lib/libXext/specs: Makefile.in lib/libXext/src: Makefile.am Makefile.in XEVI.c XMultibuf.c XSecurity.c XShape.c XSync.c Xcup.c Xdbe.c Xge.c globals.c Removed files: lib/libXext/src: eat.h Log message: Update to libXext 1.3.3 CVSROOT: /cvs Module name: www Changes by: espie@cvs.openbsd.org 2014/09/28 11:20:24 Modified files: papers : index.html Added files: papers : eurobsdcon2014-parallel-make.pdf Log message: +my talk CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 11:22:58 Modified files: lib/libXi : ChangeLog Makefile.in aclocal.m4 configure configure.ac lib/libXi/man : Makefile.in XIQueryVersion.man XIQueryVersion.txt lib/libXi/specs: Makefile.in lib/libXi/src : Makefile.in XIAllowEvents.c XIPassiveGrab.c XIint.h config.h.in Log message: Update to libXi 1.7.4 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 11:26:36 Modified files: proto/inputproto: ChangeLog XI2.h XIproto.h configure.ac proto/inputproto/specs: XI2proto.txt Log message: Update to inputproto 2.3.1 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 11:30:47 Modified files: app/xrandr : ChangeLog Makefile.in aclocal.m4 compile configure configure.ac xrandr.c app/xrandr/man : Makefile.in Log message: Update to xrandr 1.4.3 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/09/28 11:31:46 Modified files: . : MODULES Log message: udate CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/28 11:34:01 Modified files: net/dnsmasq : Makefile distinfo net/dnsmasq/patches: patch-man_dnsmasq_8 patch-src_config_h Log message: Update to dnsmasq 2.72. ok sthen@ CVSROOT: /cvs Module name: www Changes by: schwarze@cvs.openbsd.org 2014/09/28 11:52:16 Modified files: . : events.html papers : index.html Log message: add source code for my tutorial and missing events link for espie@ CVSROOT: /cvs Module name: www Changes by: schwarze@cvs.openbsd.org 2014/09/28 11:54:41 Added files: papers : eurobsdcon2014-mandoc-paper.tgz eurobsdcon2014-mandoc-slides.tgz Log message: forgotten files, sorry CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/28 12:15:41 Modified files: devel/cmake : Makefile Added files: devel/cmake/patches: patch-Source_CPack_cmCPackGenerator_cxx patch-Source_cmLocalGenerator_cxx Log message: Better safe than sorry (adapted from upstream) CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/28 12:42:50 Modified files: usr.sbin/ldomctl: config.c Log message: Use TAILQ_FOREACH_SAFE when we might delete entries for the list. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/28 12:52:04 Modified files: sys/kern : kern_exec.c sys_pipe.c Log message: Replace uvm_km_alloc(9) and uvm_km_free(9) with the equivalent km_alooc(9) and km_free(9) calls. ok tedu@, mlarkin@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/28 13:14:36 Modified files: sys/arch/sparc64/dev: vdsp.c Log message: Properly serialize closing our vnode. Fixes the occasional panic during reboot or when restaring ldomd(8). CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/28 13:44:21 Modified files: shells/bash : Tag: OPENBSD_5_5 Makefile distinfo Log message: Security update to 4.2.50: .49: CVE-2014-7169 (incomplete fix for CVE-2014-6271) .50: CVE-2014-6277, CVE-2014-7186, CVE-2014-7187 This patch changes the encoding bash uses for exported functions to avoid clashes with shell variables and to avoid depending only on an environment variable's contents to determine whether or not to interpret it as a shell function. CVSROOT: /cvs Module name: xenocara Changes by: rpe@cvs.openbsd.org 2014/09/28 14:48:59 Modified files: . : Makefile Log message: Create xetc.tgz without intermediate file. OK matthieu@ CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/28 15:22:15 Modified files: . : 56.html Log message: fdisk(8) and dhclient(8) changes. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/28 15:36:45 Modified files: emulators/qemu : Makefile distinfo Log message: Update to QEMU 2.1.2. ok bcallah@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/09/28 16:44:50 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Register recently removal of ruby 1.8 ports OK jca@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/28 18:07:55 Modified files: sys/dev/ic : wdc.c Log message: correctly decrement the C_SCSIXFER reference count in wdc_xfer flags if the ata stack xfer free path is called before teh scsi xfer free path. this fixes a leak. in the vast majority of uses (eg, filesystems mounted on cd(4) via atapiscsi(4)) the scsi xfer free is always done first. however, if you're doing ioctls (eg, cdio(1)), the scsi ref is held over to the ioctl completion path, so the ata xfer free happens first. problem found by patrick keshishian who did some excellent work debugging this and providing the right fix for it. ok jmatthew@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/28 22:16:49 Modified files: lib/libssl/src/crypto/x509: x509_vpm.c Log message: X509_VERIFY_PARAM_set1_name(): if invoked with NULL as the second parameter, correctly set param->name to NULL after having freed it. ok bcook@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/28 22:17:24 Modified files: lib/libssl/src/crypto/x509: x509name.c Log message: X509_NAME_get_text_by_OBJ(): make sure we do not pass a negative size to memcpy(). ok bcook@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/28 22:20:14 Modified files: lib/libssl/src/crypto/x509: x509_vfy.c Log message: check_cert(): be sure to reset ctx->current_crl to NULL before freeing it. X509_STORE_CTX_init(): do not free the X509_STORE_CTX * parameter upon failure, for we did not allocate it and it might not come from the heap, such as in check_crl_path() in this very same file where X509_STORE_CTX_init() gets invoked with a stack address. ok bcook@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/28 23:25:05 Log message: Import games/mars ok landry@ M.A.R.S. is a ridiculous 2D space shooter with awesome visual effects and attractive physics. Players can battle each other or computer controlled enemies in exciting game modes. In the year 3547, civilizations all over the galaxy have settled their own planets, living in peace and harmony. But outside their contemplative habitats, the GREAT WAR is raging. As a famous fighter on your way to never ending honor and prosperity, you must protect your planet from the oncoming doom of your jealous neighbors! Status: Vendor Tag: bcallah Release Tags: bcallah_20140929 N ports/games/mars/Makefile N ports/games/mars/distinfo N ports/games/mars/patches/patch-CMakeLists_txt N ports/games/mars/patches/patch-src_System_window_cpp N ports/games/mars/patches/patch-src_CMakeLists_txt N ports/games/mars/patches/patch-src_System_settings_cpp N ports/games/mars/pkg/DESCR N ports/games/mars/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/28 23:25:30 Modified files: games : Makefile Log message: +mars CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 01:00:22 Modified files: lang/python : python.port.mk Log message: distribute has been merged back into setuptools long time ago; python3 ports can safely use setuptools now. ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 01:02:03 Modified files: audio/pithos : Makefile audio/py-mpd2 : Makefile audio/py-tagpy : Makefile devel/py-babel : Makefile devel/py-isodate: Makefile devel/py-nose : Makefile devel/py-pip : Makefile devel/py-py : Makefile devel/py-test : Makefile devel/py-tz : Makefile security/py-bcrypt: Makefile security/py-passlib: Makefile textproc/py-MarkupSafe: Makefile textproc/py-rdflib: Makefile www/py-beaker : Makefile www/py-mako : Makefile audio/sonata : Makefile Log message: bump after switch from py3-distribute to py3-setuptools ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 01:04:39 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Removed files: devel/py-distribute: Makefile distinfo devel/py-distribute/pkg: DESCR PFRAG.no-python3 PFRAG.python3 PLIST Log message: remove distribute, superseded by setuptools (already removed from devel/Makefile by a commit a few days ago, oops) ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 01:07:10 Modified files: devel/py-setuptools: Makefile devel/py-setuptools/pkg: PFRAG.python3 Log message: add @pkgpath for py-distribute,python3 ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 01:40:07 Modified files: devel/lua-lgi : Makefile devel/lua-lgi/pkg: DESCR Log message: fix interpreter name in DESCR CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/29 02:10:01 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 02:11:31 Modified files: net/py-impacket: Makefile distinfo net/py-impacket/pkg: PLIST Added files: net/py-impacket/patches: patch-examples_nmapAnswerMachine_py patch-examples_tracer_py patch-setup_py Log message: Update to impacket-0.9.12 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 02:25:39 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-Modules_GNUInstallDirs_cmake patch-Modules_Platform_OpenBSD_cmake Added files: devel/cmake/patches: patch-CTestCustom_cmake_in patch-Modules_FindGTK2_cmake patch-Source_cmELF_cxx Removed files: devel/cmake/patches: patch-Modules_Platform_UnixPaths_cmake Log message: Merge OpenBSD-related fixes from upstream git kudos to Rolf Eike Beer CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/09/29 02:41:55 Modified files: usr.sbin/smtpd : table_passwd.c Log message: during a small refactor, we broke table_passwd. lookup function rely on a parsing function to have a struct passwd members point to the appropriate position in a buffer... but instead of passing the buffer, the parsing function uses its own internal buffer which will no longer be valid upon return. turns out to work by luck in my tests, not so much when Daniel Adolfsson tried to use it. spotted by Daniel Adolfsson CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 02:43:47 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in patch-configure Log message: Update to mpd-0.18.16 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 02:45:35 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-Modules_GNUInstallDirs_cmake Log message: Shrug. Fix typo CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/29 02:52:31 Modified files: security/nss : Makefile security/nss/pkg: PLIST Log message: shlib Minor bump + PLIST update, i actually missed that pkcs1sig.h was supposed to be installed.. noted by and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 03:26:00 Modified files: audio/pianobar : Makefile distinfo audio/pianobar/patches: patch-Makefile Removed files: audio/pianobar/patches: patch-src_libpiano_response_c patch-src_player_c patch-src_ui_dispatch_h Log message: Update to pianobar-2014.09.28 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/29 03:30:31 Modified files: lib/libressl : ressl_config.c Log message: When freeing the config, explicitly call ressl_config_clear_keys() rather than rerolling our own key clearing code. ok tedu@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/29 03:58:13 Log message: Import guile 2.0.11. This is version 2.0 of Guile, Project GNU's extension language library. Guile is an implementation of the Scheme programming language, packaged as a library that can be linked into applications to give them their own extension language. Guile supports other languages as well, giving users of Guile-based applications a choice of languages. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140929 N ports/lang/guile2/distinfo N ports/lang/guile2/Makefile N ports/lang/guile2/pkg/DESCR N ports/lang/guile2/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/29 03:58:46 Modified files: lang : Makefile Log message: +guile2 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/29 04:00:33 Removed files: devel/slib-guile/pkg: DESCR Log message: Bad espie@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 04:09:32 Modified files: audio/hs-libmpd: Makefile distinfo audio/hs-libmpd/pkg: PLIST Log message: Update to hs-libmpd-0.9.0.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 04:10:45 Modified files: x11/xmobar : Makefile x11/xmobar/patches: patch-xmobar_cabal Added files: x11/xmobar/patches: patch-src_Plugins_Monitors_MPD_hs Log message: Unbreak after update to hs-libmpd-0.9.0.1 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/29 04:27:43 Modified files: sys/arch/sparc64/dev: vdsp.c Log message: Add support for using block devices in addition to files. Tested by jasper@. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/29 04:51:49 Modified files: share/man/man4/man4.sparc64: vds.4 Log message: document that vds(4) now supports block devices CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/29 04:53:53 Modified files: usr.sbin/ldomctl: ldomctl.8 Log message: document that ldom guests now support block devices CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 05:12:54 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-lib_menubar_utils_lua_in Log message: menubar: skip comments in .desktop files (upstream git commit f2f6eb68214df6369486c55563b957c3572a1c9d) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/29 05:33:55 Modified files: net : Makefile Log message: link p5-Net-Ident CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/29 05:57:54 Modified files: www/webkit : Makefile Log message: Add PORTROACH annotation to restrict to 2.4.X since a new webkit 2.6.X will be imported in the future. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/29 06:14:30 Modified files: www/webkit : Makefile Log message: Too much cleanup, not enough bump. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 07:51:25 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to 2014.09.29.2 CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/09/29 07:57:35 Modified files: sys/arch/luna88k/dev: omrasops.c omrasops.h Log message: Use raster(logic) operation, or ROP, function on LUNA frame buffer. It makes 4bpp wscons putchar ~20% faster. ok @miod CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 08:33:44 Modified files: x11/mlterm : Makefile distinfo x11/mlterm/patches: patch-configure_in patch-kiklib_src_Makefile_in patch-xwindow_fb_x_h patch-xwindow_x_screen_c patch-xwindow_xlib_x_window_c Log message: Update to mlterm-3.3.8 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/29 09:09:12 Modified files: graphics/opencv: Makefile graphics/opencv/pkg: PLIST-docs Log message: Zap bogus file from pkg/PLIST-docs Spotted by naddy@ ok zhuk@, Rafael Sadowski (maintainer) CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/29 09:11:29 Modified files: lib/libressl : ressl.c ressl.h ressl_client.c ressl_config.c ressl_internal.h ressl_server.c Log message: Add an option that allows the enabled SSL protocols to be explicitly configured. Discussed with several. ok bcook@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/29 09:31:38 Modified files: lib/libressl : ressl.c ressl_server.c Log message: Move cipher configuration handling to the shared SSL configuration function so that applies to both the ressl client and server. CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/29 10:12:51 Modified files: lang/gambit : Makefile Log message: Unbreak gambit on hppa. The package builds and the interpreter works fine. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/29 10:20:40 Modified files: lib/libssl/src/crypto/x509: x509_att.c Log message: Previous fix (1.12) would cause a NULL pointer dereference in the error path if a NULL stack was passed as argument. Fix this by returning NULL early in that case. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/29 11:43:29 Modified files: sys/arch/sparc64/dev: ldc.c ldcvar.h Log message: Add transmit queue locking. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/29 11:48:51 Modified files: sys/arch/sparc64/dev: vdsp.c Log message: Add locking for our private descriptor message queue. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/09/29 12:23:15 Modified files: games/ufoai : Makefile.inc games/ufoai/base: Makefile distinfo games/ufoai/base/patches: patch-build_flags_mk patch-build_install_mk patch-build_modules_ufo_mk patch-build_modules_ufoded_mk patch-debian_ufoai_6 patch-src_client_cl_language_c patch-src_common_common_h patch-src_game_lua_loslib_c patch-src_ports_unix_unix_shared_c patch-src_tools_radiant_libs_stream_textstream_h patch-src_tools_radiant_radiant_render_OpenGLRenderSystem_cpp patch-src_tools_radiant_radiant_url_cpp games/ufoai/base/pkg: PLIST-editor PLIST-main games/ufoai/data: Makefile distinfo games/ufoai/data/pkg: PLIST Added files: games/ufoai/base/patches: patch-build_platforms_openbsd_mk patch-config_h patch-src_tools_radiant_radiant_exec_cpp Removed files: games/ufoai/base/patches: patch-Makefile patch-configure Log message: update to ufoai-2.5 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/29 12:44:49 Modified files: usr.bin/at : at.c Log message: When setting environment variables in the atrun script, use the "export foo=bar" form instead of "foo=bar; export foo" since the former allows the shell to catch variable names that are not valid shell identifiers. This will cause /bin/sh to exit with an error (which gets mailed to the at user) and it will not run the script. OK miod@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:29:56 Modified files: databases/ruby-redis-namespace: Makefile distinfo Log message: - update to redis-namespace-1.5.1 - sync HOMEPAGE CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/09/29 13:30:47 Modified files: usr.sbin/httpd : http.h httpd.c server_fcgi.c server_http.c Log message: whitespace spotted while studying the code CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:31:20 Modified files: databases/ruby-resque: Makefile Log message: update HOMEPAGE CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/29 13:34:23 Modified files: sys/arch/sparc64/dev: vdsp.c Log message: The interrupt handler should now be mpsafe. CVSROOT: /cvs Module name: src Changes by: gsoares@cvs.openbsd.org 2014/09/29 13:37:51 Modified files: share/mk : bsd.README bsd.prog.mk Log message: add LIBRESSL; OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/29 13:38:00 Modified files: sysutils/ansible: Makefile distinfo Log message: Update ansible to 1.7.2 OK aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:39:53 Modified files: databases/py-mongo: Makefile distinfo databases/py-mongo/pkg: PLIST Log message: update to py-mongo-2.7.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:43:40 Modified files: devel/bpython : Makefile distinfo devel/bpython/pkg: PLIST Log message: update to bpython-0.13.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:50:24 Modified files: devel/dejagnu : Makefile distinfo Log message: update to dejagnu-1.5.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:57:31 Modified files: x11/girara : Makefile Log message: set HOME to WRKDIR instead of real HOME CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 13:58:04 Modified files: devel/check : Makefile distinfo devel/check/patches: patch-doc_Makefile_in devel/check/pkg: PLIST Log message: update to check-0.9.14 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/29 14:15:49 Modified files: www/py-tornado : Makefile Log message: use MODPY_WANTLIB instead of hardcoding python2.7 CVSROOT: /cvs Module name: ports Changes by: tobiasu@cvs.openbsd.org 2014/09/29 14:29:29 Modified files: lang/gcc/4.9/pkg: PLIST-main Added files: lang/gcc/4.9/pkg: PFRAG.sparc-main Log message: Add missing PLIST fragment for sparc ok pascal@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/29 14:56:47 Modified files: usr.sbin/smtpd : smtpctl.8 usr.sbin/smtpd/smtpctl: Makefile Log message: lightly document mailq; ok gilles CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/29 16:10:37 Modified files: emulators/dosbox: Makefile Log message: Unbreak on hppa. The package builds fine. CVSROOT: /cvs Module name: src Changes by: jturner@cvs.openbsd.org 2014/09/29 16:56:15 Log message: Update sqlite3 to 3.8.6. A list of changes are available here: http://sqlite.org/releaselog/3_8_6.html. Tested in a bulk and ok landry@ Status: Vendor Tag: sqlite3 Release Tags: sqlite_3_8_6 U src/lib/libsqlite3/sqlite3.pc.in U src/lib/libsqlite3/VERSION U src/lib/libsqlite3/addopcodes.awk U src/lib/libsqlite3/mkopcodec.awk U src/lib/libsqlite3/mkopcodeh.awk U src/lib/libsqlite3/ext/README.txt U src/lib/libsqlite3/ext/async/sqlite3async.c U src/lib/libsqlite3/ext/async/README.txt U src/lib/libsqlite3/ext/async/sqlite3async.h U src/lib/libsqlite3/ext/fts1/fts1_porter.c U src/lib/libsqlite3/ext/fts1/README.txt U src/lib/libsqlite3/ext/fts1/ft_hash.c U src/lib/libsqlite3/ext/fts1/ft_hash.h U src/lib/libsqlite3/ext/fts1/fts1.c U src/lib/libsqlite3/ext/fts1/fts1.h U src/lib/libsqlite3/ext/fts1/fts1_hash.c U src/lib/libsqlite3/ext/fts1/fts1_hash.h U src/lib/libsqlite3/ext/fts1/fts1_tokenizer.h U src/lib/libsqlite3/ext/fts1/fts1_tokenizer1.c U src/lib/libsqlite3/ext/fts1/fulltext.c U src/lib/libsqlite3/ext/fts1/fulltext.h U src/lib/libsqlite3/ext/fts1/simple_tokenizer.c U src/lib/libsqlite3/ext/fts1/tokenizer.h U src/lib/libsqlite3/ext/fts2/README.tokenizers U src/lib/libsqlite3/ext/fts2/README.txt U src/lib/libsqlite3/ext/fts2/fts2.c U src/lib/libsqlite3/ext/fts2/fts2.h U src/lib/libsqlite3/ext/fts2/fts2_hash.c U src/lib/libsqlite3/ext/fts2/fts2_hash.h U src/lib/libsqlite3/ext/fts2/fts2_icu.c U src/lib/libsqlite3/ext/fts2/fts2_porter.c U src/lib/libsqlite3/ext/fts2/fts2_tokenizer.c U src/lib/libsqlite3/ext/fts2/fts2_tokenizer.h U src/lib/libsqlite3/ext/fts2/fts2_tokenizer1.c U src/lib/libsqlite3/ext/fts2/mkfts2amal.tcl U src/lib/libsqlite3/ext/fts3/README.tokenizers U src/lib/libsqlite3/ext/fts3/README.content U src/lib/libsqlite3/ext/fts3/README.syntax U src/lib/libsqlite3/ext/fts3/fts3_porter.c U src/lib/libsqlite3/ext/fts3/README.txt U src/lib/libsqlite3/ext/fts3/fts3.c U src/lib/libsqlite3/ext/fts3/fts3.h U src/lib/libsqlite3/ext/fts3/fts3Int.h U src/lib/libsqlite3/ext/fts3/fts3_aux.c U src/lib/libsqlite3/ext/fts3/fts3_expr.c U src/lib/libsqlite3/ext/fts3/fts3_hash.c U src/lib/libsqlite3/ext/fts3/fts3_hash.h U src/lib/libsqlite3/ext/fts3/fts3_icu.c U src/lib/libsqlite3/ext/fts3/fts3_tokenize_vtab.c U src/lib/libsqlite3/ext/fts3/fts3_snippet.c U src/lib/libsqlite3/ext/fts3/fts3_term.c U src/lib/libsqlite3/ext/fts3/fts3_test.c U src/lib/libsqlite3/ext/fts3/fts3_tokenizer.c U src/lib/libsqlite3/ext/fts3/fts3_tokenizer.h U src/lib/libsqlite3/ext/fts3/fts3_tokenizer1.c U src/lib/libsqlite3/ext/fts3/fts3_unicode.c U src/lib/libsqlite3/ext/fts3/fts3_unicode2.c U src/lib/libsqlite3/ext/fts3/fts3_write.c U src/lib/libsqlite3/ext/fts3/fts3speed.tcl U src/lib/libsqlite3/ext/fts3/mkfts3amal.tcl U src/lib/libsqlite3/ext/fts3/tool/fts3view.c U src/lib/libsqlite3/ext/fts3/unicode/CaseFolding.txt U src/lib/libsqlite3/ext/fts3/unicode/UnicodeData.txt U src/lib/libsqlite3/ext/fts3/unicode/mkunicode.tcl U src/lib/libsqlite3/ext/icu/README.txt U src/lib/libsqlite3/ext/icu/icu.c U src/lib/libsqlite3/ext/icu/sqliteicu.h U src/lib/libsqlite3/ext/misc/percentile.c U src/lib/libsqlite3/ext/misc/amatch.c U src/lib/libsqlite3/ext/misc/closure.c N src/lib/libsqlite3/ext/misc/compress.c N src/lib/libsqlite3/ext/misc/fileio.c U src/lib/libsqlite3/ext/misc/fuzzer.c U src/lib/libsqlite3/ext/misc/ieee754.c U src/lib/libsqlite3/ext/misc/nextchar.c U src/lib/libsqlite3/ext/misc/wholenumber.c U src/lib/libsqlite3/ext/misc/regexp.c U src/lib/libsqlite3/ext/misc/rot13.c U src/lib/libsqlite3/ext/misc/spellfix.c U src/lib/libsqlite3/ext/misc/totype.c U src/lib/libsqlite3/ext/misc/vfslog.c U src/lib/libsqlite3/ext/misc/vtshim.c U src/lib/libsqlite3/ext/rtree/rtree1.test U src/lib/libsqlite3/ext/rtree/README U src/lib/libsqlite3/ext/rtree/rtree.c U src/lib/libsqlite3/ext/rtree/rtree.h U src/lib/libsqlite3/ext/rtree/rtree_perf.tcl U src/lib/libsqlite3/ext/rtree/rtree2.test U src/lib/libsqlite3/ext/rtree/rtree3.test U src/lib/libsqlite3/ext/rtree/rtree4.test U src/lib/libsqlite3/ext/rtree/rtree5.test U src/lib/libsqlite3/ext/rtree/rtree6.test U src/lib/libsqlite3/ext/rtree/rtree7.test U src/lib/libsqlite3/ext/rtree/rtree8.test U src/lib/libsqlite3/ext/rtree/rtree9.test U src/lib/libsqlite3/ext/rtree/rtreeA.test U src/lib/libsqlite3/ext/rtree/rtreeB.test U src/lib/libsqlite3/ext/rtree/rtreeC.test U src/lib/libsqlite3/ext/rtree/rtreeD.test N src/lib/libsqlite3/ext/rtree/rtreeE.test U src/lib/libsqlite3/ext/rtree/rtree_util.tcl U src/lib/libsqlite3/ext/rtree/sqlite3rtree.h U src/lib/libsqlite3/ext/rtree/tkt3363.test U src/lib/libsqlite3/ext/rtree/viewrtree.tcl U src/lib/libsqlite3/src/analyze.c U src/lib/libsqlite3/src/alter.c U src/lib/libsqlite3/src/memjournal.c U src/lib/libsqlite3/src/attach.c U src/lib/libsqlite3/src/auth.c U src/lib/libsqlite3/src/backup.c U src/lib/libsqlite3/src/bitvec.c U src/lib/libsqlite3/src/btmutex.c U src/lib/libsqlite3/src/btree.c U src/lib/libsqlite3/src/btree.h U src/lib/libsqlite3/src/btreeInt.h U src/lib/libsqlite3/src/build.c U src/lib/libsqlite3/src/callback.c U src/lib/libsqlite3/src/complete.c U src/lib/libsqlite3/src/ctime.c U src/lib/libsqlite3/src/date.c U src/lib/libsqlite3/src/delete.c U src/lib/libsqlite3/src/expr.c U src/lib/libsqlite3/src/fault.c U src/lib/libsqlite3/src/fkey.c U src/lib/libsqlite3/src/func.c U src/lib/libsqlite3/src/global.c U src/lib/libsqlite3/src/hash.c U src/lib/libsqlite3/src/hash.h U src/lib/libsqlite3/src/hwtime.h U src/lib/libsqlite3/src/insert.c C src/lib/libsqlite3/src/parse.y U src/lib/libsqlite3/src/journal.c U src/lib/libsqlite3/src/legacy.c U src/lib/libsqlite3/src/lempar.c U src/lib/libsqlite3/src/loadext.c U src/lib/libsqlite3/src/main.c U src/lib/libsqlite3/src/malloc.c U src/lib/libsqlite3/src/mem0.c U src/lib/libsqlite3/src/mem1.c U src/lib/libsqlite3/src/mem2.c U src/lib/libsqlite3/src/mem3.c U src/lib/libsqlite3/src/mem5.c U src/lib/libsqlite3/src/mutex_noop.c U src/lib/libsqlite3/src/mutex.c U src/lib/libsqlite3/src/mutex.h U src/lib/libsqlite3/src/test_multiplex.c U src/lib/libsqlite3/src/mutex_unix.c U src/lib/libsqlite3/src/mutex_w32.c U src/lib/libsqlite3/src/notify.c U src/lib/libsqlite3/src/os.c U src/lib/libsqlite3/src/os.h U src/lib/libsqlite3/src/os_common.h N src/lib/libsqlite3/src/os_setup.h C src/lib/libsqlite3/src/os_unix.c U src/lib/libsqlite3/src/os_win.c N src/lib/libsqlite3/src/os_win.h U src/lib/libsqlite3/src/pager.c U src/lib/libsqlite3/src/pager.h U src/lib/libsqlite3/src/pcache.c U src/lib/libsqlite3/src/pcache.h U src/lib/libsqlite3/src/pcache1.c U src/lib/libsqlite3/src/pragma.c U src/lib/libsqlite3/src/prepare.c U src/lib/libsqlite3/src/printf.c U src/lib/libsqlite3/src/random.c U src/lib/libsqlite3/src/resolve.c U src/lib/libsqlite3/src/rowset.c U src/lib/libsqlite3/src/select.c C src/lib/libsqlite3/src/shell.c U src/lib/libsqlite3/src/sqlite.h.in U src/lib/libsqlite3/src/sqlite3.rc U src/lib/libsqlite3/src/sqlite3ext.h U src/lib/libsqlite3/src/sqliteInt.h U src/lib/libsqlite3/src/sqliteLimit.h U src/lib/libsqlite3/src/status.c U src/lib/libsqlite3/src/table.c U src/lib/libsqlite3/src/tclsqlite.c U src/lib/libsqlite3/src/test1.c U src/lib/libsqlite3/src/test2.c U src/lib/libsqlite3/src/test3.c U src/lib/libsqlite3/src/test4.c U src/lib/libsqlite3/src/test5.c U src/lib/libsqlite3/src/test6.c U src/lib/libsqlite3/src/test7.c U src/lib/libsqlite3/src/test8.c U src/lib/libsqlite3/src/test9.c U src/lib/libsqlite3/src/test_async.c U src/lib/libsqlite3/src/test_autoext.c U src/lib/libsqlite3/src/test_backup.c U src/lib/libsqlite3/src/test_btree.c U src/lib/libsqlite3/src/test_config.c U src/lib/libsqlite3/src/test_demovfs.c U src/lib/libsqlite3/src/test_devsym.c U src/lib/libsqlite3/src/test_fs.c U src/lib/libsqlite3/src/test_func.c U src/lib/libsqlite3/src/test_hexio.c U src/lib/libsqlite3/src/test_init.c U src/lib/libsqlite3/src/test_intarray.c U src/lib/libsqlite3/src/test_intarray.h U src/lib/libsqlite3/src/test_journal.c U src/lib/libsqlite3/src/test_loadext.c U src/lib/libsqlite3/src/test_malloc.c U src/lib/libsqlite3/src/test_superlock.c U src/lib/libsqlite3/src/test_multiplex.h U src/lib/libsqlite3/src/test_mutex.c U src/lib/libsqlite3/src/test_onefile.c U src/lib/libsqlite3/src/test_stat.c U src/lib/libsqlite3/src/test_osinst.c U src/lib/libsqlite3/src/test_pcache.c U src/lib/libsqlite3/src/test_quota.c U src/lib/libsqlite3/src/test_quota.h U src/lib/libsqlite3/src/test_rtree.c U src/lib/libsqlite3/src/test_schema.c U src/lib/libsqlite3/src/test_server.c U src/lib/libsqlite3/src/test_sqllog.c U src/lib/libsqlite3/src/test_syscall.c U src/lib/libsqlite3/src/test_tclvar.c U src/lib/libsqlite3/src/test_thread.c U src/lib/libsqlite3/src/test_vfs.c U src/lib/libsqlite3/src/test_vfstrace.c U src/lib/libsqlite3/src/test_wsd.c U src/lib/libsqlite3/src/tokenize.c U src/lib/libsqlite3/src/trigger.c U src/lib/libsqlite3/src/update.c U src/lib/libsqlite3/src/utf.c U src/lib/libsqlite3/src/util.c U src/lib/libsqlite3/src/vacuum.c U src/lib/libsqlite3/src/vdbe.c U src/lib/libsqlite3/src/vdbe.h U src/lib/libsqlite3/src/walker.c U src/lib/libsqlite3/src/vtab.c U src/lib/libsqlite3/src/vdbeInt.h U src/lib/libsqlite3/src/vdbeapi.c U src/lib/libsqlite3/src/vdbeaux.c U src/lib/libsqlite3/src/vdbeblob.c U src/lib/libsqlite3/src/vdbemem.c U src/lib/libsqlite3/src/vdbesort.c U src/lib/libsqlite3/src/vdbetrace.c U src/lib/libsqlite3/src/wal.c U src/lib/libsqlite3/src/wal.h U src/lib/libsqlite3/src/where.c U src/lib/libsqlite3/src/whereInt.h U src/lib/libsqlite3/tool/build-all-msvc.bat U src/lib/libsqlite3/tool/build-shell.sh U src/lib/libsqlite3/tool/checkSpacing.c U src/lib/libsqlite3/tool/diffdb.c U src/lib/libsqlite3/tool/extract.c U src/lib/libsqlite3/tool/fast_vacuum.c U src/lib/libsqlite3/tool/fragck.tcl U src/lib/libsqlite3/tool/genfkey.README U src/lib/libsqlite3/tool/genfkey.test U src/lib/libsqlite3/tool/getlock.c C src/lib/libsqlite3/tool/lemon.c U src/lib/libsqlite3/tool/lempar.c U src/lib/libsqlite3/tool/logest.c U src/lib/libsqlite3/tool/mkautoconfamal.sh U src/lib/libsqlite3/tool/mkkeywordhash.c U src/lib/libsqlite3/tool/mkopts.tcl U src/lib/libsqlite3/tool/mkpragmatab.tcl U src/lib/libsqlite3/tool/mkspeedsql.tcl U src/lib/libsqlite3/tool/mksqlite3c-noext.tcl U src/lib/libsqlite3/tool/mksqlite3c.tcl U src/lib/libsqlite3/tool/mksqlite3h.tcl U src/lib/libsqlite3/tool/mksqlite3internalh.tcl U src/lib/libsqlite3/tool/mkvsix.tcl U src/lib/libsqlite3/tool/offsets.c U src/lib/libsqlite3/tool/omittest.tcl U src/lib/libsqlite3/tool/opcodeDoc.awk U src/lib/libsqlite3/tool/pagesig.c U src/lib/libsqlite3/tool/restore_jrnl.tcl U src/lib/libsqlite3/tool/rollback-test.c U src/lib/libsqlite3/tool/showdb.c U src/lib/libsqlite3/tool/showjournal.c N src/lib/libsqlite3/tool/showstat4.c U src/lib/libsqlite3/tool/showwal.c U src/lib/libsqlite3/tool/soak1.tcl U src/lib/libsqlite3/tool/space_used.tcl U src/lib/libsqlite3/tool/spaceanal.tcl U src/lib/libsqlite3/tool/speedtest.tcl U src/lib/libsqlite3/tool/speedtest16.c U src/lib/libsqlite3/tool/speedtest2.tcl U src/lib/libsqlite3/tool/speedtest8.c U src/lib/libsqlite3/tool/stack_usage.tcl U src/lib/libsqlite3/tool/symbols.sh U src/lib/libsqlite3/tool/speedtest8inst1.c U src/lib/libsqlite3/tool/split-sqlite3c.tcl U src/lib/libsqlite3/tool/symbols-mingw.sh U src/lib/libsqlite3/tool/tostr.awk U src/lib/libsqlite3/tool/vdbe-compress.tcl U src/lib/libsqlite3/tool/vdbe_profile.tcl U src/lib/libsqlite3/tool/warnings-clang.sh U src/lib/libsqlite3/tool/warnings.sh U src/lib/libsqlite3/tool/win/sqlite.vsix 4 conflicts created by this import. Use the following command to help the merge: cvs checkout -jsqlite3:yesterday -jsqlite3 src/lib/libsqlite3 CVSROOT: /cvs Module name: src Changes by: jturner@cvs.openbsd.org 2014/09/29 16:57:54 Modified files: lib/libsqlite3/src: os_unix.c parse.y lib/libsqlite3/tool: lemon.c Log message: Merge conflicts. CVSROOT: /cvs Module name: src Changes by: jturner@cvs.openbsd.org 2014/09/29 16:58:46 Log message: Update the sqlite3 sheel to 3.8.6. ok landry@ Status: Vendor Tag: sqlite3 Release Tags: sqlite_3_8_6 C src/usr.bin/sqlite3/shell.c U src/usr.bin/sqlite3/sqlite3.1 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jsqlite3:yesterday -jsqlite3 src/usr.bin/sqlite3 CVSROOT: /cvs Module name: src Changes by: jturner@cvs.openbsd.org 2014/09/29 16:59:11 Modified files: usr.bin/sqlite3: shell.c Log message: Merge conflicts. CVSROOT: /cvs Module name: src Changes by: jturner@cvs.openbsd.org 2014/09/29 17:00:50 Modified files: lib/libsqlite3 : shlib_version sqlite3.pc lib/libsqlite3/src: sqlite3.h Log message: Bump major to 28, regen .pc and header with new version info. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/29 17:23:52 Modified files: mail/roundcubemail: Makefile distinfo mail/roundcubemail/patches: patch-config_defaults_inc_php Log message: update to Roundcube 1.0.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/29 18:19:18 Modified files: telephony/asterisk: Makefile distinfo telephony/asterisk/patches: patch-main_asterisk_c patch-sounds_sounds_xml Log message: update to asterisk 11.13.0 CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/29 19:12:19 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus distrib/sets/lists/man: mi Log message: sync sets; req by deraadt CVSROOT: /cvs Module name: src Changes by: tobiasu@cvs.openbsd.org 2014/09/29 19:34:34 Modified files: sys/arch/arm/include: vmparam.h Log message: Increase text segment size on Arm to 32MB ok deraadt@ miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/29 23:07:51 Modified files: sys/arch/sparc/include: atomic.h Log message: implement the atomic_shizz(9) bits. sparc lacks cool opcodes, but is only uniprocessor, so these are done with simple critical sections. tested by miod@ bcook@ ok miod@ CVSROOT: /cvs Module name: www Changes by: phessler@cvs.openbsd.org 2014/09/30 00:42:58 Modified files: papers : index.html Added files: papers : eurobsdcon2014-rdomains.pdf Log message: due to some last minute cancelations, I was asked to give a talk at EuroBSDCon this year CVSROOT: /cvs Module name: src Changes by: jmatthew@cvs.openbsd.org 2014/09/30 00:51:58 Modified files: sys/arch/mips64/include: atomic.h lock.h sys/arch/mips64/mips64: cpu.c interrupt.c ipifuncs.c pmap.c softintr.c trap.c sys/arch/octeon/dev: octeon_intr.c octeon_iobus.c octeon_uartbus.c sys/arch/octeon/octeon: lock_machdep.c sys/arch/sgi/localbus: int.c macebus.c sys/arch/sgi/sgi: intr_template.c ip27_machdep.c lock_machdep.c sys/arch/sgi/xbow: xbow.c xbridge.c xheart.c Log message: implement atomic operations using ll/sc, and convert rw_cas and callers of the pre-existing atomics to match. tested on sgi (octane) and octeon (erl) ok miod@ dlg@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/30 01:14:49 Modified files: devel/cmake/patches: patch-Modules_GNUInstallDirs_cmake Log message: committed upstream CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/30 01:18:48 Modified files: security/wpa_supplicant: Makefile Added files: security/wpa_supplicant/patches: patch-src_utils_common_c Log message: util: Don't use "\e" '\e' representing ESC (0x1b) is not C standard, it's a GNU extension. https://gcc.gnu.org/onlinedocs/gcc/Character-Escapes.html#Character-Escapes upstream git commit a8833b84f46626b6fb9e9f277137f26acc72c64e CVSROOT: /cvs Module name: www Changes by: phessler@cvs.openbsd.org 2014/09/30 01:32:03 Modified files: . : events.html Log message: due to some last minute cancelations, I was asked to give a talk at EuroBSDCon this year CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 01:46:36 Modified files: audio/rhythmbox: Makefile distinfo audio/rhythmbox/pkg: PLIST Log message: Update to rhythmbox-3.1; this version is needed by an upcoming gtk+3 update. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/30 02:21:21 Modified files: sys/netinet : ip_input.c Log message: Use the routing table instead of the RB-tree for address lookups in in_ouraddr(). The lookup done in the forwarding case will hopefully be merged with this one in the future. ok kspillner@, bluhm@, claudio@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 02:25:28 Log message: Import webkitgtk4-2.6.0. WebKitGTK+ is the GNOME platform port of the WebKit rendering engine. Offering WebKit's full functionality through a set of GObject-based APIs, it is suitable for projects requiring any kind of web integration, from hybrid HTML/CSS applications to full-fledged web browsers. Still somewhat WIP, nothing depends on it yet. ok landry@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140930 N ports/www/webkitgtk4/Makefile N ports/www/webkitgtk4/distinfo N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_dfg_DFGNode_h N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_jit_ExecutableAllocator_h N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_llint_LLIntOfflineAsmConfig_h N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_llint_LowLevelInterpreter32_64_asm N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_llint_LowLevelInterpreter_asm N ports/www/webkitgtk4/patches/patch-Source_ThirdParty_ANGLE_src_compiler_translator_glslang_y N ports/www/webkitgtk4/patches/patch-Tools_MiniBrowser_gtk_main_c N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_interpreter_JSStack_cpp N ports/www/webkitgtk4/patches/patch-Source_cmake_OptionsCommon_cmake N ports/www/webkitgtk4/patches/patch-Source_WTF_wtf_DisallowCType_h N ports/www/webkitgtk4/patches/patch-Source_WTF_wtf_InlineASM_h N ports/www/webkitgtk4/patches/patch-Source_WTF_wtf_MathExtras_h N ports/www/webkitgtk4/patches/patch-Source_WTF_wtf_Platform_h N ports/www/webkitgtk4/patches/patch-Source_WTF_wtf_RAMSize_cpp N ports/www/webkitgtk4/patches/patch-Source_WTF_wtf_dtoa_utils_h N ports/www/webkitgtk4/patches/patch-Source_WebCore_plugins_PluginDatabase_cpp N ports/www/webkitgtk4/patches/patch-Source_WebKit2_Platform_IPC_Connection_h N ports/www/webkitgtk4/patches/patch-Source_WebKit2_Platform_IPC_unix_ConnectionUnix_cpp N ports/www/webkitgtk4/patches/patch-Source_WebKit2_UIProcess_StatisticsRequest_cpp N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_profiler_ProfileGenerator_cpp N ports/www/webkitgtk4/patches/patch-Source_JavaScriptCore_heap_CopiedBlock_h N ports/www/webkitgtk4/pkg/DESCR N ports/www/webkitgtk4/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 02:26:11 Modified files: www : Makefile Log message: +webkitgtk4 CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/30 02:26:15 Modified files: sys/netinet : ip_icmp.c Log message: Do not use the global list of IPv4 addresses in icmp_reflect()... ...but the routing table! Note that this lookup is redundant with the one done in in_ouraddr() and we should be able to save this information instead of redoing a lookup if we need to send an error message. ok kspillner@, bluhm@, claudio@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/30 02:27:57 Modified files: sys/net : if.c Log message: Stop using the RB-tree in ifa_ifwithaddr() and make it lookup over all the per-interface lists of addresses. Teaks and ok bluhm@, ok kspillner@, claudio@ CVSROOT: /cvs Module name: src Changes by: phessler@cvs.openbsd.org 2014/09/30 02:41:19 Modified files: sys/dev/acpi : acpithinkpad.c Log message: prevent dmesg spam from some new windows-only keys found on very new thinkpads OK mpi@ miod@ CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2014/09/30 05:01:20 Modified files: usr.bin/rcs : rcstime.c Log message: atoi to strtonum; from Fritjof Bornebusch; ok nicm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 06:18:09 Modified files: www/webkit : Makefile distinfo www/webkit/patches: patch-GNUmakefile_in www/webkit/pkg : PFRAG.gtk3 Log message: Minor update to webkit-2.4.6. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/30 06:24:05 Modified files: devel/bpython : Makefile Log message: missing bdep on py-babel CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/30 06:54:22 Modified files: sys/netinet : ip_mroute.c Log message: add back the sys/sysctl.h include removed in rev 1.60 fixes the kernel build when PIM is defined CVSROOT: /cvs Module name: ports Changes by: okan@cvs.openbsd.org 2014/09/30 07:06:24 Modified files: mail/p5-Mail-SpamAssassin: Makefile Added files: mail/p5-Mail-SpamAssassin/patches: patch-lib_Mail_SpamAssassin_DnsResolver_pm Log message: Backport r1603518 from upstream to fix issues with recent Net::DNS updates (>= 0.76). OK sthen CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/30 07:15:12 Modified files: mail/p5-Mail-SpamAssassin: Tag: OPENBSD_5_6 Makefile Added files: mail/p5-Mail-SpamAssassin/patches: Tag: OPENBSD_5_6 patch-lib_Mail_SpamAssassin_DnsResolver_pm Log message: MFC SpamAssassin fix, unbreak DNS-based checks following the update of p5-Net-DNS to 0.76. https://issues.apache.org/SpamAssassin/show_bug.cgi?id=7057 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 07:50:02 Removed files: www/webkitgtk4/patches: patch-Tools_MiniBrowser_gtk_main_c Log message: Drop patch; this part isn't built. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/30 07:59:23 Modified files: security/nss : Tag: OPENBSD_5_5 Makefile security/nss/pkg: Tag: OPENBSD_5_5 PLIST Added files: security/nss/patches: Tag: OPENBSD_5_5 patch-nss_lib_certdb_certdb_c patch-nss_lib_cryptohi_secvfy_c patch-nss_lib_softoken_pkcs11c_c patch-nss_lib_util_manifest_mn patch-nss_lib_util_nssutil_def patch-nss_lib_util_pkcs1sig_c patch-nss_lib_util_pkcs1sig_h Log message: Security fixes for CVE-2014-1492 and CVE-2014-1568 as discussed with sthen@ and landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/30 08:01:09 Modified files: security/nss : Tag: OPENBSD_5_6 Makefile distinfo security/nss/pkg: Tag: OPENBSD_5_6 PLIST Log message: Security update to 3.16.2.1 addressing CVE-2014-1568 as discussed with sthen@ and landry@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/30 08:24:31 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-Modules_Platform_OpenBSD_cmake Log message: Simplify patch Thanks to to Rolf Eike Beer for this too CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:02:16 Modified files: productivity/tryton/trytond: Tag: OPENBSD_5_6 Makefile Added files: productivity/tryton/trytond/patches: Tag: OPENBSD_5_6 patch-trytond_ir_cron_py patch-trytond_ir_lang_py patch-trytond_res_user_py patch-trytond_tests_test_tools_py patch-trytond_tools_misc_py patch-trytond_webdav_webdav_py Log message: SECURITY fixes: * Use literal_eval instead of safe_eval (CVE-2014-6633) * Prevent double underscore in safe_eval (CVE-2014-6633) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/30 09:02:32 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-bootstrap Log message: Add missing bits of sthen's commit to disable ninja on m88k CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:03:27 Modified files: productivity/tryton/trytond: Tag: OPENBSD_5_5 Makefile Added files: productivity/tryton/trytond/patches: Tag: OPENBSD_5_5 patch-trytond_ir_cron_py patch-trytond_ir_lang_py patch-trytond_res_user_py patch-trytond_tests_test_tools_py patch-trytond_tools_misc_py patch-trytond_webdav_webdav_py Log message: SECURITY fixes: * Use literal_eval instead of safe_eval (CVE-2014-6633) * Prevent double underscore in safe_eval (CVE-2014-6633) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:14:35 Modified files: productivity/tryton/trytond: Makefile distinfo Log message: SECURITY update to trytond-3.2.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:14:47 Modified files: productivity/tryton/tryton: Makefile distinfo Log message: Update to tryton-3.2.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:15:02 Modified files: productivity/tryton/product_cost_fifo: Makefile distinfo Log message: Update to trytond-module-product_cost_fifo-3.2.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:21:26 Modified files: productivity/tryton/sale: Makefile distinfo Log message: Update to trytond-module-sale-3.2.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 09:21:38 Modified files: productivity/tryton/stock: Makefile distinfo Log message: Update to trytond-module-stock-3.2.3. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/30 09:40:09 Modified files: lib/libssl/src/ssl: s3_lib.c ssl_locl.h t1_lib.c Log message: Clean up EC cipher handling in ssl3_choose_cipher(). The existing code reaches around into various internals of EC, which it should not know anything about. Replace this with a set of functions that that can correctly extract the necessary details and handle the comparisions. Based on a commit to OpenSSL, with some inspiration from boringssl. ok miod@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/30 10:14:57 Modified files: security : Makefile Removed files: security/nessus: Makefile Makefile.inc security/nessus/core: Makefile distinfo security/nessus/core/patches: patch-Makefile patch-configure patch-doc_nessusd_8_in patch-nessus_nessus_c patch-nessusd_nessusd_c security/nessus/core/pkg: DESCR PLIST security/nessus/libnasl: Makefile distinfo security/nessus/libnasl/patches: patch-configure patch-libnasl_Makefile patch-libnasl_nasl_Makefile patch-nasl-config_in patch-nasl_nasl_crypto_c security/nessus/libnasl/pkg: DESCR PFRAG.shared PLIST security/nessus/libraries: Makefile distinfo security/nessus/libraries/patches: patch-libnessus_network_c patch-nessus-libraries_Makefile patch-nessus-libraries_libhosts_gatherer_Makefile patch-nessus-libraries_libnessus_Makefile security/nessus/libraries/pkg: DESCR PFRAG.shared PLIST security/nessus/plugins: Makefile distinfo security/nessus/plugins/patches: patch-Makefile patch-nessus-plugins_pf_Makefile security/nessus/plugins/pkg: DESCR MESSAGE PLIST Log message: Retire ports/security/nessus, it moved to being commercial software several years ago. (If anyone needs something like this, there's a fork OpenVAS which is seeing a bit of development, though it's patchy at times - start with security/openvas in the openbsd-wip github repo). OK dcoppa@ aja@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/30 10:21:56 Modified files: math/py-numpy : Makefile Log message: bump; py-distribute -> py-setuptools changed plist. reported by nigel@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/30 10:29:47 Modified files: . : 21.html 22.html 26.html 27.html 28.html 29.html 30.html 31.html 32.html 33.html 34.html 35.html 36.html 37.html 38.html 39.html 40.html 41.html 42.html 43.html 44.html 45.html 46.html 47.html 48.html 49.html 50.html 51.html 52.html 53.html 54.html 55.html 56.html announce28.html books.html index.html lyrics.html orders.html tshirts.html want.html Added files: images : cd56-s.gif Log message: activate pre-orders for 5.6 CDs. Sales will now be done via a new openbsdstore.com handled by the openbsd europe folk. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/30 10:54:04 Added files: images : puffy56.gif Log message: the banner for 5.6... CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/30 10:56:21 Modified files: infrastructure/bin: portbump Log message: Sometimes you need a pause for a month or two to find one-liner for the problem you thought is too complex. Allow simple "-subpkg" to be used instead of ugly ",-subpkg" for portbump. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/30 10:56:55 Modified files: tests/portbump : Makefile Log message: Test the ability to handle "-subpkg", too. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/30 11:18:37 Modified files: graphics/opencv: Makefile Log message: hidden dep on eigen2/3, spotted by jasper@; disabled with a cmake flag for now, this can be revisited later if wanted. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/09/30 11:39:48 Modified files: . : plus54.html plus55.html plus56.html Log message: fix some refs CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/09/30 11:44:48 Log message: Initial import of lwjgl, a java game development library. This is required for games like Minecraft. Next release the patches can probably be removed as they were submitted and merged with upstream: https://github.com/LWJGL/lwjgl/pull/54 OK sthen@ Status: Vendor Tag: abieber Release Tags: abieber_20140930 N ports/games/lwjgl/Makefile N ports/games/lwjgl/distinfo N ports/games/lwjgl/pkg/PLIST N ports/games/lwjgl/pkg/DESCR N ports/games/lwjgl/patches/patch-platform_build_bsd_ant_build_xml N ports/games/lwjgl/patches/patch-src_native_linux_opengl_extgl_glx_c N ports/games/lwjgl/patches/patch-build_xml No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/09/30 11:46:39 Modified files: games : Makefile Log message: +lwjgl CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/30 12:02:33 Modified files: sys/dev/pci : mfii.c Log message: Add support for "physical devices". Tested on: mfii0 at pci1 dev 0 function 0 "Symbios Logic MegaRAID SAS2208" rev 0x05: msi mfii0: "LSI MegaRAID ROMB", firmware 23.22.0-0012, 1024MB cache ok dlg@ CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/30 12:09:23 Modified files: sys/dev/pci : sdhc_pci.c Log message: Fix another Ricoh SD controller which needs to be put into slow mode to work. reported by mlarkin@; ok mlarkin@ deraadt@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/30 12:17:09 Log message: Import opensmtpd-extras, some extra tools for smtpd(8) input & ok zhuk@ Extra tools for OpenSMTPD: * Null and RAM-only queues * Stub and socket-based table implementations * table(5) authentication backends for mysql and postgresql Status: Vendor Tag: giovanni Release Tags: giovanni_20140930 N ports/mail/opensmtpd-extras/Makefile N ports/mail/opensmtpd-extras/distinfo N ports/mail/opensmtpd-extras/patches/patch-filters_Makefile_inc N ports/mail/opensmtpd-extras/patches/patch-queues_Makefile_inc N ports/mail/opensmtpd-extras/patches/patch-schedulers_Makefile_inc N ports/mail/opensmtpd-extras/patches/patch-tables_Makefile_inc N ports/mail/opensmtpd-extras/pkg/PLIST-main N ports/mail/opensmtpd-extras/pkg/DESCR-mysql N ports/mail/opensmtpd-extras/pkg/PLIST-mysql N ports/mail/opensmtpd-extras/pkg/PLIST-pgsql N ports/mail/opensmtpd-extras/pkg/PLIST-python N ports/mail/opensmtpd-extras/pkg/DESCR-main N ports/mail/opensmtpd-extras/pkg/DESCR-pgsql N ports/mail/opensmtpd-extras/pkg/DESCR-python No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/30 12:19:42 Modified files: mail : Makefile Log message: +opensmtpd-extras CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/30 12:31:45 Modified files: mail/opensmtpd-extras: Makefile Log message: Fix COMMENT. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/30 13:04:58 Modified files: net/filezilla : Makefile Log message: BROKEN-alpha= serverpath.h:17:19: error: variable 'CServerPath final' has initializer but incomplete type CVSROOT: /cvs Module name: www Changes by: pirofti@cvs.openbsd.org 2014/09/30 13:11:24 Modified files: papers : index.html Added files: papers : eurobsdcon2014-octeon_dsr500.pdf Log message: Add my slides from EuroBSDcon2014. "Making OpenBSD Useful on the Octeon Network Gear" CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/30 13:11:48 Modified files: lang/moarvm : Makefile Log message: broken on mips64: undefined reference to `__sync_val_compare_and_swap_4' CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/30 13:12:56 Modified files: telephony/libzrtp/patches: patch-include_zrtp_config_h Log message: Fix on alpha by defining endianness.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/30 13:28:27 Modified files: devel/frama-c : Makefile Log message: BROKEN-powerpc + BROKEN-alpha: Error while linking /usr/local/lib/ocaml/vmthreads/stdlib.cma CVSROOT: /cvs Module name: www Changes by: stsp@cvs.openbsd.org 2014/09/30 13:44:30 Modified files: . : errata55.html errata56.html Log message: Publish erratas for nginx SSL session bug in 5.5/5.6 and autoconf bug in 5.6. Link to signed patch for the 5.6 RX ring computation errata. CVSROOT: /cvs Module name: www Changes by: rpe@cvs.openbsd.org 2014/09/30 14:26:30 Modified files: . : 56.html Log message: More autoinstall(8) changes and link to manpage while there. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/30 14:26:38 Modified files: lang/eagle : Makefile distinfo Log message: Update to beta31. CVSROOT: /cvs Module name: www Changes by: stsp@cvs.openbsd.org 2014/09/30 15:10:18 Modified files: . : 56.html Log message: list several hardware support improvements CVSROOT: /cvs Module name: www Changes by: stsp@cvs.openbsd.org 2014/09/30 15:37:47 Modified files: . : 56.html Log message: list several network stack improvements CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/30 16:13:23 Modified files: usr.sbin/nginx/src/event: Tag: OPENBSD_5_4 ngx_event_openssl.c Log message: apply 5.5 fix for the SSL session reuse vulnerability (CVE-2014-3616) CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/30 16:14:23 Modified files: sys/arch/hppa/conf: RAMDISK Log message: Add the QLogic SCSI/FC drivers. ok miod@ CVSROOT: /cvs Module name: www Changes by: stsp@cvs.openbsd.org 2014/09/30 16:26:48 Modified files: . : errata54.html Log message: nginx ssl session errata for 5.4 CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/30 20:19:23 Modified files: sysutils/login_duo: Makefile distinfo sysutils/login_duo/patches: patch-login_duo_login_duo_8 Log message: Update login_duo to 1.9.12. Changelog: Include https_timeout configuration parameter IPv6 support on systems that have getaddrinfo CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 00:20:06 Modified files: lang/jruby : Makefile distinfo Log message: - switch to a newer jnr-posix jar based on 3.0.7-SNAPSHOT - also shuffle MASTER_SITES a bit ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 00:29:04 Modified files: databases/node-pg: Makefile databases/node-sqlite3: Makefile security/node-bcrypt: Makefile devel/node-gir : Makefile graphics/node-canvas: Makefile lang/node-java : Makefile devel/node-fibers: Makefile sysutils/node-syslog: Makefile Log message: bump after recent node update reported by nigel@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 00:32:25 Modified files: net/gupnp/igd : Makefile distinfo net/gupnp/igd/pkg: PLIST Log message: update to gupnp-igd-0.2.4 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 00:42:36 Modified files: www/dwb : Makefile www/dwb/patches: patch-config_mk www/dwb/pkg : PLIST Log message: Fix build with upcoming gtk>=3.14. While here add NO_TEST and regen PLIST. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 01:39:23 Modified files: devel/eclipse/plugins/subclipse: Makefile Log message: We can't use FETCH_CMD in ports since the infrastructure hardcodes ftp(1) options; so drop the need for www/lynx. Our ftp(1) is not capable of fetching this distfile so we end up using the default OpenBSD MASTER_SITES for the time being. issue reported by jasper@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 02:29:01 Modified files: sys/dev/usb : uhub.c usb_subr.c Log message: Check that the speed of a new device does not exceed its parent's speed prior to calling usbd_new_device(). This will let us set the specified default Max Packet Size before opening the control pipe and reduces spaghetti! ok stsp@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 02:38:29 Modified files: sys/net : route.c Log message: Use the modern way of checking if a local route exists. With KAME's hack of ``loopbacked host route'' we were checking if the associated interface was a loopback. Now simply look for the correct flags, which also helps reducing the number of ifp pointer derefences. ok claudio@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:39:25 Modified files: devel/glib2 : Makefile distinfo devel/glib2/patches: patch-gio_gunixmount_c devel/glib2/pkg: PLIST Removed files: devel/glib2/patches: patch-configure_ac patch-gio_gunixmounts_c Log message: Update to glib2-2.42.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:40:07 Modified files: devel/atk : Makefile distinfo devel/atk/pkg : PLIST Log message: Update to atk-2.14.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:40:51 Modified files: devel/glib2mm : Makefile distinfo devel/glib2mm/pkg: PLIST Log message: Update to glib2mm-2.42.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:41:26 Modified files: x11/gnome/at-spi2-core: Makefile distinfo x11/gnome/at-spi2-core/pkg: PLIST Log message: Update to at-spi2-core-2.14.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:41:55 Modified files: x11/gnome/at-spi2-atk: Makefile distinfo Log message: Update to at-spi2-atk-2.14.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:42:26 Modified files: x11/gnome/py-atspi: Makefile distinfo Log message: Update to py3-atspi-2.14.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/01 02:42:32 Modified files: devel/cmake : Makefile Log message: Use ${VER:R} instead of hardcoding the major version into MASTER_SITES CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:43:07 Modified files: x11/gtk+3 : Makefile distinfo x11/gtk+3/patches: patch-gtk_Makefile_in patch-gtk_gtksettings_c x11/gtk+3/pkg : PLIST-main Log message: Update to gtk+3-3.14.1. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 02:43:38 Modified files: x11/gtk3mm : Makefile distinfo x11/gtk3mm/pkg : PLIST Log message: Update to gtk3mm-3.14.0. bulk testing and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: phessler@cvs.openbsd.org 2014/10/01 02:46:06 Log message: A collection of tools to view and listen to streaming baseball games from MLB.TV. While the main streaming content is mostly for paid MLB.TV subscribers only, there are a significant number of features and views available to non-subscribers as well including one FREE game each day. NEW! Watch MLB classic content from YouTube without a browser. MiLB.TV and Postseason.TV are also integrated into the same mlbviewer interface. Play ball! OK sthen@ Status: Vendor Tag: phessler Release Tags: phessler_20141001 N ports/multimedia/mlbviewer/Makefile N ports/multimedia/mlbviewer/distinfo N ports/multimedia/mlbviewer/pkg/DESCR N ports/multimedia/mlbviewer/pkg/PLIST N ports/multimedia/mlbviewer/pkg/MESSAGE No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: phessler@cvs.openbsd.org 2014/10/01 02:47:43 Modified files: multimedia : Makefile Log message: +mlbviewer CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 02:53:34 Modified files: devel/gobject-introspection: Makefile distinfo devel/gobject-introspection/pkg: PLIST Log message: - update to gobject-introspecion-1.42.0 ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 02:53:44 Modified files: lang/vala : Makefile distinfo lang/vala/pkg : PLIST Removed files: lang/vala/patches: patch-vapi_atk_vapi Log message: - update to vala-0.26.0 ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 02:53:49 Modified files: x11/gnome/anjuta: Makefile x11/gnome/code-assistance: Makefile Added files: x11/gnome/anjuta/patches: patch-configure_ac x11/gnome/code-assistance/patches: patch-configure_ac Log message: unbreak after recent vala update CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 02:58:23 Modified files: converters/otf2bdf: Makefile converters/py-cjkcodecs: Makefile converters/py-iconvcodec: Makefile converters/wv : Makefile Log message: sync WANTLIB CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 03:07:57 Modified files: news/pan : Makefile news/py-yenc : Makefile Log message: sync WANTLIB CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 03:17:57 Modified files: multimedia/mlbviewer: Makefile multimedia/mlbviewer/pkg: MESSAGE Log message: Full stop. ok phessler@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 03:46:35 Modified files: x11/gnome/themes-standard: Makefile distinfo x11/gnome/themes-standard/pkg: PLIST Log message: Update to gnome-themes-standard-3.14.0 to properly cope with new gtk+3. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 03:50:29 Modified files: usr.sbin : Makefile Log message: Unhook sliplogin and slstats CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 03:54:52 Removed files: usr.sbin/sliplogin: Makefile pathnames.h slip.hosts slip.login sliplogin.8 sliplogin.c usr.sbin/slstats: Makefile slstats.8 slstats.c Log message: tedu sliplogin and slstats to beging with the slip, slipping out of the tree event. Discussed with many at EuroBSDCon, ok deraadt@, henning@, claudio@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 03:56:36 Modified files: usr.sbin/adduser: adduser.8 adduser.perl usr.sbin/pstat : pstat.8 Log message: Do not mention sliplogin(8) and sl(4). CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 03:58:52 Modified files: sbin : Makefile Log message: Unhook slattach(8) it has been deprecated for a long time and will hit the Attic soon. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 04:01:36 Removed files: sbin/slattach : Makefile slattach.8 slattach.c Log message: tedu slattach, part of the slip show. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 04:02:16 Modified files: sbin/ifconfig : ifconfig.8 sbin/ldattach : ldattach.8 Log message: Remove some sl(4) references. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 04:05:17 Modified files: share/man/man4 : Makefile ppp.4 share/man/man7 : hier.7 Removed files: share/man/man4 : sl.4 Log message: sl(4) & friends are slipping away CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/10/01 04:06:27 Modified files: sys/arch/luna88k/dev: omrasops.c Log message: More optimization on LUNA frame buffer. This is straightforward port of Izumi Tsutsui's work on NetBSD/luna68k: http://mail-index.netbsd.org/source-changes/2014/09/28/msg058972.html >> Put dumb optimizations to avoid conditionals in putchar drawing loops. This makes 4bpp wscons putchar ~8% faster on luna88k. ok miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 04:08:30 Modified files: sys/conf : GENERIC files sys/kern : tty_conf.c Removed files: sys/net : if_sl.c if_slvar.h Log message: sl(4) is no more, thanks for all the fish! CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 04:11:03 Modified files: etc : Makefile etc/mtree : 4.4BSD.dist Log message: sliphome et sliplogin(8) are gone. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/10/01 04:23:22 Modified files: sys/dev/usb : Tag: OPENBSD_5_6 if_run.c Log message: Merge if_run.c r1.104 to 5.6-stable, fixing some run(4) devices that were working in 5.5 but aren't working in 5.6-release. (This is not an errata.) ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 04:45:43 Modified files: x11/gnome/gedit: Makefile x11/gnome/gedit/pkg: PLIST Log message: Remove useless libtool files. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/01 06:22:17 Modified files: news/pan : Makefile Log message: drop the gtk version from COMMENT ok pea@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 06:24:20 Modified files: x11/gnome/orca : Makefile distinfo Log message: Update to orca-3.12.3. CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/01 07:15:40 Modified files: usr.bin/openssl: req.c openssl.1 Log message: Switch "openssl req" to using SHA256 for hashes and AES256 to encrypt on-disk keys by default (instead of SHA1/3DES) and update documentation to match. Another way to do this is s/NID_sha1/NID_sha256/ in src/crypto/rsa/rsa_ameth.c ("case ASN1_PKEY_CTRL_DEFAULT_MD_NID") but going with the more targetted method above that only affects "openssl req" for now. Help/OK jsing@. OKs on earlier diffs changing openssl.cnf from phessler@ aja@ CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/01 07:19:51 Modified files: lib/libcrypto : openssl.cnf Log message: openssl.cnf tweaks following recent changes to usr.bin/openssl: - don't define default_bits, allowing the compiled-in default (now 2048 bits) to take priority. - add commented-out default_md line in case somebody needs an easy way to change this. - remove some sample sections which aren't really useful in the default file (/etc/examples is the place for a more descriptive config, this file should be barebones). Help/OK jsing@. OKs on earlier diff (openssl.cnf only) from phessler@ aja@. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 07:48:48 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_pillar___init___py Log message: Merge from upstream: Return pillar data if not external pillar data. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/01 08:08:12 Modified files: usr.bin/units : units.lib Log message: update currency exchange rates; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/01 08:09:28 Modified files: share/man/man8 : starttls.8 Log message: rework this page to be less mailer specific, but using smtpd as an example; ok gilles millert CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/01 08:14:52 Modified files: www/tomcat/v6 : Makefile www/tomcat/v6/pkg: DESCR-main www/tomcat/v7 : Makefile www/tomcat/v7/pkg: DESCR-main Log message: Zap trailing whitespaces from DESCR-main Spotted by portcheck CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/01 08:24:43 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/10/01 09:03:39 Modified files: . : 56.html Log message: additional drivers, syscalls and functions CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/01 09:26:00 Modified files: net/lftp : Makefile Log message: put USE_GROFF back, it was removed with the 4.2.3 update a while ago and should not have been (mandoc throws a "bad table layout" error for the tables of flags for various options; groff copes though isn't terribly pretty). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/01 09:47:33 Modified files: usr.sbin/syslogd: syslogd.c Log message: Map out-of-range facility values to LOG_USER to avoid array over-read. Prompted by similar rsyslog issue fixed by Rainer Gerhards (rgerhards (at) adiscon.com) ok deraadt@ blambert@ sthen@ millert@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/01 10:35:45 Modified files: sys/netinet : in.c Log message: Fix loopback related breakage introduced by the conversion of in_ouraddr() to use the routing table. Do not create a host route for loopback addresses apart from the local ones otherwise these addresses are not considered as part of the machine. Reported by deraadt@ and Heiko Zimmermann on bugs@. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/01 11:37:04 Modified files: . : events.html Log message: quebec city, nov 7-8 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/01 12:15:36 Modified files: sys/arch/hppa/conf: RAMDISK Log message: all ramdisks should use SMALL_KERNEL and NO_PROPOLICE. basically, all RAMDISK kernels have reduced functionality compared to GENERIC. which kind of sucks but so it is. At least if we are going to reduce functionality, reduce it in the same way on all architectures, because that makes our debugging burden less (the margin is too narrow for me to prove this) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/01 13:19:25 Modified files: devel/libofx : Makefile distinfo devel/libofx/pkg: PLIST Log message: Bugfix update to libofx 0.9.10. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/01 13:36:34 Modified files: devel/bpython : Makefile Log message: Needs py-sphinx to generate the manpages. CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/01 13:41:06 Modified files: sys/arch/amd64/amd64: hibernate_machdep.c sys/arch/amd64/include: hibernate_var.h pte.h sys/arch/i386/i386: hibernate_machdep.c sys/arch/i386/include: hibernate_var.h pte.h Log message: Move some hibernate #defines to pte.h and eliminate some duplicate defines from hibernate code that were already defined in pte.h (with different names). No functional change. ok sf@, deraadt@ CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2014/10/01 14:05:12 Modified files: . : events.html Log message: link pirofti@'s EuroBSDcon 2014 slides CVSROOT: /cvs Module name: www Changes by: gilles@cvs.openbsd.org 2014/10/01 14:06:43 Modified files: . : 56.html Log message: here's what we did on opensmtpd CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/01 14:16:00 Modified files: net/ircII : Makefile net/ircII/pkg : PLIST Removed files: net/ircII/patches: patch-doc_ircII_1 Log message: Stop renaming "irc" to "ircII". Originally introduced in 2000 because of a conflict with net/irc that went away again in 2001. ok sthen@, brad@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/10/01 14:47:13 Modified files: . : 56.html Log message: i did some stuff CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/10/01 14:49:44 Modified files: . : 56.html Log message: -rwho too CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/01 14:49:50 Modified files: sys/arch/i386/i386: apm.c Log message: Fix some incorrect format specifiers in a debug printf. Reported to tech@ by THEvoid at openmailbox dot org ok doug@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/01 14:52:48 Modified files: audio/clementine/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt patch-src_core_utilities_cpp Log message: Fix cmake-related issues; regen patch no bump needed CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 15:44:48 Modified files: print/poppler : Makefile distinfo print/poppler/pkg: PLIST-qt PLIST-qt4 Removed files: print/poppler/pkg: PFRAG.shared-qt PFRAG.shared-qt4 Log message: Update to poppler-0.26.5. ok kili@ (maintainer) CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/01 17:23:19 Modified files: usr.bin/tmux : client.c Log message: Call waitpid on SIGCHLD even if client not attached, it is possible (on very slow platforms) for the first daemon() child to still be running when client_attached is set so we end up with a zombie. From J Raynor. CVSROOT: /cvs Module name: www Changes by: mlarkin@cvs.openbsd.org 2014/10/01 18:47:55 Modified files: . : 56.html Log message: hibernate improvements for 5.6 CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/10/01 20:41:16 Modified files: . : 56.html Log message: Add some newer re(4) hardware. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 23:38:56 Modified files: www/webkitgtk4 : Makefile Added files: www/webkitgtk4/patches: patch-CMakeLists_txt Removed files: www/webkitgtk4/patches: patch-Source_JavaScriptCore_llint_LLIntOfflineAsmConfig_h patch-Source_JavaScriptCore_llint_LowLevelInterpreter32_64_asm patch-Source_JavaScriptCore_llint_LowLevelInterpreter_asm patch-Source_WebKit2_Platform_IPC_Connection_h patch-Source_WebKit2_UIProcess_StatisticsRequest_cpp Log message: Make this build on powerpc. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/01 23:46:22 Modified files: www/webkitgtk4 : Makefile Log message: NO_TEST CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2014/10/02 00:23:15 Modified files: usr.bin/rcs : ci.c co.c ident.c merge.c rcsclean.c rcsdiff.c rcsmerge.c rcsprog.c rcsprog.h rlog.c Log message: exit in usage functions themselves; from Fritjof Bornebusch; ok nicm@ CVSROOT: /cvs Module name: www Changes by: pea@cvs.openbsd.org 2014/10/02 01:50:46 Modified files: . : want.html Log message: I need a loongson for ports testing. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/02 02:00:10 Modified files: devel/ruby-rspec/puppetlabs_spec_helper: Makefile distinfo Log message: update to puppetlabs_spec_helper-0.8.2 CVSROOT: /cvs Module name: ports Changes by: pea@cvs.openbsd.org 2014/10/02 02:18:56 Modified files: www/dokuwiki : Makefile distinfo www/dokuwiki/pkg: PLIST README Removed files: www/dokuwiki/files: dokuwiki.conf Log message: Update to 2014-05-05 Feebacks and ok chrisz@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/02 02:36:26 Modified files: usr.bin/tmux : screen-write.c tty-acs.c window-copy.c Log message: Copy ACS characters as UTF-8, from Balazs Kezes. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/02 03:02:48 Modified files: etc : changelist Log message: No longer check for slip.{host,login}; pointed by dcoppa@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/02 03:28:03 Modified files: sbin/ldattach : ldattach.8 Log message: no more sl(4); CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/02 03:31:30 Modified files: usr.bin/tmux : server-client.c Log message: Update status when pane selected with mouse, from Balazs Kezes. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/02 03:38:04 Modified files: devel/cmake : cmake.port.mk Log message: Start using ALL_TEST_ENV for CMake-based ports. No real change for now since ALL_TEST_ENV=MAKE_ENV+TEST_ENV. okay dcoppa@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/02 03:40:16 Modified files: devel/cmake : Makefile Log message: Use ALL_TEST_ENV instead of MAKE_ENV here, too. Reminded by dcoppa@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/02 04:16:34 Modified files: databases/libpqxx: Makefile Log message: We have ALL_TEST_ENV now, don't invent own one. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/02 04:39:43 Modified files: usr.bin/tmux : status.c Log message: Take account of window-status-separator when checking window position, based on diff from Balazs Kezes. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 05:09:52 Modified files: . : 56.html Log message: pkg counts CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 05:11:07 Modified files: images : cd56-s.gif Log message: improved image CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 05:58:00 Modified files: . : 56.html Log message: pkg count CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/02 06:12:51 Modified files: sys/netinet : in.c Log message: There is no point in trying to purge the default host route for loopback interfaces because we no longer add it. ok claudio@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/02 06:21:20 Modified files: sys/net : route.c Log message: Local routes that do not translate a protocol address into a link-layer address should not be flagged with RTF_LLINFO. With this fix, arp(8) will no longer report an incomplete entry for lo0. ok claudio@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/02 06:33:20 Modified files: textproc/redland-bindings: Makefile distinfo textproc/redland-bindings/patches: patch-configure textproc/redland-bindings/pkg: PLIST-python Log message: update to redland-bindings-1.0.17.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/02 06:43:51 Modified files: www : Makefile Removed files: www/raggle : Makefile distinfo www/raggle/patches: patch-Makefile patch-raggle www/raggle/pkg : DESCR PLIST Log message: remove raggle which has been unmaintained upstream since 2005 and only works with ruby 1.8 (also retired). snownews might be an alternative. ok landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/02 06:44:34 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register raggle CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/02 06:50:42 Modified files: misc/tpp : Makefile Log message: drop hardcoded ruby version (1.8); all examples run fine with ruby 2.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/02 07:27:33 Modified files: net/rrdtool : Makefile distinfo net/rrdtool/patches: patch-configure patch-doc_Makefile_in patch-examples_Makefile_in patch-examples_rrdcached_Makefile_in patch-src_Makefile_in Log message: update to rrdtool 1.4.9 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 07:54:44 Modified files: x11/gnome/desktop: Makefile x11/gnome/session: Makefile x11/gnome/mutter: Makefile Log message: Shuffle dependencies. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 08:18:06 Modified files: . : events.html Log message: pinching CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 08:20:34 Modified files: . : anoncvs.html Log message: shrink header CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/02 08:21:06 Modified files: usr.bin/tmux : tmux.1 Log message: Top function key is F12 now. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/02 08:21:49 Modified files: build/mirrors : anoncvs.html.head Log message: sync source file; shrink header CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 08:34:45 Modified files: . : errata.html errata21.html errata22.html errata23.html errata24.html errata25.html errata26.html errata27.html errata28.html errata29.html errata30.html errata31.html errata32.html errata33.html errata34.html errata35.html errata36.html errata37.html errata38.html errata39.html errata40.html errata41.html errata42.html errata43.html errata44.html errata45.html errata46.html errata47.html errata48.html errata49.html errata50.html errata51.html errata52.html errata53.html errata54.html errata55.html errata56.html Log message: further unification and simplification CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 08:39:50 Modified files: x11/gnome/shell: Makefile Log message: Drop uneeded dep. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 08:49:28 Log message: Import adwaita-icon-theme-3.14.0. This package contains the base GNOME icon theme. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20141002 N ports/x11/gnome/adwaita-icon-theme/distinfo N ports/x11/gnome/adwaita-icon-theme/Makefile N ports/x11/gnome/adwaita-icon-theme/pkg/DESCR N ports/x11/gnome/adwaita-icon-theme/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 08:49:47 Modified files: x11/gnome : Makefile Log message: +adwaita-icon-theme CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 09:17:22 Modified files: x11/gnome/themes-standard: Makefile Log message: Add dep to fonts/cantarell-fonts and x11/gnome/adwaita-icon-theme. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 09:35:03 Modified files: x11/gtk+2 : Makefile x11/gtk+2/pkg : PLIST-main Log message: Now depend on x11/gnome/adwaita-icon-theme. Stop providing a gtkrc file, gnome-themes-standard will do that in a few. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 09:36:57 Modified files: x11/gnome/themes-standard: Makefile x11/gnome/themes-standard/pkg: PLIST Added files: x11/gnome/themes-standard/files: gtkrc Log message: Add gtkrc for gtk+2 and make it match the default gtk+3 theme. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 09:53:08 Modified files: x11/gtk+3 : Makefile x11/gtk+3/pkg : PLIST-main Log message: Depend on x11/gnome/adwaita-icon-theme. CVSROOT: /cvs Module name: src Changes by: benno@cvs.openbsd.org 2014/10/02 10:37:50 Modified files: usr.sbin/bgpctl: bgpctl.c Log message: bgpctl show summary output: enlarge columns for 4-byte ASN display diff by Gregor Best (gbe AT ring0 DOT de), i just tweaked the column calculation based on comments from claudio@ ok sthen@ henning@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/02 10:42:12 Modified files: . : 56.html Log message: no m68k packages coming CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/02 11:13:29 Modified files: www/apache-httpd: Makefile www/apache-httpd/patches: patch-modules_ssl_ssl_engine_init_c www/apache-httpd-openbsd: Makefile Added files: www/apache-httpd/patches: patch-modules_ssl_ssl_util_ssl_c patch-modules_ssl_ssl_util_ssl_h www/apache-httpd-openbsd/patches: patch-src_modules_ssl_ssl_engine_init_c patch-src_modules_ssl_ssl_util_ssl_c patch-src_modules_ssl_ssl_util_ssl_h Log message: rename mod_ssl's (very old) internal function, SSL_CTX_use_certificate_chain, because a function with the same name was added to libressl recently. unbreaks 130-odd ports. CVSROOT: /cvs Module name: src Changes by: matthew@cvs.openbsd.org 2014/10/02 12:04:49 Modified files: sbin/dhclient : dhclient.c Log message: dhclient: add support for RFC 3442 local subnet routes If the classless-static-routes option specifies the router IP address as 0.0.0.0, then that indicates the route is a "local subnet route" that should be directly routable via the interface. This reuses the "route add -net $dest -netmask $mask -cloning -iface $addr" trick suggested by claudio@ for r1.272. Restores interoperability with Google Compute Engine after recent GCE DHCP server changes. ok krw, mpi CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/02 12:30:21 Modified files: usr.sbin/smtpd : ssl.c Log message: avoid a double free ok gilles CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/02 12:55:49 Modified files: sys/arch/sgi/gio: pci_gio.c Log message: Pass the right bus_dmatag_t to the children. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/02 13:14:56 Modified files: usr.sbin/smtpd : ca.c Log message: no need to set the same field NULL twice ;-) ok reyk@ CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/02 13:16:31 Modified files: usr.sbin/relayd: ca.c Log message: no need to set the same field NULL twice ;-) ok reyk@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:20:51 Modified files: x11/gtk+2 : Makefile Log message: Temporary add rundep on x11/gnome/icon-theme to ease transition. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/10/02 13:22:43 Modified files: usr.sbin/httpd : server.c server_file.c Log message: Fix an error case that was never handled ending up in an endless event loop that could eat all CPU. I thought that the previous (correct) commit fixed it which wasn't the case. But this one is obvious. ok florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:24:01 Removed files: x11/gnome/icon-theme-extras: Makefile distinfo x11/gnome/icon-theme-extras/pkg: DESCR PLIST x11/gnome/icon-theme-symbolic: Makefile distinfo x11/gnome/icon-theme-symbolic/pkg: DESCR PLIST Log message: Drop gnome-icon-theme-{extras,symbolic} ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:24:26 Modified files: x11/gnome : Makefile Log message: -icon-theme-extras -icon-theme-symbolic CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:25:18 Modified files: x11/gnome/icon-theme: Makefile x11/gnome/icon-theme/pkg: PLIST Log message: Provide an upgrade path for theme-extras and theme-symbolic. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:44:39 ports/x11/gtk+2/files Update of /cvs/ports/x11/gtk+2/files In directory cvs.openbsd.org:/tmp/cvs-serv26565/files Log Message: Directory /cvs/ports/x11/gtk+2/files added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:49:19 Modified files: x11/gnome : Makefile Added files: x11/gnome/icon-theme-symbolic: Makefile distinfo x11/gnome/icon-theme-symbolic/pkg: DESCR PLIST Log message: Woops, was a bit too fast with symbolic; still needed for the transition. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:50:37 Modified files: x11/gnome/icon-theme: Makefile x11/gnome/icon-theme/pkg: PLIST Log message: Revert after symbolic re-add. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 13:52:09 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Register gnome-icon-theme-extras removal. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 14:01:17 Modified files: x11/gnome/themes-standard: Makefile x11/gnome/themes-standard/pkg: PLIST Log message: Put gtkrc back in the gtk+2 package otherwise Desktops using gtk+2 like XFCE would have to add gnome-theme-standard to get proper icons. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/02 14:02:20 Modified files: x11/gtk+2 : Makefile x11/gtk+2/pkg : PLIST-main Added files: x11/gtk+2/files: gtkrc x11/gtk+2/patches: patch-gdk_gdk_c patch-modules_engines_pixbuf_pixbuf-draw_c Log message: Bring gtkrc back. While here merge a couple of fixes from upstream. CVSROOT: /cvs Module name: www Changes by: pascal@cvs.openbsd.org 2014/10/02 15:02:33 Modified files: . : 56.html Log message: fix spelling error CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/02 15:04:03 Modified files: share/zoneinfo/datfiles: africa antarctica asia australasia backward europe leapseconds northamerica southamerica zone.tab zone1970.tab Log message: Update to tzdata2014h from ftp.iana.org CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/02 15:05:02 Modified files: net/icinga/web : Makefile distinfo net/icinga/web/patches: patch-etc_apache2_icinga-web_conf_in net/icinga/web/pkg: PLIST Log message: update to icinga-web 1.11.2 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/02 15:12:48 Modified files: converters/recode: Makefile Added files: converters/recode/patches: patch-src_libiconv_c Log message: Fix a loop logic error that could lead to internal errors or truncated output; from Paul Stoeber CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/02 15:27:54 Modified files: usr.sbin/smtpd : smtp_session.c Log message: when no domain is specified in MAIL FROM or RCPT TO, assume local user CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/02 15:55:25 Modified files: net/texapp : Makefile distinfo Log message: Update to 0.6.9 CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/02 17:50:11 Modified files: lib/libc/time : strptime.c Log message: Fix a crash when there is text after a failed %Z conversion in strptime. jmates at ee dot washington dot edu reported this bug and provided a patch. This is a slightly modified version of the patch that only contains the bug fix. ok millert@, otto@ CVSROOT: /cvs Module name: src Changes by: stu@cvs.openbsd.org 2014/10/02 17:52:09 Modified files: share/man/man5 : bsd.port.mk.5 Log message: Reorder alphabetically for test*, TEST_* and CDIAGFLAGS. ok zhuk@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/02 17:57:46 Modified files: x11/kde4 : kde4.port.mk Log message: No need to set COPTS/CXXOPTS, which are user variables anyway. -O0 and -g will be added automatically for "debug" FLAVOR. No effect on non-debug builds, so no bump needed. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/02 18:01:11 Modified files: x11/kde4 : kde4.port.mk Log message: Avoid annoying warnings in KDE4 land due to CMP0026. Patches to fix the actual problem will go to KDE 4.14, if it will ever get needed. For now, we can just feel safe that next CMake update won't break KDE4 builds. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/02 19:02:47 Modified files: sys/sys : mbuf.h sys/kern : uipc_mbuf.c Log message: now that pools are mpsafe, we can make the mbuf allocators on top of pools mpsafe too. this calles pool_setipl(IPL_NET) against the mbuf and cluster pools, and removes the use of splnet(). the other locking done in the mbuf layer is for external cluster references. again, they relied on splnet to serialise these operations. because there is no shared memory associated with external clusters (except the cluster itself, which is completely dedicated to data payload, not meta info like a refcount or lock), this has been replaced with a single mutex that all reference ops are serialised with. tested by me, jmatthew@, bcook@, and phessler@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/02 19:11:17 Modified files: sys/kern : uipc_mbuf.c Log message: i moved some macros into functions, and a trailing \ on a statement snuck in. someone who knows how cpp/cc works can explain to me why this compiled. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/02 20:16:21 Modified files: sys/kern : uipc_mbuf.c Log message: if you're adding the first cluster reference, you dont have to coordinate with other mbufs so you can add all the pointers without taking the extref lock. looks good deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/03 00:02:38 Modified files: lib/libssl/src/crypto/asn1: asn1_par.c lib/libssl/src/crypto/ocsp: ocsp_ht.c lib/libssl/src/crypto/ui: ui_lib.c lib/libssl/src/ssl: ssl_ciph.c Log message: Use string literals in printf style calls so gcc's -Wformat works. ok tedu@, miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/03 00:36:11 Modified files: sys/dev/pci : if_myx.c Log message: dont take the kernel lock on every interrupt in case we might change the link state or to clear OACTIVE, just take it when we know we really are going to do those things. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/03 00:44:17 Modified files: textproc/icu4c : Makefile distinfo textproc/icu4c/patches: patch-source_common_putilimp_h patch-source_config_icu-config-bottom textproc/icu4c/pkg: PLIST Removed files: textproc/icu4c/patches: patch-source_Makefile_in patch-source_layout_LESwaps_h Log message: Update to icu4c-54.1. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 01:23:40 Modified files: audio : Makefile databases : Makefile devel : Makefile net : Makefile security : Makefile textproc : Makefile www : Makefile Log message: stop building non-default FLAVORS of pure ruby gems discussed with and ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 01:24:28 Modified files: net/whatweb : Makefile distinfo net/whatweb/pkg: PLIST Log message: - update to a clone of git master, which supports ruby > 1.8, but no 2.1 yet. at least this will be a better base to fix issues on. ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 01:25:06 Modified files: security/arirang: Makefile distinfo Removed files: security/arirang/patches: patch-ariruby_c Log message: - update to arirang-2.03 (adds support for ruby 1.9) ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/03 01:58:21 Modified files: graphics/shotwell: Makefile distinfo Log message: Update to shotwell-0.20.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/03 02:03:36 Modified files: geo/foxtrotgps : Makefile Removed files: geo/foxtrotgps/patches: patch-src_main_c Log message: Patch not needed anymore. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/03 02:04:54 Modified files: audio/deadbeef : Makefile Removed files: audio/deadbeef/patches: patch-plugins_gtkui_gtkui_c Log message: Patch not needed anymore. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/03 02:32:53 Modified files: databases/mariadb: Makefile distinfo databases/mariadb/patches: patch-libmysql_CMakeLists_txt patch-sql_CMakeLists_txt databases/mariadb/pkg: PLIST-main PLIST-server PLIST-tests Added files: databases/mariadb/patches: patch-plugin_auth_socket_auth_socket_c Removed files: databases/mariadb/patches: patch-CMakeLists_txt Log message: Update to MariaDB 10.0.14. ok sthen@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/03 03:25:21 Modified files: sys/dev/pci : if_myx.c Log message: dont need to hold the kernel lock to call MCLGETI and m_freem now. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/10/03 03:27:34 Modified files: . : plus.html Log message: plus.html for Sept 22-28. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/03 03:32:55 Modified files: meta/gnome : Makefile Log message: No more x11/gnome/icon-theme-extras; spotted by sthen@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/03 03:52:01 Modified files: sys/dev/pci : if_myx.c Log message: we dont need the kernel lock to call bus_dmamap_load and unload thanks to ketenis. move the if_ipacket and if_opacket increments out of biglock too. theyre only updated from the interrupt handler, which is only run on a single cpu so there's no chance of the update racing. everywhere else only reads them. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 03:53:55 Modified files: net/mirall : Makefile net/mirall/patches: patch-cmake_modules_FindINotify_cmake patch-src_CMakeLists_txt Log message: Fix libinotify linkage in preparation of my cmake patch to not register full paths to shared libraries in the ELF "NEEDED" sections CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 04:02:23 Modified files: x11/kde4/libs : Makefile x11/kde4/libs/files: FindInotify.cmake x11/kde4/libs/patches: patch-kdecore_CMakeLists_txt Log message: Fix libinotify linkage in preparation of my cmake patch to not register full paths to shared libraries in the ELF "NEEDED" sections CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 04:03:29 Modified files: net/mirall/patches: patch-cmake_modules_FindINotify_cmake Log message: fix comment CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 04:11:45 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-Source_cmComputeLinkInformation_cxx patch-Source_cmTarget_cxx devel/cmake/pkg: DESCR Log message: Do not register full paths to shared libraries in the ELF "NEEDED" sections tested in a bulk build by landry@ OK landry@, zhuk@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 04:24:42 Modified files: audio/musique : Makefile audio/musique/patches: patch-src_utils_cpp www/minitube : Makefile www/minitube/patches: patch-src_utils_cpp Log message: Unbreak after the switch from gnome-icon-theme to adwaita-icon-theme ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/03 04:54:55 Removed files: databases/mysql: Makefile distinfo databases/mysql/patches: patch-config_ac-macros_ssl_m4 patch-configure_in patch-mysql-test_Makefile_in patch-mysql-test_lib_My_SafeProcess_Makefile_in patch-scripts_mysql_install_db_sh patch-scripts_mysqld_safe_sh patch-sql-bench_Makefile_in patch-sql_sql_parse_cc databases/mysql/pkg: DESCR-main DESCR-server DESCR-tests PLIST-main PLIST-server PLIST-tests README-server mysqld.rc Log message: So long and into the Attic you go. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 05:12:01 Added files: www/seamonkey/patches: patch-mozilla_gfx_skia_moz_build patch-mozilla_gfx_skia_trunk_src_opts_SkBitmapProcState_opts_SSSE3_cpp Log message: copy i386-fixing patches from www/mozilla-firefox (only difference is the path) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 05:29:34 Modified files: infrastructure/db: user.list Log message: book a seat for _gdnsd CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 05:31:27 Log message: import gdnsd-1.11.5 gdnsd is an Authoritative-only DNS server. The initial g stands for Geographic, as gdnsd offers a plugin system for geographic (or other sorts of) balancing, redirection, and service-state-conscious failover. The plugin system can also do things like weighted address/cname records. feedback/ok sthen@ Status: Vendor Tag: jasper Release Tags: jasper_20140310 N ports/net/gdnsd/Makefile N ports/net/gdnsd/distinfo N ports/net/gdnsd/pkg/DESCR N ports/net/gdnsd/pkg/PLIST N ports/net/gdnsd/pkg/gdnsd.rc N ports/net/gdnsd/patches/patch-configure_ac N ports/net/gdnsd/patches/patch-Makefile_am N ports/net/gdnsd/patches/patch-gdnsd_conf_c N ports/net/gdnsd/patches/patch-t_Makefile_am No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 05:32:56 Modified files: net : Makefile Log message: +gdnsd CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 05:33:53 Modified files: net/gdnsd : Makefile Log message: add a comment that gdnsd >= 2.0.0 requires __thread support CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 05:53:23 Modified files: net/gdnsd : Makefile net/gdnsd/pkg : gdnsd.rc net/mfi : Makefile net/mfi/pkg : mfi.rc net/unifi : Makefile net/unifi/pkg : unifi.rc Log message: rcexec should only really be used in rc_start, unless there's a good reason to use it elsewhere prompted by aja@ ok aja@ sthen@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 05:58:51 Modified files: audio/celt : Makefile Log message: Add PORTROACH annotation to restrict to 0.11.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 06:05:11 Modified files: x11/wmclock : Makefile distinfo Log message: Bugfix update to wmclock-1.0.14 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 06:47:41 Modified files: x11/wmweather : Makefile distinfo x11/wmweather/pkg: PLIST Log message: Bugfix update to wmweather-2.4.5 CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/03 07:06:33 Log message: Import offline browser HTTrack. HTTrack is an easy-to-use offline browser utility. It allows you to download a World Wide Web site from the Internet to a local directory, building recursively all directories, getting HTML, images, and other files from the server to your computer. HTTrack arranges the original site's relative link-structure. Simply open a page of the "mirrored" website in your browser, and you can browse the site from link to link, as if you were viewing it online. HTTrack can also update an existing mirrored site, and resume interrupted downloads. HTTrack is fully configurable, and has an integrated help system. A lot of feedback from and okay kirby@ Status: Vendor Tag: zhuk Release Tags: zhuk_20141003 N ports/www/httrack/Makefile N ports/www/httrack/distinfo N ports/www/httrack/patches/patch-configure_ac N ports/www/httrack/patches/patch-src_htslib_c N ports/www/httrack/patches/patch-src_minizip_ioapi_h N ports/www/httrack/patches/patch-src_webhttrack N ports/www/httrack/pkg/DESCR N ports/www/httrack/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/03 07:08:49 Modified files: www : Makefile Log message: Link up httrack. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/03 07:10:15 Modified files: sys/dev/pci : if_myx.c Log message: in rxeof, instead of taking the biglock on every packet to call bpf and ether_input, queue all the mbufs onto an mbuf_list on the stack and then take the biglock once outside the loop. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/03 07:22:47 Modified files: www/httrack : Makefile Log message: No need for gnu in CONFIGURE_STYLE. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 07:28:40 Modified files: x11/wmfishtime : Makefile distinfo x11/wmfishtime/patches: patch-fishmon_c Log message: Update to wmfishtime-1.24, which fixes a gdk memory leak in the event handling code Unbreak with GTK+ >= 2.18 (patch stolen from Gentoo Linux) Regen WANTLIB CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 07:41:03 Modified files: usr.sbin/httpd : server.c Log message: Update ressl configuration to handle recent changes in the library. ok tedu@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/03 07:41:55 Modified files: sys/dev/pci : if_myx.c Log message: refill the rx ring in myx_rxeof, not much later at the end of myx_intr. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 07:43:48 Modified files: security/john-jumbo: Makefile Log message: mark as BROKEN-sparc64, weird "too few arguments to function 'strnzcpy'" CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 07:44:08 Modified files: usr.bin/ftp : main.c Log message: Update ftp ressl configuration to handle recent changes in the library. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 07:58:18 Modified files: lib/libssl/src/ssl: s3_lib.c s3_srvr.c ssl.h ssl_cert.c ssl_lib.c ssl_locl.h t1_lib.c Log message: Add support for automatic ephemeral EC keys. This allows an SSL server to enable ECDHE ciphers with a single setting, which results in an EC key being generated using the first preference shared curve. Based on OpenSSL with inspiration from boringssl. ok miod@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 08:01:29 Modified files: sysutils/ipmitool: Makefile distinfo Added files: sysutils/ipmitool/patches: patch-src_plugins_ipmi_intf_c Log message: update to ipmitool 1.8.14, numerous fixes since previous ports version take maintainer CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 08:09:09 Modified files: lib/libressl : ressl_config.c ressl_server.c Log message: Allow "auto" to be specified as an ECDH curve name and make this the default. This enables automatic handling of ephemeral EC keys. Discussed with reyk@ and tedu@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/03 08:14:40 Modified files: lib/libressl : ressl.h ressl_client.c ressl_config.c ressl_internal.h Log message: allow disabling hostname and cert verification separately. if you're careful, cert only verification can be useful. always enable both though, to avoid accidentally leaving one off. ok jsing CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/03 08:15:41 Modified files: usr.bin/ftp : main.c Log message: update for new ressl noverify API CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 08:17:33 Modified files: sysutils/libvirt: Makefile distinfo sysutils/libvirt/patches: patch-src_Makefile_in patch-src_rpc_virnetsocket_c Log message: update libvirt-1.2.9 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 08:31:30 Modified files: lib/libssl/ssl : shlib_version Log message: Bump minor version for ECDH auto. While there are no additional symbols, there is an additional command that clients will potentially depend on. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 08:32:08 Modified files: lib/libressl : shlib_version Log message: Bump minor for ECHD auto and other recent changes. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/03 08:35:42 Modified files: sysutils/bubblemon-dockapp: Makefile Added files: sysutils/bubblemon-dockapp/patches: patch-bubblemon_c Log message: Unbreak with GTK+ >= 2.18 (patch stolen from Gentoo Linux) Regen WANTLIB same as wmfishtime CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/03 09:07:20 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 09:30:42 Modified files: games/lwjgl/patches: patch-platform_build_bsd_ant_build_xml Log message: copy -I/usr/X11R6/include from compile64 to compile32 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/03 09:41:18 Modified files: lib/libc/gen : syslog_r.c Log message: Strip trailing new-lines from syslog messages. This avoids empty lines when printing to console or stderr. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/03 10:01:23 Added files: regress/usr.sbin/syslogd: args-newline.pl Log message: Add a test that checks that there are no trailing new-lines or spaces in the syslog messages. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 11:39:15 Modified files: textproc/mupdf : Makefile distinfo textproc/mupdf/pkg: PLIST Log message: update to mupdf 1.6 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/03 11:41:00 Modified files: sys/sys : mman.h sys/uvm : uvm.h uvm_extern.h uvm_fault.c uvm_map.c uvm_mmap.c Log message: Introduce __MAP_NOFAULT, a mmap(2) flag that makes sure a mapping will not cause a SIGSEGV or SIGBUS when a mapped file gets truncated. Access to pages that are not backed by a file on such a mapping will be replaced by zero-filled anonymous pages. Makes passing file descriptors of mapped files usable without having to play tricks with signal handlers. "steal your mmap flag" deraadt@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/03 12:06:47 Modified files: sys/kern : init_main.c sys/uvm : uvm_extern.h uvm_page.h uvm_pmemrange.c Log message: Introduce a thread for zeroing pages without holding the kernel lock. This way we can do some useful kernel lock in parallel with other things and create a reservoir of zeroed pages ready for use elsewhere. This should reduce latency. The thread runs at the absolutel lowest priority such that we don't keep other kernel threads or userland from doing useful work. Can be easily disabled by disabling the kthread_create(9) call in main(). Which perhaps we should do for non-MP kernels. ok deraadt@, tedu@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/03 12:53:13 Modified files: sys/miscfs/fuse: fuse_vfsops.c Log message: EOPNOTSUPP for quotactl. from Martin Natano CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/03 12:58:36 Modified files: lib/libressl : shlib_version Log message: verify changes are major change CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/03 13:11:20 Modified files: shells/bash : Makefile distinfo Log message: update to 4.3.28: fixes two local buffer overflows in parse.y CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/03 13:22:39 Modified files: etc : Makefile Log message: sort RCDAEMONS CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 13:24:46 Modified files: games/lwjgl : Makefile Log message: last commit still wasn't enough for i386, mark broken there for now /usr/bin/ld: cannot find -ljawt CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/03 13:59:46 Modified files: security/john-jumbo: Makefile security/john-jumbo/patches: patch-src_Makefile_orig Log message: fix build on sparc64: do not uselessly evaluate CFLAGS again CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/03 14:38:24 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 14:45:10 Modified files: graphics/darktable: Makefile Log message: add a comment pointing out that newer versions need tls (to save time for any users who see that this is outdated in portroach and try to update it ;) CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/10/03 14:47:41 Modified files: sys/arch/luna88k/luna88k: machdep.c Log message: Delete long-time unused #if 0 part. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/03 14:53:54 Modified files: build : mirrors.dat Log message: disable ftp.belnet.be for now CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/03 14:54:10 Modified files: . : ftp.html ftplist openbgpd : ftp.html openntpd : ftp.html portable.html openssh : ftp.html portable.html Log message: sync CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 14:58:56 Modified files: sysutils/ipmitool: distinfo Log message: something strange happened with distinfo, spotted by naddy CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/03 15:03:42 Modified files: build : mirrors.dat Log message: mirror.planetunix.net 2 months out of date; jcs@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/03 15:03:50 Modified files: . : ftp.html ftplist openbgpd : ftp.html openntpd : ftp.html portable.html openssh : ftp.html portable.html Log message: sync CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/03 15:48:50 Modified files: sysutils/krename: Makefile Log message: Limit portroach here to KDE3 versions of krename. KDE4 version should come soon. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/03 15:55:22 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Cleanup the reporting socket code in syslogd. - Name variable path_ctlsock consistently. - Name function ctlconn_logto() consistently. - Replace the nested if/else logic in ctlconn_write_handler() with if/return. - Call ctlconn_cleanup() only if there is a control connection. OK doug@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/03 16:25:58 Modified files: sys/uvm : uvm_pmemrange.c Log message: Initialize uvm_pagezero_thread()'s page list variable. ok krw@ sthen@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 16:51:48 Modified files: devel/py-dulwich: Makefile Log message: add Dmitrij D. Czarkoff as maintainer, I forgot to add when I committed it CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 17:00:40 Modified files: www/py-repoze-profile: Makefile Log message: remove unnecessary run deps from py-repoze-profile; from frantisek holop CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 17:02:46 Modified files: www/py-meld3 : Makefile distinfo www/py-meld3/pkg: DESCR PLIST Log message: update to py-meld3, add py3 flavour, take maint. - from frantisek holop CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 17:03:49 Modified files: www : Makefile Log message: build py3 for py-meld3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 17:07:19 Modified files: devel : Makefile www : Makefile Removed files: devel/py-turbojson: Makefile distinfo devel/py-turbojson/pkg: DESCR PLIST www/py-turbogears: Makefile distinfo www/py-turbogears/pkg: DESCR PLIST Log message: remove py-turbogears and py-turbojson, "1.x hasn't been updated for years and development is moving over to 2.x", "maintainer agreed to remove in private mail." - from frantisek holop CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/03 17:19:44 Modified files: databases/openldap: Makefile distinfo Added files: databases/openldap/patches: patch-servers_slapd_back-mdb_init_c Log message: update to openldap 2.4.40 enable mdb (as an option), but if used, enforce that it's configured with writemap as otherwise it assumes that mmap and file io are coherent CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/03 17:59:10 Modified files: sys/dev/pci : pcidevs Log message: Add Atheros E2200 and Marvell Yukon 88E8079. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/03 17:59:54 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/03 21:00:58 Modified files: usr.sbin/smtpd : enqueue.c Log message: Use getlogin() to determine real user name where possible. OK guenther@ deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/03 22:53:54 Modified files: sys/dev/pci : pcidevs Log message: more nvidia; from Seth Jackson CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/03 22:53:59 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: sync CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 23:34:46 Modified files: sysutils/libvirt-python: Makefile distinfo Log message: update to libvirt-python-1.2.9 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/03 23:38:05 Modified files: sysutils/p5-Sys-Virt: Makefile distinfo sysutils/p5-Sys-Virt/pkg: PLIST Log message: update to Sys-Virt-1.2.9 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 01:10:17 Modified files: x11/dbus : Makefile Log message: PORTROACH, limit to even numbers. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 01:46:28 Modified files: textproc/icu4c : Makefile distinfo Log message: The icu4c 54.1 source distfile has been updated to include pre-built data. reported by Nathanael Rensen CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/04 02:41:56 Modified files: geo/geoclue2 : Makefile distinfo geo/geoclue2/pkg: PLIST Log message: update to geoclue-2.1.10 CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/04 02:43:24 Modified files: usr.sbin/smtpd : smtp_session.c Log message: some MUA will bypass the local enqueuer and send an empty BCC header in the DATA part of the SMTP transaction. force smtpd to strip these headers when it sees them. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 02:52:47 Modified files: x11/gnome : gnome.port.mk Log message: No need for specific versions for now. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/04 04:47:12 Modified files: faq : current.html Log message: tweak previous sections - update apache removal instructions so people don't zap /usr/sbin/httpd etc - ipv6 "autoconf" flag must be added manually for pppoe(4) to work if you don't hardcode the address CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/04 04:52:05 Modified files: multimedia/p5-Data-AMF: Makefile Log message: Update maintainer for portroach Ok jasper CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 05:06:06 Modified files: math/eigen3 : Makefile distinfo Log message: Maintaince update of OpenCV to 3.2.2. Bugfix release, no test regressions. Forgotten previously and then reminded again by portroach. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/04 05:42:27 Modified files: sys/dev/pci : if_myx.c Log message: replace mutexes to serialise the operations on the flag that restricts the number of contexts that are refilling the rx rings with atomic ops. this is borrowed from code i wrote for the scsi midlayer but cant put in yet because i havent got atomic.h up to scrach on all archs yet. the archs myx runs on do have enough atomic.h to be fine though. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 05:57:42 Modified files: www/webkit : Tag: OPENBSD_5_5 Makefile distinfo Log message: Update distfile to one that does not contain non-free files. For more info, see: http://webkitgtk.org/2014/10/01/webkitgtk-contains-non-free-files.html CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/04 06:30:58 Modified files: www/chromium : Makefile distinfo Log message: update to 37.0.2062.124 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 06:40:54 Modified files: www/webkit : Tag: OPENBSD_5_6 Makefile distinfo Log message: Update distfile to one that does not contain non-free files. For more info, see: http://webkitgtk.org/2014/10/01/webkitgtk-contains-non-free-files.html CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 06:59:26 Modified files: x11/kde4 : kde4.port.mk kde-release-helper Added files: x11/kde4 : kde4.pkgpath Log message: Make life of people trying to test upcoming KDE releases a bit easier by adding @pkgpath x11/kde4/foo,-bar for every x11/kde4xyz/foo,-bar. No effect on x11/kde4/* builds. CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/10/04 07:02:13 Modified files: sys/arch/luna88k/luna88k: machdep.c Log message: Skip 'hardware lied' interrupts, as same as CMU Mach do. Also add more comments on *int_mask_reg[CPU], delete possibly unnecessary flush_pipeline(). Additional suggestion and ok miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/04 07:07:22 Modified files: sys/dev/usb : xhci.c Log message: Wait until a read control transfer is really completed before passing it to the stack when a Short Transfer condition is reported. In this dummy implementation the ``Event Data TRB'' of a read control transfer is the only TRB that can trigger an interrupt without being the last TRB of a transfer. This is done in order to report the remaining length of a short transfer. But when that happens, we want to wait until all Transfer TRBs are completed before passing the xfer to the stack. Note that clearing the ISP and IOC flags in all Transfer TRBs like it is specified in 4.10.1.1.1 might not work in our cases because the HC has most of the time already processed all Transfer TRBs when the driver dequeues the events in the softinterrupt path. While here, use the right spl protection when aborting a xfer. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 07:10:39 Modified files: x11/kde4 : kde-release-helper Log message: With all respect to Jules Maigret, I didn't try to talk about him here. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/04 07:25:36 Modified files: graphics/pigment: Makefile Log message: mirror distfile CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 08:25:40 Modified files: sysutils/krename: Makefile Log message: Oops, there were development versions of KRename for KDE4 that started with 3.x, too. Change RE to ^3\.0 then. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 08:41:12 Modified files: devel/libsoup : Makefile Log message: Force CONFIGURE_ENV when no using the "tests" FLAVOR -- no pkg change. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 08:41:27 Modified files: net/glib2-networking: Makefile distinfo Log message: Update to glib2-networking-2.42.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 08:54:32 Modified files: x11/gnome/baobab: Makefile distinfo x11/gnome/baobab/pkg: PLIST Log message: Update to baobab-3.14.0 to unbreak runtime with new gtk+3. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/04 09:03:08 Modified files: x11/gnome/common: Makefile distinfo x11/gnome/common/pkg: PLIST Removed files: x11/gnome/common/patches: patch-macros2_gnome-autogen_sh Log message: update to gnome-common-3.14.0 CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 09:17:24 Modified files: devel/intellij : Makefile distinfo devel/intellij/pkg: PLIST Log message: Maintaince bugfix update of Intellij IDEA to 13.1.5. Reminded by portroach. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 09:20:39 Modified files: x11/gnome/yelp-xsl: Makefile distinfo x11/gnome/yelp-xsl/pkg: PLIST Log message: Update to yelp-xsl-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 09:21:17 Modified files: x11/gnome/yelp-tools: Makefile distinfo Log message: Update to yelp-tools-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 09:22:00 Modified files: x11/gnome/yelp : Makefile distinfo x11/gnome/yelp/pkg: PLIST Log message: Update to yelp-3.14.0. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/04 09:48:24 Modified files: usr.bin/ftp : fetch.c Log message: Be sure to only path the remote host to ressl_connect_socket(), without a possible :portnumber suffix. Noticed by ajacoutot@ ok ajacoutot@ deraadt@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 10:08:07 Modified files: x11/kde4/workspace: Makefile distinfo Log message: Maintaince update to kde-workspace 4.11.12. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 10:46:10 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Added files: security/p11-kit/patches: patch-p11-kit_rpc-transport_c Log message: Update to p11-kit-0.22.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 11:00:40 Modified files: x11/gnome/latexila: Makefile distinfo x11/gnome/latexila/pkg: PLIST Log message: Update to latexila-3.14.1. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/04 12:10:15 Modified files: sys/arch/alpha/conf: Makefile.alpha sys/arch/amd64/conf: Makefile.amd64 sys/arch/armish/conf: Makefile.armish sys/arch/armv7/conf: Makefile.armv7 sys/arch/aviion/conf: Makefile.aviion sys/arch/hppa/conf: Makefile.hppa sys/arch/hppa64/conf: Makefile.hppa64 sys/arch/i386/conf: Makefile.i386 sys/arch/landisk/conf: Makefile.landisk sys/arch/loongson/conf: Makefile.loongson sys/arch/luna88k/conf: Makefile.luna88k sys/arch/macppc/conf: Makefile.macppc sys/arch/octeon/conf: Makefile.octeon sys/arch/sgi/conf: Makefile.sgi sys/arch/socppc/conf: Makefile.socppc sys/arch/solbourne/conf: Makefile.solbourne sys/arch/sparc/conf: Makefile.sparc sys/arch/sparc64/conf: Makefile.sparc64 sys/arch/vax/conf: Makefile.vax sys/arch/zaurus/conf: Makefile.zaurus Log message: Switch the kernel configs over to using -Wframe-larger-than= instead of -Wstack-larger-than-. This is what modern GCC supports as well as LLVM. ok miod@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/04 12:20:50 Modified files: sys/dev/pci : if_msk.c if_skreg.h Log message: - Recognize the Yukon Prime and Yukon Optima 2 chipsets. - Recognize some more revs of the EC U and Supreme chipsets. - Add the PCI id for the Yukon 88E8079. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/04 12:30:27 Log message: Import libzdb ok landry@ A small, easy to use Open Source Database Connection Pool Library with the following features: - Thread safe Database Connection Pool - Connect to multiple database systems - Zero runtime configuration, connect using a URL scheme - Supports MySQL, PostgreSQL, SQLite and Oracle. Status: Vendor Tag: kirby Release Tags: kirby_20141004 N ports/databases/libzdb/Makefile N ports/databases/libzdb/distinfo N ports/databases/libzdb/pkg/DESCR N ports/databases/libzdb/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/04 12:33:09 Modified files: databases : Makefile Log message: add libzdb CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/04 12:35:46 Log message: Import jansson. Required by net/seafile. ok landry@ Jansson is a C library for encoding, decoding and manipulating JSON data. Status: Vendor Tag: kirby Release Tags: kirby_20141004 N ports/devel/jansson/Makefile N ports/devel/jansson/distinfo N ports/devel/jansson/pkg/DESCR N ports/devel/jansson/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/04 12:38:10 Modified files: devel : Makefile Log message: add jansson CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/04 12:47:55 Log message: Import seafile-client and components. ok landry@ Seafile is a next-generation cloud storage. Status: Vendor Tag: kirby Release Tags: kirby_20141004 N ports/net/seafile/Makefile N ports/net/seafile/Makefile.inc N ports/net/seafile/ccnet/Makefile N ports/net/seafile/ccnet/distinfo N ports/net/seafile/ccnet/patches/patch-Makefile_am N ports/net/seafile/ccnet/patches/patch-lib_net_c N ports/net/seafile/ccnet/patches/patch-lib_packet-io_c N ports/net/seafile/ccnet/patches/patch-libccnet_pc_in N ports/net/seafile/ccnet/patches/patch-tools_Makefile_am N ports/net/seafile/ccnet/pkg/DESCR N ports/net/seafile/ccnet/pkg/PLIST N ports/net/seafile/client/Makefile N ports/net/seafile/client/distinfo N ports/net/seafile/client/pkg/DESCR N ports/net/seafile/client/pkg/PLIST N ports/net/seafile/libsearpc/Makefile N ports/net/seafile/libsearpc/distinfo N ports/net/seafile/libsearpc/patches/patch-Makefile_am N ports/net/seafile/libsearpc/pkg/DESCR N ports/net/seafile/libsearpc/pkg/PLIST N ports/net/seafile/seafile/Makefile N ports/net/seafile/seafile/distinfo N ports/net/seafile/seafile/patches/patch-daemon_Makefile_am N ports/net/seafile/seafile/patches/patch-daemon_vc-utils_c N ports/net/seafile/seafile/patches/patch-lib_Makefile_am N ports/net/seafile/seafile/patches/patch-lib_libseafile_pc_in N ports/net/seafile/seafile/pkg/DESCR N ports/net/seafile/seafile/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/04 12:50:55 Modified files: net : Makefile Log message: add seafile CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 13:17:06 Modified files: databases/libzdb: Makefile databases/libzdb/pkg: PLIST Log message: Regen PLIST. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/04 13:18:31 Modified files: devel/jansson : Makefile devel/jansson/pkg: PLIST Log message: Regen PLIST. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/04 13:41:13 Modified files: devel/libpeas : Makefile distinfo devel/libpeas/patches: patch-tests_libpeas_plugins_extension-python_Makefile_in devel/libpeas/pkg: PLIST Log message: update to libpeas-1.12.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/04 13:41:30 Modified files: x11/gnome/gjs : Makefile distinfo Log message: update to gjs-1.42.0 CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/04 14:29:43 Modified files: . : 56.html Log message: Mention more things that have been removed during the Great Spring Cleaning of 2014. CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/04 14:50:06 Modified files: . : 56.html Log message: - added reallocarray(3) - mention fread(3) and fwrite(3) integer overflow checks - add missing man page links CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/10/04 14:57:23 Modified files: . : 55.html Log message: Correction, 5.5 had qle(4) enabled not qla(4). CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/10/04 14:58:00 Modified files: . : 56.html Log message: Add qla(4). CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 15:07:29 Modified files: x11/kde4/print-manager: Makefile x11/kde4/print-manager/patches: patch-CMakeLists_txt Added files: x11/kde4/print-manager/patches: patch-libkcups_KCupsConnection_cpp Log message: Add support for upcoming CUPS 2.x, from upstream. Regen other patch while there. Requested by ajacoutot@. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 16:34:27 Modified files: audio/clementine: Makefile Added files: audio/clementine/patches: patch-3rdparty_gmock_gtest_include_gtest_internal_gtest-port_h patch-src_core_mergedproxymodel_h patch-tests_closure_test_cpp patch-tests_concurrentrun_test_cpp patch-tests_mergedproxymodel_test_cpp Log message: Unbreak running Clementine tests. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 18:07:33 Modified files: audio/clementine: Makefile Added files: audio/clementine/patches: patch-src_engines_gstenginepipeline_cpp Removed files: audio/clementine/patches: patch-src_core_songloader_cpp Log message: Somewhat fix the long-standing bug which prevented playing files with non-ASCII characters in their name. Unfortunately, the alternative patch that was pushed upstream didn't resolve issue, so we have to use this dirty patch instead. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/04 19:31:12 Modified files: sys/dev/acpi : acpithinkpad.c Log message: two more events found on thinkpad yoga CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 19:36:14 Modified files: meta/kde4 : Makefile meta/kde4/pkg : README-minimal Log message: Add a note about running KDE4 apps via sudo(8). CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/04 19:47:29 Modified files: x11/kde4 : kde-release-helper Log message: Before I forgot to do this manually one more time, at least try to automate removing of REVISION markers in meta/kde4 on KDE SC update. CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/10/04 20:12:19 Modified files: sys/arch/luna88k/luna88k: machdep.c Log message: Use CPU_IS_PRIMARY macro. No functional change. CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/10/04 21:43:41 Modified files: . : plat.html Log message: move armv7 back to "Current porting efforts" it still needs a lot of work. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 01:37:23 Modified files: misc/portroach : Makefile distinfo misc/portroach/pkg: PLIST Removed files: misc/portroach/patches: patch-Portroach_SQL_pm patch-portroach_pl patch-templates_reminder_mail Log message: - update to portroach-1.2.0 * many fixes and tweaks (sorting, scanning, cleanups), see: http://portroach.openbsd.org/ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 01:47:17 Modified files: misc/portroach : Makefile misc/portroach/pkg: PLIST Log message: Move reminder.mail to a @sample so that it can be edited with site-specific information. ok jasper@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/10/05 01:55:11 Modified files: security/foremost: Makefile Log message: configuration files is harcoded, so use ${SYSCONFDIR}. ok aja@ (thanks). CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/05 02:32:39 Modified files: sys/dev/usb : usbdevs Log message: Add vendor and product for the Archos 24y Vision, from Max Fillinger. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/05 02:33:13 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/05 02:34:14 Modified files: sys/dev/usb : umass_quirks.c Log message: Quirk needed by the Archos 24y Vision, from Max Fillinger. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/05 02:40:29 Modified files: sys/dev/usb : ehci.c ohci.c usb_subr.c Log message: Do not re-establish the default pipe twice for every controller. Move this hack in the drivers that need it. Tested by many, thanks! ok pirofti@, kettenis@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/05 03:29:48 Modified files: games/rftg : Makefile distinfo games/rftg/pkg : PLIST-client Added files: games/rftg/patches: patch-ai_c Log message: new version, with support for Alien Artefacts cards (but not play mode) and a new "scenario" option. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/05 03:49:14 Modified files: x11/qwt : Makefile Added files: x11/qwt/patches: patch-doc_man_man3_qwtinstall_3 patch-doc_man_man3_qwtlicense_3 Log message: Fix wrong markup, causing: 1) filling whatis index by the whole page contents; 2) skipping lines starting with punctuation characters. Other minor problems are fixed as well while there; patch went upstream. input jmc@ okay jmc@, bentley@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/05 04:32:07 Modified files: productivity/akonadi: Makefile distinfo productivity/akonadi/patches: patch-CMakeLists_txt Removed files: productivity/akonadi/patches: patch-config-akonadi_h_cmake patch-shared_akcrash_cpp Log message: Update Akonadi to 1.13.0. KMail is still happy. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/05 05:30:33 Modified files: sys/arch/sparc64/sparc64: intr.c Log message: ansify function definitions. no binary change. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/05 05:32:43 Modified files: sys/arch/sparc64/sparc64: intr.c Log message: dont need to cast pointers to/from void * no binary change CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/05 05:39:10 Modified files: faq : current.html Log message: note some more problems caused by renaming apache's rc scripts CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/05 05:40:37 Modified files: sys/arch/sparc64/sparc64: intr.c Log message: pass size to free. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/05 05:43:54 Modified files: www/nginx : Makefile distinfo Log message: update to 1.7.6 CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/10/05 05:46:19 Modified files: sys/arch/luna88k/dev: mb89352.c Log message: Skip unnecessary processing in interrupt handler. 2 spc(4/luna88k)'s share the same level 3 interrupt on LUNA-88K2. So returns earlier when the device is not the source of interrupt. NetBSD has the same code. http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dev/ic/mb89352.c#rev1.34 "it is the right thing to do" miod@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:00:36 Modified files: devel/py-gobject3: Makefile distinfo devel/py-gobject3/pkg: PLIST-main Log message: Update to py-gobject3-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:10:14 Modified files: x11/gnome/getting-started-docs: Makefile distinfo x11/gnome/getting-started-docs/pkg: PLIST Log message: Update to gnome-getting-started-docs-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:12:48 Modified files: x11/gnome/devel-docs: Makefile distinfo x11/gnome/devel-docs/pkg: PLIST Log message: Update to gnome-devel-docs-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:17:25 Modified files: x11/gnome/user-docs: Makefile distinfo x11/gnome/user-docs/pkg: PLIST Log message: Update to gnome-user-docs-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:29:01 Modified files: x11/gnome/devhelp: Makefile distinfo Log message: Update to devhelp-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:31:09 Modified files: devel/gsettings-desktop-schemas: Makefile distinfo devel/gsettings-desktop-schemas/pkg: PLIST Log message: Update to gsettings-desktop-schemas-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:36:09 Modified files: x11/gnome/tweak-tool: Makefile distinfo x11/gnome/tweak-tool/pkg: PLIST Log message: Update to gnome-tweak-tool-3.14.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 06:44:43 Modified files: x11/gtksourceview3: Makefile distinfo x11/gtksourceview3/pkg: PLIST Log message: update to gtksourceview-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 06:46:54 Modified files: x11/gnome/calculator: Makefile distinfo Log message: update to gnome-calculator-3.14.0 CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/05 06:46:58 Modified files: sys/dev/usb : xhci.c xhcireg.h Log message: Do not mark the pipe as halted when the HC reports a (split) transaction error. Makes Intel Series 7 controllers happy and no longer report an illegal context state transition when detaching devices. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 06:54:04 Modified files: x11/gnome/gedit: Makefile distinfo x11/gnome/gedit/pkg: PLIST Log message: update to gedit-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 06:54:17 Modified files: x11/gnome/gedit-plugins: Makefile distinfo x11/gnome/gedit-plugins/pkg: PLIST Log message: update to gedit-plugins-3.14.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:57:11 Modified files: x11/gnome/gcr : Makefile distinfo x11/gnome/gcr/pkg: PLIST Removed files: x11/gnome/gcr/patches: patch-Makefile_in Log message: Update to gcr-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 06:58:54 Modified files: x11/gnome/keyring: Makefile distinfo Log message: Update to gnome-keyring-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:07:46 Modified files: devel/libsoup : Makefile distinfo devel/libsoup/pkg: PLIST Log message: Update to libsoup-2.48.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 07:07:49 Modified files: geo/geocode-glib: Makefile distinfo geo/geocode-glib/pkg: PLIST Log message: update to geocode-glib-3.14.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:17:31 Modified files: x11/gnome/dictionary: Makefile distinfo x11/gnome/dictionary/pkg: PLIST Log message: Update to gnome-dictionary-3.14.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 07:23:57 Modified files: x11/gnome/libgweather: Makefile distinfo x11/gnome/libgweather/pkg: PLIST Log message: update to libgweather-3.14.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:24:14 Modified files: audio/speech-dispatcher: Makefile distinfo audio/speech-dispatcher/pkg: PLIST Log message: Update to speech-dispatcher-0.8.1. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 07:24:39 Modified files: x11/gnome/online-accounts: Makefile distinfo x11/gnome/online-accounts/pkg: PLIST Removed files: x11/gnome/online-accounts/patches: patch-src_goa_Makefile_in Log message: update to gnome-online-accounts-3.14.0 CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/05 07:32:14 Modified files: sys/dev/usb : xhci.c Log message: Only synchronize used TRBs and not the full ring when sending a control transfer. While here remove/fix other XXXs. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 07:34:40 Modified files: graphics/clutter: Makefile.inc graphics/clutter/clutter-gst: Makefile graphics/clutter/clutter-gtk: Makefile graphics/clutter/cogl: Makefile graphics/clutter/core: Makefile Log message: remove ${MAJOR}, it's not really used in a way that doesn't confuse CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:37:54 Modified files: x11/gnome/libgweather: Makefile Log message: Fix dependencies. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:40:23 Modified files: x11/gnome/orca : Makefile distinfo x11/gnome/orca/pkg: PLIST Log message: Update to orca-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:48:00 Modified files: x11/gnome/gvfs : Makefile distinfo x11/gnome/gvfs/pkg: PLIST-main Log message: Update to gvfs-1.22.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 07:50:26 ports/sysutils/libvirt-python/patches Update of /cvs/ports/sysutils/libvirt-python/patches In directory cvs.openbsd.org:/tmp/cvs-serv26019/patches Log Message: Directory /cvs/ports/sysutils/libvirt-python/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:53:38 Modified files: devel/liblouis : Makefile distinfo devel/liblouis/pkg: PLIST Log message: Update to liblouis-2.6.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:54:46 Modified files: x11/gnome/desktop: Makefile distinfo x11/gnome/desktop/patches: patch-libgnome-desktop_Makefile_in x11/gnome/desktop/pkg: PLIST Log message: Update to gnome-desktop-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 07:55:18 Modified files: meta/gnome : Makefile Log message: Welcome GNOME 3.14.0! (well sort of... it'll be in bastard mode for a few days) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 08:19:03 Modified files: x11/gnome/weather: Makefile distinfo x11/gnome/weather/pkg: PLIST Log message: Update to gnome-weather-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 08:27:41 Modified files: x11/gnome/gedit/pkg: PLIST Log message: Fix PLIST to unbreak packaging. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 08:42:12 Modified files: x11/gnome/gedit-plugins/pkg: PLIST Log message: Regen PLIST to unbreak: the Terminal plugin cannot be built because our Vte3 is too old. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/05 08:47:30 Modified files: lib/libssl/src/ssl: t1_lib.c Log message: Make tls1_get_formatlist() behave the same as tls1_get_curvelist() and return the client format list if the client_formats flag is specified. Use tls1_get_formatlist()/tls1_get_curvelist() in tls1_check_ec_key(), simplifying the code. ok miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/05 08:53:06 Modified files: lib/libssl/src/ssl: t1_lib.c Log message: Use tls1_get_curvelist() in ssl_add_clienthello_tlsext(), rather than hand rolling the same code. ok miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/05 08:56:32 Modified files: lib/libssl/src/ssl: t1_lib.c Log message: Use more specific curves/formats naming for local variables in ssl_add_clienthello_tlsext() and ssl_add_serverhello_tlsext(), rather than the current generic naming. ok miod@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 09:10:07 Modified files: textproc/link-grammar: Makefile distinfo textproc/link-grammar/pkg: PLIST-main Log message: Update to link-grammar-5.1.2. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/05 09:21:48 Modified files: lib/libssl/src/crypto/err: err.c Log message: compile with c89 (code / decl ordering); from Joakim.Tjernlund@transmode.se ok miod CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 09:29:43 Modified files: x11/gnome/backgrounds: Makefile distinfo x11/gnome/backgrounds/pkg: PLIST Log message: Update to gnome-backgrounds-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 09:51:24 Modified files: x11/gnome/settings-daemon: Makefile distinfo x11/gnome/settings-daemon/pkg: PLIST Removed files: x11/gnome/settings-daemon/files: 10_org.gnome.settings-daemon.plugins.updates.gschema.override Log message: Update to gnome-settings-daemon-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 09:51:49 Modified files: x11/gnome/session: Makefile distinfo Log message: Update to gnome-session-3.14.0. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/05 10:11:40 Removed files: libexec/auxcpp : CHANGELOG Makefile README arith.c arith.h assert.c atest.c auxcpp.1 config.h cpp.c cpp.h eval.c hash.c hash.h lexer.c macro.c mem.c mem.h nhash.c nhash.h sample.c tune.h ucppi.h Log message: we use tradcpp instead; ok jsg CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/05 10:14:17 Modified files: x11/gnome/devhelp: Makefile Log message: Force webkitgtk3 until webkitgtk4 is proven to be in good shape. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/05 10:39:20 Modified files: app/xterm : Imakefile MANIFEST button.c charproc.c fontutils.c graphics_regis.c graphics_sixel.c main.c menu.c menu.h misc.c precompose.c ptyx.h resize.c screen.c version.h xterm.h xterm.log.html xterm.man xterm_io.h xtermcfg.h xtermcfg.hin app/xterm/package: xterm.spec app/xterm/package/debian: changelog app/xterm/package/freebsd: Makefile pkg-plist app/xterm/unicode: precompose.c.head Log message: Update to xterm 311. ok shadchin@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/05 10:39:54 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 11:32:33 Modified files: sysutils/libvirt-python: Makefile sysutils/p5-Sys-Virt: Makefile Log message: explicitly depend on the right libvirt version fixes a build issue with libvirt-python as reported by sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 11:34:01 Modified files: graphics/clutter/cogl: Makefile graphics/clutter/cogl/pkg: PLIST Log message: enable EGL backend ok aja@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/10/05 11:35:24 Modified files: www/sarg : Makefile distinfo www/sarg/patches: patch-sarg_conf Log message: Update sarg to 2.3.9 OK aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 11:46:26 Modified files: x11/gnome/gucharmap: Makefile distinfo Log message: update to gucharmap-3.14.0 CVSROOT: /cvs Module name: www Changes by: miod@cvs.openbsd.org 2014/10/05 11:58:49 Modified files: . : 56.html Log message: A few LibreSSL bits. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 12:01:35 Modified files: graphics/clutter/core: Makefile distinfo graphics/clutter/core/patches: patch-configure graphics/clutter/core/pkg: PLIST Log message: - update to clutter-1.20.0 * enable EGL backend, needed for upcoming mutter update CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 12:01:54 Modified files: graphics/clutter/clutter-gtk: Makefile distinfo graphics/clutter/clutter-gtk/pkg: PLIST Log message: update to clutter-gtk-1.6.0 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/05 12:14:01 Modified files: usr.sbin/syslogd: Makefile privsep.c syslogd.c syslogd.h Log message: Switch syslogd from using poll(2) to libevent. test and OK nicm@; OK henning@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:26:22 Modified files: lib/libssl/src/crypto/x509v3: v3_akey.c Log message: Fix memory leak in the error path of v2i_AUTHORITY_KEYID(). ok deraadt@ guenther@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:26:43 Modified files: lib/libssl/src/crypto/x509v3: v3_conf.c Log message: Missing deallocation upon error. ok deraadt@ guenther@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:27:33 Modified files: lib/libssl/src/crypto/x509v3: v3_cpols.c Log message: Be sure to check object allocation for success before using them. Tweaks and ok guenther@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:27:58 Modified files: lib/libssl/src/crypto/x509v3: v3_crld.c Log message: Memory leak upon error in set_dist_point_name(). ok guenther@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:28:56 Modified files: lib/libssl/src/crypto/x509v3: v3_info.c Log message: In v2i_AUTHORITY_INFO_ACCESS(), separate object allocation from object push on a stack; if the latter fails, we need to free the object before returning failure. ok guenther@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:30:13 Modified files: lib/libssl/src/crypto/x509v3: v3_pmaps.c Log message: Be sure to check the stack push operation for success in v2i_POLICY_MAPPINGS(); if it fails, free the object we were about to push. Factor error handling to avoid having four copies of about the same code. ok guenther@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 12:30:33 Log message: import libxkbcommon-0.4.3 xkbcommon is a library to handle keyboard descriptions, loading them from disk, parsing them and handling their state. Our pre-historic bison has been mummified and put into a museum. So include a parser.c generated with a fresh young bison that still roams the plains. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140510 N ports/x11/xkbcommon/distinfo N ports/x11/xkbcommon/Makefile N ports/x11/xkbcommon/pkg/PLIST N ports/x11/xkbcommon/pkg/DESCR N ports/x11/xkbcommon/files/parser.c N ports/x11/xkbcommon/patches/patch-Makefile_in N ports/x11/xkbcommon/patches/patch-configure No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 12:31:53 Modified files: x11 : Makefile Log message: +xkbcommon CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/05 12:33:57 Modified files: lib/libssl/src/crypto/x509v3: v3_purp.c Log message: The fixes to X509_PURPOSE_add() in r1.18 actually could cause a global X509_PURPOSE object (obtained with X509_PURPOSE_get0() instead of being allocated in the function) to be freed if modifying that object would fail due to a low memory condition, while this object would still be referenced elsewhere. Fix this by only cleaning the object if we did not allocate it here. While there, fail early if either `name' or `sname' are NULL, rather than allocating an object and realizing we have nothing to strdup() into it. ok guenther@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/05 12:43:05 Added files: regress/usr.sbin/syslogd: args-libevent-kqueue.pl args-libevent-poll.pl args-libevent-select.pl Log message: Test that the specified libevent backend kqueue(2) or poll(2) or select(2) is used by syslogd. CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/05 12:43:56 Modified files: sys/net : bpfdesc.h Log message: fix typo in comment: correspoding -> corresponding CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:04:29 Modified files: geo/libchamplain: Makefile Log message: regen WANTLIB CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/05 13:18:56 Modified files: x11/kde4 : kde4.port.mk Log message: Don't override EXTRACT_SUFX in case of GH_COMMIT set. CVSROOT: /cvs Module name: www Changes by: guenther@cvs.openbsd.org 2014/10/05 13:22:10 Modified files: . : 56.html Log message: a few things CVSROOT: /cvs Module name: ports Changes by: lteo@cvs.openbsd.org 2014/10/05 13:23:00 Modified files: net/snort : Makefile net/snort/pkg : DESCR Log message: tcpdump is in section 8 on OpenBSD, not section 1. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/10/05 13:29:20 Modified files: net/tor : Makefile net/tor/patches: patch-src_common_tortls_c Log message: Fix relay functionality after get_cipher_by_char removal. Patch by jsing@, tested by myself and "babut". ok dcoppa@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:51:56 Modified files: x11/gnome/font-viewer: Makefile distinfo x11/gnome/font-viewer/pkg: PLIST Log message: update to gnome-font-viewer-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:52:16 Modified files: x11/gnome/gdl : Makefile distinfo x11/gnome/gdl/pkg: PLIST Log message: update to gdl-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:52:32 Modified files: x11/gnome/mutter: Makefile distinfo x11/gnome/mutter/patches: patch-src_core_screen_c x11/gnome/mutter/pkg: PLIST Added files: x11/gnome/mutter/patches: patch-src_core_keybindings_c Log message: update to mutter-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:52:44 Modified files: x11/gnome/quadrapassel: Makefile distinfo Log message: update to quadrapassel-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:52:59 Modified files: x11/gnome/shell: Makefile distinfo x11/gnome/shell/pkg: PLIST Removed files: x11/gnome/shell/patches: patch-src_shell-global_c Log message: update to gnome-shell-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:53:28 Modified files: x11/gnome/shell-extensions: Makefile distinfo x11/gnome/shell-extensions/pkg: PLIST Log message: update to gnome-shell-extensions-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 13:54:27 Modified files: x11/gnome/zenity: Makefile distinfo Log message: update to zenity-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 14:00:27 Modified files: x11/gnome/contacts: Makefile distinfo x11/gnome/contacts/pkg: PLIST Log message: update to gnome-contacts-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 14:06:13 Modified files: x11/gnome/polari: Makefile distinfo x11/gnome/polari/pkg: PLIST Log message: update to polari-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 15:33:30 Modified files: x11/roxterm : Makefile distinfo x11/roxterm/pkg: PLIST Added files: x11/roxterm/patches: patch-mscript_py Log message: - update to roxterm-2.9.4 * switches to a glorious new python-based build system: maitch. joy! * switch back to using vte2, as the gtk3 variant doesn't build with new vte CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 16:06:50 Modified files: x11/gnome/eog : Makefile distinfo x11/gnome/eog/pkg: PLIST Log message: update to eog-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/05 16:07:00 Modified files: x11/gnome/eog-plugins: Makefile distinfo x11/gnome/eog-plugins/pkg: PLIST Log message: update to eog-plugins-3.14.0 CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/05 18:47:15 Modified files: usr.bin/ssh : sftp.c Log message: correct options in usage(); from mancha1 AT zoho.com CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/05 19:18:06 Modified files: audio/libxmp : Makefile distinfo audio/libxmp/patches: patch-Makefile_in audio/libxmp/pkg: PLIST Log message: Update to 4.3.0 ok shadchin@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/05 19:18:53 Modified files: audio/xmp : Makefile distinfo audio/xmp/patches: patch-src_Makefile_in Log message: Update to 4.0.9 ok shadchin@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/05 19:36:14 Modified files: textproc/nfoview: Makefile distinfo Log message: Update to 1.15 CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/10/05 19:49:22 Modified files: faq : faq4.html Log message: missing TOC entry, pointed out by Wei En Ng (wei2912 dot supp0rt@gmail.com) thanks! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 00:03:52 Modified files: x11/gnome/gucharmap: Makefile Log message: Missing BUILD_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 00:33:28 Modified files: x11/gnome/eog : Makefile x11/gnome/eog/pkg: PLIST Log message: Drop libtool files. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 00:34:38 Modified files: security/p11-kit: Makefile security/p11-kit/patches: patch-p11-kit_rpc-transport_c Log message: Sync with what was committed upstream. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:24:33 Modified files: devel/vte3 : Makefile distinfo devel/vte3/pkg : PLIST Added files: devel/vte3/patches: patch-src_vteterminal_h Removed files: devel/vte3/patches: patch-src_vteaccess_c Log message: - update to vte-0.38.0, this breaks the API as they move to vte-2.91. breakage will be dealt with shortly CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:25:54 Modified files: x11/gnome/gedit-plugins: Makefile x11/gnome/gedit-plugins/pkg: PLIST Log message: re-enable vte plugin now the update has actually been committed CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:26:33 Modified files: x11/sakura : Makefile x11/sakura/patches: patch-CMakeLists_txt Added files: x11/sakura/patches: patch-src_sakura_c Log message: apply a patch from upstream bug tracker to fix build with vte-2.91 ok bcallah@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:27:05 Modified files: x11/remmina : Makefile Added files: x11/remmina/patches: patch-cmake_FindVTE_cmake patch-remmina_CMakeLists_txt patch-remmina_src_remmina_ssh_plugin_c Log message: port to new vte-2.91 API CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:27:33 Modified files: x11/gnome/anjuta: Makefile distinfo x11/gnome/anjuta/pkg: PLIST Removed files: x11/gnome/anjuta/patches: patch-configure_ac Log message: - update to anjuta-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:28:46 Modified files: sysutils/virt-manager: Makefile Log message: adjust for new vte CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/10/06 01:31:31 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update youtube-dl to 2014.10.05.2 New extractors: - globo - lrt - planetaplay - tapely - thesixtyone CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 01:37:02 Modified files: x11/gnome/terminal: Makefile distinfo x11/gnome/terminal/pkg: PLIST Added files: x11/gnome/terminal/patches: patch-src_Makefile_in Log message: update to gnome-terminal-3.14.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/06 02:02:31 Modified files: www/tomcat/v6 : Makefile www/tomcat/v6/pkg: PLIST-examples PLIST-main www/tomcat/v7 : Makefile www/tomcat/v7/pkg: PLIST-examples PLIST-main Log message: Zap bogus @conflict,@pkgpath annotations; pointed out by jasper@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/10/06 02:08:08 Modified files: devel/py-hgtools: Makefile distinfo Log message: Update py-hgtools to 6.1.1. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/06 02:15:54 Log message: Import tomcat-8.0.14 bogus @conflict,@pkgpath annotations spotted by jasper@ ok ian@ Status: Vendor Tag: dcoppa Release Tags: dcoppa_20141006 N ports/www/tomcat/v8/Makefile N ports/www/tomcat/v8/distinfo N ports/www/tomcat/v8/patches/patch-conf_server_xml N ports/www/tomcat/v8/pkg/DESCR-examples N ports/www/tomcat/v8/pkg/DESCR-main N ports/www/tomcat/v8/pkg/PLIST-examples N ports/www/tomcat/v8/pkg/PLIST-main N ports/www/tomcat/v8/pkg/README-main N ports/www/tomcat/v8/pkg/tomcat.rc No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/06 02:18:59 Modified files: www/tomcat : Makefile Log message: hook v8 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/10/06 02:19:26 Modified files: security/cracklib: Makefile distinfo Log message: Update cracklib to 2.9.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:27:06 Modified files: x11/gnome/color-manager: Makefile distinfo x11/gnome/color-manager/patches: patch-configure x11/gnome/color-manager/pkg: PLIST Log message: Update to gnome-color-manager-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:27:34 Modified files: x11/gnome/controlcenter: Makefile distinfo x11/gnome/controlcenter/patches: patch-panels_region_cc-input-chooser_c patch-panels_user-accounts_Makefile_in Log message: Update to gnome-control-center-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:28:26 Modified files: x11/gnome/tracker: Makefile distinfo x11/gnome/tracker/pkg: PLIST Removed files: x11/gnome/tracker/patches: patch-configure_ac patch-src_libtracker-extract_tracker-extract-info_c patch-src_libtracker-extract_tracker-extract-info_h patch-src_tracker-extract_tracker-extract-gstreamer_c patch-src_tracker-extract_tracker-extract-libav_c patch-src_tracker-extract_tracker-extract-mp3_c patch-src_tracker-extract_tracker-extract-vorbis_c patch-src_tracker-extract_tracker-extract_c patch-src_tracker-extract_tracker-extract_h patch-src_tracker-extract_tracker-main_c Log message: Update to (meta-)tracker-1.2.2. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/06 02:28:35 Modified files: geo/mapcache : Makefile geo/mapcache/pkg: README Log message: Remove the 'run ldconfig in the chroot' hack from the README now that cmake has been fixed to not register full paths in libraries, thx to dcoppa@. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:29:14 Modified files: x11/gnome/nautilus: Makefile distinfo x11/gnome/nautilus/pkg: PLIST Log message: Update to nautilus-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:29:49 Modified files: x11/gnome/user-share: Makefile distinfo x11/gnome/user-share/patches: patch-configure x11/gnome/user-share/pkg: PLIST Log message: Update to gnome-user-share-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:30:24 Modified files: devel/libgee : Makefile distinfo devel/libgee/pkg: PLIST Log message: Update to libgee-0.16.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:30:54 Modified files: x11/gnome/power-manager: Makefile distinfo Log message: Update to gnome-power-manager-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:31:27 Modified files: x11/gnome/gdm : Makefile distinfo x11/gnome/gdm/pkg: PLIST Log message: Update to gdm-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:32:02 Modified files: x11/gnome/vinagre: Makefile distinfo x11/gnome/vinagre/pkg: PLIST Log message: Update to vinagre-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 02:32:24 Modified files: x11/gnome/online-miners: Makefile distinfo x11/gnome/online-miners/pkg: PLIST Log message: Update to gnome-online-miners-3.14.0. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/10/06 02:47:40 Modified files: devel/git : Makefile distinfo Log message: Update git to 2.1.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:13:12 Modified files: x11/gnome/clocks: Makefile distinfo x11/gnome/clocks/pkg: PLIST Log message: Update to gnome-clocks-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:16:17 Modified files: x11/gnome/maps : Makefile distinfo x11/gnome/maps/pkg: PLIST Log message: Update to gnome-maps-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:28:21 Modified files: x11/gnome/anjuta: Makefile x11/gnome/anjuta/pkg: PLIST Log message: Drop bogus @exec CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:29:40 Modified files: x11/gnome/libgweather: Makefile x11/gnome/libgweather/pkg: PLIST Log message: No need for gtk-update-icon-cache. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:38:23 Modified files: x11/gnome/music: Makefile distinfo x11/gnome/music/pkg: PLIST Log message: Update to gnome-music-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:38:51 Modified files: x11/gnome/photos: Makefile distinfo x11/gnome/photos/pkg: PLIST Log message: Update to gnome-photos-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:46:15 Modified files: x11/gnome/vino : Makefile distinfo x11/gnome/vino/pkg: PLIST Log message: Update to vino-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:47:50 Modified files: x11/gnome/seahorse: Makefile distinfo x11/gnome/seahorse/pkg: PLIST Log message: Update to seahorse-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 03:53:23 Modified files: x11/gnome/user-share: Makefile Log message: Drop patch. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 04:08:21 Removed files: x11/gnome/user-share/patches: patch-configure Log message: Really drop patch. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 04:16:42 Modified files: x11/gnome/initial-setup: Makefile distinfo x11/gnome/initial-setup/patches: patch-configure_ac patch-gnome-initial-setup_Makefile_in patch-gnome-initial-setup_gnome-initial-setup_c patch-gnome-initial-setup_pages_Makefile_in patch-gnome-initial-setup_pages_account_Makefile_in patch-gnome-initial-setup_pages_account_um-realm-manager_c patch-gnome-initial-setup_pages_language_cc-language-chooser_c patch-gnome-initial-setup_pages_language_gis-language-page_c patch-gnome-initial-setup_pages_password_Makefile_in patch-gnome-initial-setup_pages_region_cc-region-chooser_c x11/gnome/initial-setup/pkg: PLIST Removed files: x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_keyboard_cc-input-chooser_c patch-gnome-initial-setup_pages_password_um-realm-manager_c Log message: Update to gnome-initial-setup-3.14.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 04:49:19 Modified files: x11/gnome/gvfs : Makefile x11/gnome/gvfs/pkg: PLIST-main Log message: Drop bogus goo. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 04:52:53 Modified files: x11/gnome/file-roller: Makefile x11/gnome/file-roller/pkg: PLIST Log message: Fix call to glib-compile-schemas. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 04:58:51 Modified files: x11/gnome/bijiben: Makefile x11/gnome/documents: Makefile x11/gnome/grilo-plugins: Makefile x11/gnome/nautilus: Makefile x11/gnome/online-miners: Makefile x11/gnome/photos: Makefile x11/gnome/rygel: Makefile x11/gnome/tracker: Makefile x11/gnome/tracker/pkg: PLIST Log message: TRACKER_VERSION -> TRACKER_API CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 05:15:03 Modified files: x11/gnome/settings-daemon: Makefile x11/gnome/settings-daemon/pkg: PLIST Log message: No need for update-desktop-database. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 05:16:09 Modified files: x11/gnome/sushi: Makefile x11/gnome/sushi/pkg: PLIST Log message: Missing goo. CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/10/06 05:47:26 Modified files: usr.bin/ftp : fetch.c Log message: Amend previous commit to unbreak TLS cert validation when using a proxy. ok miod@ CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/10/06 05:53:18 Modified files: lib/libressl : ressl_verify.c Log message: If we have to match against a wildcard in a cert, verify that it contains at least a domain label before the tld, as in *.example.org. Suggested by Richard Moore (rich@kde) ok tedu@ CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/10/06 05:55:48 Modified files: lib/libressl : ressl_verify.c Log message: When verifying whether an IP address is in the commonName of a certificate, do not perform wildcard matching. Suggested by Richard Moore (rich@kde) ok tedu@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/10/06 06:17:21 Modified files: audio/id3ed : Makefile Log message: Update homepage and while there : - Remove bouncing maintainer email - Update MASTER_SITE, spotted by kirby@ - Replace spaces with tab in CATEGORIES - Adjust licence marker ok sthen@, kirby@, bentley@, benoit@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 06:28:15 Modified files: misc/appdata-tools: Makefile Log message: Take MAINTAINER. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 06:28:50 Modified files: x11/gnome/terminal: Makefile Removed files: x11/gnome/terminal/patches: patch-src_Makefile_in Log message: drop a patch CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/06 06:29:34 Modified files: x11/xkbcommon : Makefile Log message: take maintainership CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/06 06:34:32 Modified files: net/seafile/ccnet/patches: patch-lib_net_c patch-lib_packet-io_c Log message: add missing comment in not-so-obvious patches. requested by landry@ before import CVSROOT: /cvs Module name: www Changes by: schwarze@cvs.openbsd.org 2014/10/06 07:57:38 Modified files: . : 56.html Log message: mandoc news CVSROOT: /cvs Module name: www Changes by: yasuoka@cvs.openbsd.org 2014/10/06 08:10:51 Modified files: . : plus56.html 56.html Log message: Added pcb auto resize. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/06 09:43:04 Modified files: faq : current.html Log message: adjust comment about ipv6 on pppoe(4) to use "ifconfig .. inet6 eui64" instead of ".. inet6 autoconf" which does additional things on -current CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/06 10:37:26 Modified files: x11/gtk+3 : Makefile Added files: x11/gtk+3/patches: patch-gtk_gtkbuilder_c Log message: GtkBuilder: Undo the type name heuristic changes (from upstream). This fixes at least gnome-weather. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/06 10:57:29 Modified files: x11/gnustep/highlighterkit: Makefile distinfo x11/gnustep/highlighterkit/pkg: PLIST Log message: minor update HighLighterkit to 0.1.2 -> 0.1.3 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/06 10:58:17 Modified files: x11/gnustep/gemas: Makefile distinfo x11/gnustep/gemas/pkg: PLIST Log message: minor update 0.3 -> 0.4 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/06 11:00:54 Modified files: x11/gnustep/batmon: Makefile distinfo Log message: Batmon update 0.7 -> 0.8 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/06 11:02:18 Modified files: x11/gnustep/databasin: Makefile distinfo x11/gnustep/databasin/pkg: PLIST Log message: Update 0.7 -> 0.8, most notably now has a preferences panel. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/06 11:26:37 Modified files: textproc/TclXML: Makefile Log message: Update my E-Mail address to match with the other ports I maintain OK jasper@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/06 11:37:34 Modified files: bin/chmod : chmod.c Log message: In case of invalid syntax like "chmod -Pr -w tf" (trailing mode letter in a group of option letters), do not silently ignore the syntax error and do something undefined, but instead error out properly. Found because miod@ said "read the code" (not to me, though). ok doug@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/06 13:36:34 Modified files: usr.sbin/syslogd: syslogd.c Log message: As libevent provides safe signal callbacks instead of signal handlers, the sigprocmask(2) protection is not necessary and can be removed. OK nicm@ deraadt@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/06 13:52:36 Modified files: textproc/calibre: Makefile Log message: take maintainer CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/10/06 14:34:58 Modified files: sys/arch/amd64/amd64: pmap.c sys/arch/amd64/include: pmap.h Log message: Make amd64 pmap more efficient on multi-processor With the current implementation, when accessing an inactive pmap, its ptes are mapped in the APTE range. This has the problem that the APTE range is mapped on all CPUs and changes to the APTE must therefore be followed by a remote TLB flush on all CPUs. This is very inefficient because the costs increase quadratically with the number of CPUs. Therefore, the code is changed to remove the APTE mechanism completely and instead switch the pmap locally. A remote TLB flush is then only done if the pmap is in use on the remote CPU. In the common case, this will replace one TLB flush on all CPUs with two local TLB flushes. An additional optimization is done in cases where only a single PTE of an inactive pmap is accessed: The requested PTE is found by walking the page tables manually via the direct mapping. This makes some more TLB flushes unnecessary. Furthermore, some code is reordered so that the TLB-shootdown-IPIs are sent first, then more local processing takes place, and only afterwards the CPU waits for the remote TLB-shootdowns to finish. This diff is based on a patch for i386 by Artur Grabowski from 2008. Some additional bits were taken from a different patch by Artur from 2005. Tested by many. OK mlarkin@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/06 15:16:03 Modified files: lib/libevent : Makefile evsignal.h signal.c Log message: Remove the #ifdef HAVE_SIGACTION from libevent. The struct evsignal_info does not change, so no library crank. OK nicm@ deraadt@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/10/06 15:36:32 Modified files: sysutils/dcled : Makefile distinfo sysutils/dcled/pkg: PLIST Log message: Update to 2.2 that remove depend on libhid ok jca@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/06 15:41:41 Modified files: shells/dash : Makefile distinfo Log message: Update to dash-0.5.8 CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/06 15:50:04 Removed files: shells/dash/patches: patch-src_dash_1 Log message: Missed in previous. cvs... CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/06 15:54:59 Modified files: lang/mawk : Makefile distinfo Log message: Update to mawk-1.3.4-20140914 CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/06 16:05:04 Modified files: audio/liblastfm: Makefile distinfo audio/liblastfm/pkg: PLIST Log message: Update liblastfm to last official release, 1.0.9. Clementine still works. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/06 16:11:27 Log message: Import a KDE4 version, 4.0.9, of KRename. KRename is a powerful batch renamer for KDE. It allows you to easily rename hundreds or even more files in one go. The filenames can be created by parts of the original filename, numbering the files or accessing hundreds of informations about the file, like creation date or Exif informations of an image, thanks to KDE file plugins. okay landry@ Status: Vendor Tag: zhuk Release Tags: zhuk_20141007 N ports/sysutils/krename-kde4/Makefile N ports/sysutils/krename-kde4/distinfo N ports/sysutils/krename-kde4/patches/patch-cmake_modules_FindLIBPODOFO_cmake N ports/sysutils/krename-kde4/patches/patch-src_CMakeLists_txt N ports/sysutils/krename-kde4/patches/patch-src_batchrenamer_cpp N ports/sysutils/krename-kde4/patches/patch-src_krenametest_cpp N ports/sysutils/krename-kde4/pkg/DESCR N ports/sysutils/krename-kde4/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: www Changes by: djm@cvs.openbsd.org 2014/10/06 17:20:58 Modified files: build : Makefile build/mirrors : openssh-ftp.html.head openssh : ftp.html index.html openbsd.html Added files: openssh/txt : release-6.7 Log message: openssh-6.7 CVSROOT: /cvs Module name: www Changes by: djm@cvs.openbsd.org 2014/10/06 18:17:04 Modified files: openssh : openbsd.html Log message: I created the openssh-6.7.tar.gz tarball with the wrong directory name inside; adjust tar commandline to fix it during extraction. spotted by TJ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/06 20:15:59 Modified files: . : products.html Log message: remove href to broken site CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/06 20:16:54 Modified files: usr.sbin/edquota: edquota.c Log message: When reading time intervals, start with a long long and convert from there. Similarly, print them by casting to long long and using %lld. ok otto@ CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/06 20:26:09 Modified files: . : 56.html Log message: traceroute6/traceroute merge, asr API, Apache removal, ext4 read support CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/06 22:41:13 Removed files: usr.sbin/sdio : Makefile sdio.8 sdio.c Log message: Rare to find a gem this amazing missed by tedu. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/06 22:58:50 Modified files: lib/libssl/src/crypto/ec: ec_ameth.c Log message: EC_KEY_set_group() does an EC_GROUP_dup() of its argument, so we don't need to do it in ec_copy_parameters() prior to invoking EC_KEY_set_group(). ok doug@ jsing@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/06 22:59:25 Modified files: lib/libssl/src/crypto/objects: obj_lib.c Log message: Use strdup() instead of malloc() + memcpy(). ok doug@ jsing@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 00:44:42 Modified files: x11/gnome/shell: Makefile Log message: Unbreak build with clang by disabling -Werror. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 01:07:40 Added files: geo/qgis/patches: patch-src_providers_delimitedtext_CMakeLists_txt Log message: Fix dependency spotted by landry@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/07 01:14:55 Modified files: sys/arch/arm/arm: pmap.c pmap7.c sys/arch/arm/include: pmap.h Log message: Correct the l1 pte permission bits for armv7. Problem pointed out by Patrick Wildt who made a similiar change in Bitrig. ok miod@ rapha@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 01:16:58 Modified files: print/cups-filters: Makefile distinfo Log message: Update to cups-filters-1.0.60. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 01:31:41 Modified files: www/webkitgtk4/patches: patch-CMakeLists_txt patch-Source_WTF_wtf_Platform_h patch-Source_WTF_wtf_dtoa_utils_h Added files: www/webkitgtk4/patches: patch-Source_JavaScriptCore_CMakeLists_txt Log message: Make it build on sparc64. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 01:33:30 Modified files: graphics/colord: Makefile graphics/colord/patches: patch-src_cd-main_c Log message: Fix profile DB directory. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 02:28:37 Modified files: x11/gnome/adwaita-icon-theme: Makefile x11/gnome/adwaita-icon-theme/pkg: PLIST Log message: Register conflict with gnome-themes-standard-<3.14.0. issue reported by mpi@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 02:35:37 Modified files: x11/gnome/photos: Makefile Log message: Add comment about dleyna-renderer. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/07 02:40:30 Modified files: sysutils : Makefile Log message: Link up krename-kde4, reminded by landry@. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/07 02:47:28 Modified files: sys/net : if_loop.c sys/netinet : in.c ip_carp.c sys/netinet6 : in6.c nd6_rtr.c Log message: Do not protect the SIOCSIFADDR call by splnet(). Drivers already raise it inside their ioctl handler (except for carp(4), what else?). In general, global structures manipulated in the softnet codepath only require a splsoftnet() protection when they are modified in process (ioctl) context. Also put some IPL_SOFNET asserts in functions accessing global structures. Previous version diff ok mikeb@, with inputs from and ok bluhm@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/07 02:59:50 Modified files: sys/net : if_mpe.c Log message: Since the list of mpe(4) interfaces is only accessed in process context, it does not need to be protected by splnet(). Rafael Zalamena agrees, no objection from the MPLS gang. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 03:10:07 Modified files: x11/wmfishtime : Makefile x11/wmfishtime/patches: patch-fishmon_c Log message: More fixes; from pkgsrc CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 03:10:54 Modified files: sysutils/bubblemon-dockapp: Makefile sysutils/bubblemon-dockapp/patches: patch-bubblemon_c patch-sys_openbsd_c Log message: More improvements and fixes CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/07 03:55:10 Modified files: net/seafile/ccnet/patches: patch-lib_net_c patch-lib_packet-io_c Log message: patches were commited upstream CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/07 04:10:58 Modified files: sys/arch/arm/include: pmap.h Log message: Use L1_S_V7_AP instead of L1_S_AP for the v7 case otherwise the high bit of AP will end up in TEX. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 04:13:57 Modified files: archivers/unzip: Makefile archivers/unzip/pkg: DESCR Log message: Trailing whitespace. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 05:12:23 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-Modules_FindLua_cmake Log message: fix FindLua module; from upstream (Rolf Eike Beer) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/07 05:16:23 Modified files: sys/net : bpf.c bpf.h if_vlan.c Log message: when running bpf on an outgoing vlan interface that doesnt have a parent that doesnt offload the tag insertion, we need to chop the vlan subheader out before the filter is run, not after. this moves the mbuf surgery out from the bpf layer into the vlan layer. ok henning@ jmatthew@ CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/07 05:28:59 Modified files: sys/dev/acpi : acpithinkpad.c Log message: zap duplicated line; Theo Buehler CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/10/07 05:48:33 Modified files: textproc/docx2txt: Makefile distinfo textproc/docx2txt/patches: patch-docx2txt_pl textproc/docx2txt/pkg: PLIST Added files: textproc/docx2txt/patches: patch-docx2txt_config Log message: update to release 1.4 improvements with respect to lists, indentation, and special characters ok sthen@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 06:07:57 ports/devel/hs-MonadCatchIO-mtl/patches Update of /cvs/ports/devel/hs-MonadCatchIO-mtl/patches In directory cvs.openbsd.org:/tmp/cvs-serv21714/patches Log Message: Directory /cvs/ports/devel/hs-MonadCatchIO-mtl/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/07 06:51:35 Modified files: comms/conserver: Makefile comms/conserver/pkg: PLIST Added files: comms/conserver/patches: patch-conserver_cf_conserver_cf Log message: conserver tweaks: - add http master site - use correct autoconf version for 8.1.20 - install upstream's other sample configs - actually install pkg-readme - add sample config to work with IPMI SOL consoles using ipmitool CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 06:59:52 Modified files: devel/hs-MonadCatchIO-mtl: Makefile distinfo devel/hs-ghc-mtl: Makefile devel/hs-hint : Makefile lang/feldspar/compiler: Makefile Added files: devel/hs-MonadCatchIO-mtl/patches: patch-MonadCatchIO-mtl_cabal Log message: Update to MonadCatchIO-mtl-0.3.1.0 CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/07 07:25:18 Modified files: devel/gwenhywfar: Makefile distinfo Log message: update to gwenhywfar-4.12.0beta, ok+help sthen CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/07 07:27:15 Modified files: productivity/aqbanking: Makefile distinfo productivity/aqbanking/pkg: PLIST Log message: update to aqbanking-5.5.0.2git, ok+help sthen a real release should follow soonish, but since the last release is utterly useless with SEPA-transfers which are now mandantory for corporations in the EU we pretty much have to use snapshots like this for the moment CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/07 08:05:02 Modified files: comms/conserver: Makefile comms/conserver/patches: patch-conserver_cf_conserver_cf Log message: tweak sample ipmitool line; avoid keeping the shell around CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/07 08:06:14 Modified files: usr.bin/mandoc : tbl_layout.c Log message: If a tbl(7) layout contains unknown font modifiers, fall back to the default font rather than failing the whole table. Needed by some pages in books/man-pages-posix. Written on the plane back from EuroBSDCon in Sofia. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/07 08:41:50 Modified files: www/tomcat/v7 : Makefile distinfo www/tomcat/v7/pkg: PLIST-examples Log message: Update to tomcat-7.0.56 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/07 09:21:42 Modified files: comms/conserver: Makefile comms/conserver/patches: patch-conserver_cf_conserver_cf comms/conserver/pkg: README Log message: conserver tweaks: - setup break sequence for ipmitool in sample config - remind people about log rotation (console logs sometimes get quite large) CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/07 09:28:24 Added files: openssh : donations.html Log message: various documents mention this page, so make it a bouncing page. for djm CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 09:47:09 Modified files: devel/vte3 : Makefile Log message: Needs bash to build; spotted by sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 09:57:09 Modified files: devel/vte3 : Makefile Log message: Add comment about --enable-gnome-pty-helper. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:02:20 ports/multimedia/gstreamer1/core/files Update of /cvs/ports/multimedia/gstreamer1/core/files In directory cvs.openbsd.org:/tmp/cvs-serv31280/core/files Log Message: Directory /cvs/ports/multimedia/gstreamer1/core/files added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:03:09 Modified files: multimedia/gstreamer1: Makefile.inc Log message: Bump to 1.4.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:04:04 Modified files: multimedia/gstreamer1/core: Makefile distinfo multimedia/gstreamer1/core/pkg: PLIST Added files: multimedia/gstreamer1/core/files: grammar.tab.c grammar.tab.h multimedia/gstreamer1/core/patches: patch-gst_parse_Makefile_in Removed files: multimedia/gstreamer1/core/patches: patch-gst_Makefile_in patch-libs_gst_base_Makefile_in patch-libs_gst_base_gstbasesrc_c patch-libs_gst_check_Makefile_in patch-libs_gst_controller_Makefile_in patch-libs_gst_net_Makefile_in Log message: Update to gstreamer1-1.4.3. Include pre-generated files created with a working bison(1) instead of the dinosaur one forces us to use. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:05:11 Modified files: multimedia/gstreamer1/plugins-base: Makefile distinfo multimedia/gstreamer1/plugins-base/patches: patch-configure_ac patch-ext_cdparanoia_gstcdparanoiasrc_c patch-gst_tcp_gstmultihandlesink_c multimedia/gstreamer1/plugins-base/pkg: PLIST Removed files: multimedia/gstreamer1/plugins-base/patches: patch-gst_audioresample_resample_c Log message: Update to gstreamer1-plugins-base-1.4.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:05:25 Modified files: multimedia/gstreamer1/plugins-good: Makefile distinfo multimedia/gstreamer1/plugins-good/patches: patch-sys_oss_Makefile_in multimedia/gstreamer1/plugins-good/pkg: PLIST-main Removed files: multimedia/gstreamer1/plugins-good/patches: patch-sys_oss_gstosshelper_c Log message: Update to gstreamer1-plugins-good-1.4.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:05:40 Modified files: multimedia/gstreamer1/plugins-ugly: Makefile distinfo multimedia/gstreamer1/plugins-ugly/pkg: PLIST Log message: Update to gstreamer1-plugins-ugly-1.4.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:05:54 Modified files: multimedia/gstreamer1/plugins-bad: Makefile distinfo multimedia/gstreamer1/plugins-bad/patches: patch-configure_ac multimedia/gstreamer1/plugins-bad/pkg: PLIST Log message: Update to gstreamer1-plugins-bad-1.4.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:06:09 Modified files: multimedia/gstreamer1/plugins-libav: distinfo multimedia/gstreamer1/plugins-libav/patches: patch-gst-libs_ext_libav_configure patch-gst-libs_ext_libav_libavcodec_Makefile patch-gst-libs_ext_libav_libavutil_Makefile multimedia/gstreamer1/plugins-libav/pkg: PLIST Log message: Update to gstreamer1-plugins-libav-1.4.3. CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/10/07 10:25:32 Modified files: games/lwjgl : Makefile Added files: games/lwjgl/patches: patch-src_java_org_lwjgl_LWJGLUtil_java patch-src_java_org_lwjgl_util_applet_AppletLoader_java Log message: Add missing patches for full OpenBSD compat. OK armani@ - tweak from sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/07 10:54:45 Modified files: x11/gnome/totem: Makefile distinfo x11/gnome/totem/pkg: PLIST Log message: Update to totem-3.14.0. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/07 12:17:05 Modified files: usr.bin/mandoc : cgi.c html.c html.h man_html.c mandoc.1 mdoc_html.c Log message: Switch HTML output to polyglot HTML5; have only one single -Thml mode. Replace hard-coded widths and alignments with a minimal embedded stylesheet. Do not use

because it cannot appear inside block macros. Remove the "summary" attribute because it is not HTML5. Written by kristaps@ some months ago, finished during EuroBSDCon. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/07 12:20:42 Modified files: usr.bin/mandoc : cgi.c Log message: be a bit more patient, 1s is sometimes insufficient for legitimate queries CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/10/07 13:07:32 ports/textproc/igor/patches Update of /cvs/ports/textproc/igor/patches In directory cvs.openbsd.org:/tmp/cvs-serv28965/patches Log Message: Directory /cvs/ports/textproc/igor/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/10/07 13:13:50 Modified files: textproc/igor : Makefile distinfo Added files: textproc/igor/patches: patch-igor patch-igor_1 Log message: Update to release 1.502: catches various new spelling errors and bad phrases. While here, disable -u (warnings about contractions) by default, we don't want that people expand contractions. ok sthen@, no objection from jmc@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/07 13:37:05 Modified files: usr.bin : Makefile Removed files: usr.bin/gzsig : Makefile extern.h gzip.h gzsig.1 gzsig.c key.c key.h sign.c ssh.c ssh.h ssh2.c ssh2.h util.c util.h verify.c x509.c x509.h Log message: remove gzsig. we have no use for this now. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/07 13:38:57 Modified files: usr.bin/head : head.c Log message: fix a critical DDOS in head. use the correct exit code on failure. reported by craig skinner. ok deraadt schwarze CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/07 14:23:32 Modified files: sys/conf : files sys/net : if_ethersubr.c sys/dev : softraid.c softraidvar.h Removed files: sys/net : if_aoe.c if_aoe.h sys/dev : softraid_aoe.c Log message: remove preliminary AOE (ata over ethernet) support. not finished after many years and wide spread demand for support never materialized. time to pack it in. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 15:05:04 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 15:06:31 Modified files: usr.bin/compress: gzip.1 Log message: no more Xr to gzsig CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/07 16:14:17 Modified files: comms/conserver: Makefile distinfo comms/conserver/files: console.cf comms/conserver/patches: patch-conserver_consent_c patch-conserver_cutil_c patch-conserver_group_c patch-console_console_c comms/conserver/pkg: DESCR README Added files: comms/conserver/patches: patch-configure_in Log message: update conserver to 8.2.0, and make some port changes ... - Switch to using unix domain sockets instead of network sockets for comms between "console" client and "conserver" server. This is a compile- time toggle and disables network sockets. Uses SO_PEERCRED for access control so it's possible to do per-user acls in conserver without the need to re-enter user passwords. - Add a flavour to use network sockets for those that need it (i.e. running the client on a different machine to the server). - Tweaks to pkg-readme explaining the above. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/07 16:14:40 Modified files: comms : Makefile Log message: build conserver,net flavour CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/07 18:26:38 Modified files: distrib/miniroot: install.sub Log message: sl(4) was tedu'd. No need to filter it out of interface list anymore. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/07 18:53:45 Modified files: usr.bin/vi/common: options_f.c Log message: bump max columns out to 768. screens are getting bigger... ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/07 20:05:42 Modified files: databases : Makefile devel : Makefile security : Makefile Log message: Remove default building of rubinius (rbx-*) ports We no longer build ruby 1.8 and ruby 1.9 ports by default, so it doesn't make sense to build rubinius ports by default. While here, make sure ruby gem extension ports use explicit flavors in the category Makefiles. And unlink devel/ruby-fastthread, no longer used. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/07 20:07:47 Removed files: devel/ruby-fastthread: Makefile distinfo devel/ruby-fastthread/pkg: DESCR PLIST Log message: Remove ruby-fastthread, only useful on ruby 1.8, and nothing depends on it anymore. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 20:10:05 Modified files: libexec/talkd : table.c Log message: do not need a cast from void * CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/07 20:10:10 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Register removal of ruby-fastthread CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/07 20:10:50 Modified files: telephony/asterisk-sounds/moh-opsound: Makefile Log message: take maintainer CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 20:11:54 Modified files: usr.sbin/authpf: authpf.c Log message: remove stupid cast CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/07 20:16:34 Modified files: x11/kde4/korundum: Makefile x11/kde4/kross-interpreters: Makefile x11/kde4/webdev: Makefile x11/kde4/workspace: Makefile x11/kde4/ruby-qt: Makefile Log message: Use default version of ruby when building KDE4 ports. Removal of FLAVOR setting in ruby-qt4 recommended by zhuk@. OK zhuk@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/07 20:32:43 Modified files: www/nginx : Makefile www/ruby-passenger: Makefile Log message: Use default ruby version for building ruby-passenger and nginx passenger FLAVOR. No runtime effect for either, so no bump. nginx part from zhuk@, with minor tweak by me to fix CONFIGURE_ARGS and BUILD_DEPENDS CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 21:56:52 Modified files: usr.bin/at : at.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 21:59:11 Modified files: usr.bin/compress: main.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 21:59:56 Modified files: usr.bin/dc : bcode.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:00:55 Modified files: usr.bin/openssl: pkeyutl.c Log message: fix an indentation that makes me upset CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:01:10 Modified files: usr.bin/ftp : fetch.c stringlist.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:02:46 Modified files: usr.bin/kdump : kdump.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:04:37 Modified files: usr.bin/locate/locate: util.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:06:23 Modified files: usr.bin/patch : inp.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:07:24 Modified files: usr.bin/rs : rs.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:08:13 Modified files: usr.bin/rup : rup.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:08:47 Modified files: usr.bin/rusers : rusers.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:10:04 Modified files: usr.bin/systat : cache.c if.c netstat.c pigs.c pool.c sensors.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:10:47 Modified files: usr.bin/tput : tput.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/07 22:11:28 Modified files: usr.bin/users : users.c Log message: userland reallocarray audit. Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:13:33 Modified files: usr.bin/bc : bc.y Log message: reallocarray() to detect integer overflow; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:19:08 Modified files: usr.bin/sed : compile.c extern.h misc.c Log message: add a xreallocarray() like the existing fatal xmalloc(), and use it to detect potential integer. ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:20:57 Modified files: usr.sbin/cron : env.c Log message: use reallocarray() instead of realloc() to handle potential integer overflow; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:26:07 Modified files: usr.sbin/dhcpd : dispatch.c Log message: use reallocarray() to cope with multiplicative integer overflow; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:26:55 Modified files: usr.sbin/installboot: i386_installboot.c Log message: use reallocarray() to detect int overflow; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:27:32 Modified files: usr.sbin/mailwrapper: mailwrapper.c Log message: simple reallocarray() use; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:29:17 Modified files: libexec/rpc.rquotad: rquotad.c Log message: remove useless cast CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:36:23 Modified files: lib/libc/gen : fts.c Log message: reallocarray() for mult int overflow detect; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:37:02 Modified files: lib/libc/gen : getnetgrent.c Log message: reallocarray() to detect potential int overflow; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:47:21 Modified files: libexec/login_yubikey: yubikey.c Log message: obvious reallocarray() use for * int overflow; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:48:22 Modified files: usr.sbin/rdate : ntpleaps.c Log message: use reallocarray(). BTW << 3 is a sloppy compared to * sizeof(u_int64_t)... ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:49:36 Modified files: lib/libusbhid : usage.c Log message: use reallocarray(); ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:50:10 Modified files: lib/libfuse : fuse_opt.c Log message: use reallocarray(); ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:51:29 Modified files: usr.sbin/pppd : main.c Log message: easy obvious use of reallocarray(); ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:52:54 Modified files: usr.sbin/pstat : pstat.c Log message: use reallocarray(NULL, a, b) instead of malloc(a*b) ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:55:03 Modified files: usr.sbin/fdformat: fdformat.c Log message: remove a space CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:55:27 Modified files: usr.sbin/rtsold: rtsold.c Log message: obvious realloc() -> reallocarray() conversions ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:57:29 Modified files: usr.sbin/ntpd : ntp.c Log message: easy realloc() -> reallocarray() which gives us mult int overflow checking for free, FREE, FREEEEE ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:58:18 Modified files: usr.sbin/rarpd : rarpd.c Log message: KNF CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 22:58:50 Modified files: usr.sbin/tcpdump: addrtoname.c Log message: obvious malloc() -> reallocarray() oflow check; ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:22:48 Modified files: sys/arch/sgi/localbus: imc.c Log message: if SMALL_KERNEL do not register the imc_watchdog_cb callback. We still use the callback function to clear conditions on boot... but no callback hook. Should work :) CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:24:42 Modified files: usr.sbin/snmpd : pf.c Log message: obvious reallocarray() CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/07 23:25:41 Modified files: sys/dev/pci/drm/i915: intel_display.c Log message: Remove the i830/i845 pipe A force quirks, matching changes in recent versions of the linux drm code. drm/i915: Nuke pipe A quirk on i830M From Daniel Vetter 0e8abc81bf4b54a01bb026ba4d883de7c415cc03 in mainline linux drm/i915: Undo the PIPEA quirk for i845 From Chris Wilson a4945f9522d27e1e6d64a02ad055e83768cb0896 in mainline linux With this change a hardware lockup with i845g reported by "THEvoid" via bugs@ is avoided. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:27:17 Modified files: lib/libc/string: wcsdup.c Log message: obvious malloc -> reallocarray, for mult int oflow CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:28:19 Modified files: lib/libc/stdio : open_wmemstream.c Log message: obvious reallocarray(); ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:29:07 Modified files: lib/libc/rpc : svc.c Log message: obvious conversion of realloc() to reallocarray(). Luckily this is using pollfd, because if this was fd_set... it would not be obvious (or easy) CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:33:31 Modified files: lib/libc/stdlib: setenv.c Log message: using reallocarray() gives us multiplicative integer overflow checking in case something wants to create massive amounts of environment, like a bit more than 1/4 of a 32-bit address space. unrealistic -- but why audit one code path, and not treat others the same? then you have to re-engage everytime you see the code. read the news, that isn't what developers do. At least if the code paths look the same, there is hope, because they are easier to verify for correctness. developers need to give other developers a chance to want to care. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:34:59 Modified files: lib/libc/gen : scandir.c Log message: obvious reallocarray() CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:35:27 Modified files: lib/libc/gen : glob.c Log message: obvious realloc -> reallocarray conversion CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:41:42 Modified files: lib/libevent : kqueue.c poll.c signal.c Log message: use reallocarray() to detect multiplicative integer overflow; obvious pattern. This commit does not fix the non-obvious bloody horror of select.c. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/07 23:42:16 Removed files: sys/arch/hppa/dev: mongoose_gsc.c Log message: remove an unused file that is a duplicate of arch/hppa/gsc/mongoose_gsc.c ok miod@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:44:19 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/07 23:47:03 Modified files: sbin/iked : config.c Log message: trivial use of reallocarray() CVSROOT: /cvs Module name: src Changes by: eric@cvs.openbsd.org 2014/10/08 01:23:39 Modified files: usr.sbin/smtpd : dns.c Log message: restrict address lookups to configured address families. ok gilles@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 01:23:47 Modified files: x11/gtk+3 : Makefile distinfo Removed files: x11/gtk+3/patches: patch-gtk_gtkbuilder_c Log message: Update to gtk+3-3.14.2. CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/10/08 01:33:14 Modified files: sys/kern : vfs_bio.c Log message: Now that the cleaner yields the cpu, we can stop checking to see if we've hogged the cpu for >1 second. okay miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/08 01:33:42 Modified files: sys/netinet : ip_output.c Log message: Check if the outgoing route is associated to a broadcast address instead of doing a lookup on all the addresses of the outgoing interface. ok henning@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/08 01:37:02 Modified files: sys/net : pf.c route.c route.h Log message: Use rtalloc1() instead of rtalloc_noclone(). ok henning@, phessler@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/08 01:39:46 Modified files: share/man/man9 : Makefile route.9 Log message: rtalloc(9) and rtalloc_noclone(9) are dead, long live rtalloc1(9)! reminded by phessler@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/08 01:41:27 Modified files: sys/dev/pci : pcidevs Log message: new megaraids CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/08 01:41:53 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 02:23:24 Modified files: sysutils/deja-dup: Makefile distinfo sysutils/deja-dup/pkg: PLIST Log message: Update to deja-dup-32.0. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/08 02:31:53 Modified files: usr.bin/head : head.c Log message: Fix a 37 year old bug introduced by Bill Joy on August 24, 1977 that was already present in the 1BSD release on March 9, 1978 by merging Keith Bostic's 22 year old fix from 4.4BSD (not kidding). Original CSRG SCCS commit message: ^As 00009/00006/00145 ^Ad D 5.7 92/03/04 14:35:42 bostic 9 8 ^Ac can't use freopen; example is "date | head file1 /dev/stdin" ok deraadt@ tedu@, also checked by Martin CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/08 02:36:37 Modified files: audio/wmix : Makefile distinfo audio/wmix/patches: patch-mixer-oss_c patch-wmix_c audio/wmix/pkg : PLIST Log message: Update to wmix-3.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/08 02:44:40 Modified files: graphics/wmphoto: Makefile Log message: Add PORTROACH annotation: 0.3a is the latest version (since 1999) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/08 02:47:47 Modified files: graphics/wmphoto: distinfo Log message: regen distinfo CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 03:03:00 Modified files: print/hplip : Makefile distinfo print/hplip/patches: patch-Makefile_in patch-base_password_py patch-installer_core_install_py patch-io_hpmud_musb_c patch-scan_py patch-setup_py print/hplip/pkg: PLIST-hpijs Log message: Update to hplip-3.14.10. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 03:10:50 Modified files: multimedia/gstreamer1/plugins-bad: Makefile Log message: Explicitely --disable-cocoa so that GNUstep is not picked up. issue reported by nigel@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/08 03:15:33 Modified files: meta/kde4 : Makefile Log message: Avoid BUILD_DEPENDS and LIB_DEPENDS coming from x11/kde4 and gcc4 MODULES. Noticed by nigel@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/10/08 03:17:00 Modified files: meta/kde4 : Makefile Log message: Add sysutils/krename-kde4 to -extras, too. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 03:34:30 Modified files: devel/glib2 : Makefile Added files: devel/glib2/patches: patch-gio_gtask_c Log message: Merge a bugfix from upstream. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 03:47:35 Modified files: x11/gnome/mutter: Makefile x11/gnome/mutter/patches: patch-src_core_screen_c Added files: x11/gnome/mutter/patches: patch-src_core_stack_c Log message: Fix stacking of the guard window (upstream); this should fix disappearing cursor. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/08 04:03:30 Modified files: graphics/ufraw : Makefile distinfo Log message: update to ufraw-0.20 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/08 04:08:03 Modified files: sbin/bioctl : bioctl.c Log message: tedu the tedu code that tedu forgot to tedu when he tedued the other part of this tedu code. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/08 04:12:41 Modified files: sys/arch/macppc/macppc: clock.c cpu.c sys/arch/powerpc/include: cpu.h sys/arch/socppc/socppc: clock.c Log message: Introduce ppc_mttb() and use it instead of rerolling the move to time base dance in inline assembly in various places. tweak and ok miod@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 04:56:01 Modified files: usr.sbin/smtpd : enqueue.c Log message: obvious reallocarray() use CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 04:57:17 Modified files: usr.sbin/route6d: route6d.c Log message: obvious reallocarray(); ok doug CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/08 05:10:13 ports/telephony/asterisk-sounds/core-sounds/ja Update of /cvs/ports/telephony/asterisk-sounds/core-sounds/ja In directory cvs.openbsd.org:/tmp/cvs-serv23204/ja Log Message: Directory /cvs/ports/telephony/asterisk-sounds/core-sounds/ja added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/08 05:20:05 Modified files: telephony/asterisk-sounds/core-sounds: Makefile Makefile.inc distinfo telephony/asterisk-sounds/core-sounds/pkg: PLIST-en PLIST-en_AU PLIST-en_GB PLIST-es PLIST-fr PLIST-it PLIST-ru Added files: telephony/asterisk-sounds/core-sounds/ja: Makefile telephony/asterisk-sounds/core-sounds/pkg: PLIST-ja Log message: - update to asterisk core-sounds 1.4.26 - add a package for the new Japanese sound files CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/08 05:28:02 Log message: This module provides a pure Perl implementation of the CAST5 block cipher. help landry & sthen, ok landry Status: Vendor Tag: henning Release Tags: henning_20141008 N ports/security/p5-Crypt-CAST5_PP/Makefile N ports/security/p5-Crypt-CAST5_PP/distinfo N ports/security/p5-Crypt-CAST5_PP/pkg/DESCR N ports/security/p5-Crypt-CAST5_PP/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 05:28:07 Modified files: lib/libkeynote : environment.c Log message: obvious reallocarray() CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/08 05:29:16 Log message: This perl extension is an implementation of the IDEA block cipher algorithm. help sthen & landry, ok landry Status: Vendor Tag: henning Release Tags: henning_20141008 N ports/security/p5-Crypt-IDEA/Makefile N ports/security/p5-Crypt-IDEA/distinfo N ports/security/p5-Crypt-IDEA/pkg/DESCR N ports/security/p5-Crypt-IDEA/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/08 05:30:16 Log message: The Crypt::RIPEMD160 module allows you to use the RIPEMD160 Message Digest algorithm from within Perl programs. help sthen & landry, ok landry Status: Vendor Tag: henning Release Tags: henning_20141008 N ports/security/p5-Crypt-RIPEMD160/Makefile N ports/security/p5-Crypt-RIPEMD160/distinfo N ports/security/p5-Crypt-RIPEMD160/pkg/DESCR N ports/security/p5-Crypt-RIPEMD160/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/08 05:30:56 Log message: Crypt::OpenPGP is a pure-Perl implementation of the OpenPGP standard. help sthen & landry, ok landry Status: Vendor Tag: henning Release Tags: henning_20141008 N ports/security/p5-Crypt-OpenPGP/Makefile N ports/security/p5-Crypt-OpenPGP/distinfo N ports/security/p5-Crypt-OpenPGP/pkg/PLIST N ports/security/p5-Crypt-OpenPGP/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/08 05:32:04 Modified files: security : Makefile Log message: p5-Crypt-CAST5_PP p5-Crypt-IDEA p5-Crypt-OpenPGP p5-Crypt-RIPEMD160 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 05:57:29 Modified files: textproc/link-grammar: Makefile distinfo textproc/link-grammar/pkg: PLIST-main Log message: Update to link-grammar-5.1.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:06:21 Modified files: databases/evolution-data-server: Makefile databases/evolution-data-server/pkg: DESCR fonts/cantarell-fonts: Makefile fonts/cantarell-fonts/pkg: DESCR graphics/gphoto2: Makefile graphics/gphoto2/pkg: DESCR graphics/libgphoto2: Makefile graphics/libgphoto2/pkg: DESCR print/cups : Makefile print/cups/pkg : README-main security/libgcrypt: Makefile security/libgcrypt/pkg: DESCR security/libtasn1: Makefile security/libtasn1/pkg: DESCR Log message: Trailing whitespace. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:09:18 Modified files: net/telepathy/telepathy-mission-control: Makefile net/telepathy/telepathy-mission-control/pkg: PLIST Log message: Missing devel/dconf MODULE and goo. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:10:32 Modified files: devel/libgdata : Makefile Log message: Fix BUILD_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:11:51 Modified files: x11/gtk+2 : Makefile Log message: Drop duplicate; no pkg change. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:15:09 Modified files: x11/gtk+3 : Makefile x11/gtk+3/pkg : PLIST-main Log message: Missing desktop-file-utils. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:17:06 Modified files: x11/gnome : gnome.port.mk Log message: Trailing whitespace. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/08 06:21:55 Modified files: x11/xscreensaver: Makefile distinfo x11/xscreensaver/pkg: PLIST Log message: Update to xscreensaver-5.30 OK aja@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 06:32:45 Modified files: devel/dconf : Makefile Log message: Fix gettext dependencies. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/08 06:37:57 Modified files: sys/net : if.c Log message: Tedu the RB-tree of addresses, thanks for all the fish! ok henning@, dlg@, mikeb@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/10/08 06:48:51 Modified files: app/cwm : calmwm.h group.c screen.c Log message: make group_init work like other *_init's CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/08 06:57:51 Modified files: share/man/man4 : pppoe.4 Log message: At present (since NOINET6-by-default), pppoe(4) does not request IPV6CP unless the pppoe interface already has a link-local address. Add to the config sample showing how to do this with "inet6 eui64". Not ideal and may want further changes in the driver, but since v6 over pppoe is broken for some people let's at least document it for now. Also show the not-easy-to-guess "route add" line that's needed. ok deraadt@ jmc@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 07:30:36 Modified files: x11/gnome/initial-setup: Makefile Log message: Missing build+run depends on geo/geoclue2. build breakage reported by naddy@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 07:35:45 Modified files: x11/gnome/music: Makefile Log message: Missing build+run depends on x11/gnome/libmediaart. build breakage reported by naddy@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/08 07:43:01 Modified files: x11/gnome/photos: Makefile Log message: port-lib-depends-check cannot be trusted when we have RUN_DEPENDS; fix the libgdata dependency. build breakage reported by naddy@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/08 07:46:16 Modified files: net/weechat : Makefile distinfo net/weechat/patches: patch-doc_CMakeLists_txt net/weechat/pkg: PLIST-main Added files: net/weechat/patches: patch-cmake_FindTCL_cmake Log message: update to weechat 1.0.1 ruby 2.1 supported. Ok jeremy@ sthen@ CVSROOT: /cvs Module name: src Changes by: dcoppa@cvs.openbsd.org 2014/10/08 08:30:32 Modified files: sys/dev/acpi : acpithinkpad.c Log message: On ThinkPads, protect code handling the hibernate button with "#if defined(HIBERNATE)" ok deraadt@, mlarkin@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/08 08:36:19 Modified files: geo/qgis : Makefile Log message: qgis needs a rdep on editors/py-qscintilla for its processing plugin ok landry@ (maintainer) CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 08:40:01 Added files: lib/libressl : ressl.3 Log message: rough sketch of ressl documentation CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/08 08:44:39 Modified files: sys/dev/pci : mfii.c Log message: add support for megaraid 3008 (fury) and 3108 (invader) cards. the new dell h730 is a rebaged 3108. adding the ids appears to be enough to support this chip. ill need to check the sgl code to be sure though. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 08:47:15 Modified files: lib/libressl : ressl.3 Log message: add a few more functions. (I also forgot to credit doug for much of the initial markup in the previous commit.) CVSROOT: /cvs Module name: src Changes by: rapha@cvs.openbsd.org 2014/10/08 08:53:36 Modified files: sys/arch/arm/cortex: ampintc.c Log message: Add offsets for cortex-A7/A15. Adapted from bitrig. ok jsg@ bmercer@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/08 08:55:20 Modified files: lib/libressl : ressl.3 Log message: whack a few stray .Pp macros CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/10/08 09:28:39 Modified files: sys/kern : kern_task.c kern_workq.c Log message: make workq/taskq runner threads yield when they've hogged the cpu ok deraadt@ dlg@ phessler@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/10/08 09:31:01 Modified files: app/cwm : screen.c Log message: no need for calloc(1,.. here, malloc is fine since we initialize CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 10:07:45 Modified files: sys/arch/macppc/dev: smu.c sys/dev/pci : glxpcib.c Log message: #ifdef SMALL_KERNEL some sensor blocks; ok miod CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 10:13:00 Added files: lib/libressl : ressl_init.3 Removed files: lib/libressl : ressl.3 Log message: reluctantly rename man page after a function CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 10:15:37 Modified files: usr.sbin/bgpctl: irr_asset.c irr_prefix.c mrtparser.c usr.sbin/bgpd : kroute.c pfkey.c pftable.c rde.c rde_attr.c rde_rib.c session.c Log message: Use reallocarray() throughout to spot multiplicative int overflow. ok henning benno CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 10:17:01 Modified files: lib/libressl : ressl_init.3 Log message: more better CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 10:27:53 Modified files: sbin/fsck : fsck.c fsutil.c fsutil.h Log message: replace internal erealloc() with ereallocarray(), and then use it to spot mult int overflow CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 10:28:12 Modified files: sbin/fsck_ext2fs: inode.c Log message: trivial use of reallocarray CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 10:28:38 Modified files: sbin/fsck_ffs : inode.c Log message: trivial use of getreallocarray() CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/08 10:41:53 Modified files: net : Makefile Log message: unhook net/pptp CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/10/08 10:44:47 Modified files: usr.bin/sndiod : siofile.c Log message: check audio parameters returned by the audio drivers, and nicely report driver bugs rather than crashing/misbehaving later if parameters aren't consistent. CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/08 10:44:58 Removed files: net/pptp : Makefile distinfo net/pptp/files : pptp_8 net/pptp/patches: patch-Makefile patch-inststr_c patch-pptp_c patch-pptp_callmgr_c patch-pptp_compat_c patch-pptp_gre_c patch-util_c net/pptp/pkg : DESCR PLIST README Log message: Send net/pptp to the attic. It requires an MPPE-capable ppp client which we don't have in base anymore. No objections from ports@ CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/10/08 11:03:01 Modified files: lang/node-typescript: Makefile distinfo lang/node-typescript/pkg: PLIST Log message: Update node-typescript to 1.1.0-1 CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/08 11:14:04 Modified files: usr.bin/tmux : grid.c paste.c Log message: Use xrealloc(NULL, n, m) instead of xmalloc(n * m) to get overflow check. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/08 11:29:52 Modified files: shells/bash : Makefile distinfo Log message: update to 4.3.30: parser bug fixes CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/08 11:35:58 Modified files: usr.bin/tmux : array.h cmd-capture-pane.c cmd-save-buffer.c cmd-set-buffer.c cmd-string.c cmd.c format.c grid.c input.c paste.c screen.c status.c tmux.h utf8.c window-choose.c window-copy.c xmalloc.c Log message: Add xreallocarray and remove nmemb argument from xrealloc. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 13:01:40 Modified files: lib/libressl : Makefile ressl_init.3 Log message: mlinks, and prune some functions from man page i'm not ready for yet. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 13:12:42 Modified files: lib/libressl : ressl_init.3 Log message: use preferred license form. can't trust that doug guy with anything... CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 13:17:55 Modified files: lib/libressl : ressl_init.3 Log message: history CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 13:31:53 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/10/08 13:40:28 Modified files: sys/arch/amd64/include: atomic.h sys/arch/i386/include: atomic.h Log message: Add virtio_membar_* macros Virtio needs the MP memory barriers even on SP kernels. OK kettenis@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/10/08 13:59:53 Modified files: sys/dev/pci : virtio.c Log message: Add missing memory barriers to virtio. The virtio_membar_sync() calls are required even on x86. The *_producer() and *_consumer() calls are only relevant on architectures with less strict memory ordering. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 13:59:58 Modified files: usr.bin/col : col.c Log message: use the reallocarray idiom; ok ingo CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/10/08 14:03:18 Modified files: sys/dev/pci : virtio.c Log message: publish_avail_idx does not read the used ring, no need to call bus_dmamap_sync for it. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/08 14:14:19 Modified files: lib/libevent : buffer.c evbuffer.c event.c event.h event_tagging.c evutil.c log.c signal.c Log message: iRemove the #ifdef WIN32 implementation from libevent. OK nicm@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/08 14:19:58 Modified files: sys/netinet : tcp_input.c Log message: Remove #ifdef SO_OOBINLINE, it is always defined. OK henning@ CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/08 14:28:27 Modified files: sys/net : if_spppsubr.c Log message: print ipv6cp by name rather than number in "0x8057 output <...>" debug lines, as already done for lcp/ipcp/pap/chap CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/08 15:34:13 Modified files: telephony/asterisk-sounds/extra-sounds: Makefile.inc distinfo Log message: update to asterisk-extra-sounds 1.4.15 CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/08 15:45:48 Modified files: usr.bin/ssh : sshkey.c Log message: parse cert sections using nested buffers to reduce copies; ok markus CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 16:03:52 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/08 16:15:06 Modified files: usr.bin/ssh : channels.c Log message: fix a few -Wpointer-sign warnings from clang CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/08 16:15:27 Modified files: usr.bin/ssh : compat.c Log message: another -Wpointer-sign from clang CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/08 16:16:28 Modified files: regress/sys/fifofs: fifotest.c fifotest.out Log message: Add tests for EOF behavior (which currently fail) and expected output. The expected output for the POLLIN test could also include POLLHUP, though it does not currently do so. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/08 16:20:25 Modified files: usr.bin/ssh : readconf.c readconf.h ssh-keysign.c ssh.1 ssh.c ssh_config.5 Log message: Tweak config reparsing with host canonicalisation Make the second pass through the config files always run when hostname canonicalisation is enabled. Add a "Match canonical" criteria that allows ssh_config Match blocks to trigger only in the second config pass. Add a -G option to ssh that causes it to parse its configuration and dump the result to stdout, similar to "sshd -T" Allow ssh_config Port options set in the second config parse phase to be applied (they were being ignored). bz#2267 bz#2286; ok markus CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 16:23:57 Modified files: sys/arch/hppa/hppa: trap.c Log message: #ifndef DDB, correct a format string.. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 16:24:26 Modified files: sys/arch/macppc/dev: openpic.c Log message: only call Debugger() #ifdef DDB CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/08 16:52:08 Modified files: sys/dev/ic : re.c Log message: Restrict what RL_MAXRXPKTLEN is being set to for any of the PCIe chipsets. The driver currently doesn't implement jumbo frames for the newer chipsets and it doesn't make sense allowing for a jumbo frame with a Fast Ethernet chipset either. In theory its possible to do bad things with the driver as is according to the FreeBSD/Linux drivers under the right conditions. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/10/08 17:38:55 Modified files: devel/py-pip : Makefile distinfo devel/py-pip/pkg: MESSAGE PLIST UNMESSAGE Log message: Update py-pip to version 1.5.6. We also agreed that it should be pip${MODPY_VERSION} instead of pip-${MODPY_VERSION}, so as to fall in line with the convention we use for other Python tools. From Seth Jackson, OK benoit@. Thanks. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 18:30:39 Modified files: lib/libedit : Makefile Log message: USE_SHLIBDIR is archaic CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/08 18:42:05 Modified files: sys/kern : subr_hibernate.c sys/sys : hibernate.h Log message: remove an unused function and some unused variables in hibernate CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/08 18:50:54 Modified files: sys/kern : subr_hibernate.c Log message: fix some data type mismatches in the zlib paths in hibernate CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/08 20:23:10 Modified files: multimedia/x265: Makefile Log message: also broken on mips64. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 20:38:56 Modified files: sbin/isakmpd : ike_quick_mode.c ipsec.c message.c sa.c ui.c Log message: obvious reallocarray() conversions CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 20:41:22 Modified files: sbin/ncheck_ffs: ncheck_ffs.c Log message: fairly obvious reallocarray() conversion, where the size is recalculated only on success. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 20:43:44 Modified files: libexec/spamd : grey.c spamd.c libexec/spamd-setup: spamd-setup.c Log message: obvious reallocarray() conversions CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 20:44:55 Modified files: usr.sbin/ldomctl: ldomctl.c Log message: indent CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 20:50:16 Modified files: lib/libc/regex : engine.c Log message: use reallocarray(NULL, a, b) instead of malloc(a, b), which gives us proper mult int overflow detection. The existing code already handles malloc failure properly, of course. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 21:02:18 Modified files: usr.bin/yacc : reader.c verbose.c Log message: use reallocarray(). Leave the malloc/realloc cases in the skeleton untouched because they have their own mult int overflow checks, and placing reallocarray there causes some incredible fireworks in other software. Discussed with millert. CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/08 21:30:41 Modified files: regress/usr.bin: Makefile Log message: unhook gzsig CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/08 21:31:34 Removed files: regress/usr.bin/gzsig: Makefile file1 file2 file3 gzsig.sh pass.ssh pass.ssh2 ssh-rsa ssh-rsa-pass ssh-rsa-pass.pub ssh-rsa.pub ssh2-dsa ssh2-dsa-pass ssh2-dsa-pass.pub ssh2-dsa.pub ssh2-rsa ssh2-rsa-pass ssh2-rsa-pass.pub ssh2-rsa.pub x509-dsa x509-dsa-pass x509-dsa-pass.pub x509-dsa.pub x509-rsa x509-rsa-pass x509-rsa-pass.pub x509-rsa.pub Log message: remove gzsig regression tests since gzsig is gone ok tedu@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:35:06 Modified files: sys/kern : syscalls.master Log message: delete LKM syscall stubs CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:36:05 Modified files: sys/kern : init_sysent.c syscalls.c sys/sys : syscall.h syscallargs.h Log message: regen CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:36:32 Modified files: sys/conf : GENERIC files Log message: remove LKM CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:39:51 Modified files: usr.bin : Makefile Log message: no more modstat CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/08 21:40:12 Modified files: . : Makefile.cross Log message: Remove the last gzsig tendril CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:40:35 Removed files: usr.bin/modstat: Makefile modstat.8 modstat.c pathnames.h Log message: remove modstat CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:42:23 Modified files: sbin : Makefile Log message: no more modules CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:43:34 Removed files: sbin/modload : Makefile elf.c modload.8 modload.c modload.h pathnames.h sbin/modunload : Makefile modunload.8 modunload.c pathnames.h Log message: no more modules CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:46:15 Modified files: share : Makefile Log message: no lkm CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:47:16 Removed files: share/lkm : Makefile README share/lkm/misc : Makefile README share/lkm/misc/module: Makefile misccall.c miscmod.c share/lkm/misc/test: Makefile testmisc.c share/lkm/syscall: Makefile README share/lkm/syscall/module: Makefile mycall.c newsyscall.c share/lkm/syscall/test: Makefile testsyscall.c Log message: remove lkms CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 21:59:59 Modified files: sys/arch/alpha/alpha: conf.c sys/arch/amd64/amd64: conf.c cpu.c sys/arch/arm/arm: conf.c sys/arch/aviion/aviion: conf.c sys/arch/hppa/hppa: conf.c sys/arch/hppa/include: vmparam.h sys/arch/hppa64/hppa64: conf.c sys/arch/hppa64/include: vmparam.h sys/arch/i386/i386: conf.c sys/arch/ia64/include: vmparam.h sys/arch/landisk/landisk: conf.c sys/arch/luna88k/luna88k: conf.c sys/arch/m88k/include: vmparam.h sys/arch/macppc/include: vmparam.h sys/arch/macppc/macppc: conf.c sys/arch/socppc/include: vmparam.h sys/arch/socppc/socppc: conf.c sys/arch/sparc/sparc: conf.c sys/arch/sparc64/include: vmparam.h sys/arch/sparc64/sparc64: conf.c sys/arch/vax/vax: conf.c Log message: remove LKM devices CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:01:27 Modified files: sys/arch/hppa/include: vmparam.h sys/arch/hppa64/include: vmparam.h sys/arch/ia64/include: vmparam.h sys/arch/m88k/include: vmparam.h sys/arch/macppc/include: vmparam.h sys/arch/socppc/include: vmparam.h sys/arch/sparc64/include: vmparam.h Log message: revert unintentional commit unrelated to LKM CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:04:27 Modified files: sys/kern : exec_conf.c sys/sys : conf.h shm.h systm.h Log message: remove LKM support CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:04:46 Modified files: sys/dev : midi.c Log message: no need for lkm CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:05:04 Removed files: sys/kern : kern_lkm.c sys/sys : lkm.h Log message: remove lkm files CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/08 22:09:25 Modified files: . : 56.html Log message: Mention more removals. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:10:03 Modified files: sys/arch/alpha/alpha: conf.c sys/arch/amd64/amd64: conf.c sys/arch/arm/arm: conf.c sys/arch/aviion/aviion: conf.c sys/arch/hppa/hppa: conf.c sys/arch/hppa64/hppa64: conf.c sys/arch/i386/i386: conf.c sys/arch/landisk/landisk: conf.c sys/arch/luna88k/luna88k: conf.c sys/arch/macppc/macppc: conf.c sys/arch/socppc/socppc: conf.c sys/arch/sparc/sparc: conf.c sys/arch/sparc64/sparc64: conf.c Log message: mechanical translation of dev_lkm_dummy() to dev_notdef() CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:10:36 Modified files: sys/sys : conf.h Log message: no need for lkm dummy CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:13:45 Modified files: sys/sys : ioctl_compat.h Log message: remove LKM lies CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:18:09 Modified files: sys/arch/amd64/amd64: locore.S machdep.c mem.c Log message: no need for lkm_map now CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:22:20 Modified files: share/man/man7 : hier.7 Log message: remove lkm CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:23:04 Modified files: share/man/man7 : securelevel.7 Log message: no modules CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:24:30 Modified files: etc/mtree : 4.4BSD.dist Log message: no lkm CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:33:51 Modified files: etc : MAKEDEV.common etc/etc.alpha : MAKEDEV.md etc/etc.amd64 : MAKEDEV.md etc/etc.armish : MAKEDEV.md etc/etc.armv7 : MAKEDEV.md etc/etc.aviion : MAKEDEV.md etc/etc.hppa : MAKEDEV.md etc/etc.hppa64 : MAKEDEV.md etc/etc.i386 : MAKEDEV.md etc/etc.landisk: MAKEDEV.md etc/etc.loongson: MAKEDEV.md etc/etc.luna88k: MAKEDEV.md etc/etc.macppc : MAKEDEV.md etc/etc.octeon : MAKEDEV.md etc/etc.sgi : MAKEDEV.md etc/etc.socppc : MAKEDEV.md etc/etc.sparc : MAKEDEV.md etc/etc.sparc64: MAKEDEV.md etc/etc.vax : MAKEDEV.md etc/etc.zaurus : MAKEDEV.md Log message: remove lkm CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:37:43 Modified files: etc/etc.alpha : MAKEDEV.md etc/etc.amd64 : MAKEDEV.md etc/etc.armish : MAKEDEV.md etc/etc.armv7 : MAKEDEV.md etc/etc.hppa : MAKEDEV.md etc/etc.hppa64 : MAKEDEV.md etc/etc.i386 : MAKEDEV.md etc/etc.landisk: MAKEDEV.md etc/etc.loongson: MAKEDEV.md etc/etc.macppc : MAKEDEV.md etc/etc.octeon : MAKEDEV.md etc/etc.sgi : MAKEDEV.md etc/etc.socppc : MAKEDEV.md etc/etc.sparc64: MAKEDEV.md etc/etc.zaurus : MAKEDEV.md Log message: delete all the cry devices too. missed by mikeb previously. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:38:02 Modified files: etc/etc.alpha : MAKEDEV etc/etc.amd64 : MAKEDEV etc/etc.armish : MAKEDEV etc/etc.armv7 : MAKEDEV etc/etc.aviion : MAKEDEV etc/etc.hppa : MAKEDEV etc/etc.hppa64 : MAKEDEV etc/etc.i386 : MAKEDEV etc/etc.landisk: MAKEDEV etc/etc.loongson: MAKEDEV etc/etc.luna88k: MAKEDEV etc/etc.macppc : MAKEDEV etc/etc.octeon : MAKEDEV etc/etc.sgi : MAKEDEV etc/etc.socppc : MAKEDEV etc/etc.sparc : MAKEDEV etc/etc.sparc64: MAKEDEV etc/etc.vax : MAKEDEV etc/etc.zaurus : MAKEDEV Log message: regen CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:40:08 Modified files: share/man/man8/man8.alpha: MAKEDEV.8 share/man/man8/man8.amd64: MAKEDEV.8 share/man/man8/man8.armish: MAKEDEV.8 share/man/man8/man8.armv7: MAKEDEV.8 share/man/man8/man8.aviion: MAKEDEV.8 share/man/man8/man8.hppa: MAKEDEV.8 share/man/man8/man8.hppa64: MAKEDEV.8 share/man/man8/man8.i386: MAKEDEV.8 share/man/man8/man8.landisk: MAKEDEV.8 share/man/man8/man8.loongson: MAKEDEV.8 share/man/man8/man8.luna88k: MAKEDEV.8 share/man/man8/man8.macppc: MAKEDEV.8 share/man/man8/man8.octeon: MAKEDEV.8 share/man/man8/man8.sgi: MAKEDEV.8 share/man/man8/man8.socppc: MAKEDEV.8 share/man/man8/man8.sparc: MAKEDEV.8 share/man/man8/man8.sparc64: MAKEDEV.8 share/man/man8/man8.vax: MAKEDEV.8 share/man/man8/man8.zaurus: MAKEDEV.8 Log message: regen CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:41:36 Modified files: share/man/man4 : Makefile options.4 Removed files: share/man/man4 : lkm.4 Log message: no more lkms CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/08 22:44:09 Modified files: share/mk : Makefile bsd.README Removed files: share/mk : bsd.lkm.mk Log message: no more lkm CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/08 23:02:19 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/09 00:20:02 Modified files: lib/libc/termios: tcsendbreak.c Log message: replace the use of select() for a short sleep with nanosleep(). ok deraadt@ guenther@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/09 00:21:32 Modified files: usr.bin/ssh : ssh.1 ssh.c ssh_config.5 Log message: tweak previous; CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/09 00:36:47 Modified files: www/rt : Makefile distinfo www/rt/pkg : PLIST Log message: update to 4.0.22 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/09 00:39:08 Removed files: x11/gnome/themes-standard/files: gtkrc Log message: No need for that. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/09 00:43:03 Modified files: x11/gtk+2 : Makefile x11/gtk+2/files: gtkrc Log message: When moving that file back to gtk+2 I forgot to remove the gnome-specific stuffs; spotted by tedu@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/09 01:14:43 Modified files: devel/dconf : Makefile devel/dconf/pkg: PLIST-main Log message: @sample ${SYSCONFDIR}/dconf/ so that pkg_check doesnt consider it as an unregistered/unknown dir. ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: matthew@cvs.openbsd.org 2014/10/09 02:21:48 Modified files: sys/conf : files sys/ddb : db_elf.c sys/lib/libsa : loadfile_elf.c Log message: ddb: add support for DWARF line number decoding This allows ddb's "trace" command to include file and line numbers: ddb{0}> trace Debugger() at Debugger+0x9 [../../../../arch/amd64/amd64/db_interface.c:405] ddb_sysctl() at ddb_sysctl+0x1b4 [../../../../ddb/db_usrreq.c:104] sys___sysctl() at sys___sysctl+0x216 [../../../../kern/kern_sysctl.c:229] syscall() at syscall+0x297 [../../../../sys/syscall_mi.h:84] --- syscall (number 202) --- end of kernel end trace frame: 0x7f7ffffcf1d7, count: -4 acpi_pdirpa+0x4117aa: For this to work, it requires using a new version of boot(8), and booting a kernel with the .debug_line section present (e.g., building with ``makeoptions DEBUG="-g"'' and then booting the bsd.gdb kernel instead of the stripped bsd kernel). Still a WIP, but no failure reports yet. Committing so further development and testing can happen in tree. prodding deraadt, guenther, mlarkin ok mpi CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/09 03:34:17 Modified files: sys/dev/pci : if_msk.c Log message: Revert "enable MSI support", it introduced a regression on some chips. Theo Buehler reported some connectivity lost with a Yukon-2 EC 88E8053 on tech@ and I could reproduce it with Yukon-2 FE 88E8036. Discussed with brad@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/09 03:44:22 Modified files: sys/arch/macppc/macppc: locore.S sys/arch/socppc/socppc: locore.S Log message: allow building a kernel without ddb ok mpi CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/09 05:29:04 Modified files: regress/sys/fifofs: fifotest.out Log message: Add POLLHUP to expected revents for POLLIN on writer EOF. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/09 06:09:32 Modified files: mail/geary : Makefile distinfo mail/geary/pkg : PLIST Log message: Update to geary 0.8.1. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/09 07:06:04 Modified files: net/xl2tpd : Makefile net/xl2tpd/pkg : README Log message: Add some notes on l2tp+ipsec. Definitely not perfect as there are some issues with fragments and stalls under high load, but it is possible to connect to npppd using l2tp+ipsec with this information. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/09 07:58:40 Modified files: sys/arch/macppc/macppc: cpu.c Log message: Properly initialize secondary CPUs on 64bit machines. Due to a bug in our Openfirmware client interface on G5, the call to OF_finddevice() in cpu_spinup() will never return if the given argument is on the stack. Use a workaround for the moment and put it in the bss. Yes, this is ugly, but it makes GENERIC.MP ``usable'' on Powermac7,2 and 7,3 and does not freeze your machine during the first boot. Issue also reported by "The Mouse" on ppc@, tested by landry@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/09 08:23:58 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Make sure _instdir is not null. issue reported by jsg@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/09 08:33:51 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Tweak, no functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/09 09:21:46 Modified files: usr.bin/mandoc : eqn.c mandoc.h Log message: parse simultaneous sub- and superscripts and make the eqn_box list doubly linked; written by kristaps@ during EuroBSDCon CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/09 09:32:22 Modified files: usr.bin/mandoc : tree.c Log message: more readable eqn(7) -Ttree output; from kristaps@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/09 09:49:09 Modified files: usr.bin/mandoc : eqn_html.c html.c html.h Log message: initial bits of MathML rendering for eqn(7) -Thtml; written by kristaps@ during EuroBSDCon CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/09 09:59:08 Modified files: usr.bin/mandoc : eqn.c eqn_html.c html.c html.h mandoc.h Log message: parse and render "from" and "to" clauses in eqn, and render matrices; written by kristaps@ during EuroBSDCon CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/09 10:36:36 Modified files: sys/miscfs/fifofs: fifo_vnops.c Log message: Instead of trying to emulate select/poll semantics with respect to EOF by mutating so_state before calling soo_poll(), call soo_poll() normally but avoid setting SS_CANTRCVMORE in the reader's so_state on first open. This fixes EOF detection in select/poll on the reader side when the write side is closed. Also set SS_ISDISCONNECTED when the writer count reaches zero so POLLHUP is set in revents. Unlike Unix domain sockets, we need to clear the EOF indicator after it has been read so that subsequent reads will block waiting for a new writer. This now passes regress. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/09 11:40:00 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/patches: patch-dodo_py patch-install_py graphics/birdfont/pkg: PLIST Log message: Update to 1.6: bugfixes and a new xml parser CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/09 12:46:44 Modified files: www/nginx : Makefile Log message: Bump. The default FLAVOR of the passenger dependency is included in @depend, even though it doesn't appear to be used. Spotted by naddy@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/09 16:04:33 Modified files: lib/libressl : ressl.h Log message: add an API version number. ok jsing CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/09 18:39:38 Modified files: lib/libc/termios: tcsendbreak.c Log message: Remove unnecessary includes now that we are no longer using select() (or struct timeval). Instead, we should include time.h for the nanosleep() prototype and struct timespec. OK dlg@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/09 18:48:58 Modified files: sys/kern : subr_pool.c Log message: massage the pool item header and pool item magic words. previously they were ints, but this bumps them to long sized words. in the pool item headers they were followed by the XSIMPLEQ entries, which are basically pointers which got long word alignment. this meant there was a 4 byte gap on 64bit architectures between the magic and list entry that wasnt being poisoned or checked. this change also uses the header magic (which is sourced from arc4random) with an xor of the item address to poison the item magic value. this is inspired by tedu's XSIMPLEQ lists, and means we'll be exercising memory with more bit patterns. lastly, this takes more care around the handling of the pool_debug flag. pool pages read it when theyre created and stash a local copy of it. from then on all items returned to the page will be poisoned based on the pages local copy of the flag. items allocated off the page will be checked for valid poisoning only if both the page and pool_debug flags are both set. this avoids a race where pool_debug was not set when an item is freed (so it wouldnt get poisoned), then gets set, then an item gets allocated and fails the poison checks because pool_debug wasnt set when it was freed. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/10/09 21:45:01 Modified files: . : plus.html Log message: plus.html for Sept 29 to Oct 5th. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/09 22:08:11 Modified files: sys/arch/powerpc/include: cpu.h Log message: Make CPU_INFO_FOREACH useable before secondary CPUs are started. ok deraadt@, mlarkin@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/09 23:43:36 Modified files: sys/arch/alpha/conf: RAMDISK RAMDISKB RAMDISKBIG RAMDISKC sys/arch/amd64/conf: RAMDISK RAMDISK_CD sys/arch/armish/conf: RAMDISK sys/arch/armv7/conf: RAMDISK-IMX RAMDISK-OMAP RAMDISK-SUNXI sys/arch/aviion/conf: RAMDISK sys/arch/hppa/conf: RAMDISK sys/arch/hppa64/conf: RAMDISK sys/arch/i386/conf: RAMDISK RAMDISKB RAMDISKC RAMDISK_CD sys/arch/landisk/conf: RAMDISK sys/arch/loongson/conf: RAMDISK sys/arch/luna88k/conf: RAMDISK sys/arch/macppc/conf: RAMDISK sys/arch/octeon/conf: RAMDISK sys/arch/sgi/conf: RAMDISK-IP22 RAMDISK-IP26 RAMDISK-IP27 RAMDISK-IP28 RAMDISK-IP30 RAMDISK-IP32 sys/arch/socppc/conf: RAMDISK sys/arch/sparc/conf: RAMDISK sys/arch/sparc64/conf: RAMDISK RAMDISKU1 RAMDISKU5 sys/arch/vax/conf: RAMDISK sys/arch/zaurus/conf: RAMDISK Log message: Significant unification of RAMDISK* config files, making them diffable. This makes it easier to remove components not required to do an install, and subsequently add other desireable components ... In snapshots (in various forks) for about a week. Do some upgrades and installs, please. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 01:27:44 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Allow passing flags without arguments for special variables. initial request and patch from Patrik Lundin simpler patch from and ok schwartze@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 01:31:45 Modified files: graphics/p5-Image-ExifTool: Makefile distinfo graphics/p5-Image-ExifTool/pkg: PLIST Log message: Update to p5-Image-ExifTool-9.70. from Patrick Keshishian (maintainer) CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2014/10/10 02:03:39 Modified files: usr.bin/rcs : rcsprog.c Log message: Explicitly handle -l and -u combinations. From Fritjof Bornebusch; ok daniel@ CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2014/10/10 02:15:25 Modified files: usr.bin/rcs : co.c diff.c merge.c rcs.c rcsmerge.c rcsparse.c rcsutil.c rlog.c Log message: Zap some stored values never read; From Fritjof Bornebusch; ok nicm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 02:38:56 Modified files: x11/gtk+2 : Makefile x11/gtk+2/files: gtkrc Log message: Only set what we need. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 02:59:25 Modified files: x11/gtk+2 : Makefile Log message: Add comment. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 03:21:43 Modified files: x11/gnome/themes-standard: Makefile x11/gnome/themes-standard/pkg: PLIST Added files: x11/gnome/themes-standard/files: gtkrc Log message: Sync themes and install as @sample so the global ones can be modified. CVSROOT: /cvs Module name: src Changes by: jmatthew@cvs.openbsd.org 2014/10/10 03:50:32 Modified files: sys/dev : vscsi.c Log message: fix compilation without DIAGNOSTIC ok dlg@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 05:44:04 Modified files: x11/gnome/terminal: Makefile Log message: Missing BUILD_DEPENDS. breakage reported by naddy@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/10 06:12:29 Modified files: devel/libguess : Makefile devel/mowgli : Makefile Log message: These changed homepage again CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 06:14:41 Modified files: net/farstream : Makefile net/farstream/pkg: PLIST Log message: Drop libtool files. Hobbits take maintenance. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 06:21:52 Modified files: net/libnice : Makefile distinfo net/libnice/pkg: PLIST Removed files: net/libnice/patches: patch-configure Log message: Update to libnice-0.1.8. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 06:44:40 Modified files: fonts/cantarell-fonts: Makefile Log message: We don't care if I'm a man. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 06:46:23 Modified files: sysutils/consolekit: Makefile Log message: Need to see a shrink... CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 06:52:54 Modified files: x11/hicolor-icon-theme: Makefile x11/gtk2mm : Makefile x11/gtk3mm : Makefile x11/gtksourceviewmm3: Makefile devel/atk2mm : Makefile devel/glib2mm : Makefile devel/pangomm : Makefile graphics/cairomm: Makefile misc/gtk3mm-documentation: Makefile Log message: Take maintainer. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 06:55:31 Modified files: devel/libidn : Makefile geo/geoclue2 : Makefile x11/gtk-vnc : Makefile Log message: Hobbits take maintainer. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/10 07:14:50 Modified files: lib/libc/net : rcmd.c Log message: replace select with equiv poll usage. looks good deraadt@ tweaks and ok millert@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/10 07:25:08 Modified files: distrib/notes/macppc: install Log message: r1.45 of macppc install.md eliminated the verbiage exhorting users to create an HFS partition with type AND name 'OpenBSD'. Worse, it added checks to make sure the partition type and name were correct. Sevan Janiyan pointed out that the example in INSTALL.macppc did not show the 'n' command required to set the name of the OpenBSD partition to 'OpenBSD'. Thus leaving HFS users possibly puzzled over partitioning prerequisites. Add required command to example. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/10 07:32:05 Log message: import ports/multimedia/motion, ok/tweak ajacoutot@ Motion is a C program that monitors the video signal from one or more V4L2/video(4) cameras or network-based webcams, and is able to detect if a significant part of the picture has changed. Or in other words, it can detect motion. Status: Vendor Tag: sthen Release Tags: sthen_20141010 N ports/multimedia/motion/Makefile N ports/multimedia/motion/distinfo N ports/multimedia/motion/patches/patch-configure_ac N ports/multimedia/motion/patches/patch-motion-dist_conf_in N ports/multimedia/motion/patches/patch-motion_c N ports/multimedia/motion/patches/patch-pwc-ioctl_h N ports/multimedia/motion/patches/patch-track_c N ports/multimedia/motion/patches/patch-video_h N ports/multimedia/motion/patches/patch-netcam_rtsp_c N ports/multimedia/motion/patches/patch-video2_c N ports/multimedia/motion/pkg/DESCR N ports/multimedia/motion/pkg/PLIST N ports/multimedia/motion/pkg/motion.rc No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/10 07:40:01 Modified files: multimedia/motion: Makefile Added files: multimedia/motion/patches: patch-version_sh Log message: let the git commitid printing work CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/10 07:59:25 Modified files: multimedia/motion: Makefile distinfo Removed files: multimedia/motion/patches: patch-version_sh Log message: better PKGNAME, properly fix git version, sse on amd64 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/10 08:26:05 Modified files: x11/p5-AnyEvent-I3: Makefile distinfo Log message: Update to AnyEvent-I3-0.16, adding support for the barconfig_update and binding event CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/10 09:12:20 Modified files: multimedia/motion: Makefile Log message: tweak build options, discussed with aja CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/10 09:25:06 Modified files: usr.bin/mandoc : eqn.c eqn_html.c html.c html.h mandoc.h tree.c Log message: Partial eqn(7) rewrite by kristaps@ in order to get operator precedence right. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 09:42:30 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Use printf(1) to prevent '-e' in daemon_flags from being fed as an argument to the built-in echo. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 09:59:36 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Actually use built-in print like rc.subr already does. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/10 10:17:27 Modified files: textproc/xerces-c: Makefile distinfo Log message: fix MASTER_SITES and regen distinfo CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/10 10:20:03 Modified files: sys/net : pf_norm.c Log message: s/lenght/length/ in comments CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 11:03:52 Modified files: x11/gtk+2 : Makefile distinfo x11/gtk+2/patches: patch-gtk_Makefile_in Removed files: x11/gtk+2/patches: patch-gdk_gdk_c patch-modules_engines_pixbuf_pixbuf-draw_c Log message: Update to gtk+2-2.24.25. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/10 11:13:10 Modified files: editors/libreoffice: Makefile distinfo editors/libreoffice/patches: patch-autogen_sh patch-desktop_source_app_app_cxx patch-libxmlsec_openbsd_patch patch-lpsolve_lp_solve-timeb_patch patch-sc_qa_unit_subsequent_filters-test_cxx patch-sc_source_core_data_column3_cxx patch-shell_Module_shell_mk patch-solenv_bin_ooinstall patch-vcl_Library_desktop_detector_mk patch-vcl_Library_vclplug_kde_mk patch-vcl_unx_generic_app_wmadaptor_cxx patch-vcl_unx_gtk_gdi_salnativewidgets-gtk_cxx patch-writerfilter_source_rtftok_rtfsprm_hxx editors/libreoffice/pkg: PFRAG.shared-main PLIST-i18n-ar PLIST-i18n-bg PLIST-i18n-ca PLIST-i18n-de PLIST-i18n-es PLIST-i18n-fa PLIST-i18n-fi PLIST-i18n-fr PLIST-i18n-hu PLIST-i18n-it PLIST-i18n-lt PLIST-i18n-lv PLIST-i18n-nl PLIST-i18n-pl PLIST-i18n-pt-br PLIST-i18n-ru PLIST-i18n-sl PLIST-i18n-sv PLIST-java PLIST-main Added files: editors/libreoffice/patches: patch-basic_source_runtime_methods_cxx patch-configure patch-connectivity_Executable_mork_helper_mk patch-dbaccess_Module_dbaccess_mk patch-extensions_Executable_nsplugin_mk patch-external_coinmp_ExternalPackage_coinmp_mk patch-external_cppunit_UnpackedTarball_cppunit_mk patch-external_cppunit_openbsd-cppunit_patch patch-external_libexttextcat_UnpackedTarball_exttextcat_mk patch-external_libexttextcat_openbsd_patch patch-external_liblangtag_ExternalProject_langtag_mk patch-external_libmwaw_ExternalPackage_libmwaw_mk patch-external_libodfgen_ExternalPackage_libodfgen_mk patch-external_liborcus_ExternalProject_liborcus_mk patch-external_liborcus_openbsd_patch patch-external_librevenge_ExternalPackage_librevenge_mk patch-external_libwps_ExternalPackage_libwps_mk patch-external_libxmlsec_src_keywrapers_c patch-external_lpsolve_UnpackedTarball_lpsolve_mk patch-filter_Executable_svg2odf_mk patch-sal_cppunittester_cppunittester_cxx patch-sc_source_core_data_types_cxx patch-sdext_Executable_pdf2xml_mk patch-shell_source_unix_exec_shellexec_cxx patch-solenv_gbuild_platform_com_GCC_defs_mk patch-svtools_Executable_langsupport_mk patch-sw_Executable_tiledrendering_mk patch-vcl_Executable_ui-previewer_mk patch-vcl_Library_vcl_mk Removed files: editors/libreoffice/patches: patch-bridges_Library_cpp_uno_mk patch-configure_ac patch-cppunit_ExternalPackage_cppunit_mk patch-cppunit_UnpackedTarball_cppunit_mk patch-extensions_Library_npsoplugin_mk patch-i18npool_source_collator_data_zh_TW_charset_txt patch-libexttextcat_UnpackedTarball_exttextcat_mk patch-liblangtag_ExternalProject_langtag_mk patch-liborcus_ExternalProject_liborcus_mk patch-liborcus_UnpackedTarball_liborcus_mk patch-libxmlsec_UnpackedTarball_xmlsec_mk patch-lpsolve_UnpackedTarball_lpsolve_mk patch-scp2_source_ooo_file_library_ooo_scp patch-sdext_source_pdfimport_test_tests_cxx Log message: update to 4.3.2.2 and use the default python3 version CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 12:18:21 Modified files: x11/gnome/maps : Makefile distinfo x11/gnome/maps/pkg: PLIST Log message: Update to gnome-maps-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/10 13:27:13 Modified files: x11/gnome/initial-setup: Makefile distinfo Log message: Update to gnome-initial-setup-3.14.1. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/10 13:58:21 Modified files: lang/jimtcl : Makefile distinfo lang/jimtcl/patches: patch-examples_ext_Makefile Added files: lang/jimtcl/patches: patch-build-jim-ext_in Log message: Update to 0.75pl2. Use GitHub. Fix build-jim-ext. CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/10/10 14:42:55 Modified files: . : events.html papers : index.html Added files: papers : xdc2014-xenocara.pdf Log message: Add my XDC2014 talk CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/10 15:07:07 Modified files: net/openvpn : Makefile distinfo net/openvpn/patches: patch-Makefile_in patch-configure patch-include_Makefile_in patch-src_openvpn_route_c patch-src_openvpn_tun_c Removed files: net/openvpn/patches: patch-src_openvpn_route_h Log message: update to openvpn-2.3.4 CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/10 18:47:07 Modified files: . : 56.html Log message: some cleanup CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 20:21:27 Modified files: lib/libc/time : strptime.c Log message: Add UTC support to %Z conversion in strptime(). Patch from jmates at ee dot washington dot edu. ok otto@, millert@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 20:29:24 Modified files: usr.sbin/ypserv/yppush: yppush.c usr.sbin/ypserv/ypserv: ypserv.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:01:58 Modified files: usr.sbin/lpr/lpd: lpd.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ (had same diff in tree) CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:02:59 Modified files: usr.bin/sort : sort.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/10 21:03:01 Modified files: . : 56.html Log message: /etc/examples, improvements to snmpd(8) and relayd(8), introduction of httpd(8), removal of gets() CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:03:45 Modified files: usr.bin/mg : autoexec.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:05:48 Modified files: usr.bin/indent : lexi.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:06:44 Modified files: usr.bin/file : magic.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:07:29 Modified files: usr.bin/awk : run.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:08:26 Modified files: sbin/disklabel : editor.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:10:06 Modified files: lib/libedit : filecomplete.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:12:13 Modified files: lib/libc/net : getprotoent.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:25:16 Modified files: libexec/spamd : sdl.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/10 21:44:02 Modified files: libexec/rpc.rstatd: rstatd.c Log message: obvious reallocarray CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/10 21:48:49 Modified files: sbin/fsirand : fsirand.c Log message: slightly more complicated reallocarray conversion. always realloc* rather than the silly test which realloc* does itself, and massage the inode sizes more carefully ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/10 21:57:13 Modified files: usr.bin/tsort : tsort.c Log message: convert to use of reallocarray() ok doug CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 21:58:11 Modified files: games/boggle/boggle: bog.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:00:56 Modified files: games/fortune/strfile: strfile.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/10 22:05:10 Modified files: lib/libc/stdio : ungetc.c Log message: use reallocarray, and avoid this << 1 ugliness. ok doug CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:06:05 Modified files: games/hunt/hunt: list.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:07:39 Modified files: lib/libevent : select.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/10 22:14:35 Modified files: lib/libc/gen : setmode.c Log message: obvious reallocarray() use ok doug CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:22:03 Modified files: lib/libc/net : getservent.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:23:12 Modified files: lib/libc/regex : regexec.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:24:06 Modified files: lib/libedit : readline.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:30:56 Modified files: usr.bin/systat : pftop.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/10 22:31:55 Modified files: usr.bin/join : join.c Log message: Userland reallocarray() audit. Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/11 02:17:53 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: how quickly ppl forget about things, right naddy@ ? CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/11 02:39:34 Modified files: x11/gtk2mm : Makefile graphics/cairomm: Makefile Log message: Add PORTROACH annotations. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/10/11 02:41:06 Modified files: usr.sbin/pkg_add: pkg_sign.1 usr.sbin/pkg_add/OpenBSD: PkgSign.pm Log message: allow signing to proceed when interrupted CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/11 02:42:46 Modified files: sysutils/salt : Makefile distinfo sysutils/salt/pkg: PLIST Removed files: sysutils/salt/patches: patch-salt_pillar___init___py Log message: Update to salt-2014.1.12. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/11 02:50:05 Modified files: print/cups-filters: Makefile distinfo Log message: Update to cups-filters-1.0.61. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/11 03:03:18 Modified files: infrastructure/lib/DPB/Core: Init.pm Log message: I had a few "doh" moments where I pointed dpb at an empty config file, and waited for it NOT to start up. So prevent that from happening, which is easy enough. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 04:42:08 Modified files: textproc/zathura/plugins/cb: Makefile textproc/zathura/plugins/cb/pkg: DESCR textproc/zathura/plugins/djvu: Makefile textproc/zathura/plugins/djvu/pkg: DESCR textproc/zathura/plugins/ps: Makefile textproc/zathura/plugins/ps/pkg: DESCR Log message: fix DESCRs for zathura/plugins/{cb,djvu,ps}; Joachim Schipper CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 05:04:20 Modified files: multimedia/motion: Makefile multimedia/motion/pkg: motion.rc Added files: multimedia/motion/patches: patch-conf_c Log message: Patch motion to support -b (background / daemon mode) overriding the "daemon" config value. Use it in motion.rc to ensure safe startup even if config has "daemon off". CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 05:46:38 Modified files: multimedia/motion/patches: patch-netcam_rtsp_c Log message: fix include ordering to pull in pthread.h, rather than explicitly including it CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 05:49:31 Removed files: multimedia/motion/patches: patch-pwc-ioctl_h Log message: header patch not needed CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 05:56:40 Modified files: multimedia/motion/patches: patch-configure_ac Log message: check for linux/videodev.h or sys/videoio.h; more upstream-friendly CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 06:03:44 Modified files: multimedia/motion/patches: patch-video2_c Log message: more upstream-friendly CVSROOT: /cvs Module name: ports Changes by: avsm@cvs.openbsd.org 2014/10/11 07:27:51 Modified files: textproc/openjade: Makefile Log message: drop MAINTAINER on openjade; bump REVISION CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/11 07:42:49 Modified files: usr.sbin/rcctl : rcctl.8 rcctl.sh Log message: Add a new "default" command to display the default flags and whether a service is enabled or disabled by default. idea from Patrik Lundin discussed with and ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 07:44:21 Modified files: devel/libmagic : Makefile distinfo devel/py-libmagic: Makefile distinfo Log message: update to libmagic 5.20 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/11 08:15:17 Modified files: graphics/birdfont: Makefile distinfo Log message: Bugfix update to 1.7 Fixes a critical spacing bug and bugs in the drawing canvas. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/11 08:40:42 Modified files: lib/libc/string: strdup.3 Log message: Since deraadt@ remembers seeing strdup() on one particular 4.2BSD machine, i looked a bit closer and found instances before Reno, so correct HISTORY. References: http://minnie.tuhs.org/cgi-bin/utree.pl?file=4.1cBSD/usr/src/ucb/dbx/defs.h http://minnie.tuhs.org/cgi-bin/utree.pl?file=4.3BSD/usr/src/etc/inetd.c http://minnie.tuhs.org/cgi-bin/utree.pl?file=4.3BSD-Reno/src/lib/libc/string/strdup.c ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/11 10:13:36 Modified files: net/xl2tpd : Makefile net/xl2tpd/pkg : README Log message: Fix typo (s/pppo0/ppp0/) - thanks stuart for that awesomely detailed README :) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/11 10:25:12 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.10.11 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/11 10:28:07 Modified files: sys/kern : init_main.c kern_sysctl.c Log message: resurrect a many year old diff. move CPU throttling into the kernel, enabled by setting hw.setperf=-1. some other bugs preventing this from going in before have been fixed. my thanks to phessler for keeping the diff alive in the mean time. tested by several to not regress. CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/11 10:44:05 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: include header needed by older linux kernels not all versions of include by default CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/11 11:12:30 Modified files: sys/kern : init_main.c kern_sysctl.c Log message: back out; does not even compile CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/11 11:55:50 Modified files: security/wpa_supplicant: Makefile distinfo security/wpa_supplicant/patches: patch-wpa_supplicant_Makefile Removed files: security/wpa_supplicant/patches: patch-src_rsn_supp_wpa_c patch-src_utils_common_c Log message: Update to wpa_supplicant-2.3 tested by myself (wired 802.1x) and pascal@ (eduroam) ok pascal@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 12:08:40 Modified files: textproc/zathura/plugins/ps: Makefile textproc/zathura/plugins/ps/pkg: DESCR Log message: additional DESCR fix; from Joachim Schipper CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/11 12:40:21 Modified files: sys/dev/ic : dp8573areg.h Log message: Comparsion -> Comparison CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/11 12:41:18 Modified files: sys/arch/sgi/hpc: dpclock.c Log message: Check for the `oscillator failure' condition, and do not register as a reliable time source in that case. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/11 13:12:19 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Fix a small bug in rcctl status : If the daemon has default flags in its rc.d(8) script but its flags are explicitly set to =" " in rc.conf.local(8), the default flags were erroneously displayed. Show " " instead. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/11 13:52:10 Modified files: lang/ruby : ruby.port.mk devel/ruby-gems: Makefile Added files: devel/ruby-gems/patches: patch-lib_rubygems_commands_install_command_rb patch-lib_rubygems_dependency_installer_rb Log message: Use a 18 suffix for ruby 1.8 gem binaries This makes them consistent with ruby 1.9+ gem binaries. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/11 13:54:48 Modified files: archivers/ruby-archive-tar-minitar: Makefile audio/ruby-sonos: Makefile databases/ruby-hiera: Makefile databases/ruby-kirbybase: Makefile databases/ruby-sequel: Makefile databases/ruby-amalgalite: Makefile databases/ruby-resque: Makefile devel/ruby-bacon: Makefile devel/ruby-cucumber: Makefile devel/ruby-diff-lcs: Makefile devel/ruby-gem_plugin: Makefile devel/ruby-gettext: Makefile devel/ruby-hoe : Makefile devel/ruby-rspec/1: Makefile devel/ruby-rspec/puppet: Makefile devel/ruby-rspec/serverspec: Makefile devel/ruby-rspec/3/core: Makefile devel/ruby-ruby2ruby: Makefile devel/ruby-ruby_parser: Makefile devel/ruby-tilt: Makefile devel/ruby-zentest: Makefile devel/ruby-mspec: Makefile devel/ruby-rake-compiler: Makefile devel/ruby-ole : Makefile devel/ruby-bundler: Makefile devel/ruby-uuid: Makefile devel/ruby-commander: Makefile devel/ruby-hub : Makefile devel/ruby-thor: Makefile net/ruby-stomp : Makefile sysutils/ruby-posix-spawn: Makefile sysutils/ruby-capistrano: Makefile sysutils/ruby-puppet-lint: Makefile sysutils/ruby-directory_watcher: Makefile textproc/ruby-haml: Makefile textproc/ruby-pdf-reader: Makefile textproc/ruby-redcloth: Makefile textproc/ruby-kramdown: Makefile textproc/ruby-treetop: Makefile textproc/ruby-maruku: Makefile textproc/ruby-rdiscount: Makefile textproc/ruby-rtex: Makefile textproc/ruby-mustache: Makefile textproc/ruby-ronn: Makefile textproc/ruby-redcarpet: Makefile textproc/ruby-rexical: Makefile textproc/ruby-yard: Makefile www/ruby-httpclient: Makefile www/ruby-passenger: Makefile www/ruby-rack : Makefile www/ruby-rest-client: Makefile www/ruby-thin : Makefile www/ruby-rainbows: Makefile www/ruby-unicorn: Makefile www/ruby-jekyll: Makefile Log message: Bump gem ports buildable with ruby 1.8 that have binaries The binaries now use a 18 suffix on ruby 1.8. CVSROOT: /cvs Module name: src Changes by: landry@cvs.openbsd.org 2014/10/11 14:06:31 Modified files: libexec/spamd : spamd.8 Log message: Fix manpage: -y only takes interface names, and doesnt take ip addresses. Fix example while here. ok back@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/11 14:23:46 Modified files: devel/llvm : Makefile Log message: take maintainer. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/11 15:11:20 Modified files: net/xl2tpd : Makefile net/xl2tpd/pkg : xl2tpd.rc Log message: don't re-create the fifo if it still exists from a previous failed startup, noted by landry CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/11 15:14:11 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c regress/usr.bin/mandoc/mdoc/Fo: Makefile Added files: regress/usr.bin/mandoc/mdoc/Fo: warn.in warn.out_ascii warn.out_lint Log message: warn about parentheses in function names after .Fn and .Fo; particularly useful when converting from other languages to mdoc(7); feature suggested by bentley@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/11 15:33:58 Modified files: usr.bin/mandoc : mdoc_validate.c Log message: oops, don't crash when .Fo has no argument CVSROOT: /cvs Module name: ports Changes by: ian@cvs.openbsd.org 2014/10/11 18:36:33 Modified files: telephony/asterisk-openbsd-moh: Makefile distinfo telephony/asterisk-openbsd-moh/pkg: PLIST Log message: 5.6 song, ok naddy@ CVSROOT: /cvs Module name: src Changes by: bentley@cvs.openbsd.org 2014/10/11 20:59:04 Modified files: share/man/man7 : mdoc.7 Log message: Clarify: SEE ALSO sections are sorted case insensitively. ok jmc@ schwarze@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 00:16:19 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Removed files: security/p11-kit/patches: patch-p11-kit_rpc-transport_c Log message: Update to p11-kit-0.22.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 00:36:20 Modified files: print/cups-bjnp: Makefile distinfo print/cups-bjnp/patches: patch-bjnp-debug_c patch-configure Added files: print/cups-bjnp/patches: patch-bjnp-io_c Log message: Update to cups-bjnp-2.0. from Julian Andrej (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 01:13:22 Modified files: net/neon : Makefile distinfo net/neon/pkg : PLIST Log message: Update to neon-0.30.1. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/12 02:55:25 Modified files: usr.sbin/inetd : pathnames.h inetd.c Log message: cut out writing a pidfile. rc.d doesnt rely on it, and nor should you. both bcook@ and schwartz@ suggested removing the pidfil unlink and path ok sthen@ schwartz@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 02:56:35 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Some services can have hardcoded default flags which is equivalent to setting empty flags; so make sure we compare our current flags with the default ones and return True when they match. CVSROOT: /cvs Module name: src Changes by: armani@cvs.openbsd.org 2014/10/12 03:27:25 Modified files: sys/dev/usb : usbdevs Log message: Add Logitech Webcam C310 ok mpi@ CVSROOT: /cvs Module name: src Changes by: armani@cvs.openbsd.org 2014/10/12 03:28:43 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: armani@cvs.openbsd.org 2014/10/12 03:30:21 Modified files: share/man/man4 : uvideo.4 Log message: Logitech Webcam C310 just works with uvideo(4), add it ok jmc@ brad@ sthen@ mpi@ CVSROOT: /cvs Module name: src Changes by: bentley@cvs.openbsd.org 2014/10/12 03:33:04 Added files: lib/libssl/src/doc/ssl: BIO_f_ssl.3 SSL_CIPHER_get_name.3 SSL_COMP_add_compression_method.3 SSL_CTX_add_extra_chain_cert.3 SSL_CTX_add_session.3 SSL_CTX_ctrl.3 SSL_CTX_flush_sessions.3 SSL_CTX_free.3 SSL_CTX_get_ex_new_index.3 SSL_CTX_get_verify_mode.3 SSL_CTX_load_verify_locations.3 SSL_CTX_new.3 SSL_CTX_sess_number.3 SSL_CTX_sess_set_cache_size.3 SSL_CTX_sess_set_get_cb.3 SSL_CTX_sessions.3 SSL_CTX_set_cert_store.3 SSL_CTX_set_cert_verify_callback.3 SSL_CTX_set_cipher_list.3 SSL_CTX_set_client_CA_list.3 SSL_CTX_set_client_cert_cb.3 SSL_CTX_set_default_passwd_cb.3 SSL_CTX_set_generate_session_id.3 SSL_CTX_set_info_callback.3 SSL_CTX_set_max_cert_list.3 SSL_CTX_set_mode.3 SSL_CTX_set_msg_callback.3 SSL_CTX_set_options.3 SSL_CTX_set_psk_client_callback.3 SSL_CTX_set_quiet_shutdown.3 SSL_CTX_set_session_cache_mode.3 SSL_CTX_set_session_id_context.3 SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3 SSL_CTX_set_tmp_dh_callback.3 SSL_CTX_set_tmp_rsa_callback.3 SSL_CTX_set_verify.3 SSL_CTX_use_certificate.3 SSL_CTX_use_psk_identity_hint.3 SSL_SESSION_free.3 SSL_SESSION_get_ex_new_index.3 SSL_SESSION_get_time.3 SSL_accept.3 SSL_alert_type_string.3 SSL_clear.3 SSL_connect.3 SSL_do_handshake.3 SSL_free.3 SSL_get_SSL_CTX.3 SSL_get_ciphers.3 SSL_get_client_CA_list.3 SSL_get_current_cipher.3 SSL_get_default_timeout.3 SSL_get_error.3 SSL_get_ex_data_X509_STORE_CTX_idx.3 SSL_get_ex_new_index.3 SSL_get_fd.3 SSL_get_peer_cert_chain.3 SSL_get_peer_certificate.3 SSL_get_psk_identity.3 SSL_get_rbio.3 SSL_get_session.3 SSL_get_verify_result.3 SSL_get_version.3 SSL_library_init.3 SSL_load_client_CA_file.3 SSL_new.3 SSL_pending.3 SSL_read.3 SSL_rstate_string.3 SSL_session_reused.3 SSL_set_bio.3 SSL_set_connect_state.3 SSL_set_fd.3 SSL_set_session.3 SSL_set_shutdown.3 SSL_set_verify_result.3 SSL_shutdown.3 SSL_state_string.3 SSL_want.3 SSL_write.3 d2i_SSL_SESSION.3 ssl.3 Removed files: lib/libssl/src/doc/ssl: BIO_f_ssl.pod SSL_CIPHER_get_name.pod SSL_COMP_add_compression_method.pod SSL_CTX_add_extra_chain_cert.pod SSL_CTX_add_session.pod SSL_CTX_ctrl.pod SSL_CTX_flush_sessions.pod SSL_CTX_free.pod SSL_CTX_get_ex_new_index.pod SSL_CTX_get_verify_mode.pod SSL_CTX_load_verify_locations.pod SSL_CTX_new.pod SSL_CTX_sess_number.pod SSL_CTX_sess_set_cache_size.pod SSL_CTX_sess_set_get_cb.pod SSL_CTX_sessions.pod SSL_CTX_set_cert_store.pod SSL_CTX_set_cert_verify_callback.pod SSL_CTX_set_cipher_list.pod SSL_CTX_set_client_CA_list.pod SSL_CTX_set_client_cert_cb.pod SSL_CTX_set_default_passwd_cb.pod SSL_CTX_set_generate_session_id.pod SSL_CTX_set_info_callback.pod SSL_CTX_set_max_cert_list.pod SSL_CTX_set_mode.pod SSL_CTX_set_msg_callback.pod SSL_CTX_set_options.pod SSL_CTX_set_psk_client_callback.pod SSL_CTX_set_quiet_shutdown.pod SSL_CTX_set_session_cache_mode.pod SSL_CTX_set_session_id_context.pod SSL_CTX_set_ssl_version.pod SSL_CTX_set_timeout.pod SSL_CTX_set_tmp_dh_callback.pod SSL_CTX_set_tmp_rsa_callback.pod SSL_CTX_set_verify.pod SSL_CTX_use_certificate.pod SSL_CTX_use_psk_identity_hint.pod SSL_SESSION_free.pod SSL_SESSION_get_ex_new_index.pod SSL_SESSION_get_time.pod SSL_accept.pod SSL_alert_type_string.pod SSL_clear.pod SSL_connect.pod SSL_do_handshake.pod SSL_free.pod SSL_get_SSL_CTX.pod SSL_get_ciphers.pod SSL_get_client_CA_list.pod SSL_get_current_cipher.pod SSL_get_default_timeout.pod SSL_get_error.pod SSL_get_ex_data_X509_STORE_CTX_idx.pod SSL_get_ex_new_index.pod SSL_get_fd.pod SSL_get_peer_cert_chain.pod SSL_get_peer_certificate.pod SSL_get_psk_identity.pod SSL_get_rbio.pod SSL_get_session.pod SSL_get_verify_result.pod SSL_get_version.pod SSL_library_init.pod SSL_load_client_CA_file.pod SSL_new.pod SSL_pending.pod SSL_read.pod SSL_rstate_string.pod SSL_session_reused.pod SSL_set_bio.pod SSL_set_connect_state.pod SSL_set_fd.pod SSL_set_session.pod SSL_set_shutdown.pod SSL_set_verify_result.pod SSL_shutdown.pod SSL_state_string.pod SSL_want.pod SSL_write.pod d2i_SSL_SESSION.pod ssl.pod Log message: Convert libssl manpages from pod to mdoc(7). libcrypto has not been started yet. ok schwarze@ miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/12 03:36:42 Modified files: usr.sbin/inetd : inetd.c Log message: ansi function declarations. ok gcc+sha256 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 03:52:01 Modified files: x11/gnome/power-manager: Makefile distinfo Log message: Update to gnome-power-manager-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 03:54:17 Modified files: x11/gnome/color-manager: Makefile distinfo x11/gnome/color-manager/pkg: PLIST Log message: Update to gnome-color-manager-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 04:20:49 Modified files: japanese/gwaei : Makefile Log message: Regen WANTLIB. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 05:37:39 Modified files: x11/gnome/dictionary: Makefile distinfo Log message: Update to gnome-dictionary-3.14.1. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/12 05:49:38 Modified files: usr.sbin/smtpd : smtp.c Log message: local host is not "localhost", local host is env->sc_hostname CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/12 05:57:19 Modified files: share/man/man7 : eqn.7 Log message: document the semantics of operation keywords and some other minor improvements CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/10/12 07:08:47 Modified files: usr.sbin/relayd: agentx.c usr.sbin/snmpd : agentx.c Log message: Remove possibility of mutiplicative integer overflow by not multiplying. Instead of the widespread-but-overflow-prone while (newlen < wanted) { newlen *= 2; } idiom, just realloc() for the space requested by the caller and check for additive overflow. Also change type of 'newlen' variable from int to size_t to avoid overflows there. Pointed out by deraadt@ ok reyk@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/12 07:26:16 Modified files: emulators/gxemul: Makefile distinfo emulators/gxemul/patches: patch-configure emulators/gxemul/pkg: PLIST Log message: Bugfix update to 0.6.0.1 and take maintainer. ok landry@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/12 07:49:56 Modified files: www/vimb : Makefile distinfo www/vimb/patches: patch-src_setting_c Log message: Update to 2.8 Changelog: http://sourceforge.net/p/vimb/vimb/message/32921360/ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/12 08:11:09 Removed files: sys/arch/alpha/pci: apecs_lca_bus_io.c apecs_lca_bus_mem.c sys/arch/vax/if: if_uba.c sys/dev/ic : isp_target.c sys/dev/tc : if_le.c Log message: remove some unused files ok miod@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/12 08:20:15 Modified files: share/man/man4 : uvideo.4 Log message: double word; CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/12 08:48:25 Modified files: usr.bin/mandoc : eqn_term.c Log message: major upgrade to eqn(7) terminal output; column vectors ("piles") and matrices are not yet pretty, but everything else is now more or less readable CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/12 09:22:47 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm sysutils : Makefile Removed files: sysutils/dellflash: Makefile distinfo sysutils/dellflash/pkg: DESCR MESSAGE PLIST Log message: delete sysutils/dellflash; unsalvageable after the lkm(4) removal ok sthen@, jung@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/12 09:57:00 Modified files: sbin/iked : dh.c sbin/isakmpd : dh.c Log message: DH_compute_key() returns -1 on error but this was not handled by testing the result with a negation. Ralf Horstmann discovered iked would segfault when connecting from Strongswan on Android because of this and supplied the patch to fix the problem. ok reyk@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 10:08:02 Modified files: www/webkitgtk4 : Makefile Log message: Unbreak runtime. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 10:11:52 Modified files: x11/gnome/devhelp: Makefile Log message: webkitgtk4 is functionnal now. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/12 10:19:30 Added files: usr.sbin/smtpd : rfc2822.c rfc2822.h Log message: simple message parser to be used in smtp incoming sessions, not plugged yet CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/12 11:43:31 Modified files: editors/libreoffice: Makefile distinfo Log message: use the system harfbuzz library and fix dependencies CVSROOT: /cvs Module name: src Changes by: lum@cvs.openbsd.org 2014/10/12 12:09:41 Modified files: usr.bin/mg : paragraph.c Log message: Fix a bug in backward-paragraph. If the cursor is on the first line of a paragraph, it jumps to the start of the previous paragraph if you press M-{. Input and fix to my diff from florian@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 12:51:23 Modified files: sys/dev/isa : files.isapnp Log message: Remove unnecessary `needs-flag' attributes. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/12 12:54:31 Added files: usr.sbin/smtpd : rfc822.c rfc822.h Log message: to rewrite domain on incoming mails, we need to be able to extract rfc822 addresses from some headers and parse them into a structure that we can easily manipulate. this implementation will parse addresses in the following formats: user, user , "user" , "user name" CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/12 12:58:57 Modified files: usr.sbin/smtpd : rfc822.c Log message: do not allow header to termine with pending flags CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/12 13:10:56 Modified files: usr.bin/mandoc : eqn.c eqn_html.c mandoc.h read.c Log message: Improve error handling in the eqn(7) parser. Get rid of the first fatal error, MANDOCERR_EQNSYNT. In eqn(7), there is no need to be bug-compatible with groff, so there is no need to abondon the whole equation in case of a syntax error. In particular: * Skip "back", "delim", "down", "fwd", "gfont", "gsize", "left", "right", "size", and "up" without arguments. * Skip "gsize" and "size" with a non-numeric argument. * Skip closing delimiters that are not open. * Skip "above" outside piles. * For diacritic marks and binary operators without a left operand, default to an empty box. * Let piles and matrices take one argument rather than insisting on a braced list. Let HTML output handle that, too. * When rewinding, if the root box is guaranteed to match the termination condition, no error handling is needed. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 13:21:41 Modified files: sys/arch/sparc/conf: files.sparc Log message: Downgrade needs-count to needs-flag when applicable. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 13:33:32 Modified files: sys/conf : files sys/dev/isa : files.isa Log message: Remove unnecessary `needs-flag' attributes. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 13:40:22 Modified files: sys/dev/i2c : fintek.c Log message: Do not compile sensor code if option SMALL_KERNEL CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/12 14:08:43 Modified files: usr.bin/mandoc : eqn.c Log message: bugfix: do not parse quoted strings for tokens; fixes glFrustum(3) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/12 14:10:17 Modified files: net/isc-dhcp : Makefile net/isc-dhcp/pkg: PLIST-main Added files: net/isc-dhcp/pkg: isc_dhcpd.rc isc_dhcrelay.rc Log message: - drop jakob@ as maintainer of isc-dhcp (ok with him) - add rc scripts - don't use groff, there are only whitespace/header changes - no information loss and formatting looks ok CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/12 14:10:52 Modified files: infrastructure/db: user.list Log message: uid/gid 744 for isc-dhcp CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/12 14:32:16 Modified files: usr.bin/mandoc : mandocdb.c Log message: add missing entry for .ll to the dispatch table; patch from Martin , thanks CVSROOT: /cvs Module name: devel Changes by: juanfra@cvs.openbsd.org 2014/10/12 14:38:35 Log message: Comment: python package to check certificates using the OpenBSD CA Description: This Python package was supposed to contain a CA Bundle derived from Mozilla Firefox's canonical set. It was modified to point to OpenBSD's built-in cert.pem file. Maintainer: Dmitrij D. Czarkoff WWW: http://python-requests.org From MAINTAINER. Minor fixes from landry@ and me. ok landry@. Status: Vendor Tag: juanfra Release Tags: juanfra_2014-10-12 N devel/py-certifi/Makefile cvs: ERROR: cannot write file /cvs/devel/py-certifi/Makefile,v: No such file or directory N devel/py-certifi/distinfo cvs: ERROR: cannot write file /cvs/devel/py-certifi/distinfo,v: No such file or directory cvs: ERROR: cannot mkdir /cvs/devel/py-certifi/patches -- not added: No such file or directory cvs: ERROR: cannot mkdir /cvs/devel/py-certifi/pkg -- not added: No such file or directory No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 14:39:46 Modified files: sys/arch/hppa64/conf: RAMDISK sys/arch/hppa64/hppa64: autoconf.c machdep.c mutex.c pmap.c trap.c sys/arch/hppa64/include: atomic.h mutex.h Log message: Rough sync with hppa to make this compile again. CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/10/12 14:40:39 Log message: Comment: python package to check certificates using the OpenBSD CA Description: This Python package was supposed to contain a CA Bundle derived from Mozilla Firefox's canonical set. It was modified to point to OpenBSD's built-in cert.pem file. Maintainer: Dmitrij D. Czarkoff WWW: http://python-requests.org From MAINTAINER. Minor fixes by landry@ and me. ok landry@. Status: Vendor Tag: juanfra Release Tags: juanfra_2014-10-12 N ports/devel/py-certifi/Makefile N ports/devel/py-certifi/distinfo N ports/devel/py-certifi/patches/patch-certifi_core_py N ports/devel/py-certifi/patches/patch-setup_py N ports/devel/py-certifi/pkg/DESCR N ports/devel/py-certifi/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 14:45:12 Modified files: gnu/usr.bin/gcc/gcc: toplev.c Log message: Recognize, and ignore, -fstack-shuffle, in gcc 3, so that it may be used in the tree. CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/10/12 14:45:56 Log message: Comment: high performance, concurrent HTTP client library Description: geventhttpclient has been specifically designed for high concurrency, streaming and support HTTP 1.1 persistent connections. More generally it is designed for efficiently pulling from REST APIs and streaming API's like Twitter's. geventhttpclient use a fast http parser, written in C, originating from nginx, extracted and modified by Joyent. Safe SSL support is provided by default. Maintainer: Dmitrij D. Czarkoff WWW: https://github.com/gwik/geventhttpclient From MAINTAINER. Minor fixes by landry@ and me. ok landry@. Status: Vendor Tag: juanfra Release Tags: juanfra_2014-10-12 N ports/net/py-geventhttpclient/Makefile N ports/net/py-geventhttpclient/distinfo N ports/net/py-geventhttpclient/patches/patch-MANIFEST_in N ports/net/py-geventhttpclient/pkg/DESCR N ports/net/py-geventhttpclient/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 14:47:12 Modified files: lib/libssl/src/crypto/asn1: a_mbstr.c Log message: Paranoia: in ASN1_mbstring_ncopy(), check for len < 0 instead of len == -1, in order to catch all negative sizes. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 14:48:58 Modified files: lib/libssl/src/crypto/des: set_key.c Log message: Remove useless comments in DES_is_weak_key(). Do we really care that this function was found broken in 1993, and later on in 1997? CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/10/12 14:49:22 Modified files: devel : Makefile Log message: +devel/py-certifi CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/10/12 14:51:59 Modified files: net : Makefile Log message: +net/py-geventhttpclient CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/10/12 14:57:06 Modified files: devel/py-dulwich: Makefile distinfo devel/py-dulwich/pkg: PLIST Log message: Update to dulwich 0.9.7. From MAINTAINER. Tweaks by me. CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/10/12 15:00:13 Modified files: devel/py-hg-git: Makefile distinfo devel/py-hg-git/pkg: DESCR PLIST Log message: Update to hg-git 0.6.1. From MAINTAINER. Tweaks by me. CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/10/12 15:52:27 Modified files: usr.bin/sndiod : dsp.c dsp.h Log message: Don't assume that right-shift sign-extends integers. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/12 16:32:27 Log message: Import editors/ne ok juanfra@ ne is a free (GPL'd) text editor based on the POSIX standard that runs on almost any UN*X machine. ne is easy to use for the beginner, but powerful and fully configurable for the wizard, and most sparing in its resource usage. Features: * multiple user interfaces * syntax highlighting * full UTF-8 support * simple scripting language * binary file editor Status: Vendor Tag: bcallah Release Tags: bcallah_20141012 N ports/editors/ne/Makefile N ports/editors/ne/distinfo N ports/editors/ne/patches/patch-src_makefile N ports/editors/ne/patches/patch-src_regex_internal_h N ports/editors/ne/pkg/DESCR N ports/editors/ne/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/12 16:33:08 Modified files: editors : Makefile Log message: +ne CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/12 17:08:48 Modified files: devel/py-certifi: Makefile devel/py-certifi/patches: patch-certifi_core_py Log message: Drop bogus usage of SYSCONFDIR. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/12 18:12:51 Modified files: sys/kern : subr_pool.c Log message: take the pool_item pi_magic touching out from under #ifdef DIAGNOSTIC. i couldnt measure a significant performance difference with or without it. this is likely a function of the memory involved being close to bits that are already being touched, the implemention being simple macros that mean registers can stay hot, and a lack of conditionals that would cause a cpu pipeline to crash. this means we're unconditionally poisoning the first two u_longs of pool items on all kernels. i think it also makes the code easier to read. discussed with deraadt@ CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/12 18:38:35 Modified files: usr.bin/ssh : servconf.c Log message: whitespace CVSROOT: /cvs Module name: ports Changes by: yasuoka@cvs.openbsd.org 2014/10/12 18:42:54 ports/textproc/py-sphinx-intl Update of /cvs/ports/textproc/py-sphinx-intl In directory cvs.openbsd.org:/tmp/cvs-serv16620/textproc/py-sphinx-intl Log Message: Directory /cvs/ports/textproc/py-sphinx-intl added to the repository CVSROOT: /cvs Module name: ports Changes by: yasuoka@cvs.openbsd.org 2014/10/12 18:43:05 ports/textproc/py-sphinx-intl/pkg Update of /cvs/ports/textproc/py-sphinx-intl/pkg In directory cvs.openbsd.org:/tmp/cvs-serv1375/textproc/py-sphinx-intl/pkg Log Message: Directory /cvs/ports/textproc/py-sphinx-intl/pkg added to the repository CVSROOT: /cvs Module name: ports Changes by: yasuoka@cvs.openbsd.org 2014/10/12 18:47:30 Added files: textproc/py-sphinx-intl: Makefile distinfo textproc/py-sphinx-intl/pkg: DESCR PLIST Log message: import py-sphinx-intl-1.1.3 "sphinx-intl" is a helper program that helps internationalization work of Sphinx. ok landry CVSROOT: /cvs Module name: ports Changes by: yasuoka@cvs.openbsd.org 2014/10/12 18:53:32 Modified files: textproc : Makefile Log message: +py-sphinx-intl CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/12 19:53:14 Modified files: usr.sbin/inetd : inetd.c Log message: dont need to store the same debug flag in two separate variables. ok millert@ deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/12 19:56:44 Modified files: usr.sbin/inetd : inetd.8 Log message: jmc@ told me i broke the documentation. inetd doesnt write a pidfile so we shouldnt say it does. CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/12 20:39:09 Modified files: lib/libssl/src/crypto/bio: b_sock.c usr.bin/openssl: s_client.c s_server.c Log message: Use O_NONBLOCK over FIONBIO. Prefer this because it is the POSIX standard and has consistent behavior across platforms. Use BIO_socket_nbio consistently across the tree. from Jonas 'Sortie' Termansen, ok deraadt@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/12 20:46:14 Modified files: usr.bin/openssl: crl.c ecparam.c prime.c rand.c version.c Log message: prefer C99 array initialization syntax. use C99 array initialization syntax for strict C compilers. from kinichiro, found building with HP/UX compiler ok deraadt@, guenther@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/12 20:49:53 Modified files: lib/libssl/src/crypto/bio: b_sock.c Log message: The return value on success of fcntl(F_SETFL) is not actually specified, only that it returns -1 on failure. pointed out by guenther@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/12 21:21:18 Modified files: sys/kern : sys_generic.c Log message: use mallocarray to get the array of pollfd structs. tweaks and ok millert@ deraadt@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/12 21:40:42 Modified files: sys/ufs/ufs : ufs_quota.c Log message: Calling quotactl(QCMD(Q_QUOTAON)) twice with the same filesystem, type, and path shouldn't leak vnode or ucred references. ok millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/12 21:46:33 Modified files: sys/sys : ktrace.h sys/ufs/ufs : ufs_quota.c usr.bin/kdump : kdump.c kdump_subr.h ktrstruct.c mksubr Log message: Add dumping of struct dqblk done by quotactl(2) ok millert@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/12 22:47:22 Modified files: sys/arch/sh/sh : trap.c Log message: Let this compile without option DDB. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/13 00:49:19 Modified files: www/chromium : Makefile distinfo www/chromium/patches: patch-base_base_gypi patch-base_debug_stack_trace_posix_cc patch-base_strings_safe_sprintf_cc patch-breakpad_breakpad_gyp patch-build_all_gyp 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_theme_theme_resources_grd patch-chrome_browser_about_flags_cc patch-chrome_browser_browser_resources_grd patch-chrome_browser_chrome_content_browser_client_cc patch-chrome_browser_chrome_content_browser_client_h patch-chrome_browser_custom_handlers_protocol_handler_registry_cc patch-chrome_browser_media_galleries_media_file_system_registry_cc patch-chrome_browser_memory_details_cc patch-chrome_browser_renderer_preferences_util_cc patch-chrome_browser_sync_profile_sync_components_factory_impl_cc patch-chrome_browser_ui_browser_command_controller_cc patch-chrome_browser_ui_fullscreen_fullscreen_exit_bubble_cc patch-chrome_browser_ui_startup_bad_flags_prompt_cc patch-chrome_browser_ui_startup_startup_browser_creator_cc patch-chrome_browser_ui_toolbar_wrench_menu_model_cc patch-chrome_browser_ui_views_apps_chrome_native_app_window_views_cc patch-chrome_browser_ui_views_chrome_views_delegate_cc patch-chrome_browser_ui_views_chrome_views_delegate_h patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc patch-chrome_browser_ui_views_tabs_tab_strip_cc patch-chrome_browser_ui_webui_about_ui_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_exe_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_api_gyp patch-chrome_common_pref_names_cc patch-chrome_common_pref_names_h patch-chrome_renderer_printing_print_web_view_helper_h patch-components_policy_resources_policy_templates_json patch-components_policy_tools_generate_policy_source_py patch-components_storage_monitor_gypi patch-content_app_content_main_runner_cc patch-content_browser_browser_main_loop_cc patch-content_browser_geolocation_location_arbitrator_impl_cc patch-content_browser_gpu_gpu_data_manager_impl_private_cc patch-content_browser_renderer_host_render_widget_host_view_aura_cc patch-content_content_browser_gypi patch-content_content_common_gypi patch-content_renderer_renderer_webkitplatformsupport_impl_cc patch-device_serial_serial_gyp patch-gpu_gpu_config_gypi patch-media_media_gyp patch-net_base_net_util_cc patch-net_net_gypi patch-pdf_pdf_gyp patch-printing_backend_cups_helper_cc patch-printing_printing_gyp patch-remoting_remoting_host_gypi patch-skia_skia_chrome_gypi patch-skia_skia_common_gypi patch-skia_skia_gyp 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_web_web_gyp patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h patch-third_party_libjingle_libjingle_gyp patch-third_party_libjpeg_turbo_libjpeg_gyp patch-third_party_pdfium_build_standalone_gypi patch-third_party_pdfium_fpdfsdk_src_javascript_PublicMethods_cpp patch-third_party_webrtc_base_stringutils_h patch-tools_gyp_pylib_gyp_generator_make_py patch-tools_gyp_pylib_gyp_generator_ninja_py patch-ui_app_list_app_list_constants_cc patch-ui_app_list_app_list_constants_h patch-ui_app_list_views_app_list_item_view_cc patch-ui_app_list_views_app_list_view_cc patch-ui_base_resource_resource_bundle_cc patch-ui_base_ui_base_gyp patch-ui_events_event_switches_cc patch-ui_events_event_switches_h patch-ui_gl_gl_gyp patch-ui_message_center_message_center_style_h patch-ui_message_center_views_message_center_button_bar_cc patch-ui_message_center_views_message_center_view_cc patch-ui_message_center_views_notification_view_cc patch-ui_shell_dialogs_select_file_dialog_cc patch-ui_views_bubble_bubble_delegate_cc patch-ui_views_controls_button_label_button_cc patch-ui_views_controls_textfield_textfield_cc patch-ui_views_views_gyp patch-ui_views_window_dialog_delegate_cc www/chromium/pkg: PLIST Added files: www/chromium/patches: patch-base_process_launch_h patch-chrome_browser_speech_tts_controller_impl_cc patch-chrome_browser_ssl_ssl_blocking_page_cc patch-content_browser_tracing_tracing_ui_cc patch-content_public_common_content_switches_cc patch-content_public_common_content_switches_h patch-device_serial_serial_io_handler_posix_cc patch-extensions_browser_api_serial_serial_api_cc patch-native_client_build_compiler_version_py patch-third_party_WebKit_Source_wtf_MathExtras_h patch-third_party_webrtc_system_wrappers_source_atomic32_posix_cc patch-ui_events_x_keysym_to_unicode_cc patch-ui_events_x_keysym_to_unicode_h patch-v8_src_base_macros_h patch-v8_src_base_platform_platform-posix_cc Removed files: www/chromium/patches: patch-chrome_browser_browser_process_impl_cc patch-chrome_browser_extensions_api_serial_serial_api_cc patch-chrome_browser_extensions_api_serial_serial_connection_posix_cc patch-chrome_browser_speech_tts_controller_cc patch-chrome_browser_ui_views_toolbar_toolbar_view_cc patch-skia_ext_convolver_h patch-third_party_WebKit_Source_config_h patch-third_party_WebKit_Source_web_linux_WebFontRendering_cpp patch-third_party_libjingle_source_talk_base_cpumonitor_cc patch-third_party_libjingle_source_talk_base_linux_cc patch-third_party_libjingle_source_talk_base_linux_h patch-third_party_libjingle_source_talk_base_physicalsocketserver_cc patch-third_party_libjingle_source_talk_base_systeminfo_cc patch-third_party_pdfium_pdfium_gyp patch-ui_gfx_font_render_params_linux_cc patch-ui_strings_app_locale_settings_grd patch-v8_src_globals_h Log message: update to 38.0.2125.101 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 01:19:42 Modified files: graphics/colord: Makefile distinfo graphics/colord/patches: patch-configure Log message: Update to colord-1.2.4. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/13 01:32:11 Modified files: security/wpa_supplicant/patches: patch-wpa_supplicant_Makefile Log message: Use the patch from upstream (git commit 2d4e9c2eb811978a4097b7d249eca3c7e9c510e5) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/13 01:39:06 Modified files: sysutils/ruby-facter: Makefile sysutils/ruby-facter/pkg: PLIST Log message: @sample ${SYSCONFDIR}/facter/ to properly register the dir. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 02:54:59 Modified files: databases/evolution-data-server: Makefile distinfo databases/evolution-data-server/pkg: PLIST Log message: Update to evolution-data-server-3.12.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 02:55:28 Modified files: mail/evolution : Makefile distinfo mail/evolution/pkg: PLIST Log message: Update to evolution-3.12.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 02:55:50 Modified files: mail/evolution-ews: Makefile distinfo mail/evolution-ews/pkg: PLIST Log message: Update to evolution-ews-3.12.7. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/13 03:00:48 Modified files: x11/awesome : Makefile Added files: x11/awesome/patches: patch-lib_wibox_layout_base_lua_in patch-objects_drawin_c Log message: Sync with '3.5' maintenance branch: drawin: Don't special-case moves (upstream git commit 6673ecb167c5a5d85c8bacab15c1b6c0c7f65e80) drawin_update_drawing: Remove optimization for invisible drawins (upstream git commit f236a5f0c70015c0c2b3a57a8aec9dcc5dc49bdc) wibox.layout.base.rect_to_device_geometry: Fix for "weird" rotations (upstream git commit 983d094c76c5ddb6fe7deeec2f977a981c057a8a) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/13 03:13:31 Modified files: devel/libev : Makefile distinfo devel/libev/patches: patch-Makefile_in patch-configure Removed files: devel/libev/patches: patch-ev_c Log message: Bugfixing update to libev-4.19 Thanks sthen@ for the ag search results CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 03:17:55 Modified files: multimedia/gstreamer-0.10/plugins-bad: Makefile multimedia/gstreamer-0.10/plugins-bad/patches: patch-configure_ac Log message: Unbreak with new neon. reported by nigel@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/13 03:27:22 Modified files: bin/kill : kill.1 Log message: jmc@ found another manpage i broke when i touched inetd. use kill -HUP 1 as an example of a hangup signal that does something useful and non-contrived. ok jmc@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/10/13 03:29:20 Modified files: www/netsurf/browser: Makefile distinfo www/netsurf/browser/patches: patch-Makefile patch-gtk_res_options_gtk2_ui www/netsurf/browser/pkg: PLIST www/netsurf/buildsystem: Makefile distinfo www/netsurf/libcss: Makefile distinfo www/netsurf/libcss/pkg: PLIST www/netsurf/libdom: Makefile distinfo www/netsurf/libdom/pkg: PLIST Added files: www/netsurf/browser/patches: patch-content_fetchers_curl_c www/netsurf/hubbub/patches: patch-Makefile Log message: Update to netsurf-3.2 (and associated libraries). While here, fix regression tests in hubbub (broken since json-c update). ok landry@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/13 03:39:34 Modified files: security/nss : Makefile distinfo Log message: Update to nss 3.17.2, will be required by gecko 35 anyway (see #1075686).. See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.17_release_notes https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.17.1_release_notes https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.17.2_release_notes For the changes (note that 3.16.2.1 had the same fixes as 3.17.1) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 03:41:22 Modified files: mail/evolution-rss: Makefile www/epiphany : Makefile www/midori : Makefile x11/gnome/empathy: Makefile x11/gnome/seahorse-nautilus: Makefile Log message: Regen WANTLIB; libgcr-3 is not used anymore and will go shortly. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/13 05:02:33 Modified files: mail/zarafa/zarafa: Makefile Log message: update to the latest and fixed distfile CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/13 05:06:01 Modified files: mail/zarafa : Makefile.inc Log message: missed from previous commit CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/10/13 05:22:58 Modified files: games/openttd : Makefile distinfo Log message: Update to openttd-1.4.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 05:51:58 Modified files: x11/gnome/gcr : Makefile x11/gnome/gcr/pkg: PLIST Log message: Drop libgcr-3.so.${LIBgcr-ui-3_VERSION} symlink; nothing uses it anymore. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 05:57:31 Modified files: x11/gnome/gvfs : Makefile distinfo Log message: Update to gvfs-1.22.1. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/13 06:05:04 Modified files: usr.sbin/bind/lib/dns: openssldh_link.c Log message: Return failure not success in openssldh_computesecret() when DH_compute_key() fails and returns -1. ok guenther@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 06:27:30 Modified files: inputmethods/libskk: Makefile distinfo inputmethods/libskk/pkg: PLIST Log message: Update to libskk-1.0.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 06:32:12 Modified files: inputmethods/ibus-skk: Makefile distinfo inputmethods/ibus-skk/patches: patch-src_preferences_vala inputmethods/ibus-skk/pkg: PLIST Log message: Update to ibus-skk-1.4.2. ok fgsch@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 06:33:08 Removed files: devel/libgee06 : Makefile distinfo devel/libgee06/pkg: DESCR PLIST Log message: Drop libgee06; nothing else uses it anymore and new stuff should use libgee. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 06:33:29 Modified files: devel : Makefile Log message: -libgee06 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 06:34:42 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Register libgee06 removal. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/10/13 06:44:16 Modified files: usr.sbin/pkg_add/OpenBSD: PackingElement.pm PackingList.pm Log message: scaffolding for future new features, committed early, so that pkg_sign will grok it when it happens CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/13 07:22:03 Modified files: faq : current.html Log message: lkm removal, from Theo Buehler CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/10/13 07:39:14 Modified files: devel/p5-ExtUtils-CChecker: Makefile distinfo Log message: update to ExtUtils::CChecker 0.09 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/13 07:42:39 Modified files: regress/lib/libssl/ssl: ssltest.c testssl Log message: Add NPN regress tests from OpenSSL. However, unlike OpenSSL, actually exit with a failure if the NPN verification fails. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/13 07:47:31 Modified files: regress/lib/libssl/ssl: ssltest.c Log message: BIO_free() and SSL_CTX_free() have explicit NULL checks, so there is no need to have additional checks here. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/13 07:50:28 Modified files: regress/lib/libssl/ssl: ssltest.c Log message: Remove _XOPEN_SOURCE_EXTENDED since we're not too concerned about gethostname being declared properly on Compaq platforms that use DEC C... CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/13 08:00:10 Modified files: faq : current.html Log message: more lkm files, some from jmc, some from examing sets diff CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 08:01:03 Modified files: usr.bin/mandoc : mdoc_validate.c Log message: Do not warn about declarations of functions returning function pointers, getting rid of a false positive noticed by bentley@. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 08:12:57 Modified files: usr.sbin/rcctl : rcctl.8 Log message: document the "default" subcommand more precisely; joint work with and OK by ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/13 08:20:28 Modified files: www/chromium : Makefile Added files: www/chromium/patches: patch-content_shell_browser_shell_browser_main_parts_cc Log message: add missing Aura patch CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 08:31:01 Modified files: share/mk : bsd.README Log message: Fix an internal inconsistency: Saying "these eight targets" and then only listing seven is not cool. This was broken in rev1.47 when removing lint. Patch from Theo Buehler . CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 08:38:10 Modified files: x11/gnome/music: Makefile distinfo Log message: Update to gnome-music-3.14.1. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/13 09:04:11 Modified files: textproc/the_silver_searcher: Makefile distinfo Log message: Update to 0.25.0 ok Florian Stinglmayr (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 09:19:49 Modified files: net/arp-scan : Makefile distinfo net/arpwatch : Makefile distinfo Log message: update oui-iab listing CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/13 09:23:34 Modified files: sys/kern : vfs_syscalls.c Log message: POSIX says that mknod(2) should support fifos. OK guenther@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 09:33:53 Modified files: x11/gnome/maps : Makefile distinfo x11/gnome/maps/pkg: PLIST Log message: Update to gnome-maps-3.14.1.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 10:02:00 Modified files: x11/gnome/backgrounds: Makefile distinfo Log message: Update to gnome-backgrounds-3.14.1. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 10:56:28 Modified files: net/lldpd : Makefile distinfo net/lldpd/pkg : PLIST Log message: update to lldpd 0.7.11 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 10:58:02 Modified files: x11/gtk+3 : Makefile distinfo x11/gtk+3/patches: patch-gtk_Makefile_in Log message: Update to gtk+3-3.14.3. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 11:16:25 Modified files: usr.bin/mandoc : mandoc.c regress/usr.bin/mandoc/char/unicode: man.in man.out_utf8 mdoc.in mdoc.out_utf8 Log message: Stricter syntax checking of Unicode character names: Require exactly 4, 5 or 6 hex digits and allow nothing else. This avoids mishandling stuff like \[ua] and \C'uA' as Unicode and also fixes underlining in eqn(7) -Thtml output which uses \[ul]. Problem found and semantics suggested by kristaps@. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/13 11:20:45 Modified files: x11/gnome/weather: Makefile distinfo x11/gnome/weather/pkg: PLIST Log message: Update to gnome-weather-3.14.1. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/13 11:27:00 Modified files: share/man/man3 : Makefile Added files: share/man/man3 : makedev.3 Log message: Add a simple man page for the makedev, major and minor macros. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 11:30:22 Modified files: bin/ps : keyword.c Log message: Remove duplicate and misleading vcmp() prototype; patch from Martin ; ok deraadt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:04:46 Modified files: editors/xwpe : Makefile editors/xwpe/patches: patch-we_fl_unix_c Log message: param.h not needed CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 13:06:53 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Carefully quote the flags argument such that leading blank characters are preserved in all situations; this is relevant such that for example 'rcctl enable identd flags " "' puts 'identd_flags=" "' into /etc/rc.conf.local and subsequent 'rcctl enable identd' without flags keeps it intact instead of stripping it down to 'identd_flags='. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:10:44 Modified files: benchmarks/bonnie++: Makefile benchmarks/bonnie++/patches: patch-Makefile_in patch-configure_in patch-port_h_in Log message: unnecessary param.h change another param.h for types.h use correct autoconf version CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:14:55 Modified files: net/poptop : Makefile net/poptop/patches: patch-pptpd_c Log message: unnecessary param.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:17:23 Modified files: net/igmpproxy : Makefile net/igmpproxy/patches: patch-defs_h Log message: unnecessary param.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:21:16 Modified files: security/gnupg : Makefile security/gnupg/patches: patch-util_secmem_c Log message: unnecessary param.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:21:43 Modified files: sysutils/gkrellm/gkrellm: Makefile sysutils/gkrellm/gkrellm/patches: patch-src_sysdeps_openbsd_c Log message: unnecessary param.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/13 13:26:19 Removed files: www/xapian-omega/patches: patch-freemem_cc Log message: unnecessary param.h CVSROOT: /cvs Module name: src Changes by: chl@cvs.openbsd.org 2014/10/13 14:54:13 Modified files: lib/libc/stdlib: random.c Log message: remove unused variable ok tedu@ CVSROOT: /cvs Module name: src Changes by: chl@cvs.openbsd.org 2014/10/13 14:55:16 Modified files: bin/csh : proc.c Log message: remove unused variable ok guenther@ CVSROOT: /cvs Module name: src Changes by: lum@cvs.openbsd.org 2014/10/13 15:01:05 Modified files: usr.bin/mg : paragraph.c Log message: gotoeop() does not behave as expected when there is no '\n' at the end of the buffer. ok florian@ CVSROOT: /cvs Module name: src Changes by: chl@cvs.openbsd.org 2014/10/13 15:05:59 Modified files: usr.bin/mandoc : html.c tree.c Log message: Add missing */ after $OpenBSD$ tag ok schwarze@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 16:00:42 Modified files: usr.bin/mandoc : mdoc_term.c Log message: Properly scale string length measurements for PostScript and PDF output; this doesn't change anything for ASCII and UTF-8. Problem reported by bentley@. CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/13 16:06:25 Modified files: net/tcpslice : Makefile distinfo net/tcpslice/patches: patch-Makefile_in patch-search_c patch-tcpslice_c net/tcpslice/pkg: PLIST Log message: Update project moved to github Ok sthen, ajacoutot CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/13 16:42:22 Modified files: sys/kern : init_main.c Log message: disable pagezero thread on hppa, until failure gets diagnosed, ok miod kettenis CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/10/13 17:03:28 Modified files: security/p5-IO-Socket-SSL: Makefile distinfo Log message: update p5-IO-Socket-SSL 1.999 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 17:31:26 Modified files: usr.bin/mandoc : tbl_term.c share/man/man7 : tbl.7 regress/usr.bin/mandoc/tbl: Makefile Added files: regress/usr.bin/mandoc/tbl: fonts.in fonts.out_ascii Log message: implement font modifiers in table layouts CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/10/13 19:23:12 Modified files: security/spiped: Makefile distinfo Log message: Update spiped to 1.4.2 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/13 20:16:02 Modified files: share/man/man7 : tbl.7 usr.bin/mandoc : mandoc.h out.c out.h tbl_html.c tbl_layout.c tbl_term.c Log message: Rudimentary implementation of the e, x, and z table layout modifiers to equalize, maximize, and ignore the width of columns. Does not yet take vertical rulers into account, and does not do line breaks within table cells. Considerably improves the lftp(1) manual; issue noticed by sthen@. CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/10/13 21:09:59 Modified files: usr.bin/ssh : ssh-ed25519.c Log message: plug a memory leak; from Maxime Villard. ok djm@ CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/10/13 21:23:27 Modified files: sys/arch/sparc/include: pmap.h Log message: NetBSD revision 1.20 of pmap.h (from 1996) deleted license text that should not have been removed (per the license conditions). Revert that removal of the BSD license text and conditions. Special thanks to Aaron Brown who also provided explicit permission to make this change. ok schwarze@, miod@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/13 23:38:20 Modified files: lib/libocurses : newwin.c Log message: fairly obvious reallocarray() conversion CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/14 00:06:48 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 00:56:43 Modified files: x11/gnome/at-spi2-atk: Makefile distinfo Log message: Update to at-spi2-atk-2.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:08:14 Modified files: x11/gnome/yelp-tools: Makefile distinfo Log message: Update to yelp-tools-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:15:23 Modified files: x11/gnome/devel-docs: Makefile distinfo x11/gnome/devel-docs/pkg: PLIST Log message: Update to gnome-devel-docs-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:26:51 Modified files: x11/gnome/user-docs: Makefile distinfo x11/gnome/user-docs/pkg: PLIST Log message: Update to gnome-user-docs-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:30:39 Modified files: x11/gnome/yelp : Makefile distinfo Log message: Update to yelp-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:33:03 Modified files: x11/gnome/librsvg: Makefile distinfo Log message: Update to librsvg-2.40.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:38:54 Modified files: security/gnutls: Makefile distinfo Log message: Update to gnutls-3.2.19. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:42:57 Modified files: x11/gnome/baobab: Makefile distinfo x11/gnome/baobab/pkg: PLIST Log message: Update to baobab-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 01:44:55 Modified files: sysutils/salt : Makefile Log message: Merged. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 02:40:28 Modified files: x11/gnome/controlcenter: Makefile Added files: x11/gnome/controlcenter/patches: patch-panels_power_cc-power-panel_c Log message: Do not display the bluetooth power button. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/10/14 03:00:29 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update youtube-dl to 2014.10.13 New extractors: - sportbox - theonion - walla CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/14 03:44:02 Log message: Import py-httpie 0.8.0. HTTPie is a command line HTTP client. Its goal is to make CLI interaction with web services as human-friendly as possible. It provides a simple http command that allows for sending arbitrary HTTP requests using a simple and natural syntax, and displays colorized responses. HTTPie can be used for testing, debugging, and generally interacting with HTTP servers. ok benoit@ Status: Vendor Tag: landry Release Tags: landry_20141014 N ports/www/py-httpie/Makefile N ports/www/py-httpie/distinfo N ports/www/py-httpie/pkg/PLIST N ports/www/py-httpie/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/14 03:45:19 Log message: Import py-statgrab 0.6. py-statgrab contains python bindings for libstatgrab. ok benoit@ Status: Vendor Tag: landry Release Tags: landry_20141014 N ports/sysutils/py-statgrab/distinfo N ports/sysutils/py-statgrab/Makefile N ports/sysutils/py-statgrab/pkg/DESCR N ports/sysutils/py-statgrab/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/14 03:46:35 Modified files: www : Makefile sysutils : Makefile Log message: +py-statgrab, py-httpie CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/14 03:52:26 Modified files: sys/net : if_gre.c if_mpe.c pf.c pfkeyv2.c route.c route.h sys/netinet : in_pcb.c ip_input.c ip_output.c ip_spd.c tcp_input.c sys/netinet6 : frag6.c icmp6.c in6.c in6_src.c ip6_forward.c ip6_input.c ip6_output.c nd6.c nd6_nbr.c sys/netmpls : mpls_input.c Log message: Use rtfree() instead of RTFREE(), NULLify some free'd route pointers and kill the macro. ok mikeb@, henning@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/14 03:55:44 Modified files: sys/netinet : raw_ip.c sys/netinet6 : raw_ip6.c Log message: Don't check for an empty list of interfaces. This is never true even if you don't have a physical interface on your machine, so why rawip should be more clever^Wparanoid than the others? ok henning@, mikeb@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/14 04:56:10 Modified files: share/man/man9 : route.9 Log message: RTFREE() is no more. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 05:27:31 Modified files: www/webkitgtk4 : Makefile distinfo Log message: Update to webkitgtk4-2.6.1. CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/14 05:29:07 Log message: Perl extension to OpenSSL's PKCS10 API, ok ajacoutot sthen Status: Vendor Tag: henning Release Tags: henning_20141014 N ports/security/p5-Crypt-OpenSSL-PKCS10/Makefile N ports/security/p5-Crypt-OpenSSL-PKCS10/distinfo N ports/security/p5-Crypt-OpenSSL-PKCS10/pkg/DESCR N ports/security/p5-Crypt-OpenSSL-PKCS10/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/10/14 05:30:04 Modified files: security : Makefile Log message: +p5-Crypt-OpenSSL-PKCS10 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 05:34:57 Modified files: x11/gnome/controlcenter/patches: patch-panels_power_cc-power-panel_c Log message: Committed upstream. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/14 06:28:14 Modified files: devel/darcs : Makefile distinfo Log message: Bugfix update to darcs-2.8.5 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 06:57:16 Modified files: x11/gnome/gdm : Makefile distinfo x11/gnome/gdm/files: gdm-launch-environment x11/gnome/gdm/patches: patch-data_Makefile_in x11/gnome/gdm/pkg: PLIST Log message: Update to gdm-3.14.1. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/14 07:04:04 Modified files: sys/net : if_loop.c Log message: Document that lo0 must be present on your system by panic(9)ing if we cannot create it. Suggested by and ok claudio@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/14 07:06:02 Log message: Import hs-scientific, a space efficient and arbitrary precision scientific number type. New dependency for an upcoming databases/hs-postgresql-simple update. From maintainer David Schaefer Status: Vendor Tag: dcoppa Release Tags: dcoppa_20141014 N ports/devel/hs-scientific/Makefile N ports/devel/hs-scientific/distinfo N ports/devel/hs-scientific/pkg/PLIST N ports/devel/hs-scientific/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/14 07:12:35 Modified files: lib/libssl/src/crypto: opensslv.h Log message: Bump libressl version string to 2.1. This makes 'openssl version' print a string that matches the -portable release number. Thanks to @blakkeim for pointing it out. The version integer is left alone, with the idea of discouraging software from relying on magic numbers for detecting features. Software configuration should do explicit feature tests instead. ok beck@, deraadt@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/14 07:18:24 Modified files: devel : Makefile Log message: Link hs-scientific to the build CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/14 07:23:13 Modified files: databases/hs-postgresql-simple: Makefile distinfo Log message: Update to postgresql-simple-0.4.6.0 From maintainer David Schaefer CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/14 07:52:19 Modified files: editors/vim : Makefile distinfo editors/vim/pkg: PFRAG.no-no_x11-main Log message: update to vim-7.4.475 CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/14 08:33:19 Modified files: faq : current.html Log message: tweak notes about apache move from base; more explicit information on how to handle LoadModule lines, found the hard way by me. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/14 09:01:51 Modified files: sbin/fsck_ffs : pass1.c Log message: rely on reallocarray() to give us the overflow detection, rather than hand-crafting a solution. ok millert CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/14 09:35:18 Modified files: usr.bin/bc : bc.y Log message: obvious use of reallocarray() CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/14 09:35:40 Modified files: usr.bin/mklocale: yacc.y Log message: obvious use of reallocarray() CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 09:52:07 Modified files: x11/gnome/settings-daemon: Makefile distinfo x11/gnome/settings-daemon/pkg: PLIST Log message: Update to gnome-settings-daemon-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 09:52:38 Modified files: x11/gnome/controlcenter: Makefile distinfo Removed files: x11/gnome/controlcenter/patches: patch-panels_power_cc-power-panel_c Log message: Update to gnome-control-center-3.14.1. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/14 09:56:39 Modified files: faq : current.html Log message: /dev/lkm; Mark Patruck CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/10/14 09:56:59 Modified files: audio/sox : Makefile Log message: USE_GROFF is no longer needed; no bump needed; tables are not yet perfect, but now work sufficiently well with mandoc; ok sthen@ naddy@ and MAINTAINER Jan Stary CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 09:57:08 Modified files: x11/gnome/desktop: Makefile distinfo Log message: Update to gnome-desktop-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 09:57:21 Modified files: meta/gnome : Makefile Log message: GNOME 3.14.1. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/14 10:27:08 www/libressl/images Update of /cvs/www/libressl/images In directory cvs.openbsd.org:/cvs.e/staff/deraadt/www/libressl/images Log Message: Directory /cvs/www/libressl/images added to the repository CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/14 10:27:27 Added files: libressl/images: ChePuff.jpg Log message: this will need resizing.. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/14 10:28:12 Modified files: devel/libgee : Makefile distinfo Log message: Update to libgee-0.16.1. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/14 10:53:29 Modified files: libressl : index.html Added files: libressl : papers.html Log message: refactor libressl main page. discussed direction with beck ok jsing ok everyone, find a missing piece and flesh it out CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/14 11:08:21 Modified files: libressl : index.html Added files: libressl/images: libressl.jpg Removed files: libressl : ChePuff.jpg Log message: text in image, maybe someone else will redo it with the Right Font? CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/14 11:25:48 Modified files: sys/arch/hppa/hppa: locore.S Log message: Do not skip saving callee-saved registers in trap frames if compiling without option DDB; some parts of trap() depend upon the whole frame being populated (especially when running on PCXS processors). ok kettenis@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/14 12:16:57 Modified files: usr.bin/mandoc : out.c tbl_term.c Log message: even if a table has zero columns, do not segfault in the formatter; bug reported by bentley@ CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/10/14 12:45:10 Log message: Import of wrapper script for running Minecraft. Once LWJGL rolls a new release and Minecraft starts using that release, this script will not be needed. Lots of input from armani@, bcallah@, halex@ and github users chessgriffin and dc740! OK sthen@ Status: Vendor Tag: abieber Release Tags: abieber_20141014 N ports/games/minecraft/Makefile N ports/games/minecraft/distinfo N ports/games/minecraft/pkg/PLIST N ports/games/minecraft/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/10/14 15:46:44 Modified files: devel/p5-Directory-Scratch: Makefile distinfo Log message: update p5-Directory-Scratch to 0.15 OK sthen@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/14 16:05:28 Modified files: lib/libressl : ressl.h ressl_init.3 Log message: seems like a good time to make the ressl default TLSv1 only. ok guenther CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/14 16:21:52 Modified files: libressl/images: libressl.jpg Log message: reinstantiate the warrant canary CVSROOT: /cvs Module name: www Changes by: jturner@cvs.openbsd.org 2014/10/14 16:23:06 Modified files: libressl : papers.html Log message: Fix paper links CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/14 16:23:12 Modified files: usr.bin/vi/common: mem.h usr.bin/vi/ex : ex_argv.c ex_subst.c Log message: create a REALLOCARRAY macro, and use it where it gives us overflow protection for free ok guenther CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/10/14 16:28:33 Modified files: sysutils/login_duo: Makefile distinfo Log message: Update login_duo to 1.9.13 CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/10/14 17:11:56 Modified files: games : Makefile Log message: +minecraft CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/14 19:32:36 Modified files: multimedia/get_iplayer: Makefile distinfo multimedia/get_iplayer/patches: patch-get_iplayer Log message: switch to git head, prompted by a warning message reported by nigel@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/14 19:41:41 Modified files: build : mirrors.dat Log message: sort US mirrors by state add mirrors.sonic.net in SF, requested by Dexter Keen CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/14 19:42:10 Modified files: build : mirrors.dat Log message: mispaste CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/14 19:43:10 Modified files: . : ftp.html ftplist anoncvs.html openbgpd : ftp.html openntpd : ftp.html portable.html openssh : ftp.html portable.html Log message: sync CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/14 19:51:51 Modified files: devel/nant : Makefile Log message: mark BROKEN-i386 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/14 20:03:05 Modified files: lib/libkvm : kvm_file2.c kvm_private.h kvm_proc.c kvm_proc2.c Log message: Apply reallocarray() idiom. ok guenther CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/14 20:06:36 Modified files: lang/ruby : Makefile.inc ruby.port.mk lang/ruby/1.8 : Makefile lang/ruby/1.9 : Makefile lang/ruby/2.0 : Makefile lang/ruby/2.1 : Makefile Added files: lang/ruby/files: rbconfig_fix.rb Log message: Allow gem install to work for gems with C extensions. As a bonus, remove the need to use FAKE_AS_ROOT = always-wrap. landry@ phessler@ naddy@ in favor CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 00:38:27 Modified files: databases/evolution-data-server: Makefile distinfo Log message: Update to evolution-data-server-3.12.7.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 00:58:50 Modified files: x11/gnome/getting-started-docs: Makefile distinfo Log message: Update to gnome-getting-started-docs-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 01:30:45 Modified files: x11/lumina : Makefile distinfo x11/lumina/pkg : PLIST Added files: x11/lumina/patches: patch-libLumina_LuminaOS-OpenBSD_cpp Log message: Update to lumina-0.6.3.1413320101. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/15 01:35:09 Modified files: usr.sbin/smtpd : rfc822.c Log message: fix memory leak in error path CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 01:38:24 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Add a new ls_rcscripts() function to properly get all rc.d(8) scripts ignoring irrelevant stuffs under /etc/rc.d. reworked based on a submission from Craig R. Skinner ok schwarze@ CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/15 02:04:41 Modified files: usr.sbin/smtpd : rfc822.c rfc822.h Log message: add a (high) limit to the number of header lines we're willing to keep in memory for rewriting purposes, this will prevent sessions from sending an insanely large number of continuations to a single header and starve us. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/15 02:09:02 Modified files: usr.sbin/smtpd : smtp_session.c smtpd.h usr.sbin/smtpd/smtpd: Makefile Log message: when From, To and Cc headers present users without domains, append the listener hostname to avoid smtpd relaying a header that will be rewritten by the destination MX. ok eric@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 02:27:48 Modified files: x11/gnome/shell: Makefile Log message: remove double clang module inclusion CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 02:50:23 Modified files: graphics/evince: Makefile distinfo graphics/evince/pkg: PLIST-main Log message: update to evince-3.14.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 02:52:15 Modified files: x11/gnome/clocks: Makefile distinfo x11/gnome/clocks/pkg: PLIST Log message: Update to gnome-clocks-3.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 02:57:40 Modified files: x11/gnome/vinagre: Makefile distinfo Log message: Update to vinagre-3.14.1. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/15 03:01:46 Modified files: x11/xdaliclock : Makefile Log message: xdaliclock 2.41 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 03:13:30 Modified files: x11/gnome/polari: Makefile distinfo x11/gnome/polari/pkg: PLIST Log message: update to polari-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 03:15:18 Modified files: lang/vala : Makefile distinfo Log message: update to vala-0.26.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 03:52:26 Modified files: x11/gnome/libgweather: Makefile distinfo Log message: update to libgweather-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:00:31 Modified files: x11/gnome/gucharmap: Makefile distinfo Log message: update to gucharmap-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:02:07 Modified files: devel/vte3 : Makefile distinfo devel/vte3/pkg : PLIST Removed files: devel/vte3/patches: patch-src_vteterminal_h Log message: update to vte3-0.38.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:08:16 Modified files: x11/gtksourceview3: Makefile distinfo Log message: update to gtksourceview3-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:09:39 Modified files: www/gtkhtml4 : Makefile distinfo Log message: update to gtkhtml4-4.8.5 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 04:12:37 Modified files: graphics/evince: Makefile Log message: Only the useless browser plugin needs c++11 for now; so disable it. Regen WANTLIB while here. input from/ok jasper@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/15 04:31:21 Modified files: net/tcludp : Makefile distinfo net/tcludp/patches: patch-configure net/tcludp/pkg : PLIST Added files: net/tcludp/patches: patch-generic_udp_tcl_c Log message: Update TclUDP to 1.0.11, initial version from me, with lots of discussions and improvements to my version from stu@ and landry@ OK to this version stu@ (and landry@ on my initial version) CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/15 04:37:24 Modified files: sysutils/ruby-puppet/3: Makefile Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_gem_rb Log message: make the gem package provider default to the same version puppet is based on. This makes the gem provider usable to install gems used by puppet modules. OK jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:53:59 Modified files: x11/gnome/file-roller: Makefile distinfo x11/gnome/file-roller/pkg: PLIST Log message: update to file-roller-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:54:04 Modified files: x11/gnome/terminal: Makefile distinfo x11/gnome/terminal/pkg: PLIST Log message: update to gnome-terminal-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 04:54:05 Modified files: x11/gnome/eog : Makefile distinfo Log message: update to eog-3.14.1 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/15 04:55:11 Modified files: lib/libedit : readline.c Log message: use reallocarray() CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/10/15 05:06:16 Modified files: usr.sbin/relayd: parse.y relay.c relayd.conf.5 relayd.h Log message: Disable SSLv3 by default. OK sthen@ jsing@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 05:14:17 Modified files: x11/gnome/desktop: Makefile Log message: Extend comment. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/15 05:26:23 Modified files: x11/xdaliclock : distinfo Log message: Forgotten in previous, spotted by naddy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 05:27:17 Modified files: net/farstream : Makefile distinfo net/farstream/pkg: PLIST Log message: update to farstream-0.2.6 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 05:46:23 Modified files: x11/gnome/contacts: Makefile distinfo Log message: update to gnome-contacts-3.14.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 05:49:47 Modified files: x11/gnome/documents: Makefile distinfo x11/gnome/documents/pkg: PLIST Log message: Update to gnome-documents-3.14.0. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/15 05:58:14 Modified files: share/man/man9 : rt_ifa_add.9 rtlabel_id2name.9 rtrequest1.9 Log message: Use the terms "routing entry" or simply "entry" when talking about the kernel representation of a network route. While here add some missing headers in the SYNOPSIS. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 06:57:39 Modified files: x11/gnome/desktop: Makefile Log message: Another comment. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:12:46 Modified files: graphics/evince: Makefile Log message: Ident before upcoming big changes. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:28:34 Log message: Import libgxps-0.2.2 libgxps is a GObject based library for handling and rendering XPS documents. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20141015 N ports/graphics/libgxps/Makefile N ports/graphics/libgxps/distinfo N ports/graphics/libgxps/pkg/DESCR N ports/graphics/libgxps/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:29:04 Modified files: graphics : Makefile Log message: +libgxps CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:34:57 Modified files: x11/gnome/bijiben: Makefile distinfo x11/gnome/bijiben/pkg: PLIST Log message: update to bijiben-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:35:11 Modified files: x11/gnome/empathy: Makefile distinfo Log message: update to empathy-3.12.7 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:35:27 Modified files: x11/gnome/mutter: Makefile distinfo Added files: x11/gnome/mutter/patches: patch-configure patch-src_backends_meta-cursor_c patch-src_backends_native_meta-cursor-renderer-native_c patch-src_backends_native_meta-cursor-renderer-native_h Removed files: x11/gnome/mutter/patches: patch-src_core_keybindings_c patch-src_core_stack_c Log message: update to mutter-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:35:36 Modified files: x11/gnome/shell: Makefile distinfo Log message: update to gnome-shell-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:35:47 Modified files: x11/gnome/shell-extensions: Makefile distinfo Log message: update to gnome-shell-extensions-3.14.1 CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/10/15 07:36:45 Modified files: sys/arch/amd64/amd64: db_interface.c sys/dev/ic : pckbc.c Log message: pppx(4): Correct pppx_dev_lookup() and pppx_dev2pxd() local declarations Those two functions take one dev_t argument, not int. Match declarations with reality. No functional changes. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:36:48 Modified files: x11/gnome/screenshot: Makefile distinfo x11/gnome/screenshot/pkg: PLIST Log message: update to gnome-screenshot-3.14.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 07:37:13 Modified files: x11/gnome/system-monitor: Makefile distinfo x11/gnome/system-monitor/pkg: PLIST Removed files: x11/gnome/system-monitor/patches: patch-data_lsof_ui patch-src_lsof_cpp Log message: update to gnome-system-monitor-3.14.1 CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/15 07:39:36 ports/net/serf/patches Update of /cvs/ports/net/serf/patches In directory cvs.openbsd.org:/cvs.d/hack/stsp/serf/patches Log Message: Directory /cvs/ports/net/serf/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/15 07:42:14 Modified files: net/serf : Makefile Added files: net/serf/patches: patch-buckets_ssl_buckets_c Log message: In net/serf, disable SSLv2 (disabled by default on OpenBSD) and SSLv3. Patches taken from upstream (r2313, r2433). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:48:21 Modified files: graphics/evince: Makefile graphics/evince/pkg: PLIST-main Removed files: graphics/evince/pkg: DESCR-nautilus PLIST-nautilus Log message: Stop trying to pretend we can still make a small package out of this: - merge -nautilus into -main - add XPS support - add missing dependency on gnome-desktop - fixup DEPS/WANTLIB There are many alternatives in-tree for those of want a small PDF viewer. discussed with and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:50:50 Modified files: x11/gnome/shell: Makefile Log message: Explicit RUN_DEPENDS on sysutils/accountsservice. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:54:29 Modified files: meta/gnome : Makefile Log message: graphics/evince,-nautilus is no more. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 07:54:57 Modified files: graphics/evince: Makefile graphics/evince/pkg: PLIST-main Log message: evince-nautilus -> nautilus-evince CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/15 07:57:21 Modified files: lib/libssl/src/ssl: ssl.h ssl_ciph.c Log message: Add cipher aliases for DHE (the correct name for EDH) and ECDHE (the correct name for EECDH). The EDH and EECDH aliases remain for backwards compatibility. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/15 08:02:16 Modified files: lib/libssl/src/ssl: t1_lib.c Log message: Only require an EC public key in tls1_set_ec_id(), if we need to provide a compression identifier. In the case of a server using ephemeral EC keys, the supplied key is unlikely to have a public key where SSL_CTX_set_tmp_ecdh() is called after SSL_OP_SINGLE_ECDH_USE has been set. This makes ECDHE ciphers work again for this use case. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/15 08:08:26 Modified files: lib/libressl : ressl_server.c Log message: Set SSL_OP_SINGLE_ECDH_USE before calling SSL_CTX_set_tmp_ecdh() - this avoids generating an EC key pair that will never be used. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 08:11:44 Modified files: x11/gnome/mutter/patches: patch-configure patch-src_backends_meta-cursor_c patch-src_backends_native_meta-cursor-renderer-native_c patch-src_backends_native_meta-cursor-renderer-native_h Log message: link to bz CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/15 08:11:47 Modified files: lib/libressl : ressl.c Log message: Clear protocol options before optionally setting them. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 08:28:42 Modified files: net/zeromq : Makefile distinfo net/zeromq/pkg : PLIST Log message: SECURITY update to zeromq-4.0.5. CVE-2014-7202 CVE-2014-7203 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 08:32:06 Modified files: x11/lumina : Makefile distinfo x11/lumina/pkg : PLIST Removed files: x11/lumina/patches: patch-libLumina_LuminaOS-OpenBSD_cpp Log message: Update to lumina-0.7.0.1413376519. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/15 09:01:11 Modified files: security/openssl: Makefile distinfo security/openssl/pkg: PLIST Log message: update to openssl-1.0.1j, build with no-ssl3 CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/10/15 09:01:15 Modified files: www/phpmyadmin : Makefile distinfo www/phpmyadmin/pkg: PLIST Added files: www/phpmyadmin/patches: patch-libraries_common_inc_php Removed files: www/phpmyadmin/patches: patch-js_error_report_js patch-js_server_privileges_js patch-libraries_RecentFavoriteTable_class_php patch-libraries_navigation_Navigation_class_php patch-libraries_navigation_Nodes_Node_DatabaseChild_class_php patch-libraries_structure_lib_php Log message: Update to 4.2.10 Force compatibility with MySQL 5.0.x to be able to connect to remote databases CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 09:36:23 Modified files: x11/gnome/shell-extensions: Makefile Log message: Missing RUN_DEPENDS. CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/10/15 09:54:47 Modified files: sys/arch/amd64/amd64: db_interface.c sys/dev/ic : pckbc.c Log message: Revert previous (wrong commit message). CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/10/15 09:55:42 Modified files: sys/arch/amd64/amd64: db_interface.c sys/dev/ic : pckbc.c Log message: Sprinkle CPU_BUSY_CYCLE() in a few places. OK kettenis@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/15 10:11:57 Modified files: net/udns : Makefile distinfo net/udns/pkg : PFRAG.shared PLIST Log message: update to 0.4, just containing a few bug fixes. While there merge PFRAG.shared into PLIST OK jung@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/15 10:13:01 Removed files: net/udns/pkg : PFRAG.shared Log message: really remove PFRAG.shared CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 10:19:35 Modified files: devel/gsettings-desktop-schemas: Makefile distinfo Log message: Update to gsettings-desktop-schemas-3.14.1. CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/10/15 11:15:37 Modified files: security/py-paramiko: Makefile distinfo security/py-paramiko/pkg: PLIST Log message: Update to 1.15.1 OK aja@, benoit@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/15 11:22:56 Modified files: sys/arch/hppa/hppa: db_disasm.c sys/arch/hppa64/hppa64: db_disasm.c Log message: Do not panic when attempting to decode invalid condition codes, or if the disassembler initialization fails. Correctly compute the destination of pc-relative branches. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 11:30:32 Log message: import california-0.2.0 California is a new calendar application for GNOME 3 designed to let you work with your calendars quickly and easily. It provides month and week views of your schedule and easy ways to add and update events, including a Quick Add feature which allows you to type the event details and have them added to your calendar without filling out a form. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20141510 N ports/x11/gnome/california/distinfo N ports/x11/gnome/california/Makefile N ports/x11/gnome/california/pkg/PLIST N ports/x11/gnome/california/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 11:31:56 Modified files: x11/gnome : Makefile Log message: +california CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/15 11:32:45 Modified files: meta/gnome : Makefile Log message: -alacarte +california CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 11:33:51 Modified files: multimedia/x264: Makefile x11/vlc : Makefile x11/mplayer : Makefile Log message: remove instances of MODCLANG_LANGS=c as 'c' is already the default. nb: it leaves cases where multiple languages (such as 'c' and 'c++') to make it clear what the full list is. ok brad@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/15 11:39:34 Modified files: lib/libssl/src/ssl: ssl_lib.c Log message: Disable SSLv3 by default. SSLv3 has been long known to have weaknesses and the POODLE attack has once again shown that it is effectively broken/insecure. As such, it is time to stop enabling a protocol was deprecated almost 15 years ago. If an application really wants to provide backwards compatibility, at the cost of security, for now SSL_CTX_clear_option(ctx, SSL_OP_NO_SSLv3) can be used to re-enable it on a per-application basis. General agreement from many. ok miod@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/15 12:20:06 Modified files: usr.bin/mg : theo.c Log message: some choice thoughts on back compat CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 12:24:15 Modified files: x11/xkbcommon : Makefile x11/xkbcommon/patches: patch-Makefile_in Added files: x11/xkbcommon/patches: patch-test_x11comp_c Log message: unbreak tests for OpenBSD CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/15 13:23:29 Modified files: usr.sbin/smtpd : rfc2822.c Log message: - allow empty headers CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 13:32:49 Modified files: x11/gnome/mutter: Makefile Added files: x11/gnome/mutter/patches: patch-configure_ac patch-src_backends_meta-cursor-private_h Removed files: x11/gnome/mutter/patches: patch-configure patch-src_backends_meta-cursor_c patch-src_backends_native_meta-cursor-renderer-native_c patch-src_backends_native_meta-cursor-renderer-native_h Log message: apply fix from upstream to make gbm optional CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/15 13:57:43 Modified files: lib/libressl : ressl_init.3 Log message: basic formatting fixes; CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/15 15:02:39 Modified files: lib/libressl : ressl.c ressl.h ressl_init.3 Log message: Fuck it. No SSLv3; not now, not ever. The API of the future will only support the protocols of the future. (Perhaps a bit late in burning this bridge entirely, but there's no time like the present, esp. with other players now leaning against back compat.) CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/15 15:14:22 Modified files: devel/p5-Path-Class: Makefile distinfo devel/p5-Path-Class/pkg: PLIST Log message: Update to version 0.35 and remove maintainer ok jasper CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/15 15:22:40 Modified files: www/epiphany : Makefile www/epiphany/pkg: PLIST Log message: - use a variable for the major version and add it to SUBST_VARS CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/15 15:37:27 Modified files: usr.sbin/ldomctl: util.c util.h usr.sbin/ldomd : ds.c Log message: create xreallocarray() and use it CVSROOT: /cvs Module name: src Changes by: sebastia@cvs.openbsd.org 2014/10/15 15:54:13 Modified files: sys/arch/sparc64/include: cpu.h Log message: move CPU_BUSY_CYCLES define out of #ifdef/else MULTIPROCESSOR, its meant to be for both cases. OK ketennis@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/15 16:34:44 Modified files: lib/libevent : Makefile event-internal.h Log message: Remove #ifndef HAVE_TAILQFOREACH containing a private tailq implementation. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/15 18:08:54 Modified files: databases/postgresql: Makefile Log message: Allow installation of PostgreSQL extensions outside of the ports system. Remove FAKE_AS_ROOT = always-wrap, since it is no longer necessary. espie@ in favor OK pea@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/15 19:09:35 Removed files: libressl : libre-ssl.css Log message: no longer needed CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/15 19:10:06 Modified files: usr.bin/mandoc : eqn.c libmandoc.h libroff.h mdoc.c roff.c Log message: Implement in-line equations, much needed by Xenocara manuals. Put the steering into the roff parser rather than into the mdoc parser such that it works for all macro languages and on both text and macro lines. Line breaks and blank characters generated before and after in-line equations are not perfect yet, but let's do one thing at a time. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/15 19:27:48 Modified files: usr.bin/mandoc : roff.c Log message: oops, don't escape the first token of inline equations CVSROOT: /cvs Module name: www Changes by: bcook@cvs.openbsd.org 2014/10/15 19:31:11 Modified files: libressl : index.html Added files: libressl : goals.html Log message: add initial LibreSSL goals, describe components CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/15 19:41:19 Modified files: libressl : index.html Log message: better intro sentence, more Xr to manuals CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/15 19:43:54 Modified files: libressl : index.html Log message: re-order paragraphs CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/15 20:04:10 Modified files: libressl : goals.html index.html papers.html Log message: fix links CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/15 20:08:59 Added files: libressl/images: smalltitle.gif Log message: an openbsd project CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/15 20:51:26 Modified files: share/man/man8 : ssl.8 Log message: Document that SSLv3 has been disabled. Also mention that SSLv2 was removed and not just disabled in OpenBSD 5.2 (pointed out by brad@). feedback from brad@ jsing@ sobrado@ earlier version ok jmc@ ok jsing@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/15 20:59:40 Modified files: usr.bin/tcpbench: tcpbench.c Log message: Use reallocarray() to get integer overflow detection. ok deraadt@ djm@ CVSROOT: /cvs Module name: src Changes by: beck@cvs.openbsd.org 2014/10/15 21:19:02 Modified files: lib/libssl/src/crypto/buffer: buffer.h lib/libssl/src/crypto/store: str_lib.c lib/libssl/src/crypto/x509: x509_trs.c lib/libssl/src/ssl: ssl_asn1.c Log message: Get rid of the last remaining BUF_strdup and BUF_strlcpy and friends, use intrinsic functions everywhere, and wrap these functions in an #ifndef LIBRESSL_INTERNAL to make sure we don't bring their use back. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/15 21:42:03 Modified files: sys/dev/acpi : atk0110.c Log message: missing \n in printf; Daniel Wade CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/15 22:05:02 Modified files: usr.sbin/snmpd : kroute.c Log message: use reallocarray(). Looked at a few times by doug, I am sure. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/15 22:05:39 Modified files: usr.sbin/sasyncd: pfkey.c Log message: simple reallocarray() CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/15 22:17:48 Modified files: usr.sbin/lpr/common_source: common.c Log message: reallocarray() obviously CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/15 22:19:33 Modified files: sys/kern : subr_hibernate.c Log message: No need to reserve separate KVA ranges for the RLE and copy pages in hibernate anymore. CVSROOT: /cvs Module name: www Changes by: beck@cvs.openbsd.org 2014/10/15 23:01:46 Modified files: libressl : papers.html Log message: Fix this to look like the OpenBSD papers page - the links to the conference sites were distracting and confusing.. While here, my talk was given at BSDCan, not CUUG (I did repeat it at CUUG) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 01:23:11 Modified files: www/epiphany : Makefile distinfo www/epiphany/pkg: PLIST Log message: update to epiphany-3.14.1 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/16 01:38:06 Modified files: lib/libevent : buffer.c evbuffer.c event.c event_tagging.c evutil.c kqueue.c log.c poll.c select.c signal.c Log message: Remove #ifdef HAVE_CONFIG_H, there is no config.h file. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 02:21:38 Modified files: x11/gnome/mutter/patches: patch-configure_ac Added files: x11/gnome/mutter/patches: patch-src_backends_meta-cursor_c patch-src_core_display_c Log message: - cvs decided patch-src_backends_meta-cursor_c wasn't needed; i beg to differ. - while here apply a fix from upstream to fix a logic issue in changing grab behaviour no bump since it didn't build, spotted by aja@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/16 03:27:14 Modified files: security/libgpg-error: Makefile distinfo security/libgpg-error/pkg: PLIST Log message: Update to libgpg-error-1.17. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/16 03:40:46 Modified files: usr.sbin/smtpd : ssl.c Log message: disable SSLv3 ok jsing@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/16 04:43:54 Modified files: usr.bin/openssl: apps.c req.c Log message: Repair BUF_strdup() breakage. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 05:55:07 Modified files: x11/gnome/online-accounts: Makefile distinfo x11/gnome/online-accounts/pkg: PLIST Log message: update to gnome-online-accounts-3.14.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 05:55:42 Modified files: databases/puppetdb: Makefile distinfo databases/puppetdb/pkg: PLIST-main PLIST-plugin Log message: update to puppetdb-2.2.1 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/16 06:46:35 Modified files: lib/libressl : ressl_init.3 Log message: use .fn here too. from Jean-Philippe Ouellet CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/16 06:54:21 Modified files: net/p5-IO-Socket-Socks: Makefile distinfo net/p5-IO-Socket-Socks/pkg: PLIST Log message: Update version Ok benoit@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/16 07:02:59 Modified files: net/hs-network-info: Makefile distinfo Log message: Update to network-info-0.2.0.5 From maintainer David Schaefer CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/16 07:04:08 Modified files: net/tcpreplay/pkg: PLIST Added files: net/tcpreplay/patches: patch-src_common_sendpacket_h Log message: Retry CVS failed stuff in attic CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/16 07:07:27 Modified files: devel/hs-uuid : Makefile distinfo databases/hs-postgresql-simple: Makefile Log message: Update to hs-uuid-1.3.4 From maintainer David Schaefer CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/16 07:33:31 Modified files: sysutils/salt : Makefile distinfo Log message: Update to salt-2014.1.13. CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/16 07:41:26 Added files: net/tcpreplay/patches: patch-configure Log message: Restoring patch-configure from attic CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/16 07:43:48 Modified files: net/tcpreplay/patches: patch-configure Log message: Retry version update Ok benoit@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/16 07:45:12 Modified files: usr.bin/col : col.c Log message: 1) Fix a segfault triggered by an input line containing two consecutive backspace characters beyond column MAX_SHRT, overflowing c_column. 2) Fix imcomplete initialization of the final element of the *count array by adding a missing pair of parentheses. 3) For code clarity and extra safety, change all variables dealing with column numbers from int to size_t such that they cannot overflow. Found while reviewing the patch from deraadt@'s reallocarray() rampage. Feedback and OK millert@. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/16 08:42:07 Removed files: lib/librt : Makefile rt.c Log message: we stopped building librt a while back. delete stubs. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/16 09:16:36 Modified files: x11/lumina : Makefile distinfo x11/lumina/pkg : PLIST Log message: Update to lumina-0.7.0.1413399783. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/16 09:23:42 Modified files: net/monitoring-plugins: Makefile distinfo net/monitoring-plugins/patches: patch-configure_ac Log message: update to monitoring-plugins-2.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/16 09:24:07 Modified files: net/bird : Makefile distinfo Log message: update to bird-1.4.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/16 09:48:58 Modified files: misc/nyancat : Makefile distinfo misc/nyancat/patches: patch-src_nyancat_c Log message: update to nyancat-1.4.4 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/16 09:50:49 Modified files: sys/sys : _time.h lib/libc/sys : clock_gettime.2 Log message: Remove references to unimplemented CLOCK_VIRTUAL. It is non-standard and existing implementations vary as to whether it returns time for the calling thread or the entire process. OK kettenis@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/16 10:07:51 Modified files: net : Makefile net/unison : Makefile Makefile.inc net/unison/snapshot: Makefile distinfo net/unison/snapshot/pkg: DESCR PLIST net/unison/stable: Makefile distinfo net/unison/stable/patches: patch-ubase_util_ml net/unison/stable/pkg: DESCR PLIST Log message: * remove snapshot port, move net/unison/stable to net/unison * patch to retain backtrace on uncaught exceptions * add readme warning about incompadibilities between different OCaml versions. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/16 10:17:07 Added files: net/unison : distinfo Removed files: net/unison/snapshot: Makefile distinfo net/unison/snapshot/pkg: DESCR PLIST net/unison/stable: Makefile distinfo net/unison/stable/patches: patch-ubase_util_ml net/unison/stable/pkg: DESCR PLIST Log message: missing changes in last commit. Also note the changes were given OKs by ok sthen@, giovanni@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 11:18:42 Modified files: graphics/png : Makefile distinfo graphics/png/pkg: PLIST Log message: Update to png 1.6.13. ok naddy@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 11:30:28 Modified files: mail/postfix/stable: Makefile distinfo Log message: Update to Postfix 2.11.2. ok sthen@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/16 11:31:51 Modified files: lib/libc/stdio : getdelim.c Log message: Fix bounds check for newlen without relying on unspecified behavior. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/16 11:36:11 Modified files: usr.bin/mg : display.c Log message: Use reallocarray() where possible. There are further possible overflows in the region, but my time is limited... CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/16 11:37:42 Modified files: sys/arch/amd64/amd64: acpi_wakecode.S Log message: Use an instruction encoding for the return-to-realmode code that works on both AMD and Intel CPUs. Previously, the encoding was causing illegal instruction exceptions on AMD, causing hibernate resume to fail. CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/16 11:46:06 Modified files: sys/dev/acpi : acpibtn.c Log message: LID control method devices aren't required to offer _PSW, so don't skip putting a LID into the global list of LIDs if we encounter an error writing to _PSW for that LID. Needed for another upcoming diff. ok deraadt, phessler CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 11:53:25 Modified files: textproc/libxml: Makefile textproc/libxml/patches: patch-parser_c Log message: security fix for CVE-2014-3660, more billion laugh entity expansion fixes CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 11:53:42 Modified files: textproc/libxml: Tag: OPENBSD_5_6 Makefile textproc/libxml/patches: Tag: OPENBSD_5_6 patch-parser_c Log message: security fix for CVE-2014-3660, more billion laugh entity expansion fixes CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/16 11:53:56 Modified files: textproc/libxml: Tag: OPENBSD_5_5 Makefile textproc/libxml/patches: Tag: OPENBSD_5_5 patch-parser_c Log message: security fix for CVE-2014-3660, more billion laugh entity expansion fixes CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 12:01:57 Modified files: mail/dovecot : Makefile distinfo mail/dovecot/patches: patch-doc_example-config_Makefile_in patch-doc_example-config_conf_d_10-mail_conf patch-doc_example-config_conf_d_Makefile_in mail/dovecot/pkg: PLIST-server Removed files: mail/dovecot/patches: patch-src_lib-ssl-iostream_iostream-openssl-context_c patch-src_lib-ssl-iostream_iostream-openssl_c patch-src_login-common_client-common_c patch-src_login-common_ssl-proxy-openssl_c patch-src_login-common_ssl-proxy_h Log message: Update to Dovecot 2.2.14. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 12:02:48 Modified files: mail/dovecot-antispam: Makefile Log message: Update after update to Dovecot 2.2.14. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 12:03:42 Modified files: mail/dovecot-pigeonhole: Makefile distinfo mail/dovecot-pigeonhole/pkg: PLIST Log message: Update to Dovecot-pigeonhole 0.4.3 which is required for Dovecot 2.2.14. ok sthen@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/16 12:23:26 Modified files: bin/csh : alloc.c csh.1 extern.h init.c Log message: Kill the alloc command, which tried to measure behaviour based on sbrk. Discussed with guenther. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 12:27:28 Modified files: mail/postfix/snapshot: Makefile distinfo mail/postfix/snapshot/patches: patch-conf_main_cf patch-conf_master_cf Log message: Update to Postfix 2.12-20141013. There have been some default settings changes so everyone upgrading will have to look at merging some potential config changes. The backwards compat mode will ensure existing configs work as is but users should look at updating their configs and especially keep master.cf in mind due to the default chroot setting. http://www.postfix.org/COMPATIBILITY_README.html ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/16 12:41:41 Modified files: mail/postfix/snapshot: Makefile distinfo Log message: Update to Postfix 2.12-20141015. ok sthen@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/16 13:30:59 Modified files: sys/dev/pci : pciide.c Log message: Additonal registers needs to be saved in sc_save2, not sc_save. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/16 13:43:31 Modified files: bin/csh : alloc.c csh.c csh.h dir.c dol.c extern.h file.c func.c glob.c misc.c set.c str.c Log message: Use reallocarray() and remove a few archaic memory allocation practices. ok deraadt CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/16 13:49:02 Modified files: audio/mpg123 : Makefile distinfo Log message: maintenance update to 1.21.0 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/16 14:08:21 Modified files: lib/libpcap : pcap-bpf.c Log message: use reallocarray(); ok lteo CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/16 14:47:52 Modified files: sys/arch/sparc64/stand/ofwboot: Locore.c Log message: The "close" word doesn't return any arguments. Pointed out by Mark Cave-Ayland. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/16 14:52:18 Removed files: sys/arch/sparc64/stand/ofwboot: version Log message: No longer used. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/16 16:53:56 Modified files: audio/xmms : Makefile Added files: audio/xmms/patches: patch-Input_mikmod_drv_xmms_c Log message: Fix following some libmikmod update; driver interface changed and now has an additional function pointer in the middle of a struct. Reported by naddy via bcallah. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/16 18:47:48 Modified files: sys/net : if_pfsync.c Log message: reset all the pfsync packet state before calling ip_output in pfsync_sendout. more specifically, move the reset of sc->sc_len to PFSYNC_MINPKT above ip_output. this prevents a situation where ipsec via ip_output calls pfsync_update_tdb for syncing the ipsec flow to a peer, which accounts for the tdb in the next pfsync packet, before unwinding back to pfsync_output which resets the accounting we just did. the next pfsync packet to be sent out will be allocated with a short length because sc_len is wrong, and the long lists of things (eg, the tdb) can overwrite memory after the mbuf. this manifests as incorrect poisoning or xsimpleq entry corruption in mbufs still in a pool, or random corruption of m->m_next on other mbufs in the system. bug found, fix tested, and ok stsp@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/16 19:46:26 Modified files: sys/arch/i386/i386: bus_space.c machdep.c sys/arch/i386/include: bus.h Log message: bring the twisting of bus_space from amd64 over to i386. this is: src/sys/arch/amd64/amd64/bus_space.c r1.22 src/sys/arch/amd64/include/bus.h r1.27 instead of using the tag as an identifier for IO or memory mappings that was checked inside the api, turn it into a pointer to a structure of function pointers. the api then generally becomes a set of macros that deref the function pointers on the callers behalf. the idea is that following a pointer to very small functions is cheap compared to doing compares continuously. the kernel is smaller and the api is more cache friendly now. the porting of this code from amd64 to i386 was done by kimberley manning requested by and ok tedu@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/16 19:51:39 Modified files: sys/kern : init_main.c kern_sysctl.c sched_bsd.c sys/sys : sched.h sysctl.h Log message: redo the performance throttling in the kernel. introduce a new sysctl, hw.perfpolicy, that governs the policy. when set to anything other than manual, hw.setperf then becomes read only. phessler was heading in this direction, but this is slightly different. :) CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/16 19:55:00 Modified files: usr.sbin/apmd : apmd.8 apmd.c Log message: remove performance throttling code from here, use the kernel version instead. this effectively kills -C, though the option is kept for compat. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/16 19:56:48 Modified files: usr.sbin/apm : apm.8 Log message: fewer lies in the docs regarding performance modes after recent changes. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/16 20:05:06 Modified files: sys/dev : vnd.c vscsi.c Log message: convert old b functions to mem functions CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/10/16 21:04:30 Modified files: sys/arch/sparc64/sparc64: ofw_machdep.c Log message: Mark Cave-Ayland pointed out on tech@ that the OF_test_method was called with an ihandle instead of a phandle. And also the comparison was the wrong way around. This bug was causing an exception. Because -1 is returned to indicate failure and because the comparison is the wrong way around, the bad logic led to believing that SUNW,retain exists which is why this currently works on some PROMs. On E250/E450 machines, this didn't work so there was a hack to detect these machines and work-around the problem. After this fix that hack is now removed. Tested on an E450 by sebastia@ and confirmed that his dmesg is now retained after a reboot. nick@ promises to complain if his E250 is any worse off. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/16 21:56:00 Modified files: sys/arch/i386/i386: apm.c Log message: In the new world order, setperf does not exist on ramdisks. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 00:07:51 Modified files: lib/libedit : chared.c chartype.c chartype.h el.c el.h filecomplete.c hist.c history.c key.c map.c parse.c read.c search.c sig.c term.c tokenizer.c vi.c Log message: Remove non-exposed malloc/realloc/free wrappers, and then substitute reallocarray() where it helps. ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 00:11:27 Modified files: usr.sbin/lpr/lpd: lpd.c Log message: Remove chunk special-casing malloc(siz) for realloc(NULL, siz). Bit tricky, but note the remembered size is in bss. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 00:17:38 Modified files: bin/csh : alloc.c csh.h extern.h Log message: no need for realloc() front ends anymore CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/17 00:22:08 Added files: net/unison/patches: patch-ubase_util_ml patch-uicommon_ml net/unison/pkg : DESCR PLIST README Removed files: net/unison : Makefile.inc Log message: Somehow I missed to cvs add the pkg and patches directories. Thanks to Björn Ketelaars for telling me. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 00:33:35 Modified files: sbin/fsck : fsck.c Log message: trivial replacement with reallocarray() CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/17 00:36:22 Modified files: sysutils/accountsservice: Makefile distinfo sysutils/accountsservice/patches: patch-src_daemon_c Log message: Update to accountsservice-0.6.39. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 01:16:56 Modified files: www/mozilla : mozilla.port.mk Log message: Assorted updates for gecko 33. - enforce dependency on sqlite3>=28 (sqlite 3.8.5), nss 3.17.2 and nspr 4.10.7. - add handling for 'rc' in MOZILLA_VERSION, MOZILLA_DIST_VERSION and MOZILLA_VER - when 'rc' is set, fetch the corresponding candidate build from the appropriate dir on the mirror CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 01:17:23 Modified files: devel/xulrunner/24: Makefile Log message: Bump REVISIONs after mozilla.port.mk depends changes. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 01:19:26 Modified files: www/firefox-esr-i18n: Makefile.inc distinfo www/firefox-esr: Makefile distinfo Log message: Bugfix update to firefox-esr 31.2.0. - See https://www.mozilla.org/en-US/firefox/31.2.0/releasenotes/ - Fixes MFSA 2013-74,75,76,77,79,81,82. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 01:21:59 Modified files: mail/thunderbird-i18n: Makefile.inc distinfo mail/mozilla-thunderbird: Makefile distinfo Log message: Bugfix update to thunderbird 31.2.0 / lightning-3.3.2 - See https://www.mozilla.org/en-US/thunderbird/31.2.0/releasenotes/ - Fixes MFSA 2014-74,75,76,77,79,81. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 01:26:21 Modified files: www/firefox-i18n: Makefile.inc distinfo www/mozilla-firefox: Makefile distinfo www/mozilla-firefox/patches: patch-browser_installer_Makefile_in patch-gfx_skia_moz_build patch-security_manager_pki_resources_content_exceptionDialog_js Added files: www/mozilla-firefox/patches: patch-toolkit_library_libxul_mk Removed files: www/mozilla-firefox/patches: patch-media_libvpx_Makefile_in Log message: Update to firefox 33.0. - See https://www.mozilla.org/en-US/firefox/33.0/releasenotes/ - Fixes MFSA 2014-74-->82 - build with systemwide icu4c, workarounds #1064665 (and as a side effect shrinks the libs/packages by 1 or 2 megs) - add patch-toolkit_library_libxul_mk from bug #1036832 to workaround a linking failure with our ancient binutils - remove patch-media_libvpx_Makefile_in from #982693 fixing libvpx build on i386, a variation of it was merged upstream tested by bcallah@, benoit@ and Fabian Raetz, thanks! CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 01:30:43 Modified files: www/seamonkey : Makefile distinfo www/seamonkey/patches: patch-mozilla_security_manager_pki_resources_content_exceptionDialog_js patch-suite_installer_Makefile_in www/seamonkey/pkg: PLIST-main www/seamonkey-i18n: Makefile.inc distinfo Added files: www/seamonkey/patches: patch-mozilla_toolkit_library_libxul_mk Removed files: www/seamonkey/patches: patch-mozilla_js_src_configure_in patch-mozilla_media_libvpx_Makefile_in Log message: Update to seamonkey 2.30 / lightning-seamonkey 3.5. - See http://www.seamonkey-project.org/releases/seamonkey2.30/ - Fixes MFSA 2014-74-->82 - build with systemwide icu4c, workarounds #1064665 (and as a side effect shrinks the libs/packages by 1 or 2 megs) - for consistency with firefox, build with gstreamer1 instead of gstreamer-0.10 - add patch-toolkit_library_libxul_mk from bug #1036832 to workaround a linking failure with our ancient binutils - remove patch-media_libvpx_Makefile_in from #982693 fixing libvpx build on i386, a variation of it was merged upstream - remove patch-mozilla_js_src_configure_in, didnt apply anymore and was useless CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/17 01:41:40 Modified files: usr.sbin/apmd : apmd.c Log message: remove -C from usage(); CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/17 01:43:33 Modified files: usr.sbin/apm : apm.c Log message: remove -C from usage(); CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/10/17 01:59:18 Modified files: net/py-IP : Makefile distinfo Log message: Update py-IP to 0.82a. CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 02:03:04 Modified files: usr.bin/finger : util.c Log message: strvis() requires that the buffer is at least 4 * srclen + 1. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/17 02:35:10 Modified files: textproc/icu4c : Makefile textproc/icu4c/pkg: PLIST Added files: textproc/icu4c/pkg: PFRAG.be PFRAG.le Log message: Rework this port and add --with-data-packaging=archive for powerpc and arm to unbreak. --with-data-packaging fix from dcoppa@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/17 03:19:32 Modified files: www/sope : Makefile distinfo www/sope/patches: patch-sope-core_EOControl_common_h Removed files: www/sope/patches: patch-sope-appserver_NGObjWeb_Associations_WOKeyPathAssociation_m patch-sope-mime_NGMime_NGMimeFileData_m Log message: Update sope to 2.2.9a had most or even all intermediate versions running, some of them introduced problems, that were fixed in following version, introducing new problems, ... Have this now running since a few weeks without issues CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/17 03:20:03 Modified files: www/sogo : Makefile distinfo www/sogo/pkg : PLIST Log message: Update sogo to 2.2.9a had most or even all intermediate versions running, some of them introduced problems, that were fixed in following version, introducing new problems, ... Have this now running since a few weeks without issues CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/17 03:21:09 Modified files: www/opengroupware: Makefile Added files: www/opengroupware/patches: patch-SOPE_mod_ngobjweb_ngobjweb_module_c patch-WebUI_Common_OGoUIElements_SkyCalendarScript_m patch-WebUI_Scheduler_LSWScheduler_LSWAppointmentProposal_m patch-WebUI_Scheduler_LSWScheduler_LSWAppointmentViewer_m patch-WebUI_Scheduler_OGoSchedulerViews_SkyMonthRepetition_m patch-WebUI_Templates_OGoSchedulerViews_SkyInlineDayOverview_html Log message: opengroupware needs some compatibility patches from upstream to cope with newer versions of www/sope. While touching it, a few minor bug fixes and enhancements from upstream are included. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 04:43:53 Modified files: net/ruby-msgpack: Makefile distinfo net/ruby-msgpack/pkg: PLIST Log message: update to msgpack-0.5.9 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 05:15:03 Modified files: devel/p5-Class-AutoClass: Makefile lang/feldspar : Makefile.inc lang/feldspar/compiler: Makefile lang/feldspar/language: Makefile Log message: drop maintainership of stuff i don't use anymore CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 06:18:06 Modified files: devel/libelf : Makefile Log message: take maintainership and adjust HOMEPAGE CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/17 06:36:33 Modified files: textproc/icu4c : Makefile Log message: Add TEST_ENV vars CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/17 06:54:17 Modified files: x11/gnome/tracker: Makefile distinfo x11/gnome/tracker/patches: patch-src_tracker-control_tracker-control-general_c Log message: Update to meta-tracker-1.2.3. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/17 07:21:44 Modified files: sbin/dhclient : dhclient.c Log message: Nuke 'increase' which was always set to 1. Replace the if/else that tested its value with the body of the if. No functional change. 'increase' was orphaned when r1.139 eliminated support for 'medium' statements in dhclient.conf. Stumbled over while looking into a problem for weerd@. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 07:24:59 Modified files: textproc/libxml: Makefile distinfo textproc/libxml/patches: patch-Makefile_in patch-python_Makefile_in patch-python_tests_Makefile_in patch-xstc_Makefile_in textproc/libxml/pkg: PFRAG.shared-python PLIST-main Added files: textproc/libxml/patches: patch-configure_ac Removed files: textproc/libxml/patches: patch-configure_in patch-parser_c Log message: - update to libxml 2.9.2 * mostly bugfixes and two security fixes (booth were applied already) ok aja@ CVSROOT: /cvs Module name: src Changes by: lum@cvs.openbsd.org 2014/10/17 07:25:13 Modified files: usr.bin/mg : paragraph.c Log message: If gotoeop() is called requiring more than one iteration, it behaves oddly if it reaches the end of buffer before completing all iterations. This diff makes the kill-paragraph and forward-paragraph commands stop once they can go no further. ok florian@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 08:12:02 Modified files: devel/hs-vector: Makefile devel/hs-type-level: Makefile Log message: mark BROKEN-i386 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/17 08:18:46 Modified files: etc : group Log message: Drop the _lkm group. ok dcoppa@ deraadt@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/17 08:46:54 Modified files: usr.bin/du : du.1 du.c Log message: Add the -d flag (limit display depth) for compatibility with FreeBSD, DragonFly, NetBSD and GNU coreutils, even though it's not POSIX. Actually, this simplifies the code rather than complicating it. Because -a and -d need not be mutually exclusive (as observed by millert@) and -s is identical to -d 0, -a and -s are no longer mutually exclusive, but -as and -sa are now the same as -s. That is explicitly allowed by POSIX. Based on a patch from William Orr , but extensively massaged and HISTORY added by me. feedback and ok millert@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 08:53:55 Modified files: security/xca : Makefile Added files: security/xca/patches: patch-widgets_hashBox_cpp Log message: change xca's default hash to SHA 256 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 09:10:23 Modified files: security/xca : Makefile Added files: security/xca/patches: patch-lib_x509v3ext_cpp patch-misc_xca_desktop Log message: add xca patches from sf bugs; notably http://sourceforge.net/p/xca/patches/14/ which unbreaks it with openssl 1.0.1i's stricter OID checks CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 09:11:50 Modified files: security/xca : Tag: OPENBSD_5_6 Makefile Added files: security/xca/patches: Tag: OPENBSD_5_6 patch-lib_x509v3ext_cpp patch-misc_xca_desktop patch-widgets_hashBox_cpp Log message: MFC fixes to security/xca which unbreak it with ssl libs in 5.6 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 09:34:56 Modified files: sys/kern : sched_bsd.c Log message: cpu_setperf and perflevel must remain exposed, otherwise a bunch of MD code needs excess #ifndef SMALL_KERNEL CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 09:35:31 Modified files: sys/arch/i386/i386: apm.c Log message: revert previous. It isn't just i386 which cares about the setperf hiding, it is a lot of other systems too. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 09:47:25 Modified files: devel/ruby-rspec: Makefile Removed files: devel/ruby-rspec/puppet: Makefile distinfo devel/ruby-rspec/puppet/pkg: DESCR PLIST devel/ruby-rspec/puppetlabs_spec_helper: Makefile distinfo devel/ruby-rspec/puppetlabs_spec_helper/pkg: DESCR PLIST Log message: remove rspec-puppet and puppetlabs_spec_helper which haven't been ported to rspec3 at runtime yet. people doing actual puppet development can install them as regular gems as they most likely already have. ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/17 10:39:00 Modified files: x11/gnome/documents: Makefile distinfo x11/gnome/documents/pkg: PLIST Log message: Update to gnome-documents-3.14.1. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:03:27 Modified files: databases/ruby-amalgalite: Makefile databases/ruby-data_objects: Makefile databases/ruby-do_mysql: Makefile databases/ruby-do_postgres: Makefile databases/ruby-do_sqlite3: Makefile databases/ruby-hiera: Makefile devel/ruby-daemon_controller: Makefile devel/ruby-therubyracer: Makefile net/ruby-msgpack: Makefile security/ruby-bcrypt: Makefile textproc/ruby-yard: Makefile www/ruby-rack-protection: Makefile Log message: disable rspec2 tests for these ports as rspec2 will be removed shortly. ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:08:57 Modified files: lang/ruby : ruby.port.mk Log message: remove support for rspec2 CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/10/17 11:09:50 Modified files: share/man/man5 : ruby-module.5 Log message: rspec2 will be removed CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:26:04 Modified files: devel/ruby-rspec: Makefile Removed files: devel/ruby-rspec/2: Makefile Makefile.inc devel/ruby-rspec/2/core: Makefile distinfo devel/ruby-rspec/2/core/pkg: DESCR PLIST devel/ruby-rspec/2/expectations: Makefile distinfo devel/ruby-rspec/2/expectations/pkg: DESCR PLIST devel/ruby-rspec/2/mocks: Makefile distinfo devel/ruby-rspec/2/mocks/pkg: DESCR PLIST devel/ruby-rspec/2/rspec: Makefile distinfo devel/ruby-rspec/2/rspec/pkg: DESCR PLIST Log message: Remove rspec2 so that rspec3 can take it's place. They conflict and rspec3 will actually be used instead of just a TDEP (for serverspec). discussed with and ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:28:02 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo devel/ruby-rspec/specinfra/pkg: PLIST Removed files: devel/ruby-rspec/specinfra/patches: patch-lib_specinfra_command_openbsd_rb Log message: - update to specinfra-2.3.0 - switch to use rspec3 many thanks to upstream for promptly merging my patches to get specinfr2 working on OpenBSD (including the routing table matchers). if there's a matcher that doesn't work on OpenBSD, please do let me know. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:28:21 Modified files: devel/ruby-rspec/serverspec: Makefile distinfo devel/ruby-rspec/serverspec/pkg: PLIST Log message: - update to serverspec-2.3.1 - switch to use rspec3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:28:36 Modified files: devel/ruby-rspec: Makefile Log message: re-enable rspec3 CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/17 11:28:55 Modified files: x11/ratpoison : Makefile distinfo Log message: Bugfix update to ratpoison-1.4.8 Discussed with william@ (maint.) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:48:34 Modified files: net/ruby-msgpack: Makefile Log message: this just works with rspec3, so re-enable tests CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:49:04 Modified files: databases/ruby-data_objects: Makefile Added files: databases/ruby-data_objects/patches: patch-spec_pooling_spec_rb patch-spec_spec_helper_rb patch-spec_transaction_spec_rb Log message: fix tests for rspec3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 11:56:07 Modified files: databases/ruby-data_objects/patches: patch-spec_pooling_spec_rb Log message: now all tests pass CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 12:00:35 Modified files: databases/ruby-hiera: Makefile Added files: databases/ruby-hiera/patches: patch-spec_unit_util_spec_rb Log message: switch to use rspec3 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/17 12:15:48 Modified files: sys/arch/i386/i386: machdep.c sys/arch/amd64/amd64: identcpu.c Log message: Also remove trailing spaces from the CPU brand string. ok deraadt@, armani@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 12:26:19 Modified files: net/gdnsd : Makefile Log message: s/GH_COMMENT/GH_COMMIT/, pointed out abieber@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 12:26:50 Modified files: infrastructure/templates: mk.conf.template Log message: more poison CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 12:29:23 Modified files: x11/kde4/dev-scripts: Makefile Log message: MODPY_BUILDDEP not MODPY_BUILD_DEP, as recently added to poison in mk.conf.template CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 12:34:17 Modified files: security/ruby-bcrypt: Makefile Added files: security/ruby-bcrypt/patches: patch-Rakefile patch-spec_bcrypt_engine_spec_rb patch-spec_bcrypt_password_spec_rb Log message: switch to rspec3 ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 12:35:32 Modified files: www/ruby-rack-protection: Makefile Log message: link to upstream pull request containing rspec3 patches; it's too much pain for too little gain to merge them into our tree for now CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 12:55:56 Modified files: databases/ruby-data_objects: Makefile Log message: this needs a bump CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/10/17 13:12:00 Modified files: security/p5-IO-Socket-SSL: Makefile distinfo Log message: update p5-IO-Socket-SSL to 2.000, this disables SSLv3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 13:13:01 Modified files: databases/ruby-do_mysql: Makefile databases/ruby-do_postgres: Makefile databases/ruby-do_sqlite3: Makefile databases/ruby-data_objects: Makefile databases/ruby-data_objects/patches: patch-spec_transaction_spec_rb Added files: databases/ruby-data_objects/patches: patch-lib_data_objects_spec_shared_command_spec_rb patch-lib_data_objects_spec_shared_connection_spec_rb patch-lib_data_objects_spec_shared_error_sql_error_spec_rb patch-lib_data_objects_spec_shared_reader_spec_rb patch-lib_data_objects_spec_shared_typecast_string_spec_rb patch-spec_command_spec_rb Log message: enable rspec3 for the do_* gems now that data_objects is really fixed CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/17 13:16:01 Modified files: lib/libevent : Makefile buffer.c evbuffer.c event.c event_tagging.c evutil.c kqueue.c log.c poll.c select.c signal.c Log message: Remove #ifdef HAVE_.*_H, just include the header files. Do not include sys/param.h. OK nicm@ CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/17 13:35:32 Modified files: sys/arch/i386/i386: bus_space.c machdep.c sys/arch/i386/include: bus.h Log message: backout i386/bus_space diff for now, req'd by deraadt@ - problems at boot | i386/bus_space.c:1.5->1.6 | i386/machdep.c:1.551->1.552 | include/bus.h:1.61->1.62 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 13:56:45 Modified files: sysutils/fdupes: Makefile distinfo sysutils/fdupes/patches: patch-Makefile patch-fdupes_c Removed files: sysutils/fdupes/patches: patch-md5_md5_c Log message: update to fdupes 1.51 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/17 14:16:13 Modified files: usr.bin/finger : util.c Log message: Use strlcpy() instead of strncpy() when making a copy of pw_gecos. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/17 14:19:15 Modified files: usr.bin/finger : extern.h lprint.c sprint.c util.c Log message: Instead of doing strvis() of gecos string on output, do it when storing them in struct person since they are only used for output. Uses reallocarray() for overflow detection. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/17 14:34:24 Modified files: sys/arch/i386/i386: bios.c Log message: Initialize comconsiot. Fixes problems with the (now backed out) i386 bus_space(9) diff. ok sthen@ CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/17 14:37:57 Modified files: sys/arch/i386/i386: bus_space.c machdep.c sys/arch/i386/include: bus.h Log message: reinstate i386/bus_space diff now that serial consoles are fixed in sys/arch/i386/i386/bios.c, ok deraadt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 14:46:42 Modified files: textproc/ruby-pygments.rb: Makefile Log message: MODPY_BUILDDEP not MODPY_BUILD_DEP, pointed out naddy@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/17 14:52:59 Modified files: lib/libevent : Makefile event.c evutil.c Log message: Remove some #ifdef HAVE_syscall. OK nicm@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/17 15:10:56 Modified files: usr.bin/col : col.1 Log message: Partial revert of rev. 1.7 (Nov. 21, 2000): The half line feed escape codes are decimal 8 and 9 (octal 010 and 011). While here, make it clear that the numbers are ASCII, and consistently use lower cases character names in the first column and decimal numbers in the parentheses at the end of the second column. OK millert@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/17 15:27:10 Modified files: usr.bin/col : col.c Log message: Correctly encode half line feed in the output stream for -f; this patch only changes two bits, note that '\011' != '9' == '\071'. Bug introduced by the original author, Michael Rendell, and committed by Keith Bostic on May 22, 1990 (CSRG SCCS rev. 5.1). The following operating systems are affected: 4.3BSD Reno, BSD Net/2, 4.4BSD, 4.4BSD Lite1, 4.4BSD Lite2, and all versions of 386BSD, NetBSD, OpenBSD, FreeBSD, DragonFly, Debian GNU/Linux (package bsdmainutils) and probably many others. "that's a fun one" millert@, "nice find" deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/17 15:57:47 Modified files: devel/p5-Class-AutoClass: Makefile distinfo Log message: put version back as it was supposed to be CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/17 16:25:07 Modified files: lib/libc/db/man: hash.3 Log message: trivial sync of the first sentence of the DESCRIPTION with btree(3) and recno(3); from jean-philippe at ouellet dot biz CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 16:42:23 Modified files: net/wireshark : Makefile distinfo Log message: security update to wireshark-1.10.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 16:44:24 Modified files: net/wireshark : Tag: OPENBSD_5_6 Makefile distinfo Removed files: net/wireshark/patches: Tag: OPENBSD_5_6 patch-Makefile_in Log message: MFC security update to wireshark 1.10.10 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/17 16:51:04 Modified files: www/seamonkey-i18n: distinfo Log message: seamonkey-2.30.it.langpack.xpi was rerolled upstream, fix distinfo. Reported by rpe@, nigel@ and naddy@, thanks all :) CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/17 16:59:46 Modified files: lib/libevent : Makefile event.c Log message: Remove #ifdef HAVE_backend and remove references to unimplemented backends. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/17 17:29:46 Modified files: net/wireshark : Makefile distinfo net/wireshark/patches: patch-epan_crypt_airpdcap_ccmp_c patch-ui_gtk_tcp_graph_c net/wireshark/pkg: PLIST-main PLIST-text Added files: net/wireshark/patches: patch-Makefile_in patch-epan_dissectors_packet-lbm_h patch-epan_dissectors_packet-lbmr_c patch-epan_dissectors_packet-lbtrm_c Log message: major version update to wireshark-1.12.1 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/17 19:27:43 Modified files: devel/ptlib : Makefile Log message: Allow use of ptlib without a ports tree installed. This removes the last use of FAKE_AS_ROOT = always-wrap in the tree. OK ajacoutot@ CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/17 20:31:01 Modified files: . : plus56.html Log message: fix typo; from TJ (blakkheim), thanks! CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 21:04:28 Modified files: lib/libssl/src/ssl: s3_enc.c t1_enc.c Log message: Typical malloc() with size multiplication to reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 21:10:01 Modified files: sbin/isakmpd : pf_key_v2.c Log message: Convert malloc() with a size var using multiplication to reallocarray(). Avoid assigning the size unless reallocarray() succeeds to avoid overflow. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 21:11:54 Modified files: sbin/iked : pfkey.c Log message: Simple malloc() to reallocarray() conversion to potentially avoid integer overflow. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 21:13:04 Modified files: regress/sys/ffs: fstest.c Log message: Simple malloc() to reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 21:16:19 Modified files: libexec/ld.so/ldd: ldd.c Log message: Simple malloc() to reallocarray() conversion. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/17 21:19:04 Modified files: libexec/ld.so/ldconfig: prebind.c Log message: Convert some malloc() and realloc() calls to reallocarray(). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 22:12:28 Modified files: lib/libc/regex : regcomp.c Log message: reallocarray() -- a little tricky to review ok doug millert CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/17 22:12:57 Modified files: usr.sbin/npppd/npppd: mppe.c npppd_ctl.c Log message: Use reallocarray() ok doug CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/17 22:19:31 Modified files: devel/ptlib : Makefile Log message: Move INSTALL_REPLACE; no pkg change. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/18 01:39:14 Modified files: misc/nyancat : Makefile Log message: Nope, EPOCH can't ever go away CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/10/18 01:50:06 Modified files: usr.bin/make : config.h Log message: enable the sinclude/-include feature support I wrote long ago. Other systems now have it, xenocara is using it. talked over with kettenis@ who checked release still works. I did a full bulk build with this and did not notice any issue. CVSROOT: /cvs Module name: src Changes by: armani@cvs.openbsd.org 2014/10/18 02:01:34 Modified files: sys/dev : video.c video_if.h sys/dev/usb : uvideo.c share/man/man4 : video.4 Log message: Add VIDIOC_G_INPUT ioctl, some ports need it (at least ffmpeg) ok ratchov@, sthen@, mpi@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/18 02:36:39 Modified files: textproc/mupdf : Makefile Added files: textproc/mupdf/patches: patch-docs_man_mupdf_1 patch-platform_x11_pdfapp_c Log message: add support for fine-grained zoom, for those pesky pdf where contents would just fit on your screen but for one pesky dpi. idea (and code) okay'd maintainer CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/18 02:56:21 Modified files: textproc/libxml: Makefile Added files: textproc/libxml/patches: patch-parser_c Log message: backport fix from upstream to unbreak the xmlcatalog command ptd out by aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/18 02:58:32 Modified files: databases/ruby-hiera-file: Makefile distinfo Log message: update to hiera-file-1.1.1 CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/10/18 03:30:01 Modified files: distrib/sets/lists/base: md.octeon Log message: sync CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/18 03:37:27 Modified files: devel/ruby-rspec/serverspec: Makefile Log message: add missing dependency; spotted by nigel@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/18 04:07:52 Added files: devel/gdb/patches: patch-libiberty_filename_cmp_c Log message: remove filename_cmp and filename_ncmp, which are replaced by macros. ok pascal@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/10/18 05:14:02 Modified files: . : plus.html Log message: plus.html for Oct 6-12. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/18 06:21:57 Modified files: sys/arch/arm/xscale: files.pxa2x0 pxa2x0.c sys/arch/landisk/conf: files.landisk sys/arch/macppc/conf: files.macppc sys/arch/vax/conf: files.vax sys/arch/zaurus/conf: files.zaurus sys/dev/adb : files.adb sys/dev/cardbus: files.cardbus sys/dev/isa : files.isa sys/dev/tc : files.tc Log message: Remove even more unnecessary `needs-flag' attributes from config machinery, as well as useless include of the generated flag files. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/18 08:08:48 Modified files: share/man/man1 : gcc-local.1 Log message: Mention -fstack-shuffle is a gcc4-only thing, but gets silently ignored by gcc3. Reminded by zhuk@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/10/18 08:27:11 Modified files: graphics/gimp/stable: Makefile distinfo graphics/gimp/stable/pkg: PLIST Removed files: graphics/gimp/stable/patches: patch-app_text_gimpfont_c patch-plug-ins_common_file-xwd_c Log message: Bugfix update to 2.8.14 CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/18 08:39:35 Modified files: devel/jansson : Makefile distinfo Log message: update to jansson-2.7 changelog: https://jansson.readthedocs.org/en/2.7/changes.html#version-2-7 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/18 08:39:40 Modified files: xserver/os : privsep.c Log message: No more /dev/agp0 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/18 08:56:29 Modified files: audio/libmikmod: Makefile distinfo audio/libmikmod/patches: patch-configure patch-playercode_mdreg_c patch-playercode_mplayer_c audio/libmikmod/pkg: DESCR PLIST Added files: audio/libmikmod/patches: patch-Makefile_in patch-drivers_Makefile_in patch-include_mikmod_h Removed files: audio/libmikmod/patches: patch-include_mikmod_h_in patch-libmikmod_Makefile_in audio/libmikmod/pkg: PFRAG.shared Log message: Update to 3.3.7, take maintainer, and overhaul pkg/DESCR tweaks and prods naddy@ sthen@ ok naddy@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/18 08:57:38 Modified files: audio/mikmod : Makefile distinfo audio/mikmod/patches: patch-mikmodrc patch-src_mlistedit_c audio/mikmod/pkg: DESCR Removed files: audio/mikmod/patches: patch-src_marchive_c Log message: Update to 3.2.6, overhaul pkg/DESCR tweaks and prods naddy@ sthen@ ok naddy@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/18 09:20:32 Modified files: sys/kern : kern_exec.c Log message: Don't assume that ep_taddr and ep_daddr are page-aligned. It is possible to construct ELF executables for which ep_daddr ends up not being properly aligned. Sanitize the addresses before setting up the address space for the new executable. Should fix the panic discovered by Alejandro Hernandez. ok miod@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/18 09:37:07 Modified files: sys/dev/isa : files.isa Log message: oops, too greedy CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/18 09:46:16 Modified files: usr.bin/mandoc : main.c read.c Log message: CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/18 10:13:16 Modified files: lib/libssl/src/ssl: d1_both.c d1_clnt.c d1_enc.c d1_pkt.c d1_srvr.c s23_clnt.c s23_srvr.c s3_both.c s3_clnt.c s3_pkt.c s3_srvr.c ssl_lib.c ssl_sess.c t1_clnt.c t1_enc.c t1_lib.c t1_srvr.c Log message: Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). arc4random provides high quality pseudo-random numbers, hence there is no need to differentiate between "strong" and "pseudo". Furthermore, the arc4random_buf() function is guaranteed to succeed, which avoids the need to check for and handle failure, simplifying the code. It is worth noting that a number of the replaced RAND_bytes() and RAND_pseudo_bytes() calls were missing return value checks and these functions can fail for a number of reasons (at least in OpenSSL - thankfully they were converted to wrappers around arc4random_buf() some time ago in LibreSSL). ok beck@ deraadt@ miod@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/18 10:48:28 Modified files: lib/libevent : Makefile buffer.c evutil.c kqueue.c select.c signal.c Log message: Remove the remaining #ifdef HAVE_ and the #define _GNU_SOURCE. OK nicm@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/18 11:08:32 Modified files: lib/libssl/src/crypto/err: err_all.c Log message: Sort/group includes. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/18 11:20:40 Modified files: lib/libssl/src/crypto/bn: bn_depr.c bn_prime.c lib/libssl/src/crypto/cms: cms_env.c lib/libssl/src/crypto/dh: dh_key.c lib/libssl/src/crypto/dsa: dsa_asn1.c dsa_depr.c dsa_key.c dsa_ossl.c dsa_sign.c lib/libssl/src/crypto/ecdsa: ecs_sign.c lib/libssl/src/crypto/engine: eng_padlock.c engine.h lib/libssl/src/crypto/evp: e_des.c e_des3.c evp_pkey.c p_dec.c p_enc.c lib/libssl/src/crypto/ocsp: ocsp_cl.c ocsp_lib.c ocsp_srv.c lib/libssl/src/crypto/pem: pem_oth.c pem_pk8.c pem_pkey.c pem_seal.c pem_sign.c lib/libssl/src/crypto/pkcs7: pk7_mime.c lib/libssl/src/crypto/rsa: rsa_crpt.c rsa_eay.c rsa_lib.c rsa_none.c rsa_x931.c Log message: None of these need to include CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/18 11:28:34 Modified files: sys/arch/amd64/amd64: pmap.c Log message: Make sure the direct map isn't executable on hardware that allows us to do so. Enforcing W^X in the kernel like this mitigates at least some ret2dir attacks. ok mlarkin@, deraadt@ CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/10/18 13:28:03 Modified files: sys/net : pipex.c Log message: Whitespace. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/18 14:28:19 Modified files: usr.bin/tmux : tmux.1 Log message: Fix description of Ss and Se. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/18 14:31:11 Modified files: lang/php : Makefile.inc lang/php/5.4 : Makefile distinfo lang/php/5.5 : Makefile distinfo Log message: update to php 5.4.34, 5.5.18 ok robert@ who also had a diff for this but forgot to commit it :) CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/18 14:43:52 Modified files: lib/libc/stdlib: realpath.c libexec/ld.so : dl_realpath.c Log message: Better POSIX compliance in realpath(3). millert@ made changes to realpath.c based on FreeBSD's version. I merged Todd's changes into dl_realpath.c. ok millert@, guenther@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/18 15:08:13 Modified files: audio/libmodplug: Makefile distinfo audio/libmodplug/pkg: PLIST Log message: Update to 0.8.8.5: fixes CVE-2013-4233 and CVE-2013-4234. ok sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/18 15:56:44 Modified files: lib/libevent : buffer.c evutil.c kqueue.c select.c Log message: Remove some #ifdef from libevent. OK nicm@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/18 16:36:36 Modified files: sys/arch/macppc/macppc: locore.S sys/arch/socppc/socppc: locore.S Log message: Don't use %r1 to refer to bit 1. No binary difference. CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/18 21:25:12 Modified files: . : 56.html Log message: - mention dlg's ticket locks - move reallocarray and fread/fwrite integer flow checks to security improvements section CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/18 21:54:57 Modified files: sys/dev/pci : if_msk.c Log message: Use sc_if->sk_pktlen to specify the maximum DMA transfer size and maximum DMA segment size when setting up the TX buffers in msk_init_tx_ring(). ok jsg@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/18 21:56:28 Modified files: libexec/ld.so : dl_realpath.c lib/libc/stdlib: realpath.c Log message: Revert last commit due to changed semantics found by make release. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/19 01:39:26 Modified files: devel/p5-Class-AutoClass: Makefile Log message: Missed bump for maintainer change. CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/10/19 01:46:45 Modified files: games/0ad : Makefile.inc games/0ad/base : Makefile distinfo games/0ad/base/patches: patch-build_premake_premake4_build_gmake_bsd_Premake4_make patch-build_workspaces_update-workspaces_sh patch-libraries_source_fcollada_src_Makefile games/0ad/base/pkg: PLIST games/0ad/data : distinfo games/0ad/data/pkg: PLIST Removed files: games/0ad/base/patches: patch-source_network_NetServer_cpp Log message: Update to 0ad-0.0.17. tweak from kirby@, ok bcallah@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/19 02:42:54 Modified files: lang/coffeescript: Makefile Added files: lang/coffeescript/patches: patch-package_json Log message: Relax the version check on mkdirp, so it uses the newer mkdirp bundled with Node instead of trying to download mkdirp-0.3.5 from registry.npmjs.org Spotted by sthen@ OK abieber@, jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 06:43:46 Modified files: sysutils/virt-manager: Makefile Log message: add missing dependency on gtk-vnc spotted by Predrag Punosevac CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/10/19 07:21:42 Modified files: faq : current.html Log message: More sendmail bits to remove CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/19 08:27:41 Modified files: usr.bin/du : du.1 du.c Log message: in usage() and SYNOPSIS, sort options as suggested by jmc@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 08:30:12 Modified files: x11/xkbcommon : Makefile distinfo x11/xkbcommon/files: parser.c x11/xkbcommon/patches: patch-Makefile_in x11/xkbcommon/pkg: PLIST Removed files: x11/xkbcommon/patches: patch-configure patch-test_x11comp_c Log message: - update to libxkbcommon-0.5.0 - all patches merged upstream (aside from those related to bison antiquus) CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 10:21:04 Modified files: lib/libssl/src/ssl: Tag: OPENBSD_5_5 d1_srtp.c t1_lib.c Log message: fix two remotely triggerable memory leaks. tested by jasper CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 10:21:56 Modified files: lib/libssl/src/ssl: Tag: OPENBSD_5_4 d1_srtp.c t1_lib.c Log message: fix two remotely triggerable memory leaks. tested by jasper CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/10/19 10:35:53 Modified files: sys/dev/usb : ulpt.c Log message: More gracefully handle firmware loading errors in ulpt(4). The previous lack of error handling could trigger a kernel crash in some situations, with ulptwrite being called while not ready. ok deraadt phessler CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 11:19:38 Modified files: devel/ruby-rspec/3/its: Makefile Log message: add missing dependency; spottedy by rpe@ and naddy@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/19 11:58:14 Modified files: lib/libc/stdlib: malloc.3 Log message: Revamp malloc.3 by reordering the sections and rewriting parts. The old man page had a lot of useful information, but it was all mixed together which made it difficult to reference. The main theme in this commit is that the sections are more focused: * DESCRIPTION describes the overall behavior * RETURN VALUES describes what it may return (including implementation defined values) * EXAMPLES shows why we recently started an audit on malloc and realloc usage in the tree. * Added CAVEATS which describes what is implementation defined, gotchas and security implications of misusing these functions * Added IDIOMS which describes how these functions should or should not be used The MALLOC_OPTIONS section was left unchanged. Function names were added to DIAGNOSTICS and STANDARDS. The MALLOC_OPTIONS and DIAGNOSTICS sections were pushed down in the page so more pertinent information is higher up. This has gone through several revisions thanks to input from deraadt@ and schwarze@. Ingo also helped with some of the mandoc formatting. OK schwarze@ (as far as it is a good starting point and the code snippets look ok) CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/19 12:24:58 Modified files: usr.bin/du : du.1 du.c Log message: rearrange -d, again, after giving ingo some dodgy advice; ok ingo CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/19 12:40:46 Modified files: driver/xf86-video-savage: ChangeLog Makefile.in aclocal.m4 config.guess config.sub configure configure.ac depcomp driver/xf86-video-savage/man: Makefile.in driver/xf86-video-savage/src: Makefile.in savage_driver.c savage_driver.h savage_exa.c savage_video.c Log message: Update to xf86-video-savage 2.3.7. CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/10/19 13:08:48 Modified files: lang/ghc : Makefile Log message: For the new ghc, we need a newer bootstrapper. Strange enough, at least our current ghc (7.6.3) doesn't build with integer-simple, so use integer-gmp instead. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/19 13:10:59 Modified files: driver/xf86-video-mga: ChangeLog Makefile.in aclocal.m4 config.guess config.h.in config.sub configure configure.ac depcomp driver/xf86-video-mga/man: Makefile.in driver/xf86-video-mga/src: Makefile.am Makefile.in mga.h mga_driver.c mga_exa.c mga_storm.c driver/xf86-video-mga/util: Makefile.in Removed files: driver/xf86-video-mga/src: mga_esc.c Log message: Update to xf86-video-mga 1.6.3 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/19 13:17:50 Modified files: . : MODULES 3RDPARTY Log message: update CVSROOT: /cvs Module name: src Changes by: lum@cvs.openbsd.org 2014/10/19 14:53:51 Modified files: usr.bin/mg : tutorial Log message: Move the description of mg automatic recentering further down the tutorial, next to the C-l (recenter) command description. This also removes confusion if you read the tutorial on a screen larger than 24 lines. Input jmc@ ok florian@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/19 15:05:53 Modified files: lib/libc/stdlib: malloc.3 Log message: make RETURN VALUES more concise and fix two instances of "new sentence, new line" while here feedback and ok jmc@, ok doug@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/10/19 15:08:19 Modified files: . : errata54.html errata55.html errata56.html Log message: new errata, openssl leaks and kernexec crash CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 15:35:59 Modified files: devel/ruby-rspec/3/expectations: Makefile distinfo Log message: update to rspec-expectations-3.1.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 15:36:12 Modified files: devel/ruby-rspec/3/mocks: Makefile distinfo Log message: update to rspec-mocks-3.1.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 15:36:33 Modified files: devel/ruby-rspec/3/support: Makefile distinfo devel/ruby-rspec/3/support/pkg: PLIST Log message: update to rspec-support-3.1.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/19 15:36:45 Modified files: devel/ruby-rspec/3/core: Makefile distinfo Log message: update to rspec-core-3.1.7 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 16:17:52 Modified files: sys/kern : Tag: OPENBSD_5_4 kern_exec.c Log message: Backport r1.147 by kettenis: Don't assume that ep_taddr and ep_daddr are page-aligned. It is possible to construct ELF executables for which ep_daddr ends up not being properly aligned. Sanitize the addresses before setting up the address space for the new executable. Should fix the panic discovered by Alejandro Hernandez. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 16:17:58 Modified files: sys/kern : Tag: OPENBSD_5_5 kern_exec.c Log message: Backport r1.147 by kettenis: Don't assume that ep_taddr and ep_daddr are page-aligned. It is possible to construct ELF executables for which ep_daddr ends up not being properly aligned. Sanitize the addresses before setting up the address space for the new executable. Should fix the panic discovered by Alejandro Hernandez. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 16:18:02 Modified files: sys/kern : Tag: OPENBSD_5_6 kern_exec.c Log message: Backport r1.147 by kettenis: Don't assume that ep_taddr and ep_daddr are page-aligned. It is possible to construct ELF executables for which ep_daddr ends up not being properly aligned. Sanitize the addresses before setting up the address space for the new executable. Should fix the panic discovered by Alejandro Hernandez. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/19 17:14:24 Modified files: graphics/ffmpeg: Makefile distinfo graphics/ffmpeg/patches: patch-configure graphics/ffmpeg/pkg: PLIST x11/mplayer : Makefile Added files: graphics/ffmpeg/patches: patch-libavdevice_x11grab_c Log message: Update to FFmpeg 20141010 snapshot. From 2.4 branch. ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/19 18:20:04 Modified files: usr.sbin/amd/amd: Makefile amd.c get_args.c mapc.c mount_fs.c mtab.c sched.c umount_fs.c xutil.c usr.sbin/amd/amq: Makefile amq.c usr.sbin/amd/config: os-bsd44.h os-defaults.h usr.sbin/amd/include: config.h Removed files: usr.sbin/amd/config: Configure Makefile.aix3 Makefile.bsd44 Makefile.hpux Makefile.irix Makefile.irix3 Makefile.irix4 Makefile.stellix arch misc-aix3.h misc-hpux.h misc-irix.h misc-next.h misc-stellix.h misc-ultrix.h mount_aix.c mount_irix.c mount_stellix.c mtab_aix.c mtab_bsd.c mtab_file.c mtab_ultrix.c os-acis43.h os-aix3.h os-aux.h os-concentrix.h os-convex.h os-dgux.h os-fpx4.h os-hcx.h os-hlh42.h os-hpux.h os-irix.h os-irix3.h os-irix4.h os-next.h os-pyrOSx.h os-riscix.h os-sos3.h os-sos4.h os-stellix.h os-type os-u2_2.h os-u3_0.h os-u4_0.h os-u4_2.h os-umax43.h os-utek.h os-utx32.h os-xinu43.h usr.sbin/amd/fsinfo: Makefile fsi_analyze.c fsi_data.h fsi_dict.c fsi_gram.y fsi_lex.l fsi_util.c fsinfo.8 fsinfo.c fsinfo.h wr_atab.c wr_bparam.c wr_dumpset.c wr_exportfs.c wr_fstab.c usr.sbin/amd/fsinfo/conf: automounts csg_sun3 csg_vax diskless_sun3_sos4 users usr.sbin/amd/fsinfo/conf/hosts: achilles.doc.ic.ac.uk bigears.doc.ic.ac.uk dylan.doc.ic.ac.uk flamingo.doc.ic.ac.uk ganymede.doc.ic.ac.uk gould.doc.ic.ac.uk gummo.doc.ic.ac.uk ivax.doc.ic.ac.uk obsidian.doc.ic.ac.uk pelican.doc.ic.ac.uk rvax.doc.ic.ac.uk sky.doc.ic.ac.uk svax.doc.ic.ac.uk tcsun1.doc.ic.ac.uk tcsun2.doc.ic.ac.uk tcsun3.doc.ic.ac.uk tcsun4.doc.ic.ac.uk tcsun5.doc.ic.ac.uk toytown.doc.ic.ac.uk truth.doc.ic.ac.uk tsun1.doc.ic.ac.uk tsun10.doc.ic.ac.uk tsun11.doc.ic.ac.uk tsun12.doc.ic.ac.uk tsun13.doc.ic.ac.uk tsun14.doc.ic.ac.uk tsun15.doc.ic.ac.uk tsun16.doc.ic.ac.uk tsun17.doc.ic.ac.uk tsun18.doc.ic.ac.uk tsun19.doc.ic.ac.uk tsun2.doc.ic.ac.uk tsun3.doc.ic.ac.uk tsun4.doc.ic.ac.uk tsun5.doc.ic.ac.uk tsun6.doc.ic.ac.uk tsun7.doc.ic.ac.uk tsun8.doc.ic.ac.uk tsun9.doc.ic.ac.uk tsunfs.doc.ic.ac.uk whoops.doc.ic.ac.uk usr.sbin/amd/include: uwait.h usr.sbin/amd/mk-amd-map: Makefile mk-amd-map.8 mk-amd-map.c Log message: Start removing portability goo: we have syslog(), strerror(), POSIX regexp, BSD-style getmntinfo(), BSD signals, 4.4BSD unmount(), etc Delete configurations for other OSes Delete fsinfo and mk-amd-map, as we don't build them. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 18:31:55 Modified files: lang/seed7 : Makefile distinfo lang/seed7/pkg : PLIST Log message: Update to 20141019 - among other things, seed7 now has sqlite3 support. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 18:37:51 Modified files: audio/libmodplug: Tag: OPENBSD_5_6 Makefile Added files: audio/libmodplug/patches: Tag: OPENBSD_5_6 patch-src_load_abc_cpp Log message: Add patch to fix CVE-2013-4233 and CVE-2013-4234 Taken from https://github.com/Konstanty/libmodplug/commit/f5e45759ad12f9e057e13a598421e610350f70a9 and https://github.com/Konstanty/libmodplug/commit/bcee04058dcbe22bfb488614eb9a8cf54304a740 requested and go ahead from jasper@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 18:38:50 Modified files: sys/conf : files Log message: unconditionally build sha2 so we can use it in all the kernels. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 18:40:19 Modified files: sys/dev : rnd.c Log message: use SHA512 to hash entropy instead of MD5 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/19 18:40:33 Modified files: sys/crypto : crypto.c Log message: replace bzeros after allocations with M_ZERO and PR_ZERO as appropriate. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 18:41:46 Modified files: audio/libmodplug: Tag: OPENBSD_5_5 Makefile Added files: audio/libmodplug/patches: Tag: OPENBSD_5_5 patch-src_load_abc_cpp Log message: Add patch to fix CVE-2013-4233 and CVE-2013-4234 Taken from https://github.com/Konstanty/libmodplug/commit/f5e45759ad12f9e057e13a598421e610350f70a9 and https://github.com/Konstanty/libmodplug/commit/bcee04058dcbe22bfb488614eb9a8cf54304a740 requested and go ahead from jasper@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 18:48:57 Modified files: sys/dev : rnd.c Log message: typo; deraadt CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 19:36:02 Modified files: games/freecol : Makefile distinfo games/freecol/pkg: PLIST Log message: Update to 0.11.0 Changelog: http://sourceforge.net/p/freecol/wiki/0.11.0%20Release%20Notes/ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/19 19:43:06 Modified files: usr.bin/mandoc : tree.c Log message: show the {MDOC,MAN}_EQN node, it contains interesting information, in particular line and column numbers and flags; but hide the uninteresting EQN_ROOT box CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 19:57:52 Modified files: math/veusz : Makefile distinfo Log message: Update to 1.22 Changelog: http://home.gna.org/veusz/releasenotes/1.22-changelog.txt CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/19 19:58:10 Modified files: usr.bin/openssl: s_client.c Log message: s_client: don't call shutdown on a non-existent socket descriptor. from Dmitry Eremin-Solenikov ok beck@, deraadt@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 20:28:57 Modified files: multimedia/livestreamer-curses: Makefile distinfo multimedia/livestreamer-curses/pkg: PLIST Log message: Update to 1.3.0 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/19 20:31:44 Modified files: usr.bin/mandoc : man.c man_term.c mdoc.c mdoc_term.c roff.c Log message: correct spacing before inline equations CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/19 20:33:42 Modified files: usr.sbin/amd/amd: afs_ops.c amd.c get_args.c host_ops.c info_file.c info_nis.c info_passwd.c info_union.c mapc.c mount_fs.c nfs_ops.c nfs_start.c nfs_subr.c srvr_nfs.c ufs_ops.c util.c usr.sbin/amd/config: Makefile.config os-bsd44.h os-defaults.h usr.sbin/amd/include: am.h usr.sbin/amd/rpcx: mount.h mount_xdr.c nfs_prot.h Log message: unifdef -DHAS_REGEXP -DHAS_PASSWD_MAPS -DHAS_FILE_MAPS \ -DHAS_NIS_MAPS -DHAS_NIS_RELOAD -DRPC_4 -DHAS_UNION_MAPS \ -DHAS_TCP_NFS -DOS_HAS_NDBM -DNFS_PROTOCOL_VERSION=3 \ -DNFS_ARGS_NEEDS_PATH -DPRECISE_SYMLINKS -DHAS_EMPTY_AUTOMOUNTS \ -DNEED_MNTOPT_PARSER -DSHORT_MOUNT_NAME -DHAS_NFS_QUALIFIED_NAMES \ -UUPDATE_MTAB -UFIXUP_MNTENT -UMNTENT_HDR -UMNTINFO_DEV \ -UMNTOPT_COMPRESS -UMNTOPT_NQNFS -UINFORM_MOUNTD \ -USUNOS4_WORKAROUND -UULTRIX_HACK ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 20:41:04 Log message: Import sysutils/lookat ok juanfra@ lookat is a program to view Un*x text files and manual pages. It is inspired by the DOS program list.com, designed to be more user-friendly than the standard Un*x pagers. Status: Vendor Tag: bcallah Release Tags: bcallah_20141019 N ports/sysutils/lookat/Makefile N ports/sysutils/lookat/distinfo N ports/sysutils/lookat/patches/patch-getline_c N ports/sysutils/lookat/patches/patch-eng_h N ports/sysutils/lookat/pkg/PLIST N ports/sysutils/lookat/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 20:41:25 Modified files: sysutils : Makefile Log message: +lookat CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/19 20:46:00 Modified files: usr.bin/mandoc : man_term.c mdoc_term.c Log message: correct spacing *after* inline equations (much simpler than expected) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 21:14:12 Modified files: editors/tpad : Makefile distinfo editors/tpad/patches: patch-configure Log message: Update to 5.7.1.3 Despite the seemingly large version number change, just smaller fixes. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 21:41:25 Modified files: textproc/mxml : Makefile distinfo textproc/mxml/patches: patch-configure textproc/mxml/pkg: PLIST Log message: Bugfix update to 2.9 CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/10/19 21:43:01 Modified files: usr.bin/ssh : hostfile.c Log message: whitespace CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/19 21:43:40 Modified files: sys/netinet : tcp_subr.c Log message: use sha512 instead of md5 for tcp isn. ok deraadt CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/19 21:55:40 Modified files: www/liferea : Makefile distinfo Log message: Bugfix update to 1.10.12 CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/10/20 00:04:06 Modified files: gnu/usr.bin/binutils/gas: expr.c read.c gnu/usr.bin/binutils-2.17/gas: expr.c read.c Log message: Backport fix for binutils 11867: .quad directive not assembled correctly. Alan Modra (and Alan's employer) graciously permitted use of his patch under GPLv2. ok kettenis@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/20 00:14:23 Modified files: xserver/hw/xfree86: Makefile.am Log message: OpenBSD's make now supports -include. So reduce diff with upstreams. ok kettenis@ espie@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/10/20 00:14:42 Modified files: xserver/hw/xfree86: Makefile.in Log message: regen CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/20 00:55:59 Modified files: usr.sbin/amd/amd: Makefile afs_ops.c amd.c host_ops.c mapc.c mount_fs.c mtab.c nfs_ops.c opts.c restart.c ufs_ops.c usr.sbin/amd/amq: Makefile usr.sbin/amd/include: am.h config.h Removed files: usr.sbin/amd/amd: info_hes.c usr.sbin/amd/config: Makefile.config RELEASE os-bsd44.h os-defaults.h Log message: Change MTAB_TYPE_UFS from "ufs" to "ffs", fixing mount-restarting for them. Perform one level of expansion on the various "portability" macros from os-*.h Delete support for Hesiod and the pre-4.4 versions of the NFS API Delete the no-op unlock_mntlist() unifdef -UFASCIST_DF_COMMAND -UMOUNT_HELPER_SOURCE Move the struct mntent and MNTMAXSTR definitions into include/am.h Move the commented-out -DHAS_NDBM_MAPS into amd/Makefile Expand OS_REP to "bsd44". With config/* empty, delete them. "lot of stuff...but I know your process on this" deraadt@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/20 01:06:00 Modified files: usr.bin/systat : mbufs.c Log message: fix if (statement); ok dlg@ CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/10/20 01:27:46 Modified files: usr.bin/make : make.1 Log message: document sinclude/-include CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/20 01:52:19 Modified files: devel/ruby-rspec/3: Makefile.inc devel/ruby-rspec/3/core: Makefile devel/ruby-rspec/3/expectations: Makefile devel/ruby-rspec/3/its: Makefile devel/ruby-rspec/3/mocks: Makefile devel/ruby-rspec/3/rspec: Makefile devel/ruby-rspec/3/support: Makefile Log message: take maintainership CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/20 02:38:54 Modified files: mail/bogofilter: Makefile distinfo mail/bogofilter/pkg: PFRAG.qdbm PLIST Removed files: mail/bogofilter/patches: patch-configure Log message: Long overdue update to bogofilter 1.2.4. Fixes two CVEs: http://bogofilter.sourceforge.net/security/bogofilter-SA-2010-01 http://bogofilter.sourceforge.net/security/bogofilter-SA-2012-01 And lots of crash (and other errors..) fixes are listed on http://bogofilter.sourceforge.net/NEWS .... Tested by Bryan Linton, ok/tweaks ajacoutot@, MAINTAINER timeout. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/20 03:22:49 Modified files: net/spectrum : Makefile net/spectrum/patches: patch-spectrum_cfg net/spectrum/pkg: spectrum.rc Log message: Fix the check command to the rcscript. While there, disable the transport in the example configuration file. Lots of feedback and OK ajacoutot@, jasper@ on earlier version. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/20 03:53:26 Modified files: x11/xarchiver : Makefile distinfo Removed files: x11/xarchiver/patches: patch-src_window_c Log message: Bugfix update to xarchiver 0.5.4. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/20 04:57:00 Modified files: geo/gdal : Makefile distinfo geo/gdal/pkg : PLIST-main Removed files: geo/gdal/patches: patch-frmts_mbtiles_mbtilesdataset_cpp patch-ogr_ogrsf_frmts_cartodb_ogrcartodbdatasource_cpp patch-ogr_ogrsf_frmts_couchdb_ogrcouchdbdatasource_cpp patch-ogr_ogrsf_frmts_geojson_ogresrijsonreader_cpp patch-ogr_ogrsf_frmts_geojson_ogrgeojsonreader_cpp patch-ogr_ogrsf_frmts_geojson_ogrtopojsonreader_cpp patch-ogr_ogrsf_frmts_gme_ogrgmejson_cpp Log message: Bugfix update to gdal 1.11.1. Remove patches from http://trac.osgeo.org/gdal/ticket/5449, merged. See http://trac.osgeo.org/gdal/wiki/Release/1.11.1-News for changes. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/20 05:45:29 Modified files: multimedia/get_iplayer: Makefile distinfo multimedia/get_iplayer/patches: patch-get_iplayer Log message: update to get_iplayer 2.87 release notes at https://github.com/dinkypumpkin/get_iplayer/wiki/release287 (including details on how get_iplayer handles the new 30-day expiry; in short, use pid/url for programmes past 7 days) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/20 05:56:37 Modified files: sysutils/coreutils: Makefile distinfo sysutils/coreutils/patches: patch-configure Added files: sysutils/coreutils/patches: patch-Makefile_in Log message: Update to coreutils-8.23 CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/20 06:55:21 Modified files: lib/libssl/src/ssl: ssl_asn1.c Log message: SSL: Fix memory leak in d2i_SSL_SESSION. Modified version of patch from Dmitry Eremin-Solenikov. ==28360== 98 bytes in 2 blocks are definitely lost in loss record 7 of 7 ==28360== at 0x402AC54: realloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==28360== by 0x40E2D2C: ASN1_STRING_set (asn1_lib.c:393) ==28360== by 0x40EC22C: asn1_ex_c2i (tasn_dec.c:959) ==28360== by 0x40EC632: asn1_d2i_ex_primitive (tasn_dec.c:824) ==28360== by 0x40ED2E6: ASN1_item_ex_d2i (tasn_dec.c:230) ==28360== by 0x40ED421: ASN1_item_d2i (tasn_dec.c:133) ==28360== by 0x40F0335: d2i_ASN1_OCTET_STRING (tasn_typ.c:75) ==28360== by 0x405FD6D: d2i_SSL_SESSION (ssl_asn1.c:367) ==28360== by 0x405DD6E: ssl3_send_newsession_ticket (s3_srvr.c:2743) ==28360== by 0x405EA48: ssl3_accept (s3_srvr.c:665) ==28360== by 0x4067C34: SSL_accept (ssl_lib.c:922) ==28360== by 0x404E97B: ssl23_get_client_hello (s23_srvr.c:573) ok miod@ beck@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/10/20 07:06:54 Modified files: lib/libssl/src/crypto: md32_common.h lib/libssl/src/crypto/md4: md4.h md4_locl.h lib/libssl/src/crypto/md5: md5.h md5_locl.h lib/libssl/src/crypto/ripemd: rmd_locl.h lib/libssl/src/crypto/sha: sha.h Log message: digests: *_LONG_LOG2 is not used, stop talking about it. Modified patch from Dmitry Eremin-Solenikov leave the sole public define in ripemd.h ok deraadt@ miod@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/10/20 08:50:41 Modified files: usr.sbin/relayd: parse.y relayd.h Log message: Remove the "interface" option from the "transparent forward" directive. It was mandatory in the grammar but never used in the code. A fully transparent relay can now be specified with the following directive in a relay block: "transparent forward to destination". OK sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 09:04:37 Modified files: usr.bin/mandoc : roff.c Log message: correctly parse spacing around in-line equations at the beginning and at the end of input lines; issue reported by kristaps@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/20 09:10:00 Modified files: textproc/mupdf : Makefile Log message: add another MASTER_SITE for old versions. OK sthen@ (maintainer) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 09:49:45 Modified files: usr.bin/mandoc : man.c man_term.c mdoc.c mdoc_term.c Log message: correct the spacing after in-line equations that start at the beginning of an input line but end before the end of an input line CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/20 09:51:54 Modified files: textproc/libical: Makefile distinfo textproc/libical/patches: patch-src_libical_icaltz-util_c textproc/libical/pkg: DESCR PLIST Log message: Update to libical-1.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/20 09:57:12 Modified files: x11/polkit-qt4 : Makefile x11/polkit-qt4/pkg: PLIST productivity/libqzeitgeist: Makefile productivity/libqzeitgeist/pkg: PLIST Log message: Pass -DCMAKE_BUILD_TYPE=Release to have a proper release.cmake file instead of the noconfig one. I wonder if at one point this should go into the cmake MODULE as a default... CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 10:19:05 Modified files: usr.bin/getent : getent.c Log message: As reported by Marcus Merighi, hosts enumeration no longer works. The asr library no longer supports gethostent(3), and there is no reasonable way to implement it. Consequently, as suggested by guenther@, error out when hosts enumeration is requested. OK deraadt@ guenther@ florian@ Also remove the now useless calls to sethostent(3) and endhostend(3) as suggested by florian@. CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/10/20 10:33:32 Modified files: sys/net : pipex.c Log message: pipex(4): Converted to use pool(9) OK blambert@ yasuoka@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/20 11:30:39 Modified files: devel/ccache : Makefile distinfo devel/ccache/patches: patch-execute_c patch-test_sh Log message: update to ccache 3.1.10 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 11:58:56 Modified files: share/man/man7 : mdoc.7 Log message: improve documentation of .Fa, .Va, and .Vt; inspired by a discussion with matthew@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/20 12:34:38 Modified files: devel/gettext : Makefile distinfo devel/gettext/patches: patch-gettext-runtime_intl_localcharset_c patch-gettext-tools_gnulib-lib_Makefile_in patch-gettext-tools_src_Makefile_in Log message: maintenance update to 0.19.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/20 13:08:40 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo Log message: update to specinfra-2.3.2 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/20 13:19:20 Modified files: sys/dev/pci : ciss_pci.c Log message: Be sure to return if the pci interrupt can't be mapped, instead of falling through the remainder of the attachment logic. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 13:21:31 Modified files: usr.bin/mandoc : mandoc.h read.c roff.c Log message: protect the roff parser from dividing by zero; issue found and patch written by kristaps@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 13:35:23 Modified files: lib/libc/stdlib: malloc.3 Log message: List extensions in the STANDARDS section, replacing some text below CAVEATS. Remove excessive technicalities on zero-sized objects as suggested by deraadt@. contributions and ok deraadt@, ok jmc@ on an earlier version CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/20 15:24:05 Modified files: lib/libssl/src/ssl: Tag: OPENBSD_5_6 ssl_lib.c Log message: disable SSLv3 by default. all agreed. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 16:13:11 Modified files: usr.bin/du : du.c Log message: fix a regression that i caused in rev. 1.26: *do* report the size of files listed on the command line, no matter what options are given; issue reported by edd@; ok millert@ edd@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 16:29:26 Modified files: usr.bin/tmux : cmd-attach-session.c cmd-bind-key.c cmd-break-pane.c cmd-capture-pane.c cmd-choose-buffer.c cmd-choose-client.c cmd-choose-tree.c cmd-clear-history.c cmd-clock-mode.c cmd-command-prompt.c cmd-confirm-before.c cmd-copy-mode.c cmd-delete-buffer.c cmd-detach-client.c cmd-display-message.c cmd-display-panes.c cmd-find-window.c cmd-has-session.c cmd-if-shell.c cmd-join-pane.c cmd-kill-pane.c cmd-kill-server.c cmd-kill-session.c cmd-kill-window.c cmd-link-window.c cmd-list-buffers.c cmd-list-clients.c cmd-list-commands.c cmd-list-keys.c cmd-list-panes.c cmd-list-sessions.c cmd-list-windows.c cmd-load-buffer.c cmd-lock-server.c cmd-move-window.c cmd-new-session.c cmd-new-window.c cmd-paste-buffer.c cmd-pipe-pane.c cmd-refresh-client.c cmd-rename-session.c cmd-rename-window.c cmd-resize-pane.c cmd-respawn-window.c cmd-rotate-window.c cmd-run-shell.c cmd-save-buffer.c cmd-select-layout.c cmd-select-pane.c cmd-select-window.c cmd-send-keys.c cmd-set-buffer.c cmd-set-environment.c cmd-set-option.c cmd-show-environment.c cmd-show-messages.c cmd-show-options.c cmd-source-file.c cmd-split-window.c cmd-suspend-client.c cmd-swap-pane.c cmd-swap-window.c cmd-switch-client.c cmd-unbind-key.c cmd-unlink-window.c cmd-wait-for.c key-bindings.c tmux.h Log message: Instead of setting up the default keys by building the key struct directly with a helper function in the cmd_entry, include a table of bind-key commands and pass them through the command parser and a temporary cmd_q. As well as being smaller, this will allow default bindings to be command sequences which will probably be needed soon. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 16:34:31 Modified files: usr.bin/tmux : cmd-respawn-pane.c cmd-select-layout.c Log message: Missed a couple of cmd_entry struct members from previous. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 16:44:30 Modified files: usr.bin/tmux : Makefile cmd-list-commands.c cmd-list-keys.c Log message: Move list-commands into list-keys. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 16:45:37 Removed files: usr.bin/tmux : cmd-list-commands.c Log message: Argh, meant to remove this file... CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/20 16:56:07 Removed files: usr.bin/apropos: Makefile apropos.1 apropos.c usr.bin/whatis : Makefile whatis.1 whatis.c Log message: superseded by usr.bin/mandoc/mansearch.c removal suggested by daniel@; ok deraadt@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 16:57:46 Modified files: usr.bin/tmux : Makefile cmd-new-session.c Removed files: usr.bin/tmux : cmd-has-session.c Log message: Move tiny has-session function into cmd-new-session.c. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 17:01:51 Modified files: usr.bin/tmux : Makefile cmd-detach-client.c Removed files: usr.bin/tmux : cmd-suspend-client.c Log message: Move suspend-client code into detach-client. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/20 17:14:34 Modified files: telephony/asterisk: Makefile distinfo Log message: asterisk 11.13.1, disable sslv3 by default CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 17:27:14 Modified files: usr.bin/tmux : arguments.c client.c cmd-confirm-before.c cmd-list-keys.c job.c screen.c server-fn.c signal.c style.c tmux.c tmux.h xmalloc.c Log message: Tidy up some includes. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 17:35:28 Modified files: usr.bin/tmux : cmd-break-pane.c cmd-choose-buffer.c cmd-choose-client.c cmd-choose-tree.c cmd-display-message.c cmd-find-window.c cmd-list-buffers.c cmd-list-clients.c cmd-list-sessions.c cmd-list-windows.c cmd-new-session.c cmd-new-window.c cmd-split-window.c tmux.h Log message: Move template defines back into .c files. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/20 17:53:42 Modified files: mail/mutt : Makefile mail/mutt/pkg : DESCR Log message: add gpgme support to mutt, from Mike Burns, DESCR entry from me CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/20 17:56:14 Modified files: mail : Makefile Log message: build mutt,gpgme CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/20 17:57:14 Modified files: usr.bin/tmux : cmd-queue.c control.c log.c options.c screen-write.c status.c tmux.h xmalloc.c Log message: Better format for printf format attributes. CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/10/20 18:12:46 Modified files: gnu/usr.bin/cvs: Makefile.bsd-wrapper Log message: no more kerberos. ok deraadt@, dcoppa@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/20 20:29:54 Modified files: etc/examples : relayd.conf usr.sbin/relayd: relayd.conf.5 Log message: Remove SSLv2 and SSLv3 references from the example relayd.conf and the relevant example snippet in the relayd.conf(5) man page. Change the default SSL protocols in the example file/man page to "no tlsv1.0" (suggested by sthen@), which will enable the TLSv1.1 and TLSv1.2 protocols only. feedback/ok jsing@ reyk@ sthen@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/20 23:08:14 Modified files: lang/tcl/8.5 : Makefile lang/tcl/8.5/patches: patch-library_tm_tcl patch-unix_Makefile_in lang/tcl/8.5/pkg: PLIST Log message: Remove unecessary dir in Tcl's own module path. Adjust extension module path to not conflict with anything in SUBST_VARS. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/20 23:08:53 Modified files: lang/tcl/8.6 : Makefile lang/tcl/8.6/patches: patch-library_tm_tcl patch-unix_Makefile_in lang/tcl/8.6/pkg: PLIST Log message: Remove unecessary dir in Tcl's own module path. Adjust extension module path to not conflict with anything in SUBST_VARS. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/20 23:09:43 Modified files: x11/tkcon : Makefile x11/tkcon/pkg : PLIST Log message: Adjust installation for new Tcl Module path. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/20 23:10:19 Modified files: devel/tcllib : Makefile devel/tcllib/patches: patch-installer_tcl patch-support_installation_actions_tcl patch-support_installation_modules_tcl devel/tcllib/pkg: PLIST Log message: Install as many extensions as easily possible as Tcl Modules. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/20 23:10:34 Modified files: devel/tklib : Makefile devel/tklib/patches: patch-installer_tcl patch-support_installation_actions_tcl patch-support_installation_modules_tcl devel/tklib/pkg: PLIST Log message: Install as many extensions as easily possible as Tcl Modules. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/21 00:15:16 Modified files: usr.bin/tftp : tftp.c Log message: cope with sending or receiving files beyond 65536 blocks in length. reported by justin mayes on misc@ ok deraadt@ CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/10/21 02:48:38 Modified files: sys/dev : ipmi.c Log message: Style + typos in debug printfs. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/21 02:57:00 Modified files: www/firefox-esr-i18n: Tag: OPENBSD_5_6 distinfo Log message: regen distinfo for 31.1.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/21 04:04:14 Modified files: devel/p5-Parallel-ForkManager: Makefile distinfo Log message: update to Parallel-ForkManager-1.06 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/21 04:10:48 Modified files: audio/p5-cddb : Makefile distinfo Log message: update to p5-CDDB 1.222 CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/10/21 04:52:53 Modified files: sys/net : if_tun.c pipex.c pipex.h pipex_local.h Log message: tun(4) has a pipex session which is used for multicast internally, it wasn't freeed when the interface is destroyed. Free it properly. ok dlg CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2014/10/21 06:10:26 Modified files: build : mirrors.dat Log message: remove pointless key lengths from SSH fingerprints; from Craig R. Skinner carefully verified by yours truly CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2014/10/21 06:10:47 Modified files: . : anoncvs.html Log message: sync CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/10/21 07:00:33 Modified files: usr.sbin/httpd : server_file.c server_http.c Log message: Rework the error message a little bit: Do not send details of the error. Traditionally, web servers responsed with the request path on 40x errors which could be abused to inject JavaScript etc. Instead of sanitizing the path, we just don't reprint it. Also modify the style a little bit but keep Comic Sans. With input from Jonas Lindemann and doug@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/21 07:11:03 Modified files: x11/gnome/shell: Makefile Added files: x11/gnome/shell/patches: patch-js_misc_loginManager_js Log message: Revert "loginManager: Kill ConsoleKit support" to unbreak GDM login screen. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/21 07:58:29 Modified files: security/lynis : Makefile distinfo Log message: Update for Lynis to 1.6.3: http://cisofy.com/changelog/lynis/1.6.3/ Ok benoit@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/21 08:03:06 Modified files: www/chromium : Makefile distinfo Log message: update to 38.0.2125.104 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/21 08:53:46 Modified files: misc/portroach : Makefile distinfo Log message: - update to portroach-1.2.1 * small tweaks related to version comparison CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/10/21 09:08:51 Modified files: comms/dfu-util : Makefile distinfo comms/dfu-util/pkg: PLIST Removed files: comms/dfu-util/patches: patch-src_main_c Log message: Update to the latest release. Tested with SparkCore. OK ian@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/21 11:55:11 Modified files: net/openvpn : Makefile Removed files: net/openvpn/patches: patch-src_openvpn_route_c Log message: Fix mis-merge in last commit, restoring some route operations which got broken. Thanks to Mattieu Baptiste for reporting the problem and testing the fix. CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/10/21 12:25:37 Modified files: . : errata56.html Log message: no sslv3 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/21 13:12:28 Modified files: sysutils/findlib: Makefile distinfo sysutils/findlib/pkg: PLIST Removed files: sysutils/findlib/patches: patch-src_bytes_Makefile Log message: Update to 1.5.4 ok avsm@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/21 13:18:46 Modified files: devel/ocaml-calendar: Makefile devel/ocaml-calendar/pkg: PLIST Log message: Install documentation ok avsm@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/21 13:42:58 Modified files: . : 56.html Log message: arm pkg counts CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/21 16:06:46 Modified files: usr.bin/tmux : cmd-queue.c Log message: Save next item after firing command in case it has added to the queue. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/21 16:07:25 Modified files: geo/josm : Makefile distinfo Log message: Update to josm svn r7643. with maintainer Holger Mikolon, ok bcallah@ ian@ on a previous update to r7632. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/21 16:22:04 Modified files: usr.bin/tmux : cmd-select-pane.c tmux.h window.c Log message: Only redraw pane when it has actually changed. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/10/21 19:32:19 Added files: faq : upgrade56.html Log message: 5.5 -> 5.6 upgrade instructions CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/10/21 19:41:14 Modified files: faq : index.html Log message: tired of the blue barr. this makes this page look more like other OpenBSD pages. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/21 22:13:35 Modified files: lib/libkvm : kvm_proc.c Log message: Don't leak the old data if _kvm_reallocarray() fails ok millert@ doug@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/21 22:46:05 Modified files: sys/kern : subr_hibernate.c Log message: Use the global piglet address variables as sparingly as possible to avoid redundant copies of the same information. No functional change. Also add some comments as to how these globals are used. CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/21 23:19:27 Modified files: lib/libc/stdlib: malloc.3 Log message: Avoid writing in second person in malloc.3 ok deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/21 23:37:54 Modified files: sys/crypto : crypto.c Log message: make the crypto taskq protect things at IPL_VM instead of IPL_HIGH. everything else in crypto.c uses splvm/IPL_VM. it seems this IPL_HIGH came about because the hand rolled task list and thread that crypto used to use was converted to workqs, which unconditionally used IPL_HIGH internally. when it was converted from workqs to tasks it blindly ported the protection workqs gave. tested by many via tech@ and snapshots ok kettenis@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/21 23:44:00 Modified files: sys/kern : subr_hibernate.c Log message: Remove some unused/unneeded code. CVSROOT: /cvs Module name: src Changes by: dcoppa@cvs.openbsd.org 2014/10/22 00:55:10 Modified files: sys/sys : param.h Log message: Sync offsetof() definition with what we have in for userland. Fix a warning from gcc-4.9: ../../../../ufs/ufs/dir.h:113:33: warning: variably modified 'dh_firstfree' at file scope ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/22 01:22:58 Modified files: x11/gtk+3 : Makefile distinfo Log message: Update to gtk+3-3.14.4. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/22 01:57:28 Modified files: games/wesnoth : Makefile Log message: add PORTROACH annotation to restrict to stable 1.10.X version. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/22 02:01:52 Modified files: net/munin : Makefile Log message: add PORTROACH annotation to restrict to stable 2.0.X branch. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 02:04:07 Modified files: sysutils/mcollective-plugins/puppet-agent: Makefile distinfo Log message: update to mcollective-puppet-agent-1.9.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 02:19:45 Modified files: databases/puppetdb: Makefile distinfo Log message: update to puppetdb-2.2.2 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/22 03:30:38 Modified files: x11/lumina : Makefile distinfo Log message: Update to lumina-0.7.0.1413916751. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/22 03:35:20 Modified files: www/netsurf/browser: Makefile www/netsurf/browser/patches: patch-gtk_res_options_gtk2_ui Log message: Use a 2000lbs hammer in post-patch to "fix" the translation keys/strings instead of having to carry a huge patch, which is a pain to update at each release. please, someone do something better than my horror mixing pipes, subshells, grep, sed, cut and perl. ok bentley@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 03:44:07 Modified files: security/libsrtp: Makefile www/p5-HTML-Mason: Makefile Log message: switch to working maintainer address CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/10/22 03:48:03 Modified files: usr.sbin/httpd : httpd.c httpd.h server_http.c Log message: URL-decode the request path. Tested by ajacoutot@ and others OK doug@ CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/10/22 03:48:19 Modified files: sys/netinet6 : in6.c Log message: Introduce a special hack for carp during IPv6 source address selection: If there is a tie then a carp interface is not allowed to win even if it has an address with a longer bitwise match. This allows reliable IPv6 communication between carp master and backup across a shared IPv6 subnet. Consider the carp address 2001:DB8:10::14, which is configured on firewall A (in carp master state) and firewall B (in carp backup state), each of which has another address in the same prefix on a non-carp interface (A has 2001:DB8:10::1 and B has 2001:DB8:10::11). In this setup, A would use 2001:DB8:10::14 as source address when sending neighbour solicitations to B. Since 2001:DB8:10::14 is a local address from B's point of view, B never replied to the neighbour solicitations sent by A. With this change A uses 2001:DB8:10::1 as source address instead. ok mpi@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/22 04:01:07 Modified files: multimedia/gstreamer1/plugins-bad: Makefile Log message: --disable-openexr to prevent it from being picked up; spotted by landry@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/22 06:22:32 Modified files: lang/php/5.5 : Tag: OPENBSD_5_6 Makefile distinfo Log message: security update to 5.5.18; fixes 4 CVEs in different components ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/22 06:23:08 Modified files: lang/php : Tag: OPENBSD_5_6 Makefile.inc lang/php/5.4 : Tag: OPENBSD_5_6 Makefile distinfo Log message: security update to 5.4.34 6 security-related bugs were fixed in this release, including fixes for CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. Also, a fix for OpenSSL which produced regressions was reverted ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/22 06:24:34 Modified files: lang/php : Tag: OPENBSD_5_5 Makefile.inc lang/php/5.4 : Tag: OPENBSD_5_5 Makefile distinfo Log message: security update 5.4.34 6 security-related bugs were fixed in this release, including fixes for CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. Also, a fix for OpenSSL which produced regressions was reverted ok jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 07:00:54 Modified files: devel/ocaml-batteries: Makefile devel/ounit : Makefile devel/ocaml-net: Makefile telephony/pjsua: Makefile textproc/pdftk : Makefile Log message: unify maintainer addresses ok chrisz@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 07:02:04 Modified files: lib/libssl/src/crypto/asn1: asn_mime.c p5_pbe.c p5_pbev2.c lib/libssl/src/crypto/bio: bf_nbio.c lib/libssl/src/crypto/bn: bn.h bn_rand.c lib/libssl/src/crypto/cms: cms_enc.c cms_ess.c cms_pwri.c lib/libssl/src/crypto/des: enc_writ.c rand_key.c lib/libssl/src/crypto/dsa: dsa_gen.c lib/libssl/src/crypto/engine: eng_lib.c lib/libssl/src/crypto/evp: e_aes.c evp_enc.c p_seal.c lib/libssl/src/crypto/ocsp: ocsp_ext.c lib/libssl/src/crypto/pem: pem_lib.c pvkfmt.c lib/libssl/src/crypto/pkcs12: p12_mutl.c lib/libssl/src/crypto/pkcs7: pk7_doit.c lib/libssl/src/crypto/rand: rand_lib.c randfile.c lib/libssl/src/crypto/rsa: rsa_oaep.c rsa_pk1.c rsa_pss.c rsa_ssl.c Log message: Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). arc4random_buf() is guaranteed to always succeed - it is worth noting that a number of the replaced function calls were already missing return value checks. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 07:08:35 Modified files: security/p5-Authen-Radius: Makefile devel/p5-Data-HexDump: Makefile Log message: unify maintainer addresses ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 07:10:44 Modified files: net/nload : Makefile Log message: unify email/name CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 07:14:54 Modified files: net/centerim : Makefile Log message: unify email/name CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 07:18:17 Modified files: regress/lib/libcrypto/bn/general: bntest.c regress/lib/libcrypto/dh: dhtest.c regress/lib/libcrypto/dsa: dsatest.c regress/lib/libcrypto/ec: ectest.c regress/lib/libcrypto/ecdh: ecdhtest.c Log message: None of these need CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 07:19:37 Modified files: sysutils/apachetop: Makefile Log message: unify email/name CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 07:23:05 Modified files: regress/lib/libcrypto/bn/mont: mont.c regress/lib/libcrypto/ecdsa: ecdsatest.c regress/lib/libcrypto/exp: exptest.c regress/lib/libcrypto/ige: igetest.c Log message: Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes() (most with unchecked return values). CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/22 07:31:04 Modified files: sbin/mountd : mountd.c Log message: Use svc_getreq_poll() instead of svc_getreqset2() for mountd's custom svc_run loop. From Dimitris Papastamos. OK schwarze@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 07:39:38 Modified files: graphics/jpegpixi: Makefile security/steghide: Makefile x11/xdesktopwaves: Makefile Log message: unify maintainer addresses ok giovanni@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 07:44:45 Modified files: audio/xmmsctrl : Makefile devel/p5-Inline: Makefile devel/p5-MooseX-Types-DateTime: Makefile devel/p5-Class-Gomor: Makefile mail/p5-GMail-IMAPD: Makefile net/p5-Net-Ping-External: Makefile net/p5-Net-DNS-SEC: Makefile net/p5-Net-Frame-Dump: Makefile net/p5-Net-Google: Makefile net/p5-Net-Jabber: Makefile net/castget : Makefile Log message: unify maintainer addresses ok gsoares@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 07:51:09 Modified files: plan9/9libs : Makefile plan9/wily : Makefile print/auctex : Makefile Log message: reset maintainer, cannings@ hasn't been around for quite a while CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 07:51:31 Modified files: usr.bin/openssl: gendh.c genrsa.c s_client.c Log message: None of these need CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 07:54:03 Modified files: usr.bin/openssl: enc.c openssl.c passwd.c rand.c s_cb.c s_server.c speed.c ts.c Log message: Use arc4random_buf() instead of RAND(_pseudo)?_bytes(). ok bcook@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 07:55:07 Modified files: games/chocolate-doom: Makefile games/eduke32 : Makefile games/prboom-plus: Makefile sysutils/uptimed: Makefile Log message: set maintainer addresses to non-@openbsd.org for the account doesn't exist anymore CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 07:55:52 Modified files: security/lynis : Makefile Log message: unify email/name CVSROOT: /cvs Module name: ports Changes by: okan@cvs.openbsd.org 2014/10/22 07:56:33 Modified files: devel/p5-Tie-Hash-Indexed: Makefile sysutils/monitord: Makefile Log message: unify address; noted by jasper CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 08:01:23 Modified files: www/p5-CGI-Lite: Makefile Log message: unify CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 08:02:14 Modified files: net/zenirc : Makefile Log message: reset, maintainer hasn't been around for a long time CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 08:02:52 Modified files: lib/libssl/src/crypto/rand: rand.h Log message: Place most of the RAND_* functions under #ifndef LIBRESSL_INTERNAL (some are still needed for the engine). Our code should use arc4random instead. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 08:03:42 Modified files: regress/lib/libcrypto/rand: randtest.c Log message: #undef LIBRESSL_INTERNAL for the RAND_pseudo_bytes() test. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/10/22 08:06:20 Modified files: faq : upgrade56.html Log message: oops. missed a bunch of 5.5 -> 5.6 changes, spotted by tj at mrsk dot me and Lars lists at srdn dot de, thanks! (but you BOTH missed at least one :) CVSROOT: /cvs Module name: ports Changes by: pea@cvs.openbsd.org 2014/10/22 08:10:46 Modified files: databases/p5-DBIx-DWIW: Makefile databases/pg-toolbox: Makefile databases/pgworksheet: Makefile databases/py-pgsql: Makefile devel/cdk : Makefile net/p5-Net-FTPSSL: Makefile security/gringotts: Makefile security/libgringotts: Makefile Log message: Unify address. Spotted by jasper@ ok jasper@, landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 08:24:13 Modified files: textproc/p5-ack: Makefile Log message: update maintainer email; ok pyr CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/22 08:34:52 Modified files: net/wide-dhcpv6: Makefile Log message: Drop maintainership. I haven't used wide-dhcpv6 in ages. As a side effect this unifies email addresses for ports I maintain, which makes portsroach happier. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/10/22 08:47:45 Modified files: faq : upgrade56.html Log message: encrypted vnd is going away for 5.7. Suggeted by lists at srdn dot de, thanks! CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/22 08:56:20 Modified files: net/sipcalc : Makefile distinfo net/sipcalc/patches: patch-doc_sipcalc_1 Log message: Update to sipcalc 1.1.6. Fixes buffer overflows and *gasp* spelling errors! Friendly reminder by portroach@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/22 08:56:42 Added files: sysutils/findlib/patches: patch-src_findlib_Makefile Log message: fix sed syntax. Thanks to naddy@ for reporting. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 09:02:26 Modified files: sysutils/logstalgia: Makefile distinfo sysutils/logstalgia/patches: patch-src_logstalgia_cpp Log message: Update for logstalgia to 1.0.6 also, unify my email looks good to me jasper@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 09:13:45 Modified files: sysutils/logstalgia: Makefile Log message: Now the right diff :/ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/22 09:29:31 Modified files: lib/libssl/src/ssl: d1_pkt.c Log message: Avoid a NULL pointer dereference that can be triggered by SSL3_RT_HANDSHAKE replays. Reported by Markus Stenberg - thanks! ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 09:31:46 Modified files: sysutils/autossh: Makefile distinfo Log message: Update for Autossh to 1.4d - call daemon() before opening any sockets. Problem discovered and diagnosed by Frank van der Aa when trying to start autossh at system init. - don't use malloc(n * size) idiom; use calloc() OK sthen@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/22 09:47:18 Modified files: lib/libc/rpc : svc_run.c Log message: Use reallocarray() instead of calloc() (originally was realloc). OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/22 09:58:37 Modified files: devel/glib2 : Makefile Added files: devel/glib2/patches: patch-glib_deprecated_gthread-deprecated_c patch-glib_garray_c patch-gobject_gobject_c Log message: Merge a few bug fixes from upstream stable branch. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 09:59:00 Modified files: net/arping : Makefile distinfo Log message: Update Arping to 2.14. OK benoit@ (maintainer) CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/22 10:35:34 Modified files: sbin/isakmpd : pf_key_v2.c Log message: Fix error reporting when reallocarray() fails. OK miod@ CVSROOT: /cvs Module name: www Changes by: schwarze@cvs.openbsd.org 2014/10/22 10:47:46 Modified files: faq : faq15.html faq/ports : ports.html Log message: better explain sudo config for ports building; triggered by a much smaller patch from THEvoid at openmailbox dot org; "commit this ASAP" Nick@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/10/22 11:26:39 Modified files: faq : upgrade52.html upgrade53.html upgrade54.html upgrade55.html upgrade56.html Log message: duplicated duplicated word word which has been here for a while. diff from Carlin Bingham (cb at viennan dot net), thanks! CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 12:06:47 Modified files: net/py-dpkt : Makefile Log message: unify; ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 12:13:21 Modified files: www/firefox-esr: Tag: OPENBSD_5_6 Makefile distinfo Log message: update to firefox-esr-31.2.0: https://www.mozilla.org/en-US/firefox/31.2.0/releasenotes/ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 12:17:17 Modified files: www/firefox-esr-i18n: Tag: OPENBSD_5_6 Makefile.inc distinfo Log message: sync with firefox-esr-31.2.0 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/22 12:37:22 Modified files: lib/libssl/src/crypto/pkcs12: p12_mutl.c Log message: In PKCS12_setup_mac(), do not assign p12->mac->salt->length until the allocation of p12->mac->salt->data has actually succeeded. In one of my trees for a long time already... CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 13:01:09 Modified files: cad/gtkwave : Makefile distinfo cad/gtkwave/patches: patch-share_applications_Makefile_in cad/gtkwave/pkg: PLIST Log message: update to gtkwave-3.3.62 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 13:01:55 Modified files: converters/p5-JSON-Any: Makefile distinfo Log message: update to JSON-Any-1.38 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 13:08:21 Modified files: devel/libunique: Makefile Log message: add PORTROACH to limit to 1.x releases CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 13:16:57 Modified files: devel/ruby-rb-gsl: Makefile distinfo devel/ruby-rb-gsl/pkg: PLIST Log message: update to gsl-1.16.0.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/22 13:24:54 Modified files: devel/p5-Glib2 : Makefile distinfo devel/p5-Glib2/pkg: PLIST Log message: Uodate to p5-Glib2-1.305. prodded by jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 13:33:25 Modified files: games/toppler : Makefile distinfo games/toppler/patches: patch-Makefile_in games/toppler/pkg: PLIST Added files: games/toppler/patches: patch-highscore_cc Removed files: games/toppler/patches: patch-configure Log message: - update to toppler-1.1.6 - add missing license CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/22 13:47:28 Modified files: usr.sbin/rtadvd: rtadvd.c Log message: Replace abs(3) with llabs(3). Pointed out by LLVM. rtadvd.c:979:7: warning: absolute value function 'abs' given an argument of type 'long long' but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value] ok dcoppa@ millert@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 14:00:27 Modified files: geo/osm-gps-map: Makefile distinfo geo/osm-gps-map/pkg: PLIST Log message: update to osm-gps-map-1.0.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 14:09:29 Modified files: lang/guile : Makefile Log message: limit 1.x releases CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/22 14:11:27 Modified files: databases/mongodb: Makefile Log message: add PORTROACH annotation to restrict to stable 2.6.X branch ok sthen@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/22 14:12:59 Modified files: faq : upgrade56.html Log message: mention a few more things that may bite people for 5.5->5.6, ok nick@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/22 14:31:24 Modified files: net/ruby-stomp : Makefile distinfo Log message: - update to stomp-1.3.3 - take maintainership CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/22 14:46:59 Modified files: x11/smtube : Makefile distinfo Log message: Update to 14.8.0. Now I take care of this. OK benoit@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/22 15:00:06 Modified files: usr.bin/printf : printf.1 Log message: document the special \c escape sequence that can only be used with %b; gap found by guenther@ following a question asked by Frank Brodbeck ; while here, sort escape sequences, this part of the patch from Frank Brodbeck; ok guenther@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/22 15:43:16 Modified files: sys/kern : vfs_syscalls.c Log message: Extend domknodat() to support S_IFIFO directly and remove domkfifoat(). Both sys_mkfifo(2) and sys_mkfifoat(2) could be replace by libc wrappers using mknodat(2) at a later date if we desire. OK guenther@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/22 15:45:50 Modified files: share/zoneinfo/datfiles: asia australasia europe northamerica zone.tab zone1970.tab Log message: Update to tzdata2014i from ftp.iana.org CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/22 17:10:30 Modified files: lib/libc/rpc : svc_run.c Log message: We prefer to use call reallocarray() with nmemb first and size second. Requested by guenther@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/22 17:11:41 Modified files: usr.bin/tmux : Makefile cmd-kill-window.c session.c tmux.h Removed files: usr.bin/tmux : cmd-unlink-window.c Log message: Merge unlink-window into kill-window. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/22 17:18:53 Modified files: usr.bin/tmux : cmd-find-window.c key-bindings.c server-client.c session.c tty-keys.c window-choose.c window-copy.c Log message: Fix some spacing nits. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/22 17:23:22 Modified files: usr.bin/sed : sed.1 Log message: make the description of the syntax of function lists agree with our actual implementation, which also agrees with POSIX; triggered by guenther@'s answer to a question from chrisz@; ok chrisz@ guenther@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/22 17:56:47 Modified files: sys/arch/sparc64/include: endian.h sys/arch/powerpc/include: endian.h share/man/man9 : bemtoh32.9 Log message: make [bl]emtoh{16,32,64} take volatile const foo *, not volatile foo * while in the manpage add volatile where the code has it too. ok miod@ guenther@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/22 18:10:09 Modified files: sys/crypto : crypto.c Log message: revert previous. it did more than the commit message said it did. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/22 18:11:48 Modified files: sys/crypto : crypto.c Log message: apply only the bit of r1.69 that should have been committed: make the crypto taskq protect things at IPL_VM instead of IPL_HIGH. everything else in crypto.c uses splvm/IPL_VM. it seems this IPL_HIGH came about because the hand rolled task list and thread that crypto used to use was converted to workqs, which unconditionally used IPL_HIGH internally. when it was converted from workqs to tasks it blindly ported the protection workqs gave. tested by many via tech@ and snapshots ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/22 18:15:10 Modified files: sys/crypto : crypto.c Log message: pools lock themselves now, we just have to tell them what IPL they will be used from. this adds pool_setipl at IPL_VM to the crypto descriptor pools, and removes all the splvm handling around the use of those pools. tested by many via tech@ ok kettenis@ deraadt@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/22 19:03:39 Modified files: multimedia/xine-ui: Makefile distinfo Log message: Update to Xine-ui 0.99.9. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/22 22:03:09 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/22 22:22:19 Modified files: . : orders.html Log message: Older release (and tshirts, etc, etc) continue to be available from Austin in Milk River. Will he have the newer releases? Let's see... CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/22 23:24:10 Log message: Import netinfo 0.6. A Tcl extension that provides access to system protocol, service, network, host and ether information which is retrieved from system databases and made available for querying. ok landry@ Status: Vendor Tag: stu Release Tags: stu_20141023 N ports/net/netinfo/Makefile N ports/net/netinfo/distinfo N ports/net/netinfo/pkg/PLIST N ports/net/netinfo/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/10/22 23:25:32 Modified files: net : Makefile Log message: +netinfo CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/10/22 23:48:40 Modified files: lib/libc/stdlib: malloc.3 Log message: Save space in man page: err() -> errc() and combine vars. Suggested by millert@ and schwarze@. OK schwarze@, millert@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/10/23 00:35:59 Modified files: graphics/pngcrush: Makefile distinfo Log message: Update pngcrush to 1.7.78. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/23 01:19:52 Modified files: mail/p5-Mail-Webmail-Gmail: Makefile Log message: missed in previous CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/23 01:21:06 Modified files: databases/tdb : Makefile mail/fdm : Makefile x11/pekwm : Makefile Log message: unify; ok nicm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/23 01:23:27 Modified files: net/pop3gwd : Makefile Log message: unify; ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/23 01:26:55 Modified files: devel/fasm : Makefile x11/dzen2 : Makefile Log message: switch to working maintainer email; ok MAINTAINER CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/23 01:34:48 Modified files: sys/sys : videoio.h sys/dev/usb : uvideo.c Log message: Now that gcc2 is gone revert the removal of anonymous unions, means not having to modify various third party apps using the V4L2 API to build on OpenBSD specifically. "I think this is the right thing to do" miod@ "Fine with me." sthen@ CVSROOT: /cvs Module name: xenocara Changes by: brad@cvs.openbsd.org 2014/10/23 01:36:06 Modified files: app/video : video.c Log message: Now that gcc2 is gone revert the removal of anonymous unions. "I think this is the right thing to do" miod@ "Fine with me." sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/23 01:41:45 Modified files: graphics/ffmpeg: Makefile graphics/ffmpeg/patches: patch-configure Log message: Fix the configure script to be able to detect the presence of the V4L2 VIDIOC_ENUM_FRAMESIZES ioctl and make use of it on OpenBSD. Pushed upstream and commited. From armani@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/23 02:15:27 Modified files: sysutils/ruby-puppet/3: Makefile distinfo Log message: - update to puppet-3.7.2 * includes fixes to disable SSLv3 and plug a memory leak in the master https://docs.puppetlabs.com/puppet/latest/reference/release_notes.html#puppet-372 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 06:13:12 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Removed files: www/nginx/pkg : PFRAG.no-passenger PFRAG.passenger Log message: Use specific flavour extensions for @pkgpath lines in each package, so that pkg_add -u is handled without prompting each time, as noticed by myself and jasper. Modelled on similar in mail/mutt. ok jasper@ espie@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 06:14:43 Modified files: multimedia/motion: Makefile distinfo multimedia/motion/patches: patch-video2_c multimedia/motion/pkg: PLIST Removed files: multimedia/motion/patches: patch-conf_c Log message: update to a newer snapshot of motion CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/23 07:24:26 Modified files: net/munin : Makefile distinfo Log message: bugfix update to munin-2.0.23 upstream didn't update news on homepage, so it was found with portroach CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 07:43:05 Modified files: graphics/dpic : Makefile distinfo graphics/dpic/patches: patch-Makefile Log message: Update to version 2014.Jan.01 Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 07:47:45 Modified files: multimedia/p5-AMF-Connection: Makefile distinfo Log message: Update to version 0.32 Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 07:52:22 Modified files: multimedia/p5-Storable-AMF: Makefile distinfo Log message: Update to version 1.02 Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 08:00:40 Modified files: www/p5-IO-HTML : Makefile distinfo Log message: Update to version 1.001 part of p5-libwww >= 6.0 changes. Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 08:08:30 Log message: implement sybolic and ls chmod modes required by p5-Test-Inline. Ok sthen@, landry@, jasper@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/devel/p5-File-chmod/Makefile N ports/devel/p5-File-chmod/distinfo N ports/devel/p5-File-chmod/pkg/DESCR N ports/devel/p5-File-chmod/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 08:28:01 Modified files: devel : Makefile Log message: sync add p5-File-chmod CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 08:29:23 Modified files: net/nagios/nsca-ng: Makefile distinfo Log message: update to nsca-ng 1.4 CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 08:34:46 Modified files: devel/p5-Test-Inline: Makefile distinfo Log message: Update to vresion 2.213, fixes deprecated / random hash. Ok sthen@, landry@, jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 08:39:03 Modified files: net/nagios/check_postgres: Makefile distinfo net/nagios/check_postgres/patches: patch-check_postgres_pl net/nagios/check_postgres/pkg: PLIST Log message: update to check_postgres-2.21.0 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/23 09:13:52 Modified files: databases/qdbm : Makefile Log message: Do not attempt to build shared library on static arch, namely vax. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 10:45:16 Modified files: www/drupal6/theme-acquia-marina: Makefile Log message: duplicated MAINTAINER line CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/23 10:45:57 Modified files: usr.bin/netstat: inet.c main.c netstat.1 show.c Log message: Remove networks(5) support. In particular, do not call getnetbyaddr(3), use gethostbyaddr(3) only. Do not call setnetent(3) and the dummy sethostent(3). OK henning@; and deraadt@ agrees with the general direction. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/23 10:49:58 Modified files: sys/arch/hppa/hppa: machdep.c Log message: Revert limiting physmem to 2GB; the culprit was likely in uvm and uvm has changed a lot in the last 5 years; verified to work on a 3GB system, in snapshots for a few weeks already. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/23 10:51:30 Modified files: sys/arch/hppa/hppa: locore.S Log message: In the various desidhash_*() functions, make sure we clear the `set to clear' bit fields with their right sizes (the L2PARERR field on PCXL processors being 4 bits wide, not 1 bit), and make comments consistent accross these functions. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/23 10:57:45 Modified files: sys/arch/hppa/hppa: locore.S machdep.c Log message: Correctly set up the HPMC trap entry: according to the PA-RISC Firmware Architecture Reference Specification, the sum of the 8 trap entry words *and* of the payload which address and length are to be set at well-known positions in the aforementioned trap entry, needs to be zero; the existing code was only enforcing that the sum of the trap entry words is zero. This matches what Linux and NetBSD do. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 11:23:09 Modified files: converters/dos2unix: Makefile distinfo converters/dos2unix/patches: patch-Makefile converters/dos2unix/pkg: PLIST Log message: update to dos2unix-7.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/23 11:25:45 Modified files: lang/railo : Makefile distinfo lang/railo/pkg : PLIST Removed files: lang/railo/pkg : MESSAGE Log message: update to railo-4.2.1.008 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/23 12:25:27 Modified files: sbin/sysctl : sysctl.8 Log message: mention hw.perfpolicy; Daniel Jakots CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/10/23 12:44:20 Modified files: . : 56.html Log message: Move the LibreSSL section to the top and add some introductory text to highlight the goals of LibreSSL. "go for it" deraadt@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/23 13:09:04 Modified files: sys/arch/sparc/sparc: locore.s Log message: Correctly mask IE_ALLIE during sun4/4c/4e NMI; from NetBSD CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:18:00 Log message: Split out from p5-libww >= 6.0, part of p5-libwww updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/devel/p5-File-Listing/Makefile N ports/devel/p5-File-Listing/distinfo N ports/devel/p5-File-Listing/pkg/DESCR N ports/devel/p5-File-Listing/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:21:09 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/net/p5-Net-HTTP/Makefile N ports/net/p5-Net-HTTP/distinfo N ports/net/p5-Net-HTTP/pkg/DESCR N ports/net/p5-Net-HTTP/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:23:32 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-HTML-Form/Makefile N ports/www/p5-HTML-Form/distinfo N ports/www/p5-HTML-Form/pkg/DESCR N ports/www/p5-HTML-Form/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:24:22 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-HTTP-Cookies/Makefile N ports/www/p5-HTTP-Cookies/distinfo N ports/www/p5-HTTP-Cookies/pkg/DESCR N ports/www/p5-HTTP-Cookies/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:25:21 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-HTTP-Daemon/Makefile N ports/www/p5-HTTP-Daemon/distinfo N ports/www/p5-HTTP-Daemon/pkg/DESCR N ports/www/p5-HTTP-Daemon/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:26:44 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-HTTP-Date/Makefile N ports/www/p5-HTTP-Date/distinfo N ports/www/p5-HTTP-Date/pkg/DESCR N ports/www/p5-HTTP-Date/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:27:39 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-HTTP-Message/Makefile N ports/www/p5-HTTP-Message/distinfo N ports/www/p5-HTTP-Message/pkg/DESCR N ports/www/p5-HTTP-Message/pkg/PLIST N ports/www/p5-HTTP-Message/patches/patch-lib_HTTP_Headers_pm No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:28:39 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-HTTP-Negotiate/Makefile N ports/www/p5-HTTP-Negotiate/distinfo N ports/www/p5-HTTP-Negotiate/pkg/DESCR N ports/www/p5-HTTP-Negotiate/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:30:04 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-LWP-MediaTypes/Makefile N ports/www/p5-LWP-MediaTypes/distinfo N ports/www/p5-LWP-MediaTypes/pkg/DESCR N ports/www/p5-LWP-MediaTypes/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:31:07 Log message: seperated out from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-WWW-RobotRules/Makefile N ports/www/p5-WWW-RobotRules/distinfo N ports/www/p5-WWW-RobotRules/pkg/DESCR N ports/www/p5-WWW-RobotRules/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:33:22 Log message: seperated from p5-libwww, part of p5-libwww 6.08 updates. Ok sthen@ Status: Vendor Tag: nigel Release Tags: nigel_20141023 N ports/www/p5-LWP-Protocol-https/Makefile N ports/www/p5-LWP-Protocol-https/distinfo N ports/www/p5-LWP-Protocol-https/pkg/DESCR N ports/www/p5-LWP-Protocol-https/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:49:45 Modified files: www/p5-libwww : Makefile distinfo www/p5-libwww/pkg: PLIST Log message: Update p5-libwww to 6.08. Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 13:54:00 Modified files: www/p5-WWW-Mechanize: Makefile Log message: Update for p5-libwww 6.08, add dependencies for separated modules. Ok sthen@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/23 13:58:25 Modified files: faq : upgrade56.html Log message: - missing paren, from "TJ" and Nicholas Fleisher - extra comma, from "TJ" (who also requested a "they" in "have moved from etc*.tgz to base56.tgz so will be replaced at upgrade time" which I thought was probably not necessary) CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 14:02:40 Modified files: security/p5-Crypt-SSLeay: Makefile distinfo security/p5-Crypt-SSLeay/pkg: DESCR PLIST Added files: security/p5-Crypt-SSLeay/patches: patch-t_03-version_t Log message: Update version to 0.72 fix for LibreSSL, deependencies for p5-libww 6.08. Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 14:09:18 Modified files: www/p5-LWP-Protocol-socks: Makefile distinfo www/p5-LWP-Protocol-socks/pkg: PLIST Log message: Update version to 0.7, requires p5-libwww > 6.0. Ok sthen CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/10/23 14:38:37 Modified files: share/man/man5 : pf.conf.5 Log message: Add GRAMMAR to list of sections. ok jmc@, deraadt@ (begrudgingly) CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 14:43:37 Modified files: devel : Makefile Log message: sync +p5-File-Listing CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 14:48:09 Modified files: net : Makefile Log message: sync +p5-Net-HTTP CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/23 15:13:46 Modified files: www : Makefile Log message: sync +p5-HTML-Form +p5-LWP-Protocol-https and others for p5-libwww 6.08 CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/10/23 15:33:21 Modified files: distrib/miniroot: dot.profile install.sub distrib/notes : m4.common share/man/man8 : autoinstall.8 Log message: Extend autoinstall(8) feature: - Ask for responsefile location (url or local path) if dhcp discovery fails for location or mode. If 'next-server' is found in dhcp lease file, provide a default url http://next-server/install.conf. - Ask for installer mode if the specified response file name does not match *install.conf or *upgrade.conf. - If present, use /auto_install.conf or /auto_upgrade.conf as response file for unattended installation or upgrade. - Automatically start installer in unattended mode if either one of these files is present when the system boots. - Document changes in manpage and installation notes. OK krw@ deraadt@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/23 17:20:07 Modified files: multimedia/gstreamer-0.10/plugins-good: Makefile Removed files: multimedia/gstreamer-0.10/plugins-good/patches: patch-sys_v4l2_gstv4l2object_c Log message: Remove V4L2 anonymous unions workaround patch. Diff sent to the MAINTAINER but it sounds like he is possibly away travelling so put it in so it still builds. CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/23 20:01:20 Modified files: usr.bin/ftp : ftp.c usr.bin/nc : netcat.c usr.bin/ssh : misc.c packet.c readconf.c servconf.c usr.bin/tcpbench: tcpbench.c Log message: Remove unnecessary include: netinet/in_systm.h is not needed by these programs. ok deraadt@ millert@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/23 20:02:08 Modified files: share/man/man4 : divert.4 Log message: netinet/in_systm.h is not needed by the example program pointed out by millert@ CVSROOT: /cvs Module name: ports Changes by: gsoares@cvs.openbsd.org 2014/10/23 21:44:33 Modified files: devel/cppcheck : Makefile distinfo Log message: update to 1.67; ok jsg@ feedback/review jasper@ sthen@, thanks. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/24 00:41:29 Modified files: x11/pwm : Makefile Log message: unify; ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/24 00:48:08 Modified files: mail/spampd : Makefile Log message: unify; ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/10/24 02:32:22 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to youtube-dl 2014.10.23 New extractors: - sexykarma - telecinco - twitch Removed: - justintv CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/24 04:18:50 Modified files: usr.bin/systat : netstat.c systat.1 Log message: This tool doesn't actually support networks(5). So remove the call to setnetent(3) which is a no-op here (except for consuming a file descriptor) and the call sethostent(3) which is a no-op in general. Also remove the misleading reference to networks(5) from the manual. OK okan@ henning@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/24 04:23:32 Modified files: usr.bin/getent : getent.1 getent.c Log message: tedu networks(5) support; OK florian@ henning@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/24 04:29:56 Modified files: usr.sbin/amd/amd: wire.c usr.sbin/amd/doc: amdref.texinfo Log message: retire networks(5) support; OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/24 05:12:07 ports/audio/libdca/files Update of /cvs/ports/audio/libdca/files In directory cvs.openbsd.org:/tmp/cvs-serv24783/files Log Message: Directory /cvs/ports/audio/libdca/files added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/24 07:44:00 Modified files: security/opensc: Makefile Added files: security/opensc/patches: patch-src_libopensc_pkcs15-sc-hsm_c Log message: sc-hsm: Prevent double-free crash if key generation fails (upstream git commit 5279bfa2d14d2186b31189748bcf89d908f00512) CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/24 08:01:01 ports/audio/sidplay/files Update of /cvs/ports/audio/sidplay/files In directory cvs.openbsd.org:/tmp/cvs-serv21980/files Log Message: Directory /cvs/ports/audio/sidplay/files added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/24 08:08:40 Modified files: telephony/stuntman: Makefile distinfo Log message: update to stunserver-1.2.7 from maintainer Roman Kravchuk CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/10/24 08:33:42 Modified files: www/puppet-dashboard: Makefile www/puppet-dashboard/pkg: README Log message: fix README file after MySQL->Mariadb switch ok sebastia@ (Maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/24 08:53:34 Modified files: net/pidgin-sipe: Makefile distinfo Log message: update to pidgin-sipe 1.18.4 and enable nss as well as openssl to workaround issue from http://permalink.gmane.org/gmane.os.openbsd.misc/216153, from maintainer Tom Doherty. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/24 09:01:18 Modified files: databases/pgadmin3: Makefile databases/pgadmin3/patches: patch-configure patch-pgadmin_ver_svn_sh patch-stringextract databases/pgadmin3/pkg: PLIST Added files: databases/pgadmin3/patches: patch-pgadmin_frm_events_cpp patch-pgadmin_frm_frmQuery_cpp Log message: Unbreak mutex hell Add missing bdep on textproc/py-sphinx Fix another couple of crashers (from upstream git) Regen patches; regen pkg/PLIST ok sthen@, pea@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/24 09:57:06 Modified files: www/webkitgtk4 : Makefile distinfo Log message: Update to webkitgtk4-2.6.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/24 10:06:27 Modified files: www/webkit : Makefile distinfo Log message: Update to webkit 2.4.7. CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/24 10:44:55 Modified files: misc/p5-Finance-Quote: Makefile distinfo misc/p5-Finance-Quote/pkg: DESCR PLIST Log message: Update for p5-libww 6.08, move to version 1.35 for site changes Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/24 10:51:38 Modified files: misc/p5-Finance-QuoteHist: Makefile distinfo misc/p5-Finance-QuoteHist/pkg: PLIST Removed files: misc/p5-Finance-QuoteHist/patches: patch-lib_Finance_QuoteHist_Generic_pm patch-lib_Finance_QuoteHist_Yahoo_pm Log message: Update for p5-libwww 6.08, move to version 1.20 Ok sthen CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/24 10:56:32 Modified files: multimedia/get_flash_videos: Makefile distinfo multimedia/get_flash_videos/pkg: PLIST Log message: Update for p5-libwww 6.08, update to later version. Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/24 11:01:11 Modified files: multimedia/get_iplayer: Makefile Log message: Update for p5-libwww 6.08, add dependencies on seperated modules. Ok sthen@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/24 11:06:06 Modified files: . : 56.html Log message: No support for big-endian i386 (weird emulated compiler) and amd64 (non-existent) in libressl. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/24 11:10:06 Modified files: . : 56.html Log message: don't talk about librt, it was never in a release CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/24 11:24:01 Modified files: www/p5-HTTP-Proxy: Makefile distinfo www/p5-HTTP-Proxy/pkg: PLIST Log message: Update for p5-libwww, moved to version 0.301. Ok sthen@ CVSROOT: /cvs Module name: www Changes by: miod@cvs.openbsd.org 2014/10/24 11:55:39 Modified files: . : 56.html Log message: 2475 m88k packages. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/24 11:58:47 Modified files: sys/netinet : tcp_input.c Log message: Fix indentation of closing brace. From Florian Riehm CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/24 12:17:59 Modified files: www/p5-HTML-Tree: Makefile distinfo www/p5-HTML-Tree/pkg: PLIST Log message: Update for p5-libwww 6.08, move to latest version 5.03 Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/10/24 13:31:39 Modified files: security/p5-IO-Socket-SSL: Makefile distinfo Log message: update p5-IO-Socket-SSL to 2.002 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/24 14:02:07 Modified files: sys/dev : rnd.c Log message: obvious sizes for free CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/10/24 14:14:48 Modified files: net/tor : Makefile distinfo net/tor/patches: patch-src_config_torrc_sample_in Removed files: net/tor/patches: patch-src_common_tortls_c Log message: Update to tor 0.2.5.10. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/24 14:26:58 Modified files: sys/arch/sparc64/include: vmparam.h sys/arch/sparc64/sparc64: machdep.c vm_machdep.c Log message: Bring phys_map to sparc64 and use it in vmapbuf(9) and vunmapbuf(9). CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/24 15:49:34 Modified files: sys/arch/sparc64/sparc64: mdesc.c Log message: Another uvm_km_valloc(9) -> km_alloc(9) conversion. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/24 17:30:05 Modified files: sys/dev/ic : re.c sys/dev/pci : if_re_pci.c Log message: Always put controller into known state before device intialization. From FreeBSD ok sthen@ chris@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/24 21:17:45 Modified files: bin/systrace : cradle.c Log message: Remove unnecessary netinet/in_systm.h include. ok millert@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/24 21:18:13 Modified files: sbin/dhclient : bpf.c packet.c sbin/iked : proc.c sbin/isakmpd : log.c sbin/pfctl : parse.y pfctl_osfp.c pfctl_parser.c sbin/ping : ping.c sbin/sysctl : sysctl.c Log message: Remove unnecessary netinet/in_systm.h include. ok millert@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/24 21:18:58 Modified files: lib/libc/rpc : svc_tcp.c lib/libkvm : kvm_file2.c Log message: Remove unnecessary netinet/in_systm.h include. ok millert@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/24 21:19:22 Modified files: libexec/ftpd : ftpd.c logutmp.c libexec/spamlogd: spamlogd.c Log message: Remove unnecessary netinet/in_systm.h include. ok millert@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/24 21:23:49 Modified files: usr.sbin/bgpd : session.c usr.sbin/dhcpd : bpf.c icmp.c packet.c usr.sbin/dhcrelay: bpf.c packet.c usr.sbin/dvmrpd: ask_nbrs2.c dvmrpe.h graft.c graft_ack.c nbrs2.c packet.c prune.c report.c usr.sbin/httpd : log.c proc.c server.c server_fcgi.c server_file.c server_http.c usr.sbin/ldpd : address.c hello.c init.c keepalive.c labelmapping.c ldpe.h notification.c packet.c usr.sbin/mrouted: defs.h usr.sbin/npppd/npppd: npppd.c npppd_config.c npppd_iface.c npppd_pool.c npppd_subr.c usr.sbin/npppd/pptp: pptpd.c usr.sbin/ntpd : ntpd.h usr.sbin/ospf6d: database.c lsack.c ospfe.h packet.c usr.sbin/ospfd : database.c lsack.c ospfe.h packet.c usr.sbin/relayd: check_icmp.c hce.c log.c proc.c relay.c relay_http.c relay_udp.c usr.sbin/ripd : message.c packet.c ripe.h usr.sbin/snmpd : log.c mib.c proc.c timer.c usr.sbin/traceroute: traceroute.c Log message: Remove unnecessary netinet/in_systm.h include. ok millert@ CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/10/24 21:29:32 Modified files: sys/compat/linux: linux_socket.c Log message: Remove unnecessary netinet/in_systm.h include. Compiles on i386, which is the only architecture where COMPAT_LINUX is enabled at the moment. "If it compiles, go ahead" pirofti@ CVSROOT: /cvs Module name: www Changes by: pirofti@cvs.openbsd.org 2014/10/25 02:33:26 Modified files: . : 56.html Log message: 2626 packages built for sh this release. I think it's a new record! CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/25 02:47:04 Modified files: usr.bin/tmux : format.c tmux.1 Log message: Add pane_input_off format, from Anish R Athalye. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/25 02:57:39 Modified files: net/dnsmasq : Makefile Added files: net/dnsmasq/patches: patch-src_option_c patch-src_rfc3315_c Log message: Add some fixes from upstream.. - crash at startup when an empty suffix is supplied to --conf-dir - Improve RFC-compliance when unable to supply addresses in DHCPv6 ok sthen@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/25 04:19:20 Modified files: sys/arch/hppa/dev: astro.c sys/arch/hppa64/dev: astro.c Log message: Another uvm_km_valloc(9) -> km_alloc(9) conversion. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/10/25 04:26:33 Modified files: www/sope : Makefile Added files: www/sope/patches: patch-sope-appserver_WEExtensions_WEDropContainer_m Log message: add patch to prevent exception in opengroupware. bug reported upstream, see comment in patch CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/25 04:30:53 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo devel/ruby-rspec/specinfra/pkg: PLIST Log message: update to specinfra-2.4.0 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 05:55:54 Modified files: lang/ocaml : Makefile distinfo ocaml.port.mk lang/ocaml/patches: patch-configure lang/ocaml/pkg : PLIST-main lang/ocaml-camlp4: Makefile distinfo Removed files: lang/ocaml/patches: patch-asmrun_signals_osdep_h lang/ocaml-camlp4/patches: patch-Makefile Log message: update to OCaml 4.02.1. Tested upgrade from 4.02.0 without revision bumping other packages. ok avsm@. espie@ had a look -> no revision bumps needed. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/25 06:08:49 Modified files: security/cryptcat: Makefile Log message: unify; ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 06:50:29 Log message: Import cudf, which is needed for OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/cudf/Makefile N ports/devel/cudf/distinfo N ports/devel/cudf/pkg/DESCR-main N ports/devel/cudf/pkg/PLIST-main N ports/devel/cudf/pkg/PLIST-ocaml N ports/devel/cudf/pkg/DESCR-ocaml N ports/devel/cudf/pkg/PFRAG.native-ocaml N ports/devel/cudf/patches/patch-Makefile N ports/devel/cudf/patches/patch-c-lib_Makefile_variants N ports/devel/cudf/patches/patch-c-lib_cudf_pc_in N ports/devel/cudf/patches/patch-c-lib_Makefile No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 06:52:07 Log message: Import cudf, which is needed for OPAM ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 U ports/devel/cudf/Makefile U ports/devel/cudf/distinfo U ports/devel/cudf/pkg/DESCR-main U ports/devel/cudf/pkg/PLIST-main U ports/devel/cudf/pkg/PLIST-ocaml U ports/devel/cudf/pkg/DESCR-ocaml U ports/devel/cudf/pkg/PFRAG.native-ocaml U ports/devel/cudf/patches/patch-Makefile U ports/devel/cudf/patches/patch-c-lib_Makefile_variants U ports/devel/cudf/patches/patch-c-lib_cudf_pc_in U ports/devel/cudf/patches/patch-c-lib_Makefile No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/25 06:53:14 Modified files: sys/kern : init_main.c Log message: Do not launch the page zeroing thread on MULTIPROCESSOR m88k systems. This causes a deadlock between reaper and zerothread I am currently investigating. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/25 06:54:16 Modified files: sys/uvm : uvm_stat.c Log message: Display uvmexp.zeropages in ddb's `show uvmexp' command. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 06:59:38 Log message: Import cudf needed by OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 U ports/devel/cudf/Makefile U ports/devel/cudf/distinfo U ports/devel/cudf/pkg/DESCR-main U ports/devel/cudf/pkg/PLIST-main U ports/devel/cudf/pkg/PLIST-ocaml U ports/devel/cudf/pkg/DESCR-ocaml U ports/devel/cudf/pkg/PFRAG.native-ocaml U ports/devel/cudf/patches/patch-Makefile U ports/devel/cudf/patches/patch-c-lib_Makefile_variants U ports/devel/cudf/patches/patch-c-lib_cudf_pc_in U ports/devel/cudf/patches/patch-c-lib_Makefile No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 07:46:52 Log message: Import cudf, which is needed for OPAM ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 U ports/devel/cudf/Makefile U ports/devel/cudf/distinfo U ports/devel/cudf/pkg/DESCR-main U ports/devel/cudf/pkg/PLIST-main U ports/devel/cudf/pkg/PLIST-ocaml U ports/devel/cudf/pkg/DESCR-ocaml U ports/devel/cudf/pkg/PFRAG.native-ocaml U ports/devel/cudf/patches/patch-Makefile U ports/devel/cudf/patches/patch-c-lib_Makefile_variants U ports/devel/cudf/patches/patch-c-lib_cudf_pc_in U ports/devel/cudf/patches/patch-c-lib_Makefile No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/25 08:04:30 Modified files: mail/evolution-ews: Makefile mail/evolution-rss: Makefile productivity/gnucash: Makefile www/liferea : Makefile www/py-webkitgtk: Makefile x11/gnome/anjuta: Makefile x11/gnome/bijiben: Makefile x11/gnome/controlcenter: Makefile x11/gnome/documents: Makefile x11/gnome/initial-setup: Makefile x11/gnome/sushi: Makefile x11/gnome/yelp : Makefile Log message: Regen WANTLIB to unbreak after recent webkit update. There are more ports following but they need a bit more work. breakage reported by nigel@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/25 08:20:09 Modified files: sys/dev/pci/drm/i915: i915_drv.c sys/dev/pci/drm/radeon: radeon_kms.c Log message: Don't attempt to suspend/resume a partially attached drm(4) driver. Fixes a crash upon resume with an ATI FireMV 2400 card. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/10/25 08:25:21 Modified files: www/p5-WWW-Bugzilla: Makefile distinfo www/p5-WWW-Bugzilla/pkg: DESCR PLIST www/p5-WWW-Ebay: Makefile distinfo www/p5-WWW-Ebay/pkg: PLIST www/p5-WWW-Shorten-Googl: Makefile distinfo www/p5-WWW-YouTube-Download: Makefile distinfo www/p5-WWW-Search: Makefile distinfo www/p5-WWW-Search-Ebay: Makefile distinfo Removed files: www/p5-WWW-YouTube-Download/patches: patch-lib_WWW_YouTube_Download_pm Log message: Update for p5-libwww 6.08, add dependencies, move to latest versions. Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/25 08:27:00 Added files: www/chromium/patches: patch-third_party_ffmpeg_libavcodec_x86_cabac_h Log message: fix build on i386 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/25 08:29:24 Modified files: audio/rhythmbox: Makefile audio/gmpc-plugins: Makefile x11/gnome/online-accounts: Makefile Log message: Regen WANTLIB to unbreak after recent webkit update. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/25 08:32:07 Modified files: usr.bin/mandoc : eqn.c libroff.h roff.c Log message: Report arguments to .EQ as an error, and simplify the code: * drop trivial wrapper function roff_openeqn() * drop unused first arg of function eqn_alloc() * drop usused member "name" of struct eqn_node CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/25 08:53:04 Modified files: mail/claws-mail: Makefile x11/gnome/banshee: Makefile x11/gnome/empathy: Makefile Log message: Regen DEPS/WANTLIB after recent webkit update; should be the last ports. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/25 09:05:21 Modified files: usr.bin/mandoc : eqn.c Log message: Fix a NULL pointer dereference reported by Theo Buehler on tech@: Do not attempt to parse empty equations. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/25 09:23:25 Modified files: usr.bin/mandoc : roff.c Log message: With the current architecture, we can't support inline equations inside tables, sorry. So don't even try to parse tbl(7) blocks for eqn(7) delimiters. Broken table layout found in glPixelMap(3) while investigating a bug report by Theo Buehler . CVSROOT: /cvs Module name: www Changes by: bcallah@cvs.openbsd.org 2014/10/25 10:22:25 Modified files: . : events.html Log message: Move my recent talk to the past. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 10:50:30 Log message: Import ocaml-cmdliner - dependency of OPAM ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/ocaml-cmdliner/Makefile N ports/devel/ocaml-cmdliner/distinfo N ports/devel/ocaml-cmdliner/pkg/DESCR N ports/devel/ocaml-cmdliner/pkg/PLIST N ports/devel/ocaml-cmdliner/pkg/PFRAG.dynlink-native N ports/devel/ocaml-cmdliner/pkg/PFRAG.native No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/25 10:51:32 Modified files: sys/arch/sparc/conf: GENERIC SUN4C SUN4M Log message: Add and enable qlw at sbus. Tested on QLGC,isp CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 10:53:42 Log message: Import ocaml-graph - dependency of OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/ocaml-graph/Makefile N ports/devel/ocaml-graph/distinfo N ports/devel/ocaml-graph/pkg/PFRAG.native N ports/devel/ocaml-graph/pkg/PLIST N ports/devel/ocaml-graph/pkg/DESCR N ports/devel/ocaml-graph/pkg/PFRAG.dynlink-native No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 10:56:00 Log message: Import ocaml-uutp - dependency of OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/ocaml-uutf/Makefile N ports/devel/ocaml-uutf/distinfo N ports/devel/ocaml-uutf/pkg/PFRAG.native N ports/devel/ocaml-uutf/pkg/PLIST N ports/devel/ocaml-uutf/pkg/PFRAG.dynlink-native N ports/devel/ocaml-uutf/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/25 10:57:58 Modified files: sys/arch/i386/i386: machdep.c sys/arch/amd64/amd64: bus_space.c Log message: uvm_km_valloc -> km_alloc ok mpi@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/25 10:58:59 Modified files: sys/arch/sparc64/sparc64: machdep.c Log message: uvm_km_valloc -> km_alloc CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 10:59:17 Log message: Import ocaml-re - dependency of OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/ocaml-re/distinfo N ports/devel/ocaml-re/Makefile N ports/devel/ocaml-re/pkg/DESCR N ports/devel/ocaml-re/pkg/PLIST N ports/devel/ocaml-re/pkg/PFRAG.native N ports/devel/ocaml-re/pkg/PFRAG.dynlink-native No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 11:01:23 Log message: Import ocaml-jsonm - dependency of OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/ocaml-jsonm/Makefile N ports/devel/ocaml-jsonm/distinfo N ports/devel/ocaml-jsonm/pkg/PFRAG.dynlink-native N ports/devel/ocaml-jsonm/pkg/PFRAG.native N ports/devel/ocaml-jsonm/pkg/PLIST N ports/devel/ocaml-jsonm/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 11:05:14 Log message: Import ocaml-dose - dependency of OPAM. ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/devel/ocaml-dose/Makefile N ports/devel/ocaml-dose/distinfo N ports/devel/ocaml-dose/patches/patch-myocamlbuild_ml N ports/devel/ocaml-dose/patches/patch-Makefile N ports/devel/ocaml-dose/patches/patch-algo_depsolver_ml N ports/devel/ocaml-dose/patches/patch-algo_depsolver_mli N ports/devel/ocaml-dose/patches/patch-applications_distcheck_ml N ports/devel/ocaml-dose/patches/patch-common_util_ml N ports/devel/ocaml-dose/pkg/PLIST N ports/devel/ocaml-dose/pkg/PFRAG.native N ports/devel/ocaml-dose/pkg/DESCR N ports/devel/ocaml-dose/pkg/PFRAG.dynlink-native No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/25 11:10:14 Log message: Import OPAM - compiler and package (repository) manager for OCaml ok krw@ Status: Vendor Tag: chrisz Release Tags: chrisz_20141025 N ports/sysutils/opam/Makefile N ports/sysutils/opam/distinfo N ports/sysutils/opam/patches/patch-Makefile N ports/sysutils/opam/pkg/DESCR-lib N ports/sysutils/opam/pkg/PLIST-lib N ports/sysutils/opam/pkg/DESCR-main N ports/sysutils/opam/pkg/PFRAG.native-lib N ports/sysutils/opam/pkg/PLIST-main No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/25 11:31:26 Modified files: sys/arch/hppa/hppa: machdep.c sys/arch/hppa64/hppa64: machdep.c Log message: Remove vmmap; it isn't used. ok jsing@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/25 12:21:01 Modified files: sys/arch/sparc/conf: SUN4C sys/arch/sparc/dev: qlw_sbus.c Log message: Don't let qlw attach to non-sun4m yet, as this driver currently depends upon sun4m's iommu for bus_dma. (Guess what task just hit my todolist...) CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/25 12:48:30 Modified files: usr.sbin/smtpd : makemap.c Log message: newaliases / makemap should parse multi-line aliases entries CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/25 14:25:56 Modified files: . : INDEX Log message: sync, 8790 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/25 15:08:50 Added files: www/chromium/patches: patch-apps_apps_gypi Log message: add a dependency on theme_resources, hopefully this will fix an intermittent build failure some of us have been seeing with ninja random builds. ok espie CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/25 15:44:42 Modified files: mail/postfix/stable: Makefile distinfo Log message: Update to Postfix 2.11.3. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/25 15:47:41 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.10.25 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/25 16:06:40 Modified files: mail/dovecot : Makefile distinfo mail/dovecot/pkg: PLIST-server Log message: Update to Dovecot 2.2.15. With some input from and ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/25 16:07:26 Modified files: mail/dovecot-antispam: Makefile mail/dovecot-pigeonhole: Makefile Log message: Update after update to Dovecot 2.2.15. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/25 16:08:16 Modified files: mail/postfix/snapshot: Makefile distinfo Log message: Update to Postfix 2.12-20141020. ok sthen@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 19:16:49 Modified files: usr.sbin/amd/amd: afs_ops.c host_ops.c map.c nfs_ops.c nfsx_ops.c util.c xutil.c usr.sbin/amd/include: config.h Log message: Replace xrealloc() with xreallocarray(). Break-out the 'log and die' function as xmallocfailure() and use that in the locations where reallocarray's checks alone aren't sufficient. ok doug@ deraadt@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 19:22:34 Modified files: usr.sbin/amd/amd: nfs_ops.c Log message: Consistently use the extra parens in 'if ((var = hasmntval(...)))' to suppress compiler warnings. Noted with gcc -Wall, then prodded by brad@ and clang CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/25 19:24:15 Removed files: graphics/luvcview/patches: patch-v4l2uvc_c Log message: revert the removal of anonymous unions, like sys/videoio.h CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 19:38:02 Modified files: usr.sbin/amd/amd: host_ops.c map.c Log message: Remove trailing newlines from a couple log messages CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:32:51 Modified files: usr.sbin/amd/include: config.h usr.sbin/amd/amd: xutil.c Log message: Use vsyslog() instead of manually expanding the string and calling syslog(%s) Now that newline stripping isn't needed, use vfprintf() instead of formatting and then writing it out. Delete bogus XXX comment that predated the switch to vsnprintf() Make the format string const char * CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:38:13 Removed files: usr.sbin/amd/maps: a_master a_net Log message: Delete inscrutable examples; the docs cover this CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:39:24 Removed files: usr.sbin/amd/text: COPYRIGHT INSTALL README amd.start.ex Log message: Delete information about porting to and running on other platforms. prodded by deraadt@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:43:50 Modified files: usr.sbin/amd/amd: afs_ops.c amd.c amq_subr.c efs_ops.c ifs_ops.c mapc.c nfs_subr.c opts.c sched.c sfs_ops.c srvr_nfs.c ufs_ops.c xutil.c Log message: Lint is dead CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:48:37 Modified files: usr.sbin/amd/amd: map.c Log message: Declare a few functions static CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:50:44 Modified files: usr.sbin/amd/include: am.h Log message: timeout_mp() is static now CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:51:47 Modified files: usr.sbin/amd/amd: mapc.c Log message: When regcomp() fails, use regerror() to get a useful error message CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 20:58:43 Modified files: usr.sbin/amd/amd: xutil.c Log message: Sort #includes; pull in for ctime() CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 21:00:35 Modified files: usr.sbin/amd/amd: host_ops.c Log message: clnt_sperrno() is declared nowadays in CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 21:03:34 Modified files: usr.sbin/amd/amd: afs_ops.c amq_subr.c clock.c info_file.c info_nis.c info_union.c mapc.c mntfs.c nfs_ops.c nfs_start.c srvr_afs.c srvr_nfs.c usr.sbin/amd/include: am.h usr.sbin/amd/rpcx: amq.h amq_clnt.c amq_svc.c mount.h nfs_prot.h nfs_prot_svc.c Log message: Update to the modern RPC style with different names for server and client stubs (they have different prototypes, after all). Fill in missing prototypes. Use void* arguments on closure-style callbacks, with local variables of the expected type. Keep deleting unnecessary casts. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 21:08:21 Modified files: usr.sbin/amd/amd: afs_ops.c am_ops.c clock.c map.c mapc.c mntfs.c nfs_ops.c nfsx_ops.c pfs_ops.c rpc_fwd.c sched.c srvr_afs.c Log message: Delete casts to void* of the argument to free(): only needed when lying about constness and none of these were CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 21:28:41 Modified files: usr.sbin/amd/amd: afs_ops.c amq_subr.c info_nis.c map.c mapc.c misc_rpc.c mntfs.c nfs_ops.c nfs_subr.c nfsx_ops.c opts.c pfs_ops.c rpc_fwd.c sched.c srvr_afs.c srvr_nfs.c ufs_ops.c util.c usr.sbin/amd/amq: amq.c Log message: Remove a gazillion useless casts to void* Eliminate a couple function pointer casts, fixing the function to match in one case CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/25 21:45:29 Modified files: sbin/sysctl : sysctl.c Log message: Add a format specifier for the printf. ok guenther@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/25 22:10:26 Modified files: usr.bin/file : apprentice.c Log message: Place additional parantheses around readdir() and check return does not equal NULL. apprentice.c:645:13: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] With input and ok guenther@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/25 23:10:29 Modified files: usr.bin/sort : sort.c Log message: Add parentheses to suppress compiler warning. sort.c:295:35: warning: '&&' within '||' [-Wlogical-op-parentheses] ok guenther@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/25 23:45:43 Modified files: lib/libc/sys : mknod.2 Log message: mknod(2) now supports creating FIFOs too. Fix description of device file creation while here. ok jmc@ schwarze@ millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/26 00:03:24 Modified files: usr.bin/fstat : fuser.c Log message: Move the #define _KERNEL wrapping to only cover CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/26 01:03:47 Modified files: games/battlestar: room.c Log message: Add a format specifier for the printf. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/26 04:32:30 Modified files: sys/arch/hppa/stand/mkboot: mkboot.c Log message: Don't forget to free() the malloc()s. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/26 04:33:48 Modified files: sys/lib/libsa : loadfile_elf.c Log message: Read the section header string table in the boot blocks' memory, not in the loaded image area. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/26 04:42:59 Modified files: distrib/hppa/ramdisk: Makefile Log message: Append 512 bytes of zero to the kernel image intended to be put into lif.fs, so that valid bytes exist at the end of the kernel image. Since the lif image stores files size in 256-byte unit, we can not report EOF while reading the kernel image until the remainder of the 256-byte sector has been read. But these zero bytes would cause the gzip readahead machinery in libsa to believe the kernel is followed by an uncompressed file, and switch to transparent mode, preventing backwards seeks into the kernel image from working. This fixes the ``read section header string table failed(0)'' errors when attempting to boot lif.fs since loadfile_elf.c 1.9. CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/10/26 05:26:08 Modified files: usr.sbin/smtpd : enqueue.c Log message: when using the local enqueuer, if the internal SMTP session fails, copy the original message to ~/dead.letter so it's not lost CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/26 06:54:18 Modified files: lib/libc/stdio : mktemp.3 Log message: The open flags param to mkostemps() should be "flags" not "oflags" for consistency with the rest of the manual. CVSROOT: /cvs Module name: ports Changes by: jsing@cvs.openbsd.org 2014/10/26 07:07:14 Modified files: lang/go : Makefile distinfo lang/go/pkg : PLIST Log message: Update lang/go to 1.3.3. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/26 07:48:03 Modified files: devel/iso-codes: Makefile distinfo Log message: update to iso-codes-3.57 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/26 07:51:56 Modified files: x11/gnome/calculator: Makefile distinfo x11/gnome/calculator/pkg: PLIST Log message: - update to gnome-calculator-3.14.1 - enable search provider CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/26 07:59:30 Modified files: usr.bin/nc : netcat.c Log message: POLLIN is not guaranteed to be set in revents for EOF so check for POLLHUP too. OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/26 08:02:48 Modified files: lang/arena : Makefile Log message: remove defunt HOMEPAGE and mirror distfile CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/26 08:15:08 Modified files: archivers/lz4 : Makefile distinfo archivers/lz4/patches: patch-Makefile archivers/lz4/pkg: PLIST Added files: archivers/lz4/patches: patch-programs_Makefile Removed files: archivers/lz4/patches: patch-cmake_CMakeLists_txt Log message: update to lz4 r123 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/26 08:22:01 Modified files: www/trac : Makefile distinfo www/trac/pkg : PLIST Log message: update to trac 1.0.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/26 08:22:05 Modified files: lang/gambit : Makefile distinfo lang/gambit/pkg: PLIST Log message: update to gambit-4.7.3 CVSROOT: /cvs Module name: src Changes by: chl@cvs.openbsd.org 2014/10/26 08:43:03 Modified files: usr.bin/netstat: inet.c Log message: remove unused variables ok schwarze@ CVSROOT: /cvs Module name: src Changes by: chl@cvs.openbsd.org 2014/10/26 08:47:37 Modified files: usr.sbin/sasyncd: pfkey.c Log message: fix use of uninitialized variable in error path ok deraadt@ CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/10/26 09:10:15 Modified files: sys/arch/octeon/include: octeon_model.h Log message: define octeon model cn61xx pass 1.1 ok pirofti@ CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/10/26 09:13:04 Modified files: sys/arch/octeon/dev: octrtc.c sys/arch/octeon/include: octeonvar.h Log message: - add board type of edgerouter pro - don't attach octrtc on the edgerouter pro either openbsd boots fine on this system, but as there's no ethernet support yet there's no storage at all right now. ok pirofti@ CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/26 09:20:55 Modified files: audio : Makefile Removed files: audio/ac3dec : Makefile distinfo audio/ac3dec/patches: patch-Makefile_in patch-configure patch-libac3_Makefile_in patch-libac3_bitstream_c patch-output_linux_c patch-tools_Makefile_in audio/ac3dec/pkg: DESCR PLIST Log message: Remove ac3dec as it's superseded by liba52 and it doesn't work. requested by sthen CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/26 09:23:09 Modified files: audio/libdca : Makefile Added files: audio/libdca/files: audio_out_sndio.c audio/libdca/patches: patch-libao_Makefile_am patch-libao_Makefile_in patch-libao_audio_out_c patch-libao_configure_incl Removed files: audio/libdca/patches: patch-configure Log message: make dcadec use sndio ok sthen CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/26 09:24:10 Modified files: audio/sidplay : Makefile Added files: audio/sidplay/files: audiodrv.cpp audiodrv.h audio/sidplay/patches: patch-configure patch-configure_in Log message: make sidplay use sndio ok sthen CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/26 09:27:04 Modified files: audio/liba52 : Makefile Added files: audio/liba52/files: audio_out_sndio.c audio/liba52/patches: patch-libao_Makefile_am patch-libao_Makefile_in patch-libao_audio_out_c patch-libao_configure_incl Log message: make a52dec use sndio ok sthen, "looks fine" espie CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/26 10:18:42 Modified files: sys/dev/pci : pci.c Log message: Add resource tracking for PCI ROMs. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/26 11:11:18 Modified files: usr.bin/mandoc : chars.c html.c term.c term.h term_ascii.c Log message: Improve -Tascii output for Unicode escape sequences: For the first 512 code points, provide ASCII approximations. This is already much better than what groff does, which prints nothing for most code points. A few minor fixes while here: * Handle Unicode escape sequences in the ASCII range. * In case of errors, use the REPLACEMENT CHARACTER U+FFFD for -Tutf8 and the string "" for -Tascii output. * Handle all one-character escape sequences in mchars_spec2{cp,str}() and remove the workarounds on the higher level. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/10/26 11:15:58 Modified files: devel : Makefile sysutils : Makefile Log message: Add OPAM and dependencies to category Makefiles. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/26 12:06:28 Modified files: usr.bin/mandoc : chars.c mandoc.h term_ascii.c Log message: In -Tascii mode, provide approximations even for some Unicode escape sequences above codepoint 512 by doing a reverse lookup in the existing mandoc_char(7) character table. Again, groff isn't smart enough to do this and silently discards such escape sequences without printing anything. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/26 12:17:16 Modified files: sys/arch/sparc64/dev: iommu.c Log message: uvm_km_valloc -> km_alloc CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/26 14:34:37 Modified files: sys/kern : kern_ktrace.c Log message: Now that threads hold their own reference to their ucreds, sys_ktrace() doesn't need to hold an extra reference during the call ok deraadt@ millert@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/10/26 14:37:15 Modified files: usr.sbin/iostat: iostat.c Log message: Add explicit braces to suppress compiler warnings. iostat.c:214:3: warning: add explicit braces to avoid dangling else [-Wdangling-else] ok guenther@ millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/26 14:38:13 Modified files: usr.bin/chpass : chpass.c usr.bin/mail : lex.c Log message: Prefer mkostemp(O_CLOEXEC) over mkstemp()+fcntl(F_SETFD) Prefer fopen("re") over fopen("r")+fcntl(F_SETFD) ok otto@ millert@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/26 14:43:57 Modified files: sysutils/collectd: Makefile sysutils/collectd/patches: patch-configure sysutils/collectd/pkg: PLIST-main PLIST-rrdtool Added files: sysutils/collectd/patches: patch-src_processes_c Log message: Enable the processes & rrdcached plugins. whack processes.c to use the same codepaths as freebsd's, taking into account kinfo_proc differences.. to be properly pushed upstream. Tested on ppc & amd64. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/26 15:13:18 Modified files: devel : Makefile Log message: fix typos: ocaml-json -> ocaml-jsonm, ocaml-uutp -> ocaml-uutf CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/26 16:04:17 Modified files: gnu/usr.bin/perl: MANIFEST patchlevel.h gnu/usr.bin/perl/dist/Data-Dumper: Dumper.pm Dumper.xs Added files: gnu/usr.bin/perl/dist/Data-Dumper/t: recurse.t Log message: Fix a possibly infinite recursion in Perl Data::Dumper. Derived from Perl git commit http://perl5.git.perl.org/perl.git 19be3be6968e2337bcdfe480693fff795ecd1304 Add a configuration variable/option to limit recursion when dumping deep data structures. Defaults the limit to 1000, which can be reduced or increase, or eliminated by setting it to 0. This patch addresses CVE-2014-4330. This bug was found and reported by: LSE Leading Security Experts GmbH employee Markus Vervier. From Maximilian Pascher; OK schwarze@ afresh1@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/26 16:16:16 Modified files: usr.sbin/apmd : apmd.c usr.sbin/cron : misc.c Log message: Use socket(SOCK_CLOEXEC), open(O_CLOEXEC), and fcntl(F_DUPFD_CLOEXEC) instead of calling fcntl(F_SETFD) later. ok otto@ millert@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/26 16:42:27 Modified files: www/lighttpd : Makefile Added files: www/lighttpd/patches: patch-src_configfile_c Log message: Fix from upstream.. disable SSL3.0 by default CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/26 17:31:00 Modified files: distrib/miniroot: install.sub Log message: Defer processing hostname.if files for trunks, svlans and vlans during upgrades. This ensures all physical interfaces are configured first, as is done in /etc/netstart. Currently only vlans are present in install images, but that could change. Requested by many so trunks might work during upgrades. Prodded by henning@ actually creating a diff to add trunks to boot images. Tested & ok rpe@ sthen@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/26 17:36:44 Modified files: sbin/dhclient : dhclient.c Log message: Allow the current lease to expire without causing dhclient to seg fault when it tries to get a new one. Problem spotted by weerd@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/26 18:49:05 Modified files: sys/arch/arm/arm: pmap7.c Log message: use #ifdef DDB for Debugger() CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/27 02:30:20 Modified files: audio/ncmpcpp : Makefile distinfo audio/ncmpcpp/patches: patch-doc_ncmpcpp_1 patch-src_ncmpcpp_cpp patch-src_status_cpp audio/ncmpcpp/pkg: DESCR MESSAGE PLIST Added files: audio/ncmpcpp/patches: patch-configure Removed files: audio/ncmpcpp/patches: patch-src_clock_cpp patch-src_help_cpp patch-src_lyrics_cpp patch-src_settings_cpp patch-src_settings_h patch-src_song_info_cpp Log message: Update to ncmpcpp-0.6 CVSROOT: /cvs Module name: www Changes by: giovanni@cvs.openbsd.org 2014/10/27 02:49:37 Modified files: . : events.html Log message: I will give a talk at OpenSourceDay on LibreSSL CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/27 03:07:07 Modified files: sysutils/collectd/patches: patch-configure patch-src_plugin_h patch-src_processes_c patch-src_tcpconns_c Log message: add links to upstream github PR CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 04:33:32 Modified files: devel/help2man : Makefile distinfo Log message: update to help2man-1.46.4, from Jason Tubnor - this is a key port builds-wise as it's in the path to autoconf (and thus many other ports), so I gave extra consideration because distfiles have switched to tar.xz; however xz has no dependencies and is usually built early anyway, so this shouldn't slow things down. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/27 05:07:18 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in patch-configure audio/mpd/pkg : PLIST Log message: Update to mpd-0.19.1 Tested by landry@ on powerpc, and on amd64 by me and Bryan Linton CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 05:21:49 Log message: import x11/compton, from maintainer Sunil Nimmagadda, ok landry@ Compton is a lightweight, standalone composite manager, suitable for use with window managers that do not natively provide compositing functionality. Compton itself is a fork of xcompmgr-dana, in turn a fork of xcompmgr. Compton in particular is notable for fixing numerous bugs found in its predecessors, and as such, is popular due to its reliability and stability. Numerous additional improvements and configuration options have also been implemented, including a faster GLX (OpenGL) backend (disabled by default), default inactive/active window opacity, window frame transparency, window background blur, window color inversion, painting rate throttling, VSync, condition-based fine-tune control, configuration file reading, and D-Bus control. Status: Vendor Tag: sthen Release Tags: sthen_20141027 N ports/x11/compton/Makefile N ports/x11/compton/distinfo N ports/x11/compton/patches/patch-src_c2_c N ports/x11/compton/patches/patch-src_c2_h N ports/x11/compton/patches/patch-Makefile N ports/x11/compton/patches/patch-src_common_h N ports/x11/compton/patches/patch-src_compton_h N ports/x11/compton/patches/patch-src_compton_c N ports/x11/compton/pkg/DESCR N ports/x11/compton/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 05:22:32 Modified files: x11 : Makefile Log message: +compton CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 05:50:10 Modified files: sysutils/mcollective-plugins/puppet-agent: Makefile distinfo Log message: update to mcollective-puppet-agent-1.9.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 06:00:30 Modified files: x11/gxmessage : Makefile distinfo x11/gxmessage/pkg: DESCR PLIST Log message: update to gxmessage-3.4.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 06:04:14 Modified files: x11/gtk-engines2: Makefile Log message: add PORTROACH CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/27 07:16:48 Modified files: security/stunnel: Makefile distinfo security/stunnel/patches: patch-tools_stunnel_conf-sample_in Log message: Update for Stunnel to 5.06: Security bugfixes OpenSSL DLLs updated to version 1.0.1j. https://www.openssl.org/news/secadv_20141015.txt The insecure SSLv2 protocol is now disabled by default. It can be enabled with "options = -NO_SSLv2". The insecure SSLv3 protocol is now disabled by default. It can be enabled with "options = -NO_SSLv3". Default sslVersion changed to "all" (also in FIPS mode) to autonegotiate the highest supported TLS version. New features Added missing SSL options to match OpenSSL 1.0.1j. New "-options" commandline option to display the list of supported SSL options. Bugfixes Fixed FORK threading build regression bug. OK gsoares@ (maintainer) OK schwarze@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/27 07:23:11 Modified files: textproc/libxmlsd: Makefile distinfo textproc/libxmlsd/pkg: PLIST Removed files: textproc/libxmlsd/pkg: PFRAG.shared Log message: Update for xmlsd to 0.10.1 OK Davil Hill (maintainer) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 07:29:30 Modified files: usr.bin/mandoc : term.c chars.c html.c mandocdb.c Log message: Fix a regression in term.c rev. 1.89 reported by bentley@: In UTF-8 output, do not print anything if mchars_spec2cp() returns 0. In particular, this repairs handling of zero-width spaces (\&). While here, let mchars_spec2cp() return 0xFFFD instead of -1 if the character is not found, simplifying the using code. In HTML output, do not print obfuscated ASCII characters and do not test for one-char escapes, mchars_spec2cp() already does that. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/27 07:36:21 Modified files: sbin/dhclient : clparse.c kroute.c options.c privsep.c Log message: Zap extraneous whitespace and a stuttered extra 'break;'. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 07:41:17 Modified files: net/prosody : Makefile distinfo Log message: - update to prosody-0.9.6 from Henrik Friedrichsen (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 07:42:39 Modified files: archivers/lz4 : Makefile distinfo Log message: use a portroach-compatible distname CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 07:51:12 Modified files: misc/portroach : Makefile Log message: ensure https works after libwww update pointed out by nigel@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/27 07:55:05 Modified files: sys/dev/wscons : wsdisplay.c wsmouse.c wsmoused.h Log message: Stop supporting wsmoused and X in parallel. This code is racy and known to break mice upon resume. ok shadchin@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 08:10:31 Modified files: net/nagios/check_email_delivery: Makefile Log message: add portroach skipv annotation CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/27 08:17:01 Modified files: sbin/dhclient : options.c Log message: htonl(ntohl(memcpy'd buf)) seems like the long way around to copy an IPv4 address. Just memcpy() it. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 09:05:46 Modified files: regress/usr.bin/mandoc: Makefile.inc Makefile.sub Log message: Infrastructure for testing HTML output; this is relevant because we use the HTML output module for man.cgi(8), where broken output can cause security issues. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:26:41 Modified files: devel : Makefile Log message: -smarty CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:27:54 Removed files: devel/smarty : Makefile distinfo devel/smarty/pkg: DESCR-docs DESCR-main MESSAGE-main PLIST-docs PLIST-main Log message: remove smarty, a php-templating engine that went without updates for 5 years; clearly nobody gives a chainsaw about this port ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:28:21 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register smarty removal CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:28:39 Modified files: net/wget : Makefile net/wget/patches: patch-doc_wget_texi Added files: net/wget/patches: patch-src_init_c Log message: Security fix for CVE-2014-4877, Arbitrary Symlink Access CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:31:18 Modified files: net/wget : Tag: OPENBSD_5_6 Makefile net/wget/patches: Tag: OPENBSD_5_6 patch-doc_wget_texi Added files: net/wget/patches: Tag: OPENBSD_5_6 patch-src_init_c Log message: Security fix for CVE-2014-4877, Arbitrary Symlink Access CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:31:25 Modified files: net/wget : Tag: OPENBSD_5_5 Makefile net/wget/patches: Tag: OPENBSD_5_5 patch-doc_wget_texi Added files: net/wget/patches: Tag: OPENBSD_5_5 patch-src_init_c Log message: Security fix for CVE-2014-4877, Arbitrary Symlink Access CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:44:20 Modified files: net/ejabberd : Makefile Added files: net/ejabberd/patches: patch-src_ejabberd_c2s_erl Log message: Security fix for CVE-2014-8760 ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:47:04 Modified files: net/ejabberd : Tag: OPENBSD_5_6 Makefile Added files: net/ejabberd/patches: Tag: OPENBSD_5_6 patch-src_ejabberd_c2s_erl Log message: Security fix for CVE-2014-8760 ok maintainer CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 09:47:11 Modified files: net/ejabberd : Tag: OPENBSD_5_5 Makefile Added files: net/ejabberd/patches: Tag: OPENBSD_5_5 patch-src_ejabberd_c2s_erl Log message: Security fix for CVE-2014-8760 ok maintainer CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 10:28:30 Modified files: usr.bin/mandoc : html.c Log message: Handle output encoding for unicode, numbered and named escape sequences in one common, safe way instead of three different ways. In particular, * skip NUL, it is used to mean "no output desired" * deny 0x01-0x1F and 0x7F-0x9F, print REPLACEMENT CHARACTER instead * print 0x20-0x7E literally or name-encoded, as required * print characters above 0x9F numerically CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/27 11:01:28 Modified files: sbin/dhclient : convert.c dhcpd.h options.c Log message: Nuke getLong(), getShort(), getUShort(). Two line functions (memcpy(); ntoh[ls]()) obscure rather than simplify things. Especially when they are used only once. Just use the expansion. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 11:13:30 Modified files: devel/pep8 : Makefile distinfo Log message: update to pep8-1.5.7, from frantisek holop - enable tests while there CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 12:09:36 Modified files: regress/usr.bin/mandoc: Makefile.inc Log message: allow to separately skip groff-mandoc comparisons in -Tascii and -Tutf8 mode CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 12:26:05 Modified files: textproc/ruby-yard: Makefile distinfo textproc/ruby-yard/pkg: PLIST Log message: update to yard-0.8.7.6 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 12:35:10 Modified files: textproc/ruby-treetop: Makefile distinfo textproc/ruby-treetop/pkg: PLIST Log message: update to treetop-1.5.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/27 12:35:21 Modified files: devel/ruby-polyglot: Makefile distinfo devel/ruby-polyglot/pkg: PLIST Log message: update to polyglot-0.3.5 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/10/27 12:53:27 Modified files: textproc/the_silver_searcher: Makefile distinfo Log message: Update to 0.26.0 From Florian Stinglmayr (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/27 13:13:05 Modified files: net/p5-Test-TCP: Makefile distinfo net/p5-Test-TCP/pkg: PLIST Log message: Update for p5-Test-TCP to 2.06 tested in sparc64@ OK Abel Abraham Camarillo Ojeda (maintainer) CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/27 13:16:38 Modified files: sys/arch/powerpc/powerpc: pmap.c Log message: Remove execute permission from most pages in the kernel pmap. This is a first step towards W^X in the kernel, even though it is only effective on machines with a G5 processor. ok mpi@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/27 13:54:31 Modified files: sbin/dhclient : dhclient.c Log message: Compare with/use UINT16_MAX rather than 65535. Less magic is more. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 14:41:16 Modified files: usr.bin/mandoc : term_ps.c Log message: Support overstriking by backspace in PostScript and PDF output. Of course, this is only a minor improvement; it would be much better to support non-ASCII characters in these output modes, but that would require major changes that i'm not going to work on right now. The main reason for doing this is that it allows to get ASCII output closer to groff. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/27 14:55:50 Modified files: x11/xscreensaver: Makefile Added files: x11/xscreensaver/patches: patch-driver_XScreenSaver_ad_in Log message: Dont hardcode gnome-terminal to display the manpage, fallback to xterm. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/27 15:06:25 Modified files: lang/scheme48 : Makefile Log message: Unify names for portroach. with maintainer's permission and ok from jasper@ CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/10/27 15:24:26 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Ensure proper separation of grep's options and rcctl options that may end up in ${svc} by mistake. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/27 15:33:22 Modified files: textproc/meld : Makefile distinfo textproc/meld/pkg: PLIST Removed files: textproc/meld/patches: patch-setup_py Log message: Update to meld-3.12.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/27 15:40:26 Modified files: x11/gnome/latexila: Makefile distinfo Log message: Update to latexila-3.14.2. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/10/27 15:51:32 Modified files: sbin/pfctl : parse.y pfctl_parser.c pfctl_parser.h Log message: Fixup incorrect expansion of the networking mask for dynamic interface specifications under certain circumstances resulting in potentially elevated access permissions for IPv6 traffic. Reported by sthen@; ok henning benno sthen CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/10/27 15:56:57 Modified files: sys/arch/powerpc/include: bat.h sys/arch/macppc/macppc: locore.S machdep.c sys/arch/socppc/socppc: locore.S machdep.c Log message: Remove the spilling code for IBAT register and set up the first IBAT register to cover the first 8 MB of memory such that it covers kernel .text and not much else. This is a first step towards W^X in the kernel for machines with G4 and older processors. ok mpi@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/27 15:59:32 Modified files: editors/bvi : Makefile distinfo editors/bvi/pkg: DESCR PLIST Added files: editors/bvi/patches: patch-Makefile_in Removed files: editors/bvi/patches: patch-edit_c patch-io_c Log message: update to 1.4.0: miscellaneous bug fixes CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/27 16:06:40 Modified files: databases/pgadmin3: Tag: OPENBSD_5_6 Makefile Added files: databases/pgadmin3/patches: Tag: OPENBSD_5_6 patch-pgadmin_frm_events_cpp patch-pgadmin_frm_frmQuery_cpp Log message: backport pgadmin3 crash fix from -current CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/27 16:23:47 Modified files: usr.bin/tmux : cfg.c cmd-queue.c cmd-source-file.c server.c tmux.h Log message: Move cfg_causes local into cfg.c and remove struct causelist. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/10/27 16:40:29 Modified files: usr.bin/tmux : Makefile cmd-move-window.c Removed files: usr.bin/tmux : cmd-link-window.c Log message: Merge linkw and movew which are virtually identical. CVSROOT: /cvs Module name: src Changes by: gsoares@cvs.openbsd.org 2014/10/27 16:45:30 Modified files: share/man/man7 : packages-specs.7 pkgpath.7 Log message: fixup REGRESS_DEPENDS->TEST_DEPENDS REGRESS_* idiom died a while ago OK naddy@ sthen@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/10/27 17:04:50 Modified files: . : plus.html Log message: plus.html Oct 13-19. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/27 18:36:06 Modified files: sys/dev/pci : if_myx.c Log message: the if_rxring accounting would get screwed up if the first mbuf to be put on the ring couldnt be allocated. this pulls the code that puts the mbufs on the ring out of myx_rx_fill so it can return early if firstmb cant be allocated, which puts it in the right place to return unused slots to the if_rxring. this means myx rx wont lock up if you're DoSsed to the point where you exhaust your mbuf pools and cant allocate mbufs for the ring. ok jmatthew@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/27 19:09:22 Modified files: net/libgadu : Makefile distinfo net/libgadu/pkg: PLIST Removed files: net/libgadu/pkg: PFRAG.shared Log message: Update to libgadu 1.12.0. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/27 19:14:23 Modified files: net/pidgin : Makefile distinfo net/pidgin/files: ssl-openssl.c net/pidgin/patches: patch-configure_ac patch-libpurple_plugins_ssl_Makefile_in patch-libpurple_protocols_jabber_Makefile_in patch-libpurple_protocols_oscar_Makefile_in patch-libpurple_protocols_yahoo_Makefile_in patch-pidgin_Makefile_in patch-pidgin_gtkdialogs_c net/pidgin/pkg : PLIST-libpurple PLIST-main Log message: Update to Pidgin 2.10.10. Fixes 4 issues with CVE assigned.. CVE-2014-3695, CVE-2014-3696, CVE-2014-3697, CVE-2014-3698. ok jasper@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 20:43:05 Modified files: usr.bin/mandoc : chars.in term_ascii.c Log message: Refine -Tascii rendering of Unicode characters, mostly to better agree with groff, in particular in cases where groff uses backspace overstrike. In two cases, agreement is impossible because groff clobbers the previous line: \(*G \(*S In a number of cases, groff rendering is so misleading that i chose to render differently: \(Sd \(TP \(Tp \(Po \(ps \(sc \(r! \(r? \(de While here, also correct the \(la and \(ra Unicode code points. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/27 20:49:48 Modified files: regress/usr.bin/mandoc/char/space: Makefile zerowidth.in zerowidth.out_ascii regress/usr.bin/mandoc/char/unicode: Makefile regress/usr.bin/mandoc/roff/esc: one.in one.out_ascii two.in two.out_ascii Added files: regress/usr.bin/mandoc/char/space: zerowidth.out_html zerowidth.out_utf8 regress/usr.bin/mandoc/char/unicode: ascii.in ascii.out_ascii ascii.out_html ascii.out_utf8 latin1.in latin1.out_ascii latin1.out_html latin1.out_utf8 latin1diff.in latin1diff.out_ascii latin1diff.out_html latin1diff.out_utf8 named.in named.out_ascii named.out_html named.out_utf8 namediff.in namediff.out_ascii namediff.out_html namediff.out_utf8 Log message: some new and/or updated regression tests for -Tascii, -Tutf8 and -Thtml rendering of character escape sequences CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/10/27 23:46:56 Modified files: lib/libssl/src/crypto/asn1: a_strnid.c lib/libssl/src/crypto/evp: evp_pbe.c lib/libssl/src/crypto/objects: o_names.c lib/libssl/src/crypto/ocsp: ocsp_ext.c lib/libssl/src/crypto/pkcs7: pk7_attr.c lib/libssl/src/crypto/store: str_mem.c lib/libssl/src/crypto/ts: ts_conf.c lib/libssl/src/crypto/x509v3: v3_alt.c v3_extku.c Log message: Check the result of sk_*_push() operations for failure. ok doug@ jsing@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/27 23:48:22 Modified files: usr.sbin/iostat: iostat.c Log message: use nanosleep() instead of hackish select(); ok dlg CVSROOT: /cvs Module name: src Changes by: dcoppa@cvs.openbsd.org 2014/10/28 00:04:19 Modified files: usr.sbin/apmd : apmd.c Log message: Remove now useless defines ok tedu@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/28 01:35:59 Modified files: lib/libssl/src/crypto/aes: aes_x86core.c lib/libssl/src/crypto/bf: bf_cbc.c bf_cfb64.c bf_enc.c bf_ofb64.c lib/libssl/src/crypto/bn: bn_add.c bn_gf2m.c bn_lcl.h bn_nist.c bn_shift.c lib/libssl/src/crypto/bn/asm: x86_64-gcc.c lib/libssl/src/crypto/camellia: camellia.c lib/libssl/src/crypto/cast: c_cfb64.c c_enc.c c_ofb64.c lib/libssl/src/crypto/des: cbc_cksm.c cfb64ede.c cfb64enc.c cfb_enc.c des_enc.c des_locl.h ecb3_enc.c ecb_enc.c ede_cbcm_enc.c fcrypt_b.c ncbc_enc.c ofb64ede.c ofb64enc.c ofb_enc.c pcbc_enc.c set_key.c str2key.c xcbc_enc.c lib/libssl/src/crypto/idea: i_cbc.c i_cfb64.c i_ofb64.c i_skey.c lib/libssl/src/crypto/md4: md4_dgst.c lib/libssl/src/crypto/md5: md5_dgst.c lib/libssl/src/crypto/mdc2: mdc2dgst.c lib/libssl/src/crypto/rc2: rc2_cbc.c rc2cfb64.c rc2ofb64.c lib/libssl/src/crypto/rc4: rc4_enc.c rc4_skey.c lib/libssl/src/crypto/rc5: rc5_enc.c rc5cfb64.c rc5ofb64.c lib/libssl/src/crypto/ripemd: rmd_dgst.c lib/libssl/src/crypto/sha: sha_locl.h Log message: deregister; no binary change ok jsing@ miod@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/28 02:18:30 Modified files: converters/ppmtoTbmp: Makefile net/cftp : Makefile x11/bbpager : Makefile Log message: add working maintainer address CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/28 02:23:06 Modified files: security/p5-Crypt-SaltedHash: Makefile textproc/p5-Text-DoubleMetaphone: Makefile www/p5-Apache-Session-Memcached: Makefile x11/dwm : Makefile databases/p5-Data-RandomPerson: Makefile mail/bmf : Makefile textproc/p5-Catalyst-Plugin-Markdown: Makefile www/p5-Catalyst-Plugin-Cache-Memcached: Makefile www/p5-Catalyst-Plugin-PageCache: Makefile Log message: unify ok jim@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/28 02:42:47 Modified files: editors/emacs21: Makefile Log message: Stop linking against libossaudio, sound support isn't even activated. ok sthen@ ratchov@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/28 03:02:58 Modified files: net/mirall : Makefile net/mirall/patches: patch-src_mirall_application_cpp Log message: shut up update checker ok dcoppa@ CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/10/28 03:10:21 Modified files: sys/net : pipex.c Log message: Fix pipex(4) to initialize DF bit in IP header for L2TP message. Without this, the packets larger than the minimum MTU on the routes to the L2TP peer had been dropped. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/28 03:13:24 Modified files: devel/hs-hslogger: Makefile distinfo devel/hs-MissingH: Makefile devel/hs-ConfigFile: Makefile Log message: Update to hslogger-1.2.6 CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/10/28 03:15:09 Modified files: sys/net : pipex.c Log message: Initialize the lists of the hash tables and the virtual pipex sesssion for multicast in proper way. CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/10/28 03:19:29 Modified files: mail/courier-authlib: Makefile mail/courier-authlib/patches: patch-Makefile_in Removed files: mail/courier-authlib/patches: patch-authldap_h patch-authldaplib_c Log message: unbreak after MySQL -> Mariadb switch and remove useless patches. hints and ok sthen@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/28 03:19:54 Modified files: mail/dovecot : Makefile Added files: mail/dovecot/patches: patch-configure Log message: link Dovecot's executables with -lpthread, allowing use of plugins which use shared libraries that use threads (e.g. mysqlclient). ok brad@ CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/10/28 03:45:37 Modified files: sys/net : pipex.c Log message: Fix pipex(4) to return multicast packets to the caller so that npppd can handle them. Also use M_NOWAIT for copying a multicast packet. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/28 04:00:52 Modified files: geo/qlandkartegt: Makefile Added files: geo/qlandkartegt/patches: patch-src_CMainWindow_cpp Log message: Disable update querying dialog by default; prevents an annoying dialog at startup. ok sebastia@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/10/28 05:02:38 Modified files: sys/netinet : in_pcb.c Log message: Select a proper source address when the bound address is INADDR_BROADCAST the same as INADDR_ANY. ok mpi CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/28 05:26:36 Modified files: net/icbd : Makefile distinfo Log message: update to icbd 1.1, ok pascal@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/28 06:15:18 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.271. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/28 06:25:53 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo Log message: update to specinfra-2.4.1 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/28 06:30:55 Modified files: net/libgadu : Makefile Log message: Fix MASTER_SITES and update HOMEPAGE. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/28 06:46:21 Modified files: lang/php : Makefile.inc Log message: use .elif, not .else if - this caused the wrong PKGSPEC to be used for php/5.5 subpackages. plist_db says a REVISION bump is not needed. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/28 07:07:48 Modified files: lang/php : Makefile.inc Log message: remove useless conditional, we don't have 5.2 any more CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/28 07:22:57 Modified files: usr.bin/mandoc : chars.c mandoc.c Log message: Tighten Unicode escape name parsing. Accept only 0xXXXX, 0xYXXXX, 0x10XXXX with Y != 0. This simplifies mchars_num2uc(). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/28 09:14:14 Modified files: net/libgadu : Makefile Log message: fix homepage, from viq CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/28 11:27:15 Modified files: x11/xmobar : Makefile distinfo x11/xmobar/patches: patch-samples_xmobar_config patch-src_Plugins_Monitors_hs patch-xmobar_cabal Removed files: x11/xmobar/patches: patch-src_Plugins_Monitors_MPD_hs Log message: Update to xmobar-0.22.1 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/28 11:35:42 Modified files: usr.bin/mandoc : cgi.c chars.c html.c html.h libmandoc.h main.c main.h man_term.c mandoc.h mandocdb.c mdoc_term.c read.c roff.c term.c term.h term_ascii.c term_ps.c Log message: Make the character table available to libroff so it can check the validity of character escape names and warn about unknown ones. This requires mchars_spec2cp() to report unknown names again. Fortunately, that doesn't require changing the calling code because according to groff, invalid character escapes should not produce output anyway, and now that we warn about them, that's fine. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/28 11:52:05 Modified files: devel/llvm : Makefile Added files: devel/llvm/patches: patch-lib_Target_X86_MCTargetDesc_X86MCAsmInfo_cpp Log message: Remove the .quad assembler workaround for i386 now that the external assembler has been fixed. The integrated assembler already handled this properly but the workaround didn't take that into consideration. ok daniel@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/28 12:48:56 Modified files: usr.bin/mandoc : term.c term_ascii.c Log message: In -Tascii mode, print "" only for Unicode escapes of unknown representation, not for character escapes with unknown names. According to groff, the latter produce no output, and we now warn about them. CVSROOT: /cvs Module name: src Changes by: benno@cvs.openbsd.org 2014/10/28 13:03:03 Modified files: regress/sbin/pfctl: Makefile Added files: regress/sbin/pfctl: pf102.in pf102.ok Log message: add a regression test for the pfctl parser bug recently fixed by mikeb@ in pfctl/parse.y rev 1.641. with feedback from mikeb sthen and henning CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/28 13:17:38 Modified files: mail/ruby-mail : Makefile distinfo mail/ruby-mail/pkg: PLIST Log message: update to mail-2.6.1 CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/28 14:00:32 Modified files: net/p5-Net-DNS-SEC: Makefile distinfo Log message: Update for Net-DNS-SEC to 0.20 OK gsoares@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/28 16:25:45 Modified files: net/cftp : Makefile net/cftp/pkg : PLIST Log message: update homepage, from maintainer while there, regen plist and update license marker CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/28 18:07:17 Modified files: news/newsfetch : Makefile distinfo news/newsfetch/patches: patch-Makefile news/newsfetch/pkg: DESCR PLIST Log message: newsfetch port cleanup - delete extra comments at the top of Makefile - respect DEBUG, pass CC/CFLAGS/LDFLAGS using MAKE_FLAGS - pass INSTALL_* via FAKE_FLAGS - drop USE_GROFF; no visible difference - use ALL_TARGET instead of patching - add @bin annotation - clean up DESCR (urkh...) - regen distinfo CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/28 18:17:02 Modified files: usr.bin/mandoc : chars.c html.c mandoc.h term.c Log message: In terminal output, unify handling of Unicode and numbered character escape sequences just like it was earlier implemented for -Thtml. Do not let control characters other than ASCII 9 (horizontal tab) propagate to the output, even though groff allows them; but that really doesn't look like a great idea. Let mchars_num2char() return int such that we can distinguish invalid \N syntax from \N'0'. This also reduces the danger of signed char issues popping up. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/10/28 21:33:14 Modified files: usr.sbin/inetd : Makefile inetd.c Log message: replace the use of select and hand rolled deferral of signal handling with libevent. this has been in snaps for a while without any negative (or positive) feedback. review and tweaks by bluhm@ nicm@ ok bluhm@ deraadt@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/28 21:34:26 Modified files: usr.bin/mandoc : chars.in Log message: Some fine tuning of console rendering of named special characters. Correct ASCII rendering: \(lb \(<> \(sd Make ASCII rendering agree with groff, using backspace overstrike: \(da \(ua \(dA \(uA \(fa \(c* \(c+ \(ib \(ip \(/_ \(pp \(is \(dd \(dg CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/28 21:39:26 Modified files: regress/usr.bin/mandoc/char/unicode: Makefile ascii.in ascii.out_ascii ascii.out_utf8 named.in named.out_ascii named.out_html named.out_utf8 namediff.in namediff.out_ascii namediff.out_html namediff.out_utf8 Added files: regress/usr.bin/mandoc/char/unicode: invalid.in invalid.out_ascii invalid.out_html invalid.out_lint invalid.out_utf8 nogroff.in nogroff.out_ascii nogroff.out_html nogroff.out_utf8 Log message: test various recent improvements of special character rendering CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/28 22:00:44 Modified files: usr.sbin/rdate : ntp.c Log message: use poll() instead of select(), thereby removing the fd_set malloc/free dance which was used to avoid fd_set overflow with high file descriptor values. ok doug CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/10/28 22:34:21 Modified files: include/rpc : rpc_msg.h svc.h Log message: Add prototypes for xdr_{accepted,rejected}_reply() and svcudp_enablecache() (Both NetBSD and FreeBSD provide these prototypes) ok millert@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/28 22:39:02 Modified files: usr.sbin/cron : cron.c externs.h Log message: use poll() instead of the select malloc/free dance which was used to avoid fd_set overflows. Back when I was young, I fixed these throughout the tree, and the world continued on ignoring the issue... The malloc/free dance was used because poll() was not very portable yet. Now poll() is commonplace, and we should use this safer API. ok guenther millert CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/29 00:16:34 Modified files: usr.sbin/rarpd : rarpd.c Log message: delete obscure workaround for a bug in SunOS. (But leave the VMS workaround intact) CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/29 00:26:40 Modified files: sbin/iked : pfkey.c sbin/isakmpd : pf_key_v2.c Log message: convert simple cases of select() to poll() ok doug CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/29 00:31:58 Modified files: sbin/fsck_ext2fs: inode.c Log message: remove ugly return value casts CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/29 01:27:22 Modified files: graphics : Makefile Removed files: graphics/flash : Makefile distinfo graphics/flash/patches: patch-Lib_flash_cc patch-Lib_graphic16_h patch-Lib_graphic24_h patch-Lib_graphic32_h patch-Lib_matrix_h patch-Lib_shape_cc patch-Lib_sound_cc patch-Makefile graphics/flash/pkg: DESCR PLIST Log message: Remove graphics/flash as we dont endorse flash players, especially the ones dead upstream since 13+ years ok ajacoutot, sthen, a lot of help from landry ;) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/29 02:18:23 Modified files: www/minitube : Makefile distinfo www/minitube/patches: patch-src_mainwindow_cpp www/minitube/pkg: PLIST Added files: www/minitube/patches: patch-src_iconutils_cpp Removed files: www/minitube/patches: patch-src_utils_cpp Log message: Update to minitube-2.3 ok pirofti@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/29 03:06:35 Modified files: audio/sonata : Makefile distinfo Log message: Update to a newer checkout. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/29 03:14:50 Modified files: sysutils/syslog-ng: Makefile sysutils/syslog-ng/pkg: PLIST Log message: Fix install path of syslog-ng.conf. prodded by and ok steven@ (maintainer) CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/29 03:51:44 Modified files: regress/sbin/route: rttest1.ok rttest10.ok rttest11.ok rttest12.ok rttest2.ok rttest3.ok rttest4.ok rttest5.ok rttest6.ok rttest7.ok rttest8.ok rttest9.ok Log message: Update test outputs to reflect the fact that routes to loopback addresses are plain local routes. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/29 04:07:15 Modified files: sysutils/syslog-ng: Tag: OPENBSD_5_6 Makefile sysutils/syslog-ng/pkg: Tag: OPENBSD_5_6 PLIST Log message: MFC: Unbreak runtime by putting syslog-ng.conf where it belongs. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/29 04:49:11 Modified files: misc/gramps : Makefile distinfo misc/gramps/pkg: PLIST Log message: Update to gramps-4.1.1. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/29 06:03:57 Modified files: sysutils/libretto-config: Makefile Log message: millert@ drops maintainership; any takers? CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/29 06:06:23 Modified files: sysutils : Makefile Removed files: sysutils/wdsetup: Makefile distinfo sysutils/wdsetup/patches: patch-wdsetup_c sysutils/wdsetup/pkg: DESCR PLIST Log message: remove; no more users and nobody stepped up to maintain it further prompted by millert@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/29 06:07:02 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: add wdsetup CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/29 06:51:31 Modified files: astro/xworld : Makefile Log message: unify; ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/29 07:05:14 Modified files: net/tcptrace : Makefile distinfo Log message: Update HOMEPAGE and MASTER_SITES. Regen distinfo while here. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/29 08:02:10 Modified files: x11/lablgtk2 : Makefile distinfo x11/lablgtk2/patches: patch-src_Makefile Removed files: x11/lablgtk2/patches: patch-CHANGES patch-src_ml_gobject_c patch-src_ml_gtk_c patch-src_ml_gtkfile_c patch-src_ml_gtkmenu_c patch-src_ml_gtktext_c patch-src_wrappers_c patch-src_wrappers_h Log message: Update to lablgtk2-2.18.3. Patches by chrisz@ have been merged upstream. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/29 08:21:37 Modified files: x11/gnome/desktop: Makefile x11/gnome/desktop/patches: patch-libgnome-desktop_gnome-languages_c Log message: Sync with what has been committed upstream. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/29 08:48:05 Modified files: x11/gnome/controlcenter: Makefile x11/gnome/controlcenter/patches: patch-panels_common_cc-common-language_c patch-panels_region_cc-input-chooser_c Log message: Merge with what has been committed upstream. CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/10/29 08:51:21 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Add quirk for net/pptp removal; ok espie sthen CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/10/29 09:28:51 Modified files: sbin/dhclient : convert.c dhclient.c dhcpd.h Log message: Calling a function to htonl() a constant 32-bit value into a stack variable and memcpy() that value into 4 bytes of malloc()'d space seems roundabout. Just memcpy() a four byte constant string into the malloc()'d space as required and kill putULong(). No functional change. CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/29 09:29:34 Modified files: sbin/pfctl : Tag: OPENBSD_5_6 parse.y pfctl_parser.c pfctl_parser.h Log message: MFC pfctl fix (parse.y 1.641, pfctl_parser.c 1.300, pfctl_parser.h 1.104) ----- Fixup incorrect expansion of the networking mask for dynamic interface specifications under certain circumstances resulting in potentially elevated access permissions for IPv6 traffic. Reported by sthen@; ok henning benno sthen ----- CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/29 09:36:15 Modified files: sbin/pfctl : Tag: OPENBSD_5_5 parse.y pfctl_parser.c pfctl_parser.h Log message: MFC pfctl fix (parse.y 1.641, pfctl_parser.c 1.300, pfctl_parser.h 1.104) ----- Fixup incorrect expansion of the networking mask for dynamic interface specifications under certain circumstances resulting in potentially elevated access permissions for IPv6 traffic. Reported by sthen@; ok henning benno sthen ----- CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/10/29 09:36:44 Modified files: sbin/pfctl : Tag: OPENBSD_5_4 parse.y pfctl_parser.c pfctl_parser.h Log message: MFC pfctl fix (parse.y 1.641, pfctl_parser.c 1.300, pfctl_parser.h 1.104) ----- Fixup incorrect expansion of the networking mask for dynamic interface specifications under certain circumstances resulting in potentially elevated access permissions for IPv6 traffic. Reported by sthen@; ok henning benno sthen ----- CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/29 10:42:57 Modified files: regress/usr.sbin/syslogd: Syslogd.pm Added files: regress/usr.sbin/syslogd: args-prog.pl Log message: Add a test the checks the syslogd !prog !!prog !* feature. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/29 10:45:09 Modified files: graphics/xv : Makefile graphics/xv/patches: patch-xvjpeg_c Added files: graphics/xv/patches: patch-xv_h patch-xvdir_c Log message: fix problems with Nikon D7100 pictures, they don't create correct exif information (multiple APP1 chunks). xv reads them all, but libjpeg frowns about writing multiple APP1. So, - ignore subsequent chunks (like exiv2 does) - add a small framework to report error messages from libjpeg (might be adaptable to other gfx formats). okay sthen@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/29 11:33:12 ports/textproc/hs-HaXml/patches Update of /cvs/ports/textproc/hs-HaXml/patches In directory cvs.openbsd.org:/tmp/cvs-serv32225/patches Log Message: Directory /cvs/ports/textproc/hs-HaXml/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/29 13:35:31 Modified files: sysutils/ruby-puppet/3: Makefile Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_openbsd_rb Log message: Allow for installing a specific version if multiple are found. This Unbreaks installing specific versions of openldap-server, php, python, etc. initial report and patch by sebastia@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/29 14:38:58 Modified files: www/piwik/pkg : PLIST Log message: use 0.5.4.php in installed filename, not 0.${MODPHP_VERSION}.php CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/29 14:41:18 Modified files: net/nedi/pkg : PLIST Log message: lots of ${MODPHP_VERSION} that should be 5.4 (in files named after snmp OIDs) CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/10/29 14:56:17 Modified files: audio : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm Removed files: audio/aumix : Makefile distinfo audio/aumix/patches: patch-doc_aumix_1 patch-src_common_c audio/aumix/pkg: DESCR PFRAG.no-no_curses PLIST Log message: remove audio/aumix which is tied intimately to the OSS mixer model and works poorly if at all through the ossaudio emulation; agreement by many CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/29 15:14:22 Modified files: archivers/pecl-rar: Makefile distinfo Log message: update to pecl-rar 3.0.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/29 15:19:26 Modified files: www/owncloud/pkg: PLIST Log message: more MODPHP_VERSION's that should be 5.4 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/29 15:30:10 Modified files: sbin/mount_vnd : mount_vnd.c Log message: dial down the direness of the warning; vnd isn't going anywhere yet CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/29 16:12:38 Modified files: graphics/py-Pillow: Makefile distinfo graphics/py-Pillow/patches: patch-setup_py graphics/py-Pillow/pkg: PLIST-main Log message: Update to py-Pillow 2.6.1. Check https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst for changes. Tested in a bulk by sthen@, thanks! CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/29 16:31:48 Modified files: lib/libevent : event_tagging.c Log message: Do not cast a (const void *) pointer to (void *) to avoid a warning. OK nicm@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/29 16:38:42 Modified files: lib/libevent : kqueue.c Log message: Remove workaround for Mac OS X kqueue bug. OK nicm@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/29 16:47:29 Modified files: lib/libevent : buffer.c evbuffer.c event.c event_tagging.c kqueue.c log.c min_heap.h poll.c select.c signal.c Log message: After removing all the #ifdef, the wrappers in evutil are rather useless. Let libevent call the libc functions directly. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/29 16:55:06 Modified files: graphics/blender: Makefile graphics/blender/patches: patch-intern_guardedalloc_intern_mallocn_intern_h Log message: Don't use malloc.h header on OpenBSD. ok pascal@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/29 16:56:18 Modified files: mail/dovecot-pigeonhole: Makefile distinfo mail/dovecot-pigeonhole/pkg: PLIST Log message: Update to Dovecot-pigeonhole 0.4.4. ok sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/29 18:05:02 Modified files: usr.bin/mandoc : Makefile apropos.1 libmandoc.h main.c man.1 mandoc.1 mandoc.h read.c Added files: usr.bin/mandoc : preconv.c Log message: support UTF-8 and ISO-8859-1 input by integrating modified parts of kristaps@' version of the preconv(1) utility into mandoc(1); positive feedback from bentley@ and no concern raised when shown on tech@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/29 19:28:54 Modified files: www/c-icap/c-icap: Makefile distinfo www/c-icap/c-icap/patches: patch-c-icap_conf_in Log message: update to c-icap 0.3.5 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/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. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/30 01:39:10 Modified files: net/pidgin : Tag: OPENBSD_5_5 Makefile Added files: net/pidgin/patches: Tag: OPENBSD_5_5 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. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/30 01:40:49 Modified files: net/pidgin : Tag: OPENBSD_5_6 Makefile Added files: net/pidgin/patches: Tag: OPENBSD_5_6 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 issue. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/30 01:50:12 Modified files: www/lighttpd : Tag: OPENBSD_5_4 Makefile Added files: www/lighttpd/patches: Tag: OPENBSD_5_4 patch-src_configfile_c Log message: Fix from upstream.. disable SSL3.0 by default ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/30 01:51:27 Modified files: www/lighttpd : Tag: OPENBSD_5_5 Makefile Added files: www/lighttpd/patches: Tag: OPENBSD_5_5 patch-src_configfile_c Log message: Fix from upstream.. disable SSL3.0 by default ok sthen@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/10/30 01:52:45 Modified files: www/lighttpd : Tag: OPENBSD_5_6 Makefile Added files: www/lighttpd/patches: Tag: OPENBSD_5_6 patch-src_configfile_c Log message: Fix from upstream.. disable SSL3.0 by default ok sthen@ CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/10/30 02:34:30 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Add missing quirks for ac3dec and flash removal. help from and ok naddy, dcoppa, jca CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/30 02:48:14 Modified files: net/munin : Makefile distinfo net/munin/files: sensors_ Log message: bugfix update to munin-2.0.24 while here tweak sensors_ plugin to show human readable values for fans. sensors_ patch from jasper@, thanks! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/30 03:39:05 Modified files: x11/lumina : Makefile distinfo Log message: Update to lumina-0.7.1.1414614312. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/30 03:40:39 Modified files: devel/hs-ConfigFile: Makefile distinfo textproc/hs-HaXml: Makefile distinfo devel/hs-MissingH: Makefile distinfo textproc/hs-polyparse: Makefile distinfo net/hpodder : Makefile x11/bluetile : Makefile Added files: textproc/hs-HaXml/patches: patch-src_Text_XML_HaXml_Schema_TypeConversion_hs Log message: Some hs updates: hs-ConfigFile: 1.1.2 -> 1.1.4 hs-HaXml: 1.24.1 -> 1.25 hs-MissingH: 1.2.1.0 -> 1.3.0.1 hs-polyparse: 1.9 -> 1.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 04:15:59 Modified files: graphics/gif2png: Makefile distinfo graphics/gif2png/patches: patch-gif2png_c Log message: update to gif2png-2.5.9, from Jason Tubnor minor tweaks while there (groff not needed, use separate build, use standard wantlib format) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 05:05:18 Modified files: www/drupal7/core: Makefile distinfo www/drupal7/core/pkg: PLIST Log message: security update to drupal 7.32, ok espie@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 05:05:56 Modified files: www/drupal7/core: Tag: OPENBSD_5_6 Makefile distinfo www/drupal7/core/pkg: Tag: OPENBSD_5_6 PLIST Log message: MFC security update to drupal 7.32 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 05:06:29 Modified files: www/drupal7/core: Tag: OPENBSD_5_5 Makefile distinfo www/drupal7/core/pkg: Tag: OPENBSD_5_5 PLIST Log message: MFC security update to drupal 7.32 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 05:09:11 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: mark "'www/drupal7/core' => 'drupal->=7.0,<7.32'" as insecure CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 05:57:59 Modified files: www/pear : Makefile distinfo www/pear/patches: patch-go-pear Log message: update to pear 1.9.5, ok robert@ tarball is hand-updated from the previous one. the updated dependencies mean this now works with php 5.5. tested with all of pecl-* and pear-*, all good with 5.4, only APC fails with 5.5 (and it's no longer supported there; PHP 5.5 has its own opcode cache anyway) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 06:18:58 Modified files: x11/spice-gtk : Makefile distinfo x11/spice-gtk/pkg: PLIST Log message: update to spice-gtk-0.26 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 06:19:33 Modified files: sysutils/ruby-facter: Makefile sysutils/ruby-facter/pkg: PLIST Added files: sysutils/ruby-facter/patches: patch-lib_facter_loginclass_rb Log message: add new 'loginclass' fact ok sebastia@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 06:20:30 Modified files: sysutils/ruby-shadow: Makefile Added files: sysutils/ruby-shadow/patches: patch-pwd_shadow_c patch-shadow_shadow_c Log message: add new sp_loginclass field to retrieve the user's login class ok sebastia@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 06:21:37 Modified files: sysutils/ruby-puppet: Makefile.inc sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_user_useradd_rb Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_type_user_rb Log message: - add 'loginclass' property to the 'user' type to get and set the login class for a user - bump ruby-shadow dependency requested, tested and ok sebastia@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/30 06:56:06 Modified files: devel/xdg-utils: Makefile distinfo devel/xdg-utils/patches: patch-scripts_xdg-utils-common_in Log message: Update to xdg-utils-1.1.0rc3. prodded by a diff from dcoppa@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/30 07:35:52 Modified files: x11/gnome/adwaita-icon-theme: Makefile distinfo Log message: Update to adwaita-icon-theme-3.14.1. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/30 07:43:28 Modified files: lib/libevent : select.c Log message: The fdsz and n_events variables contain unsigned values that are derived from size_t and passed to functions as size_t parameters. Change them from int to size_t to avoid compiler warnings. OK doug@ nicm@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/30 07:45:31 Log message: jpegdump just dumps the raw info in a jpeg file, for debugging purposes okay sthen@ Status: Vendor Tag: jpegdump Release Tags: espie N ports/graphics/jpegdump/Makefile N ports/graphics/jpegdump/distinfo N ports/graphics/jpegdump/pkg/PLIST N ports/graphics/jpegdump/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/10/30 07:54:36 Modified files: graphics : Makefile Log message: +jpegdump CVSROOT: /cvs Module name: www Changes by: landry@cvs.openbsd.org 2014/10/30 07:54:57 Modified files: . : want.html Log message: Remove the request for SSD donations, i got 3 of them thanks to Richard Toohey and Bentom Lam. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/30 07:59:44 Modified files: www/minitube/patches: patch-src_mainwindow_cpp Log message: Add comment to patch, to avoid head-scratching CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 08:10:07 Modified files: sysutils/ruby-shadow/patches: patch-pwd_shadow_c patch-shadow_shadow_c Log message: add link to upstream pr CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/10/30 09:05:05 Modified files: usr.bin/mandoc : main.c mandoc.1 Log message: mandoc.1: fix a macro error in previous main.c: add -K to usage() and wrap nicely ok schwarze CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/30 09:08:22 Modified files: net/hpodder : Makefile net/hpodder/patches: patch-Download_hs Log message: Fix version number in the User-Agent string CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/10/30 09:33:00 Modified files: print/texlive/base: Makefile print/texlive/base/pkg: PLIST Added files: print/texlive/base/patches: patch-texk_web2c_luatexdir_image_epdf_h patch-texk_web2c_luatexdir_lua_lepdflib_cc Log message: print/texlive: Remove a load of internal libraries, fix readme. This started as a fix (arm, ppc) for the internal icu in texlive. It turns out a custom icu is not needed anymore, so we can use the icu in the ports tree. This makes handling of header files much simpler since there is no longer the possibility of picking up the wrong icu headers. Should also fix PPC and ARM builds of texlive. Also noticed a few other libraries being built into texlive. Fixed. Finally, readme was not being installed. Fixed. Reported by landry@ OK dcoppa@, landry@, and with input and testing from kili@. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/30 09:50:46 ports/net/seafile/client/patches Update of /cvs/ports/net/seafile/client/patches In directory cvs.openbsd.org:/tmp/cvs-serv32742/patches Log Message: Directory /cvs/ports/net/seafile/client/patches added to the repository CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/30 09:50:50 Modified files: usr.bin/ftp : fetch.c Log message: use ressl constant; from Jan Klemkow CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/30 09:53:30 Modified files: net/seafile/client: Makefile Added files: net/seafile/client/patches: patch-src_seafile-applet_cpp Log message: disavle update checking CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 09:55:35 Modified files: x11/gnome/mutter: Makefile distinfo Removed files: x11/gnome/mutter/patches: patch-src_core_display_c Log message: update to mutter-3.14.1.5 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/30 09:55:51 Modified files: x11/gnome/shell: Makefile distinfo Log message: update to gnome-shell-3.14.1.5 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/30 10:06:07 Modified files: usr.bin/nc : netcat.c Log message: rework the poll loop to poll in both directions so it doesn't get stuck if one pipe stalls out. from a diff by Arne Becker. (buffer size left alone for now) CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/10/30 10:08:25 Modified files: net/p5-Net-DNS : Makefile distinfo Log message: update p5-Net-DNS to 0.81 CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/30 10:08:31 Modified files: usr.bin/nc : netcat.c Log message: my mistake. we already did increase buffers to 16k; increasing to 64k would be the next stage of embiggening. restore 16k. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/30 10:45:37 Modified files: lib/libevent : buffer.c evbuffer.c event.c event.h event_tagging.c kqueue.c log.c poll.c signal.c Log message: Fix whitespace errors in libevent. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 11:04:22 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm sysutils/symon : Makefile distinfo sysutils/symon/pkg: DESCR-main DESCR-mux PLIST-main PLIST-mux Removed files: sysutils/symon/patches: patch-client_SymuxClient_pm patch-platform_OpenBSD_sm_pfq_c sysutils/symon/pkg: DESCR-mon PLIST-mon Log message: update to symon 2.87 - N.B. Packages are re-arranged. Previously we had symon-mon (client only), symon-mux (mux only), and symon (both client + mux - i.e. the combination of the two other packages). Now we just have two non-overlapping packages symon+symux, as is normal for multi-packages in the tree. pkg_add -u will handle renaming but not splitting, so if you used the "combined" package you will need to "pkg_add symux" after this update. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/10/30 11:07:14 Modified files: faq : current.html Log message: mention symon/symux split adjustment CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/30 11:23:45 Modified files: sys/dev : softraid.c softraid_crypto.c Log message: add some sizes to free() CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 11:25:49 Modified files: sysutils/symon : Makefile Removed files: sysutils/symon/pkg: MESSAGE-main Log message: remove barely-useful MESSAGE file CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/30 11:26:23 Modified files: sys/dev : softraid_crypto.c Log message: zero the correct size, then free it. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/30 11:45:58 Modified files: regress/usr.bin/mandoc: Makefile.inc Log message: for convenience, let obj-clean imply clean CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/30 12:08:25 Modified files: sys/dev/usb : xhci.c Log message: Calculate the Route String when attaching a new device. This is still not enough to attach Super Speed devices below USB 3 hubs, but we're getting there. While here reset `acten` when re-enqueuing an interrupt transfers. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/30 12:25:08 Modified files: sys/dev/pci : xhci_pci.c sys/dev/usb : xhci.c xhcivar.h Log message: Do not enable interrupts before attaching usb(4), fix a panic when an Express Card is plugged with USB devices on it. While here do not print an unitialized error value if xhci_init() fails, from Patrick Wildt. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/30 12:29:59 Modified files: sys/dev/usb : xhci.c Log message: Do not use void * for pointer artithmetics, it's a GNU extension, from Patrick Wildt. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/30 13:07:54 Modified files: sys/dev : softraid.c Log message: muliply to get correct size for free. reported by kspillner CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 13:17:52 Modified files: sysutils/ansible: Makefile Added files: sysutils/ansible/patches: patch-lib_ansible_module_utils_facts_py Log message: Set ansible_architecture correctly on machines where arch -s != uname -m, it's quite useful for building pkg.conf amongst other things. ok rpe@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/30 13:26:03 Modified files: x11/spectrwm : Makefile distinfo x11/spectrwm/patches: patch-Makefile Log message: Update for Spectrwm to 2.6.1. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/30 14:05:33 Modified files: share/man/man7 : mdoc.7 usr.bin/mandoc : mdoc_html.c mdoc_man.c mdoc_term.c mdoc_validate.c regress/usr.bin/mandoc/mdoc/Bd: offset-empty.in offset-empty.out_ascii regress/usr.bin/mandoc/mdoc/Bl: Makefile Added files: regress/usr.bin/mandoc/mdoc/Bl: offset.in offset.out_ascii Log message: Major bugsquashing with respect to -offset and -width: 1. Support specifying the .Bd and .Bl -offset as a macro default width; while here, simplify the code handling the same for .Bl -width. 2. Correct handling of .Bl -offset arguments: unlike .Bd -offset, the arguments "left", "indent", and "indent-two" have no special meaning. 3. Fix the scaling of string length -offset and -width arguments in -Thtml. Triggered by an incomplete documentation patch from bentley@. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/30 14:23:59 Modified files: misc/mc : Makefile Log message: update CONFIGURE_ARGS to match current args names. ok robert@ (maintainer) CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/30 14:41:02 Modified files: regress/sys/kern/sosplice/perf: Makefile Log message: Add some pkill and sleep to make socket splicing performance tests more reliable. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/30 14:43:35 Modified files: lib/libc/stdlib: malloc.3 Log message: Don't mention old systems where realloc(NULL, n) didn't work as we don't want to give people the idea that this is non-portable (it has been present since C89). OK deraadt@ schwarze@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/10/30 15:39:12 Modified files: geo/foxtrotgps : Makefile distinfo geo/foxtrotgps/pkg: PLIST Log message: udate to foxtrotgps-1.2.0 lots of bugfixes and improvements. for detailed list see: http://bazaar.launchpad.net/~foxtrotgps-team/foxtrotgps/trunk/view/head:/NEWS CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/10/30 15:44:30 Modified files: devel/arduino : Makefile devel/arduino/files: Makefile Log message: devel/arduino: Tidy up flags in project template and reduce binary size. Discussed with/ok pjantzen, looks good to sthen@. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/30 15:47:47 Modified files: lib/libc/stdlib: malloc.3 Log message: clean up verbiage around the calculations; ok ingo jmc otto CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/30 16:20:24 Modified files: www/chromium : Makefile distinfo Log message: update to 38.0.2125.111 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 17:39:23 Modified files: devel/ocaml-pcre: Makefile Log message: chown to set permissions to avoid needing root to "make clean" after build CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/30 17:42:19 Modified files: archivers/p7zip: Makefile Log message: chown to set permissions to avoid needing root to "make clean" after build CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/30 17:50:25 Modified files: sys/dev/usb : usbdivar.h uhci.c Log message: XFER_FREE is not used, ciao. CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/10/30 22:33:51 Modified files: sys/arch/amd64/amd64: pmap.c Log message: Fix a missing include in amd64 pmap.c that resulted in an erroneous memory map entry being entered in uniprocessor (UP) kernels. Multiprocessor (MP) kernels not affected. ok guenther, deraadt CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/31 01:29:12 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to 2014.10.30 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/31 01:31:19 Modified files: sysutils/mcollective: Makefile distinfo sysutils/mcollective/pkg: PLIST Log message: update to mcollective-2.6.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/31 01:36:23 Modified files: sysutils/ruby-facter: Makefile distinfo sysutils/ruby-facter/pkg: PLIST Removed files: sysutils/ruby-facter/patches: patch-lib_facter_processors_os_rb Log message: update to facter-2.3.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 01:52:01 Modified files: net/tcptrace : Makefile Log message: When HOMEPAGE changes, bump REVISION.. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/31 01:59:27 Modified files: sys/arch/loongson/dev: apm.c Log message: #if NSWDISPLAY > 0 -> #if NWSDISPLAY > 0 now wsdisplay_suspend() will run on suspend CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/31 02:19:39 Modified files: net/mldonkey : Makefile Added files: net/mldonkey : distinfo net/mldonkey/patches: patch-config_Makefile_in patch-config_configure_in patch-configure patch-src_utils_net_terminal_ml net/mldonkey/pkg: DESCR PLIST Removed files: net/mldonkey/stable: Makefile distinfo net/mldonkey/stable/patches: patch-config_Makefile_in patch-config_configure_in patch-configure patch-src_utils_net_terminal_ml net/mldonkey/stable/pkg: DESCR PLIST Log message: Move net/mldonkey/stable to net/mldonkey CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/31 02:42:16 Modified files: net/mldonkey : Makefile net/mldonkey/pkg: PLIST Log message: Add @pkgpath marker and bump Reminded by ajacoutot@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 03:04:08 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Useless use of sed(1). ok swartze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 03:07:48 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Make default output matches status. Hackish but we are not allowed to use svc_default_enabled_flags like any other function... CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/31 03:37:40 Modified files: games/angband : Makefile Log message: fix "make clean" as non-root, ok edd@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/31 03:45:27 Modified files: sys/dev/ic : cy.c Log message: remove unused and uneeded includes under NCY_ISA > 0 and NCY_PCI > 0 where cy.h is not included. discovered with a script from guenther@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/31 04:29:33 Modified files: sys/arch/hppa/gsc: gsckbc.c Log message: remove a duplicate pckbdvar.h include under NGSCKBD > 0 gsckbd was removed back in 2008 so this was never defined. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/10/31 04:54:39 Modified files: sys/arch/vax/vax: autoconf.c Log message: The config logic with "rl needs-flag" got removed back in 2011. Remove code under #if NRL > 0. ok miod@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 05:59:07 Log message: Import py-oauth2 1.5.211. A fully tested, abstract interface to creating OAuth clients and servers from Jonas Huldtgren, ok sthen@ Status: Vendor Tag: jhuldtgren Release Tags: landry_20141031 N ports/net/py-oauth2/Makefile N ports/net/py-oauth2/distinfo N ports/net/py-oauth2/pkg/PLIST N ports/net/py-oauth2/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 06:00:03 Log message: Import py-coveralls 0.4.4. Shows coverage stats via coveralls.io. from Jonas Huldtgren, ok sthen@ Status: Vendor Tag: jhuldtgren Release Tags: landry_20141031 N ports/devel/py-coveralls/Makefile N ports/devel/py-coveralls/distinfo N ports/devel/py-coveralls/pkg/PLIST N ports/devel/py-coveralls/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 06:01:09 Log message: Import py-sh 1.09 sh is a full-fledged subprocess replacement for Python 2.6 - 3.2 that allows you to call any program as if it were a function from Jonas Huldtgren, ok sthen@ Status: Vendor Tag: jhuldtgren Release Tags: landry_20141031 N ports/devel/py-sh/Makefile N ports/devel/py-sh/distinfo N ports/devel/py-sh/pkg/PLIST N ports/devel/py-sh/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 06:01:58 Log message: Import py-docopt 0.6.2. docopt helps you create most beautiful command-line interfaces easily from Jonas Huldtgren, ok sthen@ Status: Vendor Tag: jhuldtgren Release Tags: landry_20141031 N ports/devel/py-docopt/Makefile N ports/devel/py-docopt/distinfo N ports/devel/py-docopt/pkg/PLIST N ports/devel/py-docopt/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 06:03:49 Modified files: devel : Makefile net : Makefile Log message: +py-oauth2, py-docopt, py-s & py-coveralls. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 06:05:06 Modified files: audio/py-discogs-client: Makefile distinfo audio/py-discogs-client/pkg: PLIST Log message: Update to py-discogs-client 2.0.2 (uses the 4 just imported py-* ports) From MAINTAINER Jonas Huldtgren, ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/31 06:05:32 Modified files: devel : Makefile graphics : Makefile misc : Makefile net : Makefile textproc : Makefile Removed files: devel/ruby-columnize: Makefile distinfo devel/ruby-columnize/pkg: DESCR PLIST graphics/ruby-mini_magick: Makefile distinfo graphics/ruby-mini_magick/pkg: DESCR PLIST misc/ruby-spreadsheet: Makefile distinfo misc/ruby-spreadsheet/pkg: DESCR PLIST net/ruby-minion: Makefile distinfo net/ruby-minion/pkg: DESCR PLIST net/ruby-bunny : Makefile distinfo net/ruby-bunny/pkg: DESCR PLIST textproc/ruby-randexp: Makefile distinfo textproc/ruby-randexp/pkg: DESCR PLIST Log message: remove bunch of pure ruby ports that have gone without updates for 4+ years, of which there's no maintainer and which are unused. ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/31 06:10:59 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register recent ruby removals CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/10/31 06:21:26 Modified files: games/grhino : Makefile net/py-nmap : Makefile Log message: unify; ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/31 06:34:21 Modified files: print : Makefile Removed files: print/acroread : Makefile distinfo print/acroread/files: acroread.diff print/acroread/patches: patch-INSTALL print/acroread/pkg: DESCR-main DESCR-plugins MESSAGE-main MESSAGE-plugins PLIST-main PLIST-plugins Log message: Give acroread a proper burial. Obsolete, abandoned upstream, i386 only (compat_linux), nobody used it nor maintained it in years. ok krw@, ratchov@, ajacoutot@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/31 06:43:33 Modified files: sys/dev/usb : usbdi.c usbdivar.h Log message: Use understandable messages when the per-xfer poison value is incorrect. Prodded by a comment from stsp@. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/31 06:50:31 Modified files: lib/libevent : Makefile Log message: Use CDIAGFLAGS from bsd.own.mk and append additional warning flags. All warnings have been fixed in libevent. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 07:26:38 Modified files: net/freeradius : Makefile net/freeradius/pkg: radiusd.rc Log message: Missing shebang. from Kapetanakis Giannis CVSROOT: /cvs Module name: src Changes by: gsoares@cvs.openbsd.org 2014/10/31 07:29:42 Modified files: usr.bin/make : engine.c Log message: redirect error output to stderr instead of stdout stderr is always unbuffered by default, so zap fflush(3) its no longer makes any sense here reminded by espie@ OK espie@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/31 07:37:14 Modified files: fonts : Makefile Removed files: fonts/acrofonts: Makefile distinfo fonts/acrofonts/pkg: DESCR MESSAGE PLIST Log message: Also remove asian font pack for acroread pointed out by naddy@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/31 07:39:22 Modified files: audio/beets : Makefile distinfo audio/beets/pkg: PLIST README Log message: update to beets 1.3.8 force a dependency on audio/py-discogs-client with a minimum version. it's optional (only used by the discogs plugin) but the dep chain isn't too bad and it's more userfriendly to prevent attempts to run it with the old-API version that won't work. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 07:41:17 src/lib/libtls Update of /cvs/src/lib/libtls In directory cvs.openbsd.org:/tmp/cvs-serv20767/libtls Log Message: Directory /cvs/src/lib/libtls added to the repository CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/31 07:43:59 Modified files: net/haproxy : Makefile distinfo Log message: Update for HAproxy to 1.5.6: - BUG/MEDIUM: systemd: set KillMode to 'mixed' - MINOR: systemd: Check configuration before start - BUG/MEDIUM: config: avoid skipping disabled proxies - BUG/MINOR: config: do not accept more track-sc than configured - BUG/MEDIUM: backend: fix URI hash when a query string is present ok benoit@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 07:46:17 Modified files: include : Makefile lib : Makefile share/mk : bsd.README bsd.prog.mk Added files: lib/libtls : Makefile shlib_version tls.c tls.h tls_client.c tls_config.c tls_init.3 tls_internal.h tls_server.c tls_util.c tls_verify.c Removed files: lib/libressl : Makefile ressl.c ressl.h ressl_client.c ressl_config.c ressl_init.3 ressl_internal.h ressl_server.c ressl_util.c ressl_verify.c shlib_version Log message: Rename libressl to libtls to avoid confusion and to make it easier to distinguish between LibreSSL (the project) and libressl (the library). Discussed with many. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 07:48:21 Modified files: usr.bin/ftp : Makefile fetch.c ftp_var.h main.c Log message: Update ftp(1) to use libtls instead of libressl. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 07:49:52 Modified files: usr.sbin/httpd : Makefile httpd.h server.c Log message: Update httpd(8) to use libtls instead of libressl. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/10/31 07:51:36 Modified files: x11/smplayer : Makefile distinfo x11/smplayer/patches: patch-src_preferences_cpp Log message: Update for SMPlayer to 14.9.0 Fix for Youtube. New option to shut down the computer when playback has finished. The themes and skin icons are loaded from resource files (*.rcc). New fix for searching subtitles from opensubtitles.org that should return more results. Now I take care of this. OK edd@ (maintainer) CVSROOT: /cvs Module name: www Changes by: jsing@cvs.openbsd.org 2014/10/31 07:52:10 Modified files: faq : current.html Log message: Document clean up for libressl to libtls rename. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 07:53:38 src/regress/lib/libtls Update of /cvs/src/regress/lib/libtls In directory cvs.openbsd.org:/tmp/cvs-serv1692/libtls Log Message: Directory /cvs/src/regress/lib/libtls added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 08:05:30 src/regress/lib/libtls/gotls Update of /cvs/src/regress/lib/libtls/gotls In directory cvs.openbsd.org:/tmp/cvs-serv17167/gotls Log Message: Directory /cvs/src/regress/lib/libtls/gotls added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 08:10:55 Modified files: regress/lib : Makefile Added files: regress/lib/libtls: Makefile regress/lib/libtls/gotls: Makefile tls.go tls_test.go Removed files: regress/lib/libressl: Makefile regress/lib/libressl/goressl: Makefile ressl.go ressl_test.go Log message: Update regress for the libressl to libtls rename. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/10/31 08:40:59 Modified files: www/nginx : Makefile distinfo Log message: bugfix update to 1.7.7 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/31 08:43:09 Modified files: sysutils/ykpers: Makefile distinfo Log message: update to ykpers 1.16.1 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/31 08:48:31 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 08:51:01 Modified files: lib/libssl/src/ssl: d1_srvr.c s3_lib.c s3_srvr.c ssl3.h ssl_cert.c ssl_lib.c ssl_locl.h Log message: Remove support for ephemeral/temporary RSA private keys. The only use for these is via SSL_OP_EPHEMERAL_RSA (which is effectively a standards violation) and for RSA sign-only, should only be possible if you are using an export cipher and have an RSA private key that is more than 512 bits in size (however we no longer support export ciphers). ok bcook@ miod@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/10/31 09:03:21 Modified files: devel/git : Makefile distinfo devel/git/pkg : PLIST-main Log message: Update git to 2.1.3. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/10/31 09:12:05 Modified files: astro/xworld : Makefile Log message: One REVISION line per makefile ought to be enough for everyone. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/31 09:20:01 Modified files: sys/dev/usb : usb_mem.c Log message: Even in interrupt context curproc is not NULL. ok miod@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/10/31 09:25:44 Modified files: libressl : index.html Log message: it is now called libtls CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 09:25:55 Modified files: lib/libssl/src/ssl: s3_lib.c s3_srvr.c ssl.h ssl_cert.c ssl_lib.c ssl_locl.h Log message: Add support for automatic DH ephemeral keys. This allows an SSL server to enable DHE ciphers with a single setting, which results in an DH key being generated based on the server key length. Partly based on OpenSSL. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 09:34:06 Modified files: lib/libssl/src/ssl: ssl.h ssl3.h Log message: Remove now unused remnants from public structs. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 09:37:34 Modified files: lib/libssl/ssl : shlib_version Log message: Crank libssl major due to recent additions, removals and changes. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/10/31 09:38:22 Modified files: print/a2ps : Makefile print/cups-filters: Makefile Log message: Remove the last vestiges of acroread spotted by naddy@ ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 09:49:19 Modified files: lib/libssl/src/ssl: tls1.h Log message: Update comments for TLS ExtensionType values - many of the referenced drafts are now RFCs. Also add the TLS extension type for ALPN and be consistent with RFC reference formatting. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/31 09:50:05 Modified files: infrastructure/db: user.list Log message: Reserve uid 745 for _smmsp (mail/sendmail). I forgot this at import time. ok ajacoutot@ sthen@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 09:50:28 Modified files: lib/libssl/src/ssl: tls1.h Log message: Remove an outdated comment re EDH vs DHE - DHE is now used consistently and there are backwards compatible names/aliases for EDH. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/31 09:51:51 Modified files: mail/sendmail : Makefile mail/sendmail/pkg: PLIST-main Log message: Use an uid/gid properly registered in user.list (742 is now used by telephony/baresip/restund). This will need manual intervention. ok ajacoutot@ sthen@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/10/31 09:54:14 Modified files: lib/libc/stdio : mktemp.c Log message: Use "const char tempchars[]" instead of "const char *tempchars". Since tempchars is never reassigned there's no need to indirect through a pointer. Still getting used to this newfangled C89. CVSROOT: /cvs Module name: www Changes by: jca@cvs.openbsd.org 2014/10/31 09:56:57 Modified files: faq : current.html Log message: Add instructions for the sendmail uid/gid change. "looks fine" ajacoutot@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/10/31 10:00:44 Modified files: lib/libevent : event.h Log message: Libevent has compatibilty wrappers in evutil. OpenBSD does not use them anymore, but evutil is still part of libevent's interface. Separate the API of evutil from libevent and do not include evutil.h from event.h automatically. A version bump is not necessary as the library itself does not change. Bulk ports build done by landry@ had no fallout. OK nicm@ deraadt@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/31 10:39:34 Modified files: sys/dev/usb : xhci.c Log message: Enable timeouts, just in case(tm). Even if it's very handy to know where a thread is sleeping in order to debug HC drivers, users might not like to have to restart their machine if a transfer timed and nothing will wakeup the discovery thread. Note that I still haven't seen any hardware timeout in all my tests. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/31 10:43:44 Log message: import net/irrtoolset, ok benoit@ The IRRToolSet is a set of tools to work with Internet routing policies. These policies are stored in Internet Routing Registries (IRR) in the Routing Policy Specification Language (RPSL). The tools are used to produce lists suitable for automating router configuration, etc. - peval is a low level policy evaluation tool that can be used to write router configuration generators. It takes policy expressions as input, expands the AS sets, route sets, filter sets and (optionally) AS numbers, and outputs the resulting list of AS numbers or prefixes. - rpslcheck syntax-checks an RPSL object to determine whether it will cause problems for any of the tools in IRRToolSet, such as rtconfig. This does not guarantee that the syntax is valid for a particular IRR, which may have different syntax constraints. - rtconfig is a filter which can generate cisco/juniper configuration sections based on information from IRRs. Status: Vendor Tag: sthen Release Tags: sthen_20141031 N ports/net/irrtoolset/Makefile N ports/net/irrtoolset/distinfo N ports/net/irrtoolset/pkg/DESCR N ports/net/irrtoolset/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/31 10:44:04 Modified files: net : Makefile Log message: +irrtoolset CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 10:56:00 Modified files: usr.bin/openssl: s_server.c Log message: Use automatic DH ephemeral parameters instead of fixed 512 bit. Based on OpenSSL. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/10/31 10:59:00 Modified files: usr.bin/openssl: s_server.c Log message: Remove ephemeral RSA key handling. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 12:28:54 Modified files: comms/pilot-link: Makefile comms/pilot-link/pkg: PLIST Removed files: comms/pilot-link/pkg: PFRAG.shared Log message: Cleanup. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 12:30:11 Modified files: comms/jpilot : Makefile distinfo comms/jpilot/pkg: PLIST Removed files: comms/jpilot/patches: patch-empty_Makefile_in patch-po_POTFILES_in patch-sync_c patch-utils_c comms/jpilot/pkg: PFRAG.shared Log message: Update to jpilot-1.8.2. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/31 12:35:34 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/10/31 14:11:52 Modified files: usr.sbin/rarpd : rarpd.c Log message: convert select() to poll(). Bit more complicated here. Some interesting discussion with millert about POLLHUP, which is not needed here because this is a bpf description, but indicates we need to consider that elsewhere. ok millert CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/31 15:17:42 Modified files: sys/dev/usb : usbdevs Log message: add atheros ub94. from Matt Markfort CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/31 15:17:53 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/10/31 15:19:15 Modified files: sys/dev/usb : if_athn_usb.c Log message: atheros ub94 support, from Matt Markfort CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 17:05:36 Modified files: graphics/evince: Makefile Added files: graphics/evince/pkg: DESCR PFRAG.no-light PLIST Removed files: graphics/evince/pkg: DESCR-dvi DESCR-main PLIST-dvi PLIST-main Log message: Add a "light" FLAVOR to evince so that !GNOME kids can read+print+... requested by and OK mpi@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 17:06:24 Modified files: x11/gnome/sushi: Makefile x11/gnome/documents: Makefile Log message: Fix deps after recent evince change. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 17:07:25 Modified files: graphics : Makefile Log message: +evince,light CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/31 17:11:48 Modified files: sys/dev/usb : xhci.c Log message: If an event is dequeued just/right after a device is detached, its pipes might be NULL. Prevent from crashing in this case 8) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/10/31 17:19:33 Modified files: net/scamper : Makefile distinfo net/scamper/pkg: PLIST Log message: update to scamper 20141031 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/10/31 17:54:39 Modified files: graphics/shotwell: Makefile distinfo graphics/shotwell/patches: patch-Makefile graphics/shotwell/pkg: PLIST Log message: Update to shotwell-0.20.2. ok benoit@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/31 17:59:41 Modified files: net : Makefile print : Makefile mail : Makefile Log message: Unlink zenirc, mew, auctex. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/31 18:08:19 Removed files: print/auctex : Makefile distinfo print/auctex/patches: patch-Makefile print/auctex/pkg: DESCR MESSAGE PLIST mail/mew : Makefile distinfo mail/mew/pkg : DESCR MESSAGE PLIST net/zenirc : Makefile distinfo net/zenirc/files: zenirc-chanbuf.el net/zenirc/patches: patch-Makefile_in net/zenirc/pkg : DESCR-el DESCR-main MESSAGE-main PLIST-el PLIST-main Log message: Remove a few ports that depend on emacs21. Those were either not properly up to date, or just dead upstream. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/31 18:09:24 Modified files: devel/automake/1.10: Makefile devel/automake/1.11: Makefile devel/automake/1.12: Makefile devel/automake/1.13: Makefile devel/automake/1.14: Makefile devel/automake/1.9: Makefile Log message: Force tests against the newest Emacs release. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/10/31 18:41:33 Modified files: sys/dev/usb : usbdi.c Log message: Make it clear that dma buffers are link to xfers, no functional change. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/10/31 18:56:44 Modified files: inputmethods/anthy: Makefile math/gnuplot : Makefile Log message: Use emacs>=24 at build time. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/31 22:03:22 Modified files: usr.bin/mandoc : term.c Log message: fix a typo causing crashes in Unicode string length measurement CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/10/31 22:07:25 Modified files: usr.bin/mandoc : libmandoc.h preconv.c read.c Log message: Refactor, no functional change: Remove the parse point from struct buf. Some functions need multiple parse points, some none at all, and it varies whether any of them need to be passed around. So better pass them as a separate argument, and only when needed. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/31 22:53:09 Modified files: lang/ruby/2.1 : Makefile distinfo lang/ruby/2.1/patches: patch-configure lang/ruby/2.1/pkg: PLIST-main Log message: Update to ruby 2.1.4 Bump lib major due to struct change. Add VERSION to SUBST_VARS, since test-unit gem version always matches it. Remove configure patch for issue fixed upstream. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/31 22:54:44 Modified files: lang/ruby/2.0 : Makefile distinfo lang/ruby/2.0/patches: patch-compile_c patch-configure Added files: lang/ruby/2.0/patches: patch-test_rexml_test_document_rb Log message: Update to ruby 2.0.0-p594 Bump lib major due to struct change. Backport a fix to fix an error introduced when backporting a fix. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/31 22:56:09 Modified files: lang/ruby/1.9 : Makefile distinfo Log message: Update to ruby 1.9.3-p550 Allow external C extensions to be installed via gem install. This was missed earlier when changes were made to other ruby versions. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/10/31 22:56:40 Modified files: lang/ruby/1.8 : Makefile Added files: lang/ruby/1.8/patches: patch-lib_rexml_entity_rb Log message: Backport security fix for CVE-2014-8080 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/01 00:02:43 Modified files: usr.bin/mandoc : libmandoc.h read.c roff.c Log message: Use struct buf in libroff, it is very natural there and reduces the number of arguments of many functions. While here, sprinkle some KNF. No functional change. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/11/01 00:09:55 Modified files: . : 56.html Log message: another release day.... will place main page once mirrors open CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/01 01:08:43 Modified files: sys/arch/armv7/omap: omdog.c sys/arch/armv7/sunxi: sxidog.c Log message: Now the armv7 ramdisks are compiled with SMALL_KERNEL the omap and sunxi ramdisks won't build because they call wdog_register() and kern_watchdog.c is !small_kernel in config. Leaving the watchdog devices out of the ramdisks won't work either as armv7_machdep.c uses platform_watchdog_reset() to reboot. Deal with this by only calling wdog_register() when not compiled with SMALL_KERNEL. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/01 01:29:29 Modified files: usr.bin/units : units.lib Log message: update currency exchange rates; CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/11/01 02:13:31 Modified files: graphics : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm Removed files: graphics/synaesthesia: Makefile distinfo graphics/synaesthesia/patches: patch-Makefile_in patch-polygon_h patch-sound_cc patch-syna_h patch-ui_cc patch-xlib_c graphics/synaesthesia/pkg: DESCR PLIST Log message: remove synaesthesia, suggested by landry, ok ajacoutot CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/11/01 03:30:59 Modified files: editors/emacs : Makefile Log message: Disable sound rather than adding sndio bits, suggested by sthen, diff from jca, many thanks. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/01 03:34:40 Modified files: security/gpgme : Makefile distinfo security/gpgme/pkg: PLIST Removed files: security/gpgme/patches: patch-src_engine-gpgsm_c patch-src_engine-uiserver_c security/gpgme/pkg: PFRAG.shared Log message: update to gpgme 1.5.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/01 03:43:58 Modified files: net/GeoIP : Makefile distinfo net/GeoIP/pkg : PLIST Log message: update to geoip 1.6.3 and new geolite data take maintainer CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 04:10:53 Modified files: comms/flipit : Makefile distinfo comms/flipit/pkg: PLIST Removed files: comms/flipit/patches: patch-conf_c patch-conf_h Log message: Update to flipit-0.3.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 04:18:08 Modified files: education/epte : Makefile distinfo Removed files: education/epte/patches: patch-definitions_h Log message: Update to epte-2.0.8. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/01 04:21:02 Modified files: sys/dev/usb : usb_subr.c Log message: Use usbd_set_port_feature() instead of rerolling it. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 04:24:16 Modified files: lang/python : python.port.mk Log message: Fix MODPY_LIB_DEPENDS when using setuptools. The make(1) variables assignements would lead to setuptools added to MODPY_LIB_DEPENDS (bogus). py-Pillow was affected but no plist change. Fix _MODPY_BUILD_DEPENDS similarly, no port affected. ok ajacoutot@, also discussed with sthen@ months ago CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 04:28:15 Modified files: sysutils/duplicity: Makefile distinfo sysutils/duplicity/pkg: PLIST Log message: Update to duplicity-0.6.24, from Jason Tubnor. ok giovanni@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 04:31:22 Modified files: news : Makefile Removed files: news/newsfetch : Makefile distinfo news/newsfetch/patches: patch-Makefile patch-net_c patch-newsfetch_c patch-nntp_c patch-opt_c patch-util_c news/newsfetch/pkg: DESCR PLIST Log message: Remove news/newsfetch. The code is in very bad shape and has at least one unfixed CVE. No objection from sebastia@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 04:41:05 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Quirks entries for mew, auctex, zenirc, newsfetch. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 04:44:06 Modified files: net/samba4 : Makefile distinfo Log message: Bugfix update to samba-4.0.22, from Ian McWilliam. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 05:06:55 Modified files: textproc/discount: Makefile distinfo textproc/discount/patches: patch-Makefile_in patch-markdown_1_in patch-markdown_3 patch-markdown_7 textproc/discount/pkg: PLIST Added files: textproc/discount/patches: patch-markdown_1 Log message: Update to discount-2.1.6, from Kaashif Hymabaccus. Maintainer timeout. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/01 05:54:01 src/regress/lib/libtls/verify Update of /cvs/src/regress/lib/libtls/verify In directory cvs.openbsd.org:/tmp/cvs-serv24854/verify Log Message: Directory /cvs/src/regress/lib/libtls/verify added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/01 05:55:27 Modified files: regress/lib/libtls: Makefile Added files: regress/lib/libtls/verify: Makefile verifytest.c Log message: Initial regress for libtls hostname verification. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/01 06:07:41 Modified files: usr.sbin/syslogd: syslogd.c Log message: Replace the combination of strlen(), calloc(), strlen(), strlcpy() with a simple strdup(). Found by brad@ with LLVM; OK doug@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 07:42:51 Modified files: faq : faq1.html faq2.html faq3.html faq4.html faq5.html faq6.html faq8.html faq9.html faq10.html faq11.html faq12.html faq14.html faq15.html Log message: faq updates for 5.6 CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 07:43:44 Modified files: faq : current.html Log message: roll out 5.5->5.6 stuff CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 07:45:25 Modified files: faq : index.html Log message: -> 5.6. Movie misquotes with huge amou mostly from Joe Gidi (joe at entropicblur dot com) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/01 07:59:10 Modified files: multimedia : Makefile Log message: link motion to the build, oops missed it earlier CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 07:59:42 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify. with and ok schwarze@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/01 08:04:27 Modified files: sys/dev/usb : usb.h Log message: Super-Speed port feature definitions. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 08:08:38 Modified files: editors/emacs : Makefile Log message: NO_TEST Release tarballs don't contain tests. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/01 08:19:32 Modified files: editors/emacs : Makefile Log message: Revert NO_TEST addition. ajacoutot@ is right, even though upstream doesn't plan to ship tests in release tarballs, they might change their opinion one day. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/01 08:44:08 Modified files: sys/dev/usb : if_uath.c uhub.c usb_subr.c usbdivar.h Log message: Remove the port status argument from usbd_reset_port(). We don't do anything with it and it simplifies this mess in order to implement warm reset. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 08:51:27 Modified files: benchmarks/tsung: Makefile distinfo benchmarks/tsung/pkg: PLIST Removed files: benchmarks/tsung/patches: patch-Makefile_in benchmarks/tsung/pkg: MESSAGE Log message: - update to tsung-1.5.1 - update HOMEPAGE - remove bogus MESSAGE - use FAKE_FLAGS instead of a patch CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 08:54:51 Modified files: sysutils/runit : Makefile sysutils/runit/files: rc.shutdown sysutils/runit/pkg: PLIST Added files: sysutils/runit/pkg: README Removed files: sysutils/runit/pkg: MESSAGE Log message: Cleanups and do not hardcode paths. @sample rc.shutdown MESSAGE -> README ok jca@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 08:58:06 Modified files: sysutils/monit : Makefile distinfo Log message: - update to monit-5.10 ok aja@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 09:27:52 Modified files: x11/gnome/gdm : Makefile x11/gnome/gdm/pkg: gdm.rc Log message: When I tell you to stop, you stop! CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/01 09:49:07 Modified files: sbin/dhclient : convert.c dhclient.c dhcpd.h Log message: Try to ensure that the various lease timeouts are sane. i.e., renew is before rebind is before expiry. Don't allow lease expiry to be set past the end of time, but do allow lease lengths >INT32_MAX. Tweak default times to be more reliably in-line with RFCs. Nuke getULong(), the last function in convert.c, since its last uses were in this now re-written code. Suspicions aroused while diagnosing the expiry problem weerd@ found. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/01 09:59:32 Modified files: devel/p5-Net-Server: Makefile distinfo Log message: Update p5-Net-Server to 2.008. Remove maintainer, invalid email address. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/01 10:21:32 Modified files: www/py-quixote : Makefile distinfo www/py-quixote/pkg: PLIST Log message: Update py-quixote to 2.8. Remove maintainer, invalid email address. ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/01 10:32:06 Modified files: sys/dev/sdmmc : sdmmc.c sdmmc_scsi.c Log message: fix the build when SDMMC_DEBUG is defined CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/01 10:51:20 Modified files: sbin/dhclient : Makefile Log message: Unhook convert.c. It's empty but for the license text. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/01 10:56:47 Removed files: sbin/dhclient : convert.c Log message: And finally move convert.c to the attic. CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/11/01 11:04:18 Modified files: . : index.html Log message: Another release right on the 6 month boundary, well, plus a few hours because it is Saturday after all... CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/01 11:17:53 Modified files: mail/mairix : Makefile distinfo Log message: Update mairix to 0.23. Remove maintainer, invalid email address. ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 11:48:00 Modified files: usr.bin/passwd : pwd_gensalt.c Log message: remove support for creating any password style that's not blowfish. this also effectively retires the ypcipher cap. it's time for DES crypt to die (especially over network traffic!) and a multi stage rollout of upgrading login.conf first would take too long. one cipher standard is good enough. this doesn't prevent auth yet, just new passwords. ok deraadt millert CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 12:08:54 Modified files: faq : upgrade56.html Log message: the tedu'ing of encrypted vnd has been tedu'd. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 12:10:02 Modified files: faq : upgrade55.html Log message: add forward links CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/01 12:21:07 Modified files: sys/dev/usb : xhci.c Log message: Use the correct default MaxPacketSize for Full Speed devices and make them work with xhci(4). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 12:33:45 Added files: x11/gnome/libgnomekbd: Makefile distinfo x11/gnome/libgnomekbd/pkg: DESCR PLIST Log message: Resurrect libgnomekbd; it's still needed to display keyboard layouts. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 12:35:35 Modified files: x11/gnome/controlcenter: Makefile Log message: Add dependency on x11/gnome/libgnomekbd. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 12:36:06 Modified files: x11/gnome : Makefile Log message: +libgnomekbd CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 12:44:10 Modified files: x11/gnome/shell: Makefile Log message: x11/gnome/libgnomekbd needed here as well. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 12:46:11 Modified files: net/nagios/check_hw_sensors: Makefile net/nagios/check_openbgpd: Makefile Log message: unify; ok afresh1@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/11/01 13:23:13 Modified files: www/uriparser : Makefile distinfo Log message: Update to 0.8.1 feedback and OK aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 13:29:54 Modified files: databases/gdbm : Makefile Added files: databases/gdbm/patches: patch-doc_gdbm_info Log message: silence install-info error: install-info: menu item `gdbm_load' already exists, for file `(none)' noticed by many CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 13:30:46 Modified files: net/gnaughty : Makefile Log message: Regen WANTLIB. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 13:32:52 Modified files: net/gnaughty : distinfo Log message: regen distinfo ok aja@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/01 13:34:46 Modified files: devel/blame : Makefile distinfo devel/blame/pkg: PLIST Log message: Update blame to 1.3.1. Remove maintainer, invalid email address. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 13:59:17 Modified files: devel/p5-Test-Most: Makefile devel/p5-Class-Unload: Makefile devel/p5-Data-Dumper-Concise: Makefile devel/p5-DateTime: Makefile devel/p5-DateTime-Format-Builder: Makefile devel/p5-DateTime-Format-Strptime: Makefile devel/p5-Memoize-ExpireLRU: Makefile devel/p5-Data-Compare: Makefile textproc/p5-Lingua-EN-FindNumber: Makefile textproc/p5-Lingua-EN-Inflect-Phrase: Makefile textproc/p5-Lingua-EN-Number-IsOrdinal: Makefile textproc/p5-Lingua-EN-Tagger: Makefile textproc/p5-Lingua-EN-Words2Nums: Makefile textproc/p5-String-CamelCase: Makefile textproc/p5-String-ToIdentifier-EN: Makefile Log message: unify; ok afresh1@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/01 14:15:12 Modified files: sysutils/torture: Makefile Log message: unify CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 14:32:54 Modified files: multimedia/phonon: Makefile distinfo phonon.port.mk multimedia/phonon-backend/gstreamer: Makefile distinfo multimedia/phonon-backend/gstreamer/patches: patch-gstreamer_CMakeLists_txt multimedia/phonon-backend/vlc: Makefile distinfo Log message: Update Phonon to 4.8.1. This also updates its backends, due to some API changes it's easier to this in a single batch. The biggest news here are that phonon-gstreamer switches to GStreamer 1.0, finally. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 14:34:32 Modified files: productivity/libkgapi: Makefile distinfo productivity/libkgapi/pkg: PLIST Log message: Update libkgapi to 2.2.0, needed by upcoming PIM stuff from KDE 4.14. CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 14:36:00 Log message: Initial import of py-flask-login, a session management lib for Flask. OK sthen@ with suggestions from bcallah@ Status: Vendor Tag: abieber Release Tags: abieber_20141101 N ports/www/py-flask-login/Makefile N ports/www/py-flask-login/distinfo N ports/www/py-flask-login/pkg/PLIST N ports/www/py-flask-login/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 14:42:02 Log message: Initial import of flask-principal, an identity management lib for python OK sthen@, tweaks from bcallah@ Status: Vendor Tag: abieber Release Tags: abieber_20141101 N ports/www/py-flask-principal/Makefile N ports/www/py-flask-principal/distinfo N ports/www/py-flask-principal/pkg/PLIST N ports/www/py-flask-principal/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 14:43:26 Modified files: net/telepathy/telepathy-qt: Makefile distinfo net/telepathy/telepathy-qt/patches: patch-TelepathyQt_Farstream_CMakeLists_txt patch-cmake_modules_TpQtMacros_cmake net/telepathy/telepathy-qt/pkg: PLIST Added files: net/telepathy/telepathy-qt/patches: patch-TelepathyQt_CMakeLists_txt patch-examples_cm_CMakeLists_txt patch-tests_lib_CMakeLists_txt Removed files: net/telepathy/telepathy-qt/patches: patch-cmake_modules_FindFarstream_cmake patch-cmake_modules_FindQt_cmake Log message: Update telepathy-qt to 0.9.5, required by upcoming KDE 4.14. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 14:44:30 Modified files: faq : faq1.html Log message: missed a 5.4->5.5, spotted by Eduardo Lopes (dududa at gmail) CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 14:46:24 Log message: Initial import of py-netaddr, a python lib for workin with ipv4/6 addys and subnets. OK sthen@ tweaks from bcallah@ Status: Vendor Tag: abieber Release Tags: abieber_20141101 N ports/net/py-netaddr/Makefile N ports/net/py-netaddr/distinfo N ports/net/py-netaddr/pkg/PLIST N ports/net/py-netaddr/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 14:47:29 Modified files: multimedia/qt-gstreamer: Makefile distinfo multimedia/qt-gstreamer/pkg: PLIST Log message: Update qt-gstreamer to 1.2, effectively switching to GStreamer 1.x as well. This could break build of graphics/digikam and x11/kde4/artikulate, this will be addressed quiet soon. CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 14:48:39 Log message: Initial import of py-sockjs-tornado, a python lib for sockets running in tornado. OK sthen@ with diddles from bcallah@ Status: Vendor Tag: abieber Release Tags: abieber_20141101 N ports/www/py-sockjs-tornado/Makefile N ports/www/py-sockjs-tornado/distinfo N ports/www/py-sockjs-tornado/pkg/PLIST N ports/www/py-sockjs-tornado/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 14:53:55 Modified files: www : Makefile www/luakit : Makefile distinfo Log message: +py-flask-login +py-flask-principal +py-sockjs-tornado CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 14:55:31 ports/x11/kde4/poxml/patches Update of /cvs/ports/x11/kde4/poxml/patches In directory cvs.openbsd.org:/tmp/cvs-serv10731/patches Log Message: Directory /cvs/ports/x11/kde4/poxml/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 14:55:50 Modified files: net : Makefile Log message: +py-netaddr CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/01 14:56:29 Modified files: distrib/special/dhclient: Makefile Log message: cope with removed file CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 15:00:22 Modified files: x11/kde4 : Makefile Log message: Nobody uses KDE4 translations, eh? Tweak dependency graph while there. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 15:01:05 Modified files: x11/kde4 : kde-release-helper Log message: Implement "update l10n" helper. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 15:01:43 Added files: x11/kde4 : UPDATE Log message: First try on documenting KDE update process. Improvements are welcome. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/01 15:09:48 Modified files: x11/kde4 : Makefile.inc kde4.port.mk x11/kde4/amor : distinfo x11/kde4/analitza: Makefile distinfo x11/kde4/ark : distinfo x11/kde4/ark/pkg: PLIST x11/kde4/artikulate: Makefile distinfo x11/kde4/artikulate/pkg: PLIST x11/kde4/artwork: Makefile distinfo x11/kde4/audiocd-kio: distinfo x11/kde4/audiocd-kio/pkg: PLIST x11/kde4/baloo : Makefile distinfo x11/kde4/baloo/pkg: PLIST x11/kde4/baloo-widgets: Makefile distinfo x11/kde4/base-artwork: Makefile distinfo x11/kde4/baseapps: Makefile distinfo x11/kde4/baseapps/pkg: PLIST x11/kde4/blinken: distinfo x11/kde4/blinken/pkg: PLIST x11/kde4/bomber: distinfo x11/kde4/bovo : distinfo x11/kde4/cantor: Makefile distinfo x11/kde4/cantor/pkg: PLIST x11/kde4/cervisia: distinfo x11/kde4/dev-scripts: distinfo x11/kde4/dev-utils: distinfo x11/kde4/dolphin-plugins: distinfo x11/kde4/dragon: Makefile distinfo x11/kde4/ffmpegthumbs: distinfo x11/kde4/filelight: distinfo x11/kde4/granatier: distinfo x11/kde4/graphics-mobipocket: Makefile distinfo x11/kde4/graphics-strigi-analyzer: distinfo x11/kde4/graphics-thumbnailers: distinfo x11/kde4/gwenview: Makefile distinfo x11/kde4/jovie : distinfo x11/kde4/jovie/patches: patch-cmake_FindSpeechd_cmake patch-filters_stringreplacer_CMakeLists_txt x11/kde4/juk : distinfo x11/kde4/juk/pkg: PLIST x11/kde4/kaccessible: distinfo x11/kde4/kactivities: Makefile x11/kde4/kajongg: distinfo x11/kde4/kalgebra: distinfo x11/kde4/kalgebra/pkg: PLIST x11/kde4/kamera: distinfo x11/kde4/kanagram: Makefile distinfo x11/kde4/kanagram/pkg: PLIST x11/kde4/kapman: distinfo x11/kde4/kapptemplate: distinfo x11/kde4/kapptemplate/pkg: PLIST x11/kde4/kate : Makefile distinfo x11/kde4/kate/pkg: PLIST x11/kde4/katomic: distinfo x11/kde4/kblackbox: distinfo x11/kde4/kblocks: distinfo x11/kde4/kbounce: distinfo x11/kde4/kbreakout: distinfo x11/kde4/kbruch: distinfo x11/kde4/kbruch/pkg: PLIST x11/kde4/kcachegrind: distinfo x11/kde4/kcalc : distinfo x11/kde4/kcharselect: distinfo x11/kde4/kcolorchooser: distinfo x11/kde4/kcron : distinfo x11/kde4/kdf : distinfo x11/kde4/kdiamond: distinfo x11/kde4/kfilemetadata: Makefile distinfo x11/kde4/kfloppy: distinfo x11/kde4/kfourinline: distinfo x11/kde4/kgamma: distinfo x11/kde4/kgeography: distinfo x11/kde4/kget : Makefile distinfo x11/kde4/kgoldrunner: distinfo x11/kde4/kgpg : distinfo x11/kde4/khangman: distinfo x11/kde4/khangman/pkg: PLIST x11/kde4/kig : Makefile distinfo x11/kde4/kig/pkg: PLIST x11/kde4/kigo : distinfo x11/kde4/killbots: distinfo x11/kde4/kimono: Makefile distinfo x11/kde4/kimono/patches: patch-CMakeLists_txt x11/kde4/kiriki: distinfo x11/kde4/kiten : distinfo x11/kde4/kiten/pkg: PLIST x11/kde4/kjumpingcube: distinfo x11/kde4/klettres: distinfo x11/kde4/klettres/pkg: PLIST x11/kde4/klickety: distinfo x11/kde4/klines: distinfo x11/kde4/kmag : distinfo x11/kde4/kmahjongg: distinfo x11/kde4/kmines: distinfo x11/kde4/kmix : distinfo x11/kde4/kmousetool: distinfo x11/kde4/kmouth: distinfo x11/kde4/kmplot: distinfo x11/kde4/kmplot/pkg: PLIST x11/kde4/knavalbattle: distinfo x11/kde4/knetwalk: distinfo x11/kde4/kolf : distinfo x11/kde4/kollision: distinfo x11/kde4/kolourpaint: distinfo x11/kde4/kolourpaint/pkg: PLIST x11/kde4/kompare: distinfo x11/kde4/konquest: distinfo x11/kde4/konsole: distinfo x11/kde4/kopete: Makefile distinfo x11/kde4/kopete/patches: patch-protocols_jabber_libiris_iris_jdns_jdns_p_h patch-protocols_jabber_libiris_iris_jdns_jdns_sys_c x11/kde4/korundum: distinfo x11/kde4/kpat : distinfo x11/kde4/kppp : distinfo x11/kde4/kqtquickcharts: distinfo x11/kde4/krdc : distinfo x11/kde4/kremotecontrol: Makefile distinfo x11/kde4/kreversi: distinfo x11/kde4/krfb : Makefile distinfo x11/kde4/kross-interpreters: Makefile distinfo x11/kde4/kruler: distinfo x11/kde4/ksaneplugin: distinfo x11/kde4/kscd : distinfo x11/kde4/kshisen: distinfo x11/kde4/ksirk : distinfo x11/kde4/ksnakeduel: distinfo x11/kde4/ksnapshot: distinfo x11/kde4/kspaceduel: distinfo x11/kde4/ksquares: distinfo x11/kde4/kstars: Makefile distinfo x11/kde4/kstars/pkg: PLIST x11/kde4/ksudoku: distinfo x11/kde4/ksystemlog: distinfo x11/kde4/kteatime: distinfo x11/kde4/ktimer: distinfo x11/kde4/ktouch: distinfo x11/kde4/ktuberling: distinfo x11/kde4/kturtle: distinfo x11/kde4/ktux : distinfo x11/kde4/kubrick: distinfo x11/kde4/kuser : distinfo x11/kde4/kwalletmanager: distinfo x11/kde4/kwordquiz: distinfo x11/kde4/l10n : Makefile.langs distinfo x11/kde4/l10n/pkg: PLIST-ar PLIST-bg PLIST-bs PLIST-ca PLIST-ca@valencia PLIST-cs PLIST-da PLIST-de PLIST-el PLIST-en_GB PLIST-es PLIST-et PLIST-eu PLIST-fa PLIST-fi PLIST-fr PLIST-ga PLIST-gl PLIST-he PLIST-hu PLIST-ia PLIST-id PLIST-is PLIST-it PLIST-ja PLIST-kk PLIST-ko PLIST-lt PLIST-lv PLIST-mr PLIST-nb PLIST-nds PLIST-nl PLIST-nn PLIST-pa PLIST-pl PLIST-pt PLIST-pt_BR PLIST-ro PLIST-ru PLIST-sk PLIST-sl PLIST-sr PLIST-sv PLIST-tr PLIST-ug PLIST-uk PLIST-zh_CN PLIST-zh_TW x11/kde4/libkcddb: distinfo x11/kde4/libkcompactdisc: distinfo x11/kde4/libkdcraw: Makefile distinfo x11/kde4/libkdeedu: distinfo x11/kde4/libkdegames: distinfo x11/kde4/libkexiv2: Makefile distinfo x11/kde4/libkexiv2/pkg: PLIST x11/kde4/libkipi: distinfo x11/kde4/libkmahjongg: distinfo x11/kde4/libkomparediff2: distinfo x11/kde4/libksane: distinfo x11/kde4/libs : Makefile distinfo x11/kde4/libs/patches: patch-cmake_modules_FindKDE4Internal_cmake patch-kdecore_CMakeLists_txt x11/kde4/lokalize: distinfo x11/kde4/lskat : distinfo x11/kde4/marble: Makefile distinfo x11/kde4/marble/pkg: PLIST x11/kde4/mplayerthumbs: distinfo x11/kde4/nepomuk-core: Makefile distinfo x11/kde4/nepomuk-widgets: distinfo x11/kde4/network-filesharing: distinfo x11/kde4/network-strigi-analyzers: distinfo x11/kde4/okteta: distinfo x11/kde4/okular: Makefile distinfo x11/kde4/okular/pkg: PLIST x11/kde4/oxygen-icons: Makefile distinfo x11/kde4/p5-kde: Makefile distinfo x11/kde4/p5-kde/pkg: PLIST x11/kde4/p5-qt : distinfo x11/kde4/pairs : distinfo x11/kde4/palapeli: distinfo x11/kde4/parley: distinfo x11/kde4/parley/pkg: PLIST x11/kde4/picmi : distinfo x11/kde4/pim : Makefile distinfo x11/kde4/pim/pkg: PLIST x11/kde4/pim-runtime: Makefile distinfo x11/kde4/pim-runtime/pkg: PLIST x11/kde4/pimlibs: Makefile distinfo x11/kde4/pimlibs/pkg: PLIST x11/kde4/plasma-addons: Makefile distinfo x11/kde4/plasma-addons/patches: patch-applets_kimpanel_cmake_FindIBus_cmake x11/kde4/plasma-addons/pkg: PLIST x11/kde4/poxml : Makefile distinfo x11/kde4/poxml/pkg: PLIST x11/kde4/print-manager: Makefile distinfo x11/kde4/py-kde: distinfo x11/kde4/py-kde/pkg: PLIST x11/kde4/qyoto : distinfo x11/kde4/rocs : Makefile distinfo x11/kde4/rocs/pkg: PLIST x11/kde4/ruby-qt: Makefile distinfo x11/kde4/runtime: Makefile distinfo x11/kde4/runtime/pkg: PLIST-main x11/kde4/sdk-kioslaves: distinfo x11/kde4/sdk-strigi-analyzers: distinfo x11/kde4/sdk-thumbnailers: distinfo x11/kde4/smokegen: distinfo x11/kde4/smokekde: Makefile distinfo x11/kde4/smokekde/pkg: PLIST x11/kde4/smokeqt: distinfo x11/kde4/step : distinfo x11/kde4/step/pkg: PLIST x11/kde4/superkaramba: distinfo x11/kde4/svgpart: distinfo x11/kde4/sweeper: distinfo x11/kde4/umbrello: distinfo x11/kde4/wallpapers: distinfo x11/kde4/webdev: Makefile distinfo x11/kde4/workspace: Makefile distinfo x11/kde4/zeroconf-ioslave: distinfo Added files: x11/kde4/jovie/patches: patch-libkttsd_CMakeLists_txt patch-libkttsd_talkercode_cpp x11/kde4/poxml/patches: patch-tests_CMakeLists_txt Removed files: x11/kde4/analitza/patches: patch-CMakeLists_txt patch-calgebra_CMakeLists_txt patch-calgebra_main_cpp patch-cmake_FindReadline_cmake x11/kde4/artikulate/patches: patch-src_CMakeLists_txt x11/kde4/baloo/patches: patch-src_xapian_CMakeLists_txt patch-src_xapian_xapiandatabase_cpp x11/kde4/kompare/patches: patch-kompare_shell_h patch-komparenavtreepart_komparenavtreepart_h patch-komparepart_kompare_part_h patch-komparepart_komparesaveoptionswidget_h patch-libdialogpages_CMakeLists_txt patch-libdialogpages_filessettings_h patch-libdialogpages_pagebase_h patch-libdialogpages_viewsettings_h x11/kde4/krfb/patches: patch-libvncserver_lzoconf_h patch-libvncserver_lzodefs_h patch-libvncserver_minilzo_c patch-libvncserver_minilzo_h x11/kde4/kstars/patches: patch-kstars_dialogs_exportimagedialog_cpp patch-kstars_skycomponents_asteroidscomponent_cpp patch-kstars_skycomponents_cometscomponent_cpp patch-kstars_skyobjects_starobject_cpp x11/kde4/libs/patches: patch-kdecore_auth_backends_polkit-1_Polkit1Backend_cpp patch-mimetypes_kde_xml x11/kde4/plasma-addons/patches: patch-applets_kimpanel_backend_ibus_CMakeLists_txt Log message: Welcome, KDE 4.14.2! Many patches went upstream, but even more patches are still there... To be continued! CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/11/01 15:17:57 Modified files: converters/base64: Makefile Log message: no need to USE_GROFF; from Jan Stary CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 15:33:53 Modified files: x11/lumina : Makefile Log message: No need to depend on gstreamer-0.10 now that phonon moved to gstreamer1. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/01 15:40:39 Modified files: sys/net : if_ethersubr.c if_mpe.c pf.c pfkeyv2.c radix_mpath.c route.c route.h sys/netinet : if_ether.c ip_icmp.c ip_input.c ip_output.c ip_spd.c sys/netinet6 : icmp6.c in6.c in6_ifattach.c in6_src.c ip6_output.c nd6.c nd6_nbr.c nd6_rtr.c sys/netmpls : mpls_input.c mpls_output.c Log message: Rename rtalloc1() into rtalloc(9) and convert its flags to only enable functionnality instead of a mix of enable/disable. ok bluhm@, jca@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/01 15:45:55 Modified files: share/man/man9 : Makefile route.9 Added files: share/man/man9 : rtalloc.9 Log message: Document rtalloc(9). CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/01 16:20:49 Modified files: www/luakit : Makefile distinfo Log message: Revert screwup from import of python stuff. Thank you bcallah@ for the clue stick. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/01 16:44:11 Modified files: games/zoom : Makefile distinfo Log message: Update to zoom-1.1.5. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/01 16:45:06 Modified files: sysutils/dfc : Makefile distinfo Log message: Update dfc to 3.0.5. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/01 16:46:32 Log message: Initial import of www/p5-WWW-Mechanize-FormFiller framework to automate HTML forms The module is intended as a simple way to fill out HTML forms from a set of predetermined values. You set up the form filler with value elements, retrieve the HTML form, and let the form filler loose on that form. OK benoit@ Status: Vendor Tag: bluhm Release Tags: bluhm_20141101 N ports/www/p5-WWW-Mechanize-FormFiller/Makefile N ports/www/p5-WWW-Mechanize-FormFiller/distinfo N ports/www/p5-WWW-Mechanize-FormFiller/pkg/DESCR N ports/www/p5-WWW-Mechanize-FormFiller/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/01 16:50:06 Log message: Initial import of devel/p5-Pod-Constant source constants from POD to avoid repetition It is often neccessary to refer to 'default values' or important constant values in your POD, but then you have to put them in your code as well, and they can easily get out of sync. use this module and you can import variables from the POD directly, avoiding repetition. OK benoit@ Status: Vendor Tag: bluhm Release Tags: bluhm_20141101 N ports/devel/p5-Pod-Constant/Makefile N ports/devel/p5-Pod-Constant/distinfo N ports/devel/p5-Pod-Constant/pkg/PLIST N ports/devel/p5-Pod-Constant/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/01 16:59:47 Modified files: devel : Makefile Log message: +p5-Pod-Constant CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/01 17:05:41 Modified files: www : Makefile Log message: +p5-WWW-Mechanize-FormFiller CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/01 17:14:02 Modified files: share/man/man9 : rtalloc.9 Log message: tweak previous; CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 17:58:07 Modified files: sys/kern : subr_pool.c sys/sys : pool.h Log message: remove color support. discussed with dlg and mikeb CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 17:58:29 Modified files: sys/kern : kern_sensors.c kern_subr.c kern_sysctl.c kern_task.c kern_tc.c kern_workq.c Log message: add a few sizes to free CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/11/01 18:05:49 Added files: textproc/ruby-nokogiri/patches: patch-ext_nokogiri_extconf_rb Log message: Remove writing to /dev/tty during build, screws up dpb display No bump as this doesn't affect the package. Noticed by naddy@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/11/01 18:11:32 Modified files: sys/arch/powerpc/powerpc: pmap.c Log message: Only mark segment 0 as executable on 64-bit systems. There it is harmless as we have a proper X bit in the page tables. On 32-bit systems kernel .text is handled by an IBAT, so we don't need page table entries that are executable in the kernel pmap. ok mpi@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/11/01 18:22:00 Modified files: usr.sbin/ospfd : parse.y usr.sbin/ospf6d: parse.y Log message: Add gcc format attributes to parse.y for ospf{6,}d. Fix a few yyerror() lines that are missing arguments. ok claudio@ sthen@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/11/01 18:30:41 Modified files: usr.sbin/bgpd : parse.y Log message: Add gcc format attributes to parse.y's yyerror() for bgpd. Fix some of the format characters in yyerror calls: %u -> %zu, %lld -> %u ok claudio@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/01 18:33:45 Modified files: x11/kde4/kopete: Makefile Log message: fix syntax error CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/11/01 19:04:53 Modified files: regress/usr.bin/pkg-config: Makefile Log message: Tests for pkg-config 'foo != some.version' CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/11/01 19:09:54 Modified files: regress/usr.bin/pkg-config: Makefile Log message: Consistency. CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/11/01 19:11:47 Modified files: usr.bin/pkg-config: pkg-config Log message: Allow for requests such as "foo != some.version". The code was already there but unreachable. ok jasper@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/01 20:33:33 Modified files: usr.sbin/rtadvd: rtadvd.c Log message: convert select() to poll(). tested by brad (who found a conversion bug..) CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/01 20:44:50 Modified files: usr.sbin/rbootd: bpf.c Log message: remove bogus comment CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/01 20:45:46 Modified files: usr.sbin/rtadvd: timer.c Log message: make comment select() vs poll() agnostic CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/11/01 21:12:42 Modified files: graphics/png : Makefile distinfo Log message: Update to png 1.6.14. ok naddy@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 21:47:08 Modified files: sys/tmpfs : tmpfs_vnops.c Log message: unnecessary malloc.h include CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 21:47:28 Modified files: sys/tmpfs : tmpfs_mem.c tmpfs_vfsops.c Log message: tmpfs free sizes CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 22:10:56 Modified files: build : Makefile build/mirrors : anoncvs.html.head ftp.html.end ftp.html.head Log message: update for 5.6 CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/01 22:12:46 Modified files: . : anoncvs.html ftp.html openssh : ftp.html Log message: sync (updates for 5.6) CVSROOT: /cvs Module name: www Changes by: doug@cvs.openbsd.org 2014/11/01 23:02:29 Modified files: faq : current.html Log message: For the ressl to tls conversion, also need to delete libressl_p.a. Discussed with jsing@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:12:14 Modified files: sys/kern : kern_malloc.c Log message: tweak panic messages for consistency CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:15:34 Modified files: sys/kern : kern_malloc.c Log message: tweak free panic messages too CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:16:43 Modified files: share/man/man9 : malloc.9 Log message: tweak wording and update panic messages CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:25:09 Modified files: usr.bin/passwd : passwd.1 Log message: update documentation regarding localcipher only CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:30:54 Modified files: share/man/man5 : passwd.5 Log message: awk script to upgrade from 4.3 passwd files is irrelevant now CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:33:04 Modified files: share/man/man5 : passwd.5 Log message: be a little more vague and a little less wrong about login.conf CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/01 23:36:10 Modified files: share/man/man5 : login.conf.5 Log message: localcipher is blowfish only. remove mention of ypcipher. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/11/02 01:22:28 Modified files: . : plus.html Log message: plus.html for Oct 20-26. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/02 01:37:39 Modified files: x11/kde4/workspace: Makefile Log message: Use the right MASTER_SITES. Noticed by naddy@. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/02 01:39:30 Modified files: multimedia/phonon-backend/gstreamer: Makefile Log message: multimedia/gstreamer1/plugins-base is a LIB_DEPENDS item, actually. Spotted by ajacoutot@. CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/11/02 01:47:52 Removed files: lang/python/3.3: Makefile distinfo lang/python/3.3/files: CHANGES.OpenBSD lang/python/3.3/patches: patch-Lib_os_py patch-Lib_ssl_py patch-Lib_test_regrtest_py patch-Lib_test_test_os_py patch-Lib_test_test_socket_py patch-Makefile_pre_in patch-Modules__ssl_c patch-Modules_pyexpat_c patch-configure_ac patch-setup_py lang/python/3.3/pkg: DESCR-gdbm DESCR-idle DESCR-main DESCR-tests DESCR-tkinter PLIST-gdbm PLIST-idle PLIST-main PLIST-tests PLIST-tkinter Log message: Remove Python 3.3. ok aja@ and others. CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/11/02 01:48:30 Modified files: lang/python : Makefile Log message: unlink 3.3 CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/02 01:01:32 Modified files: graphics/digikam-kde4: Makefile distinfo graphics/digikam-kde4/patches: patch-core_libs_3rdparty_kmemoryinfo_kmemoryinfo_backend_cpp patch-extra_kipi-plugins_common_libkipiplugins_CMakeLists_txt graphics/digikam-kde4/pkg: PLIST-geomap PLIST-main Added files: graphics/digikam-kde4/patches: patch-core_libs_imageproperties_captionedit_cpp patch-core_libs_imageproperties_imagedescedittab_cpp Removed files: graphics/digikam-kde4/patches: patch-core_CMakeLists_txt patch-core_tests_imgqsort_detectblur_CMakeLists_txt patch-core_tests_imgqsort_detectcompression_CMakeLists_txt patch-core_tests_imgqsort_detectnoise_CMakeLists_txt patch-extra_kipi-plugins_CMakeLists_txt patch-extra_libkface_CMakeLists_txt Log message: Update Digikam to 4.4.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/02 02:35:05 Modified files: devel/p5-DateTime-TimeZone: Makefile Log message: unify CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/11/02 02:53:55 Modified files: . : index.html Log message: missed a spot. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/02 03:14:49 Modified files: x11/kde4 : UPDATE Log message: Forgot to remove REVISION marks in meta/kde4 again... It's too late now, so let them be there until 4.14.3. But one more note in x11/kde4/UPDATE will be helpful next time. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/02 03:27:43 Removed files: textproc/discount/patches: patch-cstring_h Log message: Forgotten in previous. Noticed by nigel@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/11/02 03:29:03 Modified files: app/xterm : MANIFEST button.c version.h xterm.log.html app/xterm/package: xterm.spec app/xterm/package/debian: changelog app/xterm/package/freebsd: Makefile Log message: Update to xterm 312 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/11/02 03:30:01 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/02 03:33:51 Modified files: audio/clementine: Makefile audio/liblastfm: Makefile devel/intellij : Makefile fonts/ru-ptsans: Makefile math/eigen3 : Makefile productivity/kmymoney: Makefile security/qca-ossl: Makefile sysutils/krename: Makefile sysutils/krename-kde4: Makefile Log message: Unify my email in MAINTAINER lines to make portroach happy. Kindly reminded by jasper@ a week (or two?) ago, sorry for slacking. CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/11/02 03:34:52 Modified files: regress/usr.bin/pkg-config: Makefile Log message: Tests for constructs such as 'foo >= a.version foo != another.version'. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/02 03:36:35 Modified files: devel/p5-File-Modified: Makefile distinfo devel/p5-File-Modified/pkg: DESCR Log message: - update p5-File-Modified to 0.09 - take maintainer - sort according to Makefile.template - update DESCR to upstream description OK benoit@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/02 03:42:38 Modified files: lib/libssl/src/ssl: ssl_ciph.c ssl_locl.h Log message: Remove remnants from RC2 and SEED - there are no longer any cipher suites that use these algorithms (and SEED was removed from libcrypto some time ago). ok doug@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 03:58:32 Modified files: net/scamper : Makefile distinfo Log message: update to scamper 20141101 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/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@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 05:01:00 Modified files: textproc/jq : Makefile distinfo textproc/jq/pkg: PLIST Added files: textproc/jq/patches: patch-Makefile_in patch-jq_test_c patch-jv_print_c Removed files: textproc/jq/patches: patch-tests_run Log message: update to jq 1.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 05:37:44 Modified files: textproc/jq : Makefile Log message: more explicit license marker - MIT (code), CC-BY-3.0 (docs) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/02 06:18:19 Modified files: devel/lualdoc : Makefile distinfo devel/lualdoc/pkg: PLIST Added files: devel/lualdoc/patches: patch-ldoc_markdown_lua Log message: Update to LDoc-1.4.3 CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/11/02 06:28:50 Modified files: usr.bin/pkg-config: pkg-config Log message: revert, i did NOT ok this diff which bears no proof of testing in a bulk or xenocara CVSROOT: /cvs Module name: ports Changes by: matthieu@cvs.openbsd.org 2014/11/02 06:32:04 Modified files: x11/xcursorgen : Makefile distinfo Log message: Update to xcursorgen-1.0.6 Change version numbering to follow individual package version not those of X.Org's katamari. ok sthen@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/02 06:56:55 Modified files: usr.sbin/lpr/common_source: common.c Log message: use nanosleep() instead of select(); ok jsing CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 06:58:24 Modified files: textproc/diffstat: Makefile distinfo Log message: update to diffstat 1.59 drop maintainer, address no longer exists CVSROOT: /cvs Module name: src Changes by: eric@cvs.openbsd.org 2014/11/02 06:59:16 Modified files: lib/libc/asr : gethostnamadr_async.c getnetnamadr_async.c Log message: Fix a NULL deref when getting an actual result for an invalid hostname in gethostbyname(). Similar fix for getnetbyname(). ok deraadt@ daniel@ jca@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/02 06:59:40 Modified files: usr.sbin/relayd: parse.y relayd.h Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/02 07:18:36 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo Log message: update to specinfra-2.4.2 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/02 07:24:12 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/02 07:38:38 Modified files: print/cups-filters: Makefile print/cups-filters/pkg: README Log message: dbus_daemon needed in pkg_scripts. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/02 07:45:05 Modified files: lib/libtls : tls.h tls_client.c tls_init.3 Log message: Add a tls_connect_fds() function that allows a secure connection to be established using a pair of existing file descriptors. Based on a diff/request from Jan Klemkow. Rides previous libtls rename/library bump. Discussed with tedu@. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 07:48:55 Modified files: devel/boris : Makefile Log message: don't force php > 5.4.27p2 < 5.5, people had time to update, and it gets in the way of a php version switch CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/02 08:18:32 Modified files: sbin/dhclient : clparse.c dhclient.c Log message: Pesky whitespace and spurious parenthesis. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/02 08:19:22 Modified files: games/freedroidrpg: Makefile Log message: Properly build against system lua instead of bundling its own. Drop maintainership. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/02 08:26:08 Modified files: games/gamine : Makefile Log message: Drop maintainer. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/02 08:26:22 Modified files: games/pokerth : Makefile Log message: Take maintainer. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/02 08:28:29 Removed files: games/frogatto : Makefile distinfo games/frogatto/patches: patch-Makefile patch-src_multiplayer_cpp games/frogatto/pkg: DESCR PLIST Log message: Remove; we haven't been able to update for a while now because this has become a paied app. We never shipped pkg anyway. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/02 08:28:47 Modified files: games : Makefile Log message: -frogatto CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/02 08:42:14 Modified files: graphics/netpbm: Makefile distinfo Log message: update to 10.35.94 for minor bug fixes CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/11/02 10:49:19 Added files: editors/libreoffice/patches: patch-unotest_Library_unotest_mk Log message: fix the build in the case of cppunit being installed on the system CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/02 11:41:00 Modified files: net/onioncat : Makefile Log message: do not pick up gawk in configure (only used during build); ok pirofti@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/02 11:43:23 Modified files: x11/gnustep/projectcenter: Makefile distinfo x11/gnustep/projectcenter/pkg: PLIST Log message: Minor update to 0.6.2, many minor enhancements and bug fixes. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/02 12:19:06 Modified files: net/uhttpmock : Makefile distinfo Log message: update to uhttpmock-0.3.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/02 12:57:12 Modified files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_type_user_rb Log message: add comment to patch (no pkg change) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/02 13:06:18 Modified files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_openbsd_rb Log message: link to upstream PR CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/11/02 14:13:32 Modified files: usr.sbin/smtpd : smtp_session.c Log message: rework domain append by locating either the brackets or the last component of an address and appending domain if not already there. this works better than trying to parse addresses and render them back, while allowing us to do the append "in place" and cope nicely with multi-line addresses. CVSROOT: /cvs Module name: ports Changes by: jmatthew@cvs.openbsd.org 2014/11/02 14:18:27 Modified files: multimedia/gstreamer1/plugins-base/files: sndiosrc.c sndiosink.c gstsndio.h gstsndio.c multimedia/gstreamer1/plugins-base: Makefile Log message: Add stream volume control using sio_setvol and sio_onvol. Most gstreamer applications will pick this up rather than doing volume control inside the pipeline, meaning much lower latency on volume changes. with help and encouragement from ajacoutot@ and ratchov@ CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/11/02 14:46:03 Modified files: usr.sbin/smtpd : smtp_session.c Log message: increment s->datalen counter in append domain code to correctly account for the data we wrote CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 14:55:36 Modified files: security/yubikey-personalization-gui: Makefile distinfo Log message: update to yubikey-personalization-gui 3.1.17 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/02 15:02:34 Modified files: devel/pear-Validate: Makefile distinfo devel/pear-Validate/pkg: PLIST Log message: update to pear-Validate 0.8.5, sent a long time ago by Vladimir Támara Patiño CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/02 15:59:58 Modified files: sys/kern : subr_hibernate.c Log message: Unmap the hibernate hiballoc page after we are done with it. ok deraadt, kettenis CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/11/02 16:56:57 Modified files: . : goals.html Log message: as awesome as our goal of being a good development platform is, we don't need to duplicate the bullet point. noticed by Manuel CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/02 19:22:15 Modified files: sbin/dhclient : dhclient.c Log message: No need to immediately remove an expired lease from the list of leases. It will be ignored, so let the normal cleanup in bind_lease() take care of it. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/02 20:08:00 Modified files: sys/kern : exec_elf.c exec_subr.c kern_event.c kern_fork.c kern_kthread.c kern_proc.c sched_bsd.c subr_disk.c subr_extent.c subr_log.c subr_userconf.c sys_generic.c tty_endrun.c tty_msts.c tty_nmea.c tty_subr.c uipc_usrreq.c vfs_getcwd.c vfs_subr.c vfs_syscalls.c Log message: pass size argument to free() ok doug tedu CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/02 20:22:22 Modified files: sbin/ipsecctl : pfkey.c Log message: simple conversion from select() to poll() CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/11/02 20:42:12 Modified files: usr.sbin/ifstated: parse.y usr.sbin/iscsictl: parse.y usr.sbin/mrouted: cfparse.y usr.sbin/ripd : parse.y Log message: Add gcc format attributes to more warn/error functions in parse.y files. Fix a few missing or incorrect format characters. ok claudio@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/11/02 20:46:44 Modified files: usr.sbin/httpd : parse.y Log message: Add gcc format attributes to yyerror() in httpd. Fix a few format characters as well. ok bluhm@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/02 20:56:35 Modified files: faq : faq5.html Log message: missed a few upgrade54 references when preping for 5.5, so of course missed them this time, too since I wasn't searching for 5.4/54. Pointed out by Mario St Gelais (mario dot stg at videotron dot ca) via misc@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/02 21:14:49 Modified files: lang/seed7 : Makefile distinfo lang/seed7/pkg : PLIST Log message: Update to 20141102. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/02 21:22:35 Modified files: faq : faq9.html Log message: tj at mrsk dot me pointed out that we support ext4 RO. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/02 21:23:10 Modified files: devel/libguess : Makefile distinfo Log message: Update to 1.2 (yes, this is really the new location of tarballs) ok brad@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/02 21:28:11 Modified files: audio/audacious: Makefile distinfo audio/audacious/patches: patch-buildsys_mk_in patch-src_libaudcore_Makefile patch-src_libaudgui_Makefile audio/audacious/pkg: PLIST Removed files: audio/audacious/patches: patch-src_libaudclient_Makefile Log message: Update to 3.5.2 - libaudclient has been removed, among other changes. small tweak and ok brad@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/02 21:29:05 Modified files: audio/audacious-plugins: Makefile distinfo audio/audacious-plugins/patches: patch-buildsys_mk_in patch-configure audio/audacious-plugins/pkg: PLIST Log message: Update to 3.5.2 ok brad@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/02 23:08:56 Modified files: libexec/ld.so : malloc.c Log message: arc4random_uniform() transformation was off, resulting in badly skewed distribution in the placement of malloc's dir_info. ok otto@ deraadt@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/11/02 23:23:30 Added files: lib/libcrypto/crypto: arc4random_freebsd.h getentropy_freebsd.c Log message: Add hooks to override native arc4random_buf on FreeBSD. The FreeBSD-native arc4random_buf implementation falls back to weak sources of entropy if the sysctl fails. Remove these dangerous fallbacks by overriding locally. Unfortunately, pthread_atfork() is also broken on FreeBSD (at least 9 and 10) if a program does not link to -lthr. Callbacks registered with pthread_atfork() simply fail silently. So, it is not always possible to detect a PID wraparound. I wish we could do better. This improves arc4random_buf's safety compared to the native FreeBSD implementation. Tested on FreeBSD 9 and 10. CVSROOT: /cvs Module name: www Changes by: aoyama@cvs.openbsd.org 2014/11/03 00:37:58 Modified files: . : luna88k.html Log message: Now luna88k supports PC-9801 extension board slots. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 00:40:31 Modified files: usr.sbin/ospfd : log.c log.h parse.y usr.sbin/ospf6d: log.c log.h parse.y Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK deraadt@ claudio@ CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/11/03 00:51:47 Modified files: . : plat.html Log message: Move archs that were removed down to the bottom. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/03 01:12:00 Modified files: x11/kde-shared-data: distinfo Log message: As usual, I forgot to update distinfo. As usual, noticed by naddy@. As usual, I apologize for breaking things... CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/03 01:13:29 Modified files: x11/kde4 : UPDATE Log message: One more item almost always forgotten. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/03 01:13:42 Modified files: devel/ocaml-dose: Makefile sysutils/opam : Makefile Log message: MAINTAINER should also include a name.. CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/11/03 01:23:25 Modified files: . : plat.html Log message: lost a < while copying and pasting. CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/11/03 02:12:41 Modified files: sysutils/cdrtools: Makefile Added files: sysutils/cdrtools/patches: patch-cdda2wav_configure_in patch-cdda2wav_lconfig_h_in patch-cdda2wav_local_cnf_in patch-cdda2wav_sndconfig_c Log message: Use sndio to play sound. help from and ok jca, ok armani CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/03 02:33:18 Modified files: devel/p5-LockFile-Simple: Makefile distinfo Log message: Update p5-LockFile-Simple to 0.208. ok pea@ (maintainer). CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/03 02:35:54 Modified files: mail/p5-Log-Procmail: Makefile distinfo Log message: Update p5-Log-Procmail to 0.12. ok avsm@ (maintainer). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/03 03:17:09 Modified files: multimedia/get_iplayer: Makefile distinfo multimedia/get_iplayer/patches: patch-get_iplayer Log message: update to get_iplayer 2.90, based on a diff from nigel@ This switches to different programme data feeds following the BBC removing the ones used previously. However, these are less useful than the previous feeds, and may well also be removed. See release notes for more: https://github.com/dinkypumpkin/get_iplayer/wiki/release289 CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/03 04:02:08 Modified files: sys/net : if.c Log message: Do no change the gateway of local routes for p2p interfaces. This change was defeating the code in rtrequest1(9) checking for route entries with the same dst/gw when the same IP address was configured on multiple interfaces. As a result, multiple local routes were created for the same address and marked as multipath. But changing their gateway to 127.0.0.1 would make them similar and impossible to remove. This would leaves entries with a stall ifa pointer as soon as the address was removed. Prevent a panic reported by todd@ CVSROOT: /cvs Module name: src Changes by: gerhard@cvs.openbsd.org 2014/11/03 04:43:47 Modified files: sys/netinet : ip_carp.c Log message: Fix kernel stack overflow by preventing carp_send_ad_all() from re-entrant calls. Also, when adjusting demote counts, don't call carp_send_ad_all() for every ifgroup with a demote count of 1 but rather call it only once after adjusting the demote counts of all ifgroups. ok bluhm@ mpf@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/03 05:12:12 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-configure Log message: Bugfix update to mpd-0.19.2 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/03 05:22:10 Modified files: textproc/icu4c : Makefile Log message: Unbreak icu4c on arm by re-adding a workaround that was removed with previous commit Reported by, and ok, matthieu@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/03 05:29:31 Modified files: textproc/icu4c : Makefile Log message: Move previous where it belongs. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/11/03 05:48:37 Modified files: usr.bin/make : lowparse.c make.1 Log message: introspection feature: ${MAKEFILE_LIST} contains the list of makefiles parsed. name stolen from gmake, from a suggestion from guenther@, to avoid gratuitous confusin. okay guenther@, millert@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/03 06:23:52 Removed files: x11/kde4/kopete/patches: patch-protocols_jabber_googletalk_libjingle_CMakeLists_txt patch-protocols_jabber_googletalk_libjingle_talk_base_ipaddress_cc patch-protocols_jabber_googletalk_libjingle_talk_base_nethelpers_cc patch-protocols_jabber_googletalk_libjingle_talk_base_physicalsocketserver_cc patch-protocols_jabber_googletalk_libjingle_talk_base_socketaddress_cc patch-protocols_jabber_googletalk_libjingle_talk_session_phone_linuxdevicemanager_cc patch-protocols_jabber_googletalk_libjingle_talk_session_phone_srtpfilter_cc patch-protocols_jabber_googletalk_libjingle_talk_sound_linuxsoundsystem_cc Log message: Zap patches that aren't needed until Jingle support is ready and that need adjusting. Forgot to remove them at the commit time, noticed by naddy@. Just verified that build goes fine on amd64. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/03 07:42:41 Modified files: www/phantomjs : Makefile distinfo www/phantomjs/patches: patch-src_qt_preconfig_sh Log message: Update toh phantomjs 1.9.8. From MAINTAINER Francisco de Borja Lopez Rio , also tested by Eric Radman. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/03 07:53:22 Modified files: usr.bin/mg : mg.1 Log message: comment out no-tab-mode, since mg is currently compiled without it; From: Kaspars Bankovskis ok lum CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/11/03 09:35:05 Modified files: infrastructure/mk: bsd.port.mk Log message: dump-vars MAKEFILE_LIST (no synchronization issue, as it will simply not show up with old make) CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 09:45:00 Modified files: usr.sbin/iscsid: iscsid.c Log message: actually use macro argument instead of shadowed variable name CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 09:47:55 Modified files: usr.bin/encrypt: encrypt.c Log message: hoist blowfish up and use bcrypt_newhash directly CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/03 09:49:46 Modified files: x11/kde4/baloo : Makefile x11/kde4/workspace: Makefile x11/kde4/kstars: Makefile Log message: In KDE land, you may be sure in general, that WANTLIB forces LIB_DEPENDS. So add missing LIB_DEPENDS+=devel/qjson to three ports. At least in case of kstars lack of LIB_DEPENDS actually caused breakage, as noticed by naddy@. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 09:50:20 Modified files: libexec/login_reject: Makefile login_reject.c Log message: reduce dependency on passwd. just call bcrypt_newhash to do the dummy work. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 09:55:21 Modified files: sys/kern : subr_disk.c Log message: deobfuscate by pulling le conversions up. use mallocarray. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 09:55:59 Modified files: usr.sbin/bgpd : bgpd.h log.c parse.y usr.sbin/dvmrpd: log.c log.h parse.y Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK benno@ doug@ claudio@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 09:57:50 Modified files: usr.sbin/hostapd: parse.y Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK benno@ doug@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 09:58:28 Modified files: lib/libssl/src/crypto/comp: c_rle.c c_zlib.c comp.h comp_err.c comp_lib.c Log message: minor cleanup of zlib code. DSO is gone. ok jsing. CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/03 10:07:37 Modified files: www/luakit : Makefile Log message: Bump EPOCH because I am a hozer and didn't notice this was included in my previous commit! CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 10:20:46 Modified files: sys/kern : kern_sysctl.c uipc_socket.c sys/sys : socketvar.h lib/libkvm : kvm_file2.c usr.bin/netstat: inet.c Log message: Put the socket splicing fields into a seperate struct sosplice that gets only allocated when needed. This way struct socket shrinks from 472 to 392 bytes on amd64. When splicing gets active, another 88 bytes are allocated for struct sosplice. OK dlg@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 10:21:30 Modified files: lib/libssl/src/ssl: t1_lib.c Log message: only call SRTP (whatever that is) functions when the connection type is DTLS (whatever that is) instead of for TLS too. ok jsing. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/03 10:50:56 Modified files: libexec/ld.so : loader.c libexec/ld.so/alpha: archdep.h libexec/ld.so/powerpc: archdep.h libexec/ld.so/sparc: archdep.h libexec/ld.so/sparc64: archdep.h Log message: Eliminate RTLD_PROTECT_PLT: ld.so is built with -Bsymbolic so the PLT is empty/unused. On at least macppc and sparc64, ld.so's attempt to mprotect its PLT could instead hit its own allocated data and cause a segfault shortly there after. While here, take a shot at preventing the same issue with the GOT by checking for __got_start != __got_end. reproduction *with ktracing* by afresh1@ provided the key data ok miod@ deraadt@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 11:43:24 Modified files: usr.sbin/httpd : httpd.h parse.y Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 11:44:36 Modified files: usr.sbin/ifstated: ifstated.h parse.y usr.sbin/ldapd : parse.y usr.sbin/ldpd : log.c log.h parse.y Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK claudio@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 12:18:16 Modified files: games/canfield/canfield: canfield.c Log message: the man page says it is impossible to cheat, but since the shuffle is lopsided, a sharp counter can detect uneven permutations. fix this by using knuth shuffle. ok mlarkin pjanzen CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/11/03 12:19:44 Modified files: sysutils/pstree: Makefile sysutils/pstree/files: pstree.1 Log message: documentation improvements from Fred Hucht, upstream maintainer; ok naddy@ benoit@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/03 12:50:01 Modified files: infrastructure/bin: make-plist Log message: Change "Found out" to "Discovered" for more natural English. clarifications from sthen@ ok espie@ CVSROOT: /cvs Module name: src Changes by: bcallah@cvs.openbsd.org 2014/11/03 12:51:16 Modified files: share/man/man5 : bsd.port.mk.5 Log message: Add a blurb about "Discovered old directory in ..." in the man page. Direction/tweaks from sthen@ espie@ ok espie@ CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/03 13:12:34 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update youtube-dl to 2014.11.02.01. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/03 13:15:31 Modified files: usr.sbin/ntpd : log.c ntpd.h parse.y usr.sbin/ripd : log.c log.h parse.y usr.sbin/ypldap: parse.y ypldap.h Log message: Convert the logic in yyerror(). Instead of creating a temporary format string, create a temporary message. OK claudio@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 14:00:27 Modified files: sys/kern : subr_disk.c Log message: correct test logic. ok guenther CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 14:28:35 Modified files: sys/isofs/cd9660: cd9660_vnops.c sys/isofs/udf : udf_subr.c udf_vnops.c sys/kern : kern_fork.c spec_vnops.c vfs_lockf.c vfs_syscalls.c vfs_vnops.c sys/miscfs/fifofs: fifo_vnops.c sys/msdosfs : msdosfs_vnops.c sys/nfs : nfs_serv.c sys/ufs/ext2fs : ext2fs_vnops.c sys/ufs/ufs : ufs_vnops.c Log message: include sys/unistd.h where needed instead of indirect reliance. ok jsg CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/03 15:06:39 Modified files: sbin/dhclient : clparse.c Log message: Don't leak static leases when the 'lease {}' parsing fails or one static lease supersedes an earlier one. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/03 15:14:54 Modified files: games/robots : extern.c main.c move.c robots.h games/tetris : input.c games/worm : worm.c Log message: select() to poll() conversions ok tedu (... other games maintainer absent) CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/03 15:15:15 Modified files: lib/libc/sys : poll.2 Log message: POLLERR is only valid in revents so it is not a bug that it is ignored in events. The kernel does actually set POLLERR in revents in some cases. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/03 15:18:15 Modified files: games/mille : init.c Log message: use knuth shuffle for better distribution of permutations CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/03 16:17:21 Modified files: usr.bin/mandoc : libman.h man.c man_macro.c Log message: Allow the five man(7) font macros to concatenate their line arguments, the same way the mdoc(7) macros marked MDOC_JOIN do it. In -Thtml, this removes bogus
when the font macros are used in no-fill mode; issue found by jsg@ in the Xcursor(3) SYNOPSIS. As a bonus, this slightly reduces the size of the syntax tree. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/03 18:20:28 Modified files: sbin/dhclient : dhclient.c Log message: Instead of correcting things after the fact, use SOCK_NONBLOCK and SOCK_CLOEXEC to create the socketpair() with non-blocking and close-on-exec set. ok krw@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/03 19:03:54 Modified files: faq : faq4.html Log message: "I know, I'll add a little here! Oh what's the exact name? I'll fill that in later." Of course, I didn't, forgot about it and tj at mrsk dot me keeps me honest, thanks! CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/03 19:08:22 Modified files: faq : index.html Log message: Almost in time for 2015, bump copyright to 2014, and a couple stupid apostrophe errors. from Ross Richardson (openbsd at rlr dot id dot au). CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/03 20:01:14 Added files: sys/crypto : siphash.c siphash.h Log message: introduce SipHash, designed by Jean-Phillippe Aumasson and Daniel J. Bernstein, as described at https://131002.net/siphash/, and via Andre Oppermanns implementation in FreeBSD. this is supposed to be a good but cheap hash for use in places where you want to protect against hash bucket flooding attacks. yasuoka@ pointed me at this after i asked about possibilities for protecting the in_pcb hash he was tinkering with. naddy@ mikeb@ claudio@ and djm@ agree it is much better than doing nothing commit deraadt@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/03 21:03:10 Modified files: sbin/dhclient : dhclient.c Log message: Of the 14 occurances of free_client_lease() only 2 deal with leases that might be in the client->leases TAILQ. So don't traverse said TAILQ in free_client_lease() trying see if the lease should be TAILQ_REMOVE()'d. Instead use TAILQ_REMOVE() in the two places (one of which is dubious) where it might be relevant. Be careful not to TAILQ_REMOVE() a static lease. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/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 CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/11/03 21:50:01 Modified files: build/mirrors : ftp.html.end Log message: Sync with actual 5.6 directory layout. CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/11/03 21:50:20 Modified files: . : ftp.html Log message: sync CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/11/03 22:56:39 Modified files: sbin/ipsecctl : parse.y Log message: Add gcc format attributes to ipsecctl's parse.y. Also, fix a few format characters. ok sthen@ naddy@ markus@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/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@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/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@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/03 23:55:04 Modified files: multimedia/phonon-backend/gstreamer: Makefile multimedia/phonon-backend/gstreamer/patches: patch-cmake_FindGStreamer_cmake patch-gstreamer_CMakeLists_txt Log message: Forgot to run update-patches, noticed by naddy@. Went unnoticed in "dpb x11/kde4142" build because gstreamer backend doesn't get picked up by dependency, since it's not default backend now. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/11/04 00:36:47 Modified files: sys/dev/pci : if_skreg.h Log message: Commit a missing chunk of the diff I had sent out to recognize some newer Yukon chipsets. Pointed out by jsg@ CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/11/04 00:41:10 Modified files: comms/tlf : Makefile comms/tlf/patches: patch-share_Makefile_am Added files: comms/tlf/patches: patch-src_audio_c patch-src_audio_h Removed files: comms/tlf/patches: patch-configure_in Log message: Use sndio to record. ok sthen CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/04 01:16:13 Log message: import py-carddav 0.7.0 pyCardDAV is a simple to use CardDAV CLI client. It has built in support for mutt's query_command but also works very well solo (and with other MUAs). ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140411 N ports/productivity/py-carddav/distinfo N ports/productivity/py-carddav/Makefile N ports/productivity/py-carddav/pkg/PLIST N ports/productivity/py-carddav/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/04 01:17:30 Modified files: productivity : Makefile Log message: +py-carddav CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 01:35:57 Modified files: x11/enlightenment: Makefile distinfo Added files: x11/enlightenment/files: sound_sndio.c x11/enlightenment/patches: patch-configure_ac patch-src_Makefile_am patch-src_sound_c Log message: Add sndio backend, regen wantlib and distinfo With input and ok brad@, ratchov@ and Amit Kulkarni (old maintainer) CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 01:47:36 Modified files: games/gtetrinet: Makefile distinfo Log message: Remove esound support, regen wantlib and distinfo tweaks and ok brad@, ok ratchov@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/04 02:03:58 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_user_useradd_rb Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_nameservice_objectadd_rb Log message: - usermod -G doesn't mean what puppet thinks it means, so use -S so actually set groups. this allows puppet to revoke group membership for a user. - make 'chage' and 'password' optional commands reminded and tested by sebastia@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/04 02:31:01 Modified files: graphics/ffmpeg: Makefile Log message: Only enable x265 support on architectures where it actually builds (ie so far alpha/amd64/i386/sparc64) to unbreak half of the tree (mplayer, etc..) on other archs like ppc/mips64*. Tested on amd64 & ppc. ok brad@ CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/11/04 03:00:24 Modified files: share/man/man5 : bsd.port.mk.5 Log message: Xr to make.1 for MAKEFILE_LIST CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 03:35:35 Modified files: devel/glib : Makefile x11/gtk+ : Makefile Log message: PORTROACH, limit to even numbers. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/11/04 03:44:33 Modified files: databases/sqlports: Makefile databases/sqlports/files: Info.pm Var.pm databases/sqlports/pkg: DESCR-compact DESCR-main Log message: add support for MAKEFILE_LIST CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 03:52:26 Modified files: audio/ncmpcpp : Makefile audio/ncmpcpp/patches: patch-src_ncmpcpp_cpp Added files: audio/ncmpcpp/patches: patch-src_tags_cpp patch-src_utility_string_h patch-src_window_cpp Log message: window: initScreen: initialize readline; fixes segmentation fault in rl_resize_terminal on SIGWINCH (upstream git commit 7e2900511cfa8a41984144b1be03d8108abd8798) tags: writeID3v2Tags: write comment tag properly (upstream git commit 6402b6f9c9aad20180079d8b35f55267634028f2) ncmpcpp: ignore SIGPIPE, not SIGINT (upstream git commit 9e6b8533f1606fdc2535aad88817b50b8e4ad663) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/04 03:58:21 Modified files: comms/tlf : Makefile distinfo comms/tlf/patches: patch-src_audio_c patch-src_audio_h comms/tlf/pkg : PLIST Removed files: comms/tlf/patches: patch-doc_Makefile_am patch-rules_Makefile_am patch-scripts_Makefile_am patch-share_Makefile_am Log message: update to tlf-1.2.1 to unbreak CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 04:41:19 Added files: net/weechat/patches: patch-src_gui_curses_CMakeLists_txt Log message: Ensure proper build-time dependency for the 'weechat-curses' symlink creation. (should) fix a packaging error reported by naddy@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/04 05:26:09 Modified files: sys/arch/armv7/conf: GENERIC-OMAP RAMDISK-OMAP Log message: Add atphy(4) for the Atheros AR8031 phys in the AM335x starter kit. Tested by Bernard Merindol. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/04 05:34:06 Modified files: sys/arch/armv7/conf: GENERIC-SUNXI RAMDISK-SUNXI Log message: Add rgephy(4) for the RTL8211E phy in the LeMaker Banana Pi and Banana Pro. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/04 05:38:57 Modified files: sysutils/conky : Makefile Log message: Remove the audacious FLAVOR. It required libaudclient, which is no longer part of audacious. Reminder from dcoppa@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/04 05:41:34 Modified files: sys/dev/ic : nvme.c Log message: when reading the completion queue, it helps to write where we've read up to to the completion queue head doorbell instead of the submission queue tail doorbell. this lets us submit more than one command to the chip. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/04 05:48:22 Modified files: sys/dev/ic : nvme.c Log message: shuffle when the cid is set on submission queue entries so its after when the caller fills the entry. CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 06:03:37 Modified files: games/gtetrinet: Makefile Log message: Keep ${MODGCONF2_WANTLIB} ${MODGETTEXT_WANTLIB} in WANTLIB, bump again Requested by and ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/04 06:07:18 Modified files: sysutils : Makefile Log message: Bah, forgot this part. Unlink the audacious conky FLAVORs. Reminder from dcoppa@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/04 06:18:04 Modified files: sys/arch/armv7/omap: ommmc.c Log message: Uncomment code that does voltage capabilities initialisation. Without this using an sd card with my rev C BeagleBone Black won't work. Should fix similiar problems reported by Gerke Preussner and Andrew Hills on arm@ ok syl@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 06:50:24 Modified files: devel/cmake : Makefile cmake.port.mk devel/cmake/patches: patch-Modules_Compiler_G95-Fortran_cmake patch-Modules_Compiler_GNU_cmake Added files: devel/cmake/patches: patch-Modules_FindKDE3_cmake Log message: Remove '-O2' as default optimization CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/04 07:24:25 Modified files: x11/gnustep/pantomime: Makefile distinfo x11/gnustep/pantomime/pkg: PLIST Removed files: x11/gnustep/pantomime/patches: patch-Framework_Pantomime_CWParser_m patch-Framework_Pantomime_NSString+Extensions_m patch-Framework_Pantomime_io_c Log message: Update to 1.2.2, lots of bugs fixed, switch MASTER_SITE to new location on gnustep-nonfsf project. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/04 07:25:29 Modified files: x11/gnustep/gnumail: Makefile distinfo x11/gnustep/gnumail/pkg: PLIST Removed files: x11/gnustep/gnumail/patches: patch-Bundles_Filtering_FilterEditorWindow_m patch-Bundles_PGP_PGPController_h patch-Bundles_PGP_PGPController_m patch-Bundles_PGP_PGPViewController_m patch-Bundles_Viewing_ViewingView_m patch-Framework_GNUMail_FindWindow_m patch-Framework_GNUMail_GNUMail_m patch-Framework_GNUMail_MailWindowController_m patch-Framework_GNUMail_NSBundle+Extensions_m patch-GNUmakefile patch-gnumail-1_2_0~pre3+snap20071004_debian_GNUMail_xpm Log message: update to 1.2.2, many bugs fixes and stability improvements, but still flaky, but got a lot better. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 07:36:36 Modified files: audio/mscore : Makefile audio/mscore/patches: patch-mscore_CMakeLists_txt Added files: audio/mscore/patches: patch-mscore_scriptgen_qtbindings_core_CMakeLists_txt patch-mscore_scriptgen_qtbindings_gui_CMakeLists_txt patch-mscore_scriptgen_qtbindings_network_CMakeLists_txt patch-mscore_scriptgen_qtbindings_uitools_CMakeLists_txt patch-mscore_scriptgen_qtbindings_xml_CMakeLists_txt Log message: Remove '-O2'/'-O3' optimizations CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 07:52:02 ports/audio/libsoxr/patches Update of /cvs/ports/audio/libsoxr/patches In directory cvs.openbsd.org:/tmp/cvs-serv24985/patches Log Message: Directory /cvs/ports/audio/libsoxr/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 07:55:03 Modified files: audio/libsoxr : Makefile Added files: audio/libsoxr/patches: patch-CMakeLists_txt Log message: Do not pass '-s' to ${CMAKE_SHARED_LINKER_FLAGS} CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 07:58:39 Modified files: cad/kicad : Makefile cad/kicad/patches: patch-CMakeLists_txt Log message: Zap '-O2' optimization CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 08:04:14 Modified files: net/ettercap : Makefile Added files: net/ettercap/patches: patch-CMakeLists_txt Log message: Do not force optimizations CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 08:08:18 Modified files: devel/yaml-cpp : Makefile devel/yaml-cpp/patches: patch-CMakeLists_txt Log message: Remove "-Os" CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/11/04 08:11:05 Modified files: misc/memcached : Makefile distinfo misc/memcached/patches: patch-configure patch-items_c misc/memcached/pkg: PLIST Added files: misc/memcached/patches: patch-sasl_defs_c misc/memcached/pkg: README Removed files: misc/memcached/pkg: MESSAGE Log message: Update to 1.4.21 enable sasl2 authentication move MESSAGE to README file prodded by Frantisek Holop and gonzalo@ ok gonzalo@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 08:19:30 ports/games/flare/patches Update of /cvs/ports/games/flare/patches In directory cvs.openbsd.org:/tmp/cvs-serv27492/patches Log Message: Directory /cvs/ports/games/flare/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 08:22:30 Modified files: games/flare : Makefile Added files: games/flare/patches: patch-flare-engine_0_19_CMakeLists_txt Log message: Remove optimizations CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/04 08:24:40 Modified files: sys/net : pipex.c route.c sys/netinet : ip_input.c tcp_input.c tcp_subr.c Log message: Remove "pl" suffix on pool names. ok dlg@, uebayasi@, mikeb@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 08:41:40 Modified files: games/minetest : Makefile games/minetest/patches: patch-src_CMakeLists_txt Added files: games/minetest/patches: patch-src_lua_CMakeLists_txt Log message: No default optimizations CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 09:01:58 Modified files: devel/glib : Makefile x11/gtk+ : Makefile Log message: PORTROACH: use the right regexp CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 09:06:31 Modified files: misc/openbabel : Makefile Added files: misc/openbabel/patches: patch-CMakeLists_txt Log message: Remove default optimizations CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/04 09:16:03 Modified files: usr.sbin/ypserv/yppush: yppush.c Log message: use after free in poll loop from Dimitris Papastamos CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/04 09:18:54 Modified files: usr.bin/file : readelf.c Log message: bounds check, apply from upstream devel/libmagic from Matthias Pitzl @ genua CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 09:27:23 Removed files: misc/openbabel/patches: patch-CMakeLists_txt Log message: Remove wrong patch; spotted by aja@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/04 09:46:03 Modified files: sysutils/bacula: Makefile sysutils/bacula/pkg: README-server Log message: Simplify. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/04 09:57:14 Modified files: games/minetest : Makefile distinfo games/minetest/patches: patch-src_CMakeLists_txt games/minetest/pkg: PLIST Log message: Update to minetest 0.4.10. See http://dev.minetest.net/Changelog#0.4.9_.E2.86.92_0.4.10 for changes. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/04 10:17:05 Modified files: lib/libc/rpc : svc_run.c Log message: Fix memory leak on reallocarray() failure introduced by conversion from calloc(). CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/04 10:50:23 Modified files: games/bcd : bcd.c Log message: allow printing longer lines than fit on a card by spilling onto more cards. don't negatively index into the table for signed chars. ok pjanzen CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/04 10:52:12 Modified files: games/bcd : bcd.c Log message: fix another signed char bug. while here, toupper() is now safe to call on any char value. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/04 10:58:26 Modified files: games/bcd : bcd.c Log message: make the long line code work with argv too CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/04 11:15:22 Modified files: usr.bin/openssl: s_time.c Log message: simple select() to poll() conversion; reviewed by millert and doug CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/11/04 11:29:32 Modified files: sys/kern : kern_sensors.c Log message: panic when a sensordev gets installed twice, instead of blowing up amazingly later on ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 12:00:13 Modified files: sysutils/gkrellm/plugins: Makefile Removed files: sysutils/gkrellm/plugins/mss: Makefile sysutils/gkrellm/plugins/mss/patches: patch-Makefile patch-po_Makefile patch-src_Makefile sysutils/gkrellm/plugins/mss/pkg: DESCR PLIST Log message: Remove gkrellmss, it is only useful with esound that will be removed ok aja@, ratchov@, brad@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 12:05:26 Modified files: x11 : Makefile Removed files: x11/extace : Makefile distinfo x11/extace/patches: patch-configure patch-src_color_win_c patch-src_input_c x11/extace/pkg : DESCR PLIST Log message: Remove extace, it only works with esound ok aja@, ratchov@, brad@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 12:10:41 Modified files: devel/yaml-cpp/patches: patch-CMakeLists_txt Log message: Revert previous: it's useless. Sorry! CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 12:12:01 Modified files: audio : Makefile Removed files: audio/esound : Makefile distinfo audio/esound/files: audio_sndio.c audio/esound/patches: patch-audio_c patch-clients_c patch-configure_ac patch-esd_c patch-test-script patch-util_c audio/esound/pkg: DESCR PFRAG.shared PLIST Log message: Remove EsounD / ESD, old and deprecated sound server ok aja@, ratchov@, brad@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/11/04 12:18:33 Modified files: devel/quirks/files: Quirks.pm Log message: Tabs -> spaces. Prodded by armani@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/11/04 12:21:45 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Add esound, extace and gkrellmss CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/04 12:45:41 Modified files: security/polarssl: Makefile distinfo Added files: security/polarssl/patches: patch-CMakeLists_txt Log message: update to polarssl 1.3.9, security fixes (but note that nothing in the ports tree currently uses this library) * Lowest common hash was selected from signature_algorithms extension in TLS 1.2 (found by Darren Bane) (introduced in 1.3.8). * Remotely-triggerable memory leak when parsing some X.509 certificates (server is not affected if it doesn't ask for a client certificate) (found using Codenomicon Defensics). * Remotely-triggerable memory leak when parsing crafted ClientHello (not affected if ECC support was compiled out) (found using Codenomicon Defensics). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/04 12:49:12 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_openbsd_rb Log message: refactor the code that builds up a package name to install into it's own method CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/04 13:06:29 Modified files: lib/libc/stdio : fgets.3 Log message: explicitly clarify that reading also stops after size-1 bytes CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/04 14:16:45 Modified files: misc : Makefile misc/memcached : Makefile misc/memcached/pkg: DESCR Log message: Move memcached's sasl support (recently enabled in the port) to a flavour rather than enabling it unconditionally. For some situations, packet filtering is good enough, and increasing the codebase by 5x to add user authentication isn't so desirable ;) ok giovanni@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/04 14:46:55 Modified files: www/apache-httpd: Makefile Log message: sync WANTLIB to fix the -ldap flavour, as found by Joe Price (missed during the heimdal removal because this isn't linked to the build to avoid conflicting dependencies on apr-util and apr-util--ldap by different ports in the tree). CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/04 15:01:53 Modified files: cad/fritzing : Makefile distinfo cad/fritzing/pkg: PLIST Log message: Update to the latest version. Changlog here: http://fritzing.org/download/history-changes/ OK sthen@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/04 16:27:02 Modified files: share/man/man9 : Makefile Added files: share/man/man9 : SipHash24.9 Log message: document the SipHash24 api. some more could be done for history and where its appropriate to use it, but that can happen later. discussed with djm@ tweaks from jmc@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/04 17:08:40 Modified files: lib/libc/sys : poll.2 Log message: Convert EXAMPLES to IDIOMS and make it a simple select -> poll conversion along with commentary. A more comprehensive sample conversion is needed too. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/04 17:28:15 Modified files: sys/kern : uipc_mbuf.c Log message: change the mbuf pool wait channel name from mbpl to mbufpl. "mb" isnt descriptive enough for me. ok deraadt@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/04 17:41:59 Modified files: faq : faq6.html Log message: excess word and add man page links -- from Ross Richardson (openbsd at rlr dot id dot au), thanks! CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/04 17:43:33 Modified files: share/man/man9 : SipHash24.9 Log message: i forgot the :wq bit after applying jmcs tweaks. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/04 17:51:10 Modified files: faq : current.html Log message: group _lkm should be removed, too. Based on diff from Max dot Fillinger at cwi dot nl, thanks! CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/11/04 18:02:10 Modified files: sys/dev/ic : ami.c bwivar.h Log message: Functions that say they return void should not try to return something. ok deraadt@ "Even though I admire the chutzpah of return(void), I agree". ok krw@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/04 22:40:02 Modified files: sys/arch/amd64/amd64: locore.S sys/arch/amd64/conf: Makefile.amd64 Log message: Map .rodata RO after boot on amd64. Makefile.amd64 changes from deraadt. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/04 22:48:45 Modified files: sys/kern : subr_hibernate.c Log message: No reason to have things like the hibernate allocation area and chunk ordering regions mapped executable, so remove those permissions. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/04 23:03:33 Modified files: audio/mscore : Makefile audio/mscore/patches: patch-mscore_scriptgen_qtbindings_core_CMakeLists_txt patch-mscore_scriptgen_qtbindings_gui_CMakeLists_txt patch-mscore_scriptgen_qtbindings_network_CMakeLists_txt patch-mscore_scriptgen_qtbindings_uitools_CMakeLists_txt patch-mscore_scriptgen_qtbindings_xml_CMakeLists_txt Log message: Respect our CFLAGS prodded by ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/05 00:01:49 Modified files: share/man/man9 : SipHash24.9 Log message: some minor tweaks; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/05 00:04:49 Modified files: lib/libc/sys : poll.2 Log message: zap double word; CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/05 00:09:04 Modified files: sys/arch/vax/if: if_ze.c sys/arch/vax/vsa: if_ze_vsbus.c Log message: remove uneeded bpf includes ok miod@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/05 00:31:09 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/05 01:04:29 Modified files: graphics/evince: Makefile graphics/evince/pkg: PFRAG.no-light PLIST Log message: Drop graphics/evince from @pkgpath to fix updating. spotted by nigel@ and fix from sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/05 01:24:57 Modified files: net/openvmps : Makefile distinfo Log message: Update to openvmps-1.4.06. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/05 01:46:40 Modified files: sysutils/ruby-puppet/3: Makefile distinfo Log message: update to puppet-3.7.3 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/05 02:13:15 Modified files: mail/geary : Makefile distinfo mail/geary/pkg : PLIST Added files: mail/geary/patches: patch-desktop_geary-attach Log message: Update to geary 0.8.2 Still gobbles cpu like crazy idling, but apparently its the same on linux... CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 02:26:50 Modified files: graphics/darktable: Makefile Removed files: graphics/darktable/patches: patch-src_CMakeLists_txt Log message: Drop gratuitous optimizations CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 02:40:05 Modified files: security/polarssl: Makefile security/polarssl/patches: patch-CMakeLists_txt Log message: Respect our CFLAGS and remove default optimizations CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/05 03:30:25 Modified files: x11/xfce4/xfce4-weather: Makefile distinfo x11/xfce4/xfce4-weather/pkg: PLIST Log message: Update to xfce4-weather 0.8.4. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/05 03:30:53 Modified files: x11/xfce4/xfce4-netload: Makefile distinfo x11/xfce4/xfce4-netload/pkg: PLIST Log message: Update to xfce4-netload 1.2.2. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/11/05 04:34:37 Modified files: devel/ocaml-graph: Makefile Log message: Add missing lablgtk2 WANTLIB and RUN_DEPENDS. noticed by sthen@. Thanks! CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 04:39:04 Modified files: net/telepathy/telepathy-qt: Makefile Added files: net/telepathy/telepathy-qt/patches: patch-cmake_modules_TelepathyDefaults_cmake Log message: Zap optimizations CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/05 04:44:00 Modified files: graphics/DevIL : Makefile editors/abiword: Makefile games/abuse : Makefile net/adsuck : Makefile x11/aewm : Makefile audio/amarok : Makefile www/ap2-mod_perl: Makefile misc/appdata-tools: Makefile productivity/aqbanking: Makefile audio/ardour : Makefile audio/ario : Makefile graphics/asymptote: Makefile audio/aubio : Makefile sysutils/augeas: Makefile devel/autogen : Makefile devel/automoc : Makefile multimedia/avidemux: Makefile editors/beaver : Makefile games/belooted : Makefile biology/py-biopython: Makefile www/bluefish : Makefile x11/bluetile : Makefile www/bozohttpd : Makefile net/bro : Makefile games/bzflag : Makefile devel/bzr : Makefile Log message: sync WANTLIB CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 05:05:01 Modified files: x11/kde4/libs : Makefile x11/kde4/libs/patches: patch-cmake_modules_FindKDE4Internal_cmake Log message: you know, no optimizations by default... CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/05 05:09:07 Modified files: lang/python : Makefile.inc python.port.mk Log message: remove python 3.3 leftovers; ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/05 05:16:21 Modified files: www/c-icap/modules: Makefile Log message: sync WANTLIB, ssl/crypto and xml2/lzma come from clamav CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/05 05:38:10 Modified files: faq : faq1.html Log message: link to 'less' project page, couple typos. Based on diff from Theo Buehler (theo at math dot ethz dot ch), thanks CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 05:49:22 Modified files: multimedia/phonon: Makefile multimedia/phonon/patches: patch-CMakeLists_txt patch-cmake_FindPhononInternal_cmake Log message: Like kdelibs, drop optimizations CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 06:47:49 Modified files: x11/gnustep/libobjc2: Makefile x11/gnustep/libobjc2/patches: patch-CMakeLists_txt Log message: Remove '-O3' from CMAKE_C_FLAGS_RELEASE CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 06:54:13 ports/x11/kde4/kanagram/patches Update of /cvs/ports/x11/kde4/kanagram/patches In directory cvs.openbsd.org:/tmp/cvs-serv4424/patches Log Message: Directory /cvs/ports/x11/kde4/kanagram/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 07:01:14 Modified files: x11/kde4/kanagram: Makefile Added files: x11/kde4/kanagram/patches: patch-CMakeLists_txt Log message: No optimizations CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/05 07:03:02 Modified files: sys/netinet : ip_input.c ip_output.c ip_var.h Log message: Kill in_iawithaddr() and use ifa_ifwithaddr() directly. Note that ifa_ifwithaddr() might return a broadcast address, so if you don't want one make sure to filter them out. ok mikeb@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 07:15:31 ports/productivity/attica/patches Update of /cvs/ports/productivity/attica/patches In directory cvs.openbsd.org:/tmp/cvs-serv1192/patches Log Message: Directory /cvs/ports/productivity/attica/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 07:21:42 Modified files: productivity/attica: Makefile Added files: productivity/attica/patches: patch-CMakeLists_txt Log message: No optimizations. This should be the last one \o/ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/05 07:40:51 Modified files: sys/netinet : in.c Log message: Did you ever wonder why loopback's ifas have a destination address? It is of course not to make your life more complicated when you are dealing with ifa_ifwithaddr()! It was to reuse the point-to-point code to add a route to 127.0.0.1. But now we have local routes and we don't need this hack anymore :) ok mikeb@ as part of a larger diff. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/11/05 07:59:12 Modified files: devel/ocaml-graph: Makefile Log message: run depending should be enough. math/coq and devel/frama-c already do it this way. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/05 08:12:23 Modified files: lib/libc/net : getrrsetbyname.3 share/man/man5 : resolv.conf.5 Log message: edns0 is not currently supported: confirmed by sthen and eric diff From: Mike Burns (though my fix differs a bit) CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2014/11/05 08:30:17 Modified files: sys/dev/pci : if_em_hw.c if_em_hw.h Log message: Implement yet another workaround for the k1 em(4)'s. This time for the i218 which is used in many modern laptops like the X240. This seems to stop the watchdog timeouts triggered by heavy traffic on such systems. Tested by myself, phessler, blambert and Donovan Watteau OK deraadt, brad CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/05 08:42:09 Modified files: net/smokeping : Makefile distinfo net/smokeping/patches: patch-bin_smokeping net/smokeping/pkg: PLIST README smokeping.rc Added files: net/smokeping/pkg: smokeping_fcgi.rc Removed files: net/smokeping/patches: patch-lib_Smokeping_pm Log message: update to smokeping 2.6.11 - add a new rc script to run as FastCGI CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/05 08:52:32 Added files: net/telepathy/telepathy-qt/patches: patch-cmake_modules_FindQt_cmake Log message: Do not pick up qmake from qt3-mt if it's installed. Fix the error: CMake Error at /usr/local/share/cmake/Modules/FindQt4.cmake:1323 (message): Found unsuitable Qt version "QSettings: error creating /.qt **Unknown**" from /usr/local/bin/qmake, this code requires Qt 4.x Spotted by landry@ during a bulk build CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/05 09:05:21 Modified files: net/smokeping : Makefile net/smokeping/patches: patch-bin_smokeping patch-etc_config_dist_in net/smokeping/pkg: PLIST Log message: tweak smokeping sample config use @sample to pre-create img cache directory with good ownership for fastcgi CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/05 09:15:06 Modified files: multimedia/mediainfo: Makefile distinfo multimedia/mediainfo/patches: patch-MediaInfoLib_Project_GNU_Library_configure patch-MediaInfo_Project_GNU_CLI_configure patch-ZenLib_Project_GNU_Library_configure Removed files: multimedia/mediainfo/patches: patch-MediaInfoLib_Source_MediaInfo_MediaInfo_Internal_cpp Log message: maintenance update to 0.7.70 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/05 10:07:59 Modified files: etc : rc Log message: When clearing /tmp, use "-maxdepth -1" instead of "-type d -prune". This is easier to understand and fixes a bug where the "-type d -prune" was misplaced as noticed by pirofti@. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/05 10:43:04 Modified files: sys/kern : kern_malloc.c Log message: also print type when free size is wrong CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/05 10:44:54 Modified files: sys/kern : kern_malloc.c Log message: use memname to print string of type. stolen from deraadt CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/05 11:08:21 Modified files: sys/kern : kern_malloc.c Log message: don't use loop variable (i) for not loop things. use a new var. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/05 12:07:02 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/11/05 12:38:09 Modified files: usr.sbin/smtpd : smtp.c Log message: stop prepending the user id in local enqueuing Received line CVSROOT: /cvs Module name: src Changes by: tedu@192.75.191.5 2014/11/05 13:05:06 Modified files: usr.sbin/user : Tag: OPENBSD_5_6 user.c Log message: backport 1.100: support for $2b$ hashes. ok deraadt CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/05 13:23:38 Modified files: games/tetris : input.c Log message: don't deref timeout if null. from theo buehler. CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/11/05 13:38:59 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm audio : Makefile Removed files: audio/mixer.app: Makefile distinfo audio/mixer.app/files: Mixer.1 audio/mixer.app/patches: patch-Makefile audio/mixer.app/pkg: DESCR PLIST audio/wmix : Makefile distinfo audio/wmix/patches: patch-Makefile patch-mixer-oss_c patch-wmix_c audio/wmix/pkg : DESCR PLIST audio/wmmixer : Makefile distinfo audio/wmmixer/patches: patch-Imakefile patch-mixctl_h patch-wmmixer_cc audio/wmmixer/pkg: DESCR PLIST audio/xmix : Makefile distinfo audio/xmix/patches: patch-Imakefile patch-xmix_c patch-xmix_man audio/xmix/pkg : DESCR PLIST audio/xmmix : Makefile distinfo audio/xmmix/patches: patch-Imakefile patch-XMmix_ad patch-appenv_h patch-main_c patch-mixer_c patch-mixer_h patch-resource_h patch-widget_c patch-widget_h audio/xmmix/pkg: DESCR PLIST Log message: Remove ancient/broken mixers. suggested by and ok naddy, amani, sthen, dcoppa CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/11/05 14:06:51 Modified files: lib/libc/rpc : svc_run.c Log message: missing pfd = newp, diagnosed by deraadt@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/05 15:11:40 Modified files: net/wget : Makefile distinfo net/wget/patches: patch-doc_wget_texi patch-src_openssl_c Added files: net/wget/patches: patch-tests_Test-stdouterr_px Removed files: net/wget/patches: patch-src_Makefile_in patch-src_init_c Log message: update to 1.16 and add dependencies to run all regression tests hints from ajacoutot@; ok giovanni@, sthen@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/05 15:27:40 Modified files: sys/kern : kern_malloc.c Log message: need to move lock up to prevent more than one malloc. ok guenther CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/05 15:36:47 Log message: Import xlennart 1.0 Ever get the feeling that nothing is going right? You're a sysadmin, and someone's trying to destroy your computers. The little people running around the screen are trying to infect your computers with SystenD [TM], a virus cleverly designed to resemble a popular init system. Your objective is to click the mouse on them, ending the potential threat. If one of the people reaches a computer, it will attempt to replace your operating system with the virus it carries. It will then attempt to run off the screen with your vital software. The game ends when only 1 (or 0) of your computers are being productive. Additionally, some computers are connected with network cables. When one computer on a network becomes infected, a spark will be sent down the cable, and will infect the computer on the other end when it reaches there. From Maintainer Dmitrij D. Czarkoff czarkoff/gmail ok sthen@ Status: Vendor Tag: ddczarkoff Release Tags: landry_20141105 N ports/games/xlennart/Makefile N ports/games/xlennart/distinfo N ports/games/xlennart/patches/patch-Makefile_in N ports/games/xlennart/pkg/PLIST N ports/games/xlennart/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/05 15:37:35 Modified files: games : Makefile Log message: +xlennart CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/05 15:38:15 Modified files: games/xlennart/pkg: PLIST Log message: @sample the scores file with the correct name. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/05 16:15:11 Modified files: usr.bin/tmux : options-table.c status.c tmux.1 Log message: Do not put a space between status-left/status-right and the window list, instead move the space into the defaults for the options (so status-left now defaults to "[#S] ". From Balazs Kezes. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/05 16:25:02 Modified files: usr.bin/tmux : cmd-paste-buffer.c input-keys.c paste.c Log message: Tidy up mode-mouse check. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/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. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/11/05 19:55:53 Log message: Import Jimarc4random 0.6. Jim interface to arc4random(3). ok sthen@ Status: Vendor Tag: stu Release Tags: stu_20141105 N ports/devel/jimarc4random/Makefile N ports/devel/jimarc4random/distinfo N ports/devel/jimarc4random/pkg/DESCR N ports/devel/jimarc4random/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/11/05 19:57:12 Log message: Import Tclarc4random 0.3. Tcl interface to arc4random(3). ok sthen@ Status: Vendor Tag: stu Release Tags: stu_20141105 N ports/devel/tclarc4random/Makefile N ports/devel/tclarc4random/distinfo N ports/devel/tclarc4random/pkg/DESCR N ports/devel/tclarc4random/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/11/05 19:58:04 Modified files: devel : Makefile Log message: +jimarc4random +tclarc4random CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/05 20:20:36 Modified files: sys/kern : kern_malloc.c Log message: let ramdisks compile CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/11/05 22:29:35 Modified files: sys/net : if_pfsync.c Log message: Remove unneeded netinet6/ip6_divert.h include. ok bluhm@ dlg@ florian@ mpi@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/05 22:48:42 Modified files: sys/dev/pci : agp_i810.c vga_pci_common.c sys/dev/pci/drm/i915: i915_drv.h Log message: Add the required includes for the conditional parts of struct vga_pci_softc in vga_pcivar.h Original diff from guenther@ changed to incorporate feedback from kettenis@ and myself. CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/11/05 22:49:00 Modified files: sys/dev/pci : itherm.c Log message: Cleanup whitespace and add 5 series comments. ok mlarkin@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/06 00:41:32 Modified files: sys/netinet : tcp_subr.c Log message: mix the rtable into the hash for tcp sequence number generation. ok tedu@ claudio@ CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/11/06 01:55:06 Modified files: usr.sbin/smtpd : enqueue.c Log message: since domain appending is handled at the daemon level, don't try to do it in the enqueuer itself, it leads to broken headers CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 01:58:02 Modified files: graphics/pngcrush: Makefile distinfo Log message: Update pngcrush to 1.7.80. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/06 02:06:55 Modified files: net/uhttpmock : Makefile distinfo Log message: update to uhttpmock-0.3.3 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 02:16:32 Modified files: textproc/uncrustify: Makefile distinfo Log message: Update uncrustify to 0.60. ok rpointel@ (maintainer) CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/06 02:17:26 Modified files: usr.bin/tmux : mode-key.c screen.c tmux.1 tmux.h window-copy.c Log message: Add V for select line with vi(1) keys. From Juho Pohjala. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/06 02:21:28 Modified files: databases/redis: Makefile databases/redis/patches: patch-redis_conf Added files: databases/redis/patches: patch-src_config_c patch-src_redis_c Log message: Lower default 'maxclients' value so redis does not play with limits Use LOG_DAEMON as the logging facility Do not display the ascii art when logging to syslog first two suggested by landry@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 02:26:08 Modified files: devel/py-elftools: Makefile distinfo devel/py-elftools/pkg: PLIST Log message: Update py-elftools to 0.22. ok edd@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 02:37:39 Modified files: net/smokeping : Makefile Log message: Digest::HMAC is a bdep as well as rdep CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 02:46:28 Modified files: net/smokeping : Makefile Log message: p5-libwww is also a bdep, however p5-CGI-Session is no longer a dep at all CVSROOT: /cvs Module name: ports Changes by: nigel@cvs.openbsd.org 2014/11/06 02:57:00 Modified files: audio/xmms2 : Makefile Log message: Disable cython if present, use prebuilt files. Ok sthen@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 03:23:38 Modified files: devel/p5-strictures: Makefile distinfo Log message: Maintainer update to p5-strictures-1.005005, from Sergey Bronnikov. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 03:30:51 Modified files: devel/p5-Import-Into: Makefile distinfo Log message: Maintainer update to p5-Import-Into-1.002001, from Sergey Bronnikov. CVSROOT: /cvs Module name: src Changes by: bentley@cvs.openbsd.org 2014/11/06 03:48:52 Modified files: usr.bin/vi/build: Makefile config.h usr.bin/vi/cl : cl_bsd.c cl_funcs.c cl_term.c usr.bin/vi/include: cl_extern.h Log message: Remove old curses support in vi. ok nicm@ millert@ plus a comment tweak from nicm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/06 03:53:05 Modified files: x11/gnome/tracker: Makefile distinfo Log message: Update to (meta-)tracker-1.2.4. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/06 03:56:44 Modified files: usr.bin/tmux : window-copy.c Log message: Wrap when copy mode is used for output, from Balazs Kezes. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 04:01:09 Modified files: devel/p5-ExtUtils-Config: Makefile distinfo Log message: Maintainer update to p5-ExtUtils-Config-0.008, from Sergey Bronnikov. CVSROOT: /cvs Module name: src Changes by: bentley@cvs.openbsd.org 2014/11/06 04:35:02 Modified files: usr.bin/vi : LAYOUT README usr.bin/vi/common: common.h Removed files: usr.bin/vi/include: bitstring.h ip_extern.h tcl_extern.h tk_extern.h Log message: Clean up unused header files and docs referring to them. From Martin Natano. ok nicm@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/06 05:05:32 Modified files: sys/netinet : tcp_subr.c Log message: Let's just call a rdomain a rdomain. ok dlg@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/11/06 05:50:55 Modified files: usr.bin/netstat: mbuf.c usr.bin/systat : mbufs.c Log message: i renamed the mbuf pool. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/06 05:52:13 Modified files: databases/redis: Makefile databases/redis/patches: patch-redis_conf patch-src_redis_h databases/redis/pkg: redis.rc Log message: Fix location/perms of the redis.sock file, for those who want to use redis on a unix socket. Amend redis.rc accordingly. Also change the location of the pid file for consistency. Discussed with, and ok landry@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/06 06:11:28 Modified files: devel/libinotify: Makefile distinfo Log message: Update to the latest git checkout. This fixes a crash in kdelibs I've reported upstream some time ago. ok kirby@ (maintainer) CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/06 06:46:09 Modified files: usr.bin/openssl: s_socket.c Log message: ssl_sock_init() does nothing, so remove it... CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/06 07:23:32 Log message: mu is a Maildir indexing utility that comes with a handy UI for emacs called mu4e. OK jca@ with tweaks from landry@ Status: Vendor Tag: abieber Release Tags: abieber_20141106 N ports/mail/mu/Makefile N ports/mail/mu/distinfo N ports/mail/mu/pkg/DESCR N ports/mail/mu/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 07:26:14 Modified files: devel/p5-Class-Method-Modifiers: Makefile distinfo Log message: Maintainer update to p5-Class-Method-Modifiers-2.11, from Sergey Bronnikov. CVSROOT: /cvs Module name: src Changes by: henning@cvs.openbsd.org 2014/11/06 07:28:47 Modified files: sys/net : if_ethersubr.c Log message: fix mac address selection with unnumbered carpdevs IP-traffic over a carp interface with the underlaying carpdev being unnumbered (in the numbered case usually the ifp is the carpdev to begin with) went out with the carpdev's mac address istead of the carp interface's one due to a carp hack in ether_output exchanging the carp ifp for its carpdev ones one. move the source mac selection to before that. fixes unnumbered carp use in environments with strict mac address regimes like some exchange points. issue found by your's truly the hard way. ok mpi dlg CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/06 07:29:04 Modified files: mail : Makefile Log message: +mu CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/06 07:50:12 Modified files: usr.bin/openssl: s_client.c s_server.c Log message: TLS is pretty boring without TLS extensions... unifdef OPENSSL_NO_TLSEXT, which was already done for libssl some time back. CVSROOT: /cvs Module name: www Changes by: kurt@cvs.openbsd.org 2014/11/06 08:09:18 Modified files: . : 56.html faq : faq8.html obsd-faq.txt Log message: Bring info about jdk up to date for 5.6. okay sthen@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 09:29:38 Modified files: devel/p5-Moo : Makefile distinfo devel/p5-Moo/pkg: PLIST Log message: Maintainer update to p5-Moo-1.006001, from Sergey Bronnikov. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 09:43:01 Modified files: devel/p5-indirect: Makefile distinfo Log message: Maintainer update to p5-indirect-0.33, from Sergey Bronnikov. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/06 09:43:42 Modified files: sys/kern : exec_elf.c Log message: resort to printf debugging hints until we can figure this out. ok deraadt CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 09:47:35 Modified files: devel/p5-Role-Tiny: Makefile distinfo Log message: Maintainer update to p5-Role-Tiny-1.003004, from Sergey Bronnikov. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 10:11:01 Modified files: mail/zarafa/zarafa/patches: patch-configure Log message: don't use -pedantic during build, php 5.5 has a trailing , in an enum which doesn't work with our gcc version CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 10:11:43 Modified files: lang/php : php.port.mk Log message: switch PHP default to 5.5, ok robert@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 10:13:41 Modified files: archivers/pecl-lzf: Makefile archivers/pecl-rar: Makefile databases/pear-MDB2-mysql: Makefile databases/pear-MDB2-mysqli: Makefile databases/pear-MDB2-pgsql: Makefile databases/pg_stats_reporter: Makefile databases/pgfouine: Makefile devel/boris : Makefile geo/mapserver : Makefile graphics/pecl-imagick: Makefile mail/pecl-mailparse: Makefile mail/rcube-contextmenu: Makefile mail/rcube-sieverules: Makefile mail/rcube-yubikey-plugin: Makefile mail/roundcubemail: Makefile mail/z-push : Makefile mail/zarafa/zarafa: Makefile misc/gpsd : Makefile net/icinga/web : Makefile net/nedi : Makefile net/nfsen : Makefile net/pear-Net-DNS: Makefile net/pear-Net-LDAP: Makefile net/pear-Net-LDAP2: Makefile net/php-weathermap: Makefile net/zabbix : Makefile productivity/baikal: Makefile productivity/davical: Makefile textproc/redland-bindings: Makefile textproc/tcpdf : Makefile www/awl : Makefile www/cherokee : Makefile www/chive : Makefile www/dokuwiki : Makefile www/drupal6/core: Makefile www/drupal7/core: Makefile www/drush : Makefile www/mollify : Makefile www/owncloud : Makefile www/pear : Makefile www/pecl-chroot: Makefile www/pecl-geoip : Makefile www/pecl-http : Makefile www/pecl-memcache: Makefile www/pecl-proctitle: Makefile www/pecl-propro: Makefile www/pecl-raphf : Makefile www/pecl-ssh2 : Makefile www/pecl-swish : Makefile www/pecl-uploadprogress: Makefile www/php-openid : Makefile www/php-predis : Makefile www/phpldapadmin: Makefile www/phpmyadmin : Makefile www/phppgadmin : Makefile www/phpvirtualbox: Makefile www/piwik : Makefile www/racktables : Makefile www/sabredav : Makefile www/selfoss : Makefile www/statusnet : Makefile www/syweb : Makefile www/tt-rss : Makefile www/wordpress : Makefile www/xcache : Makefile www/zendframework: Makefile x11/kde4/kcachegrind: Makefile Log message: bump REVISION for php version switch CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 10:15:24 Modified files: www : Makefile Log message: disable pecl-APC, it doesn't support php 5.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 10:15:53 Removed files: www/pecl-APC : Makefile distinfo www/pecl-APC/pkg: DESCR PLIST Log message: remove pecl-APC, it doesn't support php 5.5 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/06 10:23:40 Modified files: sys/kern : exec_elf.c Log message: Make better use of the value of psectionslen instead of recomputing it multiple times. Also remove an unused variable. OK deraadt@ tedu@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/06 10:29:23 Modified files: sys/kern : kern_malloc.c Log message: need to calculate correct size before doing the free checks. the biggest malloc bucket isn't precise, it can have anything in it. should fix recent panics. sorry for inconvenience. ok deraadt millert CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/06 10:31:19 Modified files: sys/kern : exec_elf.c Log message: printf debugging worked! figured out the bug (in free()) just after committing the printfs. revert. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 10:34:34 Modified files: lang/php : Makefile.inc lang/php/5.3 : Makefile lang/php/5.4 : Makefile lang/php/5.5 : Makefile Added files: lang/php/files : DESCR-pcntl Removed files: lang/php/5.3/pkg: DESCR-pcntl lang/php/5.4/pkg: DESCR-pcntl lang/php/5.5/pkg: DESCR-pcntl Log message: Since we got rid of 5.2, all versions of php in tree now support fpm and pcntl, so move the Makefile parts up to Makefile.inc. Looks ok to robert@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/06 11:32:27 Added files: www/chromium/patches: patch-mojo_mojo_gyp Log message: Fix dependency error ok robert@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/06 12:05:24 Modified files: net/cgo : Makefile distinfo net/cgo/pkg : PLIST Log message: Update to 20141022. Among other things, now has a run-time configuration file. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 12:10:07 Modified files: graphics/asymptote: Makefile Log message: typo in WANTLIB, thanks nigel@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/06 12:35:13 Modified files: games/bcd : bcd.6 bcd.c Log message: basic decode functionality CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/06 12:42:06 Modified files: games/bcd : bcd.6 bcd.c Log message: -l option to create "modern" 80 column cards CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/06 12:54:10 Modified files: games/bcd : bcd.c Log message: fixup argv handling after getopt conversion. oops. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/06 13:05:22 Modified files: faq : current.html Log message: change "sendmail removed" to "sendmail moved to packages" split the "files to remove" into "files to always remove" and "files to remove if you stop using sendmail". make a little suggestion that people might want to check their queue before blindly pasting in a "rm -r /var/spool/mqueue" line. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 13:22:12 Modified files: lang/php : Makefile.inc lang/php/5.5 : Makefile lang/php/5.5/pkg: PLIST-main Log message: As reported by Mike , php 5.5 opcache isn't included in the packages - it was already built, we just didn't install it. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/06 13:28:16 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_openbsd_rb Log message: sync with what's been merged upstream CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/06 14:14:51 Modified files: faq : current.html Log message: notes on php bump CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/06 14:25:34 Modified files: faq : current.html Log message: mention replacements for pecl-APC CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 14:27:36 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: add pecl-APC to obsolete table CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/06 15:07:42 Modified files: security/lynis : Makefile distinfo Log message: Update lynis to 1.6.4. ok gonzalo@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/11/06 15:15:23 Modified files: textproc/groff : Makefile distinfo textproc/groff/patches: patch-Makefile_comm patch-Makefile_in patch-tmac_an-old_tmac patch-tmac_doc-common patch-tmac_doc_tmac patch-tmac_troffrc textproc/groff/pkg: PLIST Removed files: textproc/groff/patches: patch-font_devpdf_Makefile_sub patch-tmac_groff_mdoc_man patch-tmac_tty_tmac Log message: update to groff-1.22.3 new features: * glilypond(1) - new preprocessor for music typesetting * gperl(1) - new preprocessor for embedding Perl code in roff documents * gpinyin(1) - new preprocessor to pretty-print Pinyin syllables * groff_mom(7) now has full eqn(7), pic(7), and tbl(7) support * mdoc(7) now supports the %C macro (already available in mandoc) * various bugfixes * many of our patches have been integrated upstream * changing the bullet is no longer needed, mandoc can now handle it ok sthen@ naddy@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/06 15:27:52 Modified files: usr.bin/mandoc : chars.in mdoc_man.c Log message: Let -Tascii \(bu (bullet) output agree with groff; this is now possible because -Tps now handles backspace overstriking. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/06 17:40:27 Modified files: regress/usr.bin/mandoc: Makefile.inc Log message: at the end of make obj-clean, run make clean in the right directory CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 18:00:01 Modified files: www/squid/stable: Makefile distinfo Log message: update to squid 3.4.9 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/06 18:31:02 Modified files: graphics/libqrencode: Makefile distinfo graphics/libqrencode/pkg: PLIST Log message: update to qrencode 3.4.4 CVSROOT: /cvs Module name: ports Changes by: millert@cvs.openbsd.org 2014/11/06 19:27:09 Modified files: misc/py-imdb : Makefile distinfo misc/py-imdb/patches: patch-setup_py misc/py-imdb/pkg: PLIST Log message: Update py-imdb to version 5.0 which works with imdb.com once again. OK sthen@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/06 19:31:44 Modified files: faq : faq1.html Log message: typos, pointed out by Nick Permyakov (sticker0 at mail dot ru) CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/06 20:20:02 Modified files: sys/arch/amd64/amd64: pmap.c Log message: Map .rodata and the KVA range corresponding to the ISA hole as NX on amd64 processors that support NX. Tested on amd64 machines with and without NX capability. Additional NX ranges can be added as desired to the table defined by this diff. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: ratchov@cvs.openbsd.org 2014/11/07 01:52:26 Modified files: graphics : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm Removed files: graphics/fxtv : Makefile distinfo graphics/fxtv/patches: patch-Fxtv patch-Makefile patch-actions_c patch-annot_c patch-app_rsrc_h patch-audsav_dlg_c patch-fxtv_cnvt_sh patch-haup_remote_c patch-pixelview_remote_c patch-remote_c patch-tv_c patch-tvaudio_c patch-tvcapture_c patch-tvcapture_h patch-tvmenu_c patch-tvtypes_h patch-tvutil_c patch-videolib_Makefile patch-videolib_videolib_c graphics/fxtv/pkg: DESCR PLIST Log message: Remove port of 13 year old fxtv release. suggested by landry, ok dcoppa and benoit CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/07 02:02:29 Modified files: audio/ncmpcpp : Makefile distinfo audio/ncmpcpp/patches: patch-src_ncmpcpp_cpp Added files: audio/ncmpcpp/patches: patch-src_playlist_cpp Removed files: audio/ncmpcpp/patches: patch-src_tags_cpp patch-src_utility_string_h Log message: Bugfixing update to ncmpcpp-0.6.1 CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/11/07 02:23:20 Modified files: etc : services Log message: add svn, fix sort-order of iscsi. ok ajacoutot@ dcoppa@ phessler@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 02:36:28 Modified files: audio/py-audio : Makefile distinfo audio/py-audio/patches: patch-setup_py audio/py-audio/pkg: PLIST Log message: update to PyAudio 0.2.8 and add python3 flavour CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 02:36:54 Modified files: audio : Makefile Log message: +py-audio,python3 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/07 03:04:00 Modified files: devel/cmake : cmake.port.mk Log message: Instead of letting cmake projects decide what kind of build type they want, and thus use random build flags (and often override our default CFLAGS) for consistency enforce CMAKE_BUILD_TYPE:String=Release by default, and CMAKE_BUILD_TYPE:String=Debug if DEBUG is set. Provide a MODCMAKE_BUILD_SUFFIX variable added to SUBST_VARS, set to either -debug.cmake or -release.cmake, will be used in some PLISTs Went into an amd64 bulk build. with/ok dcoppa@ sthen@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/07 03:05:29 Modified files: x11/grantlee : Makefile x11/grantlee/pkg: PLIST net/libmygpo-qt: Makefile net/libmygpo-qt/pkg: PLIST x11/libqaccessibilityclient: Makefile x11/libqaccessibilityclient/pkg: PLIST productivity/libqzeitgeist/pkg: PLIST graphics/openjp2: Makefile graphics/openjp2/pkg: PLIST x11/polkit-qt4/pkg: PLIST devel/qjson : Makefile devel/qjson/pkg: PLIST multimedia/qt-gstreamer: Makefile multimedia/qt-gstreamer/pkg: PLIST databases/strigi: Makefile databases/strigi/pkg: PLIST converters/wv2 : Makefile converters/wv2/pkg: PLIST Log message: Use MODCMAKE_BUILD_SUFFIX where appropriate, bump REVISION when the PLIST actually changes. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/07 03:06:09 Added files: games/blobby/patches: patch-src_LagDetectionSystem_cpp Log message: Add a patch to include , fixes build with Release build type. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/07 03:07:40 Modified files: lang/io : Makefile Log message: Enforce CFLAGS=-O0, segfaults during build with -O2 when using Debug or Release build type. From dcoppa@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/07 03:10:20 Modified files: faq : upgrade56.html Log message: mention the nagios-plugins -> monitoring-plugins name change, since there have been at least 3 people asking about it ;) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/07 03:40:05 Modified files: audio/libmusicbrainz5: Makefile audio/mscore : Makefile audio/taglib : Makefile devel/bullet : Makefile devel/llvm : Makefile games/sumwars : Makefile geo/qlandkartegt: Makefile graphics/darktable: Makefile graphics/hugin : Makefile graphics/openscenegraph: Makefile graphics/rawtherapee: Makefile graphics/zint : Makefile mail/trojita : Makefile net/libproxy : Makefile net/mirall : Makefile net/ocsync : Makefile net/seafile/client: Makefile productivity/libqzeitgeist: Makefile textproc/clucene: Makefile textproc/libical: Makefile www/webkitgtk4 : Makefile x11/ogre : Makefile x11/polkit-qt4 : Makefile Log message: No need for default CMAKE_BUILD_TYPE. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/07 03:45:04 Modified files: games/megaglest/base: Makefile Log message: DEBUG is already taken care of by the cmake MODULE. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 04:13:09 Modified files: www/p5-Mojo : Makefile distinfo www/p5-Mojo/pkg: DESCR Removed files: www/p5-Mojo/patches: patch-lib_Mojo_IOLoop_Server_pm Log message: Update p5-Mojo to 5.58, one of the interim updates was an "emergency release for a serious security issue that can result in parameter injection attacks, everybody should update!". From Mark Patruck, ok nigel@ Freshen DESCR/COMMENT while there. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 04:15:24 Modified files: www/p5-Mojo : Makefile Log message: Mark Patruck takes MAINTAINER CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/07 05:28:28 Modified files: usr.bin/tmux : tmux.1 Log message: V should be vi not emacs, also sort. From Theo Buehler. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/07 05:44:28 Modified files: net/pen : Makefile Log message: Drop USE_GROFF since groff and mandoc produce identical output. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/07 05:52:21 Modified files: graphics/evince: Makefile Log message: Unbreak light FLAVOR by adding an explicit dependency on x11/gnome/libsecret. breakage reported by naddy@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/07 05:53:36 Modified files: share/man/man3 : intro.3 Log message: Add libtls to intro(3). Prompted by jmc@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/07 05:54:47 Modified files: multimedia/phonon-backend/gstreamer: Makefile Log message: restore accidentally lost REVISION CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 06:04:02 Modified files: net/nagios/nagios: Makefile Log message: missed PHP bump; found by nigel@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/07 06:13:08 Modified files: usr.bin/openssl: openssl.1 Log message: Document the -servername option for openssl(1) s_client. Based on a diff from Rusty (rustyl at outband dot net) and OpenSSL. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/07 06:33:40 Modified files: print/htmldoc : Makefile distinfo print/htmldoc/patches: patch-Makedefs_in patch-configure patch-htmldoc_file_c print/htmldoc/pkg: PLIST Added files: print/htmldoc/patches: patch-htmldoc_http_c Removed files: print/htmldoc/patches: patch-htmldoc_http_h patch-htmldoc_image_cxx Log message: Update htmldoc to 1.8.28. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/07 06:48:06 Modified files: usr.sbin/relayd: parse.y relay.c relayd.conf.5 relayd.h Log message: Remove the sslv2 option since LibreSSL has no SSLv2 support (however retain SSL_OP_NO_SSLv2 in case you happen to be running relayd on another platform with another SSL library). Also fix the SSLv3 handling so that 'no sslv3' actually works as intended. ok reyk@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/07 06:56:29 Modified files: sys/dev/usb : uhub.c usb.h usbdi_util.c usbdi_util.h Log message: Give Super-Speed hubs a chance to route USB 3.0 transfers. Without knowing their depth, hubs couldn't find the bits correspdonding to their downstream port in the route-string. Now USB 3.0 devices just work(tm) anywhere in your hub chain. This commit would not have been possible without the cheese provided by miod@ at #HAMoween. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/07 06:57:43 Modified files: lib/libtls : tls_init.3 Log message: missing outlen in tls_write decl CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/07 07:02:32 Modified files: sbin/iked : ikev2.c ikev2.h ikev2_msg.c Log message: Repair initiator with PSK auth Attempt state transition to VALID (or EAP_VALID) in the ikev2_ike_auth after we have completed authentication synchronously (PSK) or asynchronously (X.509 and RSA) eliminating the need to do so in multiple places and restoring the correct order for PSK. ok markus CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/07 07:05:58 Modified files: sbin/iked : ikev2_pld.c Log message: Run eap_parse on the actual message and only when the length is right CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/07 07:06:43 Modified files: sys/dev/usb : xhci.c Log message: Prevent a race when submitting a command by using the appropriate spl protection. Fix a panic reported by Patrick Wildt. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/07 07:08:08 Modified files: x11/worker : Makefile distinfo Log message: Update to 3.5.2 and take maintainer. ok benoit@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/07 07:12:57 Modified files: sbin/iked : ikev2.c policy.c Log message: Fixup a few problems with EAP state transition First of all we don't need to satisfy valid EAP state flags for IKEV2_STATE_EAP as it's an initial EAP exchange state. Then when waiting for the "ca" process to construct our AUTH payload we need to bail while sa_localauth is not available. With this change Win7 is able to establish the the tunnel again. ok markus CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/07 07:16:48 Modified files: usr.bin/openssl: apps.c apps.h s_client.c Log message: More OPENSSL_NO_TLSEXT clean up. CVSROOT: /cvs Module name: ports Changes by: abieber@cvs.openbsd.org 2014/11/07 07:20:11 Modified files: comms/xastir : Makefile distinfo comms/xastir/pkg: PLIST Log message: Update to the latest version. OK sthen@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/07 08:18:56 Modified files: lang/ruby/1.9 : Makefile lang/ruby/1.9/patches: patch-lib_rubygems_ext_builder_rb lang/ruby/2.0 : Makefile Added files: lang/ruby/2.0/patches: patch-lib_rubygems_ext_builder_rb Log message: Use MAKE or make from ENV to override rbconfig's make. Backported from 2.1: https://github.com/rubygems/rubygems/commit/f2bad74dda8d8e463a092905f29c943c962d5e68 ok landry@, jeremy@ (maintainer) CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/07 09:33:02 Modified files: sys/dev/usb : xhci.c Log message: Document how the Slot States transitions described in section 4.5.3 of xHCI specification r1.1 are handled in this implementation. This is a bit tricky because our bus interface is pipe-oriented. Hopefully this will help other people squash the remaining bugs in this area. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/07 09:44:18 Modified files: sys/arch/i386/conf: GENERIC sys/arch/amd64/conf: GENERIC Log message: Enable xhci(4). Most of the features are here, USB 1.x devices only work if they are connected to the root hub and isochronous transfers are not supported for the moment. Let me know if your controller/device do not work. In this case attach a dmesg of a kernel build with XHCI_DEBUG. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/11/07 10:10:36 Modified files: textproc/groff/patches: patch-Makefile_in Log message: src/devices/gropdf depends on arch/misc (I will send this upstream, too.) For those cases where the build succeeded, no bump needed because the package doesn't change; for those cases where parallel builds failed, no bump needed either. Committing quickly to fix the build. ok sthen@ CVSROOT: /cvs Module name: www Changes by: schwarze@cvs.openbsd.org 2014/11/07 10:31:37 Added files: . : man.css Log message: update the manual page style sheet to match the -current man.cgi(8) fixing a paragraph spacing issue reported by deraadt@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/11/07 11:52:50 Modified files: faq : faq8.html Log message: no lynx in base. mention ftp as an option for downloads, and move the lynx link to console browsers. CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/07 12:34:22 Modified files: sys/arch/amd64/amd64: locore.S Log message: Wrong comment - NX is handled later (for now), not in locore. No functional change. noticed by deraadt@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/07 15:17:49 Modified files: games/bcd : Makefile bcd.6 bcd.c games/morse : Makefile games/ppt : Makefile ppt.c Added files: games/morse : morse.6 games/ppt : ppt.6 Log message: Split bcd(6), morse(6), and ppt(6) into three separate manuals since most of the text is different. Improve the SYNOPSIS according to suggestions by jmc@, tweaked by me. Delete a few redundant words, applying a patch from jmc@. Intentionally not doing any other text changes in this commit; for further tweaking in the tree. jmc@, tedu@, and millert@ agree with the general direction, and deraadt@ suspects we are "all grey beard fanatics" (in all caps). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 16:48:59 Modified files: net/smokeping : Tag: OPENBSD_5_6 Makefile net/smokeping/patches: Tag: OPENBSD_5_6 patch-bin_smokeping net/smokeping/pkg: Tag: OPENBSD_5_6 smokeping.rc Log message: fix startup problem in smokeping on 5.6 reported by Lars Hecking CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 16:56:23 Modified files: net/smokeping : Makefile net/smokeping/pkg: smokeping.rc Log message: tweak pexp to match only the main smokeping process, not subprocesses or the cgi CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/07 17:02:45 Modified files: www/nginx : Makefile Added files: www/nginx/patches: patch-src_event_ngx_event_openssl_h Log message: unbreak www/nginx, it uses TLSEXT_TYPE_application_layer_protocol_negotiation to detect ALPN support which fails for us as libressl has added the macro but not the functions yet. add upstream's -W flags back in, to make the problem a compile rather than a linker error (we're overriding cflags with our usual ones in the port). CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/11/07 17:43:35 Modified files: graphics/libqrencode: Makefile Log message: Tweak libqrencode after recent commit by sthen@ ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/07 20:31:58 Modified files: sys/arch/amd64/amd64: machdep.c Log message: Kill #if 0'ed code for boot args that we don't care about on amd64. ok deraadt@ mlarkin@ kettenis@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/07 22:11:12 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/comp: mi distrib/sets/lists/man: mi Log message: libtool belongs in comp; noticed by daniel@ CVSROOT: /cvs Module name: www Changes by: ajacoutot@cvs.openbsd.org 2014/11/08 00:06:52 Modified files: . : want.html Log message: My OpenBSD dev laptop died from an accident last night; I am officially laptop-less :-/ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/08 00:45:10 Modified files: sys/dev/acpi : acpi.c acpibtn.c acpidev.h Log message: If resuming from sleep (zzz/ZZZ) and the lid is still closed, go back to sleep. This prevents accidental lid flex or slight opening in a backpack from waking the machine up and leaving it resumed (powered on). ok deraadt@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/08 01:18:37 Modified files: sys/arch/amd64/amd64: hibernate_machdep.c sys/arch/i386/i386: hibernate_machdep.c Log message: No need to keep the temporary mappings for the MMU pages for the resume time page table after we are done creating it in the resuming kernel. Note the resume time stack has to remain mapped as it is used during the initial phase of the hibernate unpack while the original page table is still being used. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/08 03:00:13 Modified files: . : .cvsignore Log message: skip lost+found, and sort alphabetically following obj->pobj change CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/11/08 04:14:23 Modified files: editors/libreoffice: Makefile distinfo editors/libreoffice/pkg: PLIST-main Removed files: editors/libreoffice/patches: patch-unotest_Library_unotest_mk Log message: use system cppunit to avoid problems during bulk builds CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/08 04:28:04 Modified files: sysutils/e2fsprogs: Makefile distinfo sysutils/e2fsprogs/patches: patch-lib_blkid_getsize_c patch-lib_ext2fs_Makefile_in sysutils/e2fsprogs/pkg: PLIST Removed files: sysutils/e2fsprogs/patches: patch-e2fsck_dirinfo_c patch-lib_blkid_save_c patch-lib_ext2fs_icount_c patch-tests_progs_random_exercise_c patch-tests_scripts_resize_test patch-tests_test_one_in Log message: update to e2fsprogs 1.42.12 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/08 05:33:40 Modified files: devel/libgit2/libgit2-glib: Makefile distinfo devel/libgit2/libgit2-glib/pkg: PLIST Log message: update to libgit2-glib-0.0.24 CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/08 05:50:38 Modified files: usr.bin/tmux : format.c Log message: Empty strings should be false too for #{?}, from Marc Finet. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/08 05:58:31 Modified files: usr.bin/tmux : grid-view.c screen-write.c Log message: Two improvements to reflow from Balazs Kezes: - Don't extend the line to full width on insert/delete character which means leaves extra spaces when reflowing. - Only mark a line wrapped when the cursor actually goes off the end, not on newlines which can be used for positioning. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/08 05:58:36 Modified files: sysutils/libvirt: Makefile distinfo sysutils/libvirt/patches: patch-src_Makefile_in sysutils/libvirt/pkg: PLIST Log message: update to libvirt-1.2.10 CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/11/08 06:36:51 Modified files: sys/kern : kern_sensors.c Log message: some systems install sensors where numbering introduces a gap which falsely triggered the added panic. revert the panic for now while a better solution is being worked on as reported by Bjorn Ketelaars on misc@ via jsing@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/11/08 06:56:21 Modified files: math/matio : Makefile Log message: hidden dependency, will pick up gfortran if it's installed. Enforce same fortran compiler in configure. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/08 07:10:26 Modified files: net/telepathy/telepathy-qt: Makefile net/telepathy/telepathy-qt/pkg: PLIST Log message: Fix telepathy-qt after last cmake.port.mk changes, forgotten in previous.. spotted by naddy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/08 07:28:02 Modified files: sysutils/augeas: Makefile distinfo sysutils/augeas/patches: patch-lenses_shellvars_aug sysutils/augeas/pkg: PLIST Removed files: sysutils/augeas/patches: patch-lenses_sshd_aug patch-lenses_xymon_alerting_aug Log message: - update to augeas-1.3.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/08 07:39:21 Modified files: archivers/lz4 : Makefile distinfo archivers/lz4/patches: patch-Makefile patch-programs_Makefile Log message: update to lz4 r124 CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/11/08 07:56:01 Modified files: www/tt-rss : Makefile distinfo www/tt-rss/pkg : PLIST Log message: Update to tt-rss 1.14 feedback and OK aja@ OK sthen@ tested by Atanas Vladimirov, thanks CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/11/08 08:21:02 Modified files: lib/libssl/src/ssl: ssl_ciph.c ssl_locl.h ssl_sess.c Log message: Clean up more SSLv2 remnants. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/08 08:47:59 Modified files: games/manaplus : Makefile distinfo games/manaplus/pkg: PLIST Log message: Update to 1.4.11.8 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/08 08:52:03 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/patches: patch-configure patch-dodo_py patch-scripts_bavala_py graphics/birdfont/pkg: PLIST Log message: Update to 1.9.3 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/08 12:03:59 Modified files: x11/xfe : Makefile Added files: x11/xfe/patches: patch-src_xfedefs_h Log message: Unbreak launching Xfe as root with sudo or su (fix gnuisms) Reported by Alessandro DE LAURENZIS, and discussed with several folks OK bcallah@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/11/08 12:29:05 Modified files: misc/mc : Makefile Log message: bump to refresh F9 menu options after previous tweak for CONFIGURE_ARGS ok robert@ (maintainer) CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/08 12:30:30 Modified files: sbin/dhclient : bpf.c Log message: Exhort user to recompile 'dhclient', not 'dhcpd', when bpf versions are mismatched. CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2014/11/08 12:59:19 Modified files: lang/jruby : Makefile distinfo Log message: Update the embedded jnr-posix library, fixes File.utime on i386. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/11/08 13:08:20 Modified files: net/munin : Makefile net/munin/files: pf_changes Log message: fix pf_changes plugin autoconfigure patch from Dimitri Sokolyuk, thanks! CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/08 13:15:58 Modified files: faq : faq14.html Log message: sheesh. improvement from tg at mrsk dot me, I thank him, and forgot to commit it! CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/08 13:23:56 Modified files: opensmtpd : goals.html Log message: bring more in line with other goals.html pages, and improved wording. From tj at mrsk dot me, thanks! CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/08 13:30:16 Modified files: faq : faq3.html Log message: typos, pointed out by Nick Permyakov (sticker0 at mail dot ru), thanks CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/11/08 13:54:29 Modified files: faq : faq4.html Log message: bunch of bad wording pointed out by Nick Permyakov (sticker0 at mail dot ru) CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/11/08 14:06:44 Modified files: share/man/man7 : ports.7 Log message: Replace mysql with mariadb. From Kaspars Bankovskis CVSROOT: /cvs Module name: src Changes by: aoyama@cvs.openbsd.org 2014/11/08 14:18:42 Modified files: sys/arch/luna88k/conf: files.luna88k Log message: Delete commented out 'romtty' device configuration. This had been used in the early years of poring OpenBSD to LUNA-88K, but no longer used. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/08 15:08:01 Modified files: sbin/dhclient : bpf.c Log message: Use open(O_CLOEXEC) rather than open() + fcntl(FD_CLOEXEC). Inspired by and ok guenther@. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/11/08 15:13:47 Modified files: usr.bin/grep : mmfile.c Log message: Check the mode flag being passed in to mmopen() instead of ignoring it. Pointed out by LLVM. mmfile.c:51:7: warning: explicitly assigning a variable of type 'char *' to itself [-Wself-assign] ok millert@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/08 15:22:46 Modified files: . : INDEX Log message: sync, 8835 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/08 16:19:34 Modified files: devel/libexude : Makefile distinfo Log message: Update libexude to 0.7.3. ok David Hill (maintainer) CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/08 16:22:17 Modified files: devel/libclog : Makefile distinfo Log message: Update libclog to 0.6.4. ok David Hill (maintainer) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/08 17:16:28 Modified files: share/man/man7 : packages.7 Log message: typo; CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/11/08 18:05:36 Modified files: devel/fasm : Makefile distinfo devel/fasm/pkg : DESCR Log message: Update to fasm 1.71.22. From MAINTAINER. Tested on i386. Changes to DESCR by me. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/08 18:12:59 Modified files: share/man/man5 : bsd.port.mk.5 Log message: * "shorthand" rather than "short-hand" and "short hand" (to be consistent within this page; that's what most manuals use) * misc/portscout was renamed to misc/portroach * and two typos all from CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/08 21:34:20 Modified files: lib/libc/gen : unvis.3 Log message: Correct constness of str*unvis()'s second (source) argument CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/08 22:12:15 Modified files: sys/arch/armv7/conf: GENERIC-IMX GENERIC-OMAP GENERIC-SUNXI Log message: remove commented entries for tedu'd bluetooth drivers CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/11/09 00:26:05 Modified files: . : plus.html Log message: plus.html for Oct 27 - Nov 2. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 00:52:10 Modified files: sysutils/cyphertite: Makefile distinfo Log message: Update cyphertite to 2.0.4 ok David Hill (maintainer) CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 01:58:23 Modified files: devel/libestr : Makefile distinfo Log message: Take maintainership, ok David Hill Update libestr to 0.1.9. CVSROOT: /cvs Module name: ports Changes by: avsm@cvs.openbsd.org 2014/11/09 02:22:11 Modified files: sysutils/opam : Makefile Log message: add missing RUN_DEPENDS to opam port needed for sensible operation Also update HOMEPAGE to https version. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 02:25:57 Modified files: devel/libee : Makefile devel/libee/pkg: PLIST Removed files: devel/libee/pkg: PFRAG.shared Log message: Take maintainership, ok David Hill remove PFRAG.shared CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 02:36:54 Modified files: devel/py-country: Makefile distinfo Log message: Update py-country to 1.8. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 03:26:55 Modified files: sysutils/conky : Makefile Log message: Remove myself as maintainer. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/09 04:32:57 ports/devel/p5-Class-Date/patches Update of /cvs/ports/devel/p5-Class-Date/patches In directory cvs.openbsd.org:/tmp/cvs-serv2473/patches Log Message: Directory /cvs/ports/devel/p5-Class-Date/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/09 04:36:47 Modified files: x11/gnustep/webserver: Makefile distinfo Log message: Bugfix update to WebServer to 1.5.3 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/09 04:41:56 Modified files: x11/gnustep/webservices: Makefile distinfo Log message: Update WebServices to 0.7.2, mostly bug fixes and some little improvements. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/09 04:46:00 Modified files: x11/gnustep/sqlclient: Makefile distinfo x11/gnustep/sqlclient/pkg: PLIST Log message: Update SQLClient to 1.8.1, besides bug fixes and smaller enhancements, most notably the connection pool handling. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 05:21:04 Modified files: devel/py-tz : Makefile distinfo Log message: Update py-tz to 2014.9. ok frantisek holop (maintainer). CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/11/09 05:33:18 Modified files: editors/libreoffice: Makefile distinfo editors/libreoffice/patches: patch-configure editors/libreoffice/pkg: PFRAG.shared-main Added files: editors/libreoffice/patches: patch-svx_Library_svxcore_mk Log message: update to 4.3.3.2 and disable compiler optimizations in the svx module (for now) to allow saving ODF documents CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/11/09 05:33:39 Removed files: editors/libreoffice/patches: patch-dbaccess_Module_dbaccess_mk Log message: remove unused patch CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/09 05:36:50 Log message: import ports/devel/gitsh, from Mike Burns, ok jeremy@ The gitsh program is an interactive shell for git. From within gitsh you can issue any git command, even using your local aliases and configuration. This simplifies repetitive commands, plus allows for additional advancements such as informative prompts, runtime git configuration, and scripting. Status: Vendor Tag: sthen Release Tags: sthen_20141109 N ports/devel/gitsh/Makefile N ports/devel/gitsh/distinfo N ports/devel/gitsh/pkg/DESCR N ports/devel/gitsh/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/09 05:37:08 Modified files: devel : Makefile Log message: +gitsh CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 06:19:36 Modified files: devel/py-isodate: Makefile distinfo Log message: Update py-isodate to 0.5.1. ok sthen@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/09 07:03:04 Modified files: sys/dev/usb : xhci.c Log message: When a pipe is closed, clear the memory of the corresponding enpoint context, not the whole array of endpoints. Yeah, pointers are hard. Fix a panic reported by Dimitris Papastamos on tech@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/09 07:35:25 Modified files: math/ntl : Makefile distinfo math/ntl/patches: patch-src_DoConfig math/ntl/pkg : PLIST Log message: Update ntl to 7.0.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:45:50 Modified files: multimedia/gstreamer1: Makefile.inc Log message: Bump to 1.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:46:04 Modified files: multimedia/gstreamer1/core: Makefile distinfo multimedia/gstreamer1/core/files: grammar.tab.c Log message: Update to gstreamer1-1.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:46:20 Modified files: multimedia/gstreamer1/plugins-base: Makefile distinfo Log message: Update to gstreamer1-plugins-base-1.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:46:35 Modified files: multimedia/gstreamer1/plugins-good: Makefile distinfo Log message: Update to gstreamer1-plugins-good-1.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:46:49 Modified files: multimedia/gstreamer1/plugins-bad: Makefile distinfo Log message: Update to gstreamer1-plugins-bad-1.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:47:01 Modified files: multimedia/gstreamer1/plugins-ugly: distinfo Log message: Update to gstreamer1-plugins-ugly-1.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/09 07:47:14 Modified files: multimedia/gstreamer1/plugins-libav: distinfo Log message: Update to gstreamer1-plugins-libav-1.4.4. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/09 08:13:01 Modified files: usr.bin/tmux : window-copy.c Log message: Expand formats in copy-pipe command, suggested by Suraj N Kurapati. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/11/09 09:25:17 Modified files: devel/mingw : Makefile Log message: do not pick up gawk in configure CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 09:41:26 Modified files: sys/lib/libkern/arch/sparc: memmove.S Log message: typo CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/11/09 09:52:37 Modified files: x11/worker : Makefile distinfo Log message: Update to 3.5.2 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:04:15 src/lib/libssl/src/crypto/gost Update of /cvs/src/lib/libssl/src/crypto/gost In directory cvs.openbsd.org:/cvs.d/hack/miod/traba/src/lib/libssl/src/crypto/gost Log Message: Directory /cvs/src/lib/libssl/src/crypto/gost added to the repository CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:08:24 Modified files: lib/libssl/src/crypto: md32_common.h Log message: Allow digest routines to provide their own HASH_FINAL routine; will be necessary for upcoming GOST code. From Dmitry Eremin-Solenikov CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:12:18 Modified files: lib/libcrypto/crypto: shlib_version lib/libssl/src/crypto/evp: digest.c Log message: Introduce EVP_MD_CTX_ctrl(), to allow for fine control of a given digest. This functionality was already available (and optional), and used in the bowels of the ASN.1 code. This exposes it as a public interface, which will be used by the upcoming GOST code. Crank libcrypto minor version. From Dmitry Eremin-Solenikov. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:17:13 Modified files: lib/libcrypto/crypto: Makefile lib/libssl/src/crypto/asn1: ameth_lib.c lib/libssl/src/crypto/cms: cms_sd.c lib/libssl/src/crypto/ec: ec_curve.c lib/libssl/src/crypto/err: err.c err.h err_all.c openssl.ec lib/libssl/src/crypto/evp: c_allc.c c_alld.c evp.h pmeth_lib.c lib/libssl/src/crypto/objects: obj_mac.num obj_xref.h obj_xref.txt objects.txt lib/libssl/src/crypto/pkcs7: pk7_smime.c Added files: lib/libssl/src/crypto/evp: e_gost2814789.c m_gost2814789.c m_gostr341194.c m_streebog.c lib/libssl/src/crypto/gost: gost.h gost2814789.c gost89_keywrap.c gost89_params.c gost89imit_ameth.c gost89imit_pmeth.c gost_asn1.c gost_asn1.h gost_err.c gost_locl.h gostr341001.c gostr341001_ameth.c gostr341001_key.c gostr341001_params.c gostr341001_pmeth.c gostr341194.c streebog.c Log message: GOST crypto algorithms (well, most of them), ported from the removed GOST engine to regular EVP citizens, contributed by Dmitry Eremin-Solenikov; libcrypto bits only for now. This is a verbatim import of Dmitry's work, and does not compile in this state; the forthcoming commits will address these issues. None of the GOST code is enabled in libcrypto yet, for it still gets compiled with OPENSSL_NO_GOST defined. However, the public header gost.h will be installed. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:24:30 Modified files: lib/libssl/src/crypto/gost: gost.h gost_err.c gostr341001_pmeth.c Log message: Replace RAND_bytes() usage with arc4random_buf(). CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:27:29 Modified files: lib/libssl/src/crypto/gost: gost89_keywrap.c gost_locl.h gostr341001_pmeth.c Log message: Rename internal yet public key_{un,}wrap_crypto_pro symbols by prepending a `gost_' prefix to them, so that we do not pollute the global namespace too much. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:28:44 Modified files: lib/libssl/src/crypto/gost: gost89_keywrap.c gostr341001_pmeth.c Log message: Remove DEBUG_SIGN code. Make sure gost_key_unwrap_crypto_pro() returns failure instead of a printf and a success return, when the operation fails. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:44:00 src/regress/lib/libcrypto/gost Update of /cvs/src/regress/lib/libcrypto/gost In directory cvs.openbsd.org:/cvs.d/hack/miod/traba/src/regress/lib/libcrypto/gost Log Message: Directory /cvs/src/regress/lib/libcrypto/gost added to the repository CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 12:45:26 Added files: regress/lib/libcrypto/gost: Makefile gost2814789t.c Log message: GOST tests, not connected to the build yet. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/09 12:47:41 Log message: Import libowfat 0.29. library of general purpose APIs This library is a reimplementation of libdjb. It contains several wrappers for socket functions, mkfifo, opendir, wait, an abstraction around errno, Unix signal functions, memory and string handling. From maintainer Jan Klemkow; OK sthen@ Status: Vendor Tag: jklemkow Release Tags: bluhm_20141109 N ports/devel/libowfat/Makefile N ports/devel/libowfat/distinfo N ports/devel/libowfat/patches/patch-GNUmakefile N ports/devel/libowfat/pkg/PLIST N ports/devel/libowfat/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/09 12:51:25 Modified files: devel : Makefile Log message: +libowfat CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/09 13:27:40 ports/devel/p5-Data-Validate-Struct/patches Update of /cvs/ports/devel/p5-Data-Validate-Struct/patches In directory cvs.openbsd.org:/tmp/cvs-serv26026/patches Log Message: Directory /cvs/ports/devel/p5-Data-Validate-Struct/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/11/09 13:35:56 Modified files: devel/p5-Data-Validate-Struct: Makefile distinfo Added files: devel/p5-Data-Validate-Struct/patches: patch-t_run_t Log message: - update p5-Data-Validate-Struct to 0.08 - add missing regression test file CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/09 13:46:19 Modified files: www/nginx : Makefile Log message: fix SUBST_VARS, pointed out by Mikolaj Kucharski CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/09 15:05:08 Modified files: sys/netinet : raw_ip.c udp_usrreq.c sys/netinet6 : raw_ip6.c udp6_output.c Log message: To implement transparent relays for connectionless protocols, the pf the state has to vanish immediately when the relay closes the socket. To make this work reliably, the linkage between state and socket must be established with the first packet. This packet could be incomming or outgoing. Link the pf state in the socket layer earlier. This makes all tests in /usr/src/regress/sys/net/pf_divert pass. OK henning@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/09 16:06:52 Modified files: lib/libssl/src/crypto/evp: e_gost2814789.c m_gost2814789.c m_gostr341194.c m_streebog.c lib/libssl/src/crypto/gost: gost2814789.c gost89_params.c gost89imit_ameth.c gost89imit_pmeth.c gostr341001_ameth.c gostr341001_key.c gostr341001_params.c gostr341001_pmeth.c gostr341194.c streebog.c Log message: KNF (when not conflicting with other cleanup changes in progress) CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/09 18:21:45 Modified files: devel/p5-Clone : Makefile distinfo Log message: Update devel/p5-Clone to 0.37 OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/09 18:23:43 Modified files: devel/p5-Test-Tester: Makefile distinfo Log message: Update devel/p5-Test-Tester to 0.109 OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/09 18:25:21 Modified files: devel/p5-Test-Warnings: Makefile distinfo Log message: Update devel/p5-Test-Warnings to 0.016 OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/09 18:27:12 Modified files: devel/p5-Test-Exception: Makefile distinfo Log message: Update devel/p5-Test-Exception to 0.35 OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/09 18:29:16 Modified files: devel/p5-Test-Most: Makefile distinfo Log message: Update devel/p5-Test-Most to 0.34 OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/09 18:30:43 Modified files: devel/p5-Test-Harness: Makefile distinfo Log message: Update devel/p5-Test-Harness to 3.34 OK bluhm@ CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/11/09 22:32:58 www/papers/hackfest2014-arc4random Update of /cvs/www/papers/hackfest2014-arc4random In directory cvs.openbsd.org:/cvs.e/staff/deraadt/www/papers/hackfest2014-arc4random Log Message: Directory /cvs/www/papers/hackfest2014-arc4random added to the repository CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/11/09 22:33:46 Modified files: . : events.html Added files: papers/hackfest2014-arc4random: index.html mgp00001.html mgp00001.idx.jpg mgp00001.jpg mgp00001.txt mgp00002.html mgp00002.idx.jpg mgp00002.jpg mgp00002.txt mgp00003.html mgp00003.idx.jpg mgp00003.jpg mgp00003.txt mgp00004.html mgp00004.idx.jpg mgp00004.jpg mgp00004.txt mgp00005.html mgp00005.idx.jpg mgp00005.jpg mgp00005.txt mgp00006.html mgp00006.idx.jpg mgp00006.jpg mgp00006.txt mgp00007.html mgp00007.idx.jpg mgp00007.jpg mgp00007.txt mgp00008.html mgp00008.idx.jpg mgp00008.jpg mgp00008.txt mgp00009.html mgp00009.idx.jpg mgp00009.jpg mgp00009.txt mgp00010.html mgp00010.idx.jpg mgp00010.jpg mgp00010.txt mgp00011.html mgp00011.idx.jpg mgp00011.jpg mgp00011.txt mgp00012.html mgp00012.idx.jpg mgp00012.jpg mgp00012.txt mgp00013.html mgp00013.idx.jpg mgp00013.jpg mgp00013.txt mgp00014.html mgp00014.idx.jpg mgp00014.jpg mgp00014.txt mgp00015.html mgp00015.idx.jpg mgp00015.jpg mgp00015.txt mgp00016.html mgp00016.idx.jpg mgp00016.jpg mgp00016.txt mgp00017.html mgp00017.idx.jpg mgp00017.jpg mgp00017.txt mgp00018.html mgp00018.idx.jpg mgp00018.jpg mgp00018.txt mgp00019.html mgp00019.idx.jpg mgp00019.jpg mgp00019.txt mgp00020.html mgp00020.idx.jpg mgp00020.jpg mgp00020.txt mgp00021.html mgp00021.idx.jpg mgp00021.jpg mgp00021.txt mgp00022.html mgp00022.idx.jpg mgp00022.jpg mgp00022.txt mgp00023.html mgp00023.idx.jpg mgp00023.jpg mgp00023.txt mgp00024.html mgp00024.idx.jpg mgp00024.jpg mgp00024.txt mgp00025.html mgp00025.idx.jpg mgp00025.jpg mgp00025.txt mgp00026.html mgp00026.idx.jpg mgp00026.jpg mgp00026.txt mgp00027.html mgp00027.idx.jpg mgp00027.jpg mgp00027.txt mgp00028.html mgp00028.idx.jpg mgp00028.jpg mgp00028.txt mgp00029.html mgp00029.idx.jpg mgp00029.jpg mgp00029.txt mgp00030.html mgp00030.idx.jpg mgp00030.jpg mgp00030.txt mgp00031.html mgp00031.idx.jpg mgp00031.jpg mgp00031.txt mgp00032.html mgp00032.idx.jpg mgp00032.jpg mgp00032.txt mgp00033.html mgp00033.idx.jpg mgp00033.jpg mgp00033.txt mgp00034.html mgp00034.idx.jpg mgp00034.jpg mgp00034.txt mgp00035.html mgp00035.idx.jpg mgp00035.jpg mgp00035.txt mgp00036.html mgp00036.idx.jpg mgp00036.jpg mgp00036.txt mgp00037.html mgp00037.idx.jpg mgp00037.jpg mgp00037.txt mgp00038.html mgp00038.idx.jpg mgp00038.jpg mgp00038.txt mgp00039.html mgp00039.idx.jpg mgp00039.jpg mgp00039.txt mgp00040.html mgp00040.idx.jpg mgp00040.jpg mgp00040.txt mgp00041.html mgp00041.idx.jpg mgp00041.jpg mgp00041.txt mgp00042.html mgp00042.idx.jpg mgp00042.jpg mgp00042.txt Log message: talk about arc4random CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/09 23:58:03 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/11/10 00:15:42 Modified files: distrib/notes/alpha: contents distrib/notes/amd64: contents distrib/notes/octeon: contents distrib/notes/armish: contents distrib/notes/armv7: contents distrib/notes/aviion: contents distrib/notes/hppa: contents distrib/notes/i386: contents distrib/notes/landisk: contents distrib/notes/loongson: contents distrib/notes/luna88k: contents distrib/notes/macppc: contents distrib/notes/sgi: contents distrib/notes/socppc: contents distrib/notes/sparc: contents distrib/notes/sparc64: contents distrib/notes/vax: contents distrib/notes/zaurus: contents Log message: etc and xetc sets no longer exist in the release directories CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/10 01:14:34 Modified files: math/fftw : Makefile Log message: Add portroach annotation CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/10 01:19:49 Modified files: x11/p5-AnyEvent-I3: Makefile Log message: Take maintainer, this is integral part of the i3 ecosystem CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/10 02:01:29 Modified files: productivity/glabels: Makefile distinfo productivity/glabels/pkg: PLIST Log message: Update to glabels-3.2.1. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/10 02:04:18 Modified files: games/xboard : Makefile distinfo games/xboard/patches: patch-xaw-xboard_h games/xboard/pkg: PLIST Added files: games/xboard/patches: patch-Makefile_in patch-xboard_conf Removed files: games/xboard/patches: patch-xboard_conf_in Log message: Update to xboard-4.8.0 CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 02:23:34 Modified files: faq : upgrade55.html Log message: add a note to "no java on i386" to mention that it's back in 5.6. leave the suggestion about moving to amd64 there (there are still some issues with the compiler on i386). CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 02:25:12 Modified files: build : mirrors.dat Log message: planetunix back in sync, adjust bytemark url CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 02:25:40 Modified files: . : anoncvs.html ftp.html ftplist openbgpd : ftp.html openntpd : ftp.html portable.html openssh : ftp.html portable.html Log message: ysync CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 02:29:52 Modified files: faq : upgrade55.html upgrade56.html faq/ports : differences.html guide.html index.html ports.html specialtopics.html testing.html Log message: remove some more of the www@ mentions, Job Snijders pointed out the one on upgrade56.html CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 02:33:26 Modified files: porting : audio-port.html autoconf.html checklist.html config.html diffs.html libraries.html packaging.html porttest.html update.html Log message: zap more www@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/10 03:38:46 Modified files: sys/net : route.c Log message: Plug a rtentry leak and change the name of the pool to something understandable. ok chris@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/10 03:46:10 Modified files: sys/netinet6 : nd6.h nd6_nbr.c Log message: Do not pass an ifa pointer when we already have a DAD descriptor. Tweaks and ok florian@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/10 03:55:58 Modified files: audio/taglib : Makefile audio/taglib/patches: patch-taglib_toolkit_tstring_cpp audio/taglib/pkg: PLIST Added files: audio/taglib/patches: patch-taglib_toolkit_tbytevector_cpp patch-taglib_xm_xmfile_cpp patch-tests_test_bytevector_cpp patch-tests_test_flac_cpp Log message: Merge some fixes from upstream via Fedora: - Rewrote ByteVector::replace() simpler - Fixed a wrong byte order handling on big-endian machines - Changed XM::File::save() to use seek() properly - Added some missing deletes to test_flac.cpp Now the testsuite is 100% successful CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/10 04:01:13 Modified files: sys/dev/usb : usb_subr.c usbdivar.h Log message: Remove USB locators. They are currently unused and this wont change due to the way USB buses are discovered. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 04:09:57 Modified files: www/p5-HTML-SiteTear: Makefile distinfo Log message: Update p5-HTML-SiteTear to 1.44. ok Girish Venkatachalam (maintainer). CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 05:11:12 Modified files: faq : upgrade56.html Log message: remove r* commands, from Job Snijders chown smtpd spool dir, req by gilles@ ok nick CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 05:59:21 Modified files: sbin/iked : iked.8 Log message: copy pubkey section from isakmpd(8); ok reyk CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 06:03:16 Modified files: devel/p5-String-CRC32: Makefile distinfo Log message: Update p5-String-CRC32 to 1.5. Take maintainership, ok sthen@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/10 06:03:51 Modified files: usr.sbin/dhcpd : dhcp.c Log message: Typo: consitent -> consistent. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 06:12:59 Modified files: devel/p5-SVN-Simple: Makefile distinfo Log message: Update p5-SVN-Simple to 0.28. Take maintainership, tweaks and ok sthen@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/10 06:57:32 Modified files: sbin/iked : iked.8 Log message: tweak previous; ok mikeb plus a macro fix while here... CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/10 07:16:13 Modified files: sys/dev/usb : xhci.c Log message: Apparently xhci(4) also needs a hook to set the address of a device. Some Low/Full speed devices do not like to get a SET_ADDRESS command before we have read (some bits of) their device descriptor. So change the attach logic to issue two "Device Address" command with a BSR dance. This should fix the "device problem, disabling port" error seen on root hubs with some Low/Full speed devices, reported by miod@. CVSROOT: /cvs Module name: src Changes by: beck@cvs.openbsd.org 2014/11/10 07:16:22 Modified files: usr.sbin/httpd : logger.c Log message: Don't attempt to open log files when using syslog, as we are not going to use them. ok reyk@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/10 07:26:38 Modified files: sys/dev/usb : uhub.c usbdivar.h Log message: Add some fields needed for TT support. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/10 07:29:49 Modified files: sys/dev/usb : xhci.c xhcireg.h Log message: Support USB 1.x devices below external hubs. This code is violating various layers of abstraction, just like ehci(4) does. Transaction translators need a bit more love. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/10 08:03:43 Added files: www/chromium/patches: patch-extensions_extensions_gyp Log message: Fix another dependency issue From upstream git commit 46c567aecd2b80239fee6fc4006474db9c281229 ok robert@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/10 08:40:02 Modified files: www/mozilla-firefox: Makefile distinfo www/firefox-i18n: Makefile.inc distinfo Log message: Update to firefox 33.1. - See https://www.mozilla.org/en-US/firefox/33.1/releasenotes/, , https://www.mozilla.org/en-US/firefox/tiles/ and https://support.mozilla.org/en-US/kb/forget-button-quickly-delete-your-browsing-history This is a special release celebrating the 10 years anniversary of the release of firefox 1.0. 34.0 will be released on the regular schedule in ~ two weeks. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/10 08:51:56 Modified files: audio/ncmpcpp : Makefile Added files: audio/ncmpcpp/patches: patch-doc_bindings patch-src_bindings_cpp Log message: Merge fix from the '0.6.x' git branch: bindings: additionally bind delete to DeleteBrowserItems by default (upstream git commit 2ef83ff15ff52f437ebe11844b5a2d0a36497dde) CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 08:58:32 Modified files: sys/dev/pci : if_ix.c if_ix.h Log message: remove ixgbe_sfp_probe since it's not called anyways CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 09:01:18 Modified files: sys/dev/pci : if_ix.c Log message: don't try to update the link status every second CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/11/10 09:05:17 Modified files: geo/qgis : Makefile distinfo geo/qgis/files : qgsexpressionparser.cpp qgsexpressionparser.hpp qgsrastercalcparser.cpp qgsrastercalcparser.hpp geo/qgis/patches: patch-CMakeLists_txt patch-cmake_FindGDAL_cmake patch-cmake_FindGEOS_cmake patch-cmake_FindPostgres_cmake patch-src_analysis_CMakeLists_txt patch-src_app_qgisapp_cpp patch-src_app_qgsabout_cpp patch-src_core_CMakeLists_txt patch-src_core_qgsapplication_cpp patch-src_core_qgsvectorlayerfeatureiterator_cpp patch-src_mapserver_CMakeLists_txt patch-src_providers_memory_qgsmemoryfeatureiterator_cpp geo/qgis/pkg : PLIST Added files: geo/qgis/patches: patch-cmake_Flex_cmake Log message: Update to qgis 2.6.0 'Brighton'. See https://www.qgis.org/en/site/forusers/visualchangelog260/index.html Use devel/gflex instead of base flex which doesnt seem to handle %option reentrant, used since https://github.com/qgis/QGIS/commit/2427546d8850c7f0b2ca191b238a77c49f648510 commit parser files generated locally with bison 2.6.2. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 09:06:27 Modified files: x11/mrxvt : Makefile Log message: Remove myself as maintainer. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 09:35:06 Modified files: sys/dev/pci : if_ix.c Log message: Gather full statistics only when IX_DEBUG is defined since most of them can't be retrieved otherwise. This comes with a slight but measurable performance increase as well. Also since the hardware has a single counter for missed packets including those caused by the insufficient DMA buffers available, this makes it hard to decipher actual errors when used with Rx ring length limiting mechanisms like if_rxr or mclgeti. CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/10 09:35:46 Modified files: devel/p5-Test-Deep: Makefile distinfo devel/p5-Test-Deep/pkg: PLIST Log message: Update devel/p5-Test-Deep to 0.113 OK sthen@ CVSROOT: /cvs Module name: ports Changes by: afresh1@cvs.openbsd.org 2014/11/10 09:37:19 Modified files: devel/p5-Test-Differences: Makefile distinfo Log message: Update devel/p5-Test-Differences to 0.62 OK sthen@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 09:42:52 Modified files: archivers/libshrink: Makefile distinfo Log message: Update libshrink to 0.5.4. ok David Hill (maintainer) CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 10:07:52 Modified files: sys/dev/pci : if_ix.c Log message: Inadvertent ampersand has made the check to always yield truth This change fixes up SFP+ module detection during "ifconfig up" after the machine has been booted without the modules plugged in. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/11/10 10:39:00 Modified files: graphics/tkimg : Makefile distinfo graphics/tkimg/patches: patch-Makefile_in graphics/tkimg/pkg: PLIST Log message: Minor update to 1.4.2 of tkimg, changes: - Will build correctly on more platforms (TEA upgraded to latest version 3.9) - upgrade to zlib 1.2.8, libjpeg-8d - Added format option "-alpha" to PNG reader to be compatible with Tk 8.6. - Bug fixes in various parsers to avoid core dumps when specifying a wrong format option. - upgrade to zlib 1.2.7, libpng-1.4.12, libtiff-3.9.4, libjpeg-8c OK stu@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 10:53:10 Modified files: sys/dev/pci : if_ix.c Log message: remove pointless timeout_del/add dance in the interrupt handler CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/10 10:53:43 Modified files: sys/dev/pci : if_ix.c Log message: add an additional error check into the ixgbe_handle_msf CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/11/10 11:49:42 Modified files: sys/net : pf_lb.c Log message: Split the logic for the ICMP and ICMP6 case in pf_get_sport(). The types ICMP_ECHO and ICMP6_ECHO_REQUEST have their special meaning only if the protocol matches. Put an #ifdef INET6 around ICMP6_ECHO_REQUEST to make the kernel without IPv6 compile. OK henning@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/11/10 11:55:43 Modified files: sys/kern : subr_pool.c Log message: Grab the pool mutex in sysctl_dopool(), but only for pools for which pool_setipl(9) has been called. This avoids the panic introduced in rev 1.139 (which was subsequently backed out) while still effectively guaranteeing a consistent snapshot. Pools used from interrupt handlers should use the appropriate pool IPL. ok dlg@, deraadt@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/10 12:06:47 Modified files: lib/csu : Makefile Removed files: lib/csu/m68k : Makefile md_init.h Log message: m68k is dead ok miod@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 12:10:47 Modified files: sysutils/p5-Proc-ProcessTable: Makefile distinfo Log message: Update p5-Proc-ProcessTable to 0.51. ok william@ (maintainer) CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/10 12:53:32 Modified files: usr.bin/tmux : grid-view.c Log message: Revert r1.17 as it breaks inserting in some cases. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/10 13:16:31 Modified files: regress/usr.bin/mandoc/mdoc/Bl: badargs.out_ascii bullet.out_ascii emptyitem.out_ascii noIt.out_ascii regress/usr.bin/mandoc/roff/esc: two.out_ascii Log message: adapt to the changed rendering of \(bu CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/10 13:29:08 Modified files: regress/usr.bin/mandoc/char/unicode: nogroff.out_ascii regress/usr.bin/mandoc/mdoc/Bl: notype.out_ascii Log message: SKIP_GROFF tests need to adapt to the changed rendering of \(bu, too CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/10 13:38:50 Modified files: sysutils/e2fsprogs: Makefile sysutils/e2fsprogs/pkg: PLIST Added files: sysutils/e2fsprogs/patches: patch-lib_uuid_gen_uuid_c Log message: - use arc4random in e2fsprogs' libuuid - disable uuidd, it wasn't properly enabled in the port anyway (and most situations where /dev/random would fail, the uuidd socket would also be inaccessible) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/10 13:43:18 Modified files: telephony/asterisk: Makefile distinfo telephony/asterisk/patches: patch-channels_chan_sip_c patch-contrib_scripts_safe_asterisk patch-main_asterisk_c patch-res_res_fax_c Log message: update to asterisk-11.14.0 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/10 13:48:33 Modified files: usr.sbin/bgpd : bgpd.conf.5 Log message: Fix horrible spelling mistake introduced in r1.17 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/10 13:59:41 Modified files: regress/usr.bin/mandoc/man/B: args.in args.out_ascii args.out_lint regress/usr.bin/mandoc/mdoc/Bd: Makefile regress/usr.bin/mandoc/mdoc/Bl: tag.in tag.out_ascii regress/usr.bin/mandoc/roff/nr: Makefile Added files: regress/usr.bin/mandoc/mdoc/Bd: beforeNAME.in beforeNAME.out_ascii beforeNAME.out_lint regress/usr.bin/mandoc/roff/nr: divzero.in divzero.out_ascii divzero.out_lint Log message: more tests found in my tree CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/10 14:31:42 Modified files: usr.bin/vi/common: exf.c key.c recover.c usr.bin/vi/ex : ex_shell.c Log message: remove old, unnecessary compat code. from Martin Natano CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/10 14:34:13 Modified files: usr.bin/vi/cl : cl_main.c Log message: remove ipc leftovers. from Martin Natano CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/10 14:40:11 Modified files: usr.bin/vi/build: config.h usr.bin/vi/ex : ex_tag.c ex_tcl.c usr.bin/vi/include: com_extern.h Log message: remove various bits of autoconf cruft. from Martin Natano CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/10 14:54:29 Modified files: usr.bin/mandoc : mdoc_term.c regress/usr.bin/mandoc/mdoc/Bd: beforeNAME.out_ascii regress/usr.bin/mandoc/mdoc/Bl: Makefile Added files: regress/usr.bin/mandoc/mdoc/Bl: secstart.in secstart.out_ascii Log message: add required vertical spacing before lists that begin at the beginning of the first item of an enclosing list right at the beginning of a new section or subsection; minibug reported by Steffen Nurpmeso CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/10 14:58:59 Modified files: gnu/usr.bin/gcc/gcc: flags.h toplev.c Log message: Make flag_gcse non-static. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/10 15:02:23 Modified files: gnu/usr.bin/gcc/gcc/config/vax: vax.c Log message: Disable -fgcse on vax at -O2, for it exposes code generation bugs (which might not be in the cse code itself, actually). This is quite the pessimistic hammer but that's the best we can do until someone with enough motivation debugs this. Behind-the scenes tedious research of the issue by afresh1@ trying to get perl 5.20 to run on vax. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/11/10 15:25:49 Modified files: usr.bin/ssh : ssh_config.5 Log message: mux-related manual tweaks mention ControlPersist=0 is the same as ControlPersist=yes recommend that ControlPath sockets be placed in a og-w directory CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/11/10 15:27:53 Modified files: faq : current.html Log message: add html comment to mark "sendmail port uid/gid change" as not for upgrade57 (it only relates to something in the port which was added post-5.6) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/10 17:10:35 Modified files: sysutils/p5-Sys-Virt: Makefile Log message: zap no-longer-necessary LD_PRELOAD, ok jasper@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/11/10 17:32:55 Modified files: share/man/man7 : packages.7 Log message: Replace mysql with mariadb. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/10 19:08:57 Modified files: usr.bin/mandoc : main.c Log message: implement -h (synopsis only) for preformatted (cat) pages; requested by tedu@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/10 19:43:11 Modified files: usr.bin/mandoc : main.c man.1 mandoc.1 Log message: Let -h imply -c (that is, not use the pager). Usually, -h output is short, so the pager is just a nuisance. Also, traditional man(1) does not use a pager for -h. Triggered by a remark of deraadt@ on ICB. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/11/10 21:17:34 Modified files: lib/libtls : tls_init.3 Log message: delete extra word in Nd CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/10 21:51:49 Modified files: lib/libc/rpc : clnt_simple.c clnt_tcp.c clnt_udp.c pmap_clnt.c pmap_getmaps.c pmap_getport.c pmap_rmt.c Log message: Merge from NetBSD from 1999-03-25:" * don't close the socket unless it was opened by the function * note (in the comments) that the client is responsible for closing the socket if they opened it, or they didn't use CLNT_DESTROY() fixes a couple of unnecessary closing of already-closed sockets. noted by: Matthias Drochner " tested by many in snaps ok schwarze@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/10 23:23:43 Modified files: lib/libssl/src/crypto/ec: ec_mult.c Log message: Don't free garbage in ec_wNAF_mul() if wNAF could be allocated but other allocations in the same block couldn't. problem pointed out by David Ramos on the openssl-dev list ok miod@ doug@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/10 23:56:38 Modified files: math/p5-Math-Symbolic: Makefile distinfo Log message: Update p5-Math-Symbolic to 0.612. Ok and remove maintainer (Markus Bergkvist) per his request. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/11/11 00:05:09 Modified files: editors/calligra: Makefile distinfo editors/calligra/pkg: PLIST Removed files: editors/calligra/patches: patch-libs_db_drivers_sqlite_icu_CMakeLists_txt Log message: Minor bufgix update of Calligra suite to 2.8.6 from MAINTAINER. Some tests want qdbus, so add TEST_IS_INTERACTIVE=X11. Still many failures, though. Tested on amd64. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 00:05:38 Modified files: devel/p5-File-Touch: Makefile distinfo Log message: Update p5-File-Touch to 0.09. ok Abel Abraham Camarillo Ojeda (maintainer). CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 00:08:35 Modified files: www/p5-CGI-Lite: Makefile distinfo Log message: Update p5-CGI-Lite to 2.05. ok Abel Abraham Camarillo Ojeda (maintainer). CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 00:15:08 Modified files: math/p5-Math-SymbolicX-ParserExtensionFactory: Makefile Log message: Remove maintainer (Markus Bergkvist) per his request. CVSROOT: /cvs Module name: src Changes by: phessler@cvs.openbsd.org 2014/11/11 00:15:34 Modified files: usr.sbin/bgpd : util.c Log message: The default output format for 32bit AS numbers has moved from AS_DOT+ to ASPLAIN. Of course, you can still input AS numbers in either format. OK henning@, claudio@, benno@, sthen@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/11/11 00:49:07 Modified files: games/openttd : Makefile distinfo Log message: Update to openttd-1.4.4. Patch from Jakub Skrzypnik. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2014/11/11 01:02:09 Modified files: usr.sbin/bgpd : util.c Log message: Adjust aspath_strlen() since the output format changed to ASPLAIN. This should return the proper length again. OK phessler, benno CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/11 01:13:28 Modified files: security/pcsc-lite: Makefile distinfo Log message: Bugfix update to pcsc-lite-1.8.13 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/11 01:29:59 Modified files: devel/maven : Makefile distinfo devel/maven/pkg: PLIST Log message: update to maven-3.2.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/11 01:40:38 Modified files: devel/maven : Makefile devel/maven/files: maven.rc mvn devel/maven/patches: patch-bin_mvn Log message: drop combination of sed and perl in favor of SUBST_CMD CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/11 02:28:29 Modified files: x11/blackbox : Makefile x11/blackbox/pkg: PLIST Added files: x11/blackbox/patches: patch-src_Window_cc Log message: Unbreak focus switching with newer X. Patch by patrick keshishian. While here, regen pkg/PLIST CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 02:38:20 Modified files: devel/p5-Class-C3: Makefile distinfo Log message: Update p5-Class-C3 to 0.27. ok Sean Comeau (maintainer). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/11 02:50:50 Modified files: devel/appstream-glib: Makefile distinfo Log message: Update to appstream-glib-0.2.7. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/11 03:12:55 Modified files: databases/redis: Makefile databases/redis/patches: patch-src_Makefile databases/redis/pkg: PLIST redis.rc Log message: As pointed out by sthen@, daemons should be in sbin not bin CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 04:21:01 Log message: Import SuiteSparse_config 4.3.1, the continuation of UFconfig. Was renamed once version 4.0.0 was released. Version 3.7.1 was the last to go by the name of UFconfig. This will soon replace UFconfig. Okay sthen@ Status: Vendor Tag: pirofti Release Tags: pirofti_20141111 N ports/math/SuiteSparse_config/Makefile N ports/math/SuiteSparse_config/distinfo N ports/math/SuiteSparse_config/pkg/DESCR N ports/math/SuiteSparse_config/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 04:22:21 Modified files: math : Makefile Log message: Link SuiteSparse_config CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 04:34:01 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update youtube-dl to 2014.11.09. Adds vice extractor. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 04:36:24 Modified files: devel/cln : Makefile distinfo devel/cln/pkg : PLIST Removed files: devel/cln/pkg : PFRAG.shared Log message: Update cln to 1.3.4. While at it, remove the PFRAG.shared as suggested by sthen@ Okay sthen@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/11 04:37:05 Modified files: sys/net : pf.c Log message: Ask networking stack to recalculate the ICMPv6 checksum in pf_route6 since we might have tweaked the addresses. Problem reported and fix test by Bastien Durel , thanks! OK henning CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/11 05:10:44 Modified files: sys/dev/usb : xhci.c Log message: Do not reset the base address of the control endpoint's ring when the second "Set Address" command is issued. This would lead the HC to reprocess TRBs corresponding to completed transfers. This was the cause of the "xhci0: NULL xfer pointer" message that could be seen after attaching a device and reported by naddy@. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/11 05:20:16 Modified files: x11/awesome : Makefile Added files: x11/awesome/patches: patch-ewmh_c patch-lib_awful_layout_suit_magnifier_lua_in patch-lib_awful_layout_suit_tile_lua_in patch-lib_awful_rules_lua_in patch-lib_awful_tag_lua_in Log message: Merge fixes from the stable '3.5' branch: Add context to request::activate signal (git commit b0ede3108e4e4bb2f917f0c3fe607e86cb534b5a) layouts: Allow layouts to be invoked with fake data (git commit 1f431384cbb428d97a6991ba0c59217cbc71b4a6) tag: Improve tag property::index support (git commit 94cbc200edb0ae321610c3cbe09fd62c91dd5ba3) tag.delete: Do not reset client tag when unnecessary (git commit ed93b497b66f99de07f51b7410f4e34eeb4a5c74) awful.tag.update: Fix identical tag set detection (git commit f637265334259b29b3f959abfc133171e387b79c) CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/11/11 06:04:01 Modified files: devel/p5-Devel-StackTrace-AsHTML: Makefile distinfo Log message: Update to Devel-StackTrace-AsHTML-0.14 OK Abel Abraham Camarillo Ojeda (maintainer) CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/11/11 06:05:54 Modified files: net/p5-Net-OpenSSH: Makefile distinfo Log message: Update to Net-OpenSSH-0.62 OK Abel Abraham Camarillo Ojeda (maintainer) CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 06:27:11 Modified files: math/amd : Makefile distinfo math/amd/pkg : PLIST Removed files: math/amd/pkg : PFRAG.shared Log message: Update amd to 2.4.0. Start using the new SuiteSparse_config package. While at it take maintainership. Okay and comments from benoit@, thanks! CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 06:28:12 Modified files: devel/cln/pkg : PLIST Log message: Forgot to remove the shared marker in my last commit. CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/11/11 06:54:33 Modified files: lib/libcrypto/crypto: getentropy_win.c Log message: correct the failure case for getentropy on win32 CryptAcquireContext and CryptGenRandom returns zero (FALSE) if fails. From: Dongsheng Song CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/11 07:24:39 Modified files: comms/chirp : Makefile distinfo Log message: Update to chirp-0.4.1, and add a missing rdep on x11/py-gtk2 as found by Jeremy Chase CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/11/11 07:25:56 Modified files: x11/dbus : Makefile distinfo x11/dbus/patches: patch-dbus_dbus-sysdeps-util-unix_c Log message: Update to dbus-1.8.10. CVSROOT: /cvs Module name: src Changes by: beck@cvs.openbsd.org 2014/11/11 08:54:45 Modified files: usr.sbin/httpd : httpd.c httpd.conf.5 httpd.h logger.c parse.y Log message: Allow the log directory to be configurable in the config file, rather than fixed as /logs within the chroot. As this httpd is properly privesp'ed this has the nice property of allowing us to put the logs outside the chroot if we want to. ok reyk@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 08:58:35 Modified files: net/py-GeoIP : Makefile distinfo net/py-GeoIP/pkg: PLIST Log message: Update to py-GeoIP-1.3.2. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/11/11 09:26:28 Modified files: sys/dev/pci : if_athn_pci.c Log message: Stop athn(4) from attaching to AR9300 devices for now. There are unresolved bugs that panic the kernel and it's unclear if any such device works at all. Anyone in possession of a working AR9300 device that stops working with this commit please talk to me. I've only seen evidence of this code not working. ok kirby@ mpi@ phessler@ dcoppa@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 09:34:52 Modified files: geo/p5-Geo-Coordinates-UTM: Makefile distinfo Log message: Update to p5-Geo-Coordinates-UTM-0.11. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 09:51:34 Modified files: math/p5-Statistics-Contingency: Makefile distinfo Log message: Update to p5-Statistics-Contingency-0.09. CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/11/11 10:09:30 Modified files: sys/arch/amd64/amd64: lapic.c Log message: Local APIC page doesn't need X permissions. ok deraadt, guenther CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/11/11 12:03:10 Modified files: usr.bin/mandoc : cgi.c main.c mansearch.c mansearch.h Log message: In man(1) mode without -a, stop searching after the first manual tree that contained at least one match in order to not prefer mdoc(1) from ports over mdoc(7). As a bonus, this results in a speedup. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/11 12:26:12 Modified files: lib/libssl/src/crypto/bio: b_dump.c bss_file.c Log message: f{read,write} take a number of items and an item size as arguments, and return the number of items read of written. When you intend to return the number of bytes actually processed, it is wise to pass 1 as the item size and the size as the number of items. But in *some* places, the OpenSSL does the opposite, and has extra logic to change a successful return of 1 (item processed) into the real size. And, guess why it does that? Because of old VMS, for they (used to) have a substandard stdio implementation. Note that this change causes the return values of BIO_dump_fp() and BIO_dump_indent_fp() to no longer be useless (actual number of callback calls), but actual bytes output. Given the irrelevance of the return value before, it is unlikely that anything depends upon it (and if something does, it probably has other problems in need for a fix...) ok tedu@ beck@ jsing@ CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 12:27:09 Modified files: math/camd : Makefile distinfo math/camd/pkg : PLIST Removed files: math/camd/pkg : PFRAG.shared Log message: Update camd to 2.4.0 While at it, switch to SuiteSparse_config and take maintainership. Comments and okay benoit@, thanks! CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 12:29:24 Modified files: math/colamd : Makefile distinfo math/colamd/pkg: PLIST Removed files: math/colamd/pkg: PFRAG.shared Log message: Update colamd to 2.9.0 While at it, switch to SuiteSparse_config and take maintainership. Comments and okay benoit@, thanks! CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/11/11 12:30:52 Modified files: math/ccolamd : Makefile distinfo math/ccolamd/pkg: PLIST Removed files: math/ccolamd/pkg: PFRAG.shared Log message: Update ccolamd to 2.9.0 While at it, switch to SuiteSparse_config and take maintainership. Comments and okay benoit@, thanks! CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/11 12:59:47 Modified files: usr.sbin/dhcpd : dhcp.c Log message: Tweak the the DHCPACK to DHCPINFORM log entry so that it is less threatening and more informative. e.g. DHCPACK on to 5c:51:4f:56:81:c3 via em0 changes to DHCPACK to 192.168.19.62 (3c:97:0e:0c:0c:d7) via em0 Issue noted and diff tested by Marc Peters. Thanks! ok yasuoka@ millert@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/11 13:57:27 Modified files: sys/dev/usb : uhub.c usbdivar.h Log message: When a bus is explored, do not probe the ports which status hasn't changed. This saves a lot of I/O when attaching/detaching devices and might help with some timing related problems. Has been in snap for ten days, committing now so that people testing xhci(4) test the same thing w/ snapshots and their own kernel. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/11/11 14:02:06 Modified files: sys/arch/macppc/macppc: clock.c sys/arch/socppc/socppc: clock.c Log message: Do not held the kernel lock when calling hardclock() and statclock(). This is not necessary, as confirmed by tedu@ and kettenis@. Solve the major contention problem seen on my Dual G5. Reduce the build time of a kernel with two jobs from 5h+ to 18min and expose more easily pmap/memroy corruptions 8) ok kettenis@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/11 14:06:24 Modified files: usr.bin/passwd : local_passwd.c Log message: use crypt_checkpass instead of crypt/strcmp CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/11 14:09:56 Modified files: share/zoneinfo/datfiles: africa asia australasia europe leapseconds northamerica southamerica Log message: Update to tzdata2014j from ftp.iana.org CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/11/11 14:31:29 Modified files: distrib/miniroot: install.sub Log message: Store autoinstaller logfile in /mnt/var/log to be available after reboot and to cope with an upcoming change to /var/tmp. Noted by and OK halex@ OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/11/11 14:36:16 Modified files: sysutils/ansible: Makefile Added files: sysutils/ansible/patches: patch-library_system_sysctl Log message: Backport bugfix "Bug sysctl on OpenBSD #287" https://github.com/ansible/ansible-modules-core/issues/287 Patch from Martijn Rijkeboer OK sthen@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/11 14:48:40 Modified files: sysutils/symon : Makefile sysutils/symon/patches: patch-platform_OpenBSD_sm_mbuf_c Log message: cope with mbpl->mbufpl name change, problem reported by Atanas Vladimirov CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/11/11 16:51:52 Modified files: lang/racket : Makefile distinfo lang/racket/patches: patch-src_racket_src_gmp_gmplonglong_h lang/racket/pkg: PLIST Removed files: lang/racket/patches: patch-racket_src_configure Log message: Update to racket 6.1.1. The installation of the shared lib is not recommended by upstream and nobody is using it, so I'm removing the lib from the package. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/11/11 19:31:47 Modified files: lib/csu : Makefile Removed files: lib/csu/alpha : Makefile lib/csu/amd64 : Makefile lib/csu/arm : Makefile lib/csu/hppa : Makefile lib/csu/hppa64 : Makefile lib/csu/i386 : Makefile lib/csu/ia64 : Makefile lib/csu/m88k : Makefile lib/csu/mips64 : Makefile lib/csu/powerpc: Makefile lib/csu/sh : Makefile lib/csu/sparc : Makefile lib/csu/sparc64: Makefile lib/csu/vax : Makefile Log message: Merge Makefiles, moving the build up a level and putting the CPU-specific build flags into conditionals in the Makefile, fixing a few inconsistencies in the process. \o/ miod@ CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/11/11 19:35:29 Modified files: lang/racket : Makefile Log message: I forgot to add the new wantlibs in the previous commit. Tested on amd64 and i386. CVSROOT: /cvs Module name: src Changes by: bentley@cvs.openbsd.org 2014/11/11 21:28:41 Modified files: usr.bin/vi/catalog: dump.c usr.bin/vi/cl : cl_funcs.c cl_main.c cl_read.c cl_screen.c cl_term.c usr.bin/vi/common: api.c cut.c delete.c exf.c key.c line.c log.c main.c mark.c msg.c options.c options_f.c put.c recover.c screen.c search.c seq.c util.c usr.bin/vi/ex : ex.c ex_abbrev.c ex_append.c ex_args.c ex_argv.c ex_at.c ex_bang.c ex_cd.c ex_cscope.c ex_delete.c ex_display.c ex_edit.c ex_equal.c ex_file.c ex_filter.c ex_global.c ex_init.c ex_join.c ex_map.c ex_mark.c ex_mkexrc.c ex_move.c ex_open.c ex_perl.c ex_preserve.c ex_print.c ex_put.c ex_quit.c ex_read.c ex_screen.c ex_script.c ex_set.c ex_shell.c ex_shift.c ex_source.c ex_stop.c ex_subst.c ex_tag.c ex_tcl.c ex_txt.c ex_undo.c ex_usage.c ex_util.c ex_version.c ex_visual.c ex_write.c ex_yank.c ex_z.c usr.bin/vi/perl_api: perlsfio.c usr.bin/vi/vi : getc.c v_at.c v_ch.c v_delete.c v_ex.c v_increment.c v_init.c v_itxt.c v_left.c v_mark.c v_match.c v_paragraph.c v_put.c v_redraw.c v_replace.c v_right.c v_screen.c v_scroll.c v_search.c v_section.c v_sentence.c v_status.c v_txt.c v_ulcase.c v_undo.c v_util.c v_word.c v_xchar.c v_yank.c v_z.c v_zexit.c vi.c vs_line.c vs_msg.c vs_refresh.c vs_relative.c vs_smap.c vs_split.c Log message: Ansify vi. ok bcallah@ millert@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/11 21:42:13 Modified files: devel/p5-Pod-Coverage: Makefile distinfo Log message: Update to p5-Pod-Coverage-0.23. Take maintainership, ok bluhm@ CVSROOT: /cvs Module name: www Changes by: miod@cvs.openbsd.org 2014/11/11 22:42:31 Modified files: . : alpha.html amd64.html armish.html aviion.html hppa.html i386.html landisk.html loongson.html luna88k.html macppc.html mvme88k.html octeon.html sgi.html socppc.html sparc.html sparc64.html vax.html zaurus.html Log message: 5.6; reminded by Daniel Jackots CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/12 00:42:47 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/pkg: PLIST Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_user_openbsd_rb Removed files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_nameservice_objectadd_rb patch-lib_puppet_provider_user_useradd_rb Log message: - add a new provider for user/group management on openbsd, so we don't have to add exceptions for openbsd all over the generic provider. - unbreak account expiration while here additional testing by sebastia@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/12 01:20:09 Modified files: devel/mingw : Makefile devel/mingw/files: specs.diff Log message: Add '-I${LOCALBASE}/mingw32/include' to '*cc1plus:' too ok pirofti@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/11/12 01:46:03 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in patch-doc_mpdconf_example Log message: Update to mpd-0.19.3 CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/11/12 02:15:08 Added files: games/wesnoth/patches: patch-CMakeLists_txt Log message: fix CMAKE_*_FLAGS_RELEASE and unbreak build of lite FLAVOR reported by naddy@, thanks! CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/12 03:07:25 Modified files: textproc/p5-Mojolicious-Plugin-TtRenderer: Makefile distinfo Log message: Update to p5-Mojolicious-Plugin-TtRenderer-1.53. From Remi Locherer, thanks CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/11/12 03:28:07 Modified files: usr.sbin/smtpd : enqueue.c Log message: truncate dead.letter CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/11/12 03:47:12 Modified files: devel/libpeas : Makefile devel/libpeas/patches: patch-tests_libpeas_engine_c patch-tests_libpeas_extension-c_c Added files: devel/libpeas/patches: patch-libpeas_peas-object-module_c patch-tests_testing-util_testing-util_c Log message: rework local patches with proposed patch from upstream CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/12 03:53:53 Modified files: www/p5-HTML-TokeParser-Simple: Makefile distinfo Log message: Update to p5-HTML-TokeParser-Simple-3.16. Take maintainership, ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: tobiasu@cvs.openbsd.org 2014/11/12 03:56:59 Modified files: lang/gcc/4.9 : Makefile gcc4.port.mk lang/gcc/4.9/patches: patch-gcc_config_gcc patch-libatomic_configure_tgt patch-libgcc_config_host lang/gcc/4.9/pkg: PLIST-main Added files: lang/gcc/4.9/patches: patch-gcc_config_arm_openbsd_h lang/gcc/4.9/pkg: PFRAG.arm-main Log message: Add ARM support to gcc 4.9 Marked broken because it uses instructions the default binutils don't understand. The port itself seems to work. I will probably post the update instructions to arm@ for those that are interested in playing with this. ok pascal@ a long time ago CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/12 05:07:13 Modified files: www/p5-HTML-TreeBuilder-XPath: Makefile distinfo Log message: Update to p5-HTML-TreeBuilder-XPath-0.14. Take maintainership, ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/12 05:19:13 Modified files: net/smokeping : Makefile net/smokeping/pkg: smokeping.rc Log message: adjust pexp again; it has to match various different modes. single-process - perl: /usr/local/bin/smokeping [FPing] multi-process - perl: /usr/local/bin/smokeping [AnotherDNS] perl: /usr/local/bin/smokeping [FPing] /usr/bin/perl /usr/local/bin/smokeping and not "/usr/bin/perl /usr/local/bin/smokeping_cgi". Not optimal as this should signal only the master process when in multi-process mode, but that can't be arranged with rc.subr's pgrep scheme (sometimes there are advantages to pidfiles). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/12 05:34:07 Modified files: graphics/darktable: Makefile Log message: reinstate compiler flags to unbreak i386 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/11/12 05:37:06 Added files: graphics/darktable/patches: patch-src_CMakeLists_txt Log message: patch needs to go back too CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/12 06:03:49 Modified files: www/p5-HTML-Tidy: Makefile distinfo Log message: Update to p5-HTML-Tidy-1.56. Take maintainership, ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/11/12 07:49:49 Modified files: textproc/p5-XML-XPathEngine: Makefile distinfo Log message: Update to p5-XML-XPathEngine-0.14. Take maintainership, ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/12 09:00:03 Modified files: usr.bin/tmux : resize.c Log message: Don't let force-width or force-height be < PANE_MINIMUM. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/12 09:06:47 Modified files: sys/dev/pci : if_ix.c if_ix.h Log message: Remove SIOCSIFMTU handling and misuse of if_mtu values for MRU Since there's now no way to select maximum receive unit size the hardware is programmed to accept frame sizes up to 9216 which is now the maximum (down from 15.5K since this is supposed to work in all advanced configurations and gives slightly better flow control watermark ranges) and split all frames larger 2K into multiple fragments (code was already there but wasn't enabled). Tested on 82599 (SFP+) and X540 (10GBaseT). With input from dlg@. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/11/12 09:29:04 Modified files: usr.bin/vi/cl : cl.h cl_funcs.c cl_main.c cl_screen.c cl_term.c usr.bin/vi/common: common.h exf.c msg.c recover.c usr.bin/vi/ex : ex_argv.c ex_cscope.c ex_init.c ex_script.c ex_tag.c script.h Removed files: usr.bin/vi/build: port.h Log message: Remove more portability bits for older systems; from Martin Natano CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/11/12 09:52:44 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: tweak previous; CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/11/12 10:52:02 Modified files: sys/crypto : gmac.c Log message: Improve performance of an internal loop by saving up on branching Pointed out by John-Mark Gurney , thanks! CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/11/12 11:21:08 Modified files: lib/libssl/src/crypto/ec: ec_curve.c Log message: Fix GOST TC26-B curve description. CVSROOT: /cvs Module name: www Changes by: juanfra@cvs.openbsd.org 2014/11/12 15:15:00 Modified files: . : want.html Log message: Add a request for an ATI radeon card. Move my other request to the loongson section. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/11/12 15:27:45 Modified files: sys/kern : sched_bsd.c Log message: take a few more ticks to actually throttle down. hopefully helps in situations where e.g. web browsing is cpu intense but intermittently idle. subject to further refinement and tuning. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/12 15:57:06 Modified files: usr.bin/tmux : cmd-split-window.c tmux.1 Log message: Add -b to splitw like joinw, from Felix Rosencrantz. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/11/12 15:59:45 Modified files: usr.bin/tmux : grid-view.c Log message: Restore change in r1.17 but add checks to prevent the line length overflowing, from Balazs Kezes. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/11/12 17:04:18 Modified files: lang/node-typescript: Makefile distinfo lang/node-typescript/pkg: PLIST Log message: Update node-typescript to 1.3.0 CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/11/12 17:33:35 Modified files: sbin/dhclient : dispatch.c Log message: Tweak some comments and error messages. Put all "I can't handle this" tests at the top of the dispatch loop. Use a 'continue' instead of 'goto