summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin V. Arkhipov <voxus@gentoo.org>2005-10-01 14:58:52 +0000
committerKonstantin V. Arkhipov <voxus@gentoo.org>2005-10-01 14:58:52 +0000
commit4054a3db4beda364bf7685cef79412d449f4c597 (patch)
tree2d279e6e54779aee8c4aaead9dd9b0564d4e722c /net-im/licq/files
parentMasking ruby per security bug #106996 (diff)
downloadgentoo-2-4054a3db4beda364bf7685cef79412d449f4c597.tar.gz
gentoo-2-4054a3db4beda364bf7685cef79412d449f4c597.tar.bz2
gentoo-2-4054a3db4beda364bf7685cef79412d449f4c597.zip
* bump and cleanups
(Portage version: 2.0.52-r1)
Diffstat (limited to 'net-im/licq/files')
-rw-r--r--net-im/licq/files/1.3.0-include_iconv.patch10
-rw-r--r--net-im/licq/files/1.3.0-koloboks.patch59
-rw-r--r--net-im/licq/files/1.3.0-missing_chars.patch10
-rw-r--r--net-im/licq/files/1.3.0-msnpacket_sync.patch11
-rw-r--r--net-im/licq/files/1.3.0-save_koloboks.patch18
-rw-r--r--net-im/licq/files/digest-licq-1.3.0-r32
-rw-r--r--net-im/licq/files/digest-licq-1.3.0-r42
-rw-r--r--net-im/licq/files/digest-licq-1.3.0-r53
-rw-r--r--net-im/licq/files/digest-licq-1.3.0-r63
-rw-r--r--net-im/licq/files/digest-licq-1.3.0-r74
-rw-r--r--net-im/licq/files/digest-licq-1.3.0-r85
-rw-r--r--net-im/licq/files/digest-licq-1.3.2_rc11
12 files changed, 1 insertions, 127 deletions
diff --git a/net-im/licq/files/1.3.0-include_iconv.patch b/net-im/licq/files/1.3.0-include_iconv.patch
deleted file mode 100644
index e62430ee00eb..000000000000
--- a/net-im/licq/files/1.3.0-include_iconv.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/translate.cpp 2005-07-14 23:03:29.000000000 +0400
-+++ src/translate.cpp 2005-07-14 23:03:37.000000000 +0400
-@@ -22,6 +22,7 @@
- extern int errno;
- #endif
- #include <string.h>
-+#include <iconv.h>
-
- #include "licq_translate.h"
- #include "licq_log.h"
diff --git a/net-im/licq/files/1.3.0-koloboks.patch b/net-im/licq/files/1.3.0-koloboks.patch
deleted file mode 100644
index 99337fe4e6a1..000000000000
--- a/net-im/licq/files/1.3.0-koloboks.patch
+++ /dev/null
@@ -1,59 +0,0 @@
---- src/mainwin.h 2005-07-03 14:46:37.500823472 +0400
-+++ src~/mainwin.h 2005-07-03 14:47:49.051946048 +0400
-@@ -137,6 +137,7 @@
- m_bAutoPosReplyWin,
- m_bAutoSendThroughServer,
- m_bEnableMainwinMouseMovement,
-+ m_bShowKoloboks,
- m_bPopEmail,
- m_bPopPhone,
- m_bPopFax,
---- src/mlview3.cpp 2005-07-03 14:46:37.501823320 +0400
-+++ src~/mlview3.cpp 2005-07-03 14:48:38.163479960 +0400
-@@ -83,7 +83,8 @@
- // not used for html now QString text = QStyleSheet::escape(s);
- QString text = useHTML ? s: QStyleSheet::escape(s);
-
-- gMainWindow->emoticons->ParseMessage(text);
-+ if (gMainWindow->m_bShowKoloboks)
-+ gMainWindow->emoticons->ParseMessage(text);
-
- // We must hightlight URLs at this step, before we convert
- // linebreaks to richtext tags and such. Also, check to make sure
---- src/optionsdlg.cpp 2005-07-03 14:46:37.502823168 +0400
-+++ src~/optionsdlg.cpp 2005-07-03 14:50:13.186034336 +0400
-@@ -240,6 +240,7 @@
- chkFlashTaskbar->setChecked(mainwin->m_bFlashTaskbar);
- chkAutoSendThroughServer->setChecked(mainwin->m_bAutoSendThroughServer);
- chkEnableMainwinMouseMovement->setChecked(mainwin->m_bEnableMainwinMouseMovement);
-+ chkShowKoloboks->setChecked(mainwin->m_bShowKoloboks);
- popEmail->setChecked(mainwin->m_bPopEmail);
- popPhone->setChecked(mainwin->m_bPopPhone);
- popFax->setChecked(mainwin->m_bPopFax);
-@@ -533,6 +534,7 @@
- mainwin->m_bFlashTaskbar = chkFlashTaskbar->isChecked();
- mainwin->m_bAutoSendThroughServer = chkAutoSendThroughServer->isChecked();
- mainwin->m_bEnableMainwinMouseMovement = chkEnableMainwinMouseMovement->isChecked();
-+ mainwin->m_bShowKoloboks = chkShowKoloboks->isChecked();
-
- mainwin->m_bPopEmail= popEmail->isChecked();
- mainwin->m_bPopPhone= popPhone->isChecked();
-@@ -813,6 +815,8 @@
- chkEnableMainwinMouseMovement = new QCheckBox(tr("Allow dragging main window"), boxMainWin);
- QWhatsThis::add(chkEnableMainwinMouseMovement, tr("Lets you drag around the main window "
- "with your mouse"));
-+ chkShowKoloboks = new QCheckBox(tr("Show graphical smiles instead of text ones"), boxMainWin);
-+ QWhatsThis::add(chkShowKoloboks, tr("Lets you see only text messages, without any emotional icons"));
-
- chkMsgChatView = new QCheckBox(tr("Chatmode Messageview"), boxMainWin);
- QWhatsThis::add(chkMsgChatView, tr("Show the current chat history in Send Window"));
---- src/optionsdlg.h 2005-07-03 14:46:37.502823168 +0400
-+++ src~/optionsdlg.h 2005-07-03 14:50:41.079793840 +0400
-@@ -92,6 +92,7 @@
- *chkAlwaysShowONU, *chkScrollBar, *chkShowExtIcons,
- *chkSysBack, *chkSendFromClipboard, *chkMsgChatView, *chkAutoPosReplyWin,
- *chkFlashTaskbar, *chkAutoSendThroughServer, *chkTabbedChatting,
-+ *chkShowKoloboks,
- *chkEnableMainwinMouseMovement, *chkShowHistory;
- QRadioButton *rdbDockDefault, *rdbDockThemed, *rdbDockSmall;
- QComboBox *cmbDockTheme, *cmbSortBy;
diff --git a/net-im/licq/files/1.3.0-missing_chars.patch b/net-im/licq/files/1.3.0-missing_chars.patch
deleted file mode 100644
index 9c12ffcd6bcb..000000000000
--- a/net-im/licq/files/1.3.0-missing_chars.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/icqpacket.cpp 2005-07-14 23:13:54.000000000 +0400
-+++ src/icqpacket.cpp 2005-07-14 23:15:23.988169456 +0400
-@@ -4385,6 +4385,7 @@
- // buffer->PackUnsignedShort(0x0021);
- if (Channel() == ICQ_CHNxNONE)
- {
-+ buffer->PackUnsignedShort(m_nMsgLen);
- buffer->Pack(m_szMessage, m_nMsgLen);
- }
- else
diff --git a/net-im/licq/files/1.3.0-msnpacket_sync.patch b/net-im/licq/files/1.3.0-msnpacket_sync.patch
deleted file mode 100644
index 33dec5264f5d..000000000000
--- a/net-im/licq/files/1.3.0-msnpacket_sync.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- plugins/msn/src/msnpacket.h.orig 2005-03-20 18:48:11.000000000 +0300
-+++ plugins/msn/src/msnpacket.h 2005-03-20 18:48:19.000000000 +0300
-@@ -36,7 +36,7 @@
- const unsigned short Command() { return 0; }
- const unsigned short SubSequence() { return 0; }
- const unsigned short SubCommand() { return 0; }
-- const unsigned long Sequence() { return m_nSequence; }
-+ const unsigned short Sequence() { return m_nSequence; }
- const char* MSNCommand() { return m_szCommand; }
-
- virtual void InitBuffer();
diff --git a/net-im/licq/files/1.3.0-save_koloboks.patch b/net-im/licq/files/1.3.0-save_koloboks.patch
deleted file mode 100644
index 8119c9bfd5b3..000000000000
--- a/net-im/licq/files/1.3.0-save_koloboks.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/mainwin.cpp 2005-07-14 22:37:55.000000000 +0400
-+++ src/mainwin.cpp 2005-07-14 22:55:57.000000000 +0400
-@@ -441,6 +441,7 @@
- licqConf.ReadBool("AutoPosReplyWin", m_bAutoPosReplyWin, true);
- licqConf.ReadBool("AutoSendThroughServer", m_bAutoSendThroughServer, false);
- licqConf.ReadBool("EnableMainwinMouseMovement", m_bEnableMainwinMouseMovement, true);
-+ licqConf.ReadBool("ShowEmoticons", m_bShowKoloboks, true);
- licqConf.ReadNum("ChatMessageStyle", m_nMsgStyle, 0);
- licqConf.ReadBool("ChatAppendLinebreak", m_bAppendLineBreak, true);
- licqConf.ReadBool("FlashTaskbar", m_bFlashTaskbar, true);
-@@ -3549,6 +3550,7 @@
- licqConf.WriteBool("AutoPosReplyWin", m_bAutoPosReplyWin);
- licqConf.WriteBool("AutoSendThroughServer", m_bAutoSendThroughServer);
- licqConf.WriteBool("EnableMainwinMouseMovement", m_bEnableMainwinMouseMovement);
-+ licqConf.WriteBool("ShowEmoticons", m_bShowKoloboks);
- licqConf.WriteBool("FlashTaskbar", m_bFlashTaskbar);
-
- licqConf.WriteNum("ChatMessageStyle", m_nMsgStyle);
diff --git a/net-im/licq/files/digest-licq-1.3.0-r3 b/net-im/licq/files/digest-licq-1.3.0-r3
deleted file mode 100644
index 574dbf4158e6..000000000000
--- a/net-im/licq/files/digest-licq-1.3.0-r3
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 c1b05d1078b9826273191c05d0d1a969 licq-1.3.0.tar.bz2 4284325
-MD5 9d27f4422743c4c5aadb8bd5f5a84466 licq-branch-update-20050315.patch.bz2 27952
diff --git a/net-im/licq/files/digest-licq-1.3.0-r4 b/net-im/licq/files/digest-licq-1.3.0-r4
deleted file mode 100644
index 574dbf4158e6..000000000000
--- a/net-im/licq/files/digest-licq-1.3.0-r4
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 c1b05d1078b9826273191c05d0d1a969 licq-1.3.0.tar.bz2 4284325
-MD5 9d27f4422743c4c5aadb8bd5f5a84466 licq-branch-update-20050315.patch.bz2 27952
diff --git a/net-im/licq/files/digest-licq-1.3.0-r5 b/net-im/licq/files/digest-licq-1.3.0-r5
deleted file mode 100644
index c08397616e88..000000000000
--- a/net-im/licq/files/digest-licq-1.3.0-r5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 c1b05d1078b9826273191c05d0d1a969 licq-1.3.0.tar.bz2 4284325
-MD5 9d27f4422743c4c5aadb8bd5f5a84466 licq-branch-update-20050315.patch.bz2 27952
-MD5 b759d989af1f3c13ff3c50260d4fa8ac licq-branch-update-20050703.patch.bz2 89285
diff --git a/net-im/licq/files/digest-licq-1.3.0-r6 b/net-im/licq/files/digest-licq-1.3.0-r6
deleted file mode 100644
index c08397616e88..000000000000
--- a/net-im/licq/files/digest-licq-1.3.0-r6
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 c1b05d1078b9826273191c05d0d1a969 licq-1.3.0.tar.bz2 4284325
-MD5 9d27f4422743c4c5aadb8bd5f5a84466 licq-branch-update-20050315.patch.bz2 27952
-MD5 b759d989af1f3c13ff3c50260d4fa8ac licq-branch-update-20050703.patch.bz2 89285
diff --git a/net-im/licq/files/digest-licq-1.3.0-r7 b/net-im/licq/files/digest-licq-1.3.0-r7
deleted file mode 100644
index e1518eec9538..000000000000
--- a/net-im/licq/files/digest-licq-1.3.0-r7
+++ /dev/null
@@ -1,4 +0,0 @@
-MD5 c1b05d1078b9826273191c05d0d1a969 licq-1.3.0.tar.bz2 4284325
-MD5 9d27f4422743c4c5aadb8bd5f5a84466 licq-branch-update-20050315.patch.bz2 27952
-MD5 b759d989af1f3c13ff3c50260d4fa8ac licq-branch-update-20050703.patch.bz2 89285
-MD5 997a8b5998d9a94c54b6703df7b345ad licq-branch-update-20050803.patch.bz2 18636
diff --git a/net-im/licq/files/digest-licq-1.3.0-r8 b/net-im/licq/files/digest-licq-1.3.0-r8
deleted file mode 100644
index 4afcf76c2112..000000000000
--- a/net-im/licq/files/digest-licq-1.3.0-r8
+++ /dev/null
@@ -1,5 +0,0 @@
-MD5 c1b05d1078b9826273191c05d0d1a969 licq-1.3.0.tar.bz2 4284325
-MD5 9d27f4422743c4c5aadb8bd5f5a84466 licq-branch-update-20050315.patch.bz2 27952
-MD5 b759d989af1f3c13ff3c50260d4fa8ac licq-branch-update-20050703.patch.bz2 89285
-MD5 997a8b5998d9a94c54b6703df7b345ad licq-branch-update-20050803.patch.bz2 18636
-MD5 ac6eee5df001ee4cb29dbf1ea915d83c licq-branch-update-20050902.patch.bz2 11820
diff --git a/net-im/licq/files/digest-licq-1.3.2_rc1 b/net-im/licq/files/digest-licq-1.3.2_rc1
new file mode 100644
index 000000000000..e73c24bb40c0
--- /dev/null
+++ b/net-im/licq/files/digest-licq-1.3.2_rc1
@@ -0,0 +1 @@
+MD5 de36241e1465988c3550693d99e0c624 licq-1.3.2RC1.tar.bz2 3744071