forked from pool/libbluray
Accepting request 971874 from home:fstrba:branches:multimedia:libs
Fix build with post-April 2022 CPU java versions OBS-URL: https://build.opensuse.org/request/show/971874 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libbluray?expand=0&rev=88
This commit is contained in:
parent
31c4bcd8f1
commit
f771d391ba
20
libbluray-April2022CPU.patch
Normal file
20
libbluray-April2022CPU.patch
Normal file
@ -0,0 +1,20 @@
|
||||
--- libbluray-1.3.1/src/libbluray/bdj/java/java/io/BDFileSystem.java 2022-03-03 18:05:27.000000000 +0100
|
||||
+++ libbluray-1.3.1/src/libbluray/bdj/java/java/io/BDFileSystem.java 2022-04-21 17:35:16.594935352 +0200
|
||||
@@ -227,6 +227,17 @@
|
||||
return fs.isAbsolute(f);
|
||||
}
|
||||
|
||||
+ public boolean isInvalid(File f) {
|
||||
+ try {
|
||||
+ Method m = fs.getClass().getDeclaredMethod("isInvalid", new Class[] { File.class });
|
||||
+ Object[] args = new Object[] {(Object)f};
|
||||
+ Boolean result = (Boolean)m.invoke(fs, args);
|
||||
+ return result.booleanValue();
|
||||
+ } finally {
|
||||
+ return false;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
public String resolve(File f) {
|
||||
if (!booted)
|
||||
return fs.resolve(f);
|
@ -1,29 +0,0 @@
|
||||
--- libbluray-1.1.2/src/libbluray/bdj/build.xml.orig 2019-08-03 18:40:05.427564607 +0200
|
||||
+++ libbluray-1.1.2/src/libbluray/bdj/build.xml 2019-08-03 18:40:05.451564195 +0200
|
||||
@@ -8,10 +8,9 @@
|
||||
<property name="dist" location="../../.libs"/>
|
||||
<property name="src_awt" value=""/>
|
||||
<property name="src_asm" value="../../../contrib/asm/src/"/>
|
||||
- <property name="bootclasspath" value=""/>
|
||||
<property name="version" value=""/>
|
||||
- <property name="java_version_asm" value="1.5"/>
|
||||
- <property name="java_version_bdj" value="1.4"/>
|
||||
+ <property name="java_version_asm" value="1.6"/>
|
||||
+ <property name="java_version_bdj" value="1.6"/>
|
||||
|
||||
<target name="init">
|
||||
<tstamp/>
|
||||
@@ -22,13 +21,11 @@
|
||||
<target name="compile" depends="init"
|
||||
description="compile the source " >
|
||||
<javac srcdir="${src_asm}" destdir="${build}" debug="yes"
|
||||
- bootclasspath="${bootclasspath}"
|
||||
source="${java_version_asm}" target="${java_version_asm}">
|
||||
<compilerarg value="-XDignore.symbol.file"/>
|
||||
<compilerarg value="-Xlint:-deprecation"/>
|
||||
</javac>
|
||||
<javac srcdir="${src}${src_awt}" destdir="${build}" debug="yes"
|
||||
- bootclasspath="${bootclasspath}"
|
||||
source="${java_version_bdj}" target="${java_version_bdj}">
|
||||
<compilerarg value="-XDignore.symbol.file"/>
|
||||
<compilerarg value="-Xlint:-deprecation"/>
|
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 21 15:17:38 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Removed patch:
|
||||
* libbluray-java9.patch
|
||||
+ Does not have any effect in the current build
|
||||
- Added patch:
|
||||
* libbluray-April2022CPU.patch
|
||||
+ implement the new java.io.FileSystem.isInvalid method
|
||||
that entered all supported java versions with April 2022 CPU
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 9 11:37:54 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -28,7 +28,7 @@ URL: https://www.videolan.org/developers/libbluray.html
|
||||
Source0: https://download.videolan.org/pub/videolan/%{name}/%{version}/%{name}-%{version}.tar.bz2
|
||||
Source99: baselibs.conf
|
||||
Patch0: libbluray-pkgconfig.patch
|
||||
Patch1: libbluray-java9.patch
|
||||
Patch1: libbluray-April2022CPU.patch
|
||||
BuildRequires: ant
|
||||
BuildRequires: java-devel >= 1.8
|
||||
BuildRequires: libtool
|
||||
@ -91,9 +91,7 @@ MPlayer). We, the authors of this library, do not condone nor endorse piracy.
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0}
|
||||
%patch1 -p1
|
||||
%endif
|
||||
|
||||
%build
|
||||
%configure \
|
||||
|
Loading…
Reference in New Issue
Block a user