summaryrefslogtreecommitdiff
path: root/chat
AgeCommit message (Collapse)AuthorFilesLines
2014-11-22update ircII to 20141122. main change is to revert the broken resize code.mrg2-6/+6
2014-11-21CGI:IRC 0.5.11mef2-10/+8
There's a new release out, including various browser bug fixes. Key handling fixes for WebKit, removed outline for Chrome. Made it more obvious when the stream is disconnected. Optional support for smilies (see cgiirc.config.full and docs/smilies.conf.example) Date: 24 September 2013 Author: dgl
2014-11-21(pkgsrc)mef4-25/+13
- remove patches/patch-ad. #include <utmp.h> does not exist any more. (upstream) - Update 4.22.9 to 4.22.10 2010-10-26 Roger <roger@jikos.cz> Disable standard printf() redefinition in yahoo_util.h Should fix #165 2010-10-23 Boris Petersen <transacid@gmail.com> Fix for CVE-2009-3720 in libjabber's xml parser 2010-10-19 Roger <roger@jikos.cz> Updated po files Merge branch 'mob' of git+ssh://repo.or.cz:22/srv/git/centerim into mob Yahoo - disable conference and file transfer support (it doesn't work anyway) Propper authorization and buzz events 2010-10-19 Boris Petersen <transacid@gmail.com> updated po files 2010-10-19 Roger <roger@jikos.cz> Yahoo - add buddy authentication 2010-10-11 Roger <roger@jikos.cz> Add missing initialization to get rid of some valgrind warnings 2010-10-07 Boris Petersen <transacid@gmail.com> updated po files 2010-10-07 Roger <roger@jikos.cz> Yahoo - implement missing callback stubs 2010-10-05 Boris Petersen <transacid@gmail.com> updated po files 2010-10-05 Roger <roger@jikos.cz> Yahoo - implement missing callbacks 2010-10-04 Roger <roger@jikos.cz> fix GNUTLS connection 2010-10-02 Roger <roger@jikos.cz> connwrap - initialize gnutls session in cw_connect connwrap - don't deinit gnutls session in cw_nb_connect on error, it's done in delsock 2010-09-16 Roger <roger@jikos.cz> Add missing sources to libyahoo2 makefile 2010-09-16 Boris Petersen <transacid@gmail.com> updated po files ignore .version file 2010-09-16 Roger <roger@jikos.cz> Port Yahoo to new libyahoo2-1.0.1 Disables file transfer (at least for now) Fix SSL context leak in connwrap 2010-08-27 Boris Petersen <transacid@gmail.com> Added gettext-devel test to autogen.sh 2010-08-27 Sven Putteneers <sven@tuxera.be> display received time if different from sent time Added script to extract a part of a chatlog history and pretty-print it. Run without parameters for usage info. 2010-07-31 Boris Petersen <transacid@gmail.com> adding new script for history formating. initial script by Ilya Sukhanov <ilya@sukhanov.net> 2010-06-19 Roger <roger@lv.(none)> Add missing initialization to perm/deny SNAC and don't overwrite its id in SBL parsing 2010-04-24 Boris Petersen <transacid@gmail.com> Merge git-version-gen with gnulib 2010-02-25 Damyan Yordanov <damyan@web.de> bulgarian translation updated 2010-02-25 Boris Petersen <transacid@gmail.com> updated po files 2010-02-21 Boris Petersen <transacid@gmail.com> refresh index before checking for dirty versions 2010-02-21 Damyan Yordanov <damyan@web.de> bulgarian translation updated 2010-02-18 Lubomir Rintel <lkundrak@v3.sk> Use RAND_add() with nss_compat_openssl It does not provide RAND_seed(). 2010-02-18 Boris Petersen <transacid@gmail.com> updated po files 2010-02-17 Roger <roger@lv.(none)> Better jabber presence handling 2010-02-05 Boris Petersen <transacid@gmail.com> Merge branch 'versioning' into mob 2010-02-05 Ahmed El-Mahmoudy <aelmahmoudy@sabily.org> Check for FriBidi using pkg-config New upstream releases of FriBidi don't provide fribidi-config anymore, so using pkg-config instead to check for FriBidi. 2010-01-31 Boris Petersen <transacid@gmail.com> new packaging friendlier versioning This basically omits the 4 hash digits at the end of the version string. so e.g.: centerim-4.22.9.12-3be3.tar.gz will end up centerim-4.22.9.12.tar.gz This makes it easier to package mobshot in gentoo for example. Updated po files 2010-01-29 Hakan Kvist <hagar@df.lth.se> Fixed compiler warnings in kkiproc.cc Removed unused function in kkiproc.cc and fixed compilewarnings regarding xprintf. stringstream << should be used instead of sprintf, and cout << instead of printf. Beacause: int64_t foo = 0xffffffffffffffff; printf (%lx, foo); printf will behave as expected on a 64 bit platform, but not on a 32 bit platform (only ffffffff will be printed). 2010-01-28 Hakan Kvist <hagar@df.lth.se> Cleanup of "extra protection" for ~/.centerim directory. Reverted some parts of the commits: e0ab4eeb52cdba438aa2834c4223881ab006b854 deb0cbaa7c385d2656229ac366071c090c55f597 See the discussion here: http://centerim.org/pipermail/centerim-devel/2009-June/000678.html If the ~/.centerim directory got the proper protection, then there is no need for bloating the code with a lot of extra verifications. No one else than the owner can access the files in ~/centerim anyway. Removal of unused variables Removed a couple of unused variables. There is still a lot to do if we want to be able to use -Wall for detecting real errors (currently there are too many warnings in the output, so -Wall isn't really useful). Ncurses RTFM. remove ugly prototypes for FreeBSD and OSX When reading the ncurses man page you find that _XOPEN_SOURCE_EXTENDED must be defined when using wide character functions when including ncurses.h. 2010-01-26 Hakan Kvist <hagar@df.lth.se> Try to fix FreeBSD ncurses compile errors. Tested on Ubuntu 9.04 and FreeBSD 7.2. Try to fix FreeBSD ncurses compile errors. Tested on Ubuntu 9.04 and FreeBSD 7.2. Try to fix FreeBSD ncurses compile errors. 2010-01-25 Hakan Kvist <hagar@df.lth.se> configure: check for ncurses/ncursesw. Only curses is not enough. Some platforms (i.e Solaris 11), still ships ancient curses. However centerim requires ncurses in order to compile. Adapted configure.ac to only check for ncurses(w) instead of (n)curses(w). Cleaned up #ifdefs in conscommon.h 2010-01-19 Hakan Kvist <hagar@df.lth.se> Fixed compiler error with FreeBSD. Also fixed link error against curseslib. FreeBSD do not want <utmp.h> to be included. However utmp is only used in linux, so we do not need to include utmp.h for non linux systems. Also bug in configure script was fixed. The curses-lib was not properly included in the $LIBS-variable in the configure.ac file. 2010-01-19 Boris Petersen <transacid@gmail.com> Better check for ncurses/ncursesw With many thanks to the autoconf archive for the macro and Stéphane "kjir" Bisinger for the pointers and hints ;) 2009-12-14 Boris Petersen <transacid@gmail.com> Updating Changelog for 4.22.9 2009-12-13 Boris Petersen <transacid@gmail.com> New taging model. To be up to date with gnulib's git-version-gen. WARNING: This breaks compatibility with non v* tags. For us that means everything before 4.22.9 won't work anymore.
2014-11-20Version 3.2.2:mef2-7/+6
- The OTR plugin now uses libotr 4.0 (AKA libotr5 in debian based distros) - Rejecting buddy requests in jabber won't accept them. Sorry for that. - Purple builds can now enable built in protocols when configuring, by passing a parameter such as --jabber=1 to configure - You can now use /oper to change passwords with "ac x set -del password" - Complex unicode characters (non-BMP) now display correctly in twitter. - A few init / build script / pkg-config fixes. Added "install-systemd" make target. Finished 5 Jul 2014 Version 3.2.1: - Most important change: http_client updated to use HTTP/1.1, now required by Twitter. - fill_by setting can now be used to fill a channel contacts *not* in a certain group/on a certain account/etc. See "help set fill_by" - Added utf8_nicks setting which lets you use non-ASCII nicknames for your contacts. Might not work with all IRC clients, use at your own risk! - Lots of bugfixes. Finished 27 Nov 2013
2014-11-14Update konversation to 1.5.1markd3-9/+11
* Fixed a bug causing wildcards in command alias replacement patterns not to be expanded. * Fixed a bug causing auto-joining of channels not starting in # or & to sometimes fail because the auto-join command was generated before we got the CHANTYPES pronouncement by the server. * Added a size sanity check for incoming Blowfish ECB blocks. The blind assumption of incoming blocks being the expected 12 bytes could lead to a crash or up to 11 byte information leak due to an out-of-bounds read. This fixes CVE-2014-8483. * Enabling SSL/TLS support for connections will now advertise the protocols Qt considers secure by default, instead of being hardcoded to TLSv1. * Fixed the bundled 'sysinfo' script not coping with empty lines in /etc/os-release. * Made disk space info in the bundled 'sysinfo' script more robust by forcing the C locale for 'df'. * Added an audio player type hint for Cantata to the bundled 'media' script. * Fixed some minor comparison logic errors turned up by static analysis. * Konversation now depends on KDE Platform v4.9.0 or higher.
2014-11-13Backport upstream commit to fix CVE-2014-8760. Bump PKGREVISION.fhajny3-3/+27
2014-11-07Revbump after updating boostadam2-4/+4
2014-11-02remove duplicated inet6 option.obache1-2/+2
2014-11-02Fixes unusual MESSAGE_SRC usage.obache2-10/+4
2014-11-01update to ircii 20141028. mostly, this fixes a resize bug.mrg2-6/+6
2014-10-27libgee was renamed to libgee0.6jnemeth1-2/+2
2014-10-25Rename libgee to libgee0.6prlw11-3/+3
2014-10-21Update to 4.0.1.gdt2-7/+13
21 Oct 2014: - Hardened Windows build - Fix max message size for Novell Groupwise - New Czech, Finnish, Brazilian Portuguese, Norwegian Bokmål translations. Updated French, Chinese translations. - Release 4.0.1
2014-10-21Update to 4.1.0.gdt2-7/+10
21 Oct 2014: - Release 4.1.0 - Modernized autoconf build system - Use constant-time comparisons where needed - Use gcrypt secure memory allocation - Correctly reject attempts to fragment a message into too many pieces - Fix a missing opdata when sending message fragments - Don't lose the first user message when REQUIRE_ENCRYPTION is set - Fix some memory leaks - Correctly check for children contexts' state when forgetting a context - API Changes: - Added API functions otrl_context_find_recent_instance and otrl_context_find_recent_secure_instance.
2014-10-19Revbump after lang/lua51 update.alnsn2-3/+4
2014-10-16Cache remote deps. This should help offline builds and prevent PLISTfhajny3-16/+28
changes if upstream updates one of the dependencies. Clean up and reorder Makefile for better readability.
2014-10-15Sync PLIST with installation. Bump revision.joerg2-3/+5
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz15-44/+15
2014-10-07Revbump after updating libwebp and icuadam10-20/+20
2014-10-05Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings.wiz1-1/+3
2014-09-30Update irssi-icb to version 0.15. Requested during the freeze by agc, asjperkin17-854/+72
the version number accidentally went backwards in the last irssi update. This release mainly incorporates most of the pkgsrc patches into the upstream tarball, so the only real change of note is that /beep output has been fixed.
2014-09-24Avoid "error: call of overloaded <func> is ambiguous".jperkin2-1/+17
2014-09-23Don't include termcap.h on SunOS.jperkin2-76/+80
2014-09-23Fix build on SunOS when epoll is available.jperkin2-1/+18
2014-09-19Fix build with boost-1.56.0. From upstream git.wiz4-1/+49
2014-09-11Use LOGIN_NAME_MAX instead of MAXLOGNAME, and don't rely on __unuseddholland4-1/+65
existing. Should improve non-NetBSD builds.
2014-09-08SunOS needs -liconv.jperkin1-2/+2
2014-09-07Update telepathy-glib to 0.24.1prlw13-11/+12
telepathy-glib 0.24.1 (2014-08-25) ================================== Fixes: * base-client: fix potential uninitialized variable bug (Guillaume) * Fix a potential crash in contact-list example (fd.o #79006, Guillaume) telepathy-glib 0.24.0 (2014-03-26) ================================== The "space Tolkien" release. Fixes since 0.23.3: * don't leak every D-Bus method call result, a regression in 0.23.1 (Simon) telepathy-glib 0.23.3 (2014-03-18) ================================== This is the release candidate for the future 0.24.0 stable release. Enhancements: * TpProtocol gained API to access to its immutable properties as a GVariant. (fd.o #55108, Guillaume) * TpCallStream and TpCallContent now inherit the factory from their TpCallChannel. (fd.o #76168, Guillaume) Fixes: * fix a memory leak when cleaning up TpProxy "prepare" requests (fd.o #76000, Simon) * fix a memory leak for paths to contacts' avatar data (fd.o #76000, Simon) * fix crashes in TpFileTransferChannel with GLib 2.39 (fd.o #72319, Xavier) * fix some paths memory leaks (fd.o #76119, Guillaume) * tp_list_connection_managers_async() now terminates properly if there is no CM installed. (fd.o #68892, Guillaume) telepathy-glib 0.23.2 (2014-02-26) ================================== Enhancements: * TpBaseConnection now has an "account-path-suffix" property (fd.o #74030, Xavier) * New high level TpAccountChannelRequest API, including tubes, Conference and SMSChannel. (fd.o #75450, Guillaume) * 'TargetHandleType: None' is now automatically added when requesting a channel with TpAccountChannelRequest if no handle type has been defined. (fd.o #75450, Guillaume) telepathy-glib 0.23.1 (2014-02-04) ================================== The "undead space elves" release. Dependencies: * GLib 2.36 or later is required Deprecations: * TpPresenceMixin: optional arguments are deprecated, apart from a string named "message". This matches our current D-Bus API. Enhancements: * tp_protocol_normalize_contact_async(), tp_protocol_identify_account_async(), and high-level API for the Protocol Addressing and Presence interfaces (fd.o #71048, Simon) * More accessors for TpPresenceStatusSpec, which is now a boxed type (fd.o #71048, Simon) * tp_connection_manager_param_dup_variant_type() (fd.o #71093, Simon) * Better debug output (fd.o #68390, #71048; Simon) Fixes: * In the examples, specifically ask for "TelepathyGlib-0.12" (this API version), not Telepathy 1.0 (fd.o #49737, Simon) * Improve tests' isolation from the real session bus (Xavier) * Fix a critical warning for each new connection under GLib 2.39 (fd.o #72303, Xavier) * Fix some possible crashes in file transfer channels, particularly under GLib 2.39 (fd.o #72319, Xavier) * Correct tp_account_request_set_avatar documentation (Xavier) * Fix a TpConnection reference-leak in TpBaseClient (Guillaume) telepathy-glib 0.23.0 (2013-10-28) ================================== We no longer guarantee compatible upgrades within a development (odd) branch, see README for details. Dependencies: * GLib 2.34 or later is required. Enhancements: * Spec 0.27.3 - added Conn.I.Sidecars1 - added Conn.I.Renaming - added CD.I.Messages1 * TpAccount::avatar-changed signal (fd.o #52938, Guillaume) * tp_value_array_free: equivalent of g_value_array_free but does not provoke deprecation warnings from GLib (fd.o #69849, Simon) * tp_account_is_prepared and tp_account_manager_is_prepared are now deprecated (Guillaume) Fixes: * tp_contact_set_attributes: don't warn on genuinely absent interfaces (fd.o #68149, Simon) * channel-group: don't crash if no message has been provided (Guillaume) telepathy-glib 0.22.0 (2013-10-02) ================================== The "don't starve" release. This is a new stable branch, recommended for use with GNOME 3.10. Fixes since 0.21.2: * When an avatar is downloaded, announce the change to the avatar token immediately; if the avatar changes from A to B while we're still doing the asynchronous file saving, don't set A as the new avatar when it has been saved. Regression in 0.21.2. (fd.o #70010, Simon) * Don't crash if the AccountManager returns an incorrect type for the Avatar (fd.o #69849, Simon) Significant changes since the previous stable branch, 0.20.x: * tp_connection_get_self_contact() now returns NULL if the contact's connection has been invalidated, in order to break a reference cycle * Avatars are saved to the cache asynchronously * TpBaseConnection implements SelfID, SelfContactChanged according to telepathy-spec 0.27.2 * TpAccount:uri-schemes property, with change notification requiring Mission Control 5.15+ telepathy-glib 0.21.2 (2013-09-24) ================================== The "always another thing" release. Enhancements: * Writing avatars into cache now uses asynchronous I/O. (fd.o #63402; Luca Versari, Chandni Verma, Simon McVittie) * telepathy-spec 0.27.2 - add SelfID, SelfContactChanged * tp_dbus_properties_mixin_dup_all() is now public (fd.o #69283, Simon) * TpBaseProtocol now lists Presence.Statuses as an immutable property. (fd.o #69520, Guillaume) * TpBaseConnection: Implement SelfID and SelfContactChanged as defined in spec 0.27.2. (Xavier) * The inspect-cm example now inspects all CMs if run without arguments (fd.o #68390, Simon) Fixes: * Don't crash if GetContactInfo() fails (fd.o #46430, Guillaume) * Fix a race condition that could result in telepathy-haze protocol support not being detected (fd.o #67183, Simon) * Fix documentation for tp_connection_get_self_handle (Emilio) * Make TpHeap work correctly with GComparator functions that return values outside {-1, 0, 1} (fd.o #68932, Debarshi Ray) * Examples have been updated to use more recent API (Simon) * Better debug-logging (fd.o #68390, Simon) telepathy-glib 0.21.1 (2013-06-20) ================================== The "imperative tense" release. Fixes: * Fix a wrong introspection annotation on tp_debug_client_get_messages_finish() that would lead to use-after-free (fd.o #65518, Simon) * Isolate regression tests better (fd.o #63119, Simon) * Explicitly annotate tp_account_update_parameters_finish()'s 'unset_parameters' argument to be a NULL-terminated string array. It was previously incorrectly inferred to be a string, for some reason. (wjt) * Always flag delivery reports with Non_Text_Content. (fd.o #61254, wjt) * Don't announce legacy Group channels twice (fd.o #52011; Jonny, Simon) * Don't crash if a broken connection manager signals a TLSCertificate with no CertificateChainData, just invalidate the channel (fd.o #61616, Guillaume) * Adjust regression tests so we can distcheck under Automake 1.13, and various other build-system updates (fd.o #65517, Simon) telepathy-glib 0.21.0 (2013-04-03) ================================== The "if only it was JS code" release. This starts a new development branch. Enhancements: # Code-generation now copes with ${PYTHON} being set to Python 3 (e.g. "./configure PYTHON=python3" on Debian); Python 2 remains fully supported (fd.o #56758, Simon) # Add uri-schemes property on TpAccount, with notify::uri-schemes emitted if using a recent AcountManager like Mission Control 5.15 or later (Guillaume) Fixes: # Remove the pkg-config dependency from .pc files (Will) # Don't emit the NewChannels signal twice for the obsolete ContactList GROUP channels (fd.o #52011, Simon) # Fix refcycle preventing TpConnection objects to be freed. This theoretically introduce a behaviour change of tp_connection_get_self_contact() that now returns NULL when the connection as been invalidated. (fd.o #63027, Xavier) Deprecations: # tp_g_key_file_get_int64, tp_g_key_file_get_uint64 (use the corresponding functions from GLib >= 2.26)
2014-09-02update to ircii 20140831. minor bug fix release: netbsd 5.x builds again,mrg2-7/+6
minor server connection and option parsing bugs fixed.
2014-08-26Needs pkg-config.joerg1-2/+2
2014-08-25Fix build under NetBSD (and Linux?).tron1-2/+2
2014-08-25Fix build under Mac OS X and add missing buildlink dependences. Bumptron1-1/+5
package revision because the wrong OpenSSL library might have been used on various platforms before.
2014-08-25update to ircII 20140824.mrg4-33/+19
main changes are significant internal cleanup, dozens of minor bug fixes, and two new major features: connect via HTTP proxy, and connect to SSL IRC servers.
2014-08-24Updates chat/weechat to 1.0tonio10-110/+48
New major features in this release: - plugin "trigger": Swiss Army knife for WeeChat (replaces "rmodifier" plugin) - plugin "exec": execute external commands (replaces script "shell.py") - bare display: easy click on long URLs and text selection with mouse - support of environment variables in /set command - hidden buffers - negated tags in filters - toggle of filters in specific buffers - flexible conditions for adding/removing buffers in hotlist - text search in buffers with free content - support of wildcard "*" inside masks - support of nested variables in evaluated expressions - tag with host in IRC messages displayed - support of "away-notify" IRC capability - IRC commands: /allpv, /remove, /unquiet - bar items: buffer_short_name, irc_nick_modes
2014-08-22Bump PKGREVISION for ilmbase shlib major bump.wiz4-8/+8
2014-08-21Use a complete set of command line options for executing "flock" to maketron3-12/+23
"ejabberctl" work with NetBSD 7.0's flock(1) as well.
2014-08-13Revbump after boost-libs updateadam2-4/+4
2014-08-03Switch to webkit1-gtk* in preparation for package update to v2.wiz1-2/+2
Packages can switch to that version when they're tested to build with it.
2014-07-31Control script relies on $HOME, so 'su -m' will not cut it. Changed to justfhajny3-6/+10
su in the rc.d script and adjusted the SMF manifest similarly. Bump PKGREVISION. Fixes pkg/49052.
2014-07-30Update ejabberd to 14.07.fhajny4-103/+79
* SIP - SIP Outbound (RFC 5626) support - New option always_record_route - New options record_route and routes * Carbon Copy (XEP-0280) - Don't log MUC messages with hint - Don't carbon copy messages with hint - Let is_carbon_copy/1 recognize carbons - Don't send XEP-0280 v1 copies back to sender * Stream Management (XEP-0198) - XEP-0198: Terminate session if stanza queue becomes too large - XEP-0198: Don't exit on socket send failure - XEP-0198: Don't drop session on failed resume - XEP-0198: Check whether routed packets are stanzas * Riak - Riak support * Install and config - New options log_rotate_count, log_rotate_size and log_rate_limit - html guide is now generated when building source tarball - Use p1_utils, and move treap.erl to p1_utils - Get rid of p1_mnesia file - old release notes are not installed anymore - Don't "forget" listener options - Always enable STUN at compile time - Do not check for Erlang apps at configure time - Add --enable-riak configure flag * Tests - Add tests for stream management - Add tests for mod_carboncopy - Add tests for mod_caps - Improve MUC test cases - Travis CI: Enable Riak tests - Add Riak backend to the testing suit - The test suite no longer fails without --enable-transient_supervisors. * MUC - MUC messages with ~ were not logged (EJAB-1696).
2014-07-25Ensure we pass through LDFLAGS, fixes check-shlibs.jperkin2-5/+8
2014-07-14SunOS needs -D__EXTENSIONS__ for struct sockaddr_storage.jperkin1-1/+3
2014-07-09Stop defining _XOPEN_SOURCE past 600 on SunOS.jperkin2-1/+17
2014-07-01Remove unused configure script (3rd party bundled software) to satisfypettai1-1/+4
pkgsrc build checks
2014-06-29Add missing openssl buildlink, appeared in linux bulk builddholland1-1/+3
2014-06-29Add hacks to (hopefully) fix MacOS build.dholland1-1/+9
2014-06-19Add lang/lua/tool.mk to fix build with lang/lua52.fhajny1-1/+2
2014-06-15Added chat/psybncpettai1-1/+2
2014-06-15psyBNC is an easy-to-use, multi-user, permanent IRC-Bouncer with many features.pettai7-0/+245
Some of its features include symmetric ciphering of talk and connections (Blowfish and IDEA), the possibility of linking multiple bouncers to an internal network including a shared partyline, vhost- and relay support to connected bouncers and an extensive online help system.
2014-06-14fix SMF Manifest installation by not overwriting INSTALLATION_DIRSwiedi1-2/+2