Compare commits
No commits in common. "98095b07d59639b8d9648b02c4d6a65c42d33204" and "54791d73f7b6fe761c246e12c84f1b2859d39d23" have entirely different histories.
98095b07d5
...
54791d73f7
BIN
folks-0.11.4.tar.xz
Normal file
BIN
folks-0.11.4.tar.xz
Normal file
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
|||||||
--- folks-0.13.2/tests/eds/meson.build.orig 2020-02-04 08:38:51.000000000 +0100
|
|
||||||
+++ folks-0.13.2/tests/eds/meson.build 2020-02-04 09:21:26.009817830 +0100
|
|
||||||
@@ -104,5 +104,6 @@
|
|
||||||
benchmark(_benchmark, benchmark_executable,
|
|
||||||
suite: 'EDSBackend',
|
|
||||||
env: common_test_environment,
|
|
||||||
+ timeout: 120,
|
|
||||||
)
|
|
||||||
endforeach
|
|
||||||
122
folks.spec
122
folks.spec
@ -1,45 +1,28 @@
|
|||||||
%global folks_module_version 26
|
|
||||||
|
|
||||||
Name: folks
|
Name: folks
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 0.15.2
|
Version: 0.11.4
|
||||||
Release: 3
|
Release: 9
|
||||||
Summary: Library aggregates people from multiple sources
|
Summary: Library aggregates people from multiple sources
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://wiki.gnome.org/Projects/Folks
|
URL: https://wiki.gnome.org/Projects/Folks
|
||||||
Source0: http://ftp.gnome.org/pub/GNOME/sources/folks/0.15/folks-%{version}.tar.xz
|
Source0: http://ftp.gnome.org/pub/GNOME/sources/folks/0.11/folks-%{version}.tar.xz
|
||||||
Patch0: folks-eds-test-timeout.patch
|
|
||||||
|
|
||||||
BuildRequires: intltool vala-devel >= 0.17.6
|
BuildRequires: chrpath telepathy-glib-devel >= 0.19.0 telepathy-glib-vala
|
||||||
BuildRequires: libxml2-devel GConf2-devel
|
BuildRequires: glib2-devel gobject-introspection-devel intltool vala-devel >= 0.17.6
|
||||||
BuildRequires: gcc meson gettext
|
BuildRequires: vala libxml2-devel GConf2-devel evolution-data-server-devel >= 3.13.90
|
||||||
BuildRequires: pkgconfig(dbus-glib-1) evolution-data-server-devel >= 3.33.2 pkgconfig(gee-0.8) >= 0.8.4
|
BuildRequires: readline-devel pkgconfig(gee-0.8) >= 0.8.4
|
||||||
BuildRequires: glib2-devel gobject-introspection-devel libxml2-devel
|
|
||||||
BuildRequires: python3-dbusmock python3-devel readline-devel
|
Provides: %{name}-tools = %{version}-%{release}
|
||||||
BuildRequires: telepathy-glib-devel telepathy-glib-vala vala
|
Obsoletes: %{name}-tools < %{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libfolks is a library that aggregates people from multiple sources
|
libfolks is a library that aggregates people from multiple sources
|
||||||
(eg, Telepathy connection managers) to create metacontacts.
|
(eg, Telepathy connection managers) to create metacontacts.
|
||||||
|
|
||||||
%package telepathy
|
|
||||||
Summary: Folks telepathy backend
|
|
||||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
||||||
|
|
||||||
%description telepathy
|
|
||||||
%{name}-telepathy contains the folks telepathy backend.
|
|
||||||
|
|
||||||
%package tools
|
|
||||||
Summary: Tools for %{name}
|
|
||||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
||||||
|
|
||||||
%description tools
|
|
||||||
%{name}-tools contains a database and import tool.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for folks
|
Summary: Development files for folks
|
||||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
Requires: folks = %{epoch}:%{version}-%{release}
|
||||||
Requires: %{name}-tools = %{epoch}:%{version}-%{release}
|
Requires: folks-tools = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains libraries and header files.
|
This package contains libraries and header files.
|
||||||
@ -50,48 +33,55 @@ This package contains libraries and header files.
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%define _lto_cflags %{nil}
|
%configure --disable-fatal-warnings --enable-eds-backend \
|
||||||
|
--enable-bluez-backend --disable-zeitgeist --enable-vala \
|
||||||
|
--enable-inspect-tool --disable-libsocialweb-backend
|
||||||
|
%make_build V=1
|
||||||
|
|
||||||
%meson
|
|
||||||
%meson_build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%meson_install
|
%make_install
|
||||||
|
%delete_la
|
||||||
|
for fpath in $RPM_BUILD_ROOT%{_libdir}/libfolks-dummy.so \
|
||||||
|
$RPM_BUILD_ROOT%{_libdir}/libfolks-eds.so \
|
||||||
|
$RPM_BUILD_ROOT%{_libdir}/libfolks-telepathy.so
|
||||||
|
do
|
||||||
|
chrpath --delete ${fpath}
|
||||||
|
done
|
||||||
|
find %{buildroot}%{_libdir}/folks/43/backends -name '*.so' -exec chrpath --delete {} \;
|
||||||
|
find %{buildroot}%{_bindir} -name 'folks-*' -exec chrpath --delete {} \;
|
||||||
|
|
||||||
%find_lang %{name}
|
|
||||||
|
%find_lang folks
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%meson_test || echo "End %check"
|
VERBOSE=1 make check
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
|
%postun
|
||||||
|
/sbin/ldconfig
|
||||||
|
if [ $1 -eq 0 ]; then
|
||||||
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
%posttrans
|
||||||
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
||||||
|
|
||||||
|
|
||||||
%files -f folks.lang
|
%files -f folks.lang
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc AUTHORS NEWS
|
%doc AUTHORS README NEWS
|
||||||
%{_libdir}/libfolks-dummy.so.26*
|
%{_libdir}/*.so.*
|
||||||
%{_libdir}/libfolks-eds.so.26*
|
%{_libdir}/folks
|
||||||
%{_libdir}/libfolks.so.26*
|
%{_libdir}/girepository-1.0/Folks*.typelib
|
||||||
%dir %{_libdir}/folks
|
|
||||||
%dir %{_libdir}/folks/%{folks_module_version}
|
|
||||||
%dir %{_libdir}/folks/%{folks_module_version}/backends
|
|
||||||
%{_libdir}/folks/%{folks_module_version}/backends/bluez/
|
|
||||||
%{_libdir}/folks/%{folks_module_version}/backends/dummy/
|
|
||||||
%{_libdir}/folks/%{folks_module_version}/backends/eds/
|
|
||||||
%{_libdir}/folks/%{folks_module_version}/backends/key-file/
|
|
||||||
%{_libdir}/folks/%{folks_module_version}/backends/ofono/
|
|
||||||
%{_libdir}/girepository-1.0/Folks-0.7.typelib
|
|
||||||
%{_libdir}/girepository-1.0/FolksDummy-0.7.typelib
|
|
||||||
%{_libdir}/girepository-1.0/FolksEds-0.7.typelib
|
|
||||||
%{_datadir}/GConf/gsettings/folks.convert
|
%{_datadir}/GConf/gsettings/folks.convert
|
||||||
%{_datadir}/glib-2.0/schemas/org.freedesktop.folks.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.freedesktop.folks.gschema.xml
|
||||||
|
%{_bindir}/folks-import
|
||||||
%files telepathy
|
%{_bindir}/folks-inspect
|
||||||
%{_libdir}/libfolks-telepathy.so.26*
|
|
||||||
%{_libdir}/folks/%{folks_module_version}/backends/telepathy
|
|
||||||
%{_libdir}/girepository-1.0/FolksTelepathy-0.7.typelib
|
|
||||||
|
|
||||||
%files tools
|
|
||||||
%{_bindir}/%{name}-import
|
|
||||||
%{_bindir}/%{name}-inspect
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/folks
|
%{_includedir}/folks
|
||||||
@ -104,17 +94,5 @@ This package contains libraries and header files.
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Nov 02 2022 Wenlong Ding <wenlong.ding@turbolinux.com.cn> - 1:0.15.2-3
|
* Fri Dec 21 2019 Senlin Xia <xiasenlin1@huawei.com> - 1:0.11.4-9
|
||||||
- Modify %check to skip timeout check.
|
|
||||||
|
|
||||||
* Mon Jun 28 2021 weijin deng <weijin.deng@turbolinux.com.cn> - 1:0.15.2-2
|
|
||||||
- Get rid of repeated build dependency that may cause fault
|
|
||||||
|
|
||||||
* Fri Jun 25 2021 Wenlong Ding <wenlong.ding@turbolinux.com.cn> - 1:0.15.2-1
|
|
||||||
- Update to 1:0.15.2
|
|
||||||
|
|
||||||
* Wed Dec 25 2019 Ling Yang <lingyang2@huawei.com> - 1:0.11.4-10
|
|
||||||
- Add epoch for providing folks-tools
|
|
||||||
|
|
||||||
* Sat Dec 21 2019 Senlin Xia <xiasenlin1@huawei.com> - 1:0.11.4-9
|
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
@ -1,4 +0,0 @@
|
|||||||
version_control: gitlab.gnome
|
|
||||||
src_repo: folks
|
|
||||||
tag_prefix: ^FOLKS
|
|
||||||
seperator: _
|
|
||||||
Loading…
x
Reference in New Issue
Block a user