# # spec file for package jakarta-commons-modeler # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # 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 http://bugs.opensuse.org/ # %define base_name modeler %define short_name commons-%{base_name} Name: jakarta-commons-modeler Version: 2.0 Release: 0 Summary: Jakarta Commons Modeler Package License: Apache-2.0 Group: Development/Libraries/Java Url: http://jakarta.apache.org/commons/modeler/ Source0: %{short_name}-%{version}-src.tar.bz2 Patch0: %{name}-java14compat.patch BuildRequires: ant BuildRequires: jakarta-commons-digester BuildRequires: javapackages-tools BuildRequires: junit BuildRequires: mx4j BuildRequires: xalan-j2 BuildRequires: xml-commons-apis Requires: jakarta-commons-beanutils >= 1.3 Requires: jakarta-commons-collections >= 2.0 Requires: jakarta-commons-digester >= 1.2 Requires: jakarta-commons-logging >= 1.0 Requires: jaxp_parser_impl Requires: jaxp_transform_impl Requires: mx4j Requires: xml-commons-apis Provides: %{short_name} Obsoletes: %{short_name} BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %description The Modeler project creates and maintains a set of Java classes to provide a number of facilities for Model MBeans plus unit tests and small examples of using these facilities to instrument Java classes with Model MBean support. %package javadoc Summary: Javadoc for jakarta-commons-modeler Group: Development/Libraries/Java %description javadoc The Modeler project shall create and maintain a set of Java classes to provide the facilities described in the preceeding section, plus unit tests and small examples of using these facilities to instrument Java classes with Model MBean support. This package contains the javadoc documentation for the Jakarta Commons Modeler Package. %prep %setup -q -n %{short_name}-%{version}-src %patch0 -p1 # remove all binary libs find . -name "*.jar" -exec rm -f {} \; %build export CLASSPATH=$(build-classpath xml-commons-apis jaxp_parser_impl jaxp_transform_impl mx4j/mx4j-jmx junit commons-beanutils commons-collections commons-digester commons-logging) ant dist %install # jars mkdir -p %{buildroot}%{_javadir} cp -a dist/%{short_name}.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar (cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -s ${jar} `echo $jar| sed "s|jakarta-||g"`; done) (cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -s ${jar} `echo $jar| sed "s|-%{version}||g"`; done) # javadoc mkdir -p %{buildroot}%{_javadocdir}/%{name} cp -a dist/docs/* %{buildroot}%{_javadocdir}/%{name} %files %defattr(0644,root,root,0755) %doc LICENSE.txt NOTICE.txt RELEASE-NOTES.txt xdocs %{_javadir}/* %files javadoc %defattr(0644,root,root,0755) %{_javadocdir}/%{name} %changelog