1
0

Accepting request 477322 from home:okurz:bitlbee

Initial submission

OBS-URL: https://build.opensuse.org/request/show/477322
OBS-URL: https://build.opensuse.org/package/show/server:irc/bitlbee-discord?expand=0&rev=1
This commit is contained in:
Marcus Rückert 2017-03-29 13:03:42 +00:00 committed by Git OBS Bridge
commit ed4efd283e
6 changed files with 120 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

17
_service Normal file
View File

@ -0,0 +1,17 @@
<services>
<service name="tar_scm" mode="localonly">
<param name="filename">bitlbee-discord</param>
<param name="versionprefix">0</param>
<param name="versionformat">%ct.%h</param>
<param name="url">git://github.com/sm00th/bitlbee-discord.git</param>
<param name="scm">git</param>
<param name="revision">master</param>
<param name="changesgenerate">enable</param>
<param name="changesauthor">okurz@suse.com</param>
</service>
<service name="recompress" mode="localonly">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
<service name="set_version" mode="localonly"/>
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:18f708b49aef0ffc8bac10f9dd6a048662658224ca759ca61ce66473add628c1
size 21960

20
bitlbee-discord.changes Normal file
View File

@ -0,0 +1,20 @@
-------------------------------------------------------------------
Wed Mar 01 20:24:09 UTC 2017 - okurz@suse.com
- Update to version 0f0485e:
* Add a fake "guild" for global frineds.
* Fix imcb_error format.
* Add a debug option to configure.
* Don't allow backlog fetches with limit < 1.
* Debugging updates.
* Make sure chan names are unique.
* Remove bci from chatlist on channel deletion.
* Add fetch_pinned option.
* Detect (un)pins properly.
* Report "email" errors on login.
-------------------------------------------------------------------
Wed Mar 1 20:16:46 UTC 2017 - okurz@suse.com
- Initial package based on 0f0485e as there are no upstream releases

56
bitlbee-discord.spec Normal file
View File

@ -0,0 +1,56 @@
#
# spec file for package bitlbee-discord
#
# Copyright (c) 2017 SUSE LINUX Products 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/
#
%define github_user sm00th
%define short_name discord
Name: bitlbee-%{short_name}
Version: 0.1487713838.0f0485e
Release: 0
Summary: Bitlbee plugin for Discord
License: GPL-2.0
Group: Productivity/Networking/IRC
Url: https://github.com/%{github_user}/%{name}
Source: https://github.com/%{github_user}/%{name}/%{name}-%{version}.tar.xz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: pkgconfig(bitlbee)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Bitlbee plugin for Discord.
%prep
%setup -q
%build
./autogen.sh
%configure
make %{?_smp_mflags}
%install
make %{?_smp_mflags} DESTDIR=%{buildroot} install
rm %{buildroot}%{_libdir}/bitlbee/%{short_name}.la
%files
%defattr(-,root,root)
%doc LICENSE README
%dir %{_libdir}/bitlbee
%{_libdir}/bitlbee/%{short_name}.so
%changelog