Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package jdepend for openSUSE:Factory checked 
in at 2022-01-03 10:48:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/jdepend (Old)
 and      /work/SRC/openSUSE:Factory/.jdepend.new.1896 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "jdepend"

Mon Jan  3 10:48:53 2022 rev:19 rq:943360 version:2.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/jdepend/jdepend.changes  2018-12-07 
14:32:27.527290067 +0100
+++ /work/SRC/openSUSE:Factory/.jdepend.new.1896/jdepend.changes        
2022-01-03 10:48:57.411569819 +0100
@@ -1,0 +2,12 @@
+Tue Dec 28 13:00:04 UTC 2021 - David Anes <david.a...@suse.com>
+
+- Update to 2.10:
+  * Official release that includes support for Java 8 constants
+- Updated license from BSD-3 Clause to MIT (as per LICENSE.md file).
+- Fix installed files permissions (were too broad).
+- Fix LICENSE, CHANGES and README permissions.
+- Fix demo permissions (were too broad).
+- Rebased patches:
+  *  jdepend-target16.patch
+
+-------------------------------------------------------------------

Old:
----
  jdepend-2.9.1.pom
  jdepend-2.9.1.tar.bz2

New:
----
  2.10.tar.gz
  jdepend-2.10.pom

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ jdepend.spec ++++++
--- /var/tmp/diff_new_pack.YcuZNv/_old  2022-01-03 10:48:58.051570064 +0100
+++ /var/tmp/diff_new_pack.YcuZNv/_new  2022-01-03 10:48:58.059570068 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package jdepend
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,14 @@
 
 %define section                free
 Name:           jdepend
-Version:        2.9.1
+Version:        2.10
 Release:        0
 Summary:        Java Design Quality Metrics
-License:        BSD-3-Clause
+License:        MIT
 Group:          Development/Libraries/Java
-URL:            http://www.clarkware.com/
-Source0:        %{url}software/%{name}-%{version}.tar.bz2
-Source1:        
https://repo1.maven.org/maven2/jdepend/%{name}/%{version}/%{name}-%{version}.pom
+URL:            http://www.clarkware.com/software/JDepend.html
+Source0:        
https://github.com/clarkware/jdepend/archive/refs/tags/%{version}.tar.gz
+Source1:        %{name}-%{version}.pom
 Patch0:         jdepend-target16.patch
 BuildRequires:  ant
 BuildRequires:  java-devel
@@ -58,8 +58,6 @@
 %setup -q
 # remove all binary libs
 find . -name "*.jar" -exec rm -f {} \;
-# fix strange permissions
-find . -type d -exec chmod 755 {} \;
 %patch0 -b .target15
 
 %build
@@ -74,16 +72,16 @@
 
 # pom
 install -d -m 755 %{buildroot}%{_mavenpomdir}
-install -m 655 %{SOURCE1} %{buildroot}%{_mavenpomdir}/%{name}-%{version}.pom
+install -m 644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/%{name}-%{version}.pom
 %add_maven_depmap %{name}-%{version}.pom %{name}-%{version}.jar
 
-# demo
+# # demo
 install -d -m 755 %{buildroot}%{_datadir}/%{name}
 cp -pr sample %{buildroot}%{_datadir}/%{name}
 
 %files
-%license LICENSE
-%doc CHANGES README
+%attr(644, root, root) %license LICENSE.md
+%attr(644, root, root) %doc CHANGELOG.md README.md
 %{_javadir}/*
 %{_mavenpomdir}/*
 %if %{defined _maven_repository}
@@ -93,6 +91,6 @@
 %endif
 
 %files demo
-%{_datadir}/%{name}
+%attr(644, root, root) %{_datadir}/%{name}
 
 %changelog

++++++ jdepend-2.9.1.pom -> jdepend-2.10.pom ++++++
--- /work/SRC/openSUSE:Factory/jdepend/jdepend-2.9.1.pom        2018-12-07 
14:32:27.415290206 +0100
+++ /work/SRC/openSUSE:Factory/.jdepend.new.1896/jdepend-2.10.pom       
2022-01-03 10:48:57.163569724 +0100
@@ -2,5 +2,5 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>jdepend</groupId>
   <artifactId>jdepend</artifactId>
-  <version>2.9.1</version>
+  <version>2.10</version>
 </project>
\ No newline at end of file

++++++ jdepend-target16.patch ++++++
--- /var/tmp/diff_new_pack.YcuZNv/_old  2022-01-03 10:48:58.103570084 +0100
+++ /var/tmp/diff_new_pack.YcuZNv/_new  2022-01-03 10:48:58.111570088 +0100
@@ -1,4 +1,6 @@
---- build.xml
+Index: build.xml
+===================================================================
+--- build.xml.orig
 +++ build.xml
 @@ -38,7 +38,7 @@
  
@@ -7,24 +9,24 @@
 -    <javac srcdir="${src.dir}"
 +    <javac source="1.6" target="1.6" srcdir="${src.dir}"
             destdir="${build.dir}"
-            debug="${build.debug}">
-       <classpath refid="project.classpath"/>
-@@ -47,7 +47,7 @@
+            debug="${build.debug}"
+            includeantruntime="false">
+@@ -48,7 +48,7 @@
  
    <target name="compile-sample" depends="prepare"
      description="Compiles the sample code">
 -    <javac srcdir="sample"
 +    <javac source="1.6" target="1.6" srcdir="sample"
             destdir="${build.dir}"
-            debug="${build.debug}">
-       <classpath refid="project.classpath"/>
-@@ -57,7 +57,7 @@
+            debug="${build.debug}"
+            includeantruntime="false">
+@@ -59,7 +59,7 @@
    <target name="compile-tests" depends="compile"
            if="junit.available"
      description="Compiles the test code">
 -    <javac srcdir="${test.dir}"
 +    <javac source="1.6" target="1.6" srcdir="${test.dir}"
             destdir="${build.dir}"
-            debug="${build.debug}">
-       <classpath refid="project.classpath"/>
+            debug="${build.debug}"
+            includeantruntime="false">
 

Reply via email to