Changeset 2434

Show
Ignore:
Timestamp:
10/14/07 00:21:51 (3 years ago)
Author:
kuhlmann
Message:

prepare for 0.6.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • climm/ChangeLog

    r2392 r2434  
    11-*- coding: utf-8 -*- 
     2 
     32007-10-14 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 
     4        * 0.6.1 
     5 
     62007-10-12 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 
     7        * cleanup im_request.c also closing mem leaks 
     8        * fix mem leak and even wrong code when receiving certain advanced messages 
     9        * free connection's screen name 
     10        * if parsing a list of contacts, allow to also consider all other connections 
     11        * use for msg command only for now 
     12        * convert 'more' info update to 'new' tlv based request; Closes: #16 
     13        * fix some more references to cvs into svn 
     14        * ignore some more XMMP cruft sent by GoogleTalk 
     15        * fix man page cross references 
     16        * fix encoding for SMS 
     17        * update last update time for two other updates as well 
     18 
     192007-10-10 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 
     20        * ICQ8 auto messages: 
     21        + move mime parsing into new function for #8 (get ICQ8 auto messages) 
     22        + use UNICODE-2-0 for UCS-2BE as ICQ seems to use that 
     23        * fix mICQ/climm client version 
     24 
     252007-10-06 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 
     26        * reset prompt when a status change is ack'ed by the ICQ server; 
     27          Closes: #4 
     28        * Don't request chat group change before we haven't send CliReady. 
     29          Closes #7 
     30        * get idle times also from other terminals if possible; Closes #6 
     31        * remove some more autogenerated file from SVN 
     32        * fix several mem leaks found by komar 
     33        * first shot for getting away etc messages from ICQ8 
     34        * get .i18n files in line for SVN and (semi-)auto update 
     35 
     362007-10-03 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 
     37        * rename Connection->open to c_open to avoid name clash with newer 
     38          libc versions that define open as macro 
     39        * Set umask to 077 at startup. Fixes #5 
     40        * fix possible memory corruption 
     41        * Fixing login (#7), part I: force reqlists after reqbos is granted 
     42        * icqprx: be less noisy and allow to send all client stuff to server at once 
     43        * modify login structure. Closes #7 
     44        * leftover renames mICQ->climm CVS->SVN 
    245 
    3462007-09-07 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 
  • climm/NEWS

    r2392 r2434  
    37372007-06-10: 0.5.4.1: lots of bug fixes 
    38382007-07-08: 0.5.4.2: more bug fixes, fix to login procedure, XMPP auto-relogin, licq bug workarounds 
    39 2007-09-06: 0.6 rename to climm - cli-based multi-messenger 
     392007-09-06: 0.6: rename to climm - cli-based multi-messenger 
     402007-10-14: 0.6.1:  
  • climm/README

    r2427 r2434  
    22$Id$ -*- coding: utf-8 -*- 
    33 
    4 current stable version: 0.6 
     4current stable version: 0.6.1 
    55==================================== 
    66 
  • climm/climm.info

    r2394 r2434  
    11Package: climm 
    2 Version: 0.6 
     2Version: 0.6.1 
    33Revision: 1 
    44ConfigureParams: --mandir='$(prefix)/share/man' --enable-ssl --enable-tcl CFLAGS=-O3 
  • climm/climm.spec

    r2394 r2434  
    11Summary:                text/line based ICQ client with many features%{?_without_tcl: [no Tcl]}%{?_without_ssl: [no SSL]}%{?_without_xmpp: [no XMPP]} 
    22Name:                   climm 
    3 Version:                0.6 
     3Version:                0.6.1 
    44Release:                1%{?_without_tcl:.notcl}%{?_without_ssl:.nossl}%{?_without_xmll:.noxmpp} 
    55Source:                 climm-%{version}.tgz 
     
    3030climm is still _the_ console based ICQ client. 
    3131       
    32 Authors: Matthew D. Smith (deceased) 
    33          RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 
     32Authors: RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 
     33         Matthew D. Smith (deceased; up to micq 0.4.8) 
     34 
     35%prep 
     36test $RPM_BUILD_ROOT != / && rm -rf $RPM_BUILD_ROOT 
     37 
     38%setup -q -n climm-%{version} 
     39 
     40%build 
     41%configure --disable-dependency-tracking CFLAGS=-O4 \ 
     42        %{!?_without_tcl:--enable-tcl}%{?_without_tcl:--disable-tcl} \ 
     43        %{!?_without_ssl:--enable-ssl}%{?_without_ssl:--disable-ssl} \ 
     44        %{!?_without_xmpp:--enable-xmpp}%{?_without_xmpp:--disable-xmpp} \ 
     45        --enable-autopackage 
     46make 
     47 
     48%install 
     49 
     50make install DESTDIR=$RPM_BUILD_ROOT 
     51%if %{?update_menus:1}%{!?update_menus:0} 
     52%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/menu 
     53cat << EOF > $RPM_BUILD_ROOT%{_libdir}/menu/climm 
     54?package(climm):needs=text section=Networking/ICQ \ 
     55  title="climm" command="%{_bindir}/climm" hints="ICQ client"\ 
     56  icon=%{_datadir}/pixmaps/climm.xpm 
     57EOF 
     58install -D -m 644 -p doc/climm.xpm $RPM_BUILD_ROOT%{_datadir}/pixmaps/climm.xpm 
     59%endif 
     60 
     61%clean 
     62test $RPM_BUILD_ROOT != / && rm -rf $RPM_BUILD_ROOT 
     63 
     64%files 
     65%defattr(-,root,root,0755) 
     66%doc NEWS AUTHORS FAQ README TODO COPYING COPYING-GPLv2 
     67%doc doc/README.i18n doc/README.logformat doc/README.ssl doc/example-climm-event-script 
     68%{_bindir}/* 
     69%{_datadir}/climm 
     70%if %{?update_menus:1}%{!?update_menus:0} 
     71%{_libdir}/menu/climm 
     72%{_datadir}/pixmaps/climm.xpm 
     73%endif 
     74%{_mandir}/man?/* 
     75%{_mandir}/*/man?/* 
     76 
     77%if %{?update_menus:1}%{!?update_menus:0} 
     78%post 
     79%{update_menus} || true 
     80 
     81%postun 
     82%{clean_menus} || true 
     83%endif 
    3484 
    3585%changelog 
     86* Sun Oct 14 2007 RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 
     87- new upstream release 0.6.1 
     88 
     89* Mon Sep 10 2007 RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 
     90- new upstream release 0.6 
     91 
    3692* Mon Jun 04 2007 RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 
    3793- new upstream release 0.5.4 
     
    98154- first RPM 
    99155 
    100 %prep 
    101 test $RPM_BUILD_ROOT != / && rm -rf $RPM_BUILD_ROOT 
    102  
    103 %setup -q -n climm-%{version} 
    104  
    105 %build 
    106 %configure --disable-dependency-tracking CFLAGS=-O4 \ 
    107         %{!?_without_tcl:--enable-tcl}%{?_without_tcl:--disable-tcl} \ 
    108         %{!?_without_ssl:--enable-ssl}%{?_without_ssl:--disable-ssl} \ 
    109         %{!?_without_xmpp:--enable-xmpp}%{?_without_xmpp:--disable-xmpp} \ 
    110         --enable-autopackage 
    111 make 
    112  
    113 %install 
    114  
    115 make install DESTDIR=$RPM_BUILD_ROOT 
    116 %if %{?update_menus:1}%{!?update_menus:0} 
    117 %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/menu 
    118 cat << EOF > $RPM_BUILD_ROOT%{_libdir}/menu/climm 
    119 ?package(climm):needs=text section=Networking/ICQ \ 
    120   title="climm" command="%{_bindir}/climm" hints="ICQ client"\ 
    121   icon=%{_datadir}/pixmaps/climm.xpm 
    122 EOF 
    123 install -D -m 644 -p doc/climm.xpm $RPM_BUILD_ROOT%{_datadir}/pixmaps/climm.xpm 
    124 %endif 
    125  
    126 %clean 
    127 test $RPM_BUILD_ROOT != / && rm -rf $RPM_BUILD_ROOT 
    128  
    129 %files 
    130 %defattr(-,root,root,0755) 
    131 %doc NEWS AUTHORS FAQ README TODO COPYING COPYING-GPLv2 
    132 %doc doc/README.i18n doc/README.logformat doc/README.ssl doc/example-climm-event-script 
    133 %{_bindir}/* 
    134 %{_datadir}/climm 
    135 %if %{?update_menus:1}%{!?update_menus:0} 
    136 %{_libdir}/menu/climm 
    137 %{_datadir}/pixmaps/climm.xpm 
    138 %endif 
    139 %{_mandir}/man?/* 
    140 %{_mandir}/*/man?/* 
    141  
    142 %if %{?update_menus:1}%{!?update_menus:0} 
    143 %post 
    144 %{update_menus} || true 
    145  
    146 %postun 
    147 %{clean_menus} || true 
    148 %endif 
  • climm/configure.ac

    r2407 r2434  
    55 
    66AC_PREREQ(2.59) 
    7 AC_INIT([climm], [0.6]) 
     7AC_INIT([climm], [0.6.1]) 
    88AC_CONFIG_SRCDIR([include/climm.h]) 
    99AC_CONFIG_LIBOBJ_DIR(replace) 
  • climm/debian/changelog

    r2393 r2434  
    1 climm (0.6-0) unstable; urgency=low 
     1climm (0.6.1-0) unstable; urgency=low 
    22 
    33  * New upstream version with new version. 
    44 
    5  -- RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de>  Mon, 08 Jul 2007 18:00:08 +0200 
     5 -- RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de>  Sun, 14 Oct 2007 12:00:00 +0200 
    66 
  • climm/src/buildmark.c

    r2419 r2434  
    3030 */ 
    3131 
    32 /*                         0.6.0.0 */ 
    33 #define CLIMM_BUILD_NUM 0x00060002 
     32/*                         0.6.1.0 */ 
     33#define CLIMM_BUILD_NUM 0x00060100 
    3434 
    3535#include "climm.h"