Changeset 2434
- Timestamp:
- 10/14/07 00:21:51 (3 years ago)
- Files:
-
- climm/ChangeLog (modified) (1 diff)
- climm/NEWS (modified) (1 diff)
- climm/README (modified) (1 diff)
- climm/climm.info (modified) (1 diff)
- climm/climm.spec (modified) (3 diffs)
- climm/configure.ac (modified) (1 diff)
- climm/debian/changelog (modified) (1 diff)
- climm/src/buildmark.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
climm/ChangeLog
r2392 r2434 1 1 -*- coding: utf-8 -*- 2 3 2007-10-14 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> 4 * 0.6.1 5 6 2007-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 19 2007-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 25 2007-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 36 2007-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 2 45 3 46 2007-09-07 RÃŒdiger Kuhlmann <info __at__ ruediger-kuhlmann __dot__ de> climm/NEWS
r2392 r2434 37 37 2007-06-10: 0.5.4.1: lots of bug fixes 38 38 2007-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 39 2007-09-06: 0.6: rename to climm - cli-based multi-messenger 40 2007-10-14: 0.6.1: climm/README
r2427 r2434 2 2 $Id$ -*- coding: utf-8 -*- 3 3 4 current stable version: 0.6 4 current stable version: 0.6.1 5 5 ==================================== 6 6 climm/climm.info
r2394 r2434 1 1 Package: climm 2 Version: 0.6 2 Version: 0.6.1 3 3 Revision: 1 4 4 ConfigureParams: --mandir='$(prefix)/share/man' --enable-ssl --enable-tcl CFLAGS=-O3 climm/climm.spec
r2394 r2434 1 1 Summary: text/line based ICQ client with many features%{?_without_tcl: [no Tcl]}%{?_without_ssl: [no SSL]}%{?_without_xmpp: [no XMPP]} 2 2 Name: climm 3 Version: 0.6 3 Version: 0.6.1 4 4 Release: 1%{?_without_tcl:.notcl}%{?_without_ssl:.nossl}%{?_without_xmll:.noxmpp} 5 5 Source: climm-%{version}.tgz … … 30 30 climm is still _the_ console based ICQ client. 31 31 32 Authors: Matthew D. Smith (deceased) 33 RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 32 Authors: RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 33 Matthew D. Smith (deceased; up to micq 0.4.8) 34 35 %prep 36 test $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 46 make 47 48 %install 49 50 make install DESTDIR=$RPM_BUILD_ROOT 51 %if %{?update_menus:1}%{!?update_menus:0} 52 %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/menu 53 cat << 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 57 EOF 58 install -D -m 644 -p doc/climm.xpm $RPM_BUILD_ROOT%{_datadir}/pixmaps/climm.xpm 59 %endif 60 61 %clean 62 test $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 34 84 35 85 %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 36 92 * Mon Jun 04 2007 RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> 37 93 - new upstream release 0.5.4 … … 98 154 - first RPM 99 155 100 %prep101 test $RPM_BUILD_ROOT != / && rm -rf $RPM_BUILD_ROOT102 103 %setup -q -n climm-%{version}104 105 %build106 %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-autopackage111 make112 113 %install114 115 make install DESTDIR=$RPM_BUILD_ROOT116 %if %{?update_menus:1}%{!?update_menus:0}117 %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/menu118 cat << EOF > $RPM_BUILD_ROOT%{_libdir}/menu/climm119 ?package(climm):needs=text section=Networking/ICQ \120 title="climm" command="%{_bindir}/climm" hints="ICQ client"\121 icon=%{_datadir}/pixmaps/climm.xpm122 EOF123 install -D -m 644 -p doc/climm.xpm $RPM_BUILD_ROOT%{_datadir}/pixmaps/climm.xpm124 %endif125 126 %clean127 test $RPM_BUILD_ROOT != / && rm -rf $RPM_BUILD_ROOT128 129 %files130 %defattr(-,root,root,0755)131 %doc NEWS AUTHORS FAQ README TODO COPYING COPYING-GPLv2132 %doc doc/README.i18n doc/README.logformat doc/README.ssl doc/example-climm-event-script133 %{_bindir}/*134 %{_datadir}/climm135 %if %{?update_menus:1}%{!?update_menus:0}136 %{_libdir}/menu/climm137 %{_datadir}/pixmaps/climm.xpm138 %endif139 %{_mandir}/man?/*140 %{_mandir}/*/man?/*141 142 %if %{?update_menus:1}%{!?update_menus:0}143 %post144 %{update_menus} || true145 146 %postun147 %{clean_menus} || true148 %endifclimm/configure.ac
r2407 r2434 5 5 6 6 AC_PREREQ(2.59) 7 AC_INIT([climm], [0.6 ])7 AC_INIT([climm], [0.6.1]) 8 8 AC_CONFIG_SRCDIR([include/climm.h]) 9 9 AC_CONFIG_LIBOBJ_DIR(replace) climm/debian/changelog
r2393 r2434 1 climm (0.6 -0) unstable; urgency=low1 climm (0.6.1-0) unstable; urgency=low 2 2 3 3 * New upstream version with new version. 4 4 5 -- RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> Mon, 08 Jul 2007 18:00:08+02005 -- RÃŒdiger Kuhlmann <info@ruediger-kuhlmann.de> Sun, 14 Oct 2007 12:00:00 +0200 6 6 climm/src/buildmark.c
r2419 r2434 30 30 */ 31 31 32 /* 0.6. 0.0 */33 #define CLIMM_BUILD_NUM 0x00060 00232 /* 0.6.1.0 */ 33 #define CLIMM_BUILD_NUM 0x00060100 34 34 35 35 #include "climm.h"
