From 62bd0fd8e59c7674d8e514c88500be7b0fc3e3959a9711fdec4faac0891d6f47 Mon Sep 17 00:00:00 2001 From: Marcus Rueckert Date: Thu, 7 Feb 2019 15:23:05 +0000 Subject: [PATCH] Accepting request 668075 from home:mcepl - Initial packaging effort for bitlbee-mastodon 1.4.0 OBS-URL: https://build.opensuse.org/request/show/668075 OBS-URL: https://build.opensuse.org/package/show/server:irc/bitlbee-mastodon?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + bitlbee-mastodon-1.4.0.tar.gz | 3 ++ bitlbee-mastodon.changes | 5 +++ bitlbee-mastodon.spec | 64 +++++++++++++++++++++++++++++++++++ 5 files changed, 96 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 bitlbee-mastodon-1.4.0.tar.gz create mode 100644 bitlbee-mastodon.changes create mode 100644 bitlbee-mastodon.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/bitlbee-mastodon-1.4.0.tar.gz b/bitlbee-mastodon-1.4.0.tar.gz new file mode 100644 index 0000000..cf0be2c --- /dev/null +++ b/bitlbee-mastodon-1.4.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acc66f0a81d7ac7c4b31da48118697d30e7b2a31cd91d6a6d14f5bc68302fe78 +size 64942 diff --git a/bitlbee-mastodon.changes b/bitlbee-mastodon.changes new file mode 100644 index 0000000..3100667 --- /dev/null +++ b/bitlbee-mastodon.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed Dec 12 14:32:48 CET 2018 - mcepl@suse.com + +- Initial packaging effort for bitlbee-mastodon 1.4.0 + diff --git a/bitlbee-mastodon.spec b/bitlbee-mastodon.spec new file mode 100644 index 0000000..9c52a32 --- /dev/null +++ b/bitlbee-mastodon.spec @@ -0,0 +1,64 @@ +# +# spec file for package bitlbee-mastodon +# +# Copyright (c) 2018 SUSE LINUX 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 https://bugs.opensuse.org/ +# + + +Name: bitlbee-mastodon +Version: 1.4.0 +Release: 0 +Summary: A Mastodon plugin for Bitlbee +License: GPL-2.0-only +Group: Productivity/Networking/IRC +URL: https://github.com/kensanata/bitlbee-mastodon +Source: https://github.com/kensanata/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz + # https://github.com/kensanata/bitlbee-mastodon/releases/download/v1.4.0/bitlbee-mastodon-1.4.0.tar.gz + # https://github.com/kensanata/bitlbee-mastodon/archive/v1.4.0.tar.gz +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool +BuildRequires: pkgconfig +BuildRequires: pkgconfig(bitlbee) +BuildRequires: pkgconfig(glib-2.0) + +%description +This plugin allows Bitlbee to communicate with Mastodon instances. +Mastodon is a free, open-source, decentralized microblogging network. +Bitlbee is an IRC server connecting to various other text messaging +services. You run Bitlbee and connect to it using an IRC client, then +configure Bitlbee to connect to other services, such as a Mastodon +instance where you already have an account. The benefit is that you can +now use any IRC client you want to connect to Mastodon. + +%prep +%setup -q + +%build +./autogen.sh +%configure +make %{?_smp_mflags} + +%install +%make_install +rm -fv %{buildroot}%{_libdir}/bitlbee/mastodon.la + +%files +%license LICENSE +%doc README.md RELEASE.md +%dir %{_libdir}/bitlbee +%{_libdir}/bitlbee/mastodon.so +%{_datadir}/bitlbee/mastodon-help.txt + +%changelog