Commit graph

246552 commits

Author SHA1 Message Date
tnn
f3b733e937 patch CVE-2013-7447 2016-03-13 03:45:53 +00:00
tnn
77b2d03dea GTK+ 2.24.30
* X11:
 - Support Randr 1.5 monitor information
* Bug fixes:
 722815 OS X: Deliver GdkModifierType during 'drag-motion'
 612611 Fix interaction between scrolling menus and automatic mnemonics
 699652 win32: On focus restore the window if iconified
 698652 win32: Properly handle show and focus
        OS X: Fix clipboard image retrieval
        OS X: Fix a crash when fullscreening
 758893 Prevent status icon size dithering
* Translation updates:
 Japanese
 Thai
2016-03-13 03:32:59 +00:00
ryoon
692d956480 Updated lang/scala to 2.11.8 2016-03-13 03:17:09 +00:00
ryoon
0c895029ed Update to 2.11.8
Changelog:
Scala 2.11.8 is now available!
March 8, 2016

We are pleased to announce the availability of Scala 2.11.8!

Significant changes since 2.11.7 include:

    The Scala REPL now has robust and flexible tab-completion (details below)
    An assortment of bugs have been fixed

Compared to 2.11.7, this release resolves 44 issues. We merged 175 pull requests.

As usual for minor releases, Scala 2.11.8 is binary compatible with other releases in the Scala 2.11 series.

The last planned 2.11.x release will be 2.11.9 in late 2016.
New tab-completion in the Scala REPL

The implementation of tab-completion in the Scala REPL has been rewritten and now uses the same infrastructure as for example Scala IDE and ENSIME.

