non port: games/golly/Makefile |
Number of commits found: 40 |
Thursday, 23 Nov 2023
|
11:20 Nuno Teixeira (eduardo)
*/*: Bump consumers of x11-toolkits/wxgtk32
New version of wxWidgets in tree
03eac77 |
Monday, 6 Nov 2023
|
10:03 Rodrigo Osorio (rodrigo)
*/*: Update WWW to use HTTPS for sourceforge.net projects
Homepage link is permanent redirected to its HTTPS counterpart
Issue reported by repology : https://repology.org/repository/freebsd/problems
Approved by: portmgr (blanket)
PR: 274888
06df180 |
Saturday, 15 Jul 2023
|
20:35 Nuno Teixeira (eduardo)
games/golly: Update to 4.2
- Switch to DISTVERSION
- Define LICENSE_FILE
- Take maintainership
Changes: https://golly.sourceforge.io/Help/changes.html
6bdfe8c |
Wednesday, 7 Sep 2022
|
21:10 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.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
b7f0544 |
Tuesday, 22 Jun 2021
|
18:53 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
da3162c |
Friday, 16 Apr 2021
|
07:52 Yuri Victorovich (yuri)
x11-toolkits/wxgtk31: Update 3.1.4 -> 3.1.5
Bump 43 ports that either depend on wxgtk31 or potentially depend on it.
Reported by: portscout
925e342 |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Sunday, 17 May 2020
|
05:55 lbartoletti
x11-toolkits/wxgtk30: Update to 3.0.5.1
Changelog:
-
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.0.5/docs/changes.txt
PR: 246218
Approved by: tcberner (mentor)
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D24808
 |
Friday, 27 Dec 2019
|
13:26 makc
games/golly:
- Add patch from Debian repo to disable Python 2 support
 |
Thursday, 26 Dec 2019
|
07:54 antoine
Deprecate a few ports
With hat: portmgr
 |
Friday, 18 Oct 2019
|
15:30 fernape
games/golly: update to 3.3
* Remove patch included upstream
* While here convert to USES=localbase and USES=xorg
ChangeLog: http://golly.sourceforge.net/Help/changes.html
Reported by: portscout
 |
Friday, 26 Jul 2019
|
20:46 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
 |
Monday, 25 Feb 2019
|
12:47 bapt
wxGTK3.0: switch to gtk3 and webkit2
Discussed with: portmgr
 |
Wednesday, 12 Dec 2018
|
01:35 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
 |
Tuesday, 11 Sep 2018
|
18:34 zeising
Change x11/xorgproto to become a build dep
Change x11/xorgproto to become a build time dependency when added to
USE_XORG. Change the dependency to be on the port, rather than a file the
port installs.
Fix fallout.
Bump portrevision on depending ports.
PR: 230909
Reviewed by: eadler
Approved by: portmgr (antoine)
Obtained
from: https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto
exp-run: antoine
Differential Revision: https://reviews.freebsd.org/D16906
 |
Sunday, 12 Aug 2018
|
12:32 tobik
games/golly: Fix build on aarch64 or when objdump is missing
Golly dlopens Python at runtime and looks up its shared library
name during configure. It first tries to do this using
distutils.sysconfig.get_config_var("LDLIBRARY"), and then tries to
use objdump if that fails. Since the former is unlikely to ever
fail on FreeBSD, objdump will never actually be called and we can
pacify configure by pretending objdump is available.
 |
03:26 linimon
Mark as broken on aarch64: fails to configure: missing objdump.
 |
Sunday, 29 Jul 2018
|
22:18 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
 |
Wednesday, 25 Jul 2018
|
12:55 swills
games/golly: Update to 3.2
PR: 230035
Submitted by: Kai <freebsd_ports@k-worx.org>
 |
Monday, 11 Dec 2017
|
16:54 antoine
- Those ports fail to build with python3
- Add some explicit FLAVOR to dependencies where needed
 |
Sunday, 10 Sep 2017
|
20:55 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
 |
Saturday, 10 Jun 2017
|
01:51 sunpoet
Remove no-op WX_UNICODE
Approved by: portmgr (blanket)
 |
Friday, 21 Apr 2017
|
16:32 amdmi3
- Add LICENSE
- Fix plist
 |
Saturday, 1 Apr 2017
|
15:23 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
 |
Thursday, 20 Oct 2016
|
15:58 rakuco
Reassign makc's ports back to the pool.
See "Maintainer Reset" in
https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit
was in March 31st (r412218), and his ports have been timing out since at least
July (r418155).
I also emailed him 2 weeks ago and have received no response so far.
 |
Wednesday, 10 Jun 2015
|
09:25 makc
games/golly:
- Update to 2.7
- Install everything to DATADIR and provide wrapper script to start golly
 |
Sunday, 12 Apr 2015
|
01:20 amdmi3
- Fix build on < 10.x after wxgtk30 update
 |
Saturday, 24 Jan 2015
|
02:00 amdmi3
- Fix build on < 10.x after webkit-gtk2 update
Approved by: portmgr blanket
MFH: 2015Q1
 |
Monday, 20 Oct 2014
|
17:36 mva
- Convert games/ to new USES=python
Approved by: portmgr (implicit)
 |
Wednesday, 10 Sep 2014
|
20:50 gerald
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
 |
Monday, 24 Mar 2014
|
15:42 bapt
Switch to use wx 3.0
 |
Monday, 13 Jan 2014
|
21:00 rene
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by: python (mva, rm)
Approved by: portmgr-lurkers (mat)
 |
Wednesday, 23 Oct 2013
|
13:08 makc
- Support staging
- Use new LIB_DEPENDS syntax
- Use options helpers
- Convert to USES
- Minor changes/fixes
 |
Friday, 20 Sep 2013
|
17:36 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
games)
 |
Thursday, 12 Sep 2013
|
16:41 az
- convert to the new perl5 framework
- convert USE_GMAKE to Uses
Approved by: portmgr (bapt@, blanket)
 |
Wednesday, 14 Aug 2013
|
22:35 ak
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery)
 |
Friday, 22 Mar 2013
|
20:06 makc
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi)
 |
Wednesday, 23 Jan 2013
|
15:00 makc
Bump PORTREVISION after DESKTOP_ENTRIES update
 |
Thursday, 10 Jan 2013
|
17:03 makc
Add new port games/golly:
Golly is an open source, cross-platform application for exploring
Conway's Game of Life and other cellular automata.
WWW: http://golly.sourceforge.net/
 |
Number of commits found: 40 |