commit classworlds for openSUSE:Factory

2018-07-07 Thread root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2018-07-07 21:59:21

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is "classworlds"

Sat Jul  7 21:59:21 2018 rev:18 rq:620783 version:1.1

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2017-09-20 
17:08:16.358873037 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2018-07-07 21:59:27.479237046 +0200
@@ -1,0 +2,9 @@
+Wed May 16 09:32:19 UTC 2018 - fst...@suse.com
+
+- Build with source and target 8 to prepare for a possible removal
+  of 1.6 compatibility
+- Added patch:
+  * classworlds-1.1-deprecated.patch
++ File.toURL() is deprecated
+
+---

New:

  classworlds-1.1-deprecated.patch



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.Jvxk7K/_old  2018-07-07 21:59:28.151236194 +0200
+++ /var/tmp/diff_new_pack.Jvxk7K/_new  2018-07-07 21:59:28.151236194 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package classworlds
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -28,8 +28,10 @@
 Source1:classworlds-1.1-build.xml
 Source2:
http://repo1.maven.org/maven2/%{name}/%{name}/%{version}/%{name}-%{version}.pom
 Patch0: classworlds-1.1-project_xml.patch
+Patch1: classworlds-1.1-deprecated.patch
 BuildRequires:  ant >= 1.6
 BuildRequires:  fdupes
+BuildRequires:  java-devel >= 1.8
 BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
@@ -68,11 +70,12 @@
 find -name "*.jar" | xargs rm
 cp -p %{SOURCE1} build.xml
 %patch0
+%patch1 -p1
 
 %build
 export CLASSPATH=target/classes:target/test-classes
 export OPT_JAR_LIST=:
-ant -Dant.build.javac.source=1.6 -Dant.build.javac.target=1.6 \
+ant -Dant.build.javac.source=8 -Dant.build.javac.target=8 \
 -Dbuild.sysclasspath=only \
 jar javadoc
 

++ classworlds-1.1-deprecated.patch ++
--- classworlds-1.1/src/java/main/org/codehaus/classworlds/Configurator.java
2006-01-12 05:17:51.0 +0100
+++ classworlds-1.1/src/java/main/org/codehaus/classworlds/Configurator.java
2018-05-16 11:26:21.924923432 +0200
@@ -331,7 +331,7 @@
 
 if ( file.exists() )
 {
-curRealm.addConstituent( file.toURL() );
+curRealm.addConstituent( file.toURI().toURL() );
 }
 else
 {
@@ -362,7 +362,7 @@
 
 if ( file.exists() )
 {
-curRealm.addConstituent( file.toURL() );
+curRealm.addConstituent( file.toURI().toURL() );
 }
 else
 {
@@ -516,7 +516,7 @@
 
 for ( int i = 0; i < matches.length; ++i )
 {
-realm.addConstituent( matches[i].toURL() );
+realm.addConstituent( matches[i].toURI().toURL() );
 }
 }
 
--- 
classworlds-1.1/src/java/main/org/codehaus/classworlds/DefaultClassRealm.java   
2006-01-12 05:17:51.0 +0100
+++ 
classworlds-1.1/src/java/main/org/codehaus/classworlds/DefaultClassRealm.java   
2018-05-16 11:30:05.550073743 +0200
@@ -183,7 +183,7 @@
 }
 
 addConstituent( new URL( null,
- file.toURL().toExternalForm(),
+ file.toURI().toURL().toExternalForm(),
  new BytesURLStreamHandler(b) ) );
 }
 catch (java.io.IOException e)



commit classworlds for openSUSE:Factory

2017-09-20 Thread root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2017-09-20 17:08:15

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is "classworlds"

Wed Sep 20 17:08:15 2017 rev:17 rq:526940 version:1.1

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2017-05-22 
10:48:39.370996899 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2017-09-20 17:08:16.358873037 +0200
@@ -1,0 +2,7 @@
+Mon Sep 18 06:33:29 UTC 2017 - fst...@suse.com
+
+- Specify java source and target level 1.6 in order to allow build
+  with jdk9
+- Clean spec file
+
+---



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.lL71vV/_old  2017-09-20 17:08:16.966787461 +0200
+++ /var/tmp/diff_new_pack.lL71vV/_new  2017-09-20 17:08:16.970786898 +0200
@@ -29,6 +29,7 @@
 Source2:
