Commit graph

8064 commits

Author SHA1 Message Date
joerg
00f9d27c07 Explicitly add library path for gdbm and iconv, don't depend on the
implicit one added by the wrappers.
2014-12-03 14:00:57 +00:00
joerg
ff321b08ab Support cwrappers for packages appending arguments in the wrappers. 2014-12-01 12:39:16 +00:00
joerg
20f2d2f76e Works with IAS now. 2014-12-01 11:29:26 +00:00
spz
9a75bfced7 add patches for CVE-2012-3543 and CVE-2012-3382 from upstream 2014-11-30 21:51:44 +00:00
spz
30664b516f master site seems to have reorganized itself, adjust to new link 2014-11-30 18:11:23 +00:00
spz
98c02dcb4d dragonfly patch ought to ifdef __DragonFly__ 2014-11-30 08:50:26 +00:00
spz
447a8172f3 Update of Mono to version 3.10.0
Also: general patch refresh

Upstream release notes:

Mono 3.10.0 is a bugfix release with a few features.

Highlights

    Implemented System.IO.Compression.FileSystem.
    Uri now implements the .NET 4.5 behavior, it can be reverted to
    the old behavior in the same way by setting the System.Uri::s_IriParsing
    static field to false.

Performance

    Remove unnecessary locking from core metadata parsing functions.
    Avoid cache thrashing of locals array when looping over enumerator.

Known Issues

    The OSX packages have an invalid libgdiplus library that affects
    users of System.Drawing that requires it to work.
    This specially affects Xamarin.Mac users that fit the following criteria:

    Uses Xamarin.Mac Classic (Unified is unaffected).
    Uses the subsets of System.Drawing that use libgdiplus.dylib internally
    - System.Drawing.RectangleF, PointF, Colors are unaffected
    - System.Drawing.Bitmap, and font for example are affected

    The symptom of the problem is your application failing with:
    “System.TypeInitializationException: An exception was thrown by
    the type initializer for
    System.Drawing.GDIPlus —> System.Exception: GdiplusStartup”

Bug fixes
+++++++++
Runtime

    Fix support for unaligned offsets in the store_membase_imm opcodes.
    Fixes #23267.
    Fix the lookup of nested types which have a namespace. Fixes #21653.
    Increase some opcode sizes. Fixes #23026.
    Always pass the imt arg to interface calls in gsharedvt methods.
    Fixes #22624.
    Store the epilog length in MonoArchEHJitInfo instead of encoding
    it in jinfo->unwind_desc, since the latter can overflow for methods
    with large epilogs. Fixes #22685.
    Add a mono_thread_detach_if_exiting () public api function which
    can be called by embedding code to detach the runtime if the code
    is running from a pthread dtor. Fixes #21164.
    Fix yet another native types problem. Fixes #22053.
    Fix the leaking of mach ports introduced by
    98bbf8512aec0fa01b4426583280f6d231d22187. Fixes #22068.
    Add support for constrained calls with vtype return types in
    gsharedvt code. Fixes #22109.
    Fix the PLATFORM_GNU check so it works with gnueabi etc. as well.
    Fixes #21520.
    Don’t make runtime invoke signatures generic. Fixes #21973.
    Allow v8..v15 in unwind info on arm64. Fixes part of #21615.
    Fix Process.PrivateMemorySize64 etc. on ios. Fixes #21882.
    Fix enum->int casts in gsharedvt code. Fixes #21893.
    Don’t assert when loading a generic methodspec with 0 arity. Fixes #19097.
    Avoid asserting when a cattr cannot be loaded. Fixes #21653.
    Avoid making generic calls from gsharedvt methods normally, go
    through the rgctx infrastructure instead. Fixes #21677.

