1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
Commit Graph

156 Commits

Author SHA1 Message Date
Gerald Pfeifer
ea8c8ec7da 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
2019-07-26 20:46:53 +00:00
Gerald Pfeifer
a9f015d155 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
2018-12-12 01:35:33 +00:00
Gerald Pfeifer
09f9633cb6 Bump PORTREVISION for ports depending on the canonical version of GCC
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
2018-07-29 22:18:44 +00:00
Gerald Pfeifer
c2a92a1aea Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
2018-03-10 17:46:04 +00:00
Gerald Pfeifer
e59c88cece Bump PORTREVISION for ports depending on the canonical version of GCC
(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
2017-09-10 20:55:38 +00:00
Jan Beich
9ba838979e databases/gigabase: work around GCC >= 6 bustage
testtimeseries.cpp: In function 'float fmax(float, float)':
testtimeseries.cpp:50:35: error: 'float fmax(float, float)' conflicts with a previous declaration
 inline float fmax(float x, float y) { return x > y ? x : y; }
                                   ^
In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0,
                 from testtimeseries.cpp:15:
/usr/local/lib/gcc6/include/c++/cmath:1452:3: note: previous declaration 'constexpr float std::fmax(float, float)'
   fmax(float __x, float __y)
   ^~~~
testtimeseries.cpp: In function 'float fmin(float, float)':
testtimeseries.cpp:51:35: error: 'float fmin(float, float)' conflicts with a previous declaration
 inline float fmin(float x, float y) { return x < y ? x : y; }
                                   ^
In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0,
                 from testtimeseries.cpp:15:
/usr/local/lib/gcc6/include/c++/cmath:1472:3: note: previous declaration 'constexpr float std::fmin(float, float)'
   fmin(float __x, float __y)
   ^~~~
testtimeseries.cpp: In function 'int main(int, char**)':
testtimeseries.cpp:69:54: error: call of overloaded 'fmax(float&, float&)' is ambiguous
             quote.high = fmax(quote.open, quote.close);
                                                      ^
In file included from /usr/local/lib/gcc6/include/c++/cmath:45:0,
                 from /usr/local/lib/gcc6/include/c++/math.h:36,
                 from testtimeseries.cpp:15:
/usr/include/math.h:309:8: note: candidate: double fmax(double, double)
 double fmax(double, double) __pure2;
        ^~~~
In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0,
                 from testtimeseries.cpp:15:
/usr/local/lib/gcc6/include/c++/cmath:1463:5: note: candidate: constexpr typename __gnu_cxx::__promote_2<_Tp, _Up>::__type std::fmax(_Tp, _Up) [with _Tp = float; _Up = float; typename __gnu_cxx::__promote_2<_Tp, _Up>::__type = float]
     fmax(_Tp __x, _Up __y)
     ^~~~
/usr/local/lib/gcc6/include/c++/cmath:1456:3: note: candidate: constexpr long double std::fmax(long double, long double)
   fmax(long double __x, long double __y)
   ^~~~
/usr/local/lib/gcc6/include/c++/cmath:1452:3: note: candidate: constexpr float std::fmax(float, float)
   fmax(float __x, float __y)
   ^~~~
testtimeseries.cpp:50:14: note: candidate: float fmax(float, float)
 inline float fmax(float x, float y) { return x > y ? x : y; }
              ^~~~
testtimeseries.cpp:70:53: error: call of overloaded 'fmin(float&, float&)' is ambiguous
             quote.low = fmin(quote.open, quote.close);
                                                     ^
In file included from /usr/local/lib/gcc6/include/c++/cmath:45:0,
                 from /usr/local/lib/gcc6/include/c++/math.h:36,
                 from testtimeseries.cpp:15:
/usr/include/math.h:310:8: note: candidate: double fmin(double, double)
 double fmin(double, double) __pure2;
        ^~~~
In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0,
                 from testtimeseries.cpp:15:
/usr/local/lib/gcc6/include/c++/cmath:1483:5: note: candidate: constexpr typename __gnu_cxx::__promote_2<_Tp, _Up>::__type std::fmin(_Tp, _Up) [with _Tp = float; _Up = float; typename __gnu_cxx::__promote_2<_Tp, _Up>::__type = float]
     fmin(_Tp __x, _Up __y)
     ^~~~
/usr/local/lib/gcc6/include/c++/cmath:1476:3: note: candidate: constexpr long double std::fmin(long double, long double)
   fmin(long double __x, long double __y)
   ^~~~
/usr/local/lib/gcc6/include/c++/cmath:1472:3: note: candidate: constexpr float std::fmin(float, float)
   fmin(float __x, float __y)
   ^~~~
testtimeseries.cpp:51:14: note: candidate: float fmin(float, float)
 inline float fmin(float x, float y) { return x < y ? x : y; }
              ^~~~

PR:		219275
2017-05-14 18:30:38 +00:00
Gerald Pfeifer
04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
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
2017-04-01 15:23:30 +00:00
Gerald Pfeifer
89f8b05214 Bump PORTREVISIONS for ports depending on the canonical version of GCC and
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.
2016-11-20 09:38:08 +00:00
Dmitry Marakasov
47e93044d0 - Strip libraries 2015-06-07 15:23:23 +00:00
Tijl Coosemans
2358c08a33 Convert to USES=autoreconf 2015-04-18 19:09:03 +00:00
Baptiste Daroussin
afe1d1c720 Remove Authors and License from pkg-descr 2015-03-02 23:16:01 +00:00
Baptiste Daroussin
3edc030b9f Cleanup plist 2014-10-20 10:41:12 +00:00
Tijl Coosemans
a5bee80ce4 Use default LIBTOOLIZE_ARGS 2014-09-13 18:25:04 +00:00
Martin Wilke
ca74a64fac - Update to 3.91
PR:		190893
2014-06-18 07:41:51 +00:00
Baptiste Daroussin
f0a8714b3a Convert to USES=dos2unix
With hat:	portmgr
2014-05-26 06:55:07 +00:00
Martin Wilke
6ac9d07320 - Drop maintainership 2014-02-06 03:17:07 +00:00
Baptiste Daroussin
36117d7097 Add NO_STAGE all over the place in preparation for the staging support (cat: databases) 2013-09-20 16:13:47 +00:00
Martin Wilke
e32c57c527 - Unbreak build 2012-05-16 04:10:28 +00:00
Pav Lucistnik
b3b634bbad - Mark BROKEN: does not patch
Reported by:	pointyhat
2012-05-13 20:09:49 +00:00
Martin Wilke
dbd0f3971c - Update to 3.86
PR:		166967
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2012-05-03 16:04:11 +00:00
Martin Wilke
9b44799b8a - Get rid FreeBSD 6.x support 2011-11-07 03:25:29 +00:00
Martin Wilke
d4ebba6509 - Update to 3.84 2011-11-06 15:34:27 +00:00
Dmitry Marakasov
6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00
Koop Mast
0e682dded4 Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.

PR:		ports/159624
Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru>
2011-08-11 19:20:17 +00:00
Martin Wilke
ca01176513 - Update to 3.82 2011-06-12 03:54:46 +00:00
Martin Wilke
47a516521f - Update to 3.80 2011-02-12 18:36:01 +00:00
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +00:00
Martin Wilke
4524222499 - Update to 3.79 2010-11-04 10:00:10 +00:00
Martin Wilke
a8fd5ee899 - Update to 3.77 2010-07-10 07:38:05 +00:00
Martin Wilke
9ba357981d - Update to 3.76
PR:		145153
Submitted by:	Sahil Tandon <sahil@tandon.net>
2010-04-02 16:50:14 +00:00
Martin Wilke
9ea97ba6e4 - Update to 3.75 2010-03-11 21:25:16 +00:00
Dmitry Marakasov
075acacd24 - Switch SourceForge ports to the new File Release System: categories starting with D 2009-08-22 00:18:43 +00:00
Jeremy Messenger
789d75c728 -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:	marcus and kwm
Pointyhat-exp:	a few times by pav
Tested by:	pgollucci, "Romain Tartière" <romain@blogreen.org>, and
		a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:	marcus
Approved by:	portmgr
2009-08-02 19:36:34 +00:00
Martin Wilke
c09df23a4b - Update to 3.70 2009-07-11 16:21:18 +00:00
Martin Wilke
928fef1309 - Update to 3.69 2009-03-22 14:39:44 +00:00
Martin Wilke
6c5f9e6c61 - Update to 3.68 2009-02-03 09:42:52 +00:00
Martin Wilke
238d31fe53 - Update to 3.67
- Take maintainership
2008-12-23 19:48:32 +00:00
Pietro Cerutti
532b069548 - Update to 3.66
PR:		125230
Submitted by:	Ports Fury
2008-07-04 23:54:58 +00:00
Martin Wilke
14b8435765 - Update to 3.65
PR:		124037
Submitted by:	Ports Fury
2008-05-30 13:43:53 +00:00
Martin Wilke
1ab48ca1a1 - Update to 3.61
PR:		118605
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2007-12-14 16:51:04 +00:00
Martin Matuska
3ce519c66a - update to 3.58
PR:		ports/114781
Submitted by:	Thomas Abthorpe <thomas@goodking.ca>
Approved by:	garga (mentor, implicitt)
2007-07-23 22:49:29 +00:00
Sergey A. Osokin
1136715bb3 Drop maintainership. 2006-09-14 17:51:15 +00:00
Sergey A. Osokin
71683f6af8 Update to 3.49. 2006-06-13 10:20:47 +00:00
Sergey A. Osokin
169370204d Update to 3.48. 2006-04-17 09:25:36 +00:00
Sergey A. Osokin
054fac3657 Update to 3.47. 2006-04-14 10:24:57 +00:00
Sergey A. Osokin
ce3bb7b15a Update to 3.46. 2006-03-15 08:55:49 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Sergey A. Osokin
5b6e2143fd Fix build depended port (i.e. www/oops) by install addition header.
Bump PORTREVISION.

No cookie for:			author
Notice about broken build from:	az, kris
2006-02-20 07:47:18 +00:00
Sergey A. Osokin
9c896d58a7 Update to 3.45. 2006-02-15 10:23:51 +00:00
Edwin Groothuis
acd87b4ad8 SHA256ify
Approved by:    krion@
2006-01-22 08:34:46 +00:00