.changes file + minor fix in the .desktop file + licenses support

OBS-URL: https://build.opensuse.org/package/show/server:irc/weechat?expand=0&rev=19
This commit is contained in:
Pascal Bleser 2009-11-07 00:32:08 +00:00 committed by Git OBS Bridge
parent 46b19678bd
commit 72570c7430
3 changed files with 66 additions and 49 deletions

44
weechat.changes Normal file
View File

@ -0,0 +1,44 @@
-------------------------------------------------------------------
Mon Sep 14 00:00:00 CEST 2009 - pascal.bleser@opensuse.org
- update to 0.3.0:
* externalization of IRC as a plugin
* new display engine (faster)
* NES plugins
* new plugin API
* buffers with free content
* dynamic filtering
* smart join/part/quit filter
* custom bars with custom items
* buffer merging
* group support in nicklist
* less CPU usage
-------------------------------------------------------------------
Sat Jun 13 00:00:00 CEST 2009 - pascal.bleser@opensuse.org
- update to 0.2.6.3:
* fixes a bug with detection of the gnutls library
-------------------------------------------------------------------
Sun Apr 19 00:00:00 CEST 2009 - pascal.bleser@opensuse.org
- update to 0.2.6.2:
* fixes a charset decoding problem
-------------------------------------------------------------------
Tue Mar 17 00:00:00 CET 2009 - pascal.bleser@opensuse.org
- update to 0.2.6.1:
* fixes a crash with some special characters in IRC messages
-------------------------------------------------------------------
Thu Sep 6 00:00:00 CEST 2007 - guru@unixtech.be
- update to 0.2.6
-------------------------------------------------------------------
Sat Jun 9 00:00:00 CEST 2007 - guru@unixtech.be
- initial build service submission

View File

@ -1,6 +1,5 @@
[Desktop Entry]
Encoding=UTF-8
MultipleArgs=false
Terminal=true
Exec=weechat-curses
Icon=weechat

View File

@ -9,16 +9,16 @@ Name: weechat
Version: 0.3.0
Release: 0
Summary: Portable, Fast, Light and Extensible IRC Client
Source: http://weechat.flashtux.org/download/weechat-%{version}.tar.bz2
Source: http://www.weechat.org/files/src/weechat-%{version}.tar.bz2
Source1: weechat.desktop
Patch1: weechat-fix-strftime.patch
Patch2: weechat-disable_messing_with_cflags.patch
URL: http://weechat.flashtux.org/
URL: http://www.weechat.org
Group: Productivity/Networking/IRC
License: GNU General Public License (GPL)
BuildRoot: %{_tmppath}/build-%{name}-%{version}
BuildRequires: ncurses ncurses-devel perl python python-devel cmake
BuildRequires: ruby gcc gnutls gnutls-devel glibc-devel aspell aspell-devel
BuildRequires: ncurses-devel perl python-devel cmake
BuildRequires: ruby gcc gnutls gnutls-devel glibc-devel aspell-devel
BuildRequires: libstdc++-devel gcc-c++
%if %{?with_lua:1}0
BuildRequires: lua-devel
@ -27,11 +27,13 @@ BuildRequires: lua-devel
BuildRequires: ruby-devel
%endif
BuildRequires: tcl-devel
BuildRequires: lzo lzo-devel libgpg-error libgcrypt
BuildRequires: lzo-devel libgpg-error libgcrypt
BuildRequires: libgpg-error-devel libgcrypt-devel
BuildRequires: autoconf automake libtool pkgconfig
%if 0%{?suse_version:1}
BuildRequires: update-desktop-files
BuildRequires: licenses
Requires: licenses
%endif
%description
@ -50,53 +52,53 @@ Development environment for authoring %{name} plugins.
%if %{?with_lua:1}0
%package lua
Summary: Lua Scripting Support for %{name}
Summary: Lua Scripting Support for %{name}
Group: Productivity/Networking/IRC
Requires: %{name} = %{version}-%{release}
%description lua
Lua scripting plugin for %{name}
Support for %{name} scripts written in the Lua language.
%endif
%package perl
Summary: Perl Scripting Support for %{name}
Summary: Perl Scripting Support for %{name}
Group: Productivity/Networking/IRC
Requires: %{name} = %{version}-%{release}
%description perl
Perl scripting plugin for %{name}
Support for %{name} scripts written in the Perl language.
%package python
Summary: Python Scripting Support for %{name}
Summary: Python Scripting Support for %{name}
Group: Productivity/Networking/IRC
Requires: %{name} = %{version}-%{release}
%description python
Python scripting plugin for %{name}
Support for %{name} scripts written in the Python language.
%package tcl
Summary: TCL Scripting Support for %{name}
Summary: Tcl Scripting Support for %{name}
Group: Productivity/Networking/IRC
Requires: %{name} = %{version}-%{release}
%description tcl
TCL scripting plugin for %{name}
Support for %{name} scripts written in the Tcl language.
%package ruby
Summary: Ruby Scripting Support for %{name}
Summary: Ruby Scripting Support for %{name}
Group: Productivity/Networking/IRC
Requires: %{name} = %{version}-%{release}
%description ruby
Ruby scripting plugin for %{name}
Support for %{name} scripts written in the Ruby language.
%package aspell
Summary: Aspell Spell-Checking Support for %{name}
Summary: Aspell Spell-Checking Support for %{name}
Group: Productivity/Networking/IRC
Requires: %{name} = %{version}-%{release}
%description aspell
Spell-checking support for %{name}, using aspell.
Spell-checking support for %{name}, using the aspell library.
%prep
%setup -q
@ -130,6 +132,9 @@ popd #build
%find_lang "%{name}"
h=/usr/share/doc/licenses/md5/$(md5sum COPYING|cut -f1 -d" ")
test -e "$h" && %__ln_s -f "$h" COPYING
%clean
%__rm -rf "%{buildroot}"
@ -181,37 +186,6 @@ popd #build
%{_libdir}/weechat/plugins/aspell.so
%changelog
* Mon Sep 14 2009 Pascal Bleser <pascal.bleser@opensuse.org> 0.3.0
- update to 0.3.0:
* externalization of IRC as a plugin
* new display engine (faster)
* NES plugins
* new plugin API
* buffers with free content
* dynamic filtering
* smart join/part/quit filter
* custom bars with custom items
* buffer merging
* group support in nicklist
* less CPU usage
* Sat Jun 13 2009 Pascal Bleser <pascal.bleser@opensuse.org> 0.2.6.3
- update to 0.2.6.3:
* fixes a bug with detection of the gnutls library
* Sun Apr 19 2009 Pascal Bleser <pascal.bleser@opensuse.org> 0.2.6.2
- update to 0.2.6.2:
* fixes a charset decoding problem
* Tue Mar 17 2009 Pascal Bleser <pascal.bleser@opensuse.org> 0.2.6.1
- update to 0.2.6.1:
* fixes a crash with some special characters in IRC messages
* Thu Sep 6 2007 Pascal Bleser <guru@unixtech.be> 0.2.6
- update to 0.2.6
* Sat Jun 9 2007 Pascal Bleser <guru@unixtech.be>
- initial build service submission
# Local Variables:
# mode: rpm-spec