Commit graph

80 commits

Author SHA1 Message Date
Dmitry Marakasov
b08ba041eb graphics/tiled: update 1.8.1 → 1.8.2 2022-02-22 16:46:39 +03:00
Dmitry Marakasov
55c22c0d52 graphics/tiled: update 1.8.0 → 1.8.1 2022-02-13 04:02:52 +03:00
Dmitry Marakasov
2b131a7925 graphics/tiled: update 1.7.2 → 1.8.0 2022-02-09 21:40:35 +03:00
Dmitry Marakasov
6c76359d7b graphics/tiled: update to 1.7.2 2021-08-18 16:17:17 +03:00
Dmitry Marakasov
be47b2adae graphics/tiled: update to 1.7.1 2021-07-13 17:21:18 +03:00
Kevin Bowling
da3162c7c9 graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.

PR:		246767
Reviewed by:	manu, bapt
Approved by:	x11
Differential Revision:	https://reviews.freebsd.org/D30824
2021-06-22 11:53:08 -07:00
Dmitry Marakasov
5fb024ea61 graphics/tiled: update to 1.7.0 2021-06-08 20:28:01 +03:00
Dmitry Marakasov
8008619b2b graphics/tiled: remove unneeded dependency 2021-04-29 17:20:08 +03:00
Dmitry Marakasov
8d37e75b11 graphics/tiled: update to 1.6.0 2021-04-27 22:07:31 +03:00
Dmitry Marakasov
5823922c58 Remove useless Created by: headers mentioning me 2021-04-08 02:19:01 +03:00
Mathieu Arnold
305f148f48
Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
Dmitry Marakasov
121200fe6d - Update to 1.5.0 2021-03-29 12:39:01 +00:00
Dmitry Marakasov
67c1b16294 - Update to 1.4.3 2020-11-22 21:18:43 +00:00
Dmitry Marakasov
34d3667f78 - Update to 1.4.2 2020-08-07 19:24:02 +00:00
Dmitry Marakasov
82e872f731 - Update to 1.4.1 2020-07-03 13:38:45 +00:00
Dmitry Marakasov
536ee10a5e - Update to 1.4.0 2020-06-18 23:34:47 +00:00
Dmitry Marakasov
0f7c5b140e - Update to 1.3.5 2020-05-28 19:41:35 +00:00
Tobias C. Berner
56fff26326 graphics/tiled: prepare for Qt5-5.15 2020-05-21 11:56:10 +00:00
Dmitry Marakasov
9685c83348 - Update to 1.3.4 2020-04-20 00:45:47 +00:00
Dmitry Marakasov
5c43a239b8 - Switch to share/man 2020-04-06 14:48:12 +00:00
Dmitry Marakasov
6ec9873e03 - Update to 1.3.3 2020-03-05 18:55:10 +00:00
Dmitry Marakasov
c014632ac3 - Update to 1.3.2 2020-01-24 15:07:44 +00:00
Dmitry Marakasov
6d9a40687b - Update to 1.3.1 2019-11-21 12:43:02 +00:00
Dmitry Marakasov
1a9a443120 - Update to 1.3.0 2019-11-18 17:30:14 +00:00
Dmitry Marakasov
decf4e3582 - Update to 1.2.5 2019-10-23 14:12:19 +00:00
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
Dmitry Marakasov
752db0ab38 - Update to 1.2.4 2019-06-03 14:52:34 +00:00
Dmitry Marakasov
7c4c114a64 - Update to 1.2.3 2019-03-13 15:48:32 +00:00
Dmitry Marakasov
9a34d0ccf0 - Update WWW 2019-02-08 09:30:41 +00:00
Dmitry Marakasov
c7f1c20be4 - Update to 1.2.2 2019-01-28 14:47:06 +00:00
Tijl Coosemans
1bf487d3e7 Fix Qt5 symbol version scripts to put the catch-all clause first. When
a symbol matches multiple clauses the last one takes precedence.  If the
catch-all is last it captures everything.  In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API.  This only affects lld because GNU ld always gives the
catch-all lowest priority.

Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium.  Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3]  The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one.  If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash.  Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.

Remove the weak wrappers (make them Linux specific).  This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.

[1] 5c2cbfccf9
[2] 2ed5054e3a
[3] 009f5ebb4b

Bump all ports that depend on Qt5.

PR:		234070
Exp-run by:	antoine
Approved by:	kde (adridg)
2019-01-16 11:13:44 +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
Dmitry Marakasov
dd41e4836f - Update to 1.2.1 2018-11-15 20:10:46 +00:00
Dmitry Marakasov
030d1b1c92 - Update to 1.2.0 2018-09-23 13:18:17 +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
Dmitry Marakasov
4373c6b7c4 - Update to 1.1.6 2018-07-18 19:05:39 +00:00
Tobias C. Berner
b1a1d38bf9 Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	→https://reviews.freebsd.org/D15540
2018-06-28 17:39:53 +00:00
Dmitry Marakasov
05d1c9fcbe - Update to 1.1.5 2018-04-29 21:14:26 +00:00
Dmitry Marakasov
a45700ef32 - Update to 1.1.4 2018-04-13 20:05:34 +00:00
Dmitry Marakasov
18ab5da413 - Update to 1.1.3 2018-03-13 14:42:06 +00:00
Dmitry Marakasov
1f304a4604 - Update to 1.1.2 2018-02-02 16:13:52 +00:00
Dmitry Marakasov
c17e0a474e - Update to 1.1.1 2018-01-09 12:14:13 +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
Dmitry Marakasov
b6541c52c0 - Update to 1.0.3 2017-08-31 11:58:40 +00:00
Dmitry Marakasov
932ccceea4 - Update to 1.0.2 2017-07-07 13:01:15 +00:00
Dmitry Marakasov
32bf04d54a - Update to 1.0.1 2017-06-16 09:23:18 +00:00
Dmitry Marakasov
1a9d580da5 - Update to 1.0.0 2017-05-31 17:36:18 +00:00
Matthew Rezny
b760897dde Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D10845
2017-05-23 05:03:14 +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
Dmitry Marakasov
4a8e6c1692 - Update to 0.18.2 2017-02-22 18:33:01 +00:00