http://repo1.maven.org/maven2/%{name}/%{name}/%{version}/%{name}-%{version}.pom
 Patch0: classworlds-1.1-project_xml.patch
 BuildRequires:  ant >= 1.6
+BuildRequires:  fdupes
 BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
@@ -36,7 +37,6 @@
 BuildRequires:  xml-commons-apis
 Requires:   xerces-j2
 Requires:   xml-commons-apis
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %description
@@ -72,8 +72,9 @@
 %build
 export CLASSPATH=target/classes:target/test-classes
 export OPT_JAR_LIST=:
-ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 \
--Dbuild.sysclasspath=only jar javadoc
+ant -Dant.build.javac.source=1.6 -Dant.build.javac.target=1.6 \
+-Dbuild.sysclasspath=only \
+jar javadoc
 
 %install
 install -Dpm 644 target/%{name}-%{version}.jar \
@@ -88,19 +89,18 @@
 # javadocs
 install -dm 755 %{buildroot}%{_javadocdir}/%{name}-%{version}
 cp -pr target/docs/apidocs/* %{buildroot}%{_javadocdir}/%{name}-%{version}
+%fdupes -s %{buildroot}%{_javadocdir}/%{name}-%{version}
 ln -s %{name}-%{version} %{buildroot}%{_javadocdir}/%{name}
 # FIXME: (dwalluck): breaks -bi --short-circuit
 rm -rf target/docs/apidocs
 
 %files
-%defattr(0644,root,root,0755)
 %doc LICENSE.txt
 %{_javadir}/*.jar
 %{_mavenpomdir}/*
 %{_datadir}/maven-metadata/%{name}.xml*
 
 %files javadoc
-%defattr(0644,root,root,0755)
 %{_javadocdir}/%{name}-%{version}
 %{_javadocdir}/%{name}
 




commit classworlds for openSUSE:Factory

2017-05-22 Thread root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2017-05-22 10:47:32

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is "classworlds"

Mon May 22 10:47:32 2017 rev:16 rq:496701 version:1.1

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2015-04-02 
15:55:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2017-05-22 10:48:39.370996899 +0200
@@ -1,0 +2,8 @@
+Fri May 19 10:20:33 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local
+- Fixed requires
+- Removed maven conditions
+- Spec file cleaned
+
+---



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.3FGpaB/_old  2017-05-22 10:48:39.982910652 +0200
+++ /var/tmp/diff_new_pack.3FGpaB/_new  2017-05-22 10:48:39.986910089 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package classworlds
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -16,12 +16,6 @@
 #
 
 
-%define with()  %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
-%define without()   %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
-%define bcond_with()%{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
-%define bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
-%bcond_with maven
-
 Name:   classworlds
 Version:1.1
 Release:0
@@ -34,22 +28,16 @@
 Source1:classworlds-1.1-build.xml
 Source2:
http://repo1.maven.org/maven2/%{name}/%{name}/%{version}/%{name}-%{version}.pom
 Patch0: classworlds-1.1-project_xml.patch
-#rap#Patch1: classworlds-1.1-project_properties.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
-Requires(post):javapackages-tools
-Requires(postun):  javapackages-tools
 BuildRequires:  ant >= 1.6
-%if %with maven
-BuildRequires:  maven >= 1.1
-BuildRequires:  saxon
-BuildRequires:  saxon-scripts
-%endif
+BuildRequires:  javapackages-local
+BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  xerces-j2
 BuildRequires:  xml-commons-apis
 Requires:   xerces-j2
 Requires:   xml-commons-apis
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 Classworlds is a framework for container developers 
@@ -75,56 +63,34 @@
 can benefit from the classloading control provided by 
 classworlds. 
 
-
-
 %prep
 %setup -q 
 find -name "*.jar" | xargs rm
 cp -p %{SOURCE1} build.xml
-%patch0 -p0
+%patch0
 
 %build
-%if %with maven
-pushd lib
-ln -sf $(build-classpath xml-commons-apis) xmlApis-2.0.2.jar
-ln -sf $(build-classpath ant) jakarta-ant-1.5.jar
-ln -sf $(build-classpath maven) maven.jar
-popd
-maven \
- -Dmaven.repo.remote=file:/usr/share/maven/repository \
- -Dmaven.home.local=$(pwd)/.maven \
- jar javadoc xdoc:transform classworlds:build-boot-jar
-%else
 export CLASSPATH=target/classes:target/test-classes
 export OPT_JAR_LIST=:
 ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 \
 -Dbuild.sysclasspath=only jar javadoc
-%endif
 
 %install
 install -Dpm 644 target/%{name}-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
-%if %with maven
-install -Dpm 644 target/%{name}-boot-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-boot-%{version}.jar
-%endif
-(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf 
${jar} `echo $jar| sed  "s|-%{version}||g"`; done)
+  %{buildroot}%{_javadir}/%{name}-%{version}.jar
+(cd %{buildroot}%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} 
`echo $jar| sed  "s|-%{version}||g"`; done)
 
 # POM and depmap
-install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
-install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom
+install -d -m 755 %{buildroot}%{_mavenpomdir}
+install -p -m 644 %{SOURCE2} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
 %add_maven_depmap
 
 # javadocs
-install -dm 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
-cp -pr target/docs/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
-ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
+install -dm 755 %{buildroot}%{_javadocdir}/%{name}-%{version}
+cp -pr target/docs/apidocs/* %{buildroot}%{_javadocdir}/%{name}-%{version}
+ln -s %{name}-%{version} %{buildroot}%{_javadocdir}/%{name}
 # FIXME: (dwalluck): breaks -bi 

commit classworlds for openSUSE:Factory

2015-04-02 Thread h_root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2015-04-02 15:55:11

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is classworlds

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2013-09-11 
13:39:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2015-04-02 15:55:13.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 18 09:46:05 UTC 2015 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.NNj0TH/_old  2015-04-02 15:55:13.0 +0200
+++ /var/tmp/diff_new_pack.NNj0TH/_new  2015-04-02 15:55:13.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package classworlds
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -131,7 +131,7 @@
 %doc LICENSE.txt
 %{_javadir}/*.jar
 %{_mavenpomdir}/*
-%config %{_mavendepmapfragdir}/*
+%{_datadir}/maven-metadata/%{name}.xml*
 
 %files javadoc
 %defattr(0644,root,root,0755)





commit classworlds for openSUSE:Factory

2013-09-11 Thread h_root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2013-09-11 13:39:10

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is classworlds

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2013-09-03 
22:02:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2013-09-11 13:39:18.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep  9 11:05:36 UTC 2013 - tchva...@suse.com
+
+- Move from jpackage-utils to javapackage-tools
+
+---



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.8kAKfB/_old  2013-09-11 13:39:21.0 +0200
+++ /var/tmp/diff_new_pack.8kAKfB/_new  2013-09-11 13:39:21.0 +0200
@@ -37,8 +37,8 @@
 #rap#Patch1: classworlds-1.1-project_properties.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-Requires(post):jpackage-utils = 1.7.2
-Requires(postun):  jpackage-utils = 1.7.2
+Requires(post):javapackages-tools
+Requires(postun):  javapackages-tools
 BuildRequires:  ant = 1.6
 %if %with maven
 BuildRequires:  maven = 1.1


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit classworlds for openSUSE:Factory

2013-09-03 Thread h_root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2013-09-03 22:02:10

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is classworlds

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2012-05-14 
16:12:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2013-09-03 22:02:10.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 28 13:40:55 UTC 2013 - mvysko...@suse.com
+
+- use add_maven_depmap from javapackages-tools
+- use pom file from repo1.maven.org
+
+---

New:

  classworlds-1.1.pom



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.tGFz1V/_old  2013-09-03 22:02:11.0 +0200
+++ /var/tmp/diff_new_pack.tGFz1V/_new  2013-09-03 22:02:11.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package classworlds (Version 1.1)
+# spec file for package classworlds
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -21,18 +21,18 @@
 %define bcond_with()%{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
 %define bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
 %bcond_with maven
-%define section   free
 
 Name:   classworlds
 Version:1.1
-Release:2
+Release:0
 Summary:Classworlds Classloader Framework
-Group:  Development/Libraries/Java
 License:BSD-3-Clause
+Group:  Development/Libraries/Java
 Url:http://classworlds.codehaus.org/
 Source0:classworlds-1.1-src.tar.bz2
 # svn export 
http://svn.codehaus.org/classworlds/tags/CLASSWORLDS_1_1/classworlds/ 
classworlds-1.1
 Source1:classworlds-1.1-build.xml
+Source2:
http://repo1.maven.org/maven2/%{name}/%{name}/%{version}/%{name}-%{version}.pom
 Patch0: classworlds-1.1-project_xml.patch
 #rap#Patch1: classworlds-1.1-project_properties.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,7 +62,6 @@
 classworlds. 
 
 %packagejavadoc
-License:BSD-3-Clause
 Summary:Javadoc for %{name}
 Group:  Development/Libraries/Java
 
@@ -110,12 +109,12 @@
   $RPM_BUILD_ROOT%{_javadir}/%{name}-boot-%{version}.jar
 %endif
 (cd $RPM_BUILD_ROOT%{_javadir}  for jar in *-%{version}.jar; do ln -sf 
${jar} `echo $jar| sed  s|-%{version}||g`; done)
-%add_to_maven_depmap %{name} %{name} %{version} JPP %{name}
-%add_to_maven_depmap %{name} %{name}-boot %{version} JPP %{name}-boot
-# poms
-install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/maven2/poms
-install -pm 644 pom.xml \
-$RPM_BUILD_ROOT%{_datadir}/maven2/poms/JPP.%{name}.pom
+
+# POM and depmap
+install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
+install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom
+%add_maven_depmap
+
 # javadocs
 install -dm 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
 cp -pr target/docs/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
@@ -127,20 +126,11 @@
 cp -pr target/docs/* $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
 %endif
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post
-%update_maven_depmap
-
-%postun
-%update_maven_depmap
-
 %files
 %defattr(0644,root,root,0755)
 %doc LICENSE.txt
 %{_javadir}/*.jar
-%{_datadir}/maven2/poms/*
+%{_mavenpomdir}/*
 %config %{_mavendepmapfragdir}/*
 
 %files javadoc


++ classworlds-1.1.pom ++
project
  modelVersion4.0.0/modelVersion
  groupIdclassworlds/groupId
  artifactIdclassworlds/artifactId
  nameclassworlds/name
  version1.1/version
  description/description
  urlhttp://classworlds.codehaus.org//url
  ciManagement
notifiers
  notifier
configuration
  addressclassworlds-...@lists.codehaus.org/address
/configuration
  /notifier
/notifiers
  /ciManagement
  inceptionYear2002/inceptionYear
  mailingLists
mailingList
  nameclassworlds users/name
  
subscribehttp://lists.codehaus.org/mailman/listinfo/classworlds-user/subscribe
  
unsubscribehttp://lists.codehaus.org/mailman/listinfo/classworlds-user/unsubscribe
  archivehttp://lists.codehaus.org/pipermail/classworlds-user//archive
/mailingList
mailingList
  nameclassworlds developers/name
  
subscribehttp://lists.codehaus.org/mailman/listinfo/classworlds-dev/subscribe
  
unsubscribehttp://lists.codehaus.org/mailman/listinfo/classworlds-dev/unsubscribe
  

commit classworlds for openSUSE:Factory

2012-05-14 Thread h_root
Hello community,

here is the log from the commit of package classworlds for openSUSE:Factory 
checked in at 2012-05-14 16:12:03

Comparing /work/SRC/openSUSE:Factory/classworlds (Old)
 and  /work/SRC/openSUSE:Factory/.classworlds.new (New)


Package is classworlds, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/classworlds/classworlds.changes  2011-09-23 
01:53:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.classworlds.new/classworlds.changes 
2012-05-14 16:12:05.0 +0200
@@ -1,0 +2,7 @@
+Thu May 10 09:16:12 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  Open Source is not a recognised license. Use the proper license
+  (BSD-3-Clause) in SPDX format
+
+---



Other differences:
--
++ classworlds.spec ++
--- /var/tmp/diff_new_pack.jkJxQj/_old  2012-05-14 16:12:08.0 +0200
+++ /var/tmp/diff_new_pack.jkJxQj/_new  2012-05-14 16:12:09.0 +0200
@@ -28,7 +28,7 @@
 Release:2
 Summary:Classworlds Classloader Framework
 Group:  Development/Libraries/Java
-License:Open Source
+License:BSD-3-Clause
 Url:http://classworlds.codehaus.org/
 Source0:classworlds-1.1-src.tar.bz2
 # svn export 
http://svn.codehaus.org/classworlds/tags/CLASSWORLDS_1_1/classworlds/ 
classworlds-1.1
@@ -62,7 +62,7 @@
 classworlds. 
 
 %packagejavadoc
-License:Open Source
+License:BSD-3-Clause
 Summary:Javadoc for %{name}
 Group:  Development/Libraries/Java
 


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org