Name: java-libpst
Version: 0.9.4
Release: 1
Summary: A pure Java library for the reading of Outlook PST and OST files
License: ASL 2.0 and LGPLv3
URL: https://github.com/rjohnsondev/java-libpst/
Source0: https://github.com/rjohnsondev/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
Source1: https://www.gnu.org/licenses/lgpl.txt
Source2: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom
BuildRequires: mvn(junit:junit) maven-local
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
BuildArch: noarch
%description
A library to read PST files with java,
without need for external libraries.
%package help
Summary: Javadoc for %{name}
provides: %{name}-help = %{version}-%{release}
obsoletes: %{name}-help < %{version}-%{release}
%description help
This package contains javadoc for %{name}.
%prep
%setup -q
find -name '*.class' -print -delete
find -name '*.jar' -print -delete
%pom_xpath_set "pom:project/pom:version" %{version}
cp -p %{SOURCE1} LICENSE.LGPL.txt
cp %{SOURCE2} ../pom.xml
sed -i 's/\r//' LICENSE.*.txt README.txt
%mvn_file com.pff:%{name} %{name}
%pom_remove_plugin org.apache.maven.plugins:maven-gpg-plugin
sed -i 's/& 2/and 2/g' src/main/java/com/pff/PSTGlobalObjectId.java
MVN_JAVADOC_PLUGIN_EXTRA_XML="
**/com/pff/PSTActivity.java
**/com/pff/PSTMessage.java
**/com/pff/PSTObject.java
**/com/pff/PSTAttachment.java
**/com/pff/PSTFile.java
**/com/pff/PSTGlobalObjectId.java
**/com/pff/PSTTask.java
**/com/pff/PSTContact.java
**/com/pff/PSTFolder.java
**/com/pff/PSTMessageStore.java
**/com/pff/PSTNodeInputStream.java
**/com/pff/PSTRss.java
**/example/TestGui.java
attach-javadocs
jar
"
%pom_remove_plugin org.apache.maven.plugins:maven-javadoc-plugin
%pom_add_plugin org.apache.maven.plugins:maven-javadoc-plugin:3.0.1 . "$MVN_JAVADOC_PLUGIN_EXTRA_XML"
%build
%mvn_build --xmvn-javadoc
%install
%mvn_install
%files -f .mfiles
%doc README.md README.txt
%license LICENSE.APACHE-2.0.txt LICENSE.LGPL.txt
%files help -f .mfiles-javadoc
%license LICENSE.APACHE-2.0.txt LICENSE.LGPL.txt
%changelog
* Mon Jan 29 2024 Ge Wang - 0.9.4-1
- update to version 0.9.4
* Mon Aug 24 2020 huanghaitao - 0.8.1-1
- package init