Provides a library of matcher objects (also known as
constraints or predicates) allowing 'match' rules to
be defined declaratively, to be used in other frameworks.
Typical scenarios include testing frameworks, mocking libraries
and UI validation rules.
WWW: http://hamcrest.org/
PR: 192575
Submitted by: danilo
2015-04-18 java/eclipse-ocl: depends on deprecated java/eclipse-emf
2015-04-18 java/eclipse-quantum: depends on deprecated java/eclipse-gef
2015-04-18 java/eclipse-propedit: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-aptana: evaluation recommendation is to remove rather than update
2015-04-18 devel/subclipse: evaluation recommendation is to remove rather than update
2015-04-18 devel/scala-ide: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-webtools: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-RDT: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-aptana-radrails: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-jad: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-vep-examples: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-gef-examples: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-gef: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-sysdeo-tomcat: evaluation recommendation is to remove rather than update
2015-04-18 java/commonclipse: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-sqlexplorer: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-viplugin: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-vep: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-checkstyle: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-aptana2: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-examples: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-hibernatetools: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-langpack: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-uml: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-datatools: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-emf: evaluation recommendation is to remove rather than update
2015-04-18 java/eclipse-pmd: evaluation recommendation is to remove rather than update
The case for this is a recent head kernel building an older branch that uses
GCC in a jail.
This is discussed at https://lists.freebsd.org/pipermail/svn-src-all/2015-March/101722.html
It may be possible to fix GCC to do the right thing with mmap(2) but it would
not be simple to make ports use a fixed GCC on older releases and without
needlessly building a ports compiler when the system one would otherwise be
fine without PCH.
With hat: portmgr
- Remove const qualifier from iconv(3) to match POSIX:
http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html
- Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is
defined because the base system iconv supports these extensions too.
Add/remove patches to/from ports to call iconv with non-const arguments.
This breaks some ports on FreeBSD 10 because base system iconv.h still has
the const qualifier. Fix this by letting USES=iconv add a build dependency
on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG
defined) instead of the base system iconv.h.
This exposed some ports that link with libiconv when it is available instead
of using libc iconv. In these cases one of the following changes has been
made:
- patch configure scripts to test for libc iconv first
- add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable
some configure tests
- converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4
- lang/gcc5-aux: respect CFLAGS and friends during configure such that
LIBICONV_PLUG is defined in the iconv test, also switch to external
gettext
- mail/gnarwl: replace patches with CPPFLAGS/LIBS
- multimedia/ffmpeg2theora: remove iconv test from SConstruct and use
ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c
- net-im/licq: finish conversion to cmake
- net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4:
don't need iconv
- textproc/p5-XML-TinyXML: finish conversion to USES=perl5
Other changes:
- databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2
and lzo support
- games/ldmud: respect CFLAGS and friends
- graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect
CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg
dependencies
PR: 199099
Exp-run by: antoine
Approved by: portmgr (antoine)
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true,
as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107).
Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when
it is always needed, I renamed it, in one case, I merged two patches.
Differential Revision: https://reviews.freebsd.org/D2209
Removal scheduled 4 weeks into the future on April 18.
PR: 195985
Submitted by: Jimmy Kelley (eclipse maintainer)
Reason: by-product of upcoming eclipse upgrade
Using this new scheme allows only setting the _tag_ or _commit hash_ in
GH_TAGNAME and not having to know the hash for a tag. This scheme will
download a tarball that has a different checksum than before due to a changed
directory name for extraction.
The following MASTER_SITES are provided to retain the old checksum and
directory structure (that require GH_COMMIT):
GH -> GHL
GITHUB -> GITHUB_LEGACY
Differential Revision: https://reviews.freebsd.org/D748
Submitted by: amdmi3
Reviewed by: mat, swills, antoine, bdrewery
With hat: portmgr