2 Commits

Author SHA256 Message Date
a43803ab88 Accepting request 1324936 from science
OBS-URL: https://build.opensuse.org/request/show/1324936
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libsvm?expand=0&rev=7
2026-01-01 14:01:00 +00:00
82171d3f48 - update to 3.36:
* enhanced Python interface.
  * Probabilistic outputs for one-class SVM are now supported
 - drop libsvm-java8.patch (java 11 is now default)

- fix permissions of %%doc in libsvm2 package
- add python in build requirements

OBS-URL: https://build.opensuse.org/package/show/science/libsvm?expand=0&rev=28
2026-01-01 03:03:12 +00:00
5 changed files with 21 additions and 26 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a97ec885a37d40b6e6fb42e568590e509a24cbf78cc649ac24e23f1340dcd06e
size 910001

3
libsvm-3.36.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bc92901fbb928c44bb6d0c38189624c7443bcdbf1dd8350b4914e58e57b93c11
size 943316

View File

@@ -1,11 +0,0 @@
--- libsvm-3.3/java/Makefile 2023-10-31 23:35:13.969018818 +0100
+++ libsvm-3.3/java/Makefile 2023-10-31 23:35:49.032582534 +0100
@@ -5,7 +5,7 @@
svm_train.class svm_predict.class svm_toy.class svm_scale.class
#JAVAC = jikes
-JAVAC_FLAGS = -target 1.7 -source 1.7
+JAVAC_FLAGS = -target 1.8 -source 1.8
JAVAC = javac
# JAVAC_FLAGS =
export CLASSPATH := .:$(CLASSPATH)

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sun Dec 28 23:29:56 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 3.36:
* enhanced Python interface.
* Probabilistic outputs for one-class SVM are now supported
- drop libsvm-java8.patch (java 11 is now default)
-------------------------------------------------------------------
Thu Sep 26 16:05:53 UTC 2024 - Fridrich Strba <fstrba@suse.com>
@@ -27,7 +35,7 @@ Tue Nov 8 23:02:48 UTC 2022 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
* Probabilistic outputs for one-class SVM are now supported.
-------------------------------------------------------------------
Tue Mar 16 23:03:23 UTC 2021 - Aaron Puchert <aaronpuchert@alice-dsl.net>
Tue Mar 16 23:03:23 UTC 2021 - Aaron Puchert <aaronpuchert@alice-dsl.net>
- Fix build by adding missing python-rpm-macros dependency.
- Build Python bindings for current Python version.
@@ -86,7 +94,7 @@ Mon Oct 26 12:57:56 UTC 2015 - p.drouand@gmail.com
-------------------------------------------------------------------
Sat Apr 5 15:27:09 UTC 2014 - scorot@free.fr
- fix permissions of %%doc in libsvm2 package
- fix permissions of %%doc in libsvm2 package
-------------------------------------------------------------------
Thu Mar 13 15:09:44 UTC 2014 - toddrme2178@gmail.com
@@ -97,7 +105,7 @@ Thu Mar 13 15:09:44 UTC 2014 - toddrme2178@gmail.com
-------------------------------------------------------------------
Fri Sep 7 18:25:49 UTC 2012 - scorot@free.fr
- add python in build requirements
- add python in build requirements
-------------------------------------------------------------------
Fri Sep 7 18:03:49 UTC 2012 - scorot@free.fr

View File

@@ -1,7 +1,7 @@
#
# spec file for package libsvm
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 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
@@ -16,18 +16,17 @@
#
%define libname libsvm3
%define fileversion 3.3
%define libname libsvm4
%define fileversion 3.36
Summary: A Library for Support Vector Machines
License: BSD-3-Clause
Group: Development/Languages/Other
Name: libsvm
Version: 3.30
Version: 3.36
Release: 0
URL: https://www.csie.ntu.edu.tw/~cjlin/libsvm/
Source0: https://www.csie.ntu.edu.tw/~cjlin/libsvm/%{name}-%{fileversion}.tar.gz
Patch0: libsvm-java8.patch
Patch1: libsvm-reproducible-jar-mtime.patch
BuildRequires: %{python_module devel}
BuildRequires: gcc-c++
@@ -97,7 +96,6 @@ This package contains the Java bindings for libsvm.
%prep
%setup -n %{name}-%{fileversion}
%patch -P 0 -p1
# The "--date" option was added into jar in OpenJDK 17
%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 17}%{!?pkg_vcmp:0}
%patch -P 1 -p1
@@ -128,8 +126,8 @@ install -m 755 ./tools/grid.py %{buildroot}%{_bindir}/svm-grid
install -m 755 ./tools/subset.py %{buildroot}%{_bindir}/svm-subset
install -m 755 ./tools/easy.py %{buildroot}%{_bindir}/svm-easy
install -m 644 svm.h %{buildroot}%{_includedir}/libsvm/
install -m 755 libsvm.so.3 %{buildroot}%{_libdir}
ln -s %{_libdir}/libsvm.so.3 %{buildroot}%{_libdir}/libsvm.so
install -m 755 libsvm.so.4 %{buildroot}%{_libdir}
ln -s %{_libdir}/libsvm.so.4 %{buildroot}%{_libdir}/libsvm.so
mv ./python/README README-python
mv ./tools/README README-python-tools
@@ -156,7 +154,7 @@ install -m 755 ./java/%{name}.jar %{buildroot}%{_javadir}/%{name}.jar
%files -n %{libname}
%license COPYRIGHT
%{_libdir}/libsvm.so.3
%{_libdir}/libsvm.so.4
%files devel
%{_includedir}/libsvm