--- onetime-1.122.orig/debian/onetime.1 +++ onetime-1.122/debian/onetime.1 @@ -0,0 +1,57 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH ONETIME 1 "9 August, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +onetime \- command-line encryption program using the "one-time pad" method +.SH SYNOPSIS +.B onetime +.RI [ options ] " files" ... +.nf +.sp 1 +.SH DESCRIPTION +.sp 1 +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBonetime\fP is a command-line "one-time pad" encryption program. +.SH OPTIONS +It follows the usual GNU command line syntax, with long options +starting with two dashes (`-'). For a complete description of its +options and usage, run it with the +.TP +.B \-h +or +.B \-\-help +option. +.sp 1 +If you're new to one-time pads, you may also wish to run it with the +.B \-\-intro +option, to see an introduction with references to further sources. +.sp 1 +.TP +Run it with +.B \-v +or +.B \-\-version +to see the program version. +.sp 1 +.SH AUTHOR +onetime was written by Karl Fogel and is in the public domain. +.PP +This manual page was written by Karl Fogel , +for the Debian project (but may be used by others). --- onetime-1.122.orig/debian/dirs +++ onetime-1.122/debian/dirs @@ -0,0 +1 @@ +usr/bin --- onetime-1.122.orig/debian/control +++ onetime-1.122/debian/control @@ -0,0 +1,31 @@ +Source: onetime +Section: misc +Priority: extra +Maintainer: Karl Fogel +Build-Depends: debhelper (>= 5), python +Standards-Version: 3.9.2 +Homepage: http://www.red-bean.com/onetime/ +Vcs-Svn: http://svn.red-bean.com/repos/onetime/trunk/ +Vcs-Browser: http://svn.red-bean.com/viewcvs/onetime/trunk/ + +Package: onetime +Architecture: any +Depends: python, ${misc:Depends} +Description: command-line encryption using the "one-time pad" method + OneTime is an encoder/decoder that uses the one-time pad algorithm. + . + OneTime is a simple one-time pad encryption program that takes care + of some of the pad-management bureaucracy for you. It avoids + re-using pad data (except when decrypting the same encrypted message + twice, of course) by maintaining records of pad usage. + . + If you keep your ~/.onetime configuration area under version control + with Subversion or CVS, OneTime will automatically update it to get + the latest pad usage records before using a pad, and will commit new + records after using a pad. Thus, by sharing a single configuration + area via version control, you and your interlocutors can more easily + avoid the sin of pad range reuse. + . + See http://www.red-bean.com/onetime for more information about OneTime, + or run 'onetime --help' for detailed usage. For more information about + one-time pads in general, see http://en.wikipedia.org/wiki/One-time_pad. --- onetime-1.122.orig/debian/changelog +++ onetime-1.122/debian/changelog @@ -0,0 +1,30 @@ +onetime (1.122-1) unstable; urgency=low + + * New upstream release. + - improved --intro documentation + + -- Karl Fogel Sat, 13 Aug 2011 11:42:00 -0400 + +onetime (1.111-1) unstable; urgency=low + + * New upstream release. + - uses 'hashlib' module instead of 'sha1' to avoid deprecation warning + - various Makefile improvements that don't really affect users + - remove bashism in check.sh, as per Debian NMU change + + -- Karl Fogel Sat, 06 Aug 2011 01:27:00 -0400 + +onetime (1.73-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix bashism in check.sh and add missing build-dep on python. Patch + from Michael Bienia. (Closes: #515002) + + -- Stefano Zacchiroli Fri, 02 Oct 2009 17:19:47 +0200 + +onetime (1.73-1) unstable; urgency=low + + * Initial release (Closes: #490240) + + -- Karl Fogel Mon, 14 Jul 2008 22:59:59 -0400 + --- onetime-1.122.orig/debian/compat +++ onetime-1.122/debian/compat @@ -0,0 +1 @@ +5 --- onetime-1.122.orig/debian/copyright +++ onetime-1.122/debian/copyright @@ -0,0 +1,19 @@ +This package was first debianized by Karl Fogel +on Mon, 14 Jul 2008. + +Its upstream home is + +Upstream Author: + + Karl Fogel + +Copyright: + + No copyright -- public domain. + +License: + + Public Domain + +The Debian packaging is (C) 2008, 2011, Karl Fogel and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- onetime-1.122.orig/debian/docs +++ onetime-1.122/debian/docs @@ -0,0 +1 @@ +README --- onetime-1.122.orig/debian/watch +++ onetime-1.122/debian/watch @@ -0,0 +1,23 @@ +# 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. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to examine a Webpage +# +http://www.red-bean.com/onetime/onetime-(.*)\.tar\.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/onetime-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/onetime-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for devscripts >= 2.9 +# http://sf.net/onetime/onetime-(.*)\.tar\.gz + +# Uncomment to find new files on GooglePages +# http://example.googlepages.com/foo.html onetime-(.*)\.tar\.gz --- onetime-1.122.orig/debian/onetime.manpages +++ onetime-1.122/debian/onetime.manpages @@ -0,0 +1 @@ +debian/onetime.1 --- onetime-1.122.orig/debian/rules +++ onetime-1.122/debian/rules @@ -0,0 +1,79 @@ +#!/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 + + + + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch $@ + +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/onetime. + $(MAKE) DESTDIR=$(CURDIR)/debian/onetime install + + +# 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 + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure