summaryrefslogtreecommitdiff
path: root/sysutils
AgeCommit message (Collapse)AuthorFilesLines
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.
2015-03-08Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby.taca1-1/+2
2015-03-06add firmware.openbsd.org as MASTER_SITEtnn5-10/+15
2015-03-06Removed the "estd: Forked" messagekhorben4-5/+21
It seems useless to me, and it is inconsistent with the rest of the initialization scripts.
2015-03-05Add a new header check for sys/mman.h & use it in src/util.hsevan3-6/+23
Resolves build issue on FreeBSD as off_t is defined in sys/mman.h Reviewed by: wiz@
2015-03-05Add patches for XSA-121 and XSA-122 from upstream.spz4-3/+100
2015-03-05Add patches for XSA-121 and XSA-122 from upstream.spz4-3/+100
2015-03-05Add patches for XSA-121 and XSA-122 from upstream.spz4-3/+100
2015-03-04Fix build on !x86_64.joerg1-3/+3
2015-03-03Simplify the conditional block for Darwinpho1-2/+2
2015-03-01Unbreak build for non-OSX users.joerg1-2/+2
2015-03-01Change dependency to samba to net/samba from net/samba35.taca1-2/+3
Bump PKGREVISION.
2015-03-01Depend on the py-docutils version that has versioned binaries.wiz1-2/+2
2015-02-28Provide help for finding rst2man.joerg1-1/+2
2015-02-27change rpm build dependencies to rpm2cpiotnn1-3/+3
2015-02-27Remove stale HP-UX bulk build quirkstnn2-6/+2
2015-02-26define dummy VFS_PROTOS(fsname) which is otherwise only available under _KERNEL.tnn1-1/+2
lsof for legacy reasons includes sys/mount.h without _KERNEL but msdosfs/msdosfsmount.h with _KERNEL. Fixes: /usr/include/msdosfs/msdosfsmount.h:255:12: error: a parameter list without types is only allowed in a function definition VFS_PROTOS(msdosfs);
2015-02-24SunOS still needs SOLARIS2 defined for ip_compat.h to expose some structs.fhajny1-1/+3
2015-02-24Reset maintainer, lukem has no pkgsrc capabilities.wiz1-3/+2
2015-02-23Updated salt to version 2014.7.2imil4-33/+546
Version 2014.7.2 is a bugfix release for 2014.7.0. The changes include: Fix erroneous warnings for systemd service enabled check (issue 19606) Fix FreeBSD kernel module loading, listing, and persistence kmod (issue 197151, issue 19682) Allow case-sensitive npm package names in the npm state. This may break behavior for people expecting the state to lowercase their npm package names for them. The npm module was never affected by mandatory lowercasing. (issue 20329) Deprecate the activate parameter for pip.install for both the module and the state. If bin_env is given and points to a virtualenv, there is no need to activate that virtualenv in a shell for pip to install to the virtualenv. Fix a file-locking bug in gitfs (issue 18839) Deprecated archive_user in favor of standardized user parameter in state and added group parameter. Salt 2014.7.0 changes * New Transport * RAET Transport Option * Salt SSH Enhancements * Install salt-ssh Using pip * Fileserver Backends * Saltfile Support * Ext Pillar * No More sshpass * Pure Python Shim * Custom Module Delivery * CP Module Support * More Thin Directory Options * State System Enhancements * New Imperative State Keyword "Listen" * Mod Aggregate Runtime Manipulator * New Requisites: onchanges and onfail * Global onlyif and unless * Use names to expand and override values * Major Features * Scheduler Additions * Red Hat 7 Family Support * Fileserver Backends in salt-call * Amazon Execution Modules * LXC Runner Enhancements * Next Gen Docker Management * Peer System Performance Improvements * SDB * GPG Renderer * OpenStack Expansion * Queues System * Multi Master Failover Additions * Chef Execution Module * salt-api Project Merge * Synchronous and Asynchronous Execution of Runner and Wheel Modules * rest_cherrypy Additions * Web Hooks * Generating and Accepting Minion Keys * Fileserver Backend Enhancements * New gitfs Features * Pygit2 and Dulwich * Mountpoints * Environment Whitelisting/Blacklisting * Expanded Authentication Support * New hgfs Features * Mountpoints * Environment Whitelisting/Blacklisting * New svnfs Features * Mountpoints * Environment Whitelisting/Blacklisting * Configurable Trunk/Branches/Tags Paths * New minionfs Features * Mountpoint * Changing the Saltenv from Which Files are Served * Minion Whitelisting/Blacklisting * Pyobjects Renderer * New Modules * New Runners * New External Pillars * New Salt-Cloud Providers * Salt Call Change * Deprecations * salt.modules.virtualenv_mod
2015-02-21Recursive revbump from audio/pulseaudio.ryoon1-2/+2
2015-02-21+ upowerjmcneill1-1/+2
2015-02-21Import upower-0.99.2 as sysutils/upower.jmcneill5-0/+80
UPower is an abstraction for enumerating power devices, listening to device events and querying history and statistics. Any application or service on the system can access the org.freedesktop.UPower service via the system message bus. Some operations (such as suspending the system) are restricted using PolicyKit.
2015-02-19Sort.wiz1-2/+2