%global reldate 20170915 Name: apache-poi Version: 3.17 Release: 5%{?dist} Summary: The Java API for Microsoft Documents # ASLv2 + GPLv3 src/resources/scratchpad/org/apache/poi/hdgf/chunks_parse_cmds.tbl # https://bugzilla.redhat.com/show_bug.cgi?id=1146670#c13 License: ASL 2.0 and (CC-BY and CC-BY-SA and W3C) and GPLv3 URL: http://poi.apache.org/ Source0: http://archive.apache.org/dist/poi/release/src/poi-src-%{version}%{?reldate:-}%{?reldate}.tar.gz # Creative Commons license 4.0 (Attribution-ShareAlike) # These two zip files renamed after download for deficiencies in fedpkg #Source1: http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%201st%20edition%20Part%204%20%28PDF%29.zip #Source2: http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%201st%20edition%20Part%202%20%28PDF%29.zip Source1: Office_Open_XML_1st_edition_Part_4__PDF_.zip Source2: Office_Open_XML_1st_edition_Part_2__PDF_.zip # Creative Commons Attribution 3.0 License Source3: http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd Source4: http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd Source5: http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcmitype.xsd # W3C Source6: http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd # http://www.etsi.org/index.php/terms-of-use # see https://bz.apache.org/bugzilla/show_bug.cgi?id=57862 Source7: http://uri.etsi.org/01903/v1.3.2/XAdES.xsd Source8: http://uri.etsi.org/01903/v1.4.1/XAdESv141.xsd # Force compile of xsds if disconnected Patch1: apache-poi-3.14-compile-xsds.patch # Disable javadoc doclint Patch2: apache-poi-3.14-build.patch BuildArch: noarch BuildRequires: jacoco BuildRequires: javapackages-local BuildRequires: jmh BuildRequires: jmh-generator-annprocess BuildRequires: apache-commons-collections4 >= 4.1 BuildRequires: apache-commons-codec BuildRequires: apache-commons-logging BuildRequires: mvn(com.github.virtuald:curvesapi) BuildRequires: mvn(dom4j:dom4j) BuildRequires: mvn(junit:junit) BuildRequires: mvn(log4j:log4j:1.2.17) BuildRequires: mvn(org.apache.ant:ant-junit) BuildRequires: mvn(org.apache.santuario:xmlsec) >= 2.0.1 BuildRequires: mvn(org.apache.xmlbeans:xmlbeans) BuildRequires: mvn(org.bouncycastle:bcpkix-jdk15on) BuildRequires: mvn(org.bouncycastle:bcprov-jdk15on) BuildRequires: mvn(org.hamcrest:hamcrest-core) BuildRequires: mvn(org.ow2.asm:asm-all) BuildRequires: mvn(org.slf4j:slf4j-api) BuildRequires: mvn(rhino:js) #Fonts for testing BuildRequires: fontconfig liberation-sans-fonts liberation-serif-fonts %description The Apache POI Project's mission is to create and maintain Java APIs for manipulating various file formats based upon the Office Open XML standards (OOXML) and Microsoft's OLE 2 Compound Document format (OLE2). In short, you can read and write MS Excel files using Java. In addition, you can read and write MS Word and MS PowerPoint files using Java. Apache POI is your Java Excel solution (for Excel 97-2008). We have a complete API for porting other OOXML and OLE2 formats and welcome others to participate. OLE2 files include most Microsoft Office files such as XLS, DOC, and PPT as well as MFC serialization API based file formats. The project provides APIs for the OLE2 Filesystem (POIFS) and OLE2 Document Properties (HPSF). Office OpenXML Format is the new standards based XML file format found in Microsoft Office 2007 and 2008. This includes XLSX, DOCX and PPTX. The project provides a low level API to support the Open Packaging Conventions using openxml4j. For each MS Office application there exists a component module that attempts to provide a common high level Java API to both OLE2 and OOXML document formats. This is most developed for Excel workbooks (SS=HSSF+XSSF). Work is progressing for Word documents (HWPF+XWPF) and PowerPoint presentations (HSLF+XSLF). The project has recently added support for Outlook (HSMF). Microsoft opened the specifications to this format in October 2007. We would welcome contributions. There are also projects for Visio (HDGF) and Publisher (HPBF). %package javadoc Summary: Javadoc for %{name} %description javadoc This package contains the API documentation for %{name}. %prep %setup -q -n poi-%{version} %patch1 %patch2 find -name '*.class' -delete find -name '*.jar' -delete mkdir lib ooxml-lib build-jar-repository -s -p lib \ ant commons-collections4 commons-codec commons-logging bcprov bcpkix xmlsec slf4j/slf4j-api log4j-1.2.17 \ junit hamcrest/core jmh/jmh-core jmh/jmh-generator-annprocess build-jar-repository -s -p ooxml-lib dom4j xmlbeans/xbean curvesapi #Unpack the XMLSchema pushd ooxml-lib unzip "%SOURCE1" OfficeOpenXML-XMLSchema.zip unzip "%SOURCE2" OpenPackagingConventions-XMLSchema.zip cp -p %SOURCE3 . cp -p %SOURCE4 . cp -p %SOURCE5 . cp -p %SOURCE6 . cp -p %SOURCE7 . cp -p %SOURCE8 . popd # Customize pom file %pom_xpath_inject "pom:dependencies/pom:dependency[pom:artifactId ='ant']" \ "provided" maven/poi-excelant.pom # Compat symlinks for m in poi poi-excelant poi-examples poi-ooxml poi-ooxml-schemas poi-scratchpad ; do %mvn_file org.apache.poi:${m} poi/apache-${m} poi/${m} done # These tests fails on arm builders rm src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheet.java \ src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetMergeRegions.java sed -i '/TestXSSFSheet/d' src/ooxml/testcases/org/apache/poi/xssf/usermodel/AllXSSFUsermodelTests.java # This test fails for unknown reason rm src/ooxml/testcases/org/apache/poi/sl/TestFonts.java %build cat > build.properties <<'EOF' main.ant.jar=lib/ant.jar main.commons-collections4.jar=lib/commons-collections4.jar main.commons-codec.jar=lib/commons-codec.jar main.commons-logging.jar=lib/commons-logging.jar main.log4j.jar=lib/log4j-1.2.17.jar main.junit.jar=lib/junit.jar main.jmh.jar=lib/jmh_jmh-core.jar main.jmhAnnotation.jar=lib/jmh_jmh-generator-annprocess.jar main.hamcrest.jar=lib/hamcrest_core.jar ooxml.dom4j.jar=ooxml-lib/dom4j.jar ooxml.curvesapi.jar=ooxml-lib/curvesapi.jar ooxml.xmlbeans23.jar=ooxml-lib/xmlbeans_xbean.jar ooxml.xmlbeans26.jar=ooxml-lib/xmlbeans_xbean.jar dsig.xmlsec.jar=lib/xmlsec.jar dsig.bouncycastle-prov.jar=lib/bcprov.jar dsig.bouncycastle-pkix.jar=lib/bcpkix.jar dsig.sl4j-api.jar=lib/slf4j_slf4j-api.jar disconnected=1 DSTAMP=%{reldate} EOF export ANT_OPTS="-Xmx768m" ant -propertyfile build.properties compile-ooxml-xsds jar maven-poms javadocs %install for m in poi poi-excelant poi-examples poi-ooxml poi-ooxml-schemas poi-scratchpad ; do %mvn_artifact build/dist/maven/$m/${m}-%{version}.pom build/dist/maven/$m/${m}-%{version}.jar done %mvn_install -J build/tmp/site/build/site/apidocs %check export LANG=C.UTF-8 # To enable 8-bit character tests ant -propertyfile build.properties test %files -f .mfiles %doc KEYS %license LICENSE NOTICE %files javadoc -f .mfiles-javadoc %license LICENSE NOTICE %changelog * Wed Jul 24 2019 Fedora Release Engineering - 3.17-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Thu Jan 31 2019 Fedora Release Engineering - 3.17-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek - 3.17-3 - Use C.UTF-8 locale See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot * Thu Jul 12 2018 Fedora Release Engineering - 3.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Apr 18 2018 Mat Booth - 3.17-1 - Update to latest upstream release - Includes fix for CVE-2017-12626 * Wed Feb 07 2018 Fedora Release Engineering - 3.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Fri Aug 18 2017 Mat Booth - 3.15-1 - Update to 3.15 * Wed Jul 26 2017 Fedora Release Engineering - 3.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering - 3.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Wed Jun 29 2016 gil cattaneo 3.14-3 - removed some test failures * Sun Jun 26 2016 gil cattaneo 3.14-2 - removed some test failures on arm builder * Wed Mar 16 2016 gil cattaneo 3.14-1 - Update to 3.14 * Wed Feb 03 2016 Fedora Release Engineering - 3.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Sat Sep 26 2015 gil cattaneo 3.13-1 - Update to 3.13 * Tue Sep 01 2015 gil cattaneo 3.12-2 - build fix - fix license field - obsoletes manual sub-package * Tue Jul 7 2015 Zbigniew Jędrzejewski-Szmek - 3.12-1 - Update to latest version * Wed Jun 17 2015 Fedora Release Engineering - 3.10.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Wed Feb 11 2015 gil cattaneo 3.10.1-2 - fix for RHBZ#1138135 (CVE-2014-3574) - introduce license macro * Thu Sep 4 2014 Orion Poplawski - 3.10.1-1 - Update to 3.10.1 (Bug 1138135: CVE-2014-3574 CVE-2014-3529) * Sat Jun 07 2014 Fedora Release Engineering - 3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Mon Feb 24 2014 Orion Poplawski - 3.10-1 - Update to 3.10 * Sat Aug 03 2013 Fedora Release Engineering - 3.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Wed Jun 12 2013 Orion Poplawski - 3.9-1 - Update to 3.9 final - Install all jars and add poms for each - Cleanup and update spec * Fri Apr 05 2013 Karsten Hopp 3.8-5 - drop excludearch ppc64 * Wed Feb 13 2013 Fedora Release Engineering - 3.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Wed Jul 18 2012 Fedora Release Engineering - 3.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Fri Jul 13 2012 Orion Poplawski - 3.8-2 - Add patch to fix compilation with JDK 1.7 * Thu May 10 2012 Orion Poplawski - 3.8-1 - Update to 3.8 final - Add patch to fix CVE-2012-0213 (bugs 799078, 820788) * Thu Jan 5 2012 Orion Poplawski - 3.8-0.3.beta5 - Update to 3.8-beta5 * Fri Jul 22 2011 Orion Poplawski - 3.8-0.2.beta3 - Update to 3.8-beta3 - Add commons-codec to the build jar repository * Wed Apr 20 2011 Orion Poplawski - 3.8-0.1.beta2 - Update to 3.8-beta2 - Add BR fontconfig needed for tests to find fonts - Fix javadoc link * Mon Feb 07 2011 Fedora Release Engineering - 3.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Tue Dec 21 2010 Orion Poplawski - 3.7-4 - No java >= 1:1.6.0 on ppc64 * Tue Dec 21 2010 Alexander Kurtakov 3.7-3 - No poi-contrib.jar. * Tue Dec 21 2010 Alexander Kurtakov 3.7-2 - Url encode the source. * Mon Dec 6 2010 Orion Poplawski - 3.7-1 - Update to 3.7 final * Mon Nov 8 2010 Orion Poplawski - 3.7-0.5.beta3 - Add pom * Mon Nov 1 2010 Orion Poplawski - 3.7-0.4.beta3 - Fix manual package * Wed Oct 27 2010 Orion Poplawski - 3.7-0.3.beta3 - Update to 3.7 beta3 - Add more Requires * Wed Sep 1 2010 Orion Poplawski - 3.7-0.2.beta2 - Update to 3.7 beta2 * Fri Jun 25 2010 Orion Poplawski - 3.7-0.1.beta1 - Update to 3.7 beta1 - Rebase compile-xsds patch * Fri Jun 25 2010 Orion Poplawski - 3.6-1 - Initial Fedora package