| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".
Approved by: portmgr (blanket)
|
|
|
|
|
| |
Reported by: antoine@
Fixes: 07fb2d5e9d00
|
| |
|
|
|
|
|
|
|
| |
Approved by: gerald (mentor)
Notes:
svn path=/head/; revision=539770
|
|
|
|
|
|
|
|
|
| |
Missing space before the -e argument
Reported by: Antonio Huete Jimenez <tuxillo@quantumachine.net> (dragonfly)
Notes:
svn path=/head/; revision=523629
|
|
|
|
|
|
|
|
|
|
| |
as he got FreeBSD.org account.
PR: 243002
Submitted by: salvadore
Notes:
svn path=/head/; revision=521615
|
|
|
|
|
|
|
|
|
|
| |
While here, clean up
PR: 241203
Submitted by: Lorenzo Salvadore <phascolarctos@protonmail.ch>
Notes:
svn path=/head/; revision=514536
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=507372
|
|
|
|
|
|
|
|
|
|
|
| |
misses some 64-bit mips variants.
While here, further collapse tests for multiple variants of arm, mips, powerpc.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=506464
|
|
|
|
|
|
|
|
| |
Reported by: linimon
Pointyhat to: swills
Notes:
svn path=/head/; revision=490384
|
|
|
|
|
|
|
|
|
|
| |
While here, pet portlint
PR: 219749
Submitted by: pfg
Notes:
svn path=/head/; revision=490369
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=487272
|
|
|
|
|
|
|
|
|
| |
PR: 231558
Submitted by: Piotr Kubaj
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=480455
|
|
|
|
|
|
|
| |
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=479351
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.
This includes ports
- featuring USE_GCC=yes or USE_GCC=any,
- featuring USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and those
- with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.
PR: 222542
Notes:
svn path=/head/; revision=475857
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
math/metis. Because math/metis and math/metis-edf are conflicting, this means
that the ports which depend on SuiteSparse and on metis-edf became BROKEN.
To solve this problem, this revision adds the missings includes brought by
metis-edf to metis.
Note for myself: if everything goes well, do not forget to deprecate the port
math/metis-edf in a near future.
Notes:
svn path=/head/; revision=469181
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(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
Notes:
svn path=/head/; revision=449591
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Using ninja instead of make (1) can lead to significant speed ups while building.
Therefore switch from having the ninja generator opt-in to having it opt-out.
Previously cmake-ports that wanted to use ninja could set
CMAKE_NINJA=yes
now, ports that do not work with ninja can set
cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.
The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary
PR: 219629
PR: 213331
Exp-run by: antoine
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D10748
Notes:
svn path=/head/; revision=444324
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=437439
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
Notes:
svn path=/head/; revision=426566
|
|
|
|
|
|
|
|
|
| |
PR: 210474
Submitted by: jbeich
With hat: portmgr-secretary
Notes:
svn path=/head/; revision=417685
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Instead of defining a variable that is almost always based on CONFIGURE_ENV,
just use CONFIGURE_ENV directly.
This also matches the behavior of other ports that do not use autotools (so
most ports can just worry about CONFIGURE_ENV). Additionally, the fact that
we do not use ?= means we do not have problems if another file in Uses/
needs to set CONFIGURE_ENV (with CMAKE_ENV, the order of the arguments to
USES would matter).
Ports which set CMAKE_ENV have been adjusted accordingly. In most cases,
CMAKE_ENV was just replaced with CONFIGURE_ENV, the exceptions being:
* databases/sqliteman: CMAKE_ENV line removed; setting QMAKESPEC there has
no effect on the build system.
* devel/freeocl: CMAKE_ENV line removed; FREEOCL_CXX_COMPILER is already
retrieved from the CMAKE_CXX_COMPILER variable in the build
system.
* graphics/openimageio: CMAKE_ENV line removed; setting Qt variables there
has no effect on the build system.
Reviewed by: makc
Differential Revision: https://reviews.freebsd.org/D3403
Notes:
svn path=/head/; revision=394572
|
|
|
|
| |
Notes:
svn path=/head/; revision=361962
|
|
|
|
|
|
|
|
|
|
|
|
| |
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Category M.
CR: D306
Approved by: portmgr (bapt)
Notes:
svn path=/head/; revision=361099
|
|
|
|
| |
Notes:
svn path=/head/; revision=360121
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- svn move Templates/Licenses/AL2 Templates/Licenses/APACHE20
- add APACHE10 and APACHE11 to Mk/bsd.licenses.db.mk
- add entry in UPDATING
- bulk change all ports AL2 => APACHE20
- math/openfst/pkg-plist: remove share/licenses/openfst-1.3.4
PR: ports/184785
Submitted by: ohauer
Reviewed by: tabthorpe
Approved by: portmgr (tabthorpe@)
Notes:
svn path=/head/; revision=338168
|
|
|
|
| |
Notes:
svn path=/head/; revision=334607
|
|
|
|
|
|
|
| |
math)
Notes:
svn path=/head/; revision=327746
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=316240
|
|
|
|
|
|
|
|
|
|
| |
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi)
Notes:
svn path=/head/; revision=314960
|
|
|
|
| |
Notes:
svn path=/head/; revision=314765
|
|
|
|
|
|
|
|
|
|
|
| |
CONFLICTS, LATEST_LINK, and PORTSCOUT; adjust dependent ports; explicitly
note the restrictive license of the metis ports (while here, append the MPI port to
*DEPENDS in math/parmetis, rather than using an assignment)
PR: 169578
Notes:
svn path=/head/; revision=300666
|
|
|
|
|
|
|
|
|
|
|
| |
minor simplifications; shorten a few long lines
PR: 163232 [1]
Submitted by: J. Beich (partial patch) [1]
Feature safe: yes
Notes:
svn path=/head/; revision=293456
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=286051
|
|
|
|
|
|
|
|
| |
PR: 158422
Submitted by: Niclas Zeising
Notes:
svn path=/head/; revision=277718
|
|
|
|
| |
Notes:
svn path=/head/; revision=271346
|
|
|
|
| |
Notes:
svn path=/head/; revision=254607
|
|
|
|
| |
Notes:
svn path=/head/; revision=182943
|
|
|
|
|
|
|
| |
* Bump portrevision.
Notes:
svn path=/head/; revision=182140
|
|
|
|
| |
Notes:
svn path=/head/; revision=181920
|
|
|
|
| |
Notes:
svn path=/head/; revision=181836
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
atlas libraries are not build statically. For now a shared library, and
therefore a run dependency to the ports that build with metis, is not
convenient.
Since I'm there, fix MASTER_SITES.
PR: 93714
Submitted by: Pedro F. Giffuni <giffunip (at) asme.org>
Notes:
svn path=/head/; revision=156699
|
|
|
|
| |
Notes:
svn path=/head/; revision=149432
|
|
|
|
| |
Notes:
svn path=/head/; revision=99421
|
|
|
|
|
|
|
| |
Submitted by: Pedro F. Giffuni <giffunip@yahoo.com>
Notes:
svn path=/head/; revision=86290
|
|
|
|
|
|
|
| |
Submitted by: Thierry Thomas <thierry@pompo.net>
Notes:
svn path=/head/; revision=85551
|
|
|
|
| |
Notes:
svn path=/head/; revision=75971
|
|
|
|
|
|
|
|
|
|
|
| |
is better studied
o Turn PORTCOMMENT variable in Makefile back into pkg-comment files
Approved by: kris (portmgr hat),
portmgr, re (silence)
Notes:
svn path=/head/; revision=69808
|
|
|
|
|
|
|
| |
Approved by: pat
Notes:
svn path=/head/; revision=69612
|
|
|
|
|
|
|
|
| |
- DOCSDIR support to some
- Brush out some lint
Notes:
svn path=/head/; revision=52072
|