There are a number of improvements:

    Reliable completion, also in partial expressions and syntactically incorrect programs: try class C { def f(l: List[Int]) = l.<TAB>
    CamelCase completion: try (l: List[Int]).rro<TAB>, it expands to (l: List[Int]).reduceRightOption
    Show desugarings performed by the compiler by adding //print: try for (x <- 1 to 10) println(x) //print<TAB>
    Complete bean getters without typing get: try (d: java.util.Date).day<TAB>
    Find members by typing any CamelCased part of the name: try classOf[String].typ<TAB> to get getAnnotationsByType, getComponentType and others
    Complete non-qualified names, including types: try def f(s: Str<TAB>
    Press tab twice to see the method signature: try List(1,2,3).part<TAB>, which completes to List(1,2,3).partition; press tab again to display def partition(p: Int => Boolean): (List[Int], List[Int])

Thanks to @retronym and @som-snytt for their fruitful collaboration on this work!


Scala 2.11.7 is now available!
June 23, 2015

We are very pleased to announce the availability of Scala 2.11.7!

We would like to highlight the following changes:

    Exhaustivity checking for pattern matching is now much snappier — thank you @gbasler! (SI-9181)
    A 300x more embeddable Scala REPL, brought to you by a team effort with Apache Spark. Thank you @ScrapCodes, @retronym & co! (#4548, #4563)
    Scala also <3 INDYs – experiment with all our favorite new Java 8 features as follows and get an exclusive sneak preview of 2.12.0-M2!
    Oh, and the spec is now much spiffier! Thanks, @soc!

Compared to 2.11.6, this release resolves 53 issues. We merged 124 pull requests (out of 157). Before upgrading, please also check the known issues for this release.

As usual for minor releases, Scala 2.11.7 is binary compatible with other releases in the Scala 2.11 series.
2016-03-13 03:16:41 +00:00
ryoon
befdc498ed Updated security/p11-kit to 0.22.1 2016-03-13 03:11:05 +00:00
ryoon
67962f5abb Update to 0.22.1
Changelog:
0.22.1 (stable)
 * Use SubjectKeyIdentifier for CKA_ID when available [#84761]
 * Allow 'BEGIN PuBLIC KEY' PEM blocks in .p11-kit files
 * Bump libtool library version
 * Build fixes [#84665 ...]

0.22.0 (stable)
 * Remove the 'isolated = yes' option due to unclear semantics
   replacement forth coming in later versions.
 * Use secure_getenv() where necessary
 * Run separate binary for 'p11-kit remote' command

0.21.3 (unstable)
 * New public pkcs11x.h header containing extensions [#83495]
 * Export necessary defines to lookup attached extensions [#83495]
 * Use term 'attached extensions' rather than 'stabled extensions'
 * Make proxy module respect 'critical = no' [#83651]
 * Show public-key-info in 'trust list --details'
 * Build fixes [#75674 ...]

0.21.2 (unstable)
 * Don't use invalid keys for looking up stapled extensions [#82328]
 * Better error messages when invalid certificate extensions
 * Fix parsing of some odd OpenSSL TRUSTED CERTIFICATE files
 * Fix some leaks, and memory issues
 * Silence some clang scanner warnings
 * Fix build against older pthread implementations [#82617]
 * Move to a non-recursive Makefile
 * Can now specify which tests to run on command line

0.21.1 (unstable)
 * Add new 'isolate' pkcs11 config option [#80472]
 * Add 'p11-kit remote' command for isolating modules [#54105]
 * Don't complain about C_Finalize after a fork
 * Other minor fixes

0.20.3 (stable)
 * Fix problems reinitializing managed modules after fork
 * Fix bad bookeeping when fail initializing one of the modules
 * Fix case where module would be unloaded while in use [#74919]
 * Remove assertions when module used before initialized [#74919]
 * Fix handling of mmap failure and mapping empty files [#74773]
 * Stable p11_kit_be_quiet() and p11_kit_be_loud() functions
 * Require automake 1.12 or later
 * Build fixes for Windows [#76594 #74149]

0.20.2 (stable)
 * Fix bug where blacklist didn't affect extracted ca-anchors if the anchor
   and blacklist were not in the same trust path (regression) [#73558]
 * Check for race in BasicConstraints stapled extension [#69314]
 * autogen.sh now runs configure as srcdir != builddir by default
 * Build fixes and cleanup

0.20.1 (stable)
 * Extract compat trust data after we've changes
 * Skip compat extraction if running as non-root
 * Better failure messages when removing anchors
 * Build cleanup

0.20.0 (stable)
 * Doc fixes

0.19.4 (unstable)
 * 'trust anchor' now adds/removes certificate anchors
 * 'trust list' lists trust policy stuff
 * 'p11-kit extract' is now 'trust extract'
 * 'p11-kit extract-trust' is now 'trust extract-compat'
 * Workarounds for working on broken zfsonlinux.org [#68525]
 * Add --with-module-config parameter to the configure script [#68122]
 * Add support for removing stored PKCS#11 objects in trust module
 * Various debugging tweaks

0.19.3 (unstable)
 * Fix up problems with automake testing
 * Fix a bunch of memory leaks in newly refactored code
 * Don't use _GNU_SOURCE and the unportability it brings
 * Testing fixes

0.19.2 (unstable)
 * Add basic 'trust anchor' command to store a new anchor
 * Support for writing out trust token objects
 * Port to use CKA_PUBLIC_KEY_INFO and updated trust store spec
 * Add option to use freebl for hashing
 * Implement reloading of token data
 * Fix warnings and possible minor bugs higlighted by code scanners
 * Don't load configs in home directories when running setuid or setgid
 * Support treating ~/.config as $XDG_CONFIG_HOME
 * Use $XDG_DATA_HOME/pkcs11 as default user config directory
 * Use $TMPDIR instead of $TEMP while testing
 * Open files and fds with O_CLOEXEC
 * Abort initialization if a critical module fails to load
 * Don't use thread-unsafe functions: strerror, getpwuid
 * Fix p11_kit_space_strlen() result when empty string
 * Refactoring of where various components live
 * Build fixes

0.19.1 (unstable)
 * Refactor API to be able to handle managed modules
 * Deprecate much of old p11-kit API
 * Implement concept of managed modules
 * Make C_CloseAllSessions function work for multiple callers
 * New dependency on libffi
 * Fix possible threading problems reported by hellgrind
 * Add log-calls option
 * Mark p11_kit_message() as a stable function
 * Use our own unit testing framework

0.18.3 (stable)
 * Fix reinitialization of trust module [#65401]
 * Fix crash in trust module C_Initialize
 * Mac OS fixes [#57714]

0.18.2 (stable)
 * Build fixes [#64378 ...]

0.18.1 (stable)
 * Put the external tools in $libdir/p11-kit
 * Documentation build fixes

0.18.0 (stable)
 * Fix use of trust module with gcr and empathy [#62896]
 * Further tweaks to trust module date parsing
 * Fix unaligned memory reads [#62819]
 * Win32 fixes [#63062, #63046]
 * Debug and logging tweaks [#62874]
 * Other build fixes

0.17.5 (unstable)
 * Don't try to guess at overflowing time values on 32-bit systems [#62825]
 * Test fixes [#927394]

0.17.4 (unstable)
 * Check for duplicate certificates in a token, warn and discard [#62548]
 * Implement a proper index so we have decent load performance

0.17.3 (unstable)
 * Use descriptive labels for the trust module tokens [#62534]
 * Remove the temporary built in distrust objects
 * Make extracted output directories and files read-only [#61898]
 * Don't export unneccessary ABI
 * Build fixes [#62479]

0.17.2 (unstable)
 * Fix build on 32-bit linux
 * Fix several crashers

0.17.1 (unstable)
 * Support a p11-kit specific PKCS#11 attribute persistance format [#62156]
 * Use the SHA1 hash of SPKI as the CKA_ID in the trust module by default [#62329]
 * Refactor a trust builder which builds objects out of parsed data [#62329]
 * Combine trust policy when extracting certificates [#61497]
 * The extract --comment option adds comments to PEM bundles [#62029]
 * A new 'priority' config option for ordering modules [#61978]
 * Make each configured path its own trust module token [#61499]
 * Use --with-trust-paths to configure trust module [#62327]
 * Fix bug decoding some PEM files
 * Better debug output for trust module lookups
 * Work around bug in NSS when doing serial number lookups
 * Work around broken strndup() function in firefox
 * Fix the nickname for the distrusted attribute
 * Build fixes

0.16.4 (stable)
 * Display per command help again [#62153]
 * Don't always print tools debug output [#62152]

0.16.3 (stable)
 * When iterating don't skip tokens without the CKF_TOKEN_INITIALIZED flag
 * Hardcode some distrust records for NSS temporarily
 * Parse global options better in the p11-kit command
 * Better debugging

0.16.2 (stable)
 * Fix regression in 'p11-kit extract --purpose' option [#62009]
 * Documentation updates
 * Build fixes [#62001, ...]

0.16.1 (stable)
 * Don't break when cA field of BasicConstraints is missing [#61975]
 * Documentation fixes and updates
 * p11-kit extract-trust is a placeholder script now

0.16.0 (stable)
 * Update the pkcs11.h header for new mechanisms
 * Fix build and tests on mingw64 (ie: win32)
 * Relicense LGPL code to BSD license
 * Documentation tweaks
 * Pull translations from Transifex [#60792]
 * Build fixes [#61739, #60894, #61740]

0.15.2 (unstable)
 * Add German and Finish translations
 * Better define the libtasn1 dependency
 * Crasher and bug fixes
 * Build fixes

0.15.1 (unstable)
 * Fix some memory leaks
 * Add a location for packages to drop module configs
 * Documentation updates and fixes
 * Add command line tool manual page
 * Remove unused err() function and friends
 * Move more code into common/ directory and refactor
 * Add a system trust policy module
 * Refactor how the p11-kit command line tool works
 * Add p11-kit extract and extract-trust commands
 * Don't complain if we cannot access ~/.pkcs11/pkcs11.conf
 * Refuse to load the p11-kit-proxy.so as a registered module
 * Don't fail initialization if last initialized module fails

0.14
 * Change default for user-config to merge
 * Always URI-encode the 'id' attribute in PKCS#11 URIs
 * Expect a .module extension on module configs
 * Windows compatibility fixes
 * Testing fixes
 * Build fixes

0.13
 * Don't allow reading of PIN files larger than 4096 bytes
 * If a module is not marked as critical then ignore init failure
 * Use preconditions to check for input problems and out of memory
 * Add enable-in and disable-in options to module config
 * Fix the flags in pin.h
 * Use gcc extensions to check varargs during compile
 * Fix crasher when a duplicate module is present
 * Fix broken hashmap behavior
 * Testing fixes
 * Win32 build fixes
 * 'p11-kit -h' now works
 * Documentation fixes

0.12
 * Build fix

0.11
 * Remove automatic reinitialization of PKCS#11 after fork
2016-03-13 03:10:36 +00:00
tnn
19dc894ad6 fix perl syntax deprecation warnings 2016-03-13 01:02:44 +00:00
tnn
07832692d0 Mark as only for NetBSD. Depends on bpf, tty APIs, if_ether.h and so on ... 2016-03-12 23:09:13 +00:00
ryoon
696a7e9117 Bump PKGREVISION
* Install configuration file to proper location
2016-03-12 23:07:33 +00:00
tnn
6336dd01a6 needs -lm on Linux 2016-03-12 23:02:11 +00:00
tnn
5ab0508270 adapt struct devops to current Solaris DDI 2016-03-12 22:17:51 +00:00
tnn
b624e9f123 MAKEFLAGS -> MAKE_FLAGS (pkgsrc guide 22.1) 2016-03-12 21:53:39 +00:00
khorben
d8dbc296fa Also register "-pie" as a known argument for gcc(1)
As suggested by wiz@
2016-03-12 21:22:04 +00:00
asau
43f8d287ff Updated math/fricas to 1.2.7 2016-03-12 20:57:13 +00:00
asau
df19c7a300 Update to FriCAS 1.2.7
Changes:

- New package implementing van Hoej factorization algorithm
  for LODO-s.

- Gcd over Expression(Integer) now uses modular method.

- Improvements to integrator, in partucular trigonomoetric
  functions are consistently integrated via transformation
  to complex exponentials.

- Some categories and domains are more general. In particular
  OrderedFreeMonoid is removed, as ordered case is handled
  by FreeMonoid.

- Category Monad in renamed to Magma. Domain Magma is
  renamed to  FreeMagma.

Bug fixes, in particular:

- Coercion of square matrices to polynomials is fixed.

- Problem with division by 0 in derivative of 'ellipticPi'
  is fixed.

- Division in Ore algebras used to cause infinite loop
  when coefficients were power series.
2016-03-12 20:54:23 +00:00
wiz
78fb396cc9 Updated math/ruby-gsl to 2.1.0 2016-03-12 13:38:42 +00:00
wiz
36e838b18a Update ruby-gsl to 2.1.0.
This version comes with extra Linux tmp files; reported upstream as
	https://github.com/SciRuby/rb-gsl/issues/34

Changes:

Support for gsl-2.1.0.
Support for nmatrix (not in pkgsrc yet)
2016-03-12 13:38:33 +00:00
tnn
4ef62c4256 Needs pthreads. set PTHREAD_AUTO_VARS. Fixes build on NetBSD. 2016-03-12 12:34:44 +00:00
tnn
42627cffd8 add editors/hexcurse 2016-03-12 12:05:37 +00:00
tnn
5915552a00 Import hexcurse-1.60.0 as editors/hexcurse.
Hexcurse is an ncurses-based hex editing utility that can open, edit and save
files, editing both the hexadecimal and decimal values.

It currently supports searching, hex and decimal address output, jumping to
specified locations in the file, "undo" capabilities, "bolded" modifications,
EBCDIC mode, and quick keyboard shortcuts to commands.
2016-03-12 12:03:54 +00:00
ryoon
baeca9195d Updated sysutils/upower to 0.99.4 2016-03-12 11:51:06 +00:00
ryoon
6b21363d4e Update to 0.99.4
Changelog:
Version 0.99.4
~~~~~~~~~~~~~~
Released: 2016-02-16

New Features:
 - Add support for Logitech G700s/G700 Gaming Mouse (muzena)
 - Port to GDBus (Cosimo Cecchi)
 - Support g_autoptr() for all libupower-glib object types (Kalev Lember)

Bugfixes:
 - Add critical action support for *BSD (Eric Koegel)
 - Change the default low battery policy to percentage (Bastien Nocera)
 - Fix deprecation warning in integration-test (Bastien Nocera)
 - Fix memory leak in up_client_get_devices() (Bastien Nocera)
 - Fix possible double-free (Bastien Nocera)
 - Update HID rules and fix build regression (Arnaud Quette)
2016-03-12 11:50:08 +00:00
tnn
ebeb476ed1 add textproc/ansifilter 2016-03-12 11:50:05 +00:00
tnn
46c69b6487 Import ansifilter-1.15 as textproc/ansifilter.
Ansifilter converts text containing ANSI terminal escape codes into
markup (HTML, LaTeX, TeX, RTF) or plaintext (stripping the escape codes).
Such text is produced for instance by the script(1) utility.
Colors, boldface, underline, italic and blink are supported.
2016-03-12 11:49:19 +00:00
adam
5c6c008820 Updated devel/git to 2.7.3 2016-03-12 11:34:38 +00:00
adam
4d2c6f7650 Changes 2.7.3:
* Traditionally, the tests that try commands that work on the
  contents in the working tree were named with "worktree" in their
  filenames, but with the recent addition of "git worktree"
  subcommand, whose tests are also named similarly, it has become
  harder to tell them apart.  The traditional tests have been renamed
  to use "work-tree" instead in an attempt to differentiate them.

* Many codepaths forget to check return value from git_config_set();
  the function is made to die() to make sure we do not proceed when
  setting a configuration variable failed.

* Handling of errors while writing into our internal asynchronous
  process has been made more robust, which reduces flakiness in our
  tests.

* "git show 'HEAD:Foo[BAR]Baz'" did not interpret the argument as a
  rev, i.e. the object named by the the pathname with wildcard
  characters in a tree object.

* "git rev-parse --git-common-dir" used in the worktree feature
  misbehaved when run from a subdirectory.

* The "v(iew)" subcommand of the interactive "git am -i" command was
  broken in 2.6.0 timeframe when the command was rewritten in C.

* "git merge-tree" used to mishandle "both sides added" conflict with
  its own "create a fake ancestor file that has the common parts of
  what both sides have added and do a 3-way merge" logic; this has
  been updated to use the usual "3-way merge with an empty blob as
  the fake common ancestor file" approach used in the rest of the
  system.

* The memory ownership rule of fill_textconv() API, which was a bit
  tricky, has been documented a bit better.

* The documentation did not clearly state that the 'simple' mode is
  now the default for "git push" when push.default configuration is
  not set.

* Recent versions of GNU grep are pickier when their input contains
  arbitrary binary data, which some of our tests uses.  Rewrite the
  tests to sidestep the problem.

* A helper function "git submodule" uses since v2.7.0 to list the
  modules that match the pathspec argument given to its subcommands
  (e.g. "submodule add <repo> <path>") has been fixed.

* "git config section.var value" to set a value in per-repository
  configuration file failed when it was run outside any repository,
  but didn't say the reason correctly.

* The code to read the pack data using the offsets stored in the pack
  idx file has been made more carefully check the validity of the
  data in the idx.
2016-03-12 11:33:32 +00:00
ryoon
bb54a5fbc4 Recursive revbump from libxklavier-5.4 2016-03-12 11:28:36 +00:00
ryoon
c2c4c2b7ad Updated x11/libxklavier to 5.4 2016-03-12 11:13:22 +00:00
ryoon
f40ab7ab04 Update to 5.4
* Buildlink gobject-introspection

Changelog:
5.4     A couple of introspection fixes
5.3     A number of introspection and build fixes
5.2.1   Fixed GIR params for introspection (broken build)
5.2     Optional introspection introduced
        Some minor fixes (runtime and build-time)
5.1     Expanding APIs for GNOME 3 needs (bumped soname):
        - converting ISO codes to translatable names (it was private, now public)
        - search by pattern
        Using to X11 API throgh pkg-config
        One race condition eliminated
        XInput2 version checking: looking for support of DevicePresence
2016-03-12 11:12:40 +00:00
fhajny
bbcd554969 Updated databases/py-cassandra-driver to 3.1.0 2016-03-12 09:54:05 +00:00
fhajny
55a594055e Update databases/py-cassandra-driver to 3.1.0.
Features
- Pass name of server auth class to AuthProvider
- Surface schema agreed flag for DDL statements
- Automatically convert float and int to Decimal on serialization
- Eventlet Reactor IO improvement
- Make pure Python ProtocolHandler available even when Cython is
  present
- Optional Cython deserializer for bytes as bytearray
- Add Session.default_serial_consistency_level
- cqlengine: Expose prior state information via cqlengine
  LWTException
- cqlengine: Collection datatype "contains" operators support
  (Cassandra 2.1)
- cqlengine: Add DISTINCT query operator
- cqlengine: Tuple cqlengine api
- cqlengine: Add support for UPDATE/DELETE ... IF EXISTS statements
- cqlengine: Allow nested container types
- cqlengine: Add ability to set query's fetch_size and limit
- cqlengine: Internalize default keyspace from successive set_session
- cqlengine: Warn when Model.create() on Counters

Bug Fixes
- Bus error (alignment issues) when running cython on some ARM
  platforms
- Overflow when decoding large collections (cython)
- Timer heap comparison issue with Python 3
- Cython deserializer date overflow at 2^31 - 1
- Decode error encountered when cython deserializing large map
  results
- Don't require Cython for build if compiler or Python header
  not present
- Unorderable types in task scheduling with Python 3
- cqlengine: Fix crash when updating a UDT column with a None value
- cqlengine: Race condition in ..connection.execute with lazy_connect
- cqlengine: doesn't support case sensitive column family names
- cqlengine: UserDefinedType mandatory in create or update
- cqlengine: db_field breaks UserType
- cqlengine: UDT badly quoted
- cqlengine: Use of db_field on primary key prevents querying except
  while tracing.
- cqlengine: DateType.deserialize being called with one argument
  vs two
- cqlengine: Querying without setting up connection now throws
  AttributeError and not CQLEngineException
- cqlengine: BatchQuery multiple time executing execute statements.
- cqlengine: Better error for management functions when no connection
  set
- cqlengine: Handle None values for UDT attributes in cqlengine
- cqlengine: Fix inserting None for model save
- cqlengine: EQ doesn't map to a QueryOperator (setup race condition)
- cqlengine: class.MultipleObjectsReturned has DoesNotExist as base
  class
- cqlengine: Typo in cqlengine UserType __len__ breaks attribute
  assignment

Other
- cqlengine: a major improvement on queryset has been introduced.
  It is a lot more efficient to iterate large datasets: the rows
  are now fetched on demand using the driver pagination.
- cqlengine: the queryset len() and count() behaviors have changed.
  It now executes a "SELECT COUNT(*)" of the query rather than
  returning the size of the internal result_cache (loaded rows).
  On large queryset, you might want to avoid using them due to
  the performance cost. Note that trying to access objects using
  list index/slicing with negative indices also requires a count
  to be executed.
2016-03-12 09:53:53 +00:00
fhajny
266d1d8f64 Remove php-oauth 2.0.0 update request 2016-03-12 09:44:45 +00:00
fhajny
14362336e3 Enable php-oauth1 2016-03-12 09:44:14 +00:00
fhajny
fe0436805e Updated security/php-oauth to 2.0.1 2016-03-12 09:43:34 +00:00
fhajny
e71a890621 Update security/php-oauth to 2.0.1.
2.0.1
* Fix multiple segfaults (kgovande, rlerdorf)

2.0.0
- PHP 7 Support
- Bug 67658: configure does not detect missing pcre.h
- Bug 67665: update fetch to accept 20X HTTP ranges
- Bug 67883: check SERVER[REDIRECT_HTTP_AUTHORIZATION]
  for the Authorization header
2016-03-12 09:42:48 +00:00
fhajny
f8a5c9a7d4 Re-import security/php-oauth as security/php-oauth1 (for PHP<7).
OAuth is an authorization protocol built on top of HTTP which allows
applications to securely access data without having to store usernames
and passwords.
2016-03-12 09:39:57 +00:00
fhajny
93208ac87c Remove php-http 3.0.0 and deps, sort 2016-03-12 09:29:30 +00:00
tnn
6ba7ed7f37 configure insists that it wants a C++ preprocessor, so let it for now 2016-03-12 09:27:19 +00:00
fhajny
7c3bf8cb8d Enable www/php-http3 and deps 2016-03-12 09:26:51 +00:00
fhajny
4b2d90bacb Added www/php-http3 and deps 2016-03-12 09:15:58 +00:00
fhajny
61494c0624 Import www/php-http2 3.0.1 (the PHP 7 variant of www/php-http).
This HTTP extension aims to provide a convenient and powerful
set of functionality for one of PHPs major applications.

It eases handling of HTTP urls, dates, redirects, headers and
messages, provides means for negotiation of clients preferred
language and charset, as well as a convenient way to send any
arbitrary data with caching and resuming capabilities.
2016-03-12 09:15:15 +00:00
fhajny
348c480b46 Import devel/php-propro2 2.0.0 (the PHP 7 variant of devel/php-propro).
Property proxy: A reusable split-off of pecl_http's property proxy API.
2016-03-12 09:12:52 +00:00
fhajny
c3fa6373c8 Import devel/php-raphf2 2.0.0 (the PHP 7 variant of devel/php-raphf).
Reusable split-off of pecl_http's persistent handle and resource factory API.
2016-03-12 09:11:01 +00:00
wiz
a3ec2cee00 Remove duplicate if. Ride bump. 2016-03-12 09:06:29 +00:00
wiz
c64e7f9d01 Updated pkgtools/lintpkgsrc to 4.92 2016-03-12 09:05:30 +00:00
wiz
61eb8ead24 Remove non-working -V option from lintpkgsrc. Bump version.
From Taylor Stearns <tstearns@pobox.com> in PR 42172.
2016-03-12 09:05:22 +00:00
wiz
68622841c3 Updated x11/modular-xorg-xephyr to 1.18.2 2016-03-12 08:51:15 +00:00
wiz
bdb42a2966 Updated x11/modular-xorg-server to 1.18.2 2016-03-12 08:51:04 +00:00
wiz
e8bcc4cc14 Update modular-xorg-server (and -xephyr) to 1.18.2.
A big pile of updates in this one. Highlights include:

- glamor is updated to use OpenGL core profiles if available, which
should improve memory usage and performance on modern hardware, and got
some other performance improvements for rpi and other GLES platforms

- DRI2, DRI3, and Present all received correctness fixes for hangs,
crashes, and other weirdness

- Xwayland server has been updated to support the Xv and the
xf86vidmode extensions for better compatibility, and fixed some bugs
with output hotplug and pointer updates

- Xwin saw improvements to window and clipboard management, and a few
new keyboard layouts
2016-03-12 08:50:50 +00:00
fhajny
2a19825c74 Clear PKGREVISION on update 2016-03-12 08:39:47 +00:00