summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-07-12Fix MASTER_SITES.wiz2-5/+4
2015-07-12Escape braces in intltool-update. This is evident when using the --versionrodent2-1/+49
option. The programme emits deprecation warnings which break package builds which depend on that output being sane.
2015-07-12Updated wm/ratpoison to 1.4.8wiz1-1/+2
2015-07-12Update to 1.4.8, provided by Mayuresh on pkgsrc-users.wiz5-42/+11
* Changes since 1.4.7 This is mostly a bugfix release. ** fix cmd_sfdump with multiple screens Broken since last release, from Joshua Leners. ** respect --enable-history=no From Jeroen Roovers (jer@gentoo). ** fix for sloppy.c The ugly sloppy.c had "a bug". It may be fixed now. ** README improvements From Jeff Abrahamson. * Changes since 1.4.6 ** More fixes and code cleanup. ** UTF-8 editing support in the input bar ** get rid of "XGetWMName failed" spam on stderr Introduced in the previous release, sorry! ** groups can now be renumbered (`gnumber') ** contrib/rpdate.sh, fancy calendar shell script to use instead of `time' ** fix `meta', which was sending garbage and made firefox unusable ** handle errors about missing config files - ratpoison -f missing-config-file -> error - unreadable ~/.ratpoisonrc file -> warning ** respect --sysconfdir for the global ratpoisonrc file Rather than a hardcoded /etc/ratpoisonrc location. ** rpws gains a new `current' command (prints the current workspace) ** new manpage, mdoc(7) formatted ** X socket closed before spawning processes Let's save those precious file descriptors. ** DWIM windows/groups names matching Window and group names are first looked up for exact match; in last resort a fuzzy match is attempted. ** try to cope with unset/empty HOME env. variable ** ratpoison.el is now installed at the proper location ie. in $prefix/share/emacs/site-lisp/ ** ratpoison now restricts permissions on your history file * Changes since 1.4.5 ** *Lots* of reliability fixes in ratpoison itself Please check out the ChangeLog for more details. ** Build process cleanup e.g. detection of getline() was fixed, build is ok with old gcc's (2.95) ** ratpoison -c now reports errors ($? != 0) ** UTF-8 text is now printed correctly Both with and without Xft support. ** contrib/ cleanup Scripts should be more portable, ruby bindings work with newer ruby versions. ** New newwindow and titlechanged hooks ** Functionality was added to rpws It can now move windows to other workspaces; workspaces can be dumped and restored.
2015-07-12Updated games/lgogdownloader to 2.24wiz1-1/+2
2015-07-12Update to 2.24:wiz2-7/+6
LGOGDownloader 2.24 - Downloader::repairFile now creates new XML data on filesize mismatches - Added check for extras missing filenames * Extras without filename are skipped - Added order-only prerequisite to OBJ_RELEASE and OBJ_DEBUG in Makefile - Added option to ignore DLC count information * --ignore-dlc-count option sets regular expression for games to ignore DLC count * Game specific option "ignore-dlc-count" can be set in $XDG_CONFIG_HOME/lgogdownloader/gamename.conf - Better startup time when using --game regex especially when using generic --ignore-dlc-count='.*' (patch by: Petr BÄhan) - Added support for Brazilian Portuguese - Platform and language constants are now set using left shift to make code easier to understand - Better handling of connection issues * Assume that we have connection error and abort/retry transfer if download speed is less than 200 B/s for 30 seconds - Fixed issue with incomplete files when using --status option - JSON parsing failure in Downloader::getGames is assumed to be caused by expired cookies and user is told to try --login - Fixed handling large files on 32 bit platforms (patch by: Erik Fleischer) - The downloader now deletes old cookies before login attempt when using --login * Helps with some login issues - Json::Reader::getFormattedErrorMessages is now used instead of deprecated getFormatedErrorMessages * jsoncpp >= 0.6.0 required
2015-07-12Updated www/p5-HTTP-Message to 6.08wiz1-1/+2
2015-07-12Update to 6.08:wiz2-7/+6
6.08 2015-07-10 - Resolve new uninitialized warning from HTTP::Request::Common::request_type_with_data (RT#105787) 6.07 2015-07-09 - Allow subclasses to override the class of parts - it used to be hardcoded to HTTP::Message. (Gisle Aas, RT#79239) - Added support for is_client_error, is_server_error to HTTP::Response (Karen Etheridge) - Added flatten interface to HTTP::Headers (Tokuhiro Matsuno, GH#5) - Allow PUT to pass content data via hashrefs just like with POST (Michael Schilli, GH#9) - Fix for "Content-Encoding: none" header (Gisle Aas, RT#94882) - Add support for HTTP status 308, defined in RFC 7238 (Olivier Mengué, RT#104102) - drop the use of "use vars" (Karen Etheridge)
2015-07-12Updated cad/py-simpy to 3.0.8wen2-3/+3
2015-07-12Update to 3.0.8wen3-85/+88
Update LICENSE HOMEPAGE and MASTER_SITES Now it is python3 compatible Complete test target Upstream changes: 3.0.8 2015-06-23 [NEW] Added a monitoring guide to the documentation. [FIX] Improved packaging (thanks to Larissa Reis). [FIX] Fixed and improved various test cases. 3.0.7 2015-03-01 [FIX] State of resources and requests were inconsistent before the request has been processed (issue #62). [FIX] Empty conditions were never triggered (regression in 3.0.6, issue #63). [FIX] Environment.run() will fail if the until event does not get triggered (issue #64). [FIX] Callback modification during event processing is now prohibited (thanks to Andreas Beham). 3.0.6 - 2015-01-30 [NEW] Guide to SimPy resources. [CHANGE] Improve performance of condition events. [CHANGE] Improve performance of filter store (thanks to Christoph Körner). [CHANGE] Exception tracebacks are now more compact. [FIX] AllOf conditions handle already processed events correctly (issue #52). [FIX] Add sync() to RealtimeEnvironment to reset its internal wall-clock reference time (issue #42). [FIX] Only send copies of exceptions into processes to prevent traceback modifications. [FIX] Documentation improvements. 3.0.5 2014-05-14 [CHANGE] Move interruption and all of the safety checks into a new event (pull request #30) [FIX] FilterStore.get() now behaves correctly (issue #49). [FIX] Documentation improvements. 3.0.4 2014-04-07 [NEW] Verified, that SimPy works on Python 3.4. [NEW] Guide to SimPy events [CHANGE] The result dictionary for condition events (AllOF / & and AnyOf / |) now is an OrderedDict sorted in the same way as the original events list. [CHANGE] Condition events now also except processed events. [FIX] Resource.request() directly after Resource.release() no longer successful. The process now has to wait as supposed to. [FIX] Event.fail() now accept all exceptions derived from BaseException instead of only Exception. 3.0.3 2014-03-06 [NEW] Guide to SimPy basics. [NEW] Guide to SimPy Environments. [FIX] Timing problems with real time simulation on Windows (issue #46). [FIX] Installation problems on Windows due to Unicode errors (issue #41). [FIX] Minor documentation issues. 3.0.2 2013-10-24 [FIX] The default capacity for Container and FilterStore is now also inf. 3.0.1 2013-10-24 [FIX] Documentation and default parameters of Store didn’t match. Its default capacity is now inf. 3.0 2013-10-11 SimPy 3 has been completely rewritten from scratch. Our main goals were to simplify the API and code base as well as making SimPy more flexible and extensible. Some of the most important changes are: Stronger focus on events. Processes yield event instances and are suspended until the event is triggered. An example for an event is a timeout (formerly known as hold), but even processes are now events, too (you can wait until a process terminates). Events can be combined with & (and) and | (or) to create condition events. Process can now be defined by any generator function. You don’t have to subclass Process anymore. No more global simulation state. Every simulation stores its state in an environment which is comparable to the old Simulation class. Improved resource system with newly added resource types. Removed plotting and GUI capabilities. Pyside and matplotlib are much better with this. Greatly improved test suite. Its cleaner, and the tests are shorter and more numerous. Completely overhauled documentation.
2015-07-12dtcpclientdholland1-1/+2
2015-07-12Use BROKEN_EXCEPT_ON_PLATFORM for package requiring minor porting.dholland1-2/+2
2015-07-12Remove bogus ONLY_FOR_PLATFORM.dholland1-3/+1
Note that it currently doesn't build at all (AFAICT) so the mere fact that it doesn't build on some buggix 0.9 release isn't indicative of much. If in the future there turn out to be platforms it really doesn't build for, use BROKEN_ON_PLATFORM, or ONLY_FOR_PLATFORM if it'll really never work as opposed to nobody feels like bothering to fix it.
2015-07-12The game debugger tool is not provided as a patch file. It was submittedpgoyette1-3/+3
and accepted by upstream.
2015-07-12typodholland1-1/+1
2015-07-12Relax ONLY_FOR_PLATFORM to *-*-i386. Was limited to NetBSD, FreeBSD, anddholland1-2/+2
Linux but there's no obvious reason in the source and it's just been that way since the package was first added a long time ago.
2015-07-12systrace was removed in NetBSD 5.0; update ONLY_FOR_PLATFORM accordingly.dholland1-2/+2
(probably this package should be removed entirely)
2015-07-12Add MirBSD and Bitrig to ONLY_FOR_PLATFORM; should just build. Also,dholland1-2/+3
the package explicitly claims to support Linux, so add that too.
2015-07-12Add MirBSD and Bitrig to ONLY_FOR_PLATFORM. They most likely won'tdholland1-2/+3
build out of the box but should require only minor attention.
2015-07-12Add MirBSD and Bitrig to ONLY_FOR_PLATFORM. They won't build out ofdholland1-2/+3
the box, but should only require minor attention. This way they stand some chance of getting it.
2015-07-12Use BROKEN_EXCEPT_ON_PLATFORM for package requiring porting. Thisdholland1-7/+3
depends on tunneling interfaces and such, so porting isn't entirely trivial; but most remaining pkgsrc platforms are like one it already supports.
2015-07-12Expand ONLY_FOR_PLATFORM: the package internally thinks it supportsdholland1-2/+3
Solaris, so enable that; and if it works on NetBSD and Dragonfly with a single "bsd" setting we can reasonably assume that it will work on FreeBSD and OpenBSD (and MirBSD and Bitrig) with only minor adjustments. These probably won't all quite work out of the box yet, but that's what bulk runs are for.
2015-07-12Use BROKEN_EXCEPT_FOR_PLATFORM for package that needs porting. Also,dholland1-2/+3
update the list from the package's own build system (taken from common/Imakefile) - this adds FreeBSD, and also OSF1 and IRIX. Probably porting this package requires nothing besides flogging imake.
2015-07-12Don't use "*BSD" in ONLY_FOR_PLATFORM as it is both andholland1-2/+3
underapproximation (doesn't match some of the newer variants) and possibly an overapproxmation (matches "GNUkFreeBSD", which most likely won't work)... write it out instead. Also, this way if we ever get canned infrastructure support for this list, grep will find this case.
2015-07-12Sync the logic that decides whether to pull in openssl with the makefiledholland1-2/+9
logic that decides whether to use -lcrypto. These need to stay the same to avoid the possibility of getting a silent dependence on a (possibly very old) builtin openssl. Of course, all it uses -lcrypto for is MD5, but still... PKGREVISION -> 1. XXX: this probably shouldn't be using MD5 anyway :-/
2015-07-12Drop ONLY_FOR_PLATFORM. A quick review of the source shows nothingdholland1-4/+1
particularly BSD-specific. It might not build on vintage SVR3 but we probably don't care... and it will probably need minor patching on Solaris and Linux but we can do that.
2015-07-12Use BROKEN_EXCEPT_ON_PLATFORM instead of ONLY_FOR_PLATFORM for packagedholland1-2/+2
that needs porting.
2015-07-12Remove bogus ONLY_FOR_PLATFORM. This package is just a .jar file (withoutdholland1-3/+1
even any docs to speak of) and will run anywhere that has a suitable Java VM.
2015-07-12Remove bogus ONLY_FOR_PLATFORM. This package is just a .jar file anddholland1-3/+1
some docs, so it'll run anywhere there's a suitable JVM. It seems that the ONLY_FOR_PLATFORM setting was originally inserted to conservatively limit the package to platforms that had or where pkgsrc could provide a JVM, and then both persisted after that was no longer necessary and got cargo-culted elsewhere.
2015-07-12Drop spurious ONLY_FOR_PLATFORM. This package is a binary blobdholland1-3/+1
(it's a .jar file and some docs) so it will run on anything. XXX: packages that are binary blobs ought to be tagged somehow
2015-07-12Set SPECIAL_PERMS and use user-destdir mode instead of privilegeddholland3-11/+15
destdir mode.
2015-07-12Updated math/p5-Number-Tolerant to 1.706wen1-1/+2
2015-07-12Update to 1.706wen2-7/+6
Upstream changes: 1.706 2015-03-22 12:27:08-04:00 America/New_York - do not allow offsets with inverted/broken offset values 1.705 2014-11-16 13:59:01-05:00 America/New_York - correct reversed-order of parameters in documentation for Test::Tolerant 1.704 2014-10-30 23:11:41-04:00 America/New_York - do not rely on feature.pm -- that was an accident 1.703 2014-02-01 19:31:40-05:00 America/New_York - overload tolerances for ~~ operator (thanks, Smylers!) 1.702 2013-10-07 10:22:17 America/New_York update bugtracker avoid circular loading problems (with a nasty hack) fix spelling error; thanks, Alexandre Mestiashvili!
2015-07-12Updated databases/p5-DBIx-Class-Helpers to 2.030001wen1-1/+2
2015-07-12Update to 2.030001wen2-8/+7
Update DEPENDS Upstream changes: 2.030001 2015-07-10 22:38:58-07:00 America/Los_Angeles - Make ::Schema::Verifier aggregate errors instead of dying on first one 2.030000 2015-07-01 10:11:42-07:00 America/Los_Angeles - Add ::Row::OnColumnMissing (Thanks ZipRecruiter!) 2.029000 2015-06-27 14:16:31-07:00 America/Los_Angeles - Add ::ResultSet::OneRow (Thanks Aran Deltac!) 2.028000 2015-05-30 17:06:01-05:00 America/Chicago - Add ::Verifier::RelationshipColumnName (Thanks for the idea mcsnolte!) - Add ::ResultSet::Shortcut::Search (Closes GH#44 and GH#47) (Thanks moltar!) 2.027001 2015-05-16 11:47:15-05:00 America/Chicago - Fix missing POD in ::ResultSet::Explain 2.027000 2015-05-08 19:35:13-05:00 America/Chicago - Add ::Verifier::Parent 2.026000 2015-05-02 00:27:28-05:00 America/Chicago - Add new ::Schema::Verifier framework - ... including inaugural ::Verifier::C3
2015-07-12Updated databases/p5-DBIx-Class to 0.082820wen1-1/+2
2015-07-12Update to 0.082820wen2-8/+7
Update DEPENDS Upstream changes: 0.082820 2015-03-20 20:35 (UTC) * Fixes - Protect destructors from rare but possible double execution, and loudly warn the user whenever the problem is encountered (GH#63) - Relax the 'self_result_object' argument check in the relationship resolution codepath, restoring exotic uses of inflate_result http://lists.scsys.co.uk/pipermail/dbix-class/2015-January/011876.html - Fix updating multiple CLOB/BLOB columns on Oracle - Fix exception on complex update/delete under a replicated setup http://lists.scsys.co.uk/pipermail/dbix-class/2015-January/011903.html - Fix uninitialized warnings on empty hashes passed to join/prefetch https://github.com/vanstyn/RapidApp/commit/6f41f6e48 and http://lists.scsys.co.uk/pipermail/dbix-class/2015-February/011921.html - Fix hang in t/72pg.t when run against DBD::Pg 3.5.0. The ping() implementation changes due to RT#100648 made an alarm() based timeout lock-prone. * Misc - Remove warning about potential side effects of RT#79576 (scheduled) - Various doc improvements (GH#35, GH#62, GH#66, GH#70, GH#71, GH#72) - Depend on newer Moo, to benefit from a safer runtime (RT#93004) - Fix intermittent failures in the LeakTracer on 5.18+ - Fix failures of t/54taint.t on Windows with spaces in the $^X executable path (RT#101615)
2015-07-12Another PKGREVISION bump for a reimport.wiz1-2/+2
2015-07-12Update comments for gnome option.wiz1-1/+2
2015-07-12Added net/gnome-online-accounts version 3.16.3wiz1-1/+2
2015-07-12+ gnome-online-accounts.wiz1-1/+2
2015-07-12Import gnome-online-accounts-3.16.3 as net/gnome-online-accounts.wiz4-0/+405
Gnome Online Accounts (GOA) provides a centralized service that allows a set of online accounts to be configured for use with core GNOME applications. In UX terms, GOA provides a static list of online accounts that can be setup by users (through the Online Accounts panel in System Settings). These accounts can then be used by core GNOME applications. While third party applications can access the accounts setup through GOA, this is not its explicit goal, nor does GOA set out to enable third party applications to add online accounts of their own. There are several reasons for this: * Third-party applications should be able to identify themselves to online services for the purposes of branding and tracking. * Third-party applications shouldn't be able to identify themselves under a generic OS or distributor key - this would be misleading as to what is actually accessing the account, and would prevent there from being specific contracts of trust between users and applications who access their data. * It would prevent users from blocking specific applications from accessing their account (should an application sandboxing framework come into effect).
2015-07-12Updated www/webkit-gtk to 2.8.1wiz2-3/+3
2015-07-12Added www/webkit24-gtk version 2.4.9nb1wiz1-1/+2
2015-07-12Update to 2.8 and new 4.0 webkit API. From Leonardo Taccari in pkgsrc-wip.wiz24-908/+503
2.8.1 What’s new in the WebKitGTK+ 2.8.1 release? Handle keep-alive connections in GStreamer HTTP source element. Fix a crash in DOMObjectCache when a wrapped object owned by the cache is unreffed by the user. Fix rendering of drag and drop icon. Fix the build with REDIRECTED_XCOMPOSITE_WINDOW disabled in X11 platform. Fix the build with Wayland target enabled. Fix the build for HPPA. 2.8 Highlights of the WebKitGTK+ 2.8.0 release Initial gestures support. HTML5 notifications. User script messages. HTML5 color input. APNG support. Performance improvements. Playing audio notification signal. Web view background colors. and lots of changes in the 2.6 series; major changes in 2.6 were: Highlights of the WebKitGTK+ 2.6.0 release WebKit1 API has been removed. Switch to CMake build system. Binary version bump to make WebKit1 and WebKit2 parallel installable. Several API changes. The DOM bindings API has been split into stable and unstable parts. Support for browser plugins using GTK+3, leaving the GTK+2 dependency optional for building a plugin process with support for GTK+2 plugins. HighDPI support for non-accelerated compositing contents. Dynamic user agent string depending on the site. User scripts API.
2015-07-12Switch from www/webkit-gtk to www/webkit24-gtk. Bump PKGREVISION.wiz7-19/+20
2015-07-12+ webkit24-gtk.wiz1-1/+2
2015-07-12Re-import webkit-gtk as webkit24-gtk-2.4.9nb1 as www/webkit24-gtk to makewiz23-0/+1236
space for the next major version. WebKit is an open source web browser engine. WebKit is also the name of the Mac OS X system framework version of the engine that's used by Safari, Dashboard, Mail, and many other OS X applications. WebKit's HTML and JavaScript code began as a branch of the KHTML and KJS libraries from KDE. This is the GTK2+ port of the engine of the 2.4 series.
2015-07-11Always install man-pagessevan2-15/+96
Patch from maintainer. Reviewed by wiz@
2015-07-11Fix previous (hi martin! PKGVERSION != PKGREVISION)wiz1-2/+2