## START: Set by rpmautospec ## (rpmautospec version 0.7.3) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: release_number = 1; base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); print(release_number + base_release_number - 1); }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} ## END: Set by rpmautospec # https://github.com/pioneerspacesim/pioneer/issues/3846 ExclusiveArch: %{ix86} x86_64 %global fontlicense OFL-1.1 %global fontlicenses licenses/SIL-1.1.txt %global common_description %{expand: This font is generated and used by Pioneer package} %global fontfamily1 Inpionata %global fontsummary1 Pioneer Inpionata font %global fonts1 data/fonts/Inpionata.ttf %global fontdescription1 %{expand: %{common_description}.} %global fontpkgheader1 %{expand: Obsoletes: %{name}-inpionata-fonts < %{version}-%{release} } %global fontfamily2 Orbiteer Bold %global fontsummary2 Pioneer Orbiteer Bold font %global fonts2 data/fonts/Orbiteer-Bold.ttf %global fontdescription2 %{expand: %{common_description}.} %global fontpkgheader2 %{expand: Obsoletes: %{name}-orbiteer-bold-fonts < %{version}-%{release} } %global fontfamily3 PionilliumText22L Medium %global fontsummary3 Pioneer PionilliumText22L Medium font %global fonts3 data/fonts/PionilliumText22L-Medium.ttf %global fontdescription3 %{expand: %{common_description}.} %global fontpkgheader3 %{expand: Obsoletes: %{name}-pionilliumtext22l-medium-fonts < %{version}-%{release} } # Filter private libraries %global __provides_exclude ^(%%(find %{buildroot}%{_libdir}/%{name} -name '*.so' | xargs -n1 basename | sort -u | paste -s -d '|' -)) %global __requires_exclude ^(%%(find %{buildroot}%{_libdir}/%{name} -name '*.so' | xargs -n1 basename | sort -u | paste -s -d '|' -)) # %global use_autotools 0 %global use_intermediate 0 %if 0%{?use_intermediate} %global commit cd91559f6e6ab1bf42a6270c0826e4ea5f2d3f29 %global date .20230301git %global shortcommit %(c=%{commit}; echo ${c:0:7}) %else %global commit %{nil} %global date %{nil} %global shortcommit %{nil} %endif ## This package uses an own miniz.h file. ## Upstream: taken from http://miniz.googlecode.com/svn/trunk/miniz.c. I've cut this into ## header and implementation files and disabled (via define) some interfaces that ## we don't need: # - MINIZ_NO_ARCHIVE_WRITING_APIS # - MINIZ_NO_ZLIB_COMPATIBLE_NAMES Name: pioneer Summary: A game of lonely space adventure Version: 20250203 Release: %autorelease ## Main license: GPLv3 ## Dejavu font license: Bitstream Vera and Public Domain ## The file scripts/ShipPlanner015.py: GPLv2+ ## contrib/lz4: BSD 2-Clause License: GPL-3.0-only AND GPL-2.0-or-later AND Bitstream-Vera AND LicenseRef-Fedora-Public-Domain AND BSD-2-Clause URL: http://pioneerspacesim.net/ #Source0: https://github.com/pioneerspacesim/%%{name}/archive/%%{commit}/%%{name}-%%{version}.tar.gz Source0: https://github.com/pioneerspacesim/%{name}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: make %if 0%{?use_autotools} BuildRequires: autoconf BuildRequires: automake %else BuildRequires: cmake %endif BuildRequires: chrpath BuildRequires: desktop-file-utils BuildRequires: doxygen BuildRequires: fontpackages-devel BuildRequires: gcc, gcc-c++ BuildRequires: graphviz BuildRequires: ImageMagick BuildRequires: pkgconfig BuildRequires: pkgconfig(vorbis) BuildRequires: pkgconfig(sigc++-2.0) BuildRequires: pkgconfig(libcurl) BuildRequires: pkgconfig(SDL2_image) BuildRequires: pkgconfig(freetype2) BuildRequires: pkgconfig(libpng) BuildRequires: assimp-devel >= 3.2 BuildRequires: mesa-libGLU-devel BuildRequires: NaturalDocs BuildRequires: desktop-file-utils BuildRequires: libappstream-glib Requires: %{name}-data = %{version}-%{release} Requires: hicolor-icon-theme Requires: graphviz%{?_isa} Obsoletes: %{name}-doc < 0:20191117-3 Provides: bundled(fmt) = 6.2.1 # I prefer to install binary files manually Patch0: %{name}-use_manual_installation.patch Patch1: %{name}-gcc14.patch Patch2: %{name}-fix_GCC15.patch %fontpkg -a %description A space adventure game set in the Milky Way galaxy at the turn of the 31st century. The game is open-ended, and you are free to explore the millions of star systems in the game. You can land on planets, slingshot past gas giants, and burn yourself to a crisp flying between binary star systems. You can try your hand at piracy, make your fortune trading between systems, or do missions for the various factions fighting for power, freedom or self-determination. #################### %package data Summary: Data files of %{name} BuildArch: noarch BuildRequires: fontconfig BuildRequires: dejavu-sans-fonts BuildRequires: dejavu-sans-mono-fonts Requires: wqy-microhei-fonts Requires: dejavu-sans-fonts Requires: dejavu-sans-mono-fonts %description data Data files of %{name}. %prep %autosetup -n %{name}-%{version} -N %patch -P 0 -p1 -b .backup %patch -P 1 -p1 -b .backup %patch -P 2 -p1 -b .backup %build %if 0%{?use_autotools} ./bootstrap %configure --disable-silent-rules --with-ccache --without-strip \ --with-version --with-extra-version --without-extra-warnings \ --without-thirdparty --without-external-liblua --with-no-optimise \ PIONEER_DATA_DIR=%{_datadir}/%{name}/data %make_build V=1 OPTIMISE="" %else mkdir -p build %cmake -B build -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_VERBOSE_MAKEFILE:BOOL=TRUE \ -DPROJECT_VERSION_INFO:STRING=%{version} \ -DUSE_SYSTEM_LIBLUA:BOOL=OFF \ -DUSE_SYSTEM_LIBGLEW:BOOL=OFF \ -DPIONEER_DATA_DIR:PATH=%{_datadir}/%{name}/data -DFMT_INSTALL:BOOL=ON \ -DCMAKE_INSTALL_LIBDIR:PATH=%{_lib}/%{name} %make_build -C build all build-data %endif ## Build documentation #pushd doxygen #doxygen #popd %fontbuild -a %install %if 0%{?use_autotools} %make_install %else %make_install -C build %endif # Install binary files manually mkdir -p %{buildroot}%{_bindir} install -pm 755 build/pioneer %{buildroot}%{_bindir}/ install -pm 755 build/modelcompiler %{buildroot}%{_bindir}/ install -pm 755 build/savegamedump %{buildroot}%{_bindir}/ ## Use rpaths versus private libraries chrpath -r %{_libdir}/%{name} %{buildroot}%{_bindir}/* # Remove unused development files rm -rf %{buildroot}%{_includedir} rm -rf %{buildroot}%{_libdir}/pioneer/cmake rm -rf %{buildroot}%{_libdir}/pioneer/pkgconfig ## Install icons mkdir -p %{buildroot}%{_datadir}/icons/%{name} install -pm 644 application-icon/*.ico %{buildroot}%{_datadir}/icons/%{name} mkdir -p %{buildroot}%{_datadir}/icons/hicolor/scalable/apps install -pm 644 application-icon/badge-* %{buildroot}%{_datadir}/icons/hicolor/scalable/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/16x16/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/22x22/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/24x24/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/40x40/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/48x48/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/64x64/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/128x128/apps mkdir -p %{buildroot}%{_datadir}/icons/hicolor/256x256/apps install -Dpm 644 application-icon/pngs/%{name}-16x16.png %{buildroot}%{_datadir}/icons/hicolor/16x16/apps install -Dpm 644 application-icon/pngs/%{name}-22x22.png %{buildroot}%{_datadir}/icons/hicolor/22x22/apps install -Dpm 644 application-icon/pngs/%{name}-24x24.png %{buildroot}%{_datadir}/icons/hicolor/24x24/apps install -Dpm 644 application-icon/pngs/%{name}-32x32.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps install -Dpm 644 application-icon/pngs/%{name}-40x40.png %{buildroot}%{_datadir}/icons/hicolor/40x40/apps install -Dpm 644 application-icon/pngs/%{name}-48x48.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps install -Dpm 644 application-icon/pngs/%{name}-64x64.png %{buildroot}%{_datadir}/icons/hicolor/64x64/apps install -Dpm 644 application-icon/pngs/%{name}-128x128.png %{buildroot}%{_datadir}/icons/hicolor/128x128/apps install -Dpm 644 application-icon/pngs/%{name}-256x256.png %{buildroot}%{_datadir}/icons/hicolor/256x256/apps ## Modifing of desktop file # Converting to utf-8 for file in %{buildroot}%{_datadir}/applications/net.pioneerspacesim.Pioneer.desktop ; do iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \ touch -r $file $file.new && \ mv $file.new $file done # Renaming and editing mv %{buildroot}%{_datadir}/applications/net.pioneerspacesim.Pioneer.desktop %{buildroot}%{_datadir}/applications/pioneer.desktop desktop-file-edit \ --set-icon=%{_datadir}/icons/hicolor/64x64/apps/%{name}-64x64.png \ --set-key=Exec --set-value="env force_s3tc_enable=true SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS=0 pioneer" \ --set-key=StartupNotify --set-value=false \ %{buildroot}%{_datadir}/applications/pioneer.desktop ## Change and edit of appdata file mv %{buildroot}%{_metainfodir}/net.pioneerspacesim.Pioneer.metainfo.xml %{buildroot}%{_metainfodir}/pioneer.metainfo.xml sed -i 's|net.pioneerspacesim.Pioneer.desktop|pioneer.desktop|' %{buildroot}%{_metainfodir}/pioneer.metainfo.xml sed -i 's|net.pioneerspacesim.Pioneer|pioneer.desktop|' %{buildroot}%{_metainfodir}/pioneer.metainfo.xml appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/pioneer.metainfo.xml ## Remove empty directories find %{buildroot} -name '.gitignore' -exec rm -rf {} ';' ## Unbundle DejaVuSans.ttf, DejaVuSansMono.ttf and wqy-microhei.ttc ln -sf $(fc-match -f "%{file}" "wenquanyimicrohei") %{buildroot}%{_datadir}/%{name}/data/fonts/wqy-microhei.ttc ln -sf $(fc-match -f "%{file}" "dejavusansmono") %{buildroot}%{_datadir}/%{name}/data/fonts/DejaVuSansMono.ttf ln -sf $(fc-match -f "%{file}" "dejavusans") %{buildroot}%{_datadir}/%{name}/data/fonts/DejaVuSans.ttf # Install Pioneer fonts and link to to the Fedora Fonts Packaging paths %fontinstall -a ln -sf %{_datadir}/fonts/inpionata-fonts/Inpionata.ttf %{buildroot}%{_datadir}/%{name}/data/fonts/Inpionata.ttf ln -sf %{_datadir}/fonts/orbiteer-fonts/Orbiteer-Bold.ttf %{buildroot}%{_datadir}/%{name}/data/fonts/Orbiteer-Bold.ttf ln -sf %{_datadir}/fonts/pionilliumtext22l-fonts/PionilliumText22L-Medium.ttf %{buildroot}%{_datadir}/%{name}/data/fonts/PionilliumText22L-Medium.ttf %check %fontcheck %fontfiles -a %files %{_bindir}/%{name} #%%{_libdir}/%%{name}/ %{_bindir}/modelcompiler %{_bindir}/savegamedump %{_datadir}/icons/hicolor/16x16/apps/*.png %{_datadir}/icons/hicolor/22x22/apps/*.png %{_datadir}/icons/hicolor/24x24/apps/*.png %{_datadir}/icons/hicolor/32x32/apps/*.png ## Following directories are not owned by hicolor-icon-theme %dir %{_datadir}/icons/hicolor/40x40 %dir %{_datadir}/icons/hicolor/40x40/apps ## %{_datadir}/icons/hicolor/40x40/apps/*.png %{_datadir}/icons/hicolor/48x48/apps/*.png %{_datadir}/icons/hicolor/64x64/apps/*.png %{_datadir}/icons/hicolor/128x128/apps/*.png %{_datadir}/icons/hicolor/256x256/apps/*.png %{_datadir}/icons/hicolor/scalable/apps/*.svg %{_datadir}/icons/%{name}/ %{_datadir}/applications/*.desktop %{_metainfodir}/*.metainfo.xml %files data %license licenses/*.txt # Image Use Policy - NASA Spitzer Space Telescope %doc AUTHORS.txt Changelog.txt Quickstart.txt README.md %{_datadir}/%{name}/ %changelog ## START: Generated by rpmautospec * Mon Feb 03 2025 Antonio Trande - 20250203-1 - Release 20250203 * Mon Jan 20 2025 Antonio Trande - 20240710-9 - Fifth update of GCC15 patch * Mon Jan 20 2025 Antonio Trande - 20240710-8 - Fourth update of GCC15 patch * Sun Jan 19 2025 Antonio Trande - 20240710-7 - Third update of GCC15 patch * Sun Jan 19 2025 Antonio Trande - 20240710-6 - Fix malformed patch * Sun Jan 19 2025 Antonio Trande - 20240710-5 - Second update of GCC15 patch * Sun Jan 19 2025 Antonio Trande - 20240710-4 - Update GCC15 patch * Sun Jan 19 2025 Antonio Trande - 20240710-3 - Fix GCC15 builds * Sat Jan 18 2025 Fedora Release Engineering - 20240710-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Mon Jul 22 2024 Gwyn Ciesla - 20240710-1 - 2024-07-10 * Fri Jul 19 2024 Fedora Release Engineering - 20240314-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Fri Mar 29 2024 Antonio Trande - 20240314-9 - Avoid HTML files build * Fri Mar 29 2024 Antonio Trande - 20240314-8 - Set OFL-1.1 license file * Thu Mar 28 2024 Antonio Trande - 20240314-7 - Further improvement of fonts installation * Thu Mar 28 2024 Antonio Trande - 20240314-6 - Fix missing installation of the fonts * Wed Mar 20 2024 Antonio Trande - 20240314-5 - Remove font descriptions * Wed Mar 20 2024 Antonio Trande - 20240314-4 - Add Obsoletes tags * Wed Mar 20 2024 Antonio Trande - 20240314-3 - Fix rhbz#2270044 * Sun Mar 17 2024 Antonio Trande - 20240314-2 - Update GCC-14 patch * Sat Mar 16 2024 Antonio Trande - 20240314-1 - Release 20240314 * Fri Feb 09 2024 Antonio Trande - 20240203-5 - Fix for GCC-14 * Fri Feb 09 2024 Antonio Trande - 20240203-4 - Modify DATADIR path * Thu Feb 08 2024 Antonio Trande - 20240203-3 - Fix PionilliumText22L-Medium.ttf's path * Thu Feb 08 2024 Antonio Trande - 20240203-2 - Fix data/fonts paths * Thu Feb 08 2024 Antonio Trande - 20240203-1 - Release 20240203 * Thu Jan 25 2024 Fedora Release Engineering - 20230203-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Sun Jan 21 2024 Fedora Release Engineering - 20230203-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Fri Jul 21 2023 Fedora Release Engineering - 20230203-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Tue Mar 21 2023 Antonio Trande - 20230203-7 - Bugfix build release (rhbz#2174394) * Wed Mar 01 2023 Antonio Trande - 20230203-6 - Bugfix release (rhbz#2174394) * Sat Feb 04 2023 Antonio Trande - 20230203-5 - Release 20230203 | Patched for upstream bug 5527 * Fri Feb 03 2023 Antonio Trande - 20230203-4 - Release 20230203 | Bundle glew * Fri Feb 03 2023 Antonio Trande - 20230203-3 - Release 20230203 | Revert last change * Fri Feb 03 2023 Antonio Trande - 20230203-2 - Release 20230203 | Unbundle Lua * Fri Feb 03 2023 Antonio Trande - 20230203-1 - Release 20230203 * Fri Jan 20 2023 Fedora Release Engineering - 20220203-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Fri Jul 22 2022 Fedora Release Engineering - 20220203-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild * Thu May 26 2022 Antonio Trande - 20220203-4 - Use bundled GLEW * Mon May 23 2022 Antonio Trande - 20220203-3 - Rebuild * Thu Feb 10 2022 Orion Poplawski - 20220203-2 - Rebuild for glew 2.2 * Sat Feb 05 2022 Antonio Trande - 20220203-1 - Release 20220203 * Fri Jan 21 2022 Fedora Release Engineering - 20210723-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Fri Sep 10 2021 Antonio Trande - 20210723-4 - Expand build options (rhbz#2002768, upstream bug #5138) * Sun Aug 01 2021 Rich Mattes - 20210723-3 - Rebuild for assimp-5.0.1 * Fri Jul 23 2021 Antonio Trande - 20210723-2 - Fix Changelog| Release 20210723 * Fri Jul 23 2021 Antonio Trande - 20210723-1 - Release 20210203 * Fri Jul 23 2021 Fedora Release Engineering - 20210203-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Wed Feb 03 2021 Antonio T - 20210203-1 - Release 20210203 * Wed Jan 27 2021 Fedora Release Engineering - 20201222-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Fri Jan 22 2021 Antonio T - 20201222-12 - Undo latest changes * Fri Jan 22 2021 Antonio T - 20201222-11 - Fix font package macros * Sat Jan 09 2021 Tom Stellard - 20201222-10 - Add BuildRequires: make * Mon Dec 28 2020 Antonio T - 20201222-9 - Bundle fmt-6.2.1 (rhbz#1911071) * Mon Dec 28 2020 Antonio T - 20201222-8 - Change filtering method (rhbz#1911071) * Mon Dec 28 2020 Antonio T - 20201222-7 - Use rpaths * Sun Dec 27 2020 Antonio T - 20201222-6 - Install bundled private libraries (rhbz#1911071) /2 * Sun Dec 27 2020 Antonio T - 20201222-5 - Install bundled private libraries (rhbz#1911071) * Sun Dec 27 2020 Antonio T - 20201222-4 - Remove some bundled libraries * Tue Dec 22 2020 Antonio T - 20201222-3 - Release 20201222-rc1| Fix Make option * Tue Dec 22 2020 Antonio T - 20201222-2 - Release 20201222-rc1| Fix CMake option * Tue Dec 22 2020 Antonio T - 20201222-1 - Release 20201222-rc1 * Sat Aug 01 2020 sagitter - 20200203-6 - Enable cmake_in_source_build * Sat Aug 01 2020 Fedora Release Engineering - 20200203-5 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Tue Jul 28 2020 Fedora Release Engineering - 20200203-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Thu May 14 2020 sagitter - 20200203-3 - Fix fonts BR packages (rhbz#1835506) * Thu May 14 2020 sagitter - 20200203-2 - Conform fonts symlinks to the new paths (rhbz#1835506) * Mon Feb 03 2020 sagitter - 20200203-1 - Release 20200203 * Thu Jan 30 2020 sagitter - 20191117-3 - Move HTML documentation into main package * Thu Jan 30 2020 Fedora Release Engineering - 20191117-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Sun Nov 17 2019 sagitter - 20191117-1 - Release 20191117 * Thu Oct 10 2019 sagitter - 20191009-2 - Add SDL env variable to desktop's Exec command (rhbz#1759866) * Wed Oct 09 2019 sagitter - 20191009-1 - Release 20191009 * Fri Jul 26 2019 Fedora Release Engineering - 20190203-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Wed Apr 24 2019 sagitter - 20190203-4 - Bugfix (upstream #4566) * Sat Mar 09 2019 sagitter - 20190203-3 - Bugfix (upstream #4555) + new features * Sun Feb 03 2019 sagitter - 20190203-2 - Modify installation of desktop/application files * Sun Feb 03 2019 sagitter - 20190203-1 - Release 20190203 * Sat Feb 02 2019 Fedora Release Engineering - 20181223-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Sat Jan 05 2019 sagitter - 20181223-8 - Fix appdata file * Sat Jan 05 2019 sagitter - 20181223-7 - Set Exec key * Sat Jan 05 2019 sagitter - 20181223-6 - Fix desktop file again * Fri Jan 04 2019 sagitter - 20181223-5 - Fix desktop file * Fri Jan 04 2019 sagitter - 20181223-4 - Fix desktop file installation * Fri Jan 04 2019 sagitter - 20181223-3 - List savegamedump binary file * Fri Jan 04 2019 sagitter - 20181223-2 - Fix wrong command * Fri Jan 04 2019 sagitter - 20181223-1 - Release 20181223 * Wed Sep 05 2018 sagitter - 20180203-5 - Remove Group tag * Fri Jul 13 2018 Fedora Release Engineering - 20180203-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Thu Feb 22 2018 sagitter - 20180203-3 - Add gcc gcc-c++ BR * Fri Feb 09 2018 Fedora Release Engineering - 20180203-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Sun Feb 04 2018 Gwyn Ciesla - 20180203-1 - 20180203 * Thu Jan 18 2018 Igor Gnatenko - 20171001-3 - Remove obsolete scriptlets * Thu Dec 21 2017 sagitter - 20171001-2 - Appdata file moved into metainfo data directory * Sun Oct 01 2017 sagitter - 20171001-1 - Update to 20171001 * Tue Aug 29 2017 sagitter - 20170827-2 - Exclude stripping of PNG files (bz#1486399) * Sun Aug 27 2017 sagitter - 20170827-1 - Update to 20170827 * Mon Aug 14 2017 Gwyn Ciesla - 20170813-1 - 20170813 * Thu Aug 03 2017 Fedora Release Engineering - 20170415-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 20170415-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Mon Apr 17 2017 Gwyn Ciesla - 20170415-1 - 20170415 * Mon Mar 06 2017 Jon Ciesla - 20170304-2 - Fix BR. * Mon Mar 06 2017 Jon Ciesla - 20170304-1 - 20170304 * Sat Feb 11 2017 Fedora Release Engineering - 20161129-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Fri Jan 06 2017 sagitter - 20161129-3 - Use icon with size 64x64 * Fri Jan 06 2017 sagitter - 20161129-2 - Set desktop icon * Fri Dec 02 2016 Jon Ciesla - 20161129-1 - 20161129 * Thu Nov 10 2016 sagitter - 20161110-1 - Update to the version 20161110 * Mon Oct 31 2016 sagitter - 20161028-1 - Update to the version 20161028 (Bug fixes) * Wed Oct 26 2016 sagitter - 20161022-4 - Set ExclusiveArch * Tue Oct 25 2016 sagitter - 20161022-3 - 'sed' patch for AARCH64 builds * Tue Oct 25 2016 sagitter - 20161022-2 - 'sed' patch for AARCH64 builds * Mon Oct 24 2016 Jon Ciesla - 20161022-1 - 20161022 * Thu Oct 13 2016 Jon Ciesla - 20160907-1 - 20160907 * Sun Aug 14 2016 sagitter - 20160814-3 - Fix Source0 * Sun Aug 14 2016 sagitter - 20160814-2 - Update of appdata file * Sun Aug 14 2016 sagitter - 20160814-1 - Update to the version 20160814 * Wed Jul 20 2016 Ben Rosser - 20160710-2 - Update sources file. * Wed Jul 20 2016 Ben Rosser - 20160710-1 - Update to 20160710, fix Source0. * Sat Jul 09 2016 sagitter - 20160701-2 - Fix typos in the appdata file. * Sat Jul 09 2016 sagitter - 20160701-1 - Update to release 20160701 * Fri Jun 03 2016 sagitter - 20160512-3 - Patched for aarch64 build * Thu Jun 02 2016 sagitter - 20160512-2 - assimp libraries linked manually * Mon May 30 2016 sagitter - 20160512-1 - New package (bz#1339158) ## END: Generated by rpmautospec