Compare commits
No commits in common. "factory" and "factory" have entirely different histories.
3
hugin-2023.0.0.tar.bz2
Normal file
3
hugin-2023.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:04a39fccc6017e0544c639bd22309472c574d35b3455cbade1fc3870e631632b
|
||||
size 10336322
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13ec0cdeeb4eb63149c833768d3e374e7cf5a6a8d8d02d50885ce496f05ba7e4
|
||||
size 10352250
|
17
hugin-deprecated-copy_option.patch
Normal file
17
hugin-deprecated-copy_option.patch
Normal file
@ -0,0 +1,17 @@
|
||||
diff -r 4b55f17c4e72 -r 4d081490b48a src/hugin_base/hugin_utils/filesystem.h
|
||||
--- a/src/hugin_base/hugin_utils/filesystem.h Tue Mar 12 17:27:29 2024 +0100
|
||||
+++ b/src/hugin_base/hugin_utils/filesystem.h Tue Mar 12 17:27:57 2024 +0100
|
||||
@@ -64,6 +64,12 @@
|
||||
#endif
|
||||
#include <boost/filesystem.hpp>
|
||||
namespace fs = boost::filesystem;
|
||||
- #define OVERWRITE_EXISTING boost::filesystem::copy_option::overwrite_if_exists
|
||||
+ #if BOOST_VERSION>=107400
|
||||
+ // in Boost 1.74 and later filesystem::copy_option is deprecated
|
||||
+ // use filesystem::copy_options instead
|
||||
+ #define OVERWRITE_EXISTING boost::filesystem::copy_options::overwrite_existing
|
||||
+ #else
|
||||
+ #define OVERWRITE_EXISTING boost::filesystem::copy_option::overwrite_if_exists
|
||||
+ #endif
|
||||
#endif
|
||||
#endif // _HUGIN_UTILS_FILESYSTEM_H
|
@ -1,20 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 22 20:42:25 UTC 2024 - Joshua Smith <smolsheep@opensuse.org>
|
||||
|
||||
- Update to version 2024.0.1:
|
||||
* Removed more event tables and replaced with Bind calls
|
||||
* Fixes missing include for older wxWidgets version (3.1 series)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 16 03:51:28 UTC 2024 - Joshua Smith <smolsheep@opensuse.org>
|
||||
|
||||
- Remove hugin-deprecated-copy_option.patch -- Fixed upstream
|
||||
- Update to version 2024.0.0:
|
||||
* Added browser for project files to Hugin. It can show
|
||||
thumbnails or project details of all project files in a
|
||||
directory.
|
||||
* Create GPano tags also for cylindrical output projection.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 25 09:53:30 UTC 2024 - pgajdos@suse.com
|
||||
|
||||
|
@ -16,14 +16,14 @@
|
||||
#
|
||||
|
||||
|
||||
%define mversion 2024.0
|
||||
%define mversion 2023.0
|
||||
%bcond_with hsi
|
||||
%bcond_without system_flann
|
||||
%bcond_without lapack
|
||||
# Cannot use EGL unless glew bug https://github.com/nigels-com/glew/issues/315 is fixed
|
||||
%bcond_with egl
|
||||
Name: hugin
|
||||
Version: %{mversion}.1
|
||||
Version: %{mversion}.0
|
||||
Release: 0
|
||||
Summary: Toolchain for Stitching of Images and Creating Panoramas
|
||||
License: GPL-2.0-or-later
|
||||
@ -31,6 +31,8 @@ Group: Productivity/Graphics/Other
|
||||
URL: http://hugin.sourceforge.net/
|
||||
Source: https://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{mversion}/%{name}-%{version}.tar.bz2
|
||||
Patch0: hugin.appdata.patch
|
||||
# 8684:4d081490b48a
|
||||
Patch1: hugin-deprecated-copy_option.patch
|
||||
BuildRequires: Mesa-devel
|
||||
BuildRequires: OpenEXR-devel
|
||||
BuildRequires: cmake >= 3.1.0
|
||||
@ -82,7 +84,7 @@ chromatic abberation, create HDR images, provide automatic feature
|
||||
detection and extraction of key points.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{name}-%{version}
|
||||
%autosetup -p1
|
||||
|
||||
chmod -x AUTHORS authors.txt Changes.txt README COPYING.txt
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user