File fedoracoin.spec of Package fedoracoin

#
# spec file for package fedoracoin
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

Name:           fedoracoin
Version:        0.6.0
Release:        0
Summary:        P2P digital currency
License:        MIT
Group:          Productivity/Networking/Other
Url:            https://fedoraco.in/
Source0:        %{name}-%{version}.tar.xz
Patch0:         %{name}-boost1.patch
Patch1:         %{name}-boost2.patch
Patch2:         %{name}-net.patch
Patch3:         %{name}-rpcrawtransaction.patch
ExcludeArch:    aarch64
%if 0%{?suse_version} && 0%{?suse_version} > 1320
BuildRequires:  libboost_chrono-devel
BuildRequires:  libboost_filesystem-devel
BuildRequires:  libboost_program_options-devel
BuildRequires:  libboost_system-devel
BuildRequires:  libboost_thread-devel
%else
BuildRequires:  boost-devel
%endif
BuildRequires:  libdb-4_8-devel
BuildRequires:  libminiupnpc-devel
BuildRequires:  qrencode-devel
%if 0%{?suse_version} && 0%{?suse_version} >= 1315
%if 0%{?suse_version} && 0%{?suse_version} > 1320
BuildRequires:  libopenssl-1_0_0-devel
%else
BuildRequires:  libopenssl-devel
%endif
BuildRequires:  libqt5-qtbase-devel
BuildRequires:  libqt5-qttools-devel
%else
BuildRequires:  libqt4-devel
%endif
BuildRequires:  update-desktop-files

%global qt4_version qt
%global qt5_version qt5

%if 0%{?suse_version} && 0%{?suse_version} >= 1315
%define qt_version %{qt5_version}
%define qt_version_obsolete %{qt4_version}
%define ___qmake qmake-%{qt_version}
%else
%define qt_version %{qt4_version}
%define qt_version_obsolete %{qt5_version}
%define ___qmake qmake
%endif

%if 0%{?suse_version} && 0%{?is_opensuse} && 0%{?suse_version} == 1315 && 0%{?sle_version} && 0%{?sle_version} >= 120200
%define ___qmake_cxxflags QMAKE_CXXFLAGS="${QMAKE_CXXFLAGS} -DBOOST_NO_CXX11_SCOPED_ENUMS"
%endif

%if 0%{?suse_version} && 0%{?suse_version} > 1320
%define ___qmake_cxxflags QMAKE_CXXFLAGS="${QMAKE_CXXFLAGS} -DBOOST_ASIO_ENABLE_OLD_SERVICES"
%endif

%if 0%{?suse_version} && 0%{?suse_version} > 1500
%define ___qmake_cxxflags QMAKE_CXXFLAGS="${QMAKE_CXXFLAGS} -std=c++14"
%endif

%define daemon_name %{name}d
%define display_name FedoraCoin
%define gui_name %{name}-qt

%define description_text_1 FedoraCoin is a clone of LiteCoin, using scrypt as a proof-of-work algorithm.
%define description_text_3 - RPC port is 22888, P2P port is 44889 (44890 for testnet)
%define description_text_4 - 1 minute block target, difficulty readjusts every 10 blocks (10 minute difficulty readjustments)
%define description_text_5 - total of 500,000,000,000 coins.
%define description_text_6 - special reward system with random block rewards:
%define description_text_7  -       1 - 100,000: 0 - 5,000,000 FedoraCoin reward
%define description_text_8  - 100,001 - 200,000: 0 - 2,500,000 FedoraCoin reward
%define description_text_9  - 200,001 - 300,000: 0 - 1,250,000 FedoraCoin reward
%define description_text_10  - 300,001 - 400,000: 0 - 625,000 FedoraCoin reward
%define description_text_11  - 400,001 - 500,000: 0 - 312,500 FedoraCoin reward
%define description_text_12  - 500,001 - 600,000: 0 - 156,250 FedoraCoin reward
%define description_text_13  - 600,000+             - 10,000 Reward (flat)

%description
%{description_text_1}

%{description_text_3}
%{description_text_4}
%{description_text_5}
%{description_text_6}
%{description_text_7}
%{description_text_8}
%{description_text_9}
%{description_text_10}
%{description_text_11}
%{description_text_12}
%{description_text_13}

%package %{qt_version}
Summary:        GUI for the %{display_name} crypto-currency
Group:          Productivity/Networking/Other
Obsoletes:      %{name}-%{qt_version_obsolete}

%description %{qt_version}
%{description_text_1}

%{description_text_3}
%{description_text_4}
%{description_text_5}
%{description_text_6}
%{description_text_7}
%{description_text_8}
%{description_text_9}
%{description_text_10}
%{description_text_11}
%{description_text_12}
%{description_text_13}

This package provides %{display_name}-Qt, a GUI for %{display_name} based on Qt.

%package -n %{daemon_name}
Summary:        Headless daemon for %{name} crypto-currency
Group:          Productivity/Networking/Other

%description -n %{daemon_name}
%{description_text_1}

%{description_text_3}
%{description_text_4}
%{description_text_5}
%{description_text_6}
%{description_text_7}
%{description_text_8}
%{description_text_9}
%{description_text_10}
%{description_text_11}
%{description_text_12}
%{description_text_13}

This package provides %{daemon_name}, a headless %{name} daemon.

%prep
%setup -q
%patch2
%if 0%{?suse_version} && 0%{?suse_version} > 1320
%patch0
%patch3
%endif
%if 0%{?suse_version} && 0%{?suse_version} > 1500
%patch1
%endif

%build
%{___qmake} USE_QRCODE=1 USE_DBUS=1 %{?___qmake_cxxflags}
%{__make} %{?_smp_mflags}
%{__strip} -s %{gui_name}
%if 0%{?suse_version} && 0%{?suse_version} > 1320
export CXXFLAGS="${CXXFLAGS} -DBOOST_ASIO_ENABLE_OLD_SERVICES"
%endif
%if 0%{?suse_version} && 0%{?suse_version} > 1500
export CXXFLAGS="${CXXFLAGS} -std=c++14"
%endif
%{__make} -C src -f makefile.unix %{?_smp_mflags}
%{__strip} -s src/%{daemon_name}

%install
%{__install} -dm 0755 %{buildroot}%{_bindir}
%{__install} -m 0755 %{gui_name} %{buildroot}%{_bindir}
%{__install} -m 0755 src/%{daemon_name} %{buildroot}%{_bindir}
%{__install} -dm 0755 %{buildroot}%{_datadir}/pixmaps
%{__install} -m 0644 src/qt/res/icons/bitcoin.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
%suse_update_desktop_file -c %{gui_name} %{display_name} "%{display_name} Wallet" %{gui_name} %{name} Office Finance

%if 0%{?suse_version} && 0%{?suse_version} < 1500
%post %{qt_version}
%desktop_database_post

%postun %{qt_version}
%desktop_database_postun
%endif

%files %{qt_version}
%defattr(-,root,root,-)
%attr(755,root,root) %{_bindir}/%{gui_name}
%{_datadir}/pixmaps/%{name}.png
%{_datadir}/applications/%{gui_name}.desktop
%doc README.md

%files -n %{daemon_name}
%defattr(-,root,root,-)
%attr(755,root,root) %{_bindir}/%{daemon_name}
%doc README.md

%changelog
openSUSE Build Service is sponsored by