Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
13 Oct 2020 02:41:53
0.12_1

|
linimon  |
Now builds on powerpc64-12.
Approved by: portmgr (tier-2 blanket) |
17 May 2020 21:11:13
0.12_1

|
linimon  |
Mark as broken on powerpc64:
IWYU: configuring for LLVM 8.0.1...
Could NOT find Git (missing: GIT_EXECUTABLE)
I have investigated but don't know why it breaks here but builds elsewhere.
Approved by: portmgr (tier-2 blanket) |
09 Aug 2019 09:56:32
0.12_1

|
linimon  |
Escape hashtag character in COMMENT. |
07 Aug 2019 08:40:45
0.12_1

|
linimon  |
Refactor out the constant string '80' to ease future maintenance. |
26 Jul 2019 20:46:57
0.12_1

|
gerald  |
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 |
24 Apr 2019 05:38:20
0.12

|
koobs  |
devel/include-what-you-use: Update to 0.12
Changelog:
https://github.com/include-what-you-use/include-what-you-use/releases/tag/clang_8.0 |
23 Apr 2019 05:29:45
0.11

|
koobs  |
devel/include-what-you-use: Update to 0.11
PR: 234429
Submitted by: Greg V <greg unrelenting.technology> |
12 Mar 2019 01:05:27
0.10

|
linimon  |
Fix build on gcc-based architectures:
cc1plus: error: unrecognized command line option "-std=c++11"
Approved by: portmgr (tier-2 blanket) |
25 Dec 2018 20:25:40
0.10

|
tcberner  |
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine |
30 Oct 2018 18:34:39
0.10

|
linimon  |
Now builds on powerpc64. |
13 Aug 2018 16:55:50
0.10

|
rene  |
devel/include-what-you-use: return to koobs@ per his request. |
05 Aug 2018 20:45:47
0.10

|
rene  |
devel/include-what-you-use: update to version 0.10
This version uses clang 6.0
Take over maintainership.
Approved by: koobs (implicit, three consecutive maintainer timeouts) |
29 Jan 2018 11:11:03
0.8_1

|
jbeich  |
devel/include-what-you-use: switch to llvm50 (like r457360)
PR: 224617
Approved by: maintainer timeout (1 month)
MFH: 2018Q1 |
24 Dec 2017 14:20:07
0.8

|
rene  |
devel/include-what-you-use: update to version 0.8
This version uses clang 4.0 instead of clang 3.9 to check files.
While here, pet portlint.
PR: 223537
Submitted by: Anton Yuzhaninov (citrin+pr@citrin.ru)
Approved by: maintainer timeout (koobs, 7 weeks) |
21 May 2017 21:55:08
0.7_1

|
linimon  |
Mark some ports failing on power64. In cases where the error message
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Reported by: swills |
16 May 2017 21:05:41
0.7_1

|
tcberner  |
Fix shebangs.
Approved by: rakuco (mentor, implicit) |
01 Jan 2017 03:45:13
0.7

|
sunpoet  |
Remove BROKEN_FreeBSD_9
Approved by: portmgr (blanket) |
27 Dec 2016 12:16:32
0.7

|
rene  |
devel/include-what-you-use: update to version 0.7
- now uses clang 3.9 instead of clang 3.7
- add mappings for Qt 5.4
- premilinary mapings for libc++
- bugfix in fix_incudes.py
- various other fixes and enhancements
- add pkg-plist
PR: 215211
Submitted by: rene
Approved by: maintainer timeout (koobs, 16 days) |
21 Oct 2016 08:40:09
0.5_1

|
amdmi3  |
- Mark broken on 9.x:
cc1plus: error: unrecognized command line option "-std=c++11"
Approved by: portmgr blanket |
01 Apr 2016 14:00:57
0.5_1

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
09 Mar 2016 11:12:05
0.5_1

|
antoine  |
Fix DEPENDS |
21 Feb 2016 15:05:22
0.5

|
koobs  |
[NEW] devel/include-what-you-use: Clang tool to analyze #includes in C and C++
sources
"Include what you use" means this: for every symbol (type, function,
variable, or macro) that you use in foo.cc (or foo.cpp), either foo.cc
or foo.h should include a .h file that exports the declaration of that
symbol. (Similarly, for foo_test.cc, either foo_test.cc or foo.h should
do the including.) Obviously symbols defined in foo.cc itself are
excluded from this requirement.
This puts us in a state where every file includes the headers it needs
to declare the symbols that it uses. When every file includes what it
uses, then it is possible to edit any file and remove unused headers,
without fear of accidentally breaking the upwards dependencies of
that file. It also becomes easy to automatically track and update
dependencies in the source code.
WWW: http://include-what-you-use.org |