Compare commits
No commits in common. "rawhide" and "f40" have entirely different histories.
6 changed files with 77 additions and 141 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (ugene-free-53.0.tar.gz) = 233c857d9a0ea42005efaa53e5ba5162e76a149f01d7406a73bd9215b96c096b3c379cc3b14c7d7b83c61df5ea2435412f6d43c71aef84b23d1d683d5a172b30
|
||||
SHA512 (ugene-free-52.0.tar.gz) = c624380f2631c20e3fc66f98915755835e07b099dc4fc0e944df292bf88f352c497063e097ef859b0273ec790d323eaa2d1348fc6d9d76003ec5d4a12e9c7eb2
|
||||
|
|
|
|||
10
ugene-47.x-has-sse-i686.patch
Normal file
10
ugene-47.x-has-sse-i686.patch
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
--- ugene-47.x/src/ugene_globals.pri.i386 2023-07-20 19:37:10.106204731 +0900
|
||||
+++ ugene-47.x/src/ugene_globals.pri 2023-07-20 22:31:43.266627766 +0900
|
||||
@@ -168,6 +168,7 @@ defineTest( target_platform_has_sse ) {
|
||||
contains(QMAKE_TARGET.arch, x86_64) : return (true)
|
||||
# This check works on Linux & Mac.
|
||||
contains(QMAKE_HOST.arch, x86_64) : return (true)
|
||||
+ contains(QMAKE_HOST.arch, i686) : return (true)
|
||||
return (false)
|
||||
}
|
||||
|
||||
11
ugene-51.0-c23-function-proto.patch
Normal file
11
ugene-51.0-c23-function-proto.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- ugene-51.0/src/plugins_3rdparty/primer3/src/primer3_core/read_boulder.c.debug 2024-09-22 03:28:25.000000000 +0900
|
||||
+++ ugene-51.0/src/plugins_3rdparty/primer3/src/primer3_core/read_boulder.c 2025-01-17 18:49:24.635201074 +0900
|
||||
@@ -104,7 +104,7 @@ static const char *pr_program_name = "TM
|
||||
* undeclared functions; only those with non-int return types.)
|
||||
*/
|
||||
#ifndef __cplusplus
|
||||
-extern double strtod();
|
||||
+extern double strtod(const char *, char **);
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
diff --git a/src/corelibs/U2Gui/src/util/RegionSelectorController.cpp b/src/corelibs/U2Gui/src/util/RegionSelectorController.cpp
|
||||
index f052b9122..d0fdfeb0d 100644
|
||||
--- a/src/corelibs/U2Gui/src/util/RegionSelectorController.cpp
|
||||
+++ b/src/corelibs/U2Gui/src/util/RegionSelectorController.cpp
|
||||
@@ -339,7 +339,7 @@ void RegionSelectorController::connectSlots() {
|
||||
|
||||
connect(gui.startLineEdit, &QLineEdit::textEdited, this, &RegionSelectorController::sl_onRegionChanged);
|
||||
connect(gui.endLineEdit, &QLineEdit::textEdited, this, &RegionSelectorController::sl_onRegionChanged);
|
||||
- connect(gui.presetsComboBox, &QComboBox::activated, this, &RegionSelectorController::sl_onPresetChanged);
|
||||
+ connect(gui.presetsComboBox, QOverload<int>::of(&QComboBox::activated), this, &RegionSelectorController::sl_onPresetChanged);
|
||||
|
||||
if (settings.selection != nullptr) {
|
||||
connect(settings.selection, SIGNAL(si_onSelectionChanged(GSelection*)), SLOT(sl_onSelectionChanged(GSelection*)));
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
diff --git a/src/libs_3rdparty/qtscript/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h b/src/libs_3rdparty/qtscript/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
|
||||
index a4695a261..ec063f1ee 100644
|
||||
--- a/src/libs_3rdparty/qtscript/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
|
||||
+++ b/src/libs_3rdparty/qtscript/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h
|
||||
@@ -407,6 +407,13 @@
|
||||
#define WTF_CPU_RISCV32 1
|
||||
#endif
|
||||
|
||||
+/* CPU(IBM z system) */
|
||||
+#if defined(__s390x__) || defined(__s390__)
|
||||
+#define WTF_CPU_S390X 1
|
||||
+#define WTF_CPU_BIG_ENDIAN 1
|
||||
+#endif
|
||||
+
|
||||
+
|
||||
/* ==== OS() - underlying operating system; only to be used for mandated low-level services like
|
||||
virtual memory, not to choose a GUI toolkit ==== */
|
||||
|
||||
@@ -960,6 +967,8 @@
|
||||
#if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
|
||||
#if (CPU(X86_64) && !CPU(X32) && (OS(UNIX) || OS(WINDOWS) || OS(SOLARIS) || OS(HPUX))) || (CPU(IA64) && !CPU(IA64_32)) || CPU(ALPHA) || CPU(AIX64) || CPU(SPARC64) || CPU(MIPS64) || CPU(AARCH64) || CPU(RISCV64)
|
||||
#define WTF_USE_JSVALUE64 1
|
||||
+#elif (CPU(S390X))
|
||||
+#define WTF_USE_JSVALUE64 1
|
||||
#elif CPU(ARM) || CPU(PPC64) || CPU(RISCV32)
|
||||
#define WTF_USE_JSVALUE32 1
|
||||
#elif OS(WINDOWS) && COMPILER(MINGW)
|
||||
155
ugene.spec
155
ugene.spec
|
|
@ -2,24 +2,24 @@
|
|||
|
||||
%if 0%{?use_release_branch} < 1
|
||||
# master
|
||||
%global gitdate 20251211
|
||||
%global gitcommit b50ca792f254939978f0ffd3126e3d9ab770a10a
|
||||
%global gitdate 20250122
|
||||
%global gitcommit 9c788569aa7e36b0f07a850ec4f8755d7f6f25b4
|
||||
# New git commit with non-free part removed using "git filter-branch"
|
||||
%global gitcommit_free 7e674061492924b3dfbc884c4c9503ecab9887b2
|
||||
%global gitcommit_free 354100d3f0c6bf05acb796baff8b1860f61cb9d0
|
||||
%else
|
||||
# currently 41.0 branch
|
||||
%global gitdate 20250313
|
||||
%global gitcommit c0dffab5a15e01c026f80cf0a7033b08112a355f
|
||||
%global gitdate 20211117
|
||||
%global gitcommit 2d776cc668bc5019452e25ecc330c88093e75c48
|
||||
# New git commit with non-free part using "git filter-branch"
|
||||
%global gitcommit_free b0631c54cc0603a88793ed5d6ee02dec196b823e
|
||||
%global gitcommit_free f995e33068c5959c1bab249cd04ed3776e9b2d96
|
||||
%endif
|
||||
|
||||
|
||||
%global shortcommit %(c=%{gitcommit}; echo ${c:0:7})
|
||||
%global git_version %{gitdate}git%{shortcommit}
|
||||
|
||||
%global tarballdate 20251211
|
||||
%global tarballtime 2210
|
||||
%global tarballdate 20250124
|
||||
%global tarballtime 1006
|
||||
|
||||
%global use_release 1
|
||||
%global use_gitbare 0
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
%global GIT git
|
||||
%endif
|
||||
|
||||
%global mainver 53.0
|
||||
%global mainver 52.0
|
||||
%undefine prever
|
||||
|
||||
%if 0%{?use_release} >= 1
|
||||
|
|
@ -72,7 +72,7 @@ Source2: create-%{name}-git-bare-tarball.sh
|
|||
# This is not installed
|
||||
Source10: ugene.wrapper
|
||||
Patch1: ugene-49.1-narrowing-for-unsigned-char.patch
|
||||
Patch3: ugene-52.1.x-RegionSelectorController-overload.patch
|
||||
Patch2: ugene-51.0-c23-function-proto.patch
|
||||
# Currently distro-specific
|
||||
Patch102: ugene-44.x-libs_3rdparty-breakpad-sys_mmap_use_system_mmap.patch
|
||||
Patch103: ugene-40.1-libs_3rdparty-breakpad-unwind-nonsupported-arch.patch
|
||||
|
|
@ -80,8 +80,8 @@ Patch104: ugene-47.x-plugins_3rdparty-hmm2-nosse-arch.patch
|
|||
Patch105: ugene-40.1-libs_3rdparty-breakpad-arch-port.patch
|
||||
Patch106: ugene-47.x-git-plgins-smith_waterman-nonsse2-arch.patch
|
||||
Patch107: ugene-40.1-qbswap-bigendian-workaround.patch
|
||||
Patch108: ugene-47.x-has-sse-i686.patch
|
||||
Patch109: ugene-50.x-aarch64-neon-impl-not-yet.patch
|
||||
Patch110: ugene-52.x-s390x-platform-macro.patch
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc-c++
|
||||
|
|
@ -93,7 +93,6 @@ BuildRequires: %{_bindir}/git
|
|||
|
||||
BuildRequires: cmake(Qt5Core)
|
||||
BuildRequires: cmake(Qt5Gui)
|
||||
BuildRequires: cmake(Qt5LinguistTools)
|
||||
BuildRequires: cmake(Qt5Network)
|
||||
BuildRequires: cmake(Qt5NetworkAuth)
|
||||
BuildRequires: cmake(Qt5PrintSupport)
|
||||
|
|
@ -124,6 +123,8 @@ is a designer for custom bioinformatics workflows.
|
|||
%prep
|
||||
%if 0%{?use_release} >= 1
|
||||
%setup -q
|
||||
# Umm...
|
||||
sed -i.desktop ugene.pri -e '\@desktop@s|etc/share/|etc/shared/|'
|
||||
%endif
|
||||
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
|
|
@ -138,8 +139,8 @@ git config user.email "%{name}-maintainers@fedoraproject.org"
|
|||
%endif
|
||||
%patch -P1 -p1 -b .narrow
|
||||
%GIT commit -m "Fix narrowing on arch where default char is unsigned" -a
|
||||
%patch -P3 -p1 -b .include
|
||||
%GIT commit -m "RegionSelectorController: specify overloaded function" -a
|
||||
%patch -P2 -p1 -b .c23
|
||||
%GIT commit -m "Fix for C23 strict function prototype" -a
|
||||
%patch -P102 -p1 -b .sys_mmap -Z
|
||||
%GIT commit -m "libs_3rdparty/breakpad: use C function instead of directly using syscall assemble code" -a
|
||||
%patch -P103 -p1 -b .unwind -Z
|
||||
|
|
@ -152,111 +153,79 @@ git config user.email "%{name}-maintainers@fedoraproject.org"
|
|||
%GIT commit -m "plugins/smith_waterman: support architecture not supporting SSE2" -a
|
||||
%patch -P107 -p1 -b .char_bigen -Z
|
||||
%GIT commit -m "src/corelibs/U2Core et al.: Workaround for Qt qbswap issue on Q_BIG_ENDIAN" -a
|
||||
%patch -P108 -p1 -b .sse_i686 -Z
|
||||
%GIT commit -m "ugene_globals.pri: tell sse2 available also on i686" -a
|
||||
%if 1
|
||||
%patch -P109 -p1 -b .neon -Z
|
||||
%GIT commit -m "neon impl not yet available" -a
|
||||
%endif
|
||||
%patch -P110 -p1 -b .s390x_macro -Z
|
||||
%GIT commit -m "define s390x related macro" -a
|
||||
|
||||
# Kill system-provided 3rd-party libs
|
||||
sed -i CMakeLists.txt \
|
||||
-e '\@add_subdirectory.*libs_3rdparty/sqlite3@d' \
|
||||
-e '\@add_subdirectory.*libs_3rdparty/zlib@d' \
|
||||
%{nil}
|
||||
rm -rf src/libs_3rdparty/{sqlite3,zlib}
|
||||
rm -rf src/include/3rdparty/{sqlite3,zlib}
|
||||
%GIT rm -r -f src/libs_3rdparty/{sqlite3,zlib} || true
|
||||
%GIT rm -r -f src/include/3rdparty/{sqlite3,zlib} || true
|
||||
%GIT commit -m "kill system-provided 3rd-party libs" -a
|
||||
grep -rl --exclude-dir=.git 3rdparty/zlib/zlib.h . | \
|
||||
xargs sed -i 's|3rdparty/zlib/zlib.h|zlib.h|'
|
||||
grep -rl --exclude-dir=.git 3rdparty/sqlite3/sqlite3.h . | \
|
||||
xargs sed -i 's|3rdparty/sqlite3/sqlite3.h|sqlite3.h|'
|
||||
find . -name CMakeLists.txt | \
|
||||
xargs sed -i \
|
||||
-e 's|zlib|z|' \
|
||||
-e 's|ugenedb|sqlite3|' \
|
||||
%{nil}
|
||||
%GIT commit -m "fix system provided header path" -a
|
||||
|
||||
sed -i.nonfree CMakeLists.txt -e '\@add_subdirectory.*plugins_3rdparty/psipred@d'
|
||||
sed -i.nonfree ugene.pro -e '\@plugins_3rdparty/psipred@d'
|
||||
%GIT commit -m "remove nonfree code" -a
|
||||
|
||||
# Remove -Werror
|
||||
sed -i CMakeLists.txt -e '\@" -Werror=@d'
|
||||
%GIT commit -m "remove -Werror" -a
|
||||
|
||||
# Enable some deprecated API
|
||||
sed -i CMakeLists.txt -e '\@QT_DISABLE_DEPRECATED_BEFORE=@s|0x050F00|0x050000|'
|
||||
%GIT commit -m "enable some deprecated API" -a
|
||||
|
||||
%build
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
cd %{name}
|
||||
%endif
|
||||
|
||||
export QT_DIR=%{_libdir}/qt5
|
||||
export LD_LIBRARY_PATH=$(pwd)/%{_vpath_builddir}/dist
|
||||
|
||||
%cmake \
|
||||
-DCMAKE_SKIP_RPATH=TRUE \
|
||||
%{qmake_qt5} -r \
|
||||
PREFIX=%{_libdir}/%{name} \
|
||||
UGENE_EXCLUDE_LIST_ENABLED=1 \
|
||||
UGENE_USE_SYSTEM_SQLITE=1 \
|
||||
UGENE_USE_BUNDLED_ZLIB=0 \
|
||||
UGENE_WITHOUT_NON_FREE=1 \
|
||||
%{nil}
|
||||
%cmake_build
|
||||
|
||||
%make_build -k
|
||||
|
||||
%install
|
||||
LIBAPPDIR=%{_libdir}/%{name}
|
||||
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
cd %{name}
|
||||
%endif
|
||||
make install \
|
||||
INSTALL_ROOT=%{buildroot} \
|
||||
INSTALL="install -p" \
|
||||
%{nil}
|
||||
|
||||
%cmake_install
|
||||
# Some needed files are not installed.....
|
||||
mkdir -p %{buildroot}$LIBAPPDIR
|
||||
cp -a src/_release/* %{buildroot}$LIBAPPDIR
|
||||
rm -f %{buildroot}$LIBAPPDIR/*.a
|
||||
|
||||
# Install all files manually...
|
||||
# 0. Documents
|
||||
cp -a \
|
||||
LICENSE.3rd_party.txt \
|
||||
LICENSE.txt \
|
||||
..
|
||||
|
||||
pushd %_vpath_builddir
|
||||
# 1. manually move files...
|
||||
pushd %{buildroot}
|
||||
rm -f ./$LIBAPPDIR/LICENSE*
|
||||
|
||||
# 1-0 bindir
|
||||
mkdir -p %{buildroot}%{_bindir}
|
||||
install -cpm 0755 %{SOURCE10} %{buildroot}%{_bindir}/%{name}
|
||||
mkdir -p ./%{_bindir}
|
||||
install -cpm 0755 %{SOURCE10} ./%{_bindir}/%{name}
|
||||
|
||||
# 1-1 libraries
|
||||
mkdir -p %{buildroot}%{_libdir}/%{name}
|
||||
cp -a dist/* %{buildroot}%{_libdir}/%{name}/
|
||||
rm -f %{buildroot}%{_libdir}/%{name}/*.a
|
||||
# 1-1 data files
|
||||
mkdir -p ./%{_datadir}/%{name}/
|
||||
mv ./$LIBAPPDIR/data ./%{_datadir}/%{name}
|
||||
ln -sf ../../../%{_datadir}/%{name} ./$LIBAPPDIR/data
|
||||
|
||||
# Back to the top directory
|
||||
popd
|
||||
|
||||
# 1-2 data files
|
||||
mkdir -p %{buildroot}%{_datadir}/%{name}/
|
||||
cp -a data %{buildroot}%{_datadir}/%{name}
|
||||
ln -sf ../../../%{_datadir}/%{name}/data %{buildroot}%{_libdir}/%{name}/data
|
||||
|
||||
pushd ./etc/shared
|
||||
# 1-11 hicolor
|
||||
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/mimetypes/
|
||||
cp -p application-x-ugene-ext.png %{buildroot}/%{_datadir}/icons/hicolor/32x32/mimetypes/
|
||||
mkdir -p ./%{_datadir}/icons/hicolor/32x32/mimetypes/
|
||||
mv ./$LIBAPPDIR/application-x-ugene-ext.png ./%{_datadir}/icons/hicolor/32x32/mimetypes/
|
||||
|
||||
# 1-12 mime
|
||||
mkdir -p %{buildroot}%{_datadir}/mime/packages
|
||||
cp -p application-x-ugene.xml %{buildroot}/%{_datadir}/mime/packages
|
||||
mkdir -p ./%{_datadir}/mime/packages
|
||||
mv ./$LIBAPPDIR/application-x-ugene.xml ./%{_datadir}/mime/packages
|
||||
|
||||
# 1-13 man file
|
||||
mkdir -p %{buildroot}%{_mandir}/man1
|
||||
cp -p %{name}.1* %{buildroot}/%{_mandir}/man1
|
||||
mkdir -p ./%{_mandir}/man1
|
||||
mv ./$LIBAPPDIR/%{name}.1* ./%{_mandir}/man1
|
||||
|
||||
# 1-14 desktop files
|
||||
mkdir -p %{buildroot}%{_datadir}/applications/
|
||||
cp -p %{name}.desktop %{buildroot}/%{_datadir}/applications/
|
||||
mkdir -p ./%{_datadir}/applications/
|
||||
mv ./$LIBAPPDIR/%{name}.desktop ./%{_datadir}/applications/
|
||||
|
||||
# 1-15 icons
|
||||
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
||||
cp -p %{name}.{png,xpm} %{buildroot}%{_datadir}/pixmaps
|
||||
mkdir -p ./%{_datadir}/pixmaps
|
||||
mv ./$LIBAPPDIR/%{name}.{png,xpm} ./%{_datadir}/pixmaps
|
||||
popd
|
||||
|
||||
%check
|
||||
|
|
@ -276,8 +245,6 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
|||
%{_libdir}/%{name}/plugins/*.plugin
|
||||
%{_libdir}/%{name}/plugins/lib*.so
|
||||
|
||||
%{_libdir}/%{name}/transl_*.qm
|
||||
|
||||
%{_libdir}/%{name}/%{name}
|
||||
%{_libdir}/%{name}/%{name}cl
|
||||
%{_libdir}/%{name}/%{name}m
|
||||
|
|
@ -296,18 +263,6 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
|||
%{_mandir}/man1/%{name}.1*
|
||||
|
||||
%changelog
|
||||
* Sun Nov 30 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 53.0-1
|
||||
- 53.0
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 52.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jul 18 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 52.1-2
|
||||
- Fix data files symlink
|
||||
|
||||
* Thu May 08 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 52.1-1
|
||||
- 52.1
|
||||
|
||||
* Fri Jan 24 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 52.0-1
|
||||
- 52.0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue