[Pkg-privacy-commits] [pidgin-otr] 186/255: Imported Debian patch 3.0.0+cvs20070508-1
Ximin Luo
infinity0 at moszumanska.debian.org
Sat Aug 22 12:51:42 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 c0c52244636215041ea4895f92f59b8ddef8ce2e
Author: Thibaut VARENE <varenet at debian.org>
Date: Tue May 8 17:21:54 2007 +0200
Imported Debian patch 3.0.0+cvs20070508-1
---
debian/changelog | 6 ++++
debian/compat | 1 +
debian/control | 30 ++++++++++++++++
debian/copyright | 27 +++++++++++++++
debian/dirs | 1 +
debian/docs | 1 +
debian/install | 1 +
debian/rules | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/watch | 6 ++++
9 files changed, 177 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d0a1fdb
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+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 --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..bd34949
--- /dev/null
+++ b/debian/control
@@ -0,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
+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 --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..879b36e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+This package was debianized by OTR Dev Team <otr at cypherpunks.ca> on
+Wed, 1 Dec 2004 17:02:12 -0500.
+
+It was downloaded from http://www.cypherpunks.ca/otr/
+
+Copyright (C) 2004-2007 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 General Public License as published by
+ the Free Software Foundation; version 2 dated June, 1991.
+
+ 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 General Public License
+ along with this package; if not, write to the Free Software
+ 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 --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..86a604c
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+/usr/lib/pidgin
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..0e4b739
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+debian/tmp/usr/lib/pidgin/pidgin-otr.so /usr/lib/pidgin
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ba2ee10
--- /dev/null
+++ b/debian/rules
@@ -0,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
+
+ 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
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..271b0de
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,6 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site Directory Pattern Version Script
+version=2
+http://www.cypherpunks.ca/otr/ pidgin-otr-(.*)\.t(?:ar\.)?gz debian uupdate
--
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