summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-04-12Update shells/lshell to 0.15.1.gls2-7/+6
Security fix. === v0.9.15.1 15/03/2012 === * Corrected security bug allowing user to get out of the restricted shell. Thank you bui from NBS System for reporting this grave issue! === v0.9.15 13/03/2012 === * Set the hostname to the "short hostname" in the prompt. * Corrected traceback when "sudo" command was entered alone. Thank you Kiran Reddy for reporting this. * Added support for python2.3 as subprocess is not included by default. * Corrected the 'strict' behavior when entering a forbidden path. * Added short path promp support using the 'prompt_short' variable. * Corrected stacktrace when group did not exist. * Add support for empty prompt. * Fixed bugs when using $() and ``. * Corrected strict behavior to apply to forbidden path. * Added support for wildcard '*' when using 'cd'. * Added support for "cd -" to return to previous directory. * Updated security issue with non printable characters permitting user to get out of the limited shell. * Now lshell automatically reload its configuration if the configuration file is modified. * Added possibility to have no "intro" when user logs in. (by setting the intro configuration field to "") * Corrected multiple commands over ssh, and aliases interpretation. * Added possibility to use wildcards in path definitions. * Finally corrected the alias replacement loop.
2012-04-12Updated lang/erlang-doc to 15.1.1asau1-1/+2
2012-04-12Updated lang/erlang-man to 15.1.1asau1-1/+2
2012-04-12Updated lang/erlang to 15.1.1asau1-1/+2
2012-04-12Added www/dojo-1.7.2darcy1-1/+2
2012-04-12Dojo is an Open Source DHTML toolkit written in JavaScript. Itdarcy6-0/+5629
builds on several contributed code bases (nWidgets, Burstlib, f(m)), which is why we refer to it sometimes as a "unified" toolkit. Dojo aims to solve some long-standing historical problems with DHTML which prevented mass adoption of dynamic web application development.
2012-04-12Reorder dependencies slightly, since ruby-actionpack requires a morejoerg1-3/+4
restrictive ruby-rack version than ruby-rack-*
2012-04-12Updated print/acroread9 to 9.5.1obache2-3/+3
2012-04-12Update acroread9 to 9.5.1, security fix for APSB12-08.obache2-8/+8
2012-04-12Override man directories and suffixes to be the same on all platforms.hans2-20/+47
2012-04-12Fix pkg/43187ryoon3-3/+22
* Add ECHO_C to end of version string. This reduce unnecessary newline. Thank you, obache@.
2012-04-12Force pkgsrc perl as tool if perl is buildlinked or a dependency on ahans1-2/+4
p5- package exists.
2012-04-12Updated converters/skf to 1.99.0obache1-1/+2
2012-04-12Update skf to 0.99.0.obache5-33/+73
skf (1.99.0) experimental; urgency=low * Unicode 6.1 support * Mime related issue fixed. * further fix for nkf compatibility. * added support for ruby 1.9.x -- Seiji Kaneko <efialtes@sourceforge.jp> Thu, 01 Mar 2012 19:40:38 +0900
2012-04-12Add localedir setting to CONFIGURE_ARGS.hans1-1/+2
2012-04-12Update to Erlang/OTP R15B01asau14-341/+394
Presumably fixes PR pkg/46297 Changes in Erlang/OTP R15B01 Highlights: * Added erlang:statistics(scheduler_wall_time) to ensure correct determination of scheduler utilization. Measuring scheduler utilization is strongly preferred over CPU utilization, since CPU utilization gives very poor indications of actual scheduler/vm usage. * Changed ssh implementation to use the public_key application for all public key handling. This is also a first step for enabling a callback API for supplying public keys and handling keys protected with password phrases. Additionally the test suites where improved so that they do not copy the users keys to test server directories as this is a security liability. Also ipv6 and file access issues found in the process has been fixed. * When an escript ends now all printout to standard output and standard error gets out on the terminal. This bug has been corrected by changing the behaviour of erlang:halt/0,1, which should fix the same problem for other escript-like applications, i.e. that data stored in the output port driver buffers got lost when printing on a TTY and exiting through erlang:halt/0,1. The BIF:s erlang:halt/0,1 has gotten improved semantics and there is a new BIF erlang:halt/2 to accomplish something like the old semantics. See the documentation. * The DTrace source patch from Scott Lystig Fritchie is integrated in the source tree. Using an emulator with dtrace probe is still not supported for production use, but may be a valuable debugging tool. * Added Torbjörn Törnkvists LDAP client as a new application called eldap. * Added options for the ssh client to support user keys files that are password protected. Changes in Erlang/OTP R15B Highlights: * Line number and filename information are now included in exception backtraces. This information will be pretty-printed in the shell and used in crash reports etc. In practice it will be much easier to find where something failed. * The driver interface has been changed to enable 64-bit aware drivers. Most importantly the return types for ErlDrvEntry callbacks 'call' and 'control' has been changed which require drivers to be changed. * New in this release is the support for 64 bit Windows. The self extracting installer can be found here. * CommonTest hooks are now in a final supported version. * There is a new GUI tool in the observer application which integrates pman, etop, appmon and tv into one tool. The tool does also contain functions for activating tracing in an easy way. * The Erlang distribution can now be run over the new SSL implementation. Changes in Erlang/OTP R15A Notable changes: OTP-9468 'Line numbers in exceptions' OTP-9451 'Parallel make' OTP-4779 A new GUI for Observer. Integrating pman, etop and tv into observer with tracing facilities. OTP-7775 A number of memory allocation optimizations have been implemented. Most optimizations reduce contention caused by synchronization between threads during allocation and deallocation of memory. Most notably: Synchronization of memory management in scheduler specific allocator instances has been rewritten to use lock-free synchronization. Synchronization of memory management in scheduler specific pre-allocators has been rewritten to use lock-free synchronization. The 'mseg_alloc' memory segment allocator now use scheduler specific instances instead of one instance. Apart from reducing contention this also ensures that memory allocators always create memory segments on the local NUMA node on a NUMA system. OTP-9632 An ERTS internal, generic, many to one, lock-free queue for communication between threads has been introduced. The many to one scenario is very common in ERTS, so it can be used in a lot of places in the future. Currently it is used by scheduling of certain jobs, and the async thread pool, but more uses are planned for the future. Drivers using the driver_async functionality are not automatically locked to the system anymore, and can be unloaded as any dynamically linked in driver. Scheduling of ready async jobs is now also interleaved in between other jobs. Previously all ready async jobs were performed at once. OTP-9631 The ERTS internal system block functionality has been replaced by new functionality for blocking the system. The old system block functionality had contention issues and complexity issues. The new functionality piggy-backs on thread progress tracking functionality needed by newly introduced lock-free synchronization in the runtime system. When the functionality for blocking the system isn't used, there is more or less no overhead at all. This since the functionality for tracking thread progress is there and needed anyway.
2012-04-12force certificate path rather than autodetect, should fix build errordrochner1-1/+3
in case certificates are not installed reported by David Holland
2012-04-12+ acroread9-9.5.1, aria2-1.15.0, imp-5.0.20, libmemcached-1.0.6,wiz1-9/+13
libpciaccess-0.13.1, puzzles-9454, python26-2.6.8, python27-2.7.3, python31-3.1.5, rudiments-0.36, turba-3.0.13, wesnoth-1.10.2.
2012-04-12Mention dirmngr PKGREVISION bump.wiz1-1/+2
2012-04-12Fix path to rc.subr.wiz2-5/+5
From Sascha Wildner in PR 46323.
2012-04-11Updated math/cloog to 0.16.2nb1wiz1-1/+2
2012-04-11Fix a sed statement to install an additional file. Bump PKGREVISION.wiz4-4/+21
From Kai-Uwe Eckhardt in private mail.
2012-04-11Forgot to add in the fixes to actually run it.darcy7-6/+98
2012-04-11+ gitso (hi darcy!)wiz1-1/+2
2012-04-11Conflict with dos2unix.ryoon1-1/+3
2012-04-11Added converters/dos2unix version 5.3.3ryoon1-1/+2
2012-04-11Add dos2unixryoon1-1/+2
2012-04-11Import dos2unix-5.3.3 as converters/dos2unix.ryoon5-0/+94
dos2unix includes utilities to convert text files with DOS or MAC line endings to Unix line endings and vice versa. It is an update of Benjamin Lin's implementations.
2012-04-11Added gitso 0.6.darcy1-1/+2
2012-04-11Gitso is a frontend to reverse VNC connections. It is meant to be a simpledarcy4-0/+75
two-step process that connects one person to another's screen. First, the support person offers to give support. Second, the person who needs help connects and has their screen remotely visible. Because Gitso is cross- platform and uses a reverse VNC connection, it greatly simplifies the process of getting and providing support.
2012-04-11Updated print/diffpdf to 1.9.2ryoon2-3/+3
2012-04-11Update to 1.9.2ryoon3-15/+18
* buildlink to print/poppler-cpp Changelog: 1.9.2 - Added missing step to the README. 1.9.1 - Save As now preserves the aspect ratio. Bug reported by Rainer Krachten. 1.9.0 - Added Czech translation provided by Pavel Fric. - Will now use the default locale's language for standard dialogs (e.g., for the file dialog). - Dragging & dropping one or two files onto the filename line edits or onto the file viewer panels is now supported. Independently suggested by Liviu Andronic and Rory Gordon. - Show Zones checkbox is always visible (it was only visible with --debug in earlier versions). - DiffPDF now starts up with its initial comparison mode being whatever comparison mode was in force when it was shut down (or Words mode the first time it is run). - Improved About box with more version info + contributors. - Added --help command line option. 1.8.0 - Introduced zoning: this can be slow in Characters mode but can provide better accuracy in text modes. 1.7.1 - Improved Character mode to be as liberal about hyphens as Words mode. - Minor doc changes that I forgot for 1.7.0. - Minor GUI bug fixes and changes. - Minor under the hood efficiency improvements. 1.7.0 - Renamed Text mode to Words mode. This mode is best for alphabetic text (e.g., English). - Added Characters mode. This mode is best for logographic text (e.g., Chinese and Japanese). This was suggested by Paul Howarth. 1.6.3 - Very minor cosmetic changes. 1.6.2 - Save button is now only enabled if there are changes. - An improved help window with slightly more information. 1.6.1 - In rare cases the highlighting on the right hand page could be in the wrong (horizontal) position; this has now been fixed. 1.6.0 - In addition to Appearance comparisons using highlighting, some composition modes can now be used to help make subtle differences more visible. (This was inspired by feedback by Florian Heiderich.) - Can now control the square size for appearance comparisons. Using very small squares can help reveal tiny Appearance differences. - Can now control the fill opacity for highlighting. - Extended zoom range from 20% to 800% (was 25% to 400%). 1.5.1 Quite a few false-positives have now been eliminated: - All hyphens are treated the same now. - Some weirdly-encoded open/close double-quotes are treated as normal Unicode open/close double-quotes. - Improved whitespace ignoring.
2012-04-11mention updatesdrochner1-1/+3
2012-04-11update to 0.11.2drochner4-13/+16
changes: -more i18n -UI improvements -bugfixes
2012-04-11+shotwell-gtk3drochner1-1/+2
2012-04-11add shotwell-0.12.1, the new major branch, based on gtk3drochner6-0/+476
2012-04-11+vala016drochner1-1/+2
2012-04-11add vala-0.16.0, the new major branch of vala (needed for newer shotwell)drochner6-0/+343
2012-04-11+librest07drochner1-1/+2
2012-04-11add librest-0.7.12 (needed for newer shotwell)drochner5-0/+100
This is API incompatible to pkgsrc/www/librest, and can coexist.
2012-04-11bump PKGREV for libgexiv2 shlib name changedrochner1-2/+2
2012-04-11update to 0.4.1 (needed for newer shotwell)drochner5-17/+17
change: thread safety improvement
2012-04-11Updated net/samba35 to 3.5.14asau1-1/+2
2012-04-11Apply official patch to address CVE-2012-1182 ("root" credential remote code ↵asau5-10/+19
execution).
2012-04-11Update to Samba 3.5.14asau2-6/+6
This is a security release in order to address CVE-2012-1182 ("root" credential remote code execution). o CVE-2012-1182: Samba 3.0.x to 3.6.3 are affected by a vulnerability that allows remote code execution as the "root" user. Changes since 3.5.13: --------------------- o Stefan Metzmacher <metze@samba.org> *BUG 8815: PIDL based autogenerated code allows overwriting beyond of allocated array (CVE-2012-1182).
2012-04-11Updated net/samba to 3.6.4asau1-1/+2
2012-04-11Update to Samba 3.6.4asau2-7/+6
This is a security release in order to address CVE-2012-1182 ("root" credential remote code execution). o CVE-2012-1182: Samba 3.0.x to 3.6.3 are affected by a vulnerability that allows remote code execution as the "root" user. Changes since 3.6.3: -------------------- o Stefan Metzmacher <metze@samba.org> *BUG 8815: PIDL based autogenerated code allows overwriting beyond of allocated array (CVE-2012-1182).
2012-04-11Updated emulators/suse121_openssl to 12.1nb2obache1-1/+2
2012-04-11Update suse121 libopenssl1_0_0 rpm to 1.0.0e-34.9.1 for CVE-2012-1165.obache2-10/+10
Bump PKGREVISION.
2012-04-10Add some patches for MirBSD support. More to come, but these are at leastbsiegert4-25/+55
sufficient to make glib2 build successfully.