[Pkg-privacy-commits] [pidgin-otr] 188/255: Imported Debian patch 3.1.0-1
Ximin Luo
infinity0 at moszumanska.debian.org
Sat Aug 22 12:51:43 UTC 2015
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch experimental
in repository pidgin-otr.
commit 127cdc36a58da96f66109bd754cb29d90243ab06
Merge: c0c5224 eb7efd0
Author: Thibaut VARENE <varenet at debian.org>
Date: Mon Aug 20 21:49:14 2007 +0200
Imported Debian patch 3.1.0-1
AUTHORS | 2 +-
ChangeLog | 107 +
INSTALL | 19 +-
Makefile.am | 16 +-
Makefile.in | 361 +-
Makefile.mingw | 84 +-
Makefile.static | 21 +
NEWS | 17 +
README | 112 +-
aclocal.m4 | 826 +-
config.guess | 78 +-
config.h.in | 21 +
config.sub | 109 +-
configure | 9325 ++++++++++++--------
configure.ac | 22 +-
debian/changelog | 7 +
debian/control | 2 +-
debian/rules | 2 +-
depcomp | 64 +-
dialogs.c | 26 +-
dialogs.h | 23 +-
gtk-dialog.c | 1042 ++-
gtk-dialog.h | 2 +-
gtk-ui.c | 234 +-
gtk-ui.h | 2 +-
install-sh | 348 +-
intltool-extract.in | 841 ++
intltool-merge.in | 1356 +++
intltool-update.in | 1089 +++
ltmain.sh | 2 +-
makedist | 7 -
missing | 61 +-
otr-plugin.c | 377 +-
otr-plugin.h | 19 +-
.../fedora/{gaim-otr.spec => pidgin-otr.spec} | 36 +-
packaging/windows/gaim-otr.nsi | 221 -
packaging/windows/pidgin-otr.nsi | 110 +-
po/ChangeLog | 26 +
po/Makefile.in.in | 221 +
po/Makefile.mingw | 41 +
po/POTFILES.in | 12 +
po/README | 7 +
po/es.po | 524 ++
po/fr.po | 523 ++
po/nl.po | 528 ++
po/sk.po | 532 ++
ui.c | 50 +-
ui.h | 26 +-
48 files changed, 14113 insertions(+), 5368 deletions(-)
diff --cc debian/changelog
index d0a1fdb,0000000..f069bf4
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,6 -1,0 +1,13 @@@
++pidgin-otr (3.1.0-1) unstable; urgency=low
++
++ * New upstream release (closes: #435055, #435836)
++ * Build depend on newer libotr (closes: #430349)
++
++ -- Thibaut VARENE <varenet at debian.org> Mon, 20 Aug 2007 21:49:14 +0200
++
+pidgin-otr (3.0.0+cvs20070508-1) unstable; urgency=low
+
+ * Initial release of the newly renamed gaim-otr plugin (closes: #422834)
+
+ -- Thibaut VARENE <varenet at debian.org> Tue, 08 May 2007 17:21:54 +0200
+
diff --cc debian/control
index bd34949,0000000..70796f7
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,30 -1,0 +1,30 @@@
+Source: pidgin-otr
+Section: net
+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), libglib2.0-dev (>= 2.4), libgtk2.0-dev (>= 2.4), pidgin-dev, libotr2-dev
++Build-Depends: debhelper (>= 4.0.0), libgpg-error-dev (>= 1.0), libgcrypt11-dev (>= 1.2.0), libglib2.0-dev (>= 2.4), libgtk2.0-dev (>= 2.4), pidgin-dev, libotr2-dev (>= 3.1.0), libxml-parser-perl
+Standards-Version: 3.7.2
+
+Package: pidgin-otr
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Off-the-Record Messaging plugin for pidgin
+ Off-the-Record (OTR) Messaging plugin for pidgin
+ .
+ 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 is a pidgin plugin which implements Off-the-Record (OTR) Messaging.
+
diff --cc debian/rules
index ba2ee10,0000000..863262b
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,104 -1,0 +1,104 @@@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ # Add here commands to configure the package.
+ ./configure --host=$(DEB_HOST_GNU_TYPE)\
+ --build=$(DEB_BUILD_GNU_TYPE)\
+ --prefix=/usr\
+ --mandir=\$${prefix}/share/man\
+ --infodir=\$${prefix}/share/info \
+
+ touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+
+ # Add here commands to compile the package.
+ $(MAKE)
+ #docbook-to-man debian/pidgin-otr.sgml > pidgin-otr.1
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ # Add here commands to clean up after the build process.
- -$(MAKE) clean
++ [ ! -f Makefile ] || $(MAKE) distclean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/pidgin-otr.
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs ChangeLog
+ dh_installdocs
+# dh_installexamples
+ dh_install
+# dh_installmenu
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_installinit
+# dh_installcron
+# dh_installinfo
+# dh_installman
+# dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_perl
+# dh_python
+# dh_makeshlibs
+ dh_installdeb
+ dh_shlibdeps
+ dh_pidgin
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/pidgin-otr.git
More information about the Pkg-privacy-commits
mailing list