Class Libraries

    Fix Uri UserInfo parsing. Fixes 23246.
    Update RequestMessage.RequestUri.AbsoluteUri after redirect. Fixes #22383.
    Fixes XContainer attempt to create a XNode from a null value. Fixes #20151.
    Changed XObject OnChanged and OnChanging to use Owner. When
    XObject.Owner is not a XElement XObject.Parent returns null and the
    owner would not be notified of changing and changed events. Fixes #18772.
    Process XslLiteralElements with only child attributes as empty ones.
    Fixes #14751.
    ‘finally’ protect ClientRuntimeChannel.Begin/EndProcess(). Fixes #22179.
    WebClient.OpenWrite() must get the response on close. Fixes #10163.
    Fix WebClient.UploadValuesTaskAsync(); Fixes #20359.
    Improve System.Security.Claims. Fixes #22282.
    Fixed serialization of XmlNode field with attribute XmlAnyElement.
    Fixes #3211.
    Handle String::Format with escaped closing }. Fixes #22114
    Add a missing check to TypeBuilder.CreateType (). Fixes #22059.
    Xml Serialization of Base class w/o a parameterless constructor.
    Removed validation code that did not allowed serialization of
    base classes without a parameterless constructor. Fixes #6913.
    Fixed XmlSerializer to handle attribute XmlSchemePrivider.IsAny.
    XmlSerializer no longer outputs a root element with class name when
    the class has the attribute XmlSchemeProvider and IsAny is true.
    Fixes #11916
    Test that DeflateStream.Read does read an empty stream. Covers #19313.
    Reseting all private key values to null is required because a new
    import may not overwrite existing values. Fixes #18482.
    Handle quoted filename value. Fixes #21960.
    Dispose XmlReader using correct value. Fixes #21771.

C# Compiler

    Don’t use `1 naming for compiler generated second level and deeper
    nested types. Fixes #22893.
    Extend missing type check to type lookups. Fixes #20933.
    Fix copy and paste error in constraints checker. Fixes #22131.
    Speed up nullable tokenizer. Fixes #20195.
    Coalescing operator if the lhs of a null is a integer type that is
    larger than the integer type on the rhs. Fixes #22054.
    Check for duplicate destructors. Fixes #21983.
    Switch statement with constant block at first label. Fixes #21805.
    Decimal constants modulo folding. Fixes #21743.
    Update codegen for boolean loads. Fixes #21685.

MSBuild

    Workaround for issues with CreateItem task where metadata are
    not generated due to up-to-data inputs. Fixes #23022.
    Add KeepDuplicates etc. to 4.0 as internal. Fixes #20961.

------------------------------------------------------------------------
Mono 3.8.0 has 711 commits since the last release.
This is the work of 61 contributors since May 28. 58 bugs were fixed.

Highlights

    Major performance and scalability improvements across the the whole runtime.
    Finished the Windows 64 port.
    Debugger wire protocol optimized for usb connections.

Debugger

    Updated wire protocol better handles high latency connections such
    as those found when doing USB debugging.
    Client library now aggressively caches information and batches
    requests. Under one test scenario single stepping packets
    transmitted dropped from 2233 to only 16, with the latency going
    from seconds to 20 milliseconds.

Performance

    The JIT now better handles long remainders by powers of two,
    generating significantly better code.
    Over 10x faster code is generated for delegates that are only
    invoked once. C# features such as async and LINQ produce a lot of
    those delegates, so this improvement will impact everyone.
    Improved alias analysis can now handle second order aliases and
    eliminate null checks.
    The runtime now has a concurrently readable hashtable that can
    makes reflection heavy workloads significantly faster and more scalable.

Garbage Collection

    Optimized one of the core data structures of the garbage collector;
    should result in 5-10% reduction in collection times.

Bug fixes
+++++++++
Runtime

    Fix the leaking of mach ports introduced by
    98bbf8512aec0fa01b4426583280f6d231d22187. Fixes #22068
    Fix Process.PrivateMemorySize64 etc. on ios. Fixes #21882
    Fix enum->int casts in gsharedvt code. Fixes #21893
    Avoid making generic calls from gsharedvt methods normally, go
    through the rgctx infrastructure instead. Fixes #21677
    Fix another native-types problem. Hopefully fixes #21670 and #21636
    Use alias information to eliminate explicit null checks. Fixes #21645
    Initialize fields in MonoField:GetFieldOffset () if needed.
    Fixes part of #21604
    Properly handle rethrow outside of catch blocks. Fixes #20412
    Disable runtime unit tests on linux, because it cannot be linked
    due to circular dependencies between libraries. Fixes #21520
    When parsing a method header, ensure we pass any available generic
    context. Fixes #21388
    Added new mono_domain_set_config function; used to fix
    ConfigurationErrorsException in #10468
    Only apply the maverick stack size hack to the main thread. Fixes #10096
    Don’t hardcode the temp dir to /tmp, use g_get_tmp_dir instead.
    Fixes #20894
    Explicit thread GC data around instead of relying on TLS storage.
    Fixes #20360
    Make WaitForPendingFinalizers () really wait for the finalizers
    added by a previous GC. Fixes #20503
    Fix the marshal7.cs test, longs can be aligned to 4 bytes on
    32 bit linux, and the runtime no longer aligns structure sizes
    to 8 bytes. Fixes #20788
    Fix the popping of LMF frames during unwinding. Fixes #20616
    Fix the marshalling of ByValTStr types which have a size specified.
    Fixes #20674
    Fix the decoding of MonoJitInfo. Fixes #16439
    Make it possible to create views to magic zero size files such as
    /dev/zero. Fixes #19460
    Free static bound delegate wrappers of dynamic methods. Fixes #19058
    Don’t perform double accounting of offset for named memory segments.
    Fixes #20591
    Avoid joining attached threads. Fixes #19343
    Fix support for custom marshallers defined in other assemblies.
    Fixes #20020
    Fix a jit assertion on a class which contains an empty struct as
    a static field. Fixes #20349
    Applied patch from Kyle Edwards kyleedwardsny@gmail.com.
    Fix isinf () check with clang. Fixes #20244
    Fix constrained type unwrap for enum types. Fixes #18371

Class Libraries

    Handle quoted filename value. Fixes #21960
    Correctly handle partial chunk sizes. Fixes #20583
    Tweak Dictionary initial capacity to be more conservative. Fixes #21375
    Handle closed-over-null delegates created with IL when using
    InvokeDynamic. Fixes #21196
    Fix a race in a Task test. Fixes #20921
    Contract the values array when decoding an array with a negative
    number and a trailer that evals to zero. Fixes #20456
    Fixes issue with expression columns and IsNull. Fixes #20925
    Array qsort without head allocation. Fixes #20922
    Enum::TryParse ignores leading whitespaces. Fixes #20870
    Fix disposing of DelegatingHandler. Fixes #20818
    Fix digest authentication (bug #18799)
    Only recycle ServicePoints from the idle timer (fixes #19823)
    Changed ConcurrentDictionary.Contains(KeyValuePair<TKey, TValue>)
    to also compare value. Fixes #16990
    Add System.ServiceModel.Security assembly. Fixes #20108
    Removed NET_2_1 conditional blocks from FileInfo. Fixes #19862

C# Compiler

    Update codegen for boolean loads. Fixes #21685
    Effective base class can include inherited types. Fixes #21390
    Handle duplicate resume point registration. Fixes #21387
    Arguments can be empty when reporting missing params argument. Fixes #21215
    Flow analysis of moved arguments. Fixes #20983
    Run new initializer await checks only in async context. Fixes #20614
    Parse numeric expressions using invariant culture. Fixes #20582
    Reachability analysis should ignore local variables declarations.
    Fixes #20603
    Check for missing dependencies of container types. Fixes #20382
    Resolve event expression when testing left side expression. Fixes #20493
    Flow analysis of binary expressions not using logical operators.
    Fixes #20515

MSBuild

    Add 4.5.1 framework. Fixes #20827
    Parsing conditions with property references. Fixes #20634
    Implements property functions using constructor syntax. Fixes #12999

Mono Debugger

    Avoid clearning event requests if they reference an assembly which
    is unloaded. Instead, remove the assembly reference from the event
    request so it stays active. Fixes #9924.
2014-11-30 08:40:50 +00:00
markd
35199047cb Bring up to date PLIST.Linux. 2014-11-30 02:40:18 +00:00
obache
a247ea8a2a sysconfdir must be same as base php package. 2014-11-29 07:58:10 +00:00
joerg
51e69a8bc0 Apply additional clang arguments with cwrappers too. 2014-11-29 00:47:35 +00:00
bsiegert
d9d5ce62c7 Add a patch to fix compilation on Debian Etch. From Mikhail Gusarov in
PR pkg/49296.
2014-11-28 11:47:00 +00:00
obache
b58314711f Bump PKGREVISION to 3, to be one more than gcc48. 2014-11-28 09:59:31 +00:00
obache
24efdc1fe4 Bump PKGREVISION.
* Fixes regressions, revive parts removed at "Fix build under OpenBSD/amd64 5.5"
* Drop default behaviour changes and local features from OpenBSD ports,
  it break other platforms, at least, NetBSD-6.0/i386.
* Remove needless patches after "Restore monolithic gcc48 and gcc48-libs".
2014-11-28 09:57:32 +00:00
obache
2e56ebefcf fixes dependency pattern, PKGBASE is "gcc48", not "gcc". 2014-11-26 10:35:49 +00:00
wiz
5dbfdf6060 Remove vala018, nothing in pkgsrc uses it any longer. 2014-11-25 13:34:22 +00:00
wiz
58b3ff5cf3 Remove vala014, no packages using it left in pkgsrc. 2014-11-25 11:59:58 +00:00
obache
41c2261336 linker flag hack is required on Darwin prior to 9 too.
PR pkg/49417 by Sevan Janiyan.
2014-11-25 11:09:51 +00:00
wiz
f63ddde094 Remove vala012, no packages using it left in pkgsrc. 2014-11-25 10:09:14 +00:00
wiz
1f2bbb1462 Remove vala024, no packages using it left. 2014-11-24 16:31:50 +00:00
wiz
7a42374d88 Remove vala020, no packages using it left. 2014-11-24 16:28:03 +00:00
taca
eb2670b299 Add and enable php56. 2014-11-24 15:39:28 +00:00
taca
39506d885e Add php56, PHP version 5.6.3.
THe main features of PHP 5.6:

* Constant scalar expressions.
* Variadic functions and argument unpacking using the ... operator.
* Exponentiation using the ** operator.
* Function and constant importing with the use keyword.
* phpdbg as an interactive integrated debugger SAPI.
* php://input is now reusable, and $HTTP_RAW_POST_DATA is deprecated.
* GMP objects now support operator overloading.
* File uploads larger than 2 gigabytes in size are now accepted.

Please refer for difference from oldre release:http://php.net/migration56.
2014-11-24 15:37:08 +00:00
taca
3aa2158e8d Add support for php56 (PHP 5.6.x). 2014-11-24 15:36:05 +00:00
adam
3819f0e357 Changes 8.6.3:
Correct Method Search Order
Regression [lreplace {} 1 1]
Crash regression in [oo::class destroy]
Regress [regsub -all {\(.*} a(b) {}]
[try {} on ok {} - on return {} {}] panic
[tcl::unsupported::getbytecode] disassember
[string cat] bytecode optimization
segfault in mangled bytecode
Hang in some [read]s of limited size
segfault in [array set] of traced array
MSVC14 compile support
[fcopy] treats [blocked] as error
regression in Tcl_Write() interface
fix [gets] on non-blocking channels
restore [open comX: r+]
Restore [lappend v] return value
Stop forcing EOF to be permanent
2014-11-22 15:57:17 +00:00
bsiegert
61b572397b Declare MACOSX_DEPLOYMENT_TARGET for versions from 10.3 to 10.5 to fix
the build.

Patch provided by Sevan Janiyan in PR pkg/49394.
2014-11-22 15:45:41 +00:00
wiz
cfe2e18350 Replace perl interpreter in one more file. 2014-11-22 03:04:31 +00:00
wiz
ffc01a35f8 Remove path to non-existing file, and fix path to existing one. 2014-11-22 03:01:52 +00:00
joerg
46c384c24f ARM assembler glue needs either Thumb or ARMv6 with emulation for one
Thumb instruction. Go with FreeBSD and use the latter.
2014-11-21 14:15:20 +00:00
joerg
0555d2392d Fix build on !Linux ARM platforms. Ignore the existance of CRAY for now,
if someone really have one which is broken in this regard, it should use
normal offsetof...
2014-11-21 14:13:51 +00:00
joerg
18d3eb244b Really match all ARM variants. 2014-11-20 15:24:57 +00:00
joerg
9f4b2d2308 Match all ARM variants. 2014-11-20 15:22:44 +00:00
wiz
ed23781648 Update to 4.9.2:
Over 65 bugs fixed. Details:
https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.9.2
2014-11-19 15:21:45 +00:00
bsiegert
9c2fed0197 Add a separate Makefile for the version string plus GOARCH. To be used
by Go packages.
2014-11-18 20:39:11 +00:00
taca
60555b521e Start update of Ruby on Rails to 3.2.21. 2014-11-18 15:41:34 +00:00
ryoon
a94522830c Update to 7.0.72
Changelog:
7.0.72: http://www.oracle.com/technetwork/java/javase/7u72-relnotes-2296190.html
Instructions to disable SSL v3.0 in Oracle JDK and JRE

Oracle recommends that users and developers disable use of the SSLv3 protocol. Please follow the Instructions to disable SSL v3.0 in Oracle JDK and JRE.
Change in javax.smartcardio.Card.disconnect(boolean reset) method behavior

Prior to the JDK 8u20 and JDK 7u72 releases, the javax.smartcardio.Card.disconnect(boolean reset) method had inverted logic for the 'reset' boolean value passed to it. The card was reset upon a disconnect if false was passed to it and vice versa. Starting with JDK 7u72 and JDK 8u20, the correct behavior as per API documentation has been implemented.

In order to provide backwards compatibility to users who rely on the old behavior, a new system property has been introduced. The following command-line option can be used to enforce the old broken behavior:

-Dsun.security.smartcardio.invertCardReset=true


This property is set by default for 7u72 and later JDK 7 update releases. By default, no behavioral change will be noticed in this area for JDK 7 update releases.

Also the following command-line option can be used to enforce the new correct behavior:

-Dsun.security.smartcardio.invertCardReset=false


This is default for 8u20 and later JDK 8 update releases. In future Java releases, the property will be ignored/disabled and default disconnect method behavior will be as specified by API.
Bug Fixes

This release contains fixes for security vulnerabilities. For more information, see Oracle Java SE Critical Patch Update Advisory.

For a list of bug fixes included in this release, see JDK 7u72 Bug Fixes page.

Area: security-libs/javax.net.ssl
Synopsis: Decrease the preference mode of RC4 in the enabled cipher suite list

This fix decreases the preference of RC4 based cipher suites in the default enabled cipher suite list of SunJSSE provider.

See JDK-8043832 (not public).

From: http://www.oracle.com/technetwork/java/javase/2col/7u72-bugfixes-2298229.html
Bug Id 	Category 	Subcategory 	Description
8036022 	client-libs 	2d 	D3D: rendering with XOR composite causes InternalError.
8019623 	client-libs 	java.awt 	Lack of synchronization in AppContext.getAppContext()
8024061 	client-libs 	java.awt 	Exception thrown when drag and drop between two components is executed quickly
8028617 	client-libs 	java.awt 	Dvorak keyboard mapping not honored when ctrl key pressed
8016545 	client-libs 	java.beans 	java.beans.XMLEncoder.writeObject output is wrong
8036819 	client-libs 	javax.accessibility 	JAB: mneumonics not read for textboxes
8036983 	client-libs 	javax.accessibility 	JAB:Multiselection Ctrl+CursorUp/Down and ActivateDescenderPropertyChanged event
8028616 	client-libs 	javax.swing 	Htmleditorkit parser doesn't handle leading slash (/)
8032872 	client-libs 	javax.swing 	[macosx] Cannot select from JComboBox in a JWindow
8032874 	client-libs 	javax.swing 	ArrayIndexOutOfBoundsException in JTable while clearing data in JTable
8032878 	client-libs 	javax.swing 	Editable combos in table do not behave as expected
8041451 	core-libs 	javax.naming 	com.sun.jndi.ldap.Connection:ReadTimeout should abandon ldap request
8042857 	core-libs 	javax.naming 	14 stuck threads waiting for notification on LDAPRequest
7142035 	core-svc 	java.lang.instrument 	assert in j.l.instrument agents during shutdown when daemon thread is running
8028623 	core-svc 	tools 	SA: hash codes in SymbolTable mismatching java_lang_String::hash_code for extended characters.
8028619 	deploy 	deployment_toolkit 	Display issue of java control panel in ko and ja locale
8031490 	deploy 	deployment_toolkit 	Broken Java SE 7 jnlp samples (app2 and app3)
8038463 	deploy 	deployment_toolkit 	Java Control Panel doesn't display correctly in high resolution
8025051 	globalization 	locale-data 	Update resource files for TimeZone display names
8039298 	hotspot 	compiler 	C2: assert(base == NULL || t_adr->isa_rawptr() || !phase->type(base)->higher_equal(TypePtr::NULL_PTR)) failed: NULL+offs not RAW address?
8038925 	hotspot 	gc 	Java with G1 crashes in dump_instance_fields using jmap or jcmd without fullgc
8019324 	hotspot 	runtime 	assert(_f2 == 0 || _f2 == f2) failed: illegal field change
8031290 	hotspot 	runtime 	Adjust call to getisax() for additional words returned
8033696 	hotspot 	runtime 	"assert(thread != NULL) failed: just checking" due to Thread::current() and JNI pthread interaction
8051012 	hotspot 	runtime 	Regression in verifier for <init> method call from inside of a branch
8021804 	security-libs 	java.security 	Certpath validation fails if validity period of root cert does not include validity period of intermediate cert
8050158 	security-libs 	javax.net.ssl 	Introduce system property to maintain RC4 preference order
7047033 	security-libs 	javax.smartcardio 	(smartcardio) Card.disconnect(boolean reset) does not reset when reset is true
7195480 	security-libs 	javax.smartcardio 	javax.smartcardio does not detect cards on Mac OS X
8039319 	security-libs 	javax.smartcardio 	(smartcardio) Card.transmitControlCommand() does not work on Mac OS X
8043507 	security-libs 	javax.smartcardio 	(smartcardio) javax.smartcardio.CardTerminals.list() fails on MacOSX
8046343 	security-libs 	javax.smartcardio 	(smartcardio) CardTerminal.connect('direct') does not work on MacOSX
8049250 	security-libs 	javax.smartcardio 	(smartcardio) Need a flag to invert the Card.disconnect(reset) argument
8036709 	tools 	jar 	Java 7 jarsigner displays warning about cert policy tree
8033113 	xml 	jax-ws 	wsimport fails on WSDL:header parameter name customization
8029837 	xml 	jaxp 	NPE seen in XMLDocumentFragmentScannerImpl.setProperty since 7u40b33

7.0.71:
From: http://www.oracle.com/technetwork/java/javase/2col/7u71-bugfixes-2298226.html
Bug Id 	Category 	Subcategory 	Description
8032788 	client-libs 	java.awt 	ImageIcon constructor throws an NPE and hangs when passed a null String parameter
8057184 	client-libs 	javax.swing 	JCK8's api/javax_swing/JDesktopPane/descriptions.html#getset failed with GTKLookAndFeel on Linux and Solaris run v.s. JDK8+
8001105 	core-libs 	java.lang.invoke 	findVirtual of Object[].clone produces internal error
8031502 	core-libs 	java.lang.invoke 	JSR292: IncompatibleClassChangeError in LambdaForm for CharSequence.toString() method handle type converter
8027821 	deploy 	  	For signed jars without manifest "Permissions", there is still security warning dialog before Application Error (Or blocked) Dialog.
8054904 	deploy 	webstart 	Webstart cache path error for Java >= 7u65
8032883 	deploy 	plugin 	java.lang.UnsupportedClassVersionError occurs while accessing an applet
8036620 	deploy 	plugin 	JAR file is downloaded on DownloadService.removeResource, if it is not in Deployment Cache
8040786 	deploy 	plugin 	Text is truncated in JavaScript to Java security warning dialog on OS X
8043478 	deploy 	plugin 	Oracle Linux 5.x: Expired JRE disabled in the browser automatically and no native dialog prompting for the JRE update
8025726 	deploy 	webstart 	Certificate rule in DRS does not work for Java Web Start app when caching is turned off
8051891 	deploy 	webstart 	SWT cannot load native look&feel
8050485 	hotspot 	runtime 	super() in a try block in a ctor may need to cause VerifyError
8027686 	install 	  	Fail to install on MacOS 10.10
7160837 	security-libs 	javax.crypto 	DigestOutputStream does not turn off digest calculation when "close()" is called
8028627 	security-libs 	javax.crypto 	Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
8012026 	client-libs 	java.awt 	[macosx] Component.getMousePosition() does not work in an applet on MacOS
8032078 	client-libs 	java.awt 	[macosx] CPlatformWindow.setWindowState throws RuntimeException, if windowState=ICONIFIED:MAXIMIZED_BOTH
8032961 	client-libs 	java.awt 	A JTextField of an applet loses the abillity to receive the focus under certain circumstances.
8032669 	client-libs 	javax.swing 	Mouse release not being delivered to Swing component in 7u45
7122142 	core-libs 	java.lang 	(ann) Race condition between isAnnotationPresent and getAnnotations
8005232 	core-libs 	java.lang 	(JEP-149) Class Instance size reduction
7185456 	core-libs 	java.lang.reflect 	(ann) Optimize Annotation handling in java/sun.reflect.* code for small number of annotationsC
8015421 	core-libs 	java.net 	NegativeArraySizeException occurs in ChunkedOutputStream() with Integer.MAX_VALUE
8021372 	core-libs 	java.net 	NetworkInterface.getNetworkInterfaces() returns duplicate hardware address
8009764 	deploy 	webstart 	Java Web Start app run on Java SE 8 b79 shows "trust level" SecurityExceptions
7094099 	deploy 	plugin 	DropDown List of JComboBox detached
6653795 	hotspot 	compiler 	C2 intrinsic for Unsafe.getAddress performs pointer sign extension on 32-bit systems
8027359 	xml 	jaxp 	XML parser returns incorrect parsing results
8032909 	xml 	jaxp 	XSLT string-length returns incorrect length when string includes complementary chars
2014-11-15 21:01:26 +00:00
taca
9d371b6e26 Update php55 to 5.5.19.
13 Nov 2014, PHP 5.5.19

- Core:
  . Fixed bug #68095 (AddressSanitizer reports a heap buffer overflow in
    php_getopt()). (Stas)
  . Fixed bug #68118 ($a->foo .= 'test'; can leave $a->foo undefined). (Nikita)
  . Fixed bug #68129 (parse_url() - incomplete support for empty usernames
    and passwords) (Tjerk)
    Fixed bug #68365 (zend_mm_heap corrupted after memory overflow in
    zend_hash_copy). (Dmitry)

- Fileinfo:
  . Fixed bug #66242 (libmagic: don't assume char is signed). (ArdB)
  . Fixed bug #68283 (fileinfo: out-of-bounds read in elf note headers).
    (CVE-2014-3710) (Remi)

- FPM:
  . Implemented FR #55508 (listen and listen.allowed_clients should take IPv6
    addresses). (Robin Gloster)

- GD:
  . Fixed bug #65171 (imagescale() fails without height param). (Remi)

- GMP:
  . Fixed bug #63595 (GMP memory management conflicts with other libraries
    using GMP). (Remi)

- Mysqli:
  . Fixed bug #68114 (linker error on some OS X machines with fixed width
    decimal support) (Keyur Govande)

- ODBC:
  . Fixed bug #68087 (ODBC not correctly reading DATE column when preceded by
    a VARCHAR column) (Keyur Govande)

- SPL:
  . Fixed bug #68128 (Regression in RecursiveRegexIterator) (Tjerk)

- CURL:
  . Add CURL_SSLVERSION_TLSv1_0, CURL_SSLVERSION_TLSv1_1, and
    CURL_SSLVERSION_TLSv1_2 constants if supported by libcurl (Rasmus)
2014-11-15 14:53:12 +00:00
taca
8add7f0b9f Update php54 to 5.4.35 (PHP 5.4.35).
13 Nov 2014 PHP 5.4.35

- Core:
  . Fixed bug #68365 (zend_mm_heap corrupted after memory overflow in
    zend_hash_copy). (Dmitry)

- Fileinfo:
  . Fixed bug #68283 (fileinfo: out-of-bounds read in elf note headers).
    (CVE-2014-3710) (Remi)

- GMP:
 . Fixed bug #63595 (GMP memory management conflicts with other libraries
   using GMP). (Remi)

- PDO_pgsql:
  . Fixed bug #66584 (Segmentation fault on statement deallocation) (Matteo)
2014-11-15 14:49:45 +00:00
taca
22c6492ba3 Update ruby21-base (and ruby21) package to 2.1.5 (Ruby 2.1.5).
* CVE-2014-8090: Another Denial of Service XML Expansion.
2014-11-15 14:42:20 +00:00
taca
e9fd21e805 Update ruby193-base (and ruby193) to 1.9.3p551 (Ruby 1.9.3-p551).
* CVE-2014-8090: Another Denial of Service XML Expansion.
2014-11-15 14:39:09 +00:00
taca
3fe70bbf26 Update ruby200-base and related packages to 2.0.0-p598 (Ruby 2.0.0-p598).
* CVE-2014-8090: Another Denial of Service XML Expansion.
2014-11-15 14:33:45 +00:00
ryoon
b0eabc3b02 Bump PKGREVISION
* Enable Unlimited JCE support without Oracle's binary with jre-jce option.
  Thank you, fhajny@.
2014-11-15 12:10:54 +00:00
riz
e1d0f01ea6 This builds with gcc 4.8 too, don't make me build 4.7. 2014-11-15 00:04:33 +00:00
tron
5553b92be2 Don't append ".gz" to the filenames of Perl manual page that are already
compress. This fixes the build of e.g. the "p5-YAML-LibYAML" package
if "MANZ" is set.
2014-11-13 17:48:59 +00:00
asau
f2334a415c Update cparser to version 0.9.14
cparser 0.9.14 (2012-11-21)
---------------------------

* Adapt to libfirm-1.21.0
* Improved error recovery
* Improved firm graph generation (faster/smaller graphs)
* Implement U,u and u8 strings
* Preliminary preprocessor (we still use system cpp by default, as some macro
  expansion corner cases are still buggy and prevent us from compiling glibc
  headers)
* More gcc extensions: binary constants, __leaf__ attribute

cparser 0.9.13 (2011-12-07)
---------------------------

* Adapt to libfirm-1.20.0
* Implement --help
* More work on preprocessor (still not finished though)
* Refactoring work so others can reuse input, optimization order logic
* Columns in source positions (but external preprocessor doesn't preserve all spaces)
* Improvements to gnu builtins/attributes
* Bugfixes (we did alot of csmith testing)

cparser 0.9.12 (2011-03-15)
---------------------------

* Adapt to libfirm-1.19.0
* Introduce -mtarget (and -mtriple for llvm compatibility) for conventient
  cross-compilation
* Fix big-endian struct layouting
* Bugfixes

cparser 0.9.11 (2009-05-16)
---------------------------

* add missing NEWS entries
* fix crash when known C library functions had the wrong number of arguments

cparser 0.9.10 (2009-04-15)
---------------------------

* bugfixes
* adapt to libfirm-1.18.0
2014-11-10 16:54:12 +00:00
rodent
e8f2c03fe9 Update to 0.10.1. No ChangeLog found. Move hy2py to hy2py${PYVERSSUFFIX} in
post-install and add to ALTERNATIVES.
2014-11-09 19:31:56 +00:00
ryoon
89dd301d89 Extract tarball with GNU tar.
* Fix errors when LANG=C.
2014-11-06 16:13:56 +00:00
ryoon
2860662987 Update to 1.7.71
* Update icedtea* to latest
* UTF-8 build patch
These are based on the patches from richard@.

Changelog:
From: http://www.oracle.com/technetwork/java/javase/7u71-relnotes-2296187.html

The full version string for this update release is 1.7.0_71-b14 (where "b" means "build"). The version number is 7u71.
IANA Data 2014c

JDK 7u71 contains IANA time zone data version 2014c. For more information, refer to Timezone Data Versions in the JRE Software.
2014-11-03 12:25:36 +00:00
wiz
59a7cf8097 Switch from gcc48-cc++ to gcc48. 2014-11-03 10:35:33 +00:00
wiz
aeff7bf869 Sync. 2014-11-03 10:34:57 +00:00
spz
8f4251047f add the patches for Python issue 22518, also known as 22470, from
the python source repository.
Refresh patches
2014-11-02 13:31:11 +00:00