Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.2.3 28 Feb 2024 20:04:01 |
Dmitry Marakasov (amdmi3) |
games/hexalate: update 1.2.2 → 1.2.3 |
1.2.2_1 26 Jul 2023 19:58:56 |
Loïc Bartoletti (lbartoletti) |
devel/qt6: bump dependent ports |
1.2.2 26 Jan 2023 17:55:05 |
Dmitry Marakasov (amdmi3) |
games/*: do not needlessly run-depend on qt6-tools |
1.2.2 12 Jan 2023 17:41:58 |
Dmitry Marakasov (amdmi3) |
games/hexalate: update 1.2.1 → 1.2.2 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.2.1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.2.1 01 Sep 2022 18:13:31 |
Dmitry Marakasov (amdmi3) |
games/hexalate: update 1.2.0 → 1.2.1 |
1.2.0_1 10 Oct 2021 19:44:42 |
Baptiste Daroussin (bapt) |
INSTALLS_ICONS: retire the macro and rework the related dependencies
While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency) |
1.2.0_1 22 Jun 2021 18:53:08 |
Kevin Bowling (kbowling) |
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 |
1.2.0 11 May 2021 12:52:28 |
Dmitry Marakasov (amdmi3) |
games/hexalate: update to 1.2.0 |
1.1.6 07 Apr 2021 23:19:01 |
Dmitry Marakasov (amdmi3) |
Remove useless Created by: headers mentioning me |
1.1.6 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.1.6 03 May 2020 01:14:45 |
amdmi3 |
- Update to 1.1.6 |
1.1.5 15 Jan 2020 12:06:14 |
bapt |
Add LOCALBASE/share/man to the valid path for manpages
Also compress manpages in this location.
As a followup of a discussion which occured in 2017:
https://lists.freebsd.org/pipermail/freebsd-arch/2017-March/018115.html
And following:
https://svnweb.freebsd.org/base?view=revision&revision=315053
and
https://svnweb.freebsd.org/base?view=revision&revision=315142
All the supported FreeBSD version now supports share/man in manpath for
LOCALBASE As a result the ports tree can now accept it for manpage, but
more over migrate to this new path. Resulting in more consistency now the
manpages in base and ports would be in the relative path (under share/)
and a reduced amount of patching needed to port something to FreeBSD
Note1: this has already be done for GNU info pages earlier
Note2: due to the fact that for end user no functionnality will change during
the migration of the manpages to the new location and to avoid massive rebuild
of packages, it has been decided to not bump portrevision when migrating.
Reviewed by: mat (portmgr)
Differential Revision: https://reviews.freebsd.org/D23166 |
1.1.5 14 Aug 2019 18:16:04 |
amdmi3 |
- Update to 1.1.5 |
1.1.4_4 26 Jul 2019 20:46:57 |
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 |
1.1.4_3 16 Jan 2019 11:13:45 |
tijl |
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 (Only the first 15 lines of the commit message are shown above ) |
1.1.4_2 12 Dec 2018 01:35:36 |
gerald |
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 |
1.1.4_1 29 Jul 2018 22:18:46 |
gerald |
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 |
1.1.4 25 Jul 2018 18:30:45 |
amdmi3 |
- Update to 1.1.4 |
1.1.3 28 Jun 2018 17:39:55 |
tcberner |
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 |
1.1.3 07 Jun 2018 16:57:41 |
amdmi3 |
- Update to 1.1.3 |
1.1.2 30 Dec 2017 18:19:41 |
amdmi3 |
- Update to 1.1.2
- Update WWW |
1.1.1_1 10 Sep 2017 20:55:39 |
gerald |
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 |
1.1.1 20 Aug 2017 11:19:48 |
amdmi3 |
- Update to 1.1.1 |
1.1.0_2 23 May 2017 05:03:16 |
rezny |
Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10845 |
1.1.0_1 01 Apr 2017 15:23:32 |
gerald |
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 |
1.1.0 23 Jan 2017 15:07:18 |
amdmi3 |
- Update WWW |
1.1.0 16 Oct 2016 07:50:52 |
amdmi3 |
- Update to 1.1.0
- Add LICENSE |
1.0.3 22 Sep 2014 14:21:59 |
amdmi3 |
- Cleanup plist |
1.0.3 13 Jun 2014 07:36:28 |
olgeni |
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories G-I.
CR: D201
Approved by: portmgr (bapt) |
1.0.3 07 May 2014 22:00:03 |
amdmi3 |
- Convert USE_BZIP2 to USES |
1.0.3 07 Mar 2014 20:19:25 |
amdmi3 |
- Update to 1.0.3 |
1.0.2 23 Nov 2013 17:42:04 |
makc |
- Convert to USES=qmake
Approved by: portmgr (blanket approval) |
1.0.2 22 Oct 2013 13:53:34 |
amdmi3 |
- Remove manual creation and removal of share/applications, as it's now in the
mtree (games category)
Approved by: portmgr (bdrewery) |
1.0.2 22 Oct 2013 08:03:16 |
amdmi3 |
- Support staging |
1.0.2 20 Sep 2013 17:36:36 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
games) |
1.0.2 14 Aug 2013 22:35:54 |
ak |
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery) |
1.0.2 25 Feb 2013 04:07:19 |
amdmi3 |
- Update to 1.0.2 |
1.0.1_2 06 Jun 2012 06:44:38 |
miwi |
- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4
Review by: bapt, David Naylor (kde team) |
1.0.1_2 01 Jun 2012 05:26:28 |
dinoex |
- update png to 1.5.10 |
1.0.1_1 03 Jul 2011 14:25:36 |
ohauer |
-remove MD5 |
1.0.1_1 28 Mar 2010 06:47:48 |
dinoex |
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi |
1.0.1 03 Feb 2010 00:53:40 |
amdmi3 |
- Update to 1.0.1 |
1.0.0 28 Jul 2009 16:34:36 |
amdmi3 |
- Update URL of my distfile mirror in 87 ports
Approved by: portmgr (erwin) |
1.0.0 09 Apr 2009 21:54:55 |
amdmi3 |
Hexalate is a color matching game. The goal of the game is to rotate
and position the circles so that each touching line matches in
color. You rotate circles by right clicking, and you move circles
by dragging them. The game stores the positions and rotations of
the circles across runs.
WWW: http://gottcode.org/hexalate/ |