Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aqute-bnd for openSUSE:Factory checked in at 2026-09-11 18:04:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aqute-bnd (Old) and /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aqute-bnd" Fri Sep 11 18:04:07 2026 rev:18 rq:1377327 version:6.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/aqute-bnd/aqute-bnd.changes 2026-07-21 22:58:24.377634538 +0200 +++ /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/aqute-bnd.changes 2026-09-11 18:07:25.613139850 +0200 @@ -1,0 +2,8 @@ +Thu Sep 3 20:29:47 UTC 2026 - Fridrich Strba <[email protected]> + +- Added patch: + * 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch + + Avoid error "Classes found in the wrong directory" when + scanning a multi-release build + +------------------------------------------------------------------- bnd-maven-plugin.changes: same change New: ---- 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch ----------(New B)---------- New:/work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/aqute-bnd.changes-- Added patch: /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/aqute-bnd.changes: * 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/aqute-bnd.changes- + Avoid error "Classes found in the wrong directory" when -- /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/bnd-maven-plugin.changes-- Added patch: /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/bnd-maven-plugin.changes: * 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch /work/SRC/openSUSE:Factory/.aqute-bnd.new.1265/bnd-maven-plugin.changes- + Avoid error "Classes found in the wrong directory" when ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aqute-bnd.spec ++++++ --- /var/tmp/diff_new_pack.gFWBfI/_old 2026-09-11 18:07:28.324253713 +0200 +++ /var/tmp/diff_new_pack.gFWBfI/_new 2026-09-11 18:07:28.325253755 +0200 @@ -39,6 +39,7 @@ Patch4: 0004-reproducible-timestamps.patch Patch5: 0005-reproducible-packages-list.patch Patch6: 0006-Set-reproducible-build-from-environment.patch +Patch7: 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch BuildRequires: ant BuildRequires: fdupes BuildRequires: javapackages-local >= 6 @@ -81,19 +82,12 @@ API documentation for %{name}. %prep -%setup -q -n bnd-%{version} -a 1 +%autosetup -n bnd-%{version} -a 1 -p 1 mkdir -p lib build-jar-repository -s lib \ slf4j/api slf4j/simple osgi-annotation osgi-core osgi-compendium osgi-service-subsystem ant -%patch -P 1 -p1 -%patch -P 2 -p1 -%patch -P 3 -p1 -%patch -P 4 -p1 -%patch -P 5 -p1 -%patch -P 6 -p1 - # Port to slf4j 2.x sed -i "s/org.slf4j.impl.SimpleLogger/org.slf4j.simple.SimpleLogger/g" `find . -name \*.java | xargs` ++++++ bnd-maven-plugin.spec ++++++ --- /var/tmp/diff_new_pack.gFWBfI/_old 2026-09-11 18:07:28.364255394 +0200 +++ /var/tmp/diff_new_pack.gFWBfI/_new 2026-09-11 18:07:28.365255435 +0200 @@ -31,6 +31,7 @@ Patch4: 0004-reproducible-timestamps.patch Patch5: 0005-reproducible-packages-list.patch Patch6: 0006-Set-reproducible-build-from-environment.patch +Patch7: 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch BuildRequires: fdupes BuildRequires: maven-local BuildRequires: mvn(biz.aQute.bnd:biz.aQute.bndlib) >= %{version} @@ -54,14 +55,7 @@ API documentation for %{name}. %prep -%setup -q -n bnd-%{version} - -%patch -P 1 -p1 -%patch -P 2 -p1 -%patch -P 3 -p1 -%patch -P 4 -p1 -%patch -P 5 -p1 -%patch -P 6 -p1 +%autosetup -n bnd-%{version} -p 1 # Port to slf4j 2.x sed -i "s/org.slf4j.impl.SimpleLogger/org.slf4j.simple.SimpleLogger/g" `find . -name \*.java | xargs` ++++++ 0007-Avoid-error-Classes-found-in-the-wrong-directory.patch ++++++ >From 0c527dc95e1f6cc92a256109383a57ba1ccc0d8e Mon Sep 17 00:00:00 2001 From: Fridrich Strba <[email protected]> Date: Thu, 3 Sep 2026 22:15:19 +0200 Subject: [PATCH 7/7] Avoid error "Classes found in the wrong directory" --- biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java b/biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java index 8fc29332a..9f6f452cb 100644 --- a/biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java +++ b/biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java @@ -2652,6 +2652,8 @@ public class Analyzer extends Processor { if (path.startsWith(prefix)) { String relativePath = path.substring(prefix.length()); + if (relativePath.startsWith("META-INF/")) + continue; if (okToIncludeDirs) { int n = relativePath.lastIndexOf('/'); -- 2.55.0 ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.gFWBfI/_old 2026-09-11 18:07:28.434258334 +0200 +++ /var/tmp/diff_new_pack.gFWBfI/_new 2026-09-11 18:07:28.436258418 +0200 @@ -1,6 +1,6 @@ -mtime: 1784529911 -commit: 0ac8f8e687c601696fbca7d86ad7aa71ab8fbe63ef77c04d1becc03d075507a3 +mtime: 1788467590 +commit: 981c79537f8c48fceee8331a7f9bac75969f37e1b822339e95b6e92941a177f2 url: https://src.opensuse.org/java-packages/aqute-bnd -revision: 0ac8f8e687c601696fbca7d86ad7aa71ab8fbe63ef77c04d1becc03d075507a3 +revision: 981c79537f8c48fceee8331a7f9bac75969f37e1b822339e95b6e92941a177f2 projectscmsync: https://src.opensuse.org/java-packages/_ObsPrj ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-09-03 22:33:10.000000000 +0200 @@ -0,0 +1 @@ +.osc
