notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
Port details
apache-commons-collections Classes that extend/augment the Java Collections Framework
3.2.2 java on this many watch lists=2 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 3.2.2Version of this port present on the latest quarterly branch.
There is no maintainer for this port.
Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2019-10-06 19:08:34
Last Update: 2024-06-09 22:27:04
Commit Hash: 411ad89
People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
Also Listed In: devel
License: APACHE20
WWW:
https://commons.apache.org/proper/commons-collections/
Description:
A suite of classes that extend or augment the Java Collections Framework. Commons-Collections seek to build upon the JDK classes by providing new interfaces, implementations and utilities.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (4 items)
Collapse this list.
  1. /usr/local/share/java/classes/commons-collections.jar
  2. /usr/local/share/licenses/apache-commons-collections-3.2.2/catalog.mk
  3. /usr/local/share/licenses/apache-commons-collections-3.2.2/LICENSE
  4. /usr/local/share/licenses/apache-commons-collections-3.2.2/APACHE20
Collapse this list.
Dependency lines:
  • apache-commons-collections>0:java/apache-commons-collections
To install the port:
cd /usr/ports/java/apache-commons-collections/ && make install clean
To add the package, run one of these commands:
  • pkg install java/apache-commons-collections
  • pkg install apache-commons-collections
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: apache-commons-collections
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1593348160 SHA256 (commons-collections-3.2.2-src.tar.gz) = 070d94fe77969d8949bd129a618e6a7bee6b83b5b5db3ef3f983395a5428b914 SIZE (commons-collections-3.2.2-src.tar.gz) = 630693

Packages (timestamps in pop-ups are UTC):
apache-commons-collections
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest3.2.23.2.2-3.2.23.2.2---
FreeBSD:13:quarterly3.2.23.2.23.2.23.2.23.2.2-3.2.23.2.2
FreeBSD:14:latest3.2.23.2.2--3.2.2--3.2.2
FreeBSD:14:quarterly3.2.23.2.2--3.2.2-3.2.23.2.2
FreeBSD:15:latest3.2.23.2.2n/a-n/a-3.2.23.2.2
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. java : java/openjdk8
  2. ant : devel/apache-ant
Runtime dependencies:
  1. java : java/openjdk8
This port is required by:
for Build
  1. java/apache-commons-beanutils
  2. textproc/apache-commons-digester

Deleted ports which required this port:

Expand this list of 1 deleted port
  1. java/jakarta-commons-beanutils*
  2. Collapse this list of deleted ports.
for Run
  1. java/apache-commons-beanutils
  2. textproc/apache-commons-digester
  3. www/jmeter

Deleted ports which required this port:

Expand this list of 1 deleted port
  1. java/jakarta-commons-beanutils*
  2. Collapse this list of deleted ports.
* - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...

Configuration Options:
===> The following configuration options are available for apache-commons-collections-3.2.2: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings
Options name:
java_apache-commons-collections
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (7 items)
Collapse this list.
  1. http://ftp.kddi-research.jp/infosystems/apache/commons/collections/source/
  2. http://miroir.univ-lorraine.fr/apache/commons/collections/source/
  3. http://mirror.cogentco.com/pub/apache/commons/collections/source/
  4. http://mirror.navercorp.com/apache/commons/collections/source/
  5. https://dlcdn.apache.org/commons/collections/source/
  6. https://ftp.wayne.edu/apache/commons/collections/source/
  7. https://mirror.its.dal.ca/apache/commons/collections/source/
Collapse this list.

Number of commits found: 9

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
3.2.2
09 Jun 2024 22:27:04
commit hash: 411ad89a8344407c361b653509a3a598204f1ae8commit hash: 411ad89a8344407c361b653509a3a598204f1ae8commit hash: 411ad89a8344407c361b653509a3a598204f1ae8commit hash: 411ad89a8344407c361b653509a3a598204f1ae8 files touched by this commit
Vladimir Druzenko (vvd) search for other commits by this committer
java/apache-commons-collections: limit JAVA_VERSION from 8 to 20 because build
fails with 21+

Build error with OpenJDK 21:
    [javac]
/wrkdirs/usr/ports/java/apache-commons-collections/work/commons-collections-3.2.2-src/src/java/org/apache/commons/collections/CursorableLinkedList.java:188:
error: addLast(Object) in CursorableLinkedList cannot implement addLast(E) in
List
    [javac]     public boolean addLast(Object o) {
    [javac]                    ^
    [javac]   return type boolean is not compatible with void
    [javac]   where E is a type-variable:
    [javac]     E extends Object declared in interface List
    [javac]
/wrkdirs/usr/ports/java/apache-commons-collections/work/commons-collections-3.2.2-src/src/java/org/apache/commons/collections/CursorableLinkedList.java:176:
error: addFirst(Object) in CursorableLinkedList cannot implement addFirst(E) in
List
    [javac]     public boolean addFirst(Object o) {
    [javac]                    ^
    [javac]   return type boolean is not compatible with void
    [javac]   where E is a type-variable:
    [javac]     E extends Object declared in interface List

New JDK 21 methods in java.util.List addFirst and addLast has a void
return type. This clashes with the existing boolean return from the
same method in AbstractLinkedList.
Upstream fixed this in 4.5.0 only. But this old 3.x branch isn't fixed.
Upstream issue: https://issues.apache.org/jira/browse/COLLECTIONS-842

PR:		279425
Reported by:	antoine (exp-run)
3.2.2
08 Nov 2023 18:43:07
commit hash: 379cec2296b783715804b77e3366953a48b324f6commit hash: 379cec2296b783715804b77e3366953a48b324f6commit hash: 379cec2296b783715804b77e3366953a48b324f6commit hash: 379cec2296b783715804b77e3366953a48b324f6 files touched by this commit
Max Brazhnikov (makc) search for other commits by this committer
math/scilab: drop maintainership

Release math/scilab and its prerequisites
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
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)
3.2.2
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
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 View all of this commit message)
3.2.2
20 Jul 2022 14:22:12
commit hash: 526869d8dc02563825a24d394e1d087334d654cccommit hash: 526869d8dc02563825a24d394e1d087334d654cccommit hash: 526869d8dc02563825a24d394e1d087334d654cccommit hash: 526869d8dc02563825a24d394e1d087334d654cc files touched by this commit
Tobias C. Berner (tcberner) search for other commits by this committer
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 View all of this commit message)
3.2.2
29 Jun 2022 21:51:16
commit hash: 3cae181773b59594ba385ca83582b1543a487651commit hash: 3cae181773b59594ba385ca83582b1543a487651commit hash: 3cae181773b59594ba385ca83582b1543a487651commit hash: 3cae181773b59594ba385ca83582b1543a487651 files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
java/apache-commons-collections: Add NO_ARCH

Approved by:	portmgr (blanket)
3.2.2
06 Apr 2021 14:31:07
commit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344eb files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
3.2.2
28 Jun 2020 13:47:26
Revision:540711Original commit files touched by this commit
makc search for other commits by this committer
java/apache-commons-collections:
- Update to 3.2.2 - the latest release in 3.x series
- Add LICENSE_FILE
- Drop now needless dos2unix conversion
- Rework port description
3.2.1
06 Oct 2019 19:08:14
Revision:513899Original commit files touched by this commit
pfg search for other commits by this committer
rename most cases of jakarta- to apache-

The Apache Softare Foundation used to maintain an umbrella project named
Jakarta but it was retired on 2011. This name now conflicts with the new
name for Java EE under the Eclipse Foundation.

Rename most of the packages to be more consistent. Some other packages remain
but they will require intervention by their corresponding maintainers.

Approved by:	thierry (mentor), makc
Differential Revision:	https://reviews.freebsd.org/D21902

Number of commits found: 9