1.2.7
OBS-URL: https://build.opensuse.org/package/show/server:irc/bitlbee?expand=0&rev=5
This commit is contained in:
parent
501ae3f0f0
commit
19ca3e0e32
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dfaf89f562e14183d1d27f731c55cf84a0d7db945bb09dbe1aac8b419f5a0070
|
|
||||||
size 388258
|
|
3
bitlbee-1.2.7.tar.bz2
Normal file
3
bitlbee-1.2.7.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:54a520557d62da93305bc53c478f15553d525625b663dd37947b4bba607a2dd7
|
||||||
|
size 393660
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat May 15 22:38:22 UTC 2010 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- update to 1.2.7:
|
||||||
|
* MSN support was fixed
|
||||||
|
* the Twitter module was updated to use OAuth (which is required
|
||||||
|
after June)
|
||||||
|
* several other fixes and feature additions were done
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 19 14:34:15 UTC 2010 - pascal.bleser@opensuse.org
|
Mon Apr 19 14:34:15 UTC 2010 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
23
bitlbee.spec
23
bitlbee.spec
@ -1,7 +1,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: bitlbee
|
Name: bitlbee
|
||||||
Version: 1.2.6
|
Version: 1.2.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: IRC to other Chat Networks Gateway
|
Summary: IRC to other Chat Networks Gateway
|
||||||
# http://get.bitlbee.org/src/bitlbee-%{version}.tar.gz
|
# http://get.bitlbee.org/src/bitlbee-%{version}.tar.gz
|
||||||
@ -14,7 +14,10 @@ License: GNU General Public License version 2 (GPL v2)
|
|||||||
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||||
Requires: xinetd
|
Requires: xinetd
|
||||||
BuildRequires: make gcc glibc-devel pkgconfig gnutls-devel libgcrypt-devel
|
BuildRequires: make gcc glibc-devel pkgconfig gnutls-devel libgcrypt-devel
|
||||||
BuildRequires: zlib-devel xmlto glib2-devel lzo-devel glib2-devel
|
BuildRequires: zlib-devel glib2-devel lzo-devel glib2-devel
|
||||||
|
%if 0%{?suse_version} >= 1010
|
||||||
|
BuildRequires: xmlto
|
||||||
|
%endif
|
||||||
%if 0%{?suse_version} >= 1030
|
%if 0%{?suse_version} >= 1030
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
%endif
|
%endif
|
||||||
@ -42,7 +45,14 @@ enabled flood protection.
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch1
|
%patch1
|
||||||
|
|
||||||
|
# make it verbose!
|
||||||
|
find . -name Makefile -exec %__sed -i.orig 's|@$(CC)|$(CC)|;s|@$(LD)|$(LD)|' {} \;
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
# fix to find the glib-2.0 pkgconfig on SLES_9
|
||||||
|
%if 0%{?suse_version} < 1030
|
||||||
|
export PKG_CONFIG_PATH="/opt/gnome/%{_lib}/pkgconfig"
|
||||||
|
%endif
|
||||||
# not autoconf
|
# not autoconf
|
||||||
CFLAGS="%{optflags} -fno-strict-aliasing" \
|
CFLAGS="%{optflags} -fno-strict-aliasing" \
|
||||||
CXXFLAGS="%{optflags} -fno-strict-aliasing" \
|
CXXFLAGS="%{optflags} -fno-strict-aliasing" \
|
||||||
@ -58,6 +68,7 @@ CXXFLAGS="%{optflags} -fno-strict-aliasing" \
|
|||||||
--ipcsocket="%{_localstatedir}/run/%{name}.sock" \
|
--ipcsocket="%{_localstatedir}/run/%{name}.sock" \
|
||||||
--msn=1 \
|
--msn=1 \
|
||||||
--jabber=1 \
|
--jabber=1 \
|
||||||
|
--twitter=1 \
|
||||||
--oscar=1 \
|
--oscar=1 \
|
||||||
--yahoo=1 \
|
--yahoo=1 \
|
||||||
--debug=0 \
|
--debug=0 \
|
||||||
@ -75,7 +86,9 @@ CXXFLAGS="%{optflags} -fno-strict-aliasing" \
|
|||||||
%__install -d "%{buildroot}%{_sysconfdir}/bitlbee"
|
%__install -d "%{buildroot}%{_sysconfdir}/bitlbee"
|
||||||
%__install -d "%{buildroot}%{_localstatedir}/lib/bitlbee"
|
%__install -d "%{buildroot}%{_localstatedir}/lib/bitlbee"
|
||||||
|
|
||||||
|
%if 0%{?suse_version} >= 1010
|
||||||
%__make DESTDIR="%{buildroot}" -C doc
|
%__make DESTDIR="%{buildroot}" -C doc
|
||||||
|
%endif
|
||||||
%makeinstall install-etc
|
%makeinstall install-etc
|
||||||
|
|
||||||
%__install -d "%{buildroot}%{_sysconfdir}/xinetd.d"
|
%__install -d "%{buildroot}%{_sysconfdir}/xinetd.d"
|
||||||
@ -98,15 +111,17 @@ CXXFLAGS="%{optflags} -fno-strict-aliasing" \
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYING doc/AUTHORS doc/CHANGES doc/CREDITS doc/FAQ doc/README
|
%doc COPYING doc/AUTHORS doc/CHANGES doc/CREDITS doc/FAQ doc/README
|
||||||
|
%if 0%{?suse_version} >= 1010
|
||||||
%doc doc/user-guide/*.html doc/user-guide/*.txt
|
%doc doc/user-guide/*.html doc/user-guide/*.txt
|
||||||
|
%endif
|
||||||
%config(noreplace) %{_sysconfdir}/xinetd.d/bitlbee
|
%config(noreplace) %{_sysconfdir}/xinetd.d/bitlbee
|
||||||
%attr(0750,root,bitlbee) %dir %{_sysconfdir}/bitlbee
|
%attr(0750,root,bitlbee) %dir %{_sysconfdir}/bitlbee
|
||||||
%config(noreplace) %attr(0640,root,bitlbee) %{_sysconfdir}/bitlbee/bitlbee.conf
|
%config(noreplace) %attr(0640,root,bitlbee) %{_sysconfdir}/bitlbee/bitlbee.conf
|
||||||
%config(noreplace) %attr(0640,root,bitlbee) %{_sysconfdir}/bitlbee/motd.txt
|
%config(noreplace) %attr(0640,root,bitlbee) %{_sysconfdir}/bitlbee/motd.txt
|
||||||
%{_sbindir}/bitlbee
|
%{_sbindir}/bitlbee
|
||||||
%{_datadir}/bitlbee
|
%{_datadir}/bitlbee
|
||||||
%doc %{_mandir}/man5/bitlbee.conf.5*
|
%doc %{_mandir}/man5/bitlbee.conf.5%{ext_man}
|
||||||
%doc %{_mandir}/man8/bitlbee.8*
|
%doc %{_mandir}/man8/bitlbee.8%{ext_man}
|
||||||
%attr(0750,bitlbee,bitlbee) %dir %{_localstatedir}/lib/bitlbee
|
%attr(0750,bitlbee,bitlbee) %dir %{_localstatedir}/lib/bitlbee
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user