Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
7.261.02.1,1 03 Sep 2022 11:10:14 |
Rene Ladan (rene) |
cleanup: Remove expired ports:
2022-09-03 java/openjdk7: EOLed since 31 July 2022
2022-09-03 java/openjdk7-jre: EOLed since 31 July 2022 |
7.261.02.1,1 03 Aug 2022 02:41:56 |
Greg Lewis (glewis) |
java/openjdk7: Mark as deprecated due to upstream EOL
Java 7 ceased extended support on July 31, 2022 and will no longer
receive any patches or updates.
PR: 264689 |
7.261.02.1,1 20 Jul 2022 14:22:12 |
Tobias C. Berner (tcberner) |
java: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Alex Dupre <ale@FreeBSD.org>
* Alex Semenyaka <alex@rinet.ru>
* Alexander Yerenkow <yerenkow@gmail.com>
* Anton Yudin (<contact@toha.org.ua>)
* Anton Yudin <toha@toha.org.ua>
* Benjamin Close <benjsc@FreeBSD.org>
* Björn König <bkoenig@alpha-tierchen.de>
* Conor McDermottroe <ports@mcdermottroe.com>
* Danilo Egea Gondolfo <danilo@FreeBSD.org
* Dave Glowacki <dglo@ssec.wisc.edu>
* Ernst de Haan <znerd@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
7.261.02.1,1 16 Oct 2021 09:51:39 |
Jimmy Olgeni (olgeni) |
*: fix tab vs. space issues, and comments according to the guide. |
7.261.02.1,1 11 Oct 2021 19:38:35 |
Daniel Engberg (diizzy) |
java/openjdk7: Update MASTER_SITES
Use a direct URL to Apache's release archive site as it's not mirrored
by upstream mirror sites
Approved by: glewis (port maintainer), arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D32427 |
7.261.02.1,1 11 Sep 2021 11:29:22 |
Bernhard Froehlich (decke) |
java/openjdk7: Add CPE information
Approved by: portmgr (blanket) |
7.261.02.1,1 19 May 2021 10:40:01 |
Dmitry Marakasov (amdmi3) |
java/openjdk7: mark BROKEN on FreeBSD ≥ 13
Approved by: portmgr blanket |
7.261.02.1,1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
7.261.02.1,1 14 Oct 2020 16:07:57 |
glewis |
More duplicate symbol removal to try to fix the build on -CURRENT |
7.261.02.1,1 11 Oct 2020 17:00:07 |
glewis |
Remove duplicate symbols to try and fix the build on -CURRENT |
7.261.02.1,1 19 Apr 2020 21:28:43 |
glewis |
Update to 7u261 |
7.251.02.1,1 19 Mar 2020 08:02:34 |
jkim |
Fix build with Clang. |
7.251.02.1,1 08 Mar 2020 16:52:58 |
glewis |
Update to 7u251 |
7.161.01,1 23 Sep 2019 18:27:38 |
glewis |
Remove reference to java/openjdk6
PR: 234792
Sponsored by: The FreeBSD Foundation |
7.161.01,1 13 Aug 2019 22:22:35 |
mat |
Convert to UCL & cleanup pkg-message (categories h-k) |
7.161.01,1 03 Jun 2019 16:01:49 |
swills |
java/openjdk7: fix build with freetype2 2.10.0
PR: 238225 |
7.161.01,1 13 Mar 2019 16:11:43 |
sunpoet |
Update WWW
Approved by: portmgr (blanket) |
7.161.01,1 08 Feb 2018 06:29:02 |
glewis |
. Fix the build for i386 when WITH_LLD_IS_LD is set.
PR: 225741
Submitted by: dim@ |
7.161.01,1 07 Feb 2018 22:23:58 |
glewis |
. Update to 7u161. |
7.151.01,1 18 Jan 2018 01:58:19 |
jkim |
Fix build with Clang 6.0.
Note it is partially merged from the upstream patches for Linux and GCC 6.
https://bugs.openjdk.java.net/browse/JDK-8163032
http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot/rev/e34324d73cd5
http://hg.openjdk.java.net/jdk7u/jdk7u/jdk/rev/9e1264f51bae
PR: 225054 |
7.151.01,1 28 Sep 2017 20:22:16 |
jkim |
Use java/bootstrap-openjdk6 to bootstrap. |
7.151.01,1 08 Sep 2017 18:11:04 |
glewis |
. Update to 7u151. |
7.141.02,1 31 May 2017 04:53:51 |
jkim |
Fix compilation with Clang 4.0. |
7.141.02,1 30 May 2017 00:19:07 |
glewis |
. Update to 7u141. |
7.131.00,1 29 May 2017 04:16:00 |
glewis |
. Update to 7u131. |
7.111.01_4,1 13 Apr 2017 21:27:23 |
jkim |
Merge fixes for JDK-6900441 and JDK-8029453 from Linux sources. |
7.111.01_3,1 18 Jan 2017 13:20:32 |
tijl |
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine) |
7.111.01_3,1 15 Jan 2017 22:50:38 |
glewis |
. Fix compilation with Clang 4.0
PR: 216016
Submitted by: jbeich@ |
7.111.01_2,1 09 Dec 2016 20:30:53 |
asomers |
Add an X11 option to java/openjdk[78]
It defaults to on. Disabling it will remove X support from Java, and reduce
X-related dependencies.
PR: 210000
Reviewed by: brd
Approved by: brd (ports)
Approved by: glewis (maintainer timeout)
Sponsored by: Spectra Logic Corp
Differential Revision: https://reviews.freebsd.org/D6698 |
7.111.01_1,1 24 Oct 2016 08:53:21 |
ale |
Update cacerts file using the one included in 8u111 release.
Notable change is the inclusion of Let's Encrypt CA. |
7.111.01,1 21 Oct 2016 12:51:41 |
mat |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight |
7.111.01,1 24 Aug 2016 06:20:57 |
jkim |
Update to use Apache Ant 1.9.7. |
7.111.01,1 20 Aug 2016 21:07:47 |
glewis |
. Update to 7u111. |
7.101.00_1,1 31 Jul 2016 12:51:30 |
bapt |
More typos |
7.101.00_1,1 31 Jul 2016 12:43:53 |
bapt |
Use the new @javavm |
7.101.00_1,1 13 Jun 2016 04:57:28 |
glewis |
. Handle unsafe operations that access invalid memory more gracefully.
. Bump PORTREVISION for this fix.
PR: 209599
Submitted by: Andrew Smith <iamasmith.home@gmail.com> |
7.101.00,1 21 May 2016 15:32:53 |
glewis |
. Update to 7u101 |
7.95.00,1 01 Apr 2016 14:08:38 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.
With hat: portmgr
Sponsored by: Absolight |
7.95.00,1 11 Mar 2016 11:53:42 |
tijl |
Combine print/cups-base, print/cups-client and print/cups-image into
print/cups and update it to 2.1.3. Also remove print/cups-pstoraster,
improve print/cups-filters, print/foomatic-* and update print/hplip to
3.16.2.
Long description:
First some background. When you hand a file to cups it sets up a chain of
filter programs that converts the file to something a printer understands.
Each filter has a cost associated with it and cups tries to find the
cheapest chain. Costs used to be configured in such a way that files were
first converted to PostScript. This could then be manipulated further (e.g.
putting multiple pages on one sheet) before finally being sent to a
PostScript printer or another filter like pstoraster which produces a raster
format understood by non-PostScript printer drivers. Nowadays most filters (Only the first 15 lines of the commit message are shown above ) |
7.95.00,1 03 Feb 2016 03:42:56 |
glewis |
. Update to 7u95. |
7.91.02,1 14 Dec 2015 04:09:59 |
glewis |
. Update to 7u91
PR: 204268 |
7.80.15_1,1 09 Sep 2015 09:40:54 |
glewis |
. Move the large patches which contain the changes between updates of the
JDK to being fetched remotely using PATCHFILES and PATCH_SITES.
This cuts the size taken by openjdk7 in the ports repository. |
7.80.15_1,1 17 Aug 2015 14:20:41 |
mat |
Remove UNIQUENAME and LATEST_LINK.
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.
Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.
Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)
Reviewed by: antoine, bapt
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3336 |
7.80.15_1,1 03 Jul 2015 16:47:04 |
glewis |
. Give openjdk7-jre a unique LATEST_LINK value. |
7.80.15_1,1 02 Jul 2015 19:28:39 |
jkim |
Add a slave port to create JRE-only package for java/openjdk7. |
7.80.15_1,1 02 Jul 2015 18:18:17 |
jkim |
Use sysctl(3) instead of procfs(5) when we need executable path from PID.
MFH: 2015Q3 |
7.80.15,1 22 May 2015 13:34:22 |
mat |
Remove $FreeBSD$ from patches files in categories a-j.
With hat: portmgr
Sponsored by: Absolight |
7.80.15,1 14 May 2015 10:15:09 |
mat |
MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight |
7.80.15,1 28 Apr 2015 05:40:25 |
glewis |
. Update to 7u80. |
7.76.13_1,1 15 Apr 2015 15:30:08 |
bdrewery |
Fix build with GCC with recent head kernel by disabling PCH for GCC.
The case for this is a recent head kernel building an older branch that uses
GCC in a jail.
This is discussed at
https://lists.freebsd.org/pipermail/svn-src-all/2015-March/101722.html
It may be possible to fix GCC to do the right thing with mmap(2) but it would
not be simple to make ports use a fixed GCC on older releases and without
needlessly building a ports compiler when the system one would otherwise be
fine without PCH.
With hat: portmgr |
7.76.13_1,1 24 Mar 2015 16:01:22 |
marino |
6 ports categories: Remove $PTHREAD_LIBS
Categories: cad, devel, java, x11-fm, biology, deskutils
approved by: PTHREAD blanket |
7.76.13_1,1 16 Feb 2015 23:58:17 |
jkim |
Properly use BLOCKING_IO_RETURN_INT() macro for NET_Accept(). |
7.76.13,1 02 Feb 2015 05:00:43 |
glewis |
. Update to 7u76
. Adopt a patchset strategy similar to the openjdk8 port, which keeps the
patch files smaller and makes the BSD differences clearer. |
7.71.14_1,1 02 Feb 2015 04:56:58 |
glewis |
. Fix window maximisation under Gnome 3.
PR: 196741
Submitted by: huanghwh@gmail.com |
7.71.14_1,1 24 Jan 2015 15:07:40 |
antoine |
Switch some dependencies from a directory name or a file generated by
pkg-install
to a package name, as the former can't be attributed to a package |
7.71.14_1,1 30 Dec 2014 23:09:46 |
antoine |
Allow building 10 years after 31 decembre 2004
With hat: portmgr |
7.71.14_1,1 16 Dec 2014 21:37:31 |
jkim |
Turn off -Werror for Clang 3.5+ and revert r374780 for now. |
7.71.14_1,1 16 Dec 2014 00:25:59 |
jkim |
Add an upstream patch to remove adlc's unused class FileBuffRegion.
https://bugs.openjdk.java.net/browse/JDK-8041620
Note this is an attempt to fix build with upcoming Clang 3.5.
Obtained from: jdk9 |
7.71.14_1,1 19 Nov 2014 21:52:04 |
jkim |
Fix symbol mapfile for libvm.so. Note FreeBSD still uses GNU nm(1). |
7.71.14,1 14 Nov 2014 15:38:28 |
antoine |
Cleanup plist |
7.71.14,1 01 Nov 2014 20:18:10 |
glewis |
. Update to 7u71. |
7.65.17,1 18 Oct 2014 12:20:43 |
jhb |
The MAP_NORESERVE flag to mmap() has never been implemented in FreeBSD and
is being removed. No portrev bump needed since the kernel will continue to
accept this flag for old binaries even after support for it in new binaries
is removed.
PR: 193961
Approved by: portmgr (antoine) |
7.65.17,1 16 Jul 2014 15:21:39 |
glewis |
. Update to 7u65. |
7.60.19_2,1 12 Jul 2014 17:36:18 |
glewis |
. Fix unpack200 on i386/amd64 by only swapping bytes when this is actually
a big endian machine. [1]
. Bump PORTREVISION for the fix.
. Speed up the build on multi-core machines using the MAKE_JOBS trickery
from the openjdk8 Makefile.
. Enlist openjdk7 users as testers of ant 1.9.4.
. Add a dependency on fontconfig.
PR: 191735 [1]
Requested by: Michael Schmiedgen <schmiedgen@takwa.de> [2] |
7.60.19_1,1 27 Jun 2014 18:41:19 |
jkim |
Implement current and signal methods for sun.nio.ch.NativeThread. Note this
fixes a test case in the following Apache Solr bug report.
https://issues.apache.org/jira/browse/SOLR-6204
Reported by: Dawid Weiss <dawid.weiss@gmail.com> |
7.60.19,1 10 Jun 2014 01:33:48 |
glewis |
. Add a pkg-message explaining that procfs and fdescfs may be required.
PR: 177779
Submitted by: navymaker@rambler-co.ru |
7.60.19,1 07 Jun 2014 23:37:24 |
glewis |
Update to 7u60. |
7.55.13_5,1 21 May 2014 20:03:15 |
jkim |
- Fix printing services. When CUPS is used, ${LOCALBASE}/bin/lpr must be
used to print a generated PostScript file. When lpd(8) is used, lpr(1) from
base must be used. Also, status command for lpc(8) requires a printer name.
If no argument is specified, i.e., "/usr/sbin/lpc status", then it displays
the command usage, i.e., "usage: status {all | printer ...}".
Unfortunately, "usage" is interpreted as a printer name because ":" is
included. Add "all" and adjust an expression for grep(1). [1]
- Use /proc/curproc/file to find its executable path if available. It fixes
java/icedtea-web, for example. [2]
PR: ports/178856 [1]
PR: java/189905 [2] |
7.55.13_4,1 09 May 2014 01:36:20 |
glewis |
. Handle spaces in CC, CXX or HOST_CC [1]
. Convert a space to a tab [2]
. Pet portlint by changing /nonexistent to ${NONEXISTENT} [2]
PR: 189385 [2]
Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> [1]
Takefu <takefu@airport.fm> [2] |
7.55.13_4,1 30 Apr 2014 04:47:25 |
jkim |
Include bundled header files before others. For example, this fixes build
with conflicting header files from graphics/jpeg. Note OTHER_INCLUDES or
OTHER_CPPFLAGS may be used instead. However, I think this is the least
intrusive change. Also, note java/openjdk6 already has a similar fix and
java/openjdk8 does not need it.
Tested by: Jonathan Chen (jonc at chen dot org dot nz) |
7.55.13_4,1 29 Apr 2014 04:15:11 |
glewis |
. Fix spawning external processes from the JVM. [1]
. Remove some patches that have been merged to the upstream repository.
PR: 188979, 188980 [1]
Obtained from: Kurt Miller (via the upstream bsd-port repo) [1] |
7.55.13_3,1 21 Apr 2014 22:54:16 |
jkim |
Refine the patch again. No functional change. |
7.55.13_3,1 21 Apr 2014 21:07:26 |
jkim |
Refine the previous patch. No functional change. |
7.55.13_3,1 21 Apr 2014 20:56:10 |
jkim |
Fix build with clang. |
7.55.13_3,1 20 Apr 2014 22:56:18 |
glewis |
. Update to 7u55.
. Use version 1.9.3 of ant [1]
. Don't insist on GCC since compilation with clang now works [2].
Obtained from: jkim@'s openjdk7 redport repo ([1], [2]) |
7.51.13_3,1 20 Apr 2014 22:45:37 |
glewis |
. Update to the cacerts file included in the latest Linux distribution (7u55). |
7.51.13_3,1 16 Apr 2014 18:28:50 |
zeising |
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well (Only the first 15 lines of the commit message are shown above ) |
7.51.13_2,1 06 Apr 2014 22:48:52 |
bapt |
Support stage
Use options helpers
Modernise LIB_DEPENDS
use pax instead of copytree_share to install, this allows preserving the modes
and thus avoid playing with ${CHMOD} |
7.51.13_2,1 11 Mar 2014 07:16:16 |
antoine |
Attempt to unbreak |
7.51.13_2,1 10 Mar 2014 15:21:21 |
bapt |
Convert j* to USES=zip |
7.51.13_2,1 05 Mar 2014 20:59:51 |
tijl |
- Include bsd.port.pre.mk before testing if ICONV_LIB is empty. It is
always empty without this. [1]
- Add -DLIBICONV_PLUG to CFLAGS to enforce the use of libc iconv even when
libiconv is installed. [2]
PR: ports/184204 [1], ports/184782 [1], ports/186956 [2]
Approved by: glewis (maintainer) |
7.51.13_1,1 15 Feb 2014 23:31:43 |
glewis |
. Add BSD support to PortConfig. Fixes JMX on FreeBSD.
PR: 186636 |
7.51.13,1 10 Feb 2014 13:35:12 |
glewis |
. Remove OSVERSION checks. These are too restrictive but we don't have
OSVERSION bumps to check for on the release branches (even though they
have had the fix MFC'ed).
People seeing kernel panics on their machines need to update and pick up
those fixes. |
7.51.13,1 09 Feb 2014 23:12:11 |
glewis |
. Update to 7u51.
. Mark as FORBIDDEN for releases without the MAP_STACK fix (or where that
fix isn't detectable), since kernel panics may result there. |
7.25.15_2,1 04 Jan 2014 15:56:26 |
mat |
Revert lang/openjdk7 to 7u25.
With hat: portmgr-lurker |
7.45.18_1 03 Jan 2014 01:13:00 |
bapt |
Part 2 at removing now useless FETCH_ARGS redifition |
7.45.18_1 27 Dec 2013 11:50:37 |
bapt |
Mark as forbidden, the port is now trigering a nasty FreeBSD bug!
A fix is being investigated |
7.45.18_1 27 Dec 2013 04:32:45 |
glewis |
. Fix the POLICY option to actually install the unlimited strength policy
files again.
PR: 185015
Submitted by: Phil Phillips <pphillips@experts-exchange.com> |
7.45.18 08 Dec 2013 04:11:55 |
glewis |
. Update to 7u45. |
7.25.15_2 08 Dec 2013 04:11:09 |
glewis |
. Update to the latest cacerts from the 7u45 JDK release. |
7.25.15_2 30 Oct 2013 04:29:14 |
glewis |
. Fix DefaultAsynchronousChannelProvider.create to not crash on FreeBSD but
to instead create an instance of BsdAsynchronousChannelProvider().
PR: 183389
Submitted by: girgen@ |
7.25.15_1 22 Sep 2013 00:39:22 |
glewis |
. Make set_native_priority return a (correct) value on FreeBSD, rather than
whatever happens to be on the stack.
. Bump PORTREVISION.
Submitted by: Xiaoguang Sun <sunxiaoguang@gmail.com> |
7.25.15 20 Sep 2013 19:48:32 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
java) |
7.25.15 04 Sep 2013 18:06:08 |
madpilot |
- Make ports use the libc provided iconv implementation on 10-CURRENT
after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc
Reviewed by: bapt
Approved by: portmgr (bapt)
Discussed with: bapt, bsam (who both contributed ideas and code) |
7.25.15 26 Aug 2013 06:35:58 |
bapt |
fix build without gcc in base
Always use gcc whatever the default compiler is to build openjdk (it needs gcc
-dumpspecs)
Define HOST_CC to ${CC} to make avoir direct call to "/usr/bin/gcc" |
7.25.15 23 Jun 2013 20:45:14 |
glewis |
. Update to 7u25.
. Unbreak the port by committing the other half of the patch-set split. |
7.21.11 23 Jun 2013 20:44:24 |
glewis |
. Split out the JDK patches into their own file. This will actually break
the port since I can't commit the split all at once due to subversion
size limits. Yay. |
7.21.11 05 May 2013 20:10:26 |
glewis |
. Update to 7u21. |
7.17.02_2 04 May 2013 14:06:09 |
bdrewery |
- When DISABLE_MAKE_JOBS or MAKE_JOBS_UNSAFE is set, also set
MAKE_JOBS_NUMBER to 1. This makes it safe to do -j${MAKE_JOBS_NUMBER}
without any extra logic.
- Cleanup ports working around the empty MAKE_JOBS_NUMBER
- This also fixes several ports that were expecting MAKE_JOBS_NUMBER
to always have a number
Reviewed by: bapt
Spotted by: John Marino <draco@marino.st>
With hat: portmgr |
7.17.02_2 27 Apr 2013 11:59:29 |
mva |
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: zeising |