Marcus Rueckert
3ed24ba9f3
- Update to version 1.2.1+git.1611145185.49ea312: * Bump the FB_ORCA_AGENT version once again (#208) * Remove bash-ism in configure.ac * Port away from deprecated g_type_class_add_private() and friends * Increase default sync_interval from 5 to 1440 * travis: replace python-m2crypto dependency with python3-m2crypto * facebook-api: Fix id assertion in fb_api_cb_publish_mst() (#204) * travis: add python-m2crypto to dependencies for OBS deploy * Release 1.2.1 with fixes for a couple of server changes * Fix taNewMessage bug (#202) * fb_api_cb_publish_pt: check field is stop (#199) - Update to 1.2.1: - Fix "Parse error: unexpected identifier 'taNewMessage'" (gh#bitlbee/bitlbee-facebook#200) - Fix "Failed to read thrift: facebook-api.c:1929 fb_api_cb_publish_pt: assertion 'fb_thrift_read_stop(thft)' failed" (gh#bitlbee/bitlbee-facebook#197) OBS-URL: https://build.opensuse.org/request/show/870994 OBS-URL: https://build.opensuse.org/package/show/server:irc/bitlbee-facebook?expand=0&rev=6
62 lines
1.7 KiB
RPMSpec
62 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package bitlbee-facebook
|
|
#
|
|
# Copyright (c) 2020 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/
|
|
#
|
|
|
|
|
|
%define from_checkout 1
|
|
Name: bitlbee-facebook
|
|
Version: 1.2.1+git.1611145185.49ea312
|
|
Release: 0
|
|
Summary: The Facebook protocol plugin for bitlbee
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Networking/IRC
|
|
URL: https://github.com/bitlbee/bitlbee-facebook
|
|
%if 0%{?from_checkout}
|
|
Source: %{name}-%{version}.tar.gz
|
|
%else
|
|
Source: https://github.com/bitlbee/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
%endif
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(bitlbee)
|
|
BuildRequires: pkgconfig(json-glib-1.0)
|
|
|
|
%description
|
|
The Facebook protocol plugin for bitlbee. This plugin uses the Facebook Mobile API.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%if 0%{?from_checkout}
|
|
./autogen.sh
|
|
%endif
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
|
rm %{buildroot}%{_libdir}/bitlbee/facebook.la
|
|
|
|
%files
|
|
%doc ChangeLog README COPYING
|
|
%dir %{_libdir}/bitlbee
|
|
%{_libdir}/bitlbee/facebook.so
|
|
|
|
%changelog
|