Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package akka for openSUSE:Factory checked in at 2021-04-19 21:06:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/akka (Old) and /work/SRC/openSUSE:Factory/.akka.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "akka" Mon Apr 19 21:06:33 2021 rev:3 rq:886711 version:2.3.16 Changes: -------- --- /work/SRC/openSUSE:Factory/akka/akka.changes 2020-04-11 23:45:53.387059151 +0200 +++ /work/SRC/openSUSE:Factory/.akka.new.12324/akka.changes 2021-04-19 21:07:06.852129655 +0200 @@ -1,0 +2,8 @@ +Mon Apr 19 14:18:00 UTC 2021 - Fridrich Strba <[email protected]> + +- Added patch: + * akka-2.3.0-typesafe-config-1.3.0.patch + + conditionally applied patch to be able to build against + typesafe-config >= 1.3 + +------------------------------------------------------------------- New: ---- akka-2.3.0-typesafe-config-1.3.0.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ akka.spec ++++++ --- /var/tmp/diff_new_pack.XUv7lF/_old 2021-04-19 21:07:07.472130584 +0200 +++ /var/tmp/diff_new_pack.XUv7lF/_new 2021-04-19 21:07:07.476130589 +0200 @@ -1,7 +1,7 @@ # # spec file for package akka # -# Copyright (c) 2020 SUSE LLC +# 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 @@ -40,6 +40,7 @@ Source9: https://repo1.maven.org/maven2/com/typesafe/akka/akka-slf4j_%{scala_short_version}/%{namedversion}/akka-slf4j_%{scala_short_version}-%{namedversion}.pom Source10: https://repo1.maven.org/maven2/com/typesafe/akka/akka-transactor_%{scala_short_version}/%{namedversion}/akka-transactor_%{scala_short_version}-%{namedversion}.pom Patch0: akka-2.3.0-encoding.patch +Patch1: akka-2.3.0-typesafe-config-1.3.0.patch BuildRequires: ant BuildRequires: java-devel BuildRequires: javapackages-local @@ -87,6 +88,9 @@ sed -i "s|@VERSION@|%{namedversion}|" build.xml %patch0 -p1 +%if %{?pkg_vcmp:%pkg_vcmp typesafe-config >= 1.3}%{!?pkg_vcmp:0} +%patch1 -p1 +%endif # handle compatibility netty jar sed -i -e "s|netty[.]jar|$(basename %{_javadir}/netty3-*.jar)|" build.xml ++++++ akka-2.3.0-typesafe-config-1.3.0.patch ++++++ --- akka-2.3.16/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala +++ akka-2.3.16/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala @@ -178,5 +178,17 @@ def resolveWith(source: Config, options: ConfigResolveOptions) = config.resolveWith(source, options) def resolveWith(source: Config) = config.resolveWith(source) + + def getDuration(path: String) = config.getDuration(path) + + def getDurationList(path: String) = config.getDurationList(path) + + def getIsNull(path: String) = config.getIsNull(path) + + def getMemorySize(path: String) = config.getMemorySize(path) + + def getMemorySizeList(path: String) = config.getMemorySizeList(path) + + def hasPathOrNull(path: String) = config.hasPathOrNull(path) }
