summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2014-12-12Add a comment that disabling optimisation is needed not just for thejoerg1-1/+3
memory usage.
2014-12-12Update to 1.4, ok bsiegert:wiz6-2172/+2369
Today we announce Go 1.4, the fifth major stable release of Go, arriving six months after our previous major release Go 1.3. It contains a small language change, support for more operating systems and processor architectures, and improvements to the tool chain and libraries. As always, Go 1.4 keeps the promise of compatibility, and almost everything will continue to compile and run without change when moved to 1.4. For the full details, see the Go 1.4 release notes. The most notable new feature in this release is official support for Android. Using the support in the core and the libraries in the golang.org/x/mobile repository, it is now possible to write simple Android apps using only Go code. At this stage, the support libraries are still nascent and under heavy development. Early adopters should expect a bumpy ride, but we welcome the community to get involved. The language change is a tweak to the syntax of for-range loops. You may now write "for range s {" to loop over each item from s, without having to assign the value, loop index, or map key. See the release notes for details. The go command has a new subcommand, go generate, to automate the running of tools to generate source code before compilation. For example, it can be used to automate the generation of String methods for typed constants using the new stringer tool. For more information, see the design document. Most programs will run about the same speed or slightly faster in 1.4 than in 1.3; some will be slightly slower. There are many changes, making it hard to be precise about what to expect. See the release notes for more discussion. And, of course, there are many more improvements and bug fixes. In case you missed it, a few weeks ago the sub-repositories were moved to new locations. For example, the go.tools packages are now imported from "golang.org/x/tools". See the announcement post for details. This release also coincides with the project's move from Mercurial to Git (for source control), Rietveld to Gerrit (for code review), and Google Code to Github (for issue tracking and wiki). The move affects the core Go repository and its sub-repositories. You can find the canonical Git repositories at go.googlesource.com, and the issue tracker and wiki at the golang/go GitHub repo.
2014-12-10Pass down normal sanitised environment.joerg1-2/+2
2014-12-10-guile16gdt1-2/+1
2014-12-10Remove guile16.gdt17-565/+0
Guile has had multiple versions in pkgsrc because of compatibility problems, starting with 1.4. Currently, 1.8 is the stable version and 2.0 the new version in pkgsrc, even though in the regular world 1.8 is old and 2.0 is stable. As far as I know, no one uses guile 1.6 any more, and it has no depending packages in pkgsrc (tex2page was the last one).
2014-12-09Fix RCS ID.joerg2-3/+4
2014-12-07Bump PKGREVISION.ryoon3-9/+13
* Switch to GCC 4.9.2 based. * binutils of NetBSD 7.99 is modern enough, and use binutils in base. Fix build under NetBSD/amd64 7.99.1 with this workaround.
2014-12-07Auto detect lua version from required package name.obache1-1/+11
resolve PR pkg/49318
2014-12-06Add missing svr4.h for ppc netbsd. From Frank Wille in PR 49453.dholland2-5/+18
2014-12-06Make EGG_INFODIR available for use in Makefiles. Clarify comment regardingrodent1-5/+7
necessity of substituting EGG_NAME in PLISTs.
2014-12-05+google-api-python-clientrodent1-1/+2
2014-12-03Explicitly add library path for gdbm and iconv, don't depend on thejoerg2-4/+8
implicit one added by the wrappers.
2014-12-01Support cwrappers for packages appending arguments in the wrappers.joerg1-1/+2
2014-12-01Works with IAS now.joerg1-7/+1
2014-11-30add patches for CVE-2012-3543 and CVE-2012-3382 from upstreamspz7-3/+241
2014-11-30master site seems to have reorganized itself, adjust to new linkspz1-2/+2
2014-11-30dragonfly patch ought to ifdef __DragonFly__spz2-6/+5
2014-11-30Update of Mono to version 3.10.0spz54-223/+384
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-30Bring up to date PLIST.Linux.markd1-4/+6
2014-11-29sysconfdir must be same as base php package.obache1-1/+2
2014-11-29Apply additional clang arguments with cwrappers too.joerg1-1/+8
2014-11-28Add a patch to fix compilation on Debian Etch. From Mikhail Gusarov inbsiegert4-5/+23
PR pkg/49296.
2014-11-28Bump PKGREVISION to 3, to be one more than gcc48.obache1-2/+2
2014-11-28Bump PKGREVISION.obache25-392/+221
* 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-26fixes dependency pattern, PKGBASE is "gcc48", not "gcc".obache1-3/+3
2014-11-25Remove vala018, nothing in pkgsrc uses it any longer.wiz7-374/+1
2014-11-25Remove vala014, no packages using it left in pkgsrc.wiz8-399/+1
2014-11-25linker flag hack is required on Darwin prior to 9 too.obache1-3/+3
PR pkg/49417 by Sevan Janiyan.
2014-11-25Remove vala012, no packages using it left in pkgsrc.wiz7-319/+1
2014-11-24Remove vala024, no packages using it left.wiz7-386/+1
2014-11-24Remove vala020, no packages using it left.wiz7-378/+1
2014-11-24Add and enable php56.taca1-1/+2
2014-11-24Add php56, PHP version 5.6.3.taca29-0/+1085
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-24Add support for php56 (PHP 5.6.x).taca1-8/+18
2014-11-22Changes 8.6.3:adam10-134/+134
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-22Declare MACOSX_DEPLOYMENT_TARGET for versions from 10.3 to 10.5 to fixbsiegert2-11/+19
the build. Patch provided by Sevan Janiyan in PR pkg/49394.
2014-11-22Replace perl interpreter in one more file.wiz1-1/+2
2014-11-22Remove path to non-existing file, and fix path to existing one.wiz1-3/+2
2014-11-21ARM assembler glue needs either Thumb or ARMv6 with emulation for onejoerg2-1/+15
Thumb instruction. Go with FreeBSD and use the latter.
2014-11-21Fix build on !Linux ARM platforms. Ignore the existance of CRAY for now,joerg3-1/+66
if someone really have one which is broken in this regard, it should use normal offsetof...
2014-11-20Really match all ARM variants.joerg1-2/+2
2014-11-20Match all ARM variants.joerg1-2/+2
2014-11-19Update to 4.9.2:wiz2-6/+6
Over 65 bugs fixed. Details: https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.9.2
2014-11-18Add a separate Makefile for the version string plus GOARCH. To be usedbsiegert2-22/+25
by Go packages.
2014-11-18Start update of Ruby on Rails to 3.2.21.taca1-2/+2
2014-11-15Update to 7.0.72ryoon5-333/+337
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-15Update php55 to 5.5.19.taca3-8/+8
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-15Update php54 to 5.4.35 (PHP 5.4.35).taca2-6/+6
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-15Update ruby21-base (and ruby21) package to 2.1.5 (Ruby 2.1.5).taca3-10/+10
* CVE-2014-8090: Another Denial of Service XML Expansion.
2014-11-15Update ruby193-base (and ruby193) to 1.9.3p551 (Ruby 1.9.3-p551).taca2-6/+6
* CVE-2014-8090: Another Denial of Service XML Expansion.