Update to 1.1.1 OBS-URL: https://build.opensuse.org/request/show/1073945 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/PackageKit-Qt?expand=0&rev=47
132 lines
3.9 KiB
RPMSpec
132 lines
3.9 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global pkqt_flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{pkqt_flavor}" == ""
|
|
%define pkg_suffix -Qt
|
|
ExclusiveArch: do_not_build
|
|
%endif
|
|
%if "%{pkqt_flavor}" == "qt6"
|
|
%define qt6 1
|
|
%define pkg_suffix -Qt6
|
|
%define pkqt packagekitqt6
|
|
%endif
|
|
%if "%{pkqt_flavor}" == "qt5"
|
|
%define qt5 1
|
|
%define pkg_suffix -Qt5
|
|
%define pkqt packagekitqt5
|
|
%endif
|
|
%define major 1
|
|
Name: PackageKit%{?pkg_suffix}
|
|
Version: 1.1.1
|
|
Release: 0
|
|
Summary: Simple software installation management software
|
|
License: LGPL-2.1-or-later
|
|
Group: System/Daemons
|
|
URL: https://github.com/hughsie/PackageKit-Qt
|
|
Source: https://github.com/hughsie/PackageKit-Qt/archive/v%{version}.tar.gz#/PackageKit-Qt-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM boo#1103678
|
|
Patch0: 0001-Fix-PackageKit-not-emitting-network-state-changed-signal.patch
|
|
BuildRequires: PackageKit-devel >= %{version}
|
|
BuildRequires: cmake
|
|
BuildRequires: pkgconfig
|
|
%if 0%{?qt5}
|
|
BuildRequires: cmake(Qt5Core)
|
|
BuildRequires: cmake(Qt5DBus)
|
|
%endif
|
|
%if 0%{?qt6}
|
|
BuildRequires: cmake(Qt6Core)
|
|
BuildRequires: cmake(Qt6DBus)
|
|
%endif
|
|
|
|
%description
|
|
PackageKit is a system designed to make installing and updating
|
|
software on your computer easier. The primary design goal is to unify
|
|
all the software graphical tools used in different distributions, and
|
|
use some of the latest technology like PolicyKit to make the process
|
|
suck less.
|
|
|
|
%package -n lib%{pkqt}-%{major}
|
|
Summary: Simple software installation management software
|
|
Group: System/Libraries
|
|
|
|
%description -n lib%{pkqt}-%{major}
|
|
PackageKit is a system designed to make installing and updating
|
|
software on your computer easier. The primary design goal is to unify
|
|
all the software graphical tools used in different distributions, and
|
|
use some of the latest technology like PolicyKit to make the process
|
|
suck less.
|
|
|
|
%package -n %{pkqt}-devel
|
|
Summary: Simple software installation management software
|
|
Group: Development/Libraries/C and C++
|
|
Requires: lib%{pkqt}-%{major} = %{version}
|
|
%if 0%{?qt5}
|
|
# PackageKit-Qt used to be Qt4 based until 0.9.6; then it turned into a Qt5 package (no more Qt4 support)
|
|
# For this reason, we now have to obsolete the former 2nd spec file names
|
|
Provides: PackageKit-Qt-devel = %{version}
|
|
Obsoletes: PackageKit-Qt-devel < %{version}
|
|
Provides: PackageKit-Qt5-devel = %{version}
|
|
Obsoletes: PackageKit-Qt5-devel < %{version}
|
|
%endif
|
|
|
|
%description -n %{pkqt}-devel
|
|
PackageKit is a system designed to make installing and updating
|
|
software on your computer easier. The primary design goal is to unify
|
|
all the software graphical tools used in different distributions, and
|
|
use some of the latest technology like PolicyKit to make the process
|
|
suck less.
|
|
|
|
%prep
|
|
%autosetup -p1 -n PackageKit-Qt-%{version}
|
|
|
|
%build
|
|
%if 0%{?qt5}
|
|
%cmake
|
|
%cmake_build
|
|
%endif
|
|
|
|
%if 0%{?qt6}
|
|
%cmake_qt6 -DBUILD_WITH_QT6:BOOL=ON
|
|
%{qt6_build}
|
|
%endif
|
|
|
|
%install
|
|
%if 0%{?qt5}
|
|
%cmake_install
|
|
%endif
|
|
%if 0%{?qt6}
|
|
%qt6_install
|
|
%endif
|
|
|
|
%ldconfig_scriptlets -n lib%{pkqt}-%{major}
|
|
|
|
%files -n lib%{pkqt}-%{major}
|
|
%license COPYING
|
|
%doc NEWS AUTHORS README.md
|
|
%{_libdir}/libpackagekitqt?.so.*
|
|
|
|
%files -n %{pkqt}-devel
|
|
%doc TODO MAINTAINERS
|
|
%{_libdir}/libpackagekitqt?.so
|
|
%{_libdir}/cmake/packagekitqt?/
|
|
%{_libdir}/pkgconfig/packagekitqt?.pc
|
|
%{_includedir}/packagekitqt?/
|
|
|
|
%changelog
|