- Depend on junit not junit4

OBS-URL: https://build.opensuse.org/package/show/Java:packages/cal10n?expand=0&rev=8
This commit is contained in:
Tomáš Chvátal 2014-07-07 15:00:13 +00:00 committed by Git OBS Bridge
parent 0d326973ef
commit 01a1eaedcc
2 changed files with 14 additions and 16 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jul 7 14:59:58 UTC 2014 - tchvatal@suse.com
- Depend on junit not junit4
-------------------------------------------------------------------
Mon Sep 9 11:05:36 UTC 2013 - tchvatal@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package cal10n
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -22,34 +22,27 @@ Release: 0
Summary: Compiler assisted localization library (CAL10N)
License: MIT
Group: Development/Libraries/Java
Url: http://cal10n.qos.ch
Source0: http://cal10n.qos.ch/dist/cal10n-%{version}.tar.gz
Source1: build.xml.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
BuildRequires: ant
BuildRequires: java-devel
BuildRequires: junit4
BuildRequires: junit
Requires: java
Requires(post): javapackages-tools
Requires(postun): javapackages-tools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Compiler Assisted Localization, abbreviated as CAL10N (pronounced as "calion")
Compiler Assisted Localization, abbreviated as CAL10N (pronounced as "calion")
is a java library for writing localized (internationalized) messages.
Features:
* java compiler verifies message keys used in source code
* tooling to detect errors in message keys
* native2ascii tool made superfluous, as you can directly encode bundles
* native2ascii tool made superfluous, as you can directly encode bundles
in the most convenient charset, per locale.
* good performance (300 nanoseconds per key look-up)
* automatic reloading of resource bundles upon change
%package javadoc
Summary: Javadoc for %{name}
Group: Development/Libraries/Java
@ -58,7 +51,7 @@ Group: Development/Libraries/Java
API documentation for %{name}.
%prep
%setup -q
%setup -q
tar -xf %{SOURCE1}
find . -name "*.jar" | xargs rm
@ -79,11 +72,11 @@ for dir in cal10n-api
do
pushd $dir
export CLASSPATH=$(build-classpath \
junit4 \
junit \
):target/classes:target/test-classes
ant -Dmaven.mode.offline=true package javadoc \
-Dmaven.test.skip=true \
-lib /usr/share/java
-lib %{_datadir}/java
popd
done