| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
modules/web/src/main/native/Source/JavaScriptCore/API/JSStringRef.cpp:40:13: error: no matching function for call to 'create'
return &OpaqueJSString::create(chars, numChars).leakRef();
^~~~~~~~~~~~~~~~~~~~~~
modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:48:32: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const LChar *' (aka 'const unsigned char *') for 1st argument
static Ref<OpaqueJSString> create(const LChar* characters, unsigned length)
^
modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:53:32: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const UChar *' (aka 'const char16_t *') for 1st argument
static Ref<OpaqueJSString> create(const UChar* characters, unsigned length)
^
modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:43:32: note: candidate function not viable: requires 0 arguments, but 2 were provided
static Ref<OpaqueJSString> create()
^
modules/web/src/main/native/Source/JavaScriptCore/API/OpaqueJSString.h:58:53: note: candidate function not viable: requires 1 argument, but 2 were provided
JS_EXPORT_PRIVATE static RefPtr<OpaqueJSString> create(const String&);
^
modules/web/src/main/native/Source/JavaScriptCore/API/JSStringRef.cpp:65:35: error: no matching function for call to 'createWithoutCopying'
return OpaqueJSString::create(StringImpl::createWithoutCopying(chars, numChars)).leakRef();
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
modules/web/src/main/native/Source/WTF/wtf/text/StringImpl.h:385:50: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const UChar *' (aka 'const char16_t *') for 1st argument
WTF_EXPORT_STRING_API static Ref<StringImpl> createWithoutCopying(const UChar* characters, unsigned length);
^
modules/web/src/main/native/Source/WTF/wtf/text/StringImpl.h:386:50: note: candidate function not viable: no known conversion from 'const JSChar *' (aka 'const unsigned short *') to 'const LChar *' (aka 'const unsigned char *') for 1st argument
WTF_EXPORT_STRING_API static Ref<StringImpl> createWithoutCopying(const LChar* characters, unsigned length);
^
modules/web/src/main/native/Source/JavaScriptCore/API/JSStringRef.cpp:90:12: error: cannot initialize return object of type 'const JSChar *' (aka 'const unsigned short *') with an rvalue of type 'const UChar *' (aka 'const char16_t *')
return string->characters();
^~~~~~~~~~~~~~~~~~~~
modules/web/src/main/native/Source/WTF/wtf/unicode/java/UnicodeJava.h:21:18: error: typedef redefinition with different types ('uint16_t' (aka 'unsigned short') vs 'char16_t')
typedef uint16_t UChar;
^
/usr/local/include/unicode/umachine.h:347:22: note: previous definition is here
typedef char16_t UChar;
PR: 218788, 222270
Submitted by: jbeich
Reviewed by: jbeich
Obtained from: WebKit (rebased)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
c++14-lang, c++0x, c11, or gcc-c++11-lib.
PR: 219275
|
| |
|
|
|
|
|
| |
Note PORTREVISION is not bumped because it only affects a kernel without
"options COMPAT_FREEBSD11".
|
|
|
|
|
| |
Note PORTREVISION is not bumped because it only affects a kernel without
"options COMPAT_FREEBSD11".
|
| |
|
|
|
|
|
|
|
|
| |
'armv7'. This patch adds armv7 support. It should provide no regression
on any existing architecture.
PR: 221896
Approved by: maintainer
|
| |
|
| |
|
|
|
|
|
|
| |
This will prevent build problems when there is an older Gradle version
installed in the build environment. Using older Gradle versions is
not supported and leads to hard to decode build failures.
|
|
|
|
|
|
|
| |
- Enable OpenGL Prism backend by default on FreeBSD too
- Add missing platform check. FreeBSD is "a form of Linux or Solaris" too.
Submitted by: Gareth Wyn Roberts <g.w.roberts@glyndwr.ac.uk> (via mail)
|
|
|
|
| |
the latter.
|
|
|
|
| |
use a more appropriate origin (devel for development tools, IDEs).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The main focus in this release is on features. Considerable work has
been done on improving the TLS/DTLS API and the BCJSSE. Support for
ECGOST3410-2012 has been added for both signing and key
agreement/exchange. The DSTU-7564 digest and DSTU-7624 (Kalyna) cipher
have also been added. Support for XMSS and XMSS^MT has been added to the
BCPQC provider and certificate support for the BCPQC algorithms is much
improved.
Further details on other additions and bug fixes can be found in the
release notes at:
https://www.bouncycastle.org/releasenotes.html
|
| |
|
| |
|
|
|
|
| |
MFH: 2017Q3
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
| |
PR: 220592
Submitted by: Gerrit Beine <mail+freebsd@gerritbeine.de>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- Add new default options MEDIA and WEBKIT to enable building of the
media and web modules
- Take back maintainership
Running e.g. AsciidocFX on FreeBSD should be possible now.
PR: 218014
Reported by: Dr. Jochen Raßler <jochen.rassler@gmail.com>, mr (via mail)
|
| |
|
|
|
|
|
|
| |
PR: 220322
Approved by: mat (mentor)
Differential Revision: https://reviews.freebsd.org/D11565
|
|
|
|
|
| |
PR: 220648
MFH: 2017Q3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently Pango functions are hidden behind __linux__ and not compiled
in as part of the build. Not all JavaFX applications are affected by
this, but applications that do advanced text layout that require Pango
internally cause an UnsatisfiedLinkError at runtime.
Caused by: java.lang.UnsatisfiedLinkError: com.sun.javafx.font.freetype.OSPango.pango_ft2_font_map_new()J
at com.sun.javafx.font.freetype.OSPango.pango_ft2_font_map_new(Native Method)
at com.sun.javafx.font.freetype.PangoGlyphLayout.layout(PangoGlyphLayout.java:88)
at com.sun.javafx.text.PrismTextLayout.shape(PrismTextLayout.java:834)
at com.sun.javafx.text.PrismTextLayout.layout(PrismTextLayout.java:1064)
at com.sun.javafx.text.PrismTextLayout.ensureLayout(PrismTextLayout.java:223)
...
PR: 220566
Submitted by: Stefan Ehmann <shoesoft@gmx.net>
Approved by: mat (mentor)
Differential Revision: https://reviews.freebsd.org/D11545
MFH: 2017Q3
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
remove fork="true" in javac and fork="yes" in junit tasks (ant/bc+-build.xml)
Original report:
If java/bouncycastle15 is build on armv6 with openjdk18, the build stops with
This command is not for general use and should only be run as the result of a call to ProcessBuilder.start() or Runtime.exec() in a java application
PR: 220612
Submitted by: Gerrit Beine <mail+freebsd@gerritbeine.de> (based on)
Approved by: az (mentor)
|
| |
|
|
|
|
|
|
|
|
|
| |
support and build the JDK without an ALSA dependency
PR: 219125
Reviewed by: jbeich
Approved by: mat (mentor), java (maintainer timeout, 6+ weeks)
Differential Revision: https://reviews.freebsd.org/D11331
|
|
|
|
|
|
|
| |
While here, sort ARCHS and pet portlint.
Reviewed by: imp
Approved by: portmgr (tier-2 blanket)
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If NO_ARCH is set then check that no FreeBSD elf(5) files are in $STAGEDIR.
If an elf(5) file is bundles as part of the package, but is not meant to be
run directly (i.e. the elf(5) file is a payload, and not compiled) then
those files can be added to NO_ARCH_IGNORE to avoid the check from failing,
Changes to ports:
- Ports that have NO_ARCH set, but actually compile files have had NO_ARCH
removed.
- Ports that have elf(5) payloads have had those files added to
NO_ARCH_IGNORE.
- R-cran ports that do not set USES=cran:compiles have NO_ARCH set,
PR: 218976
Reviewed by: antoine, mat
Approved by: portmgr
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
|
|
|
| |
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
|
| |
|
|
|
|
|
| |
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10845
|
| |
|
|
|
|
|
|
|
|
|
| |
was a stub, provide a real one.
While here, pet portlint.
Reported by: swills
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
|
|
|
| |
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
|
| |
|
|
|
|
|
| |
PR: 219180
Submitted by: Jov <amutu@amutu.com>
|
|
|
|
|
| |
PR: 219083
Submitted by: Christian Sturm <reezer@reezer.org>
|
|
|
|
|
|
|
|
| |
few cases, other tier-2 archs.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
| |
PR: 218658
Submitted by: riggs
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
http://bugs.java.com/view_bug.do?bug_id=6900441
While we are at it, merge fix for JDK-8029453.
http://bugs.java.com/view_bug.do?bug_id=8029453
Note JDK-8029453 only affects us when "-XX:WorkAroundNPTLTimedWaitHang=0" is
forcibly set.
Reported by: 张泽鹏 (redraiment at gmail dot com)
Tested by: 张泽鹏 (redraiment at gmail dot com)
|
| |
|
| |
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There are two cases:
- The upstream versionning is compatible with our versionning, or using
DISTVERSION's magic leads to a compatible PORTVERSION, use
DISTVERSION. If it is possible to use DISTVERSIONPREFIX and
DISTVERSIONSUFFIX to make it compatible, use them.
- The upstream versionning is not compatible with our versionning, and
DISTVERSION's magic does not lead to a correct PORTVERSION, then set
PORTVERSION to the equivalent of our versionning, and set DISTNAME.
It is possible to use a third variable where you store upstream's
version and use it to compute PORTVERSION and/or DISTNAME, like the
dns/bind9* ports do.
Sponsored by: Absolight
|
|
|
|
|
|
|
|
| |
A port of the lightweight-java-profiler (ljp). ljp acts as a bare-bones agentlib to produce profiling stacks that can be digested, e.g., by Brendan Gregg's flamegraph scripts.
Reviewed by: mat, swills (mentor)
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10194
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Reviewed by: az
M devel/py-application/Makefile
M devel/py-xcaplib/Makefile
M java/bouncycastle15/Makefile
M net/py-msrplib/Makefile
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2017-02-28 textproc/rubygem-nokogiri14: Use textproc/rubygem-nokogiri instead
2017-02-28 textproc/rubygem-liquid2: Use textproc/rubygem-liquid instead
2017-02-28 www/rubygem-rack14: Use www/rubygem-rack or www/rubygem-rack16 instead
2017-02-28 www/rubygem-mechanize26: Use www/rubygem-mechanize instead
2017-02-28 www/rubygem-net-http-persistent25: Use www/rubygem-net-http-persistent2 instead
2017-02-28 devel/rubygem-builder32: Use devel/rubygem-builder instead
2017-02-28 www/rubygem-net-http-digest_auth11: Use www/rubygem-net-http-digest_auth instead
2017-02-28 devel/rubygem-bson1: Use devel/rubygem-bson instead
2017-02-28 devel/rubygem-minitest4: Use devel/rubygem-minitest instead
2017-02-28 java/jdk16-doc: Should have been removed with linux-sun-jdk16 (2014-05-11)
2017-02-28 java/jdk7-doc: Should have been removed with linux-sun-jdk17 (2016-04-24)
2017-02-28 textproc/rubygem-sass-rails4: Use textproc/rubygem-sass-rails5 instead
|
|
|
|
|
| |
Approved by: mat (mentor)
Differential Revision: https://reviews.freebsd.org/D9610
|
|
|
|
| |
Reported by: antoine
|
|
|
|
| |
This make the port work without the gcc dependency
|
|
|
|
|
| |
The associated jdk ports were removed years ago. The documentation should
have been removed with them then.
|
|
|
|
|
|
| |
2017-02-07 java/jboss7: Unsupported, replaced by wildfly
2017-02-07 java/jboss71: Unsupported, replaced by wildfly
2017-02-07 java/jboss72: Unsupported, replaced by wildfly
|
|
|
|
| |
PR: 216738
|
| |
|
|
|
|
| |
PR: r216595
|
| |
|
| |
|
| |
|
|
|
|
| |
. Fix @javavm directive.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
|
|
|
|
| |
- Move installation directory to /usr/local/wildfly10.
- Fix directory permissions and ownership (root:wheel everywhere except config.)
- Remove all @dir entries which are now unnecessary.
- Add upgrade notice to UPDATING.
PR: 212052
Submitted by: olgeni
Approved by: maintainer
|
|
|
|
|
| |
PR: 216016
Submitted by: jbeich@
|
|
|
|
|
| |
PR: 216016
Submitted by: jbeich@
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
|
|
|
|
|
| |
PR: 213649
Submitted by: Michael Zhilin <mizhka@gmail.com>
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
| |
PR: 212052
Submitted by: olgeni
|
|
|
|
|
|
|
|
|
|
| |
RubyMine is a cross-platform IDE that supports Ruby, Ruby on Rails and web
development.
WWW: https://www.jetbrains.com/ruby/
PR: 214967
Submitted by: Stefan Wendler <stefan.wendler@tngtech.com>
|
|
|
|
| |
Approved by: portmgr blanket
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add a missing build dependency on junit to the Makefile, and fix the
path to Hamcrest in build.gradle. Also, reset MAINTAINER by request of
the current maintainer.
PR: 215677
Reviewed by: brd, Tobias Kortkamp
Approved by: brd (ports)
Sponsored by: Spectra Logic Corp
Differential Revision: https://reviews.freebsd.org/D9005
|
|
|
|
|
| |
PR: 212709
Submitted by: Curtis Hamilton <hamiltcl@verizon.net>
|
|
|
|
|
|
| |
PR: 215417
Submitted by: Curtis Hamilton
Approved by: Maintainer timeout
|
| |
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
|
| |
. This also pulls in some OpenBSD tweaks, I believe. These should be a
no-op for FreeBSD though.
PR: 212709 (partial)
Submitted by: Curtis Hamilton <hamiltcl@verizon.net>
|
|
|
|
|
| |
PR: 215424
Submitted by: Jonathan Chen <jonc@chen.org.nz>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
port changes:
- upstream updated list of its MASTER_SITES (bouncycastle.gva.es
is gone, downloads.bouncycastle.org changed to www.bouncycastle.org);
- pkg-descr updated to reflect current features;
- installation of zipped bundled sources made optional, enabled by
default to match previous behavior.
Some of new version changes:
- a new API for DTLS/TLS and a JSSE provider suitable for Java 5 and later;
- support for RFC 7539 ChaCha20 and Poly1305 has also been added
and general support for SHA-3 in the PKIX APIs has been improved;
Full details of the release:
PR: 215507
Changes: https://www.bouncycastle.org/releasenotes.html
Security: CVE-2016-1000338, CVE-2016-1000339, CVE-2016-1000340,
CVE-2016-1000341, CVE-2016-1000342, CVE-2016-1000343,
CVE-2016-1000344, CVE-2016-1000345, CVE-2016-1000346,
CVE-2016-1000352
Submitted by: Eugene Grosbein <ports@grosbein.net> (maintainer)
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
| |
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-help-plugin:2.1.1:effective-settings (help.effective-settings) on project jboss-as-testsuite: Execution help.effective-settings of goal org.apache.maven.plugins:maven-help-plugin:2.1.1:effective-settings failed: 0 -> [Help 1]
Approved by: portmgr blanket
|
| |
|
| |
|
|
|
|
|
| |
- Switch to options helpers
- Regenerate patches
|
|
|
|
|
|
|
|
|
|
|
|
| |
It defaults to on. Disabling it will remove X support from Java, and reduce
X-related dependencies.
PR: 210000
Reviewed by: brd
Approved by: brd (ports)
Approved by: glewis (maintainer timeout)
Sponsored by: Spectra Logic Corp
Differential Revision: https://reviews.freebsd.org/D6698
|
|
|
|
|
| |
prevent massive PORTREVISION bumps. Bump dependent ports that have not
been bumped since.
|
|
|
|
|
| |
prevent massive PORTREVISION bumps. Bump dependent ports that have not
been bumped since.
|
|
|
|
|
| |
prevent massive PORTREVISION bumps. Bump dependent ports that have not
been bumped since.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From jboss.org:
The JBoss AS community project has been renamed to the WildFly
community project, which has a new home at wildfly.org.
The JBoss name now only applies to the commercially supported
product, called JBoss EAP, which is derived from the WildFly
community project and is available here.
For more information on the differences between the project and
product offerings, see the JBoss.ORG technology page.
You can find old JBoss AS community releases on our archived
downloads page, however, these releases are not maintained and
therefore are likely to contain bugs and security vulnerabilities.
It is highly recommended that you upgrade to WildFly or JBoss
EAP using the above links at your earliest convenience. If you
require assistance in making this move, please ask on the forums
or contact your local Red Hat account representitive.
PR: 214223, 214224, 214225
Submitted by: yerenkow@gmail.com (maintainer)
|
| |
|
|
|
|
| |
2016-12-01 java/jakarta-struts: Port is unmaintained and has known security vulnerabilites
|
|
|
|
|
|
|
|
| |
Braces are not shell metacharacters, and they do not need to be quoted.
By the time find parses its arguments and dicovers them, the quoting
will have been removed by the shell anyway.
Sponsored by: Absolight
|
|
|
|
| |
Reported by: Caspar Schutijser <caspar@schutijser.com> (via email; thanks Caspar! My email answer seems to end up at your spam filter)
|
| |
|
| |
|
|
|
|
| |
reformat port description text in cases when it was notoriously broken.
|
|
|
|
|
|
|
|
|
| |
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
|
|
|
|
|
|
| |
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
|
| |
|
|
|
|
|
|
| |
PR: 214427
Changes: https://github.com/netty/netty/issues?q=milestone%3A3.10.6.Final http://netty.io/news/2016/06/29/3-10-6-Final.html
Submitted by: Jochen Neumeister <joneum@bsdproject.de>
|
|
|
|
| |
Submitted by: girgen
|
|
|
|
|
|
|
| |
- Add patch from Fedora to fix build with OpenJDK8
https://issues.apache.org/jira/browse/COLLECTIONS-587
Submitted by: soralx at cydem.org via e-mail
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Makefiles.
So, replace them with OPTIONS_SLAVE, OPTIONS_EXCLUDE, OPTIONS_DEFAULT,
where appropriate.
The ghostscript ports are doing something nasty that is certainly wrong,
but I don't want to try to understand it.
Sponsored by: Absolight
|
|
|
|
| |
Notable change is the inclusion of Let's Encrypt CA.
|
| |
|
|
|
|
|
|
|
| |
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
|
|
|
|
|
| |
PR: 213616
Submitted by: Sergey Brunov <sergey.v.brunov@gmail.com>
|
| |
|
|
|
|
|
|
|
|
|
| |
See "Maintainer Reset" in
https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit
was in March 31st (r412218), and his ports have been timing out since at least
July (r418155).
I also emailed him 2 weeks ago and have received no response so far.
|
| |
|
|
|
|
|
| |
PR: 213598
Submitted by: Andrey Cherkashin <andoriyu@gmail.com> (maintainer)
|
| |
|
|
|
|
| |
- Consistently pad (separate) shebang in wrapper scripts with an empty line
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
IntelliJ IDEA is an advanced IDE developed by JetBrains and focused on
developer productivity. The community edition features:
* An intelligent code editor that understands Java code; provides
refactorings, code inspections and intentions, and allows for
fast code navigation.
* Integration with such tools as JUnit and TestNG, Ant and Maven,
and popular version control systems including: CVS, Subversion
and git.
* XML-Java interoperability and comprehensive Groovy programming
language support.
* The Swing UI designer complements the suite of tools for
developing Java desktop applications.
The difference between intellij and intellij-ultimate can be found at
http://www.jetbrains.com/idea/features/editions_comparison_matrix.html
WWW: http://www.jetbrains.com/idea/
PR: 212268
Submitted by: Andrey Cherkashin <andoriyu@gmail.com>
|
|
|
|
|
|
|
|
| |
ftp://ftp.iana.org/tz/tz-link.html). Specifically the sentence
"The public-domain time zone database contains code and data that
represent the history of local time for many representative locations
around the globe."
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- new MASTER_SITE
PR: 211764
Changes: http://www.eclipse.org/neon/noteworthy/
https://www.eclipse.org/eclipse/development/readme_eclipse_4.6.php
Submitted by: Jimmy Kelley <ljboiler@gmail.com> (maintainer)
Reviewed by: Michael Zhilin <mizhka@gmail.com>, kappei84@gmail.com
|
|
|
|
|
| |
- Add NO_ARCH
- Switch to options helpers
|
|
|
|
|
|
|
|
| |
The compiliation of aparapi causes OpenJDK8 on 10.1/i386 to dump core with a
internal error.
PR: 210672
Submitted by: maintainer@
|
|
|
|
| |
These ports built successfully
|
|
|
|
|
| |
PR: 212686
Submitted by: Sergey Brunov <sergey.v.brunov@gmail.com>
|
|
|
|
| |
PR: 208462
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Mk/Uses/linux.mk.
- Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with
USES+=linux:\1 in all ports.
- Replace USE_LINUX_APPS with USE_LINUX in all ports.
- Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some
ports.
- When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY
are defined.
- Remove BRANDELF_DIRS and BRANDELF_FILES handling. In the very rare cases
that it is still necessary ports can run ${BRANDELF} from post-patch.
- Remove AUTOMATIC_PLIST handling. Only one port used it.
- Fix Linux MASTER_SITES.
- Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with
default versions framework.
- bsd.port.mk:
- Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX.
- Put USE_LINUX_PREFIX handling after USES processing.
- Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can
give these variables a different default value.
- When a package needs to run Linux ldconfig check before installation if
Linux support is enabled.
- emulators/linux_base-*:
- Use USES=linux and remove duplication.
- Remove files/lp. FreeBSD or CUPS lp(1) should work.
- Remove files/yp.conf. No longer seems to be used.
- Remove pkg-deinstall and move pkg-install into pkg-plist.
- Update pkg-descr and pkg-message.
- Fix handling of ldconfig cache in pkg-plist.
- devel/fb-adb: Use a Linux shell to run a Linux script but patch the script
to use FreeBSD mkdir so mkdir -p $path creates $path and not
/compat/linux/$path.
PR: 211645
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
|
| |
analysing core dumps.
. Bump PORTREVISION.
PR: 211196
Submitted by: Ron Roskens <ronald.roskens@gmail.com>
|
| |
|
|
|
|
|
|
| |
VFPv3 or later, i.e., only VFPv1 and VFPv2 require this hack.
https://svnweb.freebsd.org/changeset/base/288983
|
|
|
|
| |
MFH: 2016Q3
|
|
|
|
|
| |
PR: 212133
Submitted by: ports@grosbein.net (maintainer)
|
| |
|
| |
|
|
|
|
|
|
| |
PR: 212054
Submitted by: olgeni
Approved by: maintainer
|
| |
|
|
|
|
|
| |
Pointyhat: bapt
PR: 210313
|
| |
|
| |
|
|
|
|
| |
- Fix license.
|
|
|
|
|
|
|
|
|
|
|
| |
A dependency on unzip will never be registered since unzip is available
on all supported platforms (since FreeBSD 8.0).
Note that it's pulled in by a non-default option.
In this particular case, USES=zip:infozip is set, so unzip is pulled in
anyway through this mechanism (so explicit callout is still redundant)
Approved by: infrastructure blanket (removal of redundant deps)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
created by pkg(8) during upgrades
It happens because the deinstall script tries to clean up the potential manual
VM registration by cleaning out all symlinks to bin/javavm
Given all VM are registring/unregistering themselves this part is not needed
The other thing the script was doing handling the configuration which has been
replaced by @sample.
pkg-install has been modified to drop the handling of the configuration file but
keep the auto registration if all VM found. While this part is not necessary as
well, we keep it because otherwise anyone doing delete/install on javavmwapper
version 2.5 being the installed version would end up with all VM unregistered.
The pkg-install should be removed after EOL of FreeBSD 10.3
PR: 210313
MFH: 2016Q3
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The FreeBSD Ports Collection already has 1.45 version of the Bouncy Castle and
this new port is based on java/bouncycastle.
Newer versions are not API-compatible with that older one. Some say they should
be given 2.x version numbers. So, this new version comes as distinct port
java/bouncycastle15 instead of update for existing java/bouncycastle15 to keep
old API version available.
This is neccessary dependency for other port updates, e.g. newer version of
iText PDF (devel/itext) requires new API of modern Bouncy Castle versions.
PR: 211316
Submitted by: Eugen Grosbein <eugen=at=grosbein.net>
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
everything at once. Sometime, rename post-install into a options helper
target.
I did not fix ports that were such a mess that I could not figure out
what they really wanted to do. I also did not change ports that had
some version of an auto-plist code in post-install, for the same reason.
With hat: portmgr
Sponsored by: Absolight
|
|
|
|
| |
2016-07-15 java/wildfly82: Fully EOL when version 10.0 was released
|
|
|
|
|
|
|
|
|
| |
. update to version 2016.2; [1]
. add comment about git integration and symlinks of homedir. [2]
PR: 211044 [1]
Submitted by: sergey.v.brunov@gmail.com [1],
volothamp@gmail.com (by e-mail) [2]
|
|
|
|
|
|
|
|
| |
- fix the build after recent update to Gradle 2.12.
PR: 208470
MFH: 2016Q3
Submitted by: Tobias Kortkamp <t@tobik.me> (maintainer)
|
|
|
|
|
|
|
| |
some of our releases. Change to avoid building the useless
static libJXGrabKey.a (we weren't installing).
Reported by: pkg-fallout
|
|
|
|
| |
keys.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
aparapi is an open source API for expressing data parallel workflows in Java.
Originally an AMD product, Aparapi was released to open source on September
14, 2011. Aparapi is an API for expressing data parallel workloads in Java
and a runtime component capable of converting the Java# bytecode of compatible
workloads into OpenCL# so that it can be executed on a variety of GPU devices.
WWW: https://github.com/aparapi/aparapi
PR: 204024
Submitted by: dieterich@ogolem.org
|
|
|
|
|
|
|
|
|
|
| |
with CRLF.
While there, run make makepatch, rename patches to use the new scheme,
and various fixes.
With hat: portmgr
Sponsored by: Absolight
|
|
|
|
| |
and should also fix ppc64 support.
|
|
|
|
|
|
|
| |
. Bump PORTREVISION.
PR: 210226
Submitted by: girgen@
|
|
|
|
|
|
|
|
|
| |
- Remove armv6hf because it is default now.
- Merge a HotSpot fix from src/os_cpu/linux_zero/vm/os_linux_zero.cpp.
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/rev/c6ef40024aa2
- Add an upstream patch to unbreak Zero.
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/rev/8f58998958ca
- Extend PR209599 to cover arm platforms.
|
|
|
|
|
|
|
| |
. Bump PORTREVISION for this fix.
PR: 209599
Submitted by: Andrew Smith <iamasmith.home@gmail.com>
|
|
|
|
|
|
|
|
| |
timeouts. This is forwarded ported from OpenJDK 7.
. Bump PORTREVISION for this fix.
PR: 210191
Submitted by: Andrew Smith <iamasmith.home@gmail.com>
|
|
|
|
|
| |
PR: 209599
Submitted by: Andrew Smith <iamasmith.home@gmail.com>
|
|
|
|
|
| |
- Mark NO_ARCH
- Convert to OPTIONSNG based do-install
|
| |
|
|
|
|
|
|
|
| |
2016-06-02 java/rubygem-rjb: fails to create JVM
devel/rubygem-atoulme-antwrap: depends on java/rubygem-rjb [1]
Approved by: arved [1]
|
| |
|
|
|
|
|
|
| |
by default anyway and don't need to be listed
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
| |
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
| |
|
|
|
|
|
|
|
|
|
| |
focused on developer productivity. PyCharm provides smart code
completion, code inspections, on-the-fly error highlighting and
quick-fixes, along with automated code refactorings and rich
navigation capabilities.
WWW: http://www.jetbrains.com/pycharm/
|
| |
|
|
|
|
|
|
| |
PR: 209541
Submitted by: bsam (me)
Approved by: Tobias Kortkamp <t@tobik.me>
|
|
|
|
|
|
|
|
| |
uses pty4j-0.6.jar which seems to include FreeBSD support.
Do not install pty4j-0.5.jar, install only the native component of pty4j.
PR: 209552
Submitted by: bsam (me)
Approved by: Tobias Kortkamp <t@tobik.me> (maintainer)
|
|
|
|
|
| |
2016-02-29 java/linux-sun-jre17: Unsupported and known for multiple security vulnerabilities
2016-04-13 deskutils/gnustep-notebook: Does not fetch
|
|
|
|
| |
MFH: 2016Q2
|
|
|
|
| |
Sometime in the last year module stopped to work.
|
| |
|
|
|
|
|
|
|
| |
Note that for now ports still have to have USE_RUBY=yes to use USES=gem
PR: 209041
Differential Revision: https://reviews.freebsd.org/D6070
|
|
|
|
|
|
| |
2016-02-29 java/linux-sun-jdk17: Unsupported and known for multiple security vulnerabilities
Sponsored by: Essen Linuxhotel Hackathon 2016
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
was added to mtree (Templates/BSD.local.dist) in r331266 2.5 years ago,
and fix some minor bogosities nearby.
|
|
|
|
|
|
| |
the few remaining ports and make it give an error.
Sponsored by: Absolight
|
|
|
|
|
|
|
| |
site being unavailable otherwise.
PR: 208781
Submitted by: Lapo Luchini <lapo at lapo.it> (maintainer)
|
|
|
|
|
|
|
|
|
| |
:buildSrc:compileGroovynet.rubygrapefruit.platform.NativeException: Failed to load native library 'libnative-platform.so' for FreeBSD amd64.
...
Caused by: java.lang.UnsatisfiedLinkError: /wrkdirs/usr/ports/java/openjfx8-devel/work/dot-gradle/native/19/freebsd-amd64/libnative-platform.so: Shared object "libstdc++.so.6" not found, required by "libnative-platform.so"
Reported by: pkg-fallout
Approved by: portmgr blanket
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
|
| |
|
|
|
|
|
|
|
| |
- Also update rc script to set correct permissions
PR: 208310
Submitted by: yerenkow@gmail.com (maintainer)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
OpenJFX is an open source, next generation client application platform for
desktop and embedded systems based on JavaSE. It is a collaborative effort by
many individuals and companies with the goal of producing a modern, efficient,
and fully featured toolkit for developing rich client applications.
WWW: http://openjdk.java.net/projects/openjfx/
PR: 207566
Submitted by: Tobias Kortkamp <t@tobik.me>
|
|
|
|
| |
Requested by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
|
| |
|
|
|
|
|
| |
PR: 207863
Submitted by: maintainer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
print/cups and update it to 2.1.3. Also remove print/cups-pstoraster,
improve print/cups-filters, print/foomatic-* and update print/hplip to
3.16.2.
Long description:
First some background. When you hand a file to cups it sets up a chain of
filter programs that converts the file to something a printer understands.
Each filter has a cost associated with it and cups tries to find the
cheapest chain. Costs used to be configured in such a way that files were
first converted to PostScript. This could then be manipulated further (e.g.
putting multiple pages on one sheet) before finally being sent to a
PostScript printer or another filter like pstoraster which produces a raster
format understood by non-PostScript printer drivers. Nowadays most filters
have been moved from cups to cups-filters and they have been configured to
use PDF as an intermediate format instead of PostScript.
Merging of cups-base, cups-client and cups-image into print/cups:
- cups-image provides a library to work with the cups raster format. It is
only used to implement filters and printer drivers and these only exist
in the context of a cups server so there's no need to separate this from
cups-base.
- cups-client provides a library that allows applications to print via cups.
It is possible to use the library to access a remote cups server without
running a local cups server, but such a setup is discouraged and the
configuration file to set this up has been marked deprecated. It is
better to run a local cups server and let that talk to the remote cups
server because then you have the benefits of local job queuing in case the
remote server is down or busy. Given this and the fact that without
filters cups-base is now smaller than it used to be it makes sense to
merge the ports. The patch also adds options IPPTOOL, DOCS and NLS which
when disabled make the new cups package smaller than the current
cups-client package. Merging the ports also prevents problems with
options like ZEROCONF being configured differently in both ports.
- print/cups was a metaport that depended on cups-base and some filters.
There isn't really a need for such a metaport so cups-base can be renamed
to cups. The filters can be depended on by printer drivers such as hplip
if they need them.
Additional changes to the new print/cups:
- Clean up the patches. They seem to have been regenerated with post-patch
changes included.
- Add a patch to prevent intermediate conversion to PDF when a PostScript
file is sent to a PostScript printer when cups-filters is installed.
- Fix the PAM configuration file.
- Add a patch to let the server search /usr/local/share/ppd like on Linux so
other ports don't have to add links to it.
- Remove ulpt(4) helper scripts. The port uses libusb with ugen(4).
- Remove support for mDNSResponder. cups-filters only supports Avahi.
- Combine ICONS and XDG_OPEN options into an X11 option to support WITHOUT_X11.
- Optionally depend on colord for ICC profile support.
- Various smaller changes.
Changes to print/cups-filters:
- Let the cups_browsed rc.d script depend on cupsd and avahi_daemon instead
of LOGIN.
- Development of foomatic-filters has been moved to cups-filters so let this
port install foomatic related files and add foomatic-filters to CONFLICTS.
- Fix location of liblouis tables.
- Add patch to fix ICC support.
Changes to print/cups-pstoraster:
This port is essentially an old version of Ghostscript plus a cups filter.
It's no longer developed. This commit removes it and changes existing
dependencies to print/cups-filters which depends on print/ghostscript* and
includes a gstoraster filter that can handle both PostScript and PDF.
Changes to print/foomatic-db*:
Remove old MASTER_SITES and dependencies and eliminate PKGNAMEPREFIX.
Changes to print/foomatic-filters:
Install beh backend with its original name again and add cups-filters to
CONFLICTS.
Changes to print/hplip:
- Stop installing hpijs/foomatic-rip support. This is no longer supported
upstream.
- Stop installing hpcups PPDs. These are now automatically generated. The
bundled PPDs are generated for an older version of cups.
- Rename the QT option to X11 to support WITHOUT_X11.
- Simplify the patches now that ports are installed in a staging area.
- Add a patch to set SO_REUSEPORT (next to SO_REUSEADDR) on the mDNS socket
like avahi-daemon does. This fixes Zeroconf support for HP network
printers.
PR: 207746
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Thanks to Jiri B <jirib@devio.us> and Roman Shevchenko [1] for
contributing a libinotify-based replacement for IntelliJ's
fsnotifier. IntelliJ now has native (faster) file notification
support on FreeBSD (and OpenBSD).
- Because of remaining problems with watching large trees with
libinotify [2], fsnotifier is still disabled by default.
- fsnotifier and native pty4j support need to be compiled. In the interest of
reducing port complexity, the building of pty support and fsnotifier
is moved to separate ports:
- java/intellij-pty4j
- java/intellij-fsnotifier
[1] https://youtrack.jetbrains.com/issue/IDEA-151815
[2] https://github.com/dmatveev/libinotify-kqueue/pull/34
PR: 207474
Submitted by: Tobias Kortkamp <t@tobik.me> (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Java Decompiler project aims to develop tools in order to
decompile and analyze Java 5 byte code and later versions.
JD-GUI is a standalone graphical utility that displays Java source
codes of .class files. You can browse the reconstructed source code
with the JD-GUI for instant access to methods and fields.
WWW: http://jd.benow.ca/
PR: 206488
Submitted by: Tobias Kortkamp <t@tobik.med>
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- make it clearer that this the community edition
- disable missing file watcher warning on startup
- install to ${PREFIX}/${PORTNAME} instead of to ${PREFIX}/lib/intellij
- adds the ability to open terminals in IntelliJ
PR: 206489
Submitted by: Tobias Kortkamp <t@tobik.me> (maintainer)
|
|
|
|
| |
PR: 207076
|
|
|
|
| |
PR: 207077
|