forked from pool/hugin
Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
e445f8570b | ||
9cc9862e69 | |||
|
ed9e159b90 | ||
3e30f7e408 |
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:04a39fccc6017e0544c639bd22309472c574d35b3455cbade1fc3870e631632b
|
|
||||||
size 10336322
|
|
3
hugin-2024.0.1.tar.bz2
Normal file
3
hugin-2024.0.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:13ec0cdeeb4eb63149c833768d3e374e7cf5a6a8d8d02d50885ce496f05ba7e4
|
||||||
|
size 10352250
|
@ -1,17 +0,0 @@
|
|||||||
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,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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
|
Thu Apr 25 09:53:30 UTC 2024 - pgajdos@suse.com
|
||||||
|
|
||||||
|
@ -16,14 +16,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define mversion 2023.0
|
%define mversion 2024.0
|
||||||
%bcond_with hsi
|
%bcond_with hsi
|
||||||
%bcond_without system_flann
|
%bcond_without system_flann
|
||||||
%bcond_without lapack
|
%bcond_without lapack
|
||||||
# Cannot use EGL unless glew bug https://github.com/nigels-com/glew/issues/315 is fixed
|
# Cannot use EGL unless glew bug https://github.com/nigels-com/glew/issues/315 is fixed
|
||||||
%bcond_with egl
|
%bcond_with egl
|
||||||
Name: hugin
|
Name: hugin
|
||||||
Version: %{mversion}.0
|
Version: %{mversion}.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Toolchain for Stitching of Images and Creating Panoramas
|
Summary: Toolchain for Stitching of Images and Creating Panoramas
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -31,8 +31,6 @@ Group: Productivity/Graphics/Other
|
|||||||
URL: http://hugin.sourceforge.net/
|
URL: http://hugin.sourceforge.net/
|
||||||
Source: https://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{mversion}/%{name}-%{version}.tar.bz2
|
Source: https://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{mversion}/%{name}-%{version}.tar.bz2
|
||||||
Patch0: hugin.appdata.patch
|
Patch0: hugin.appdata.patch
|
||||||
# 8684:4d081490b48a
|
|
||||||
Patch1: hugin-deprecated-copy_option.patch
|
|
||||||
BuildRequires: Mesa-devel
|
BuildRequires: Mesa-devel
|
||||||
BuildRequires: OpenEXR-devel
|
BuildRequires: OpenEXR-devel
|
||||||
BuildRequires: cmake >= 3.1.0
|
BuildRequires: cmake >= 3.1.0
|
||||||
@ -84,7 +82,7 @@ chromatic abberation, create HDR images, provide automatic feature
|
|||||||
detection and extraction of key points.
|
detection and extraction of key points.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%autosetup -p1 -n %{name}-%{version}
|
||||||
|
|
||||||
chmod -x AUTHORS authors.txt Changes.txt README COPYING.txt
|
chmod -x AUTHORS authors.txt Changes.txt README COPYING.txt
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user