Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package apache-commons-exec for
openSUSE:Factory checked in at 2026-05-11 16:57:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apache-commons-exec (Old)
and /work/SRC/openSUSE:Factory/.apache-commons-exec.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache-commons-exec"
Mon May 11 16:57:24 2026 rev:5 rq:1352398 version:1.6.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/apache-commons-exec/apache-commons-exec.changes
2024-10-02 21:35:42.032158720 +0200
+++
/work/SRC/openSUSE:Factory/.apache-commons-exec.new.1966/apache-commons-exec.changes
2026-05-11 17:07:52.774804820 +0200
@@ -1,0 +2,131 @@
+Mon May 11 07:04:51 UTC 2026 - Fridrich Strba <[email protected]>
+
+- Upgrade to version 1.6.0
+ * New features:
+ + TimeoutObserver now extends Consumer<Watchdog>
+ + Add org.apache.commons.exec.Watchdog.getTimeout()
+ * Fixed Bugs:
+ + Watchdog.builder().get() now uses a default timeout of 30
+ seconds instead of throwing a NullPointerException
+ + ExecuteWatchdog.builder().get() now uses a default timeout of
+ 30 seconds instead of throwing a NullPointerException
+ + Calling org.apache.commons.exec.Watchdog.Builder
+ .setTimeout(Duration) with null now resets to the default
+ INFINITE_TIMEOUT_DURATION timeout
+ + Calling org.apache.commons.exec.ExecuteWatchdog.Builder
+ .setTimeout(Duration) with null now resets to the default
+ INFINITE_TIMEOUT_DURATION timeout
+ + Calling org.apache.commons.exec.Watchdog.Builder
+ .setThreadFactory(ThreadFactory) with null now resets to the
+ default java.util.concurrent.Executors.defaultThreadFactory()
+ + Calling org.apache.commons.exec.ExecuteWatchdog.Builder
+ .setThreadFactory(ThreadFactory) with null now resets to the
+ default java.util.concurrent.Executors.defaultThreadFactory()
+ + Fix Checkstyle issues
+ + Fix StringUtils.quoteArgument(String) when input contains
+ single and double quotes #309
+ + Fix Apache RAT plugin console warnings
+ * Changes:
+ + Bump org.apache.commons:commons-parent from 83 to 93
+ + Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.20.0
+
+-------------------------------------------------------------------
+Mon May 11 06:59:40 UTC 2026 - Fridrich Strba <[email protected]>
+
+- Upgrade to version 1.5.0
+ * New features:
+ + Add Maven property project.build.outputTimestamp for build
+ reproducibility
+ + Add CommandLine.CommandLine(Path)
+ + Add Executor.getWorkingDirectoryPath()
+ + Add DefaultExecutor.Builder.setWorkingDirectory(Path)
+ + Add CommandLauncher.exec(CommandLine, Map<String, String>,
+ Path)
+ * Fixed Bugs:
+ + EXEC-122: Document PumpStreamHandler stream thread-safety
+ requirements
+ + Fix CI only running on Ubuntu and improve OS-specific tests
+ + Fix PMD UnnecessaryFullyQualifiedName in DefaultExecutor
+ + Fix PMD EmptyCatchBlock by allowing commented blocks
+ + Fix PMD EmptyControlStatement by allowing commented blocks
+ + Replace OS.OS_* use of Locale.ENGLISH with Locale.ROOT
+ + Deprecate DebugUtils.DebugUtils()
+ + Deprecate MapUtils.MapUtils()
+ + Deprecate StringUtils.StringUtils()
+ + Fix Javadoc warnings
+ + Fix SpotBugs AT_STALE_THREAD_WRITE_OF_PRIMITIVE: Shared
+ primitive variable "shouldDestroy" in one thread may not yield
+ the value of the most recent write from another thread
+ [org.apache.commons.exec.ShutdownHookProcessDestroyer
+ $ProcessDestroyerThread]
+ + Fix SpotBugs AT_STALE_THREAD_WRITE_OF_PRIMITIVE: Shared
+ primitive variable "added" in one thread may not yield the
+ value of the most recent write from another thread
+ [org.apache.commons.exec.ShutdownHookProcessDestroyer]
+ * Changes:
+ + Bump org.apache.commons:commons-parent from 65 to 83
+ * Removed:
+ + Remove obsolete and unmaintained Ant build file
+- Generate Ant build file for our build
+- Removed patch:
+ * commons-exec-1.3-build_xml.patch
+ + not needed anymore
+
+-------------------------------------------------------------------
+Mon May 11 06:54:03 UTC 2026 - Fridrich Strba <[email protected]>
+
+- Upgrade to version 1.4.0
+ * New features:
+ + Add ShutdownHookProcessDestroyer.isEmpty()
+ + Add DefaultExecuteResultHandler.waitFor(Duration)
+ + Add Watchdog.Watchdog(Duration)
+ + Add ExecuteWatchdog.ExecuteWatchdog(Duration)
+ + Add PumpStreamHandler.setStopTimeout(Duration) and deprecate
+ PumpStreamHandler.setStopTimeout(long)
+ + Add DefaultExecutor.Builder
+ + Add DaemonExecutor.Builder
+ + Add ExecuteWatchdog.Builder
+ + Add Watchdog.Builder
+ * Fixed Bugs:
+ + EXEC-105: Fix code snippet in tutorial page
+ + EXEC-100: Sync org.apache.commons.exec.OS with the newest Ant
+ source file.
+ + EXEC-64: DefaultExecutor swallows IOException cause instead
+ of propagating it (work-round for Java 1.5)
+ + Java-style Array declaration and remove empty finally block
+ + Use JUnit 5 assertThrows()
+ + [StepSecurity] ci: Harden GitHub Actions
+ + Port from JUnit 4 to 5
+ + [Javadoc] CommandLine.toCleanExecutable(final String
+ dirtyExecutable) IllegalArgumentException #61
+ + ExecuteException propagates its cause to its IOException
+ superclass
+ + Propagate exception in DebugUtils.handleException(String,
+ Exception)
+ + Deprecate StringUtils.toString(String[], String) in favor of
+ String.join(CharSequence, CharSequence...)
+ + EXEC-78: No need to use System.class.getMethod("getenv",...)
+ any more
+ + EXEC-70: Delegate thread creation to
+ java.util.concurrent.ThreadFactory
+ + Avoid NullPointerException in MapUtils.prefix(Map, String)
+ * Changes:
+ + Bump github actions #52
+ + EXEC-111: Update from Java 5 to 6
+ + Update from Java 7 to 8
+ + Bump actions/cache from 2 to 3.0.11
+ + Bump actions/checkout from 2.3.2 to 3.1.0
+ + Bump actions/setup-java from 1.4.0 to 3.8.0
+ + Bump junit from 4.13 to 5.9.1 Vintage
+ + Bump maven-pmd-plugin from 2.7.1 to 3.19.0
+ + Bump maven-checkstyle-plugin from 2.13 to 3.2.0
+ + Bump commons-parent from 52 to 65
+ + Bump japicmp-maven-plugin from 0.15.6 to 0.16.0
+ * Removed:
+ + Deprecate DefaultExecuteResultHandler.waitFor(long)
+ + Deprecate ExecuteWatchdog.ExecuteWatchdog(long)
+ + Deprecate Watchdog.Watchdog(long)
+ + Drop obsolete and unmaintained Ant build
+ + Drop CLIRR plugin, replaced by JApiCmp
+
+-------------------------------------------------------------------
Old:
----
commons-exec-1.3-build_xml.patch
commons-exec-1.3-src.tar.gz
New:
----
_scmsync.obsinfo
apache-commons-exec-build.xml
build.specials.obscpio
commons-exec-1.6.0-src.tar.gz
----------(Old B)----------
Old:- Removed patch:
* commons-exec-1.3-build_xml.patch
+ not needed anymore
----------(Old E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ apache-commons-exec.spec ++++++
--- /var/tmp/diff_new_pack.1aWDLL/_old 2026-05-11 17:07:53.290826052 +0200
+++ /var/tmp/diff_new_pack.1aWDLL/_new 2026-05-11 17:07:53.294826217 +0200
@@ -1,7 +1,7 @@
#
# spec file for package apache-commons-exec
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,24 +18,19 @@
%global base_name exec
%global short_name commons-%{base_name}
-%bcond_with tests
Name: apache-%{short_name}
-Version: 1.3
+Version: 1.6.0
Release: 0
Summary: Java library to reliably execute external processes from
within the JVM
License: Apache-2.0
Group: Development/Libraries/Java
URL: https://commons.apache.org/exec/
Source0:
https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
-Patch0: commons-exec-1.3-build_xml.patch
+Source100: %{name}-build.xml
BuildRequires: ant
-BuildRequires: dos2unix
BuildRequires: fdupes
BuildRequires: javapackages-local >= 6
BuildArch: noarch
-%if %{with tests}
-BuildRequires: ant-junit
-%endif
%description
Commons Exec is a library for dealing with external process execution and
@@ -49,26 +44,11 @@
This package contains the API documentation for %{name}.
%prep
-%autosetup -p1 -n %{short_name}-%{version}-src
-
-# Fix wrong end-of-line encoding
-dos2unix LICENSE.txt NOTICE.txt RELEASE-NOTES.txt STATUS
-
-# Shell scripts used for unit tests must be executable (see
-# http://commons.apache.org/exec/faq.html#environment-testing)
-chmod a+x src/test/scripts/*.sh
-
-# Skip Exec57Test (it is unstable), see rhbz#1202260
-find -name Exec57Test.java -delete
-
-%pom_remove_parent .
+%setup -n %{short_name}-%{version}-src
+cp %{SOURCE100} build.xml
%build
-ant \
-%if %{without tests}
- -Dmaven.test.skip=true \
-%endif
- jar javadoc
+ant jar javadoc
%install
# jar
@@ -86,7 +66,7 @@
%files -f .mfiles
%license LICENSE.txt NOTICE.txt
-%doc STATUS RELEASE-NOTES.txt
+%doc RELEASE-NOTES.txt
%{_javadir}/%{name}.jar
%files javadoc
++++++ _scmsync.obsinfo ++++++
mtime: 1778486166
commit: 11f4ee0168aa122742ee2e52bb776ece670487013d189f2e0d25210c36f6135e
url: https://src.opensuse.org/java-packages/apache-commons-exec
revision: 11f4ee0168aa122742ee2e52bb776ece670487013d189f2e0d25210c36f6135e
projectscmsync: https://src.opensuse.org/java-packages/_ObsPrj
++++++ apache-commons-exec-build.xml ++++++
<?xml version="1.0" encoding="UTF-8"?>
<project name="commons-exec" default="package" basedir=".">
<!-- ======================================================================
-->
<!-- Build environment properties
-->
<!-- ======================================================================
-->
<property name="project.groupId" value="org.apache.commons"/>
<property name="project.artifactId" value="commons-exec"/>
<property name="project.version" value="1.6.0"/>
<property name="compiler.release" value="8"/>
<property name="compiler.source" value="1.${compiler.release}"/>
<property name="compiler.target" value="${compiler.source}"/>
<property name="build.finalName"
value="${project.artifactId}-${project.version}"/>
<property name="build.dir" value="target"/>
<property name="build.outputDir" value="${build.dir}/classes"/>
<property name="build.srcDir" value="src/main/java"/>
<property name="build.resourceDir" value="."/>
<property name="reporting.outputDirectory" value="${build.dir}/site"/>
<!-- ======================================================================
-->
<!-- Cleaning up target
-->
<!-- ======================================================================
-->
<target name="clean" description="Clean the output directory">
<delete dir="${build.dir}"/>
</target>
<!-- ======================================================================
-->
<!-- Compilation target
-->
<!-- ======================================================================
-->
<target name="compile" description="Compile the code">
<mkdir dir="${build.outputDir}"/>
<javac destdir="${build.outputDir}"
encoding="UTF-8"
nowarn="false"
debug="true"
optimize="false"
deprecation="true"
release="${compiler.release}"
target="${compiler.target}"
verbose="false"
fork="false"
source="${compiler.source}">
<src>
<pathelement location="${build.srcDir}"/>
</src>
</javac>
<mkdir dir="${build.outputDir}/META-INF"/>
<copy todir="${build.outputDir}/META-INF">
<fileset dir="${build.resourceDir}">
<include name="NOTICE.txt"/>
<include name="LICENSE.txt"/>
<include name="NOTICE"/>
<include name="LICENSE"/>
</fileset>
</copy>
</target>
<!-- ======================================================================
-->
<!-- Javadoc target
-->
<!-- ======================================================================
-->
<target name="javadoc" description="Generates the Javadoc of the application">
<javadoc sourcepath="${build.srcDir}"
packagenames="*"
destdir="${reporting.outputDirectory}/apidocs"
access="protected"
verbose="false"
encoding="UTF-8"
version="true"
use="true"
author="true"
splitindex="false"
nodeprecated="false"
nodeprecatedlist="false"
notree="false"
noindex="false"
nohelp="false"
nonavbar="false"
serialwarn="false"
docencoding="UTF-8"
source="${compiler.source}"
linksource="true"
breakiterator="false"/>
</target>
<!-- ======================================================================
-->
<!-- Package target
-->
<!-- ======================================================================
-->
<target name="package" depends="compile" description="Package the
application">
<jar jarfile="${build.dir}/${build.finalName}.jar"
compress="true"
index="false"
basedir="${build.outputDir}"
excludes="**/package.html">
<manifest>
<attribute name="Bundle-Description" value="Apache Commons Exec is a
library that reliably executes external processes from within the JVM."/>
<attribute name="Bundle-DocURL"
value="https://commons.apache.org/proper/commons-exec/"/>
<attribute name="Bundle-License"
value="https://www.apache.org/licenses/LICENSE-2.0.txt"/>
<attribute name="Bundle-ManifestVersion" value="2"/>
<attribute name="Bundle-Name" value="Apache Commons Exec"/>
<attribute name="Bundle-SymbolicName"
value="${project.groupId}.${project.artifactId}"/>
<attribute name="Bundle-Vendor" value="The Apache Software Foundation"/>
<attribute name="Bundle-Version" value="${project.version}"/>
<attribute name="Export-Package"
value="org.apache.commons.exec.environment;version="${project.version}";uses:="org.apache.commons.exec",org.apache.commons.exec.launcher;version="${project.version}";uses:="org.apache.commons.exec",org.apache.commons.exec.util;version="${project.version}",org.apache.commons.exec;version="${project.version}""/>
<attribute name="Implementation-Title" value="Apache Commons Exec"/>
<attribute name="Implementation-Vendor-Id" value="org.apache"/>
<attribute name="Implementation-Vendor" value="The Apache Software
Foundation"/>
<attribute name="Implementation-Version" value="${project.version}"/>
<attribute name="Include-Resource"
value="META-INF/LICENSE.txt=LICENSE.txt,META-INF/NOTICE.txt=NOTICE.txt"/>
<attribute name="Require-Capability"
value="osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=${compiler.target}))""/>
<attribute name="Specification-Title" value="Apache Commons Exec"/>
<attribute name="Specification-Vendor" value="The Apache Software
Foundation"/>
<attribute name="Specification-Version" value="${project.version}"/>
</manifest>
</jar>
</target>
<!-- ======================================================================
-->
<!-- A dummy target for the package named after the type it creates
-->
<!-- ======================================================================
-->
<target name="jar" depends="package" description="Builds the jar for the
application"/>
</project>
++++++ 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-05-11 09:56:06.000000000 +0200
@@ -0,0 +1 @@
+.osc
++++++ commons-exec-1.3-src.tar.gz -> commons-exec-1.6.0-src.tar.gz ++++++
++++ 22695 lines of diff (skipped)