forked from pool/c3p0
107 lines
3.1 KiB
RPMSpec
107 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package c3p0
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2000-2008, JPackage Project
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define mchange_commons_min_version 0.2.15
|
|
Name: c3p0
|
|
Version: 0.9.5.5
|
|
Release: 0
|
|
Summary: JDBC DataSources/Resource Pools
|
|
License: LGPL-2.0-or-later
|
|
Group: Development/Libraries/Java
|
|
URL: https://www.mchange.com/projects/c3p0/
|
|
Source0: http://downloads.sourceforge.net/sourceforge/c3p0/c3p0-%{version}.src.tgz
|
|
Patch1: %{name}-javadoc.patch
|
|
BuildRequires: ant
|
|
BuildRequires: fdupes
|
|
BuildRequires: java-devel >= 1.8
|
|
BuildRequires: javapackages-local >= 6
|
|
BuildRequires: junit
|
|
BuildRequires: mchange-commons >= %{mchange_commons_min_version}
|
|
BuildArch: noarch
|
|
%if !0%{?rhel}
|
|
BuildRequires: ant-nodeps
|
|
%endif
|
|
%if 0%{?rhel} >= 9
|
|
BuildRequires: xmvn-tools
|
|
%endif
|
|
%if 0%{?rhel}
|
|
Requires(post): chkconfig
|
|
Requires(postun): chkconfig
|
|
%endif
|
|
|
|
%description
|
|
c3p0 is a library for augmenting traditional (DriverManager-based)
|
|
JDBC drivers with JNDI-bindable DataSources, including DataSources
|
|
that implement Connection and Statement Pooling, as described by the
|
|
jdbc3 spec and jdbc2 standard extension.
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for c3p0
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
Javadoc documentation for c3p0.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}.src
|
|
%patch -P 1 -p1
|
|
%{mvn_file} :c3p0 %{name}/%{name} %{name}
|
|
|
|
%build
|
|
export CLASSPATH=
|
|
export OPT_JAR_LIST="ant/ant-nodeps"
|
|
ant \
|
|
-Dmchange-commons-java.jar.file=%{_javadir}/mchange-commons/mchange-commons-java.jar \
|
|
-Djunit.jar.file=$(build-classpath junit) -Djvm.target.version=8 \
|
|
jar javadoc
|
|
|
|
sed -i "s/@c3p0.version.maven@/%{version}/g" src/maven/pom.xml
|
|
sed -i "s/@mchange-commons-java.version.maven@/%{mchange_commons_min_version}/g" \
|
|
src/maven/pom.xml
|
|
%{mvn_artifact} src/maven/pom.xml build/%{name}-%{version}.jar
|
|
|
|
%install
|
|
%if 0%{?rhel}
|
|
%mvn_install
|
|
%else
|
|
# jars
|
|
install -d -m 0755 %{buildroot}%{_javadir}
|
|
install -p -m 0644 build/%{name}-%{version}.jar \
|
|
%{buildroot}%{_javadir}/%{name}.jar
|
|
|
|
# poms
|
|
install -d -m 0755 %{buildroot}%{_mavenpomdir}
|
|
%{mvn_install_pom} src/maven/pom.xml %{buildroot}%{_mavenpomdir}/%{name}.pom
|
|
%add_maven_depmap %{name}.pom %{name}.jar -a c3p0:c3p0
|
|
%endif
|
|
|
|
# javadoc
|
|
mkdir -p %{buildroot}%{_javadocdir}/%{name}
|
|
cp -pr build/apidocs/* %{buildroot}%{_javadocdir}/%{name}
|
|
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
%files -f .mfiles
|
|
%license src/dist-static/LICENSE
|
|
%doc src/doc/index.html
|
|
|
|
%files javadoc
|
|
%{_javadocdir}/%{name}
|
|
|
|
%changelog
|