summaryrefslogtreecommitdiff
path: root/sysutils
AgeCommit message (Collapse)AuthorFilesLines
2015-04-012.0 (2014-06-19)rodent2-6/+6
---------------- Documentation ************* - Extend support to Python 3.4, deprecating Python 3.2. - Issue #198: Mention Zake as a sophisticated kazoo mock testing library. - Issue #181: Add documentation on basic logging setup.
2015-03-30Regen distinfo.gdt1-2/+3
(Apparently I added a comment to one of the new patches after creating distinfo and testing. Thanks to joerg@ for pointing out the issue.)
2015-03-27Add 2 fixes to for amanda-server to work on NetBSD.gdt5-4/+103
While amanda-client 3.3 has been stable on NetBSD for a while, the server code has apparently never worked. This commit adds several patches: - include sys/{types,time}.h so autoconf tape drive checks pass - improve error messages when tape drive code is not compiled in - avoid perl crash in report generation These changes have been tested on NetBSD 6 kernel with NetBSD 5 userland, amd64 (for no good reason, but this was the machine with the tape drive), dumping many machines and writing to LTO. The first two patches are taken from an upstream patch committed to the 3.3 branch due to this problem being reported. The third patch is ad hoc based on perl debugging, and needs further investigation. (But it's better to get a report without a header line than an empty mail message.)
2015-03-27Patches to fix compilation on SunOS. From Richard PALO in private mail.bsiegert3-1/+32
2015-03-27Update to 20150121:msaitoh3-10/+10
Add the following files (CPU family 6 model 3d, 3e and 3f): 000306d4-6 000306d4-7 000306e7-0 000306e7-2 000306e7-3 000306e7-5 000306e7-6 000306e7-7 000306f2-0 000306f2-1 000306f2-2 000306f2-3 000306f2-5 000306f2-6
2015-03-26Racy build.joerg1-1/+4
2015-03-23Revbump because of security/libbsh2 update.nros1-2/+2
2015-03-22SECURITY: Update file to 5.22.bsiegert8-133/+6
Bugs fixed: * restructure elf note printing to avoid repeated messages * add note limit, suggested by Alexander Cherepanov * Bail out on partial pread()'s (Alexander Cherepanov) * Fix incorrect bounds check in file_printable (Alexander Cherepanov) * PR/405: ignore SIGPIPE from uncompress programs * change printable -> file_printable and use it in more places for safety * Fix for CVE-2014-9620.
2015-03-21Fix configure to compile on i386.gdt2-5/+7
We are carrying a patch for configure to include -li386 on i386/i486, but the upstream script is missing the [] intended to match multiple subfamilies, and hence does not match. This commit just adds in the missing [], enabling compilation to succeed on i386, and not changing anything on !i386.
2015-03-21fix build with clang ... but mark the package as BROKEN because even thoughtnn5-6/+48
it builds now, the resulting binary does not boot in qemu.
2015-03-19Fix format string on ILP32 platforms with 64bit time_t.joerg3-5/+6
2015-03-19Don't go past _XOPEN_SOURCE=600 on SunOS.jperkin2-1/+21
2015-03-18Fix build with Clang.joerg3-3/+35
2015-03-18Fix build with versioned spinx.joerg1-2/+4
2015-03-18Fix two bugs in a three line function.joerg2-1/+17
2015-03-16Add patch from GIT repository to improve AMT protocol support.tron5-8/+160
This stops "amtterm" from disconnecting repeatedly from the ME of a Lenovo ThinkServer TS140.
2015-03-15Set MAINTAINER to pkgsrc-users.hiramatsu1-2/+2
2015-03-15Set MAINTAINER to pkgsrc-users.hiramatsu1-2/+2
2015-03-15Set MAINTAINER to pkgsrc-users.hiramatsu1-2/+2
2015-03-15Set MAINTAINER to pkgsrc-users.hiramatsu1-2/+2
2015-03-15needs msgfmt and friendstnn1-2/+2
2015-03-15wants to link with pthreadstnn1-1/+2
2015-03-15needs pthreadstnn1-2/+2
2015-03-14needs termcaptnn1-1/+2
2015-03-14Don't leak tooldir paths. Ride previous bump.tnn1-1/+3
2015-03-14Has runtime dependencies on at least gtar(1), gip(1) and bzip2(1).tnn1-3/+3
Bump PKGREVISION.
2015-03-14pkg_alternatives support was added, too.taca1-0/+2
2015-03-14Update capistrano to 3.4.0.taca3-18/+25
Changes are too many to write here, please refer CHANGELOG.md.
2015-03-13fix iconv linkage when converters/libiconv is in usetnn1-2/+5
2015-03-13- g/c url2pkg markertnn1-2/+2
- needs gettext-lib as gettext support is enabled
2015-03-13Fix PKGMANDIR supporttnn1-51/+51
2015-03-13Update ruby-listen to 2.9.0.taca3-42/+19
Changes are too many to write here, please refer: https://github.com/guard/listen/releases.
2015-03-13Add and enable ruby-rb-inotify.taca1-1/+2
2015-03-13Add ruby-rb-inotify 0.9.5.taca4-0/+40
This is a simple wrapper over the inotify Linux kernel subsystem (http://en.wikipedia.org/wiki/Inotify) for monitoring changes to files and directories. It uses the FFI (http://wiki.github.com/ffi/ffi) gem to avoid having to compile a C extension.
2015-03-13Update ruby-childprocess to 0.5.5.taca2-6/+6
* Longer sleep (increase stability but won't affect runtime). * Work around JRuby problem. * Spec environment unset in parent is unset in parent when set in grandparent. * Remove environment variables not in ENV that are in ProcessBuilder environment. * Remove unnecessary stringification of ENV keys MSP-11414 Unlike @environment, which is a generic Hash, ENV is guarenteed to be <String, String>, so remove the keys #to_s calls for ENV.
2015-03-13xsa119-unstable.patch from upstream:spz3-3/+46
By default qemu will try to create some sort of backend for the emulated VGA device, either SDL or VNC. However when the user specifies sdl=0 and vnc=0 in their configuration libxl was not explicitly disabling either backend, which could lead to one unexpectedly running. If either sdl=1 or vnc=1 is configured then both before and after this change only the backends which are explicitly enabled are configured, i.e. this issue only occurs when all backends are supposed to have been disabled. This affects qemu-xen and qemu-xen-traditional differently. If qemu-xen was compiled with SDL support then this would result in an SDL window being opened if $DISPLAY is valid, or a failure to start the guest if not. Passing "-display none" to qemu before any further -sdl options disables this default behaviour and ensures that SDL is only started if the libxl configuration demands it. If qemu-xen was compiled without SDL support then qemu would instead start a VNC server listening on ::1 (IPv6 localhost) or 127.0.0.1 (IPv4 localhost) with IPv6 preferred if available. Explicitly pass "-vnc none" when vnc is not enabled in the libxl configuration to remove this possibility. qemu-xen-traditional would never start a vnc backend unless asked. However by default it will start an SDL backend, the way to disable this is to pass a -vnc option. In other words passing "-vnc none" will disable both vnc and sdl by default. sdl can then be reenabled if configured by subsequent use of the -sdl option. Tested with both qemu-xen and qemu-xen-traditional built with SDL support and: xl cr # defaults xl cr sdl=0 vnc=0 xl cr sdl=1 vnc=0 xl cr sdl=0 vnc=1 xl cr sdl=0 vnc=0 vga=\"none\" xl cr sdl=0 vnc=0 nographic=1 with both valid and invalid $DISPLAY. This is XSA-119.
2015-03-13xsa119-4.2.patch from upstream:spz3-4/+50
From b6e327fde6c365086594e2b46edf435aa1671b1a Mon Sep 17 00:00:00 2001 From: Ian Campbell <ian.campbell@citrix.com> Date: Fri, 20 Feb 2015 14:41:09 +0000 Subject: [PATCH] tools: libxl: Explicitly disable graphics backends on qemu cmdline By default qemu will try to create some sort of backend for the emulated VGA device, either SDL or VNC. However when the user specifies sdl=0 and vnc=0 in their configuration libxl was not explicitly disabling either backend, which could lead to one unexpectedly running. If either sdl=1 or vnc=1 is configured then both before and after this change only the backends which are explicitly enabled are configured, i.e. this issue only occurs when all backends are supposed to have been disabled. This affects qemu-xen and qemu-xen-traditional differently. If qemu-xen was compiled with SDL support then this would result in an SDL window being opened if $DISPLAY is valid, or a failure to start the guest if not. Passing "-display none" to qemu before any further -sdl options disables this default behaviour and ensures that SDL is only started if the libxl configuration demands it. If qemu-xen was compiled without SDL support then qemu would instead start a VNC server listening on ::1 (IPv6 localhost) or 127.0.0.1 (IPv4 localhost) with IPv6 preferred if available. Explicitly pass "-vnc none" when vnc is not enabled in the libxl configuration to remove this possibility. qemu-xen-traditional would never start a vnc backend unless asked. However by default it will start an SDL backend, the way to disable this is to pass a -vnc option. In other words passing "-vnc none" will disable both vnc and sdl by default. sdl can then be reenabled if configured by subsequent use of the -sdl option. Tested with both qemu-xen and qemu-xen-traditional built with SDL support and: xl cr # defaults xl cr sdl=0 vnc=0 xl cr sdl=1 vnc=0 xl cr sdl=0 vnc=1 xl cr sdl=0 vnc=0 vga=\"none\" xl cr sdl=0 vnc=0 nographic=1 with both valid and invalid $DISPLAY. This is XSA-119.
2015-03-12wants to link with libpthreadtnn1-1/+2
2015-03-12needs iconv()tnn1-1/+2
2015-03-11Updated to version 3.8.9.nils3-11/+11
Changelog is : 3.8.8 -> 3.8.9 - Add new directive "createolddir" and "nocreateolddir". These directives can be used to create the directory specified by olddir with particular "mode", "owner" and "group". - Continue with rotation even when first log from logset is removed during the rotation. - Fix crash on BSD systems introduced in 3.8.8 caused by different qsort_r function. Function qsort is now used instead. - Fix potential buffer overflow in usage of strncat function. - Fix compilation with musl-libc. - Add experimental 'renamecopy' directive to allow 'olddir' on different physical device. See the "man logrotate" for more information. 3.8.7 -> 3.8.8 - Add support for building using autotools/automake. Using "./autogen.sh", "./configure" and "make" is now preferred way how to build logrotate. Old Makefile remains available, but it is deprecated and will be removed in the future. Please report any problem related to new build system. - Add support for systems which do not support fork (use vfork instead) and madvise. - Fix bug when wrong log file has been removed in case of dateext and dateformat %d-%m-%Y. - Do not expect that the name of root account is 'root'. - Do not stop rotation with an error when olddir and log file are on different devices and copy or copytruncate is used. - Return an error code when parent directory of log does not exist, "su" directive is not used, logrotate is running as root and missingok is not specified. [vcizek] - Prepend error printed by compression program with the log name even when the compression program exits with zero exit code. pkgsrc change : took over maintainership.
2015-03-10xsa123-4.3-4.2.patch from upstream:spz3-3/+26
x86emul: fully ignore segment override for register-only operations For ModRM encoded instructions with register operands we must not overwrite ea.mem.seg (if a - bogus in that case - segment override was present) as it aliases with ea.reg. This is CVE-2015-2151 / XSA-123.
2015-03-10xsa123.patch from upstream:spz3-3/+24
x86emul: fully ignore segment override for register-only operations For ModRM encoded instructions with register operands we must not overwrite ea.mem.seg (if a - bogus in that case - segment override was present) as it aliases with ea.reg. This is CVE-2015-2151 / XSA-123.
2015-03-10xsa123-4.3-4.2.patch from upstream:spz3-3/+27
x86emul: fully ignore segment override for register-only operations For ModRM encoded instructions with register operands we must not overwrite ea.mem.seg (if a - bogus in that case - segment override was present) as it aliases with ea.reg. This is CVE-2015-2151 / XSA-123.
2015-03-10Added sysutils/lastfss version 0.manu1-1/+2
2015-03-10Add lastfss, an utilisty to maintain ephemeral snapshots for a few hoursmanu4-0/+23
2015-03-10set LICENSEtnn1-3/+2
drop useless bsd.prefs.mk
2015-03-09Recursive bump for poppler-0.32.0 shlib major bump.wiz2-4/+4
2015-03-08Wrong, fix typo.taca1-2/+2
2015-03-08Oops, really bump PKGREVISION.taca1-2/+2
2015-03-08Fix ALTERNATIVES.taca2-2/+3
Bump PKGREVISION.