Initial build of parallel-installable gcr3 version, based on earlier gcr packaging
This commit is contained in:
parent
864be017a5
commit
b0bb411484
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/gcr-3.41.1.tar.xz
|
120
gcr3.spec
Normal file
120
gcr3.spec
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
%ifarch %{valgrind_arches}
|
||||||
|
%global has_valgrind 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Name: gcr3
|
||||||
|
Version: 3.41.1
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: A library for bits of crypto UI and parsing
|
||||||
|
|
||||||
|
License: LGPLv2+
|
||||||
|
URL: https://wiki.gnome.org/Projects/CryptoGlue
|
||||||
|
Source0: https://download.gnome.org/sources/gcr/3.41/gcr-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: gi-docgen
|
||||||
|
BuildRequires: meson
|
||||||
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
||||||
|
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
||||||
|
BuildRequires: pkgconfig(gtk+-3.0)
|
||||||
|
BuildRequires: pkgconfig(libsecret-1)
|
||||||
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
|
BuildRequires: pkgconfig(p11-kit-1)
|
||||||
|
BuildRequires: docbook-style-xsl
|
||||||
|
BuildRequires: libgcrypt-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
BuildRequires: vala
|
||||||
|
%if 0%{?has_valgrind}
|
||||||
|
BuildRequires: valgrind-devel
|
||||||
|
%endif
|
||||||
|
BuildRequires: /usr/bin/gpg2
|
||||||
|
BuildRequires: /usr/bin/ssh-add
|
||||||
|
BuildRequires: /usr/bin/ssh-agent
|
||||||
|
BuildRequires: /usr/bin/xsltproc
|
||||||
|
|
||||||
|
Requires: %{name}-base%{?_isa} = %{version}-%{release}
|
||||||
|
# Explicitly conflict with older gcr package that ships the same libraries
|
||||||
|
Conflicts: gcr < 3.90.0
|
||||||
|
|
||||||
|
%description
|
||||||
|
gcr is a library for displaying certificates, and crypto UI, accessing
|
||||||
|
key stores. It also provides a viewer for crypto files on the GNOME
|
||||||
|
desktop.
|
||||||
|
|
||||||
|
gck is a library for accessing PKCS#11 modules like smart cards.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
# Explicitly conflict with older gcr package that ships the same libraries
|
||||||
|
Conflicts: gcr-devel < 3.90.0
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package includes the header files for the gcr library.
|
||||||
|
|
||||||
|
%package base
|
||||||
|
Summary: Library files for gcr
|
||||||
|
# Explicitly conflict with older gcr package that ships the same libraries
|
||||||
|
Conflicts: gcr-base < 3.90.0
|
||||||
|
|
||||||
|
%description base
|
||||||
|
The %{name}-base package includes the gcr-base library.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -n gcr-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%meson
|
||||||
|
%meson_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%meson_install
|
||||||
|
%find_lang gcr
|
||||||
|
|
||||||
|
# Remove the bits that we don't need in the compat package
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_bindir}/gcr-viewer
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/applications/gcr-viewer.desktop
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/GConf/gsettings/org.gnome.crypto.pgp.convert
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/GConf/gsettings/org.gnome.crypto.pgp_keyservers.convert
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas/org.gnome.crypto.pgp.gschema.xml
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/mime/packages/gcr-crypto-types.xml
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_libexecdir}/gcr-prompter
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_libexecdir}/gcr-ssh-agent
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_libexecdir}/gcr-ssh-askpass
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/dbus-1/services/org.gnome.keyring.PrivatePrompter.service
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/dbus-1/services/org.gnome.keyring.SystemPrompter.service
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/applications/gcr-prompter.desktop
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_userunitdir}/gcr-ssh-agent.service
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_userunitdir}/gcr-ssh-agent.socket
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/gck-1/
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/gcr-3/
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/gcr-ui-3/
|
||||||
|
|
||||||
|
%files -f gcr.lang
|
||||||
|
%doc NEWS README.md
|
||||||
|
%license COPYING
|
||||||
|
%{_libdir}/girepository-1.0/
|
||||||
|
%{_libdir}/libgcr-ui-3.so.1*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/gck-1/
|
||||||
|
%{_includedir}/gcr-3/
|
||||||
|
%{_libdir}/libgck-1.so
|
||||||
|
%{_libdir}/libgcr-base-3.so
|
||||||
|
%{_libdir}/libgcr-ui-3.so
|
||||||
|
%{_libdir}/pkgconfig/gck-1.pc
|
||||||
|
%{_libdir}/pkgconfig/gcr-3.pc
|
||||||
|
%{_libdir}/pkgconfig/gcr-base-3.pc
|
||||||
|
%{_libdir}/pkgconfig/gcr-ui-3.pc
|
||||||
|
%{_datadir}/gir-1.0/
|
||||||
|
%{_datadir}/vala/
|
||||||
|
|
||||||
|
%files base
|
||||||
|
%{_libdir}/libgck-1.so.0*
|
||||||
|
%{_libdir}/libgcr-base-3.so.1*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jul 19 2022 Kalev Lember <klember@redhat.com> - 3.41.1-1
|
||||||
|
- Initial build of parallel-installable gcr3 version, based on earlier gcr packaging
|
Loading…
Reference in New Issue
Block a user