From 32cf4d7484441d592d89c1e17e3f289b5d21bdd8 Mon Sep 17 00:00:00 2001 From: James Antill Date: Wed, 22 Feb 2023 10:59:21 -0500 Subject: [PATCH] Import rpm: c8s-stream-rhel8 --- .gitignore | 1 + README.md | 3 ++ gating.yaml | 8 ++++ sources | 1 + univocity-parsers.spec | 89 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 102 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 gating.yaml create mode 100644 sources create mode 100644 univocity-parsers.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d36d161 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/univocity-parsers-2.8.4.tar.gz diff --git a/README.md b/README.md new file mode 100644 index 0000000..25811b4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# univocity-parsers + +The univocity-parsers package \ No newline at end of file diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..d6b7694 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,8 @@ +--- !Policy +product_versions: + - rhel-9 +decision_contexts: + - osci_compose_gate +rules: + # https://docs.engineering.redhat.com/display/RHELPLAN/Maven+Bootstrap+manual+gating+test + - !PassingTestCaseRule {test_case_name: manual.sst_cs_apps.maven.bootstrap} diff --git a/sources b/sources new file mode 100644 index 0000000..ce8e053 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA1 (univocity-parsers-2.8.4.tar.gz) = 9afda5c9d182f111dae75db5885d4de99a9b7415 diff --git a/univocity-parsers.spec b/univocity-parsers.spec new file mode 100644 index 0000000..5d5b74a --- /dev/null +++ b/univocity-parsers.spec @@ -0,0 +1,89 @@ +%bcond_without tests + +Name: univocity-parsers +Version: 2.8.4 +Release: 3%{?dist} +Summary: Collection of parsers for Java +License: ASL 2.0 + +URL: https://github.com/uniVocity/univocity-parsers +Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: maven-local +BuildRequires: mvn(org.apache.felix:maven-bundle-plugin) +BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin) +%if %{with tests} +BuildRequires: mvn(com.univocity:univocity-output-tester) +BuildRequires: mvn(org.hsqldb:hsqldb) +BuildRequires: mvn(org.testng:testng) +%endif + +%description +uniVocity-parsers is a suite of extremely fast and reliable parsers +for Java. It provides a consistent interface for handling different +file formats, and a solid framework for the development of new +parsers. + +%package javadoc +Summary: Javadoc for %{name} + +%description javadoc +API documentation for %{name}. + +%prep +%setup -q + +%pom_remove_plugin :nexus-staging-maven-plugin +%pom_remove_plugin :maven-javadoc-plugin + +%build +%if %{with tests} +%mvn_build +%else +%mvn_build -f +%endif + +%install +%mvn_install + +%files -f .mfiles +%license LICENSE-2.0.html + +%files javadoc -f .mfiles-javadoc +%license LICENSE-2.0.html + +%changelog +* Tue Jul 14 2020 Mat Booth - 2.8.4-3 +- Allow building without tests + +* Sat Jul 11 2020 Jiri Vanek - 2.8.4-2 +- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 + +* Thu Feb 13 2020 Fabio Valentini - 2.8.4-1 +- Update to version 2.8.4. + +* Fri Jan 31 2020 Fedora Release Engineering - 2.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sun Oct 06 2019 Fabio Valentini - 2.8.3-1 +- Update to version 2.8.3. + +* Sat Jul 27 2019 Fedora Release Engineering - 2.5.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 2.5.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Aug 21 2018 Mat Booth - 2.5.5-4 +- Remove unnecessary javadoc invocation + +* Sat Jul 14 2018 Fedora Release Engineering - 2.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 09 2018 Fedora Release Engineering - 2.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Sep 14 2017 Mikolaj Izdebski - 2.5.5-1 +- Initial packaging \ No newline at end of file