- Update to v5.11.2 * Bug #258 - reverted junit scope back to the original settings. - Update to v5.11.1 * Support Request #127 - Updated common-beanutils to 1.11.0 * Bug #258 - Rolled back the changes for Bug #253 and reopened it until I can determine a way to get the converter instance without deregistering previously registered converters. - Update to v5.11 * Bug #257 - fix by Piotr for edge cases failures since 5.8. Thank you Piotr for the fix! I will revisit the use of regex at some point in the future as it was added to reduce garbage collection from string creation. * Added scripts to generate checksums and create a deploy tar file required by the updated Sonatype. - Update to v5.10 * Merge Request #36: Enhancement - add withType method to mapping strategy builders * Merge Request #33: + Replace java.text.SimpleDateFormat to org.apache.commons.lang3.time.DateFormatUtils.format to reduce instance creation + Add ResultSetHelper ability to CSVParserWriter when using CSVWriterBuilder + Configurable null default in ResultSetHelperService * Bug #251 - really feature request but updated dependencies not that a new version of commons-beanutils is out. OBS-URL: https://build.opensuse.org/request/show/1292321 OBS-URL: https://build.opensuse.org/package/show/Java:packages/opencsv?expand=0&rev=9
77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package opencsv
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: opencsv
|
|
Version: 5.11.2
|
|
Release: 0
|
|
Summary: A Simple CSV Parser for Java
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/Java
|
|
URL: http://%{name}.sf.net/
|
|
Source0: %{name}-%{version}.tar.xz
|
|
BuildRequires: fdupes
|
|
BuildRequires: javapackages-local
|
|
BuildRequires: jpackage-utils
|
|
BuildRequires: maven-local
|
|
BuildRequires: mvn(commons-beanutils:commons-beanutils)
|
|
BuildRequires: mvn(org.apache.commons:commons-collections4)
|
|
BuildRequires: mvn(org.apache.commons:commons-text)
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|
BuildRequires: mvn(org.apache.maven.wagon:wagon-ssh)
|
|
BuildRequires: mvn(org.junit.vintage:junit-vintage-engine)
|
|
BuildRequires: mvn(org.mockito:mockito-core)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
A Simple CSV Parser for Java under a commercial-friendly Apache 2.0 license.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
|
|
%description javadoc
|
|
API documentation for %{name}.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%pom_remove_plugin :maven-source-plugin
|
|
%pom_remove_plugin org.codehaus.gmavenplus:gmavenplus-plugin
|
|
%pom_remove_plugin org.jacoco:jacoco-maven-plugin
|
|
%pom_remove_plugin org.apache.maven.plugins:maven-gpg-plugin
|
|
%pom_remove_plugin org.apache.maven.plugins:maven-javadoc-plugin
|
|
%pom_remove_dep org.spockframework:spock-core
|
|
%pom_xpath_remove \
|
|
'pom:plugin[pom:artifactId="maven-compiler-plugin"]/pom:executions/pom:execution/pom:configuration/pom:multiReleaseOutput'
|
|
%{mvn_file} : %{name}
|
|
|
|
%build
|
|
%{mvn_build} -f
|
|
|
|
%install
|
|
%mvn_install
|
|
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE
|
|
%doc README.md NOTICE_Modifications
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE
|
|
|
|
%changelog
|