[Pkg-privacy-commits] [libotr] 133/225: Imported Debian patch 3.0.0-1
Ximin Luo
infinity0 at moszumanska.debian.org
Sat Aug 22 12:45:12 UTC 2015
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch master
in repository libotr.
commit 285feb679aab5f3e325e25ed10a2afc923bee018
Merge: c8c90eb 2fc878e
Author: Thibaut VARENE <varenet at debian.org>
Date: Sat Nov 19 00:08:41 2005 +0100
Imported Debian patch 3.0.0-1
ChangeLog | 157 +++
Makefile.am | 2 +-
Makefile.in | 2 +-
NEWS | 36 +-
Protocol | 512 -------
Protocol-v2.html | 1196 +++++++++++++++++
README | 12 +-
configure | 4 +-
configure.ac | 4 +-
debian/changelog | 7 +
debian/control | 20 +-
debian/docs | 2 +-
...libotr1-bin.copyright => libotr2-bin.copyright} | 4 +-
debian/{libotr1-bin.dirs => libotr2-bin.dirs} | 0
.../{libotr1-bin.install => libotr2-bin.install} | 0
...libotr1-dev.copyright => libotr2-dev.copyright} | 4 +-
debian/{libotr1-dev.dirs => libotr2-dev.dirs} | 0
.../{libotr1-dev.install => libotr2-dev.install} | 0
debian/{libotr1.copyright => libotr2.copyright} | 4 +-
debian/{libotr1.dirs => libotr2.dirs} | 0
debian/{libotr1.install => libotr2.install} | 0
libotr.m4 | 18 +-
packaging/fedora/libotr.spec | 113 +-
src/Makefile.am | 4 +-
src/Makefile.in | 17 +-
src/auth.c | 1413 ++++++++++++++++++++
src/auth.h | 157 +++
src/b64.c | 63 +
src/b64.h | 15 +
src/context.c | 107 +-
src/context.h | 88 +-
src/dh.c | 237 +++-
src/dh.h | 42 +-
src/mem.c | 10 +-
src/message.c | 1200 ++++++++++-------
src/message.h | 48 +-
src/{version.h => privkey-t.h} | 22 +-
src/privkey.c | 250 +++-
src/privkey.h | 33 +-
src/proto.c | 778 ++++-------
src/proto.h | 153 ++-
src/serial.h | 85 ++
src/tlv.c | 11 +-
src/tlv.h | 11 +-
src/userstate.h | 4 +-
src/version.h | 6 +-
toolkit/otr_modify.c | 2 +-
toolkit/otr_parse.c | 77 +-
toolkit/otr_readforge.c | 2 +-
toolkit/otr_remac.c | 28 +-
toolkit/otr_toolkit.1 | 8 +-
toolkit/parse.c | 222 ++-
toolkit/parse.h | 63 +-
53 files changed, 5316 insertions(+), 1937 deletions(-)
diff --cc debian/changelog
index 8dd5887,0000000..ee1ae79
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,26 -1,0 +1,33 @@@
++libotr (3.0.0-1) unstable; urgency=low
++
++ * New upstream release (closes: #337851)
++ * Support for OTR protocol version 2
++
++ -- Thibaut VARENE <varenet at debian.org> Sat, 19 Nov 2005 00:08:41 +0100
++
+libotr (2.0.2-1) unstable; urgency=high
+
+ * New upstream release
+ * Fixes a potential security issue (buffer overflow in src/privkey.c)
+
+ -- Thibaut VARENE <varenet at debian.org> Mon, 16 May 2005 18:53:59 +0200
+
+libotr (2.0.1-1) unstable; urgency=low
+
+ * New upstream release
+ * First Debian upload (closes: #291261)
+
+ -- Thibaut VARENE <varenet at debian.org> Wed, 23 Feb 2005 20:20:06 +0100
+
+libotr (2.0.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- OTR Dev Team <otr at cypherpunks.ca> Tue, 08 Feb 2005 15:00:13 -0500
+
+libotr (1.99.0-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- OTR Dev Team <otr at cypherpunks.ca> Wed, 02 Feb 2005 09:37:01 -0500
+
diff --cc debian/control
index f9738c1,0000000..ade90b0
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,81 -1,0 +1,83 @@@
+Source: libotr
+Section: libs
+Priority: optional
+Maintainer: Thibaut VARENE <varenet at debian.org>
+Build-Depends: debhelper (>= 4.0.0), libgpg-error-dev (>= 1.0), libgcrypt11-dev (>= 1.2.0)
- Standards-Version: 3.6.1
++Standards-Version: 3.6.2
+
- Package: libotr1
++Package: libotr2
+Section: libs
+Architecture: any
- Depends: libotr1-bin (>= ${Source-Version}), ${shlibs:Depends}
++Depends: ${shlibs:Depends}
++Recommends: libotr2-bin (>= ${Source-Version})
+Replaces: libotr0
+Description: Off-the-Record Messaging library
+ Off-the-Record (OTR) Messaging Library and Toolkit
+ .
+ OTR allows you to have private conversations over IM by providing:
+ - Encryption
+ - No one else can read your instant messages.
+ - Authentication
+ - You are assured the correspondent is who you think it is.
+ - Deniability
+ - The messages you send do _not_ have digital signatures that are
+ checkable by a third party. Anyone can forge messages after a
+ conversation to make them look like they came from you. However,
+ _during_ a conversation, your correspondent is assured the messages
+ he sees are authentic and unmodified.
+ - Perfect forward secrecy
+ - If you lose control of your private keys, no previous conversation
+ is compromised.
+
- Package: libotr1-bin
++Package: libotr2-bin
+Section: misc
+Architecture: any
+Depends: ${shlibs:Depends}
++Conflicts: libotr1-bin
++Replaces: libotr1-bin
+Description: toolkit for Off-the-Record Messaging library
+ Off-the-Record (OTR) Messaging Library toolkit
+ .
+ OTR allows you to have private conversations over IM by providing:
+ - Encryption
+ - No one else can read your instant messages.
+ - Authentication
+ - You are assured the correspondent is who you think it is.
+ - Deniability
+ - The messages you send do _not_ have digital signatures that are
+ checkable by a third party. Anyone can forge messages after a
+ conversation to make them look like they came from you. However,
+ _during_ a conversation, your correspondent is assured the messages
+ he sees are authentic and unmodified.
+ - Perfect forward secrecy
+ - If you lose control of your private keys, no previous conversation
+ is compromised.
+ .
+ This package contains the program files for the OTR library.
+
- Package: libotr1-dev
++Package: libotr2-dev
+Section: libdevel
+Architecture: any
- Depends: libotr1 (= ${Source-Version}), ${shlibs:Depends}
- Provides: libotr-dev
- Conflicts: libotr-dev
- Replaces: libotr-dev, libotr0-dev
++Depends: libotr2 (= ${Source-Version}), ${shlibs:Depends}
++Conflicts: libotr-dev, libotr1-dev
++Replaces: libotr-dev, libotr0-dev, libotr1-dev
+Description: Off-the-Record Messaging library development files
+ Off-the-Record (OTR) Messaging Library
+ .
+ OTR allows you to have private conversations over IM by providing:
+ - Encryption
+ - No one else can read your instant messages.
+ - Authentication
+ - You are assured the correspondent is who you think it is.
+ - Deniability
+ - The messages you send do _not_ have digital signatures that are
+ checkable by a third party. Anyone can forge messages after a
+ conversation to make them look like they came from you. However,
+ _during_ a conversation, your correspondent is assured the messages
+ he sees are authentic and unmodified.
+ - Perfect forward secrecy
+ - If you lose control of your private keys, no previous conversation
+ is compromised.
+ .
+ This package contains the header files and static libraries needed to
+ develop applications using libotr.
diff --cc debian/docs
index 055ff75,0000000..470f62e
mode 100644,000000..100644
--- a/debian/docs
+++ b/debian/docs
@@@ -1,2 -1,0 +1,2 @@@
+README
- Protocol
++Protocol-v2.html
diff --cc debian/libotr2-bin.copyright
index dc2efc5,0000000..7099346
mode 100644,000000..100644
--- a/debian/libotr2-bin.copyright
+++ b/debian/libotr2-bin.copyright
@@@ -1,27 -1,0 +1,27 @@@
+This package was debianized by OTR Dev Team <otr at cypherpunks.ca> on
+Tue, 18 Jan 2005 16:23:41 -0500.
+
+It was downloaded from http://www.cypherpunks.ca/otr/
+
+Copyright (C) 2004-2005 by Nikita Borisov and Ian Goldberg
+
+Upstream Authors: OTR Dev Team <otr at cypherpunks.ca>
+
+License:
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of version 2 of the GNU General Public License
+ as published by the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA.
++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
++ 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL-2'.
diff --cc debian/libotr2-bin.dirs
index 98d1583,0000000..98d1583
mode 100644,000000..100644
--- a/debian/libotr2-bin.dirs
+++ b/debian/libotr2-bin.dirs
diff --cc debian/libotr2-bin.install
index f250696,0000000..f250696
mode 100644,000000..100644
--- a/debian/libotr2-bin.install
+++ b/debian/libotr2-bin.install
diff --cc debian/libotr2-dev.copyright
index 7de755e,0000000..bec63cf
mode 100644,000000..100644
--- a/debian/libotr2-dev.copyright
+++ b/debian/libotr2-dev.copyright
@@@ -1,29 -1,0 +1,29 @@@
+This package was debianized by OTR Dev Team <otr at cypherpunks.ca> on
+Tue, 18 Jan 2005 16:23:41 -0500.
+
+It was downloaded from http://www.cypherpunks.ca/otr/
+
+Copyright (C) 2004-2005 by Nikita Borisov and Ian Goldberg
+
+Upstream Authors: OTR Dev Team <otr at cypherpunks.ca>
+
+License:
+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public Licence
+ as published by the Free Software Foundation; version 2.1 dated
+ February, 1999.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this package; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA.
++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
++ 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
diff --cc debian/libotr2-dev.dirs
index 76d6480,0000000..76d6480
mode 100644,000000..100644
--- a/debian/libotr2-dev.dirs
+++ b/debian/libotr2-dev.dirs
diff --cc debian/libotr2-dev.install
index 589899f,0000000..589899f
mode 100644,000000..100644
--- a/debian/libotr2-dev.install
+++ b/debian/libotr2-dev.install
diff --cc debian/libotr2.copyright
index 7de755e,0000000..bec63cf
mode 100644,000000..100644
--- a/debian/libotr2.copyright
+++ b/debian/libotr2.copyright
@@@ -1,29 -1,0 +1,29 @@@
+This package was debianized by OTR Dev Team <otr at cypherpunks.ca> on
+Tue, 18 Jan 2005 16:23:41 -0500.
+
+It was downloaded from http://www.cypherpunks.ca/otr/
+
+Copyright (C) 2004-2005 by Nikita Borisov and Ian Goldberg
+
+Upstream Authors: OTR Dev Team <otr at cypherpunks.ca>
+
+License:
+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public Licence
+ as published by the Free Software Foundation; version 2.1 dated
+ February, 1999.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this package; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA.
++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
++ 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
diff --cc debian/libotr2.dirs
index 6845771,0000000..6845771
mode 100644,000000..100644
--- a/debian/libotr2.dirs
+++ b/debian/libotr2.dirs
diff --cc debian/libotr2.install
index c19d2df,0000000..c19d2df
mode 100644,000000..100644
--- a/debian/libotr2.install
+++ b/debian/libotr2.install
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/libotr.git
More information about the Pkg-privacy-commits
mailing list