diff --git a/.gitignore b/.gitignore index d541184..4aff498 100644 --- a/.gitignore +++ b/.gitignore @@ -27,5 +27,4 @@ stamp-h1 tags doc/web/public doc/web/dyne -debian share/gtkrc diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..26541ee --- /dev/null +++ b/debian/changelog @@ -0,0 +1,26 @@ +tomb (1.0-1) unstable; urgency=low + + * New upstream release + * Fixes to dependencies + * Split in 2 packages: tomb and tomb-gtk + + -- Denis Roio Mon, 21 Feb 2011 00:59:55 +0100 + +tomb (0.9.2-1) unstable; urgency=low + + * New upstream release + * Mentored fixes to debian packaging + + -- Denis Roio Thu, 10 Feb 2011 15:22:58 +0100 + +tomb (0.9.1-1) unstable; urgency=low + + * New upstream release + + -- Denis Roio Thu, 03 Feb 2011 22:32:23 +0100 + +tomb (0.9-1) unstable; urgency=low + + * Initial release. (Closes: #611660) + + -- Denis Roio Mon, 31 Jan 2011 19:39:06 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..29f5d04 --- /dev/null +++ b/debian/control @@ -0,0 +1,36 @@ +Source: tomb +Section: misc +Priority: extra +Maintainer: Denis Roio +Build-Depends: debhelper (>= 7), autotools-dev, cdbs, libgtk2.0-dev, libnotify-dev +Standards-Version: 3.9.1 +Homepage: http://tomb.dyne.org + +Package: tomb +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, zsh, cryptsetup, pinentry-curses, gnupg, sudo +Suggests: tomb-gtk, wipe, dcfldd, steghide +Description: the crypto undertaker + Derived from the dyne:bolic nesting mechanism, Tomb is a free and + easy to operate desktop application for fairly strong encryption of + personal files. A tomb is like a locked folder that can be + transported and hidden in filesystems; its keys are password + protected and can be kept separate, for instance keeping a tomb file + in your computer's harddisk and its key file on a USB stick. + Tomb relies on dm-crypt (and cryptsetup) as an encryption backend + using the aes-cbc-essiv:sha256 cypher. + +Package: tomb-gtk +Architecture: any +Depends: tomb, libnotify-bin, pinentry-gtk2, ${shlibs:Depends}, ${misc:Depends} +Description: the crypto undertaker - desktop integration + Derived from the dyne:bolic nesting mechanism, Tomb is a free and + easy to operate desktop application for fairly strong encryption of + personal files. A tomb is like a locked folder that can be + transported and hidden in filesystems; its keys are password + protected and can be kept separate, for instance keeping a tomb file + in your computer's harddisk and its key file on a USB stick. + Tomb relies on dm-crypt (and cryptsetup) as an encryption backend + using the aes-cbc-essiv:sha256 cypher. + . + This package contains a graphical interface to use Tomb on the desktop. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b17146b --- /dev/null +++ b/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Denis Roio +on Thu Jan 13 23:21:12 CET 2011 + +It was downloaded from the code.dyne.org source repository + +Upstream Author(s): Denis Roio + +Copyright: + + +License: + This software is available under the GNU General Public License. + http://www.opensource.org/licenses/gpl-license.php + +Packaging: + Copyright (C) 2011 by Denis Roio + released under the terms of GNU GPL version 3, + see `/usr/share/common-licenses/GPL-3'. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..e772481 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/bin 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/menu b/debian/menu new file mode 100644 index 0000000..db68deb --- /dev/null +++ b/debian/menu @@ -0,0 +1,3 @@ +?package(tomb):command="tomb-open" icon="/usr/share/pixmaps/monmort.xpm" needs="text" \ + section="Applications/System/Security" title="Tomb" hints="Crypto" \ + hotkey="Tomb" diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..5f4ce40 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f +include /usr/share/cdbs/1/rules/autoreconf.mk +include /usr/share/cdbs/1/rules/buildcore.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +# include /usr/share/cdbs/1/class/gnome.mk + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/tomb-gtk.install b/debian/tomb-gtk.install new file mode 100644 index 0000000..44a858c --- /dev/null +++ b/debian/tomb-gtk.install @@ -0,0 +1,2 @@ +usr/bin/tomb-status +usr/share/man/man1/tomb-status.1 diff --git a/debian/tomb.install b/debian/tomb.install new file mode 100644 index 0000000..e9020a9 --- /dev/null +++ b/debian/tomb.install @@ -0,0 +1,6 @@ +usr/bin/tomb +usr/bin/tomb-open +usr/share/man/man1/tomb.1 +usr/share/man/man1/tomb-open.1 +usr/share/pixmaps/monmort.xpm +usr/share/icons/monmort.png diff --git a/debian/tomb.mime b/debian/tomb.mime new file mode 100644 index 0000000..ff3c4b9 --- /dev/null +++ b/debian/tomb.mime @@ -0,0 +1 @@ +application/x-tomb-volume; tomb-open '%s'; priority=8 diff --git a/debian/tomb.sharedmimeinfo b/debian/tomb.sharedmimeinfo new file mode 100644 index 0000000..c545eae --- /dev/null +++ b/debian/tomb.sharedmimeinfo @@ -0,0 +1,11 @@ + + + + Tomb crypto volume + + + + Tomb crypto key + + + diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..24d1c31 --- /dev/null +++ b/debian/watch @@ -0,0 +1,5 @@ +version = 3 + +# Package mantained by upstream developer +# wishing there would be a way to watch git repos? +# however our ftp is on ftp://ftp.dyne.org/tomb/releases