--- x-pgp-sig-el-1.3.5.1.orig/debian/changelog +++ x-pgp-sig-el-1.3.5.1/debian/changelog @@ -0,0 +1,66 @@ +x-pgp-sig-el (1.3.5.1-4.1ubuntu1) xenial; urgency=medium + + * debian/rules: + - Remove legacy DH_COMPAT export. + - Add recommended build-arch and build-indep targets. + - Use dh_prep instead of dh_clean -k. + * debian/compat: Indicate compatibility level of 9. + * debian/control: + - Build-depend on debhelper (>= 9). + - Depend on ${misc:Depends}. + + -- Logan Rosen Sun, 27 Mar 2016 18:26:11 -0500 + +x-pgp-sig-el (1.3.5.1-4.1) unstable; urgency=medium + + * Non-maintainer upload. + * Rebuild for the /usr/doc transition (Closes: #406995). + * Tweak description and debian/copyright to satisfy Lintian. + + -- Thijs Kinkhorst Tue, 20 Feb 2007 11:17:14 +0100 + +x-pgp-sig-el (1.3.5.1-4) unstable; urgency=low + + * upload for woody + + -- Takuo KITAME Thu, 11 Apr 2002 10:15:17 +0900 + +x-pgp-sig-el (1.3.5.1-3) unstable; urgency=low + + * control: Maintainer: Address was changed. + + -- Takuo KITAME Thu, 11 Nov 1999 02:57:41 +0900 + +x-pgp-sig-el (1.3.5.1-2) unstable; urgency=low + + * emacsen-common: modified. + + -- Takuo KITAME Mon, 1 Nov 1999 22:14:42 +0900 + +x-pgp-sig-el (1.3.5.1-1) unstable; urgency=low + + * New upstream release + + -- Takuo KITAME Fri, 22 Oct 1999 16:23:46 +0900 + +x-pgp-sig-el (1.3.5-2) unstable; urgency=low + + * emacsen-{install,remove} scripts modified for xemacs21 + + -- Takuro KITAME Sun, 20 Jun 1999 23:57:11 +0900 + +x-pgp-sig-el (1.3.5-1) unstable; urgency=low + + * New upstream release + + -- Takuro KITAME Mon, 24 May 1999 06:14:48 +0900 + +x-pgp-sig-el (1.3.4-1) unstable; urgency=low + + * Initial Release. + + -- Takuro KITAME Fri, 14 May 1999 21:26:36 +0900 + +Local variables: +mode: debian-changelog +End: --- x-pgp-sig-el-1.3.5.1.orig/debian/compat +++ x-pgp-sig-el-1.3.5.1/debian/compat @@ -0,0 +1 @@ +9 --- x-pgp-sig-el-1.3.5.1.orig/debian/control +++ x-pgp-sig-el-1.3.5.1/debian/control @@ -0,0 +1,18 @@ +Source: x-pgp-sig-el +Section: contrib/mail +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Takuo KITAME +Build-Depends: debhelper (>= 9) +Standards-Version: 3.5.2 + +Package: x-pgp-sig-el +Architecture: all +Depends: ${misc:Depends}, emacsen, pgp +Description: X-PGP-Sig mail and news header utility for Emacs + X-PGP-Sig header utility for Emacs. + It can insert/verify PGP signatures in the X-PGP-Sig: mail/news header. + x-pgp-sig.el is for MH(mh-e, Mew and so on), Gnus, Semi-gnus, wl(Wanderlust) + VM, cmail etc... (MUA on Emacs). + . + English documentation is not available, only Japanese. --- x-pgp-sig-el-1.3.5.1.orig/debian/copyright +++ x-pgp-sig-el-1.3.5.1/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by Takuro KITAME kitame@debian.or.jp on +Fri, 14 May 1999 21:26:36 +0900. + +It was downloaded from ftp://ftp.jpl.org/pub/elisp/ + +Copyright: + +GPL + +/usr/share/common-licenses/GPL for more information. --- x-pgp-sig-el-1.3.5.1.orig/debian/dirs +++ x-pgp-sig-el-1.3.5.1/debian/dirs @@ -0,0 +1,4 @@ +usr/share/emacs/site-lisp/x-pgp-sig-el +usr/lib/emacsen-common/packages/install +usr/lib/emacsen-common/packages/remove +etc/emacs/site-start.d --- x-pgp-sig-el-1.3.5.1.orig/debian/docs +++ x-pgp-sig-el-1.3.5.1/debian/docs @@ -0,0 +1,5 @@ +ChangeLog.ja +00README.ja +METHOD.ja +README-MUABEND.ja +README-Mew.ja \ No newline at end of file --- x-pgp-sig-el-1.3.5.1.orig/debian/emacsen-install +++ x-pgp-sig-el-1.3.5.1/debian/emacsen-install @@ -0,0 +1,56 @@ +#! /bin/sh -e +# /usr/lib/emacsen-common/packages/install/foo +# [ This particular script hasn't been tested, so be careful. ] + +set -e + +FLAVOR=$1 +PACKAGE="x-pgp-sig-el" + +if [ "X${FLAVOR}" = "X" ]; then + echo Need argument to determin FLAVOR of emacs; + exit 1 +fi + +if [ "X${PACKAGE}" = "X" ]; then + echo Internal error: need package name; + exit 1; +fi + +COMPILE_SRC="x-pgp-sig.el mua-bend.el" + +ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} +ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} + +COMPILE="-batch -q -f batch-byte-compile" + +case "${FLAVOR}" in + emacs) + ;; + *) + echo -n "install/${PACKAGE}: Byte-compiling for ${FLAVOR} ..." + + if [ "${FLAVOR}" = "xemacs20" ]; then + ## Fix compile error with xemacs20 on unset LANG or LANG=C . + export LANG=ja_JP + fi + + rm -rf ${ELCDIR} + install -m 755 -d ${ELCDIR} + + # Copy the temp .el files (and Makefile or so) + cp ${ELDIR}/* ${ELCDIR}/ + + # Byte compile them + (cd ${ELCDIR} + ${FLAVOR} ${COMPILE} ${COMPILE_SRC} > ${ELCDIR}/CompilationLog 2>&1 + rm -f ${COMPILE_SRC} + ) + + gzip -9 ${ELCDIR}/CompilationLog + + echo " done." + ;; +esac + +exit 0; --- x-pgp-sig-el-1.3.5.1.orig/debian/emacsen-remove +++ x-pgp-sig-el-1.3.5.1/debian/emacsen-remove @@ -0,0 +1,35 @@ +#!/bin/sh +# /usr/lib/emacsen-common/packages/remove/foo +# [ This particular script hasn't been tested either, so be careful. ] +set -e + +FLAVOR=$1 +PACKAGE="x-pgp-sig-el" + +if [ "X${FLAVOR}" = "X" ]; then + echo Need argument to determin FLAVOR of emacs; + exit 1 +fi + +if [ "X${PACKAGE}" = "X" ]; then + echo Internal error: need package name; + exit 1; +fi + +ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} +ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} + +SITELISP=/usr/share/${FLAVOR}/site-lisp + +case "${FLAVOR}" in + emacs) + ;; + *) + + echo -n "remove/${PACKAGE}: Handling removal of emacsen flavor ${FLAVOR} ..." + rm -rf ${ELCDIR} + echo " done." + ;; +esac + +exit 0; --- x-pgp-sig-el-1.3.5.1.orig/debian/emacsen-startup +++ x-pgp-sig-el-1.3.5.1/debian/emacsen-startup @@ -0,0 +1,22 @@ +;; +;; /etc/emacs/site-start.d/52x-pgp-sig-el.el +;; +;; Copyright (c) 1998, Takuro KITAME + +(setq load-path + (cons + (concat "/usr/share/" (symbol-name debian-emacs-flavor) + "/site-lisp/x-pgp-sig-el") + load-path)) + +(autoload 'x-pgp-sig-sign "x-pgp-sig" + "Add X-PGP signature." t) +(autoload 'x-pgp-sig-set-signer "x-pgp-sig" + "Set PGP signer and passphrase." t) +(autoload 'x-pgp-sig-set-signer-maybe "x-pgp-sig" + "Set PGP signer and passphrase if necessary." t) +(autoload 'x-pgp-sig-switch-signing "x-pgp-sig" + "Judging whether to add X-PGP signature." t) +(autoload 'x-pgp-sig-verify "x-pgp-sig" + "Verify X-PGP signature in current message." t) + --- x-pgp-sig-el-1.3.5.1.orig/debian/rules +++ x-pgp-sig-el-1.3.5.1/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f +#-*- makefile -*- +# Made with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Also some stuff taken from debmake scripts, by Christoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +package=x-pgp-sig-el +pwd=$(shell pwd) + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + -rm -f *-stamp + dh_clean + +install: + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + cp *.el debian/${package}/usr/share/emacs/site-lisp/x-pgp-sig-el/ + +# Build architecture-independent files here. +binary-indep: build +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + + dh_installemacsen + dh_installdocs + dh_installchangelogs ChangeLog.ja + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary