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-21 20:59:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/akka (Old) and /work/SRC/openSUSE:Factory/.akka.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "akka" Wed Apr 21 20:59:47 2021 rev:4 rq:886893 version:2.3.16 Changes: -------- --- /work/SRC/openSUSE:Factory/akka/akka.changes 2021-04-19 21:07:06.852129655 +0200 +++ /work/SRC/openSUSE:Factory/.akka.new.12324/akka.changes 2021-04-21 21:00:05.438266666 +0200 @@ -1,0 +2,8 @@ +Tue Apr 20 07:44:10 UTC 2021 - Fridrich Strba <[email protected]> + +- Added patch: + * akka-2.3.16-typesafe-config-1.4.1.patch + + conditionlally applied patch to enable build against + typesafe-config >= 1.4.1 + +------------------------------------------------------------------- New: ---- akka-2.3.16-typesafe-config-1.4.1.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ akka.spec ++++++ --- /var/tmp/diff_new_pack.9P2Vbu/_old 2021-04-21 21:00:06.102267712 +0200 +++ /var/tmp/diff_new_pack.9P2Vbu/_new 2021-04-21 21:00:06.102267712 +0200 @@ -41,6 +41,7 @@ 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 +Patch2: akka-2.3.16-typesafe-config-1.4.1.patch BuildRequires: ant BuildRequires: java-devel BuildRequires: javapackages-local @@ -91,6 +92,9 @@ %if %{?pkg_vcmp:%pkg_vcmp typesafe-config >= 1.3}%{!?pkg_vcmp:0} %patch1 -p1 %endif +%if %{?pkg_vcmp:%pkg_vcmp typesafe-config >= 1.4}%{!?pkg_vcmp:0} +%patch2 -p1 +%endif # handle compatibility netty jar sed -i -e "s|netty[.]jar|$(basename %{_javadir}/netty3-*.jar)|" build.xml ++++++ akka-2.3.16-typesafe-config-1.4.1.patch ++++++ --- akka-2.3.16/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala 2021-04-19 16:08:27.697926946 +0200 +++ akka-2.3.16/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala 2021-04-20 09:28:51.409908736 +0200 @@ -190,5 +190,13 @@ def getMemorySizeList(path: String) = config.getMemorySizeList(path) def hasPathOrNull(path: String) = config.hasPathOrNull(path) + + def getEnum[T <: Enum[T]](enumClass: Class[T], path: String) = config.getEnum(enumClass, path) + + def getEnumList[T <: Enum[T]](enumClass: Class[T], path: String) = config.getEnumList(enumClass, path) + + def getPeriod(path: String) = config.getPeriod(path) + + def getTemporal(path: String) = config.getTemporal(path) }
