non port: devel/googletest/Makefile |
SVNWeb
|
Number of commits found XX: 32 |
Thu, 19 Dec 2019
|
[ 03:41 jbeich ] 
520417 MOVED
520417 devel/Makefile
520417 devel/android-tools-adb/Makefile
520417 devel/googlemock
520417 devel/googletest/Makefile
520417 devel/googletest/pkg-descr
520417 devel/googletest/pkg-plist
520417 devel/protobuf/Makefile
520417 finance/gnucash/Makefile
520417 games/rlvm/Makefile
(Only the first 10 of 12 ports in this commit are shown above. )
devel/googletest: merge googlemock
Avoid micromanaging installed files to simplify maintenance.
Already done upstream since 1.8.0. Other distributions (e.g.,
Arch, PkgSrc) have followed.
|
Sat, 5 Oct 2019
|
[ 00:42 jbeich ] 
513801 databases/clickhouse/Makefile
513801 devel/android-tools-adb/files/Makefile
513801 devel/android-tools-simpleperf/files/Makefile
513801 devel/googlemock/Makefile
513801 devel/googlemock/distinfo
513801 devel/googlemock/files
513801 devel/googlemock/pkg-plist
513801 devel/googletest/Makefile
513801 devel/googletest/distinfo
513801 devel/googletest/files
(Only the first 10 of 18 ports in this commit are shown above. )
devel/google{test,mock}: update to 1.10.0
- Drop static library
- Drop gtest-config and gmock-config
- Drop GTEST_LIB_CHECK autoconf macro
- Drop gmock_doctory.py as it's too old
- Expose tests via option
Changes: https://github.com/google/googletest/compare/release-1.8.1...release-1.10.0
Reported by: GitHub (watch releases)
PR: 239654
Differential Revision: https://reviews.freebsd.org/D19430
|
Fri, 26 Jul 2019
|
[ 20:46 gerald ] 
507372 Mk/bsd.ruby.mk
507372 accessibility/atkmm/Makefile
507372 accessibility/kmag/Makefile
507372 accessibility/kmousetool/Makefile
507372 accessibility/kmouth/Makefile
507372 accessibility/libqaccessibilityclient/Makefile
507372 accessibility/qt5-speech/Makefile
507372 archivers/R-cran-zip/Makefile
507372 archivers/ark/Makefile
507372 archivers/brotli/Makefile
(Only the first 10 of 3853 ports in this commit are shown above. )
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
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, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
|
Mon, 4 Mar 2019
|
[ 21:51 ngie ] 
494654 devel/googletest/Makefile
devel/googletest: require libpthread
As noted by @asomers in rS300906 (`cddl/usr.sbin/zfsd/tests/Makefile`
specifically), googletest requires libpthread in order to function, if
`-DGTEST_HAS_PTHREAD` is defined.
While this is true, the code was not being linked against libpthread,
resulting in libgtest being broken, and thus all tests reliant on the library
broken at runtime.
Adding `LIBS+= -lpthread` unbreaks the tests that use pthread support
internally.
PR: 236169
Reviewed by: jbeich
Approved by: jbeich (maintainer)
Differential Revision: https://reviews.freebsd.org/D19463
|
Wed, 12 Dec 2018
|
[ 01:35 gerald ] 
487272 Mk/bsd.ruby.mk
487272 accessibility/atkmm/Makefile
487272 accessibility/kmag/Makefile
487272 accessibility/kmousetool/Makefile
487272 accessibility/kmouth/Makefile
487272 accessibility/qt5-speech/Makefile
487272 archivers/R-cran-zip/Makefile
487272 archivers/ark/Makefile
487272 archivers/brotli/Makefile
487272 archivers/c-blosc/Makefile
(Only the first 10 of 3168 ports in this commit are shown above. )
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 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, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.
PR: 231590
|
Mon, 1 Oct 2018
|
[ 00:31 jbeich ] 
480989 devel/googletest/Makefile
devel/googletest: oops, builds fine with clang++ -stdlib=libstdc++ -std=gnu++03
FreeBSD 9.x defaulted to GCC 4.2 but could use Clang, so c++11-lang
used Clang while c++11-lib use lang/gcc* bun nowadays the difference
no longer exists. While testing previous change I forgot to account
that newer Clang versions have switched to C++14 by default while
libstdc++ 4.2 doesn't support C++11 or newer.
PR: 231835
|
[ 00:13 jbeich ] 
480987 devel/googletest/Makefile
devel/googletest: unbreak on GCC architectures after r478607
In file included from ./include/gtest/gtest.h:59,
from src/gtest_main.cc:31:
./include/gtest/internal/gtest-internal.h:657: error: expected ',' or '...'
before '>' token
./include/gtest/internal/gtest-internal.h:657: error: parse error in template
argument list
./include/gtest/internal/gtest-internal.h:657: error: default argument missing
for parameter 7 of 'static bool
testing::internal::TypeParameterizedTest<Fixture, TestSel,
Types>::Register(const char*, const testing::internal::CodeLocation&, const
char*, const char*, int, const std::vector<std::basic_string<char,
std::char_traits<char>, std::allocator<char> >,
std::allocator<std::basic_string<char, std::char_traits<char>,
std::allocator<char> > > >&, Types)'
In file included from src/gtest_main.cc:31:
In file included from ./include/gtest/gtest.h:59:
./include/gtest/internal/gtest-internal.h:947:44: error: no member named
'declval' in namespace 'std'
class Iterator = decltype(::std::declval<const C&>().begin()),
~~~~~~~^
./include/gtest/internal/gtest-internal.h:947:52: error: expected expression
class Iterator = decltype(::std::declval<const C&>().begin()), (Only the first 15 lines of the commit message are shown above )
|
Fri, 31 Aug 2018
|
[ 20:14 jbeich ] 
478607 databases/clickhouse/Makefile
478607 devel/android-tools-adb/files/patch-gtest-1.8.1
478607 devel/googlemock/Makefile
478607 devel/googlemock/distinfo
478607 devel/googletest/Makefile
478607 devel/googletest/distinfo
478607 devel/googletest/files/patch-bsd-defines
478607 emulators/dolphin-emu/Makefile
478607 lang/cling/Makefile
478607 science/libkml/Makefile
(Only the first 10 of 11 ports in this commit are shown above. )
devel/google{test,mock}: update to 1.8.1
Changes: https://github.com/google/googletest/compare/9bda90b...release-1.8.1
|
Fri, 9 Mar 2018
|
[ 12:07 jbeich ] 
463956 databases/clickhouse/Makefile
463956 devel/googlemock/Makefile
463956 devel/googlemock/distinfo
463956 devel/googletest/Makefile
463956 devel/googletest/distinfo
463956 devel/googletest/files/patch-bsd-defines
463956 emulators/dolphin-emu/Makefile
463956 science/libkml/Makefile
463956 science/orthanc-dicomweb/Makefile
463956 science/orthanc-webviewer/Makefile
(Only the first 10 of 12 ports in this commit are shown above. )
devel/google{test,mock}: update to 1.8.0.712
Changes: https://github.com/google/googletest/compare/5490beb...9bda90b
|
Wed, 27 Dec 2017
|
[ 19:47 jbeich ] 
457386 devel/googlemock/Makefile
457386 devel/googlemock/distinfo
457386 devel/googletest/Makefile
457386 devel/googletest/distinfo
457386 emulators/dolphin-emu/Makefile
457386 science/libkml/Makefile
457386 science/orthanc-dicomweb/Makefile
457386 science/orthanc-webviewer/Makefile
457386 science/orthanc/Makefile
457386 security/certificate-transparency/Makefile
devel/google{test,mock}: update to 1.8.0.450
Changes: https://github.com/google/googletest/compare/f1a87d7...5490beb
|
Mon, 25 Sep 2017
|
[ 00:51 jbeich ] 
450562 devel/googlemock/Makefile
450562 devel/googlemock/distinfo
450562 devel/googletest/Makefile
450562 devel/googletest/distinfo
450562 devel/googletest/files/patch-Makefile.am
450562 devel/googletest/files/patch-bsd-defines
450562 emulators/dolphin-emu/Makefile
450562 science/libkml/Makefile
450562 science/orthanc-dicomweb/Makefile
450562 science/orthanc-webviewer/Makefile
(Only the first 10 of 12 ports in this commit are shown above. )
devel/google{test,mock}: update to 1.8.0.358
Changes: https://github.com/google/googletest/compare/59c795c...f1a87d7
|
Thu, 18 May 2017
|
[ 23:22 jbeich ] 
441204 devel/googlemock/Makefile
441204 devel/googlemock/distinfo
441204 devel/googletest/Makefile
441204 devel/googletest/distinfo
441204 emulators/dolphin-emu/Makefile
441204 science/libkml/Makefile
441204 science/orthanc-dicomweb/Makefile
441204 science/orthanc-webviewer/Makefile
441204 science/orthanc/Makefile
441204 security/certificate-transparency/Makefile
devel/google{test,mock}: update to 1.8.0.50
Changes: https://github.com/google/googletest/compare/a2b8a8e...59c795c
|
Tue, 15 Nov 2016
|
[ 01:41 jbeich ] 
426138 devel/googlemock/Makefile
426138 devel/googlemock/distinfo
426138 devel/googlemock/files/patch-Makefile.am
426138 devel/googlemock/files/patch-scripts_gmock__doctor.py
426138 devel/googlemock/pkg-plist
426138 devel/googletest/Makefile
426138 devel/googletest/distinfo
426138 devel/googletest/files/patch-Makefile.am
426138 devel/googletest/files/patch-bsd-defines
426138 devel/googletest/pkg-plist
(Only the first 10 of 14 ports in this commit are shown above. )
devel/google{test,mock}: update to 1.8.0.11
Changes: https://github.com/google/googletest/compare/release-1.7.0...a2b8a8e
|
Sat, 3 Oct 2015
|
[ 01:31 jbeich ] 
398458 devel/googlemock/Makefile
398458 devel/googlemock/files
398458 devel/googlemock/files/patch-scripts_gmock__doctor.py
398458 devel/googletest/Makefile
devel/google{test,mock}: simplify and modernize
- Convert to the new testing framework
- Add upstream fix for gmock_doctor.py to work with python3, so
keep existing |/usr/bin/env python| shebang
- Drop fused-src tests as the ports don't install source files
- No need to shebangfix files we don't install
- Provide LICENSE_FILE as there's none under Templates/Licenses/
- Sort declarations by the order they're run (ldconfig is last)
- Silence post-patch commands [1]
PR: 203514
Submitted by: amdmi3 [1]
Reviewed by: amdmi3 (previous version)
|
Tue, 25 Aug 2015
|
[ 07:10 jbeich ] 
395218 devel/googlemock/Makefile
395218 devel/googlemock/distinfo
395218 devel/googlemock/pkg-descr
395218 devel/googletest/Makefile
395218 devel/googletest/distinfo
395218 devel/googletest/pkg-descr
devel/google{test,mock}: chase new home
https://code.google.com/p/support/wiki/ReadOnlyTransition
|
Tue, 20 Jan 2015
|
[ 22:03 jbeich ] 
377543 audio/alsa-lib/Makefile
377543 audio/alsa-plugins/Makefile
377543 audio/alsa-utils/Makefile
377543 devel/googlemock/Makefile
377543 devel/googletest/Makefile
377543 games/openra/Makefile
377543 multimedia/baka-mplayer/Makefile
377543 sysutils/fusefs-simple-mtpfs/Makefile
377543 sysutils/rinse/Makefile
377543 x11-drivers/xf86-input-wacom/Makefile
Per convention change my address to @FreeBSD.org
Differential Revision: https://reviews.freebsd.org/D1565
Approved by: bapt (mentor)
|
Tue, 25 Nov 2014
|
[ 17:38 marino ] 
373421 devel/googlemock/Makefile
373421 devel/googlemock/distinfo
373421 devel/googlemock/pkg-plist
373421 devel/googletest/Makefile
373421 devel/googletest/distinfo
373421 devel/googletest/files/patch-bsd-defines
373421 devel/googletest/files/patch-include_gtest_internal_gtest-port.h
373421 devel/googletest/pkg-plist
devel/googlemock, devel/googletest: Upgrade version 1.5 => 1.7
As part of the upgrade process:
- copy shebangfix and regression-test from googletest to googlemock
- convert regression-test to TEST option for better integration with
poudriere and visibility for users
- make sure configure detects python2 to follow shebangfix
- add LICENSE=BSD3CLAUSE (idea from comment 0)
- strip libs per stage-qa
- enable pthreads by default in devel/googletest
- enable death tests in devel/googletest
- enable socket streaming in devel/googletest
- implement GetThreadCount for death tests in devel/googletest
- disable streaming tests that fail with old gcc on 9.x in googletest
- depend on googletest in googlemock as -lgmock fails otherwise [1]
- pass maintainership to the persistent submitter [2]
PR: 187562
PR: 192736 [2]
PR: 192042 [1]
Approved by: maintainer timeout (~8 months)
Submitted by: rakuco [1]
Submitted by: Jan Beich <jbeich@vfemail.net> [2]
|
Mon, 20 Oct 2014
|
[ 16:04 mva ] 
371280 devel/aap/Makefile
371280 devel/alf/Makefile
371280 devel/anjuta/Makefile
371280 devel/antlr/Makefile
371280 devel/apr2/Makefile
371280 devel/avro-cpp/Makefile
371280 devel/awscli/Makefile
371280 devel/bicyclerepair/Makefile
371280 devel/boaconstructor/Makefile
371280 devel/boost-python-libs/Makefile
(Only the first 10 of 564 ports in this commit are shown above. )
- Convert ports of devel/ to USES=python
Approved by: portmgr (implicit)
|
Mon, 18 Aug 2014
|
[ 12:46 sunpoet ] 
365302 devel/googletest/Makefile
- Add LICENSE
- Remove contiguous blank lines
|
Mon, 16 Jun 2014
|
[ 22:21 amdmi3 ] 
358056 devel/googletest/Makefile
358056 devel/googletest/pkg-plist
- Switch to USES=libtool, drop .la files
Approved by: portmgr blanket
|
Tue, 10 Jun 2014
|
[ 07:39 olgeni ] 
357277 databases/WWWdb/Makefile
357277 databases/buzhug/Makefile
357277 databases/couchdb/Makefile
357277 databases/db4o-mono/Makefile
357277 databases/geoserver-mysql-plugin/Makefile
357277 databases/godis/Makefile
357277 databases/gosqlite3/Makefile
357277 databases/innotop/Makefile
357277 databases/jdbm2/Makefile
357277 databases/jrobin/Makefile
(Only the first 10 of 388 ports in this commit are shown above. )
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.
CR: D196
Approved by: portmgr (bapt)
|
Sun, 8 Dec 2013
|
[ 13:24 mva ] 
335888 devel/avro-cpp/Makefile
335888 devel/cvs2svn/Makefile
335888 devel/googletest/Makefile
335888 devel/libvirt-glib/Makefile
335888 devel/mongo-cxx-driver/Makefile
335888 devel/ninja/Makefile
335888 devel/py-gamin/Makefile
335888 devel/py-itools/Makefile
- Fix the usage of 'python' to get rid of the implicit lang/python
dependency
Approved by: portmgr (blanket)
|
Thu, 7 Nov 2013
|
[ 02:52 clsung ] 
333054 devel/googletest/Makefile
333054 devel/googletest/files/patch-include_gtest_internal_gtest-port.h
convert to STAGE
|
Fri, 20 Sep 2013
|
[ 17:04 bapt ] 
327723 devel/f77flow/Makefile
327723 devel/fam/Makefile
327723 devel/fampp/Makefile
327723 devel/fastcrc/Makefile
327723 devel/fb303/Makefile
327723 devel/fc++/Makefile
327723 devel/ffcall/Makefile
327723 devel/fga/Makefile
327723 devel/fhist/Makefile
327723 devel/fib/Makefile
(Only the first 10 of 482 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 2)
|
Wed, 9 Nov 2011
|
[ 15:26 miwi ]
1.6 accessibility/atkmm/Makefile
1.44 accessibility/gnome-speech/Makefile
1.67 archivers/libarchive/Makefile
1.9 archivers/libpar2/Makefile
1.8 archivers/snappy/Makefile
1.6 archivers/squeeze/Makefile
1.25 archivers/tardy/Makefile
1.3 audio/alsa-lib/Makefile
1.13 audio/audiere/Makefile
1.10 audio/celt/Makefile
(Only the first 10 of 250 ports in this commit are shown above. )
- Remove WITH_FBSD10_FIX, is no longer needed
|
Sat, 29 Oct 2011
|
[ 08:45 miwi ]
1.2 audio/alsa-lib/Makefile
1.36 audio/libmusicbrainz/Makefile
1.64 devel/boehm-gc/Makefile
1.39 devel/commoncpp/Makefile
1.7 devel/googletest/Makefile
1.50 devel/oniguruma5/Makefile
1.23 devel/readline/Makefile
1.15 graphics/djvulibre-nox11/Makefile
1.2 graphics/libspiro/Makefile
1.18 graphics/proj/Makefile
(Only the first 10 of 19 ports in this commit are shown above. )
- Fix build on FreeBSD 10
|
Tue, 8 Jun 2010
|
[ 08:55 clsung ]
1.6 devel/googletest/Makefile
1.6 devel/googletest/distinfo
- Update to 1.5.0
PR: ports/146903
Submitted by: Yi-Huan Chan <yhchan_AT_csie dot nctu dot edu dot tw>
|
Tue, 17 Nov 2009
|
[ 07:23 clsung ]
1.5 devel/googletest/Makefile
1.5 devel/googletest/distinfo
1.3 devel/googletest/pkg-plist
- Update to 1.4.0
|
Fri, 12 Jun 2009
|
[ 08:18 clsung ]
1.4 devel/googletest/Makefile
1.4 devel/googletest/distinfo
- Update to 1.3.0
|
Fri, 12 Dec 2008
|
[ 03:55 clsung ]
1.3 devel/googletest/Makefile
1.3 devel/googletest/distinfo
- Update to 1.2.1
|
[ 02:44 clsung ]
1.2 devel/googletest/Makefile
1.2 devel/googletest/distinfo
1.2 devel/googletest/pkg-plist
- Update to 1.2.0
|
Tue, 14 Oct 2008
|
[ 08:01 clsung ]
1.3214 devel/Makefile
1.1 devel/googletest/Makefile
1.1 devel/googletest/distinfo
1.1 devel/googletest/pkg-descr
1.1 devel/googletest/pkg-plist
Google's framework for writing C++ tests on a variety of platforms
(Linux, Mac OS X, Windows, Cygwin, Windows CE, and Symbian).
Based on the xUnit architecture. Supports automatic test discovery,
a rich set of assertions, user-defined assertions, death tests,
fatal and non-fatal failures, type-parameterized tests, various options
for running the tests, and XML test report generation.
|
Number of commits found XX: 32 |
|
Latest Vulnerabilities |
12 vulnerabilities affecting 81 ports have been reported in the past 14 days
|
* - modified, not new All vulnerabilities
Last updated: 2021-01-22 09:34:38
|
|