]> git.pld-linux.org Git - packages/libbluray.git/commitdiff
up to 1.3.2 auto/th/libbluray-1.3.2-1
authorJan Palus <atler@pld-linux.org>
Sun, 31 Jul 2022 11:22:55 +0000 (13:22 +0200)
committerJan Palus <atler@pld-linux.org>
Sun, 31 Jul 2022 11:22:55 +0000 (13:22 +0200)
java.patch [deleted file]
libbluray.spec

diff --git a/java.patch b/java.patch
deleted file mode 100644 (file)
index 41f858c..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-From 8f26777b1ce124ff761f80ef52d6be10bcea323e Mon Sep 17 00:00:00 2001
-From: Fridrich Strba <fstrba@suse.com>
-Date: Mon, 25 Apr 2022 14:28:58 +0300
-Subject: [PATCH] Fix build failure after Oracle Java CPU for April 2022
-
----
- src/libbluray/bdj/java/java/io/BDFileSystem.java | 11 +++++++++++
- 1 file changed, 11 insertions(+)
-
-diff --git a/src/libbluray/bdj/java/java/io/BDFileSystem.java b/src/libbluray/bdj/java/java/io/BDFileSystem.java
-index 03add5d1..fabe57bc 100644
---- a/src/libbluray/bdj/java/java/io/BDFileSystem.java
-+++ b/src/libbluray/bdj/java/java/io/BDFileSystem.java
-@@ -227,6 +227,17 @@ public abstract class BDFileSystem extends FileSystem {
-         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);
--- 
-GitLab
-
index 121bd72c8c6425384b5bd638e36e9f481da4dff8..2611a2dda8068e03b015153899460b11fc43175a 100644 (file)
@@ -6,13 +6,12 @@
 Summary:       Library to access Blu-Ray disks for video playback
 Summary(pl.UTF-8):     Biblioteka dostępu do dysków Blu-Ray w celu odtwarzania filmów
 Name:          libbluray
-Version:       1.3.1
+Version:       1.3.2
 Release:       1
 License:       LGPL v2+
 Group:         Libraries
 Source0:       https://download.videolan.org/videolan/libbluray/%{version}/%{name}-%{version}.tar.bz2
-# Source0-md5: 55d69915d56d491637b8378ca54c3b7a
-Patch0:                java.patch
+# Source0-md5: 8535cac9abdd03f59a64cb47994f45cb
 URL:           http://www.videolan.org/developers/libbluray.html
 BuildRequires: autoconf >= 2.50
 BuildRequires: automake
@@ -93,7 +92,6 @@ Klasy obsługujące BD-Java dla libbluray.
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %{__libtoolize}
This page took 0.176496 seconds and 4 git commands to generate.