Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
2.7.7_2 08 Nov 2023 18:43:07 |
Max Brazhnikov (makc) |
math/scilab: drop maintainership
Release math/scilab and its prerequisites |
2.7.7_2 26 Jul 2023 00:48:20 |
Muhammad Moinur Rahman (bofh) |
*/*: Fix build with llvm16 on 13.2-STABLE
As like as HEAD(14.0-RELEASE) llvm16 was merged in base for 13.2-STABLE
with the OSVERSION 1302507.
- Utilize USE_CXXSTD=c++14 or similar solution where applicable
- Update conditionals to addtionally check for OSVERSION greater than
1302507 and less than 1400000
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation |
2.7.7_2 25 Jun 2023 21:42:45 |
Muhammad Moinur Rahman (bofh) |
devel/antlr: Fix build with llvm16
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation |
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) |
2.7.7_2 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 ) |
2.7.7_2 20 Jul 2022 14:21:35 |
Tobias C. Berner (tcberner) |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
2.7.7_2 29 Oct 2021 09:50:18 |
Stefan Eßer (se) |
*/*: Remove redundant '-[0-9]*' from CONFLICTS
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) |
2.7.7_2 06 Apr 2021 14:31:13 |
Mathieu Arnold (mat) |
all: Remove all other $FreeBSD keywords. |
2.7.7_2 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.7.7_2 26 Sep 2020 08:14:42 |
makc |
devel/antlr:
- Remove support for Python2
- Update MASTER_SITES
PR: 249608 |
2.7.7_2 26 Nov 2019 21:46:13 |
jkim |
Clean up after java/openjdk6 and java/openjdk6-jre removal
java/openjdk6 support was removed from Mk/bsd.java.mk (r512662) and
java/openjdk6 and java/openjdk6-jre were removed from the ports tree
(r512663). Now this patch completely removes remaining stuff from the
ports tree.
PR: 241953 (exp-run)
Reviewed by: glewis
Approved by: portmgr (antoine)
Differential Revision: https://reviews.freebsd.org/D22342 |
2.7.7_1 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 |
2.7.7 23 Dec 2018 17:04:49 |
linimon |
Add patch to fix build with ports GCC (the port builds with base GCC,
but not with GCC 8 from ports).
PR: 234204
Submitted by: Piotr Kubaj
Approved by: portmgr (tier-2 blanket) |
2.7.7 23 Dec 2018 17:03:30 |
linimon |
Add USES=compiler:c++11-lang to fix linking with databases/sqlitebrowser
on GCC-based architectures. |
2.7.7 04 Dec 2018 09:31:25 |
amdmi3 |
- Add LICENSE
- Update WWW
Approved by: portmgr blanket |
2.7.7 30 Nov 2017 15:50:34 |
mat |
Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the (Only the first 15 lines of the commit message are shown above ) |
2.7.7 02 Nov 2016 09:05:58 |
makc |
Take maintainership of math/scilab dependencies |
2.7.7 20 Oct 2016 15:58:13 |
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. |
2.7.7 25 Aug 2015 10:00:12 |
makc |
devel/antlr:
- Convert to new options helpers
- Remove outdated JAVA_VERSION restriction
- Remove WITH_BUILT_JAVA_LIB knob, I don't see a point for converting it
into option |
2.7.7 22 May 2015 13:34:22 |
mat |
Remove $FreeBSD$ from patches files in categories a-j.
With hat: portmgr
Sponsored by: Absolight |
2.7.7 21 Feb 2015 23:01:51 |
marino |
devel/antlr: Remove faulty gcc 2.95 patches
According to the commit log, these patches were supposed to use
<istream.h> for gcc version less than 3.2 (namely GCC 2.95). The
logic is flawed. It doesn't work for gcc 3.2 or greater. There must
have been a compatibility header in gcc 4 that masked the error. GCC5
doesn't have one so it broke.
The logic is __GNU__ < 3 || __GNUC_MINOR__ < 2
it was intended to be __GNU__ < 3 || (__GNU__ == 3 && __GNU_MINOR__ < 2)
However, there is no point in fixing these patches. These ancient
GCCs aren't available on currently supported FreeBSD releases.
Approved by: Just fix it |
2.7.7 27 Oct 2014 07:32:26 |
bapt |
Nuke some @dirrm from devel |
2.7.7 20 Oct 2014 16:04:14 |
mva |
- Convert ports of devel/ to USES=python
Approved by: portmgr (implicit) |
2.7.7 29 Jul 2014 17:12:50 |
adamw |
Rename all patches that contain '::' as a path separator, and use
'__' instead. |
2.7.7 01 May 2014 16:49:42 |
makc |
Grab unmaintained dependencies for math/scilab |
2.7.7 05 Apr 2014 08:01:27 |
pawel |
- Add staging support
- Remove dependency on javavmwrapper, pulled in by java
- Convert to USES=gmake
- Use SUB_FILES instead of sed substitutions, move antlr.sh to antlr.sh.in
- Use options subs for PYTHON option |
2.7.7 13 Jan 2014 21:00:04 |
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) |
20 Sep 2013 17:03:27
|
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 1) |
2.7.7 10 Dec 2012 11:25:28 |
bapt |
Decommissioning java 1.5 (EOLed since October 2009):
suppress any reference to USE_JAVA= 1.5+ (part1) |
2.7.7 16 Aug 2012 14:35:27 |
bapt |
Do not include bsd.port.options.mk twice
Reported by: culot |
2.7.7 12 Jun 2012 06:44:15 |
bapt |
Convert to new options framework |
2.7.7 21 Jul 2011 05:03:02 |
linimon |
Now that the Java 1.3 and Java 1.4 ports are deprecated and will expire soon,
remove support for them from bsd.java.mk. As Jikes is not available in Java 1.5
or higher, remove it from bsd.java.mk too (suggested by hq@) and from the ports
which used it (only occurences were USE_JIKES=no). Support for the Blackdown VM
is also removed, as it is not available in Java 1.5 and higher.
Also remove the mapping from Java 1.1-1.4 to Java 1.5+ in bsd.java.mk to detect
old, broken ports; therefore bump the minimal value of JAVA_VERSION to 1.5.
While here, replace static values of JAVA_VERSION in files/*.in by
%%JAVA_VERSION%% .
PR: ports/158969
Submitted by: rene
Tested on: pointyhat-west -exp |
2.7.7 18 Dec 2010 08:03:12 |
glewis |
. Fix download/web site.
. Minor update to 2.7.7. |
2.7.6_2 02 Jun 2009 12:34:24 |
itetcu |
Respect PREFIX.
Reported by: QATty |
2.7.6_2 25 Jul 2008 14:34:52 |
pav |
- Remove USE_GCC where it can be satisfied with base compiler on following
FreeBSD versions: 5.3 and up, 6.x, 7.x, 8-CURRENT |
2.7.6_2 06 Jun 2008 13:21:59 |
edwin |
Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav) |
2.7.6_1 29 Jun 2007 19:33:25 |
linimon |
Reset rainer.alves@gmail.com by request due to current lack of time to
work on FreeBSD. |
2.7.6_1 19 May 2007 20:32:57 |
flz |
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}. |
2.7.6 24 Jun 2006 22:31:49 |
thierry |
Quieten configure by removing bashisms.
Approved by: Rainer Alves <rainer.alves (at) gmail.com> (maintainer) |
2.7.6 05 May 2006 01:43:39 |
lawrance |
Disable C# support until maintainer adds an option for support.
PR: ports/96768
Submitted by: Kostik Belousov <kostikbel@gmail.com>
Approved by: Rainer Alves <rainer.alves@gmail.com> (maintainer) |
2.7.6 03 May 2006 13:06:32 |
lawrance |
Update to 2.7.6.
Add OPTIONS for Python support.
Portlint cleanups.
Submitter takes maintainership.
PR: ports/93609
Submitted by: Rainer Alves <rainer.alves@gmail.com> |
2.7.5 24 Nov 2005 15:40:04 |
pav |
- Add some SHA256 checksums |
2.7.5 09 Nov 2005 09:22:20 |
vs |
Set USE_GCC=3.2+ to unbreak on 4.x |
2.7.5 28 Oct 2005 23:51:51 |
hq |
Update to 2.7.5
PR: 88161
Submitted by: Frerich Raabe <frerich.raabe@gmx.de> |
2.7.4 12 Dec 2004 23:07:56 |
kris |
Add missing directory |
2.7.4 15 Nov 2004 23:59:52 |
glewis |
. Antlr now seems to require Java 1.4 or better (certainly the build fails
with 1.3). So fix the build for 4.x by requiring Java 1.4+.
. Reflect this requirement in antlr.sh. |
2.7.4 15 Nov 2004 23:57:59 |
glewis |
. Fix the build for gcc < 3.2 (e.g. 2.95.4 on 4.x) by using <istream.h>
rather than <istream>. |
2.7.4 15 Nov 2004 04:17:08 |
hq |
- Update to 2.7.4
- Update to bsd.java.mk 2.0
- Use HAS_CONFIGURE and CONFIGURE_ENV
- Cleanup unnecessary *_DEPENDS
- Honor hier(7): install examples in ${EXAMPLESDIR}
- Honor Porter's handbook: install JAR in ${JAVAJARDIR}
- Cleanup unnecessary port variables
- No longer use DIST_SUBDIR
- Use javavmwrapper in shell script (rather than hardcoding the use of a
particular JVM)
- New option WITH_BUILD_JAVA_LIB which force the build of the Java lib
- Switch maintainer to ports@
PR: 73509
Submitted by: me
Approved by: maintainer |
2.7.2_1 31 Mar 2004 03:12:58 |
trevor |
SIZEify (maintainer timeout) |
2.7.2_1 04 Feb 2004 05:21:48 |
marcus |
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2) |
2.7.2 29 Jan 2004 12:50:38 |
netchild |
Fix the my previous commit, CONFLICTS gets feeded into ls, so it has
to be a shell glob pattern to detect all versions of the port.
Noticed by: Marius Strobl <marius@alchemy.franken.de> |
2.7.2 28 Jan 2004 16:45:47 |
netchild |
Add conflict between devel/antlr and devel/pccts. Maintainer of
antlr port informed.
Requested by: Marius Strobl <marius@alchemy.franken.de> |
2.7.2 08 May 2003 08:46:28 |
znerd |
Update ANTLR to 2.7.2.
PR: 51416, 51417, 51418, 51905
Submitted by: maintainer |
2.7.1 21 Feb 2003 11:23:04 |
knu |
De-pkg-comment. |
2.7.1 21 Jan 2003 02:53:49 |
edwin |
New port: devel/antlr
ANTLR, ANother Tool for Language Recognition, (formerly
PCCTS) is a language tool that provides a framework for
constructing recognizers, compilers, and translators from
grammatical descriptions containing C++ or Java actions.
PR: ports/40238
Submitted by: Geoffrey Mainland <mainland@apeiron.net> |