Compare commits
11 Commits
Author | SHA256 | Date | |
---|---|---|---|
316d66b44d | |||
de96a6f2c1 | |||
cc68fb8d2e | |||
6bc53247aa | |||
e47ab23ea5 | |||
e93980f42b | |||
acab2ae7d4 | |||
d48b1c4ed1 | |||
ece037d2f7 | |||
261f88fcbe | |||
0f05df4683 |
@@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 3 15:21:54 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Modified patch:
|
||||
* jdk9.patch
|
||||
+ Add Automatic-Module-Name commons.beanutils to be found
|
||||
by modular artifacts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 5 06:22:08 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Adapt the spec file, so that it can be used for building on
|
||||
SLE12SP1 and Factory alike.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 29 15:56:24 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
@@ -128,7 +142,7 @@ Fri Sep 21 07:44:23 UTC 2018 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 20 10:45:41 UTC 2018 - pmonrealgonzalez@suse.com
|
||||
|
||||
- Updated to 1.9.3
|
||||
- Updated to 1.9.3
|
||||
* This is a bug fix release, which also improves the tests for
|
||||
building on Java 8.
|
||||
* Note that Java 8 and later no longer support indexed bean
|
||||
@@ -137,22 +151,22 @@ Thu Sep 20 10:45:41 UTC 2018 - pmonrealgonzalez@suse.com
|
||||
and PropertyUtils.getPropertyDescriptor(); their javadoc have
|
||||
therefore been updated to reflect this change in the JDK.
|
||||
* Changes in this version include:
|
||||
- Fixed Bugs:
|
||||
- Fixed Bugs:
|
||||
* BEANUTILS-477: Changed log level in FluentPropertyBeanIntrospector
|
||||
* BEANUTILS-492: Fixed exception when setting indexed properties
|
||||
on DynaBeans.
|
||||
* BEANUTILS-470: Precision lost when converting BigDecimal.
|
||||
* BEANUTILS-465: Indexed List Setters fixed.
|
||||
- Changes:
|
||||
* BEANUTILS-433: Update dependency from JUnit 3.8.1 to 4.12.
|
||||
* BEANUTILS-469: Update commons-logging from 1.1.1 to 1.2.
|
||||
* BEANUTILS-433: Update dependency from JUnit 3.8.1 to 4.12.
|
||||
* BEANUTILS-469: Update commons-logging from 1.1.1 to 1.2.
|
||||
* BEANUTILS-474: FluentPropertyBeanIntrospector does not use the
|
||||
same naming algorithm as DefaultBeanIntrospector.
|
||||
* BEANUTILS-490: Update Java requirement from Java 5 to 6.
|
||||
* BEANUTILS-490: Update Java requirement from Java 5 to 6.
|
||||
* BEANUTILS-482: Update commons-collections from 3.2.1 to 3.2.2
|
||||
(CVE-2015-4852).
|
||||
* BEANUTILS-490: Update java requirement to Java 6.
|
||||
* BEANUTILS-492: IndexedPropertyDescriptor tests now pass on Java 8.
|
||||
* BEANUTILS-492: IndexedPropertyDescriptor tests now pass on Java 8.
|
||||
* BEANUTILS-495: DateConverterTestBase fails on M/d/yy in Java 9.
|
||||
* BEANUTILS-496: testGetDescriptorInvalidBoolean fails on Java 9.
|
||||
- Historical list of changes:
|
||||
@@ -201,7 +215,7 @@ Mon Jul 7 08:04:04 UTC 2014 - dmacvicar@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 2 13:23:15 UTC 2012 - mvyskocil@suse.cz
|
||||
|
||||
- update to 1.8.3 and rename to apache- to follow the upstream
|
||||
- update to 1.8.3 and rename to apache- to follow the upstream
|
||||
- fixes in this release
|
||||
* memory leak in jdk5/jdk6 BEANUTILS-291, BEANUTILS-366
|
||||
* BEANUTILS-373 MethodUtils is not thread safe because WeakFastHashMap which
|
||||
|
@@ -16,6 +16,7 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!mvn_install_pom:%global mvn_install_pom install -pm 0644}
|
||||
%define base_name beanutils
|
||||
%define short_name commons-%{base_name}
|
||||
Name: apache-commons-beanutils
|
||||
@@ -32,8 +33,11 @@ BuildRequires: ant
|
||||
BuildRequires: commons-collections
|
||||
BuildRequires: commons-logging
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: javapackages-local >= 6
|
||||
BuildRequires: java-devel >= 1.8
|
||||
BuildRequires: javapackages-local
|
||||
BuildRequires: xml-commons-apis
|
||||
Requires: commons-collections >= 2.0
|
||||
Requires: commons-logging >= 1.0
|
||||
Provides: %{short_name} = %{version}-%{release}
|
||||
Obsoletes: %{short_name} < %{version}-%{release}
|
||||
Provides: jakarta-%{short_name} = %{version}-%{release}
|
||||
|
17
jdk9.patch
17
jdk9.patch
@@ -1,8 +1,6 @@
|
||||
Index: commons-beanutils-1.9.3-src/build.xml
|
||||
===================================================================
|
||||
--- commons-beanutils-1.9.3-src.orig/build.xml
|
||||
+++ commons-beanutils-1.9.3-src/build.xml
|
||||
@@ -62,10 +62,10 @@
|
||||
--- commons-beanutils-1.11.0-src/build.xml 2025-07-03 17:15:28.898719156 +0200
|
||||
+++ commons-beanutils-1.11.0-src/build.xml 2025-07-03 17:19:33.455675526 +0200
|
||||
@@ -61,10 +61,10 @@
|
||||
|
||||
|
||||
<!-- Compiler source JDK version -->
|
||||
@@ -15,3 +13,12 @@ Index: commons-beanutils-1.9.3-src/build.xml
|
||||
|
||||
<!-- Should Java compilations set the 'debug' compiler option? -->
|
||||
<property name="compile.debug" value="true"/>
|
||||
@@ -228,7 +228,7 @@
|
||||
|
||||
<jar jarfile="${dist.home}/commons-beanutils-${component.version}.jar">
|
||||
<manifest>
|
||||
- <attribute name="Built-By" value="${user.name}"/>
|
||||
+ <attribute name="Automatic-Module-Name" value="commons.beanutils"/>
|
||||
<attribute name="Specification-Title" value="Commons BeanUtils"/>
|
||||
<attribute name="Specification-Version" value="${component.version}"/>
|
||||
<attribute name="Specification-Vendor" value="The Apache Software Foundation"/>
|
||||
|
Reference in New Issue
Block a user