[Forensics-changes] [SCM] forensics/shed branch, debian, updated. upstream/1.14-1-g2a43f51

Juan Angulo Moreno juan at apuntale.com
Sun Jan 18 03:12:48 UTC 2009


The following commit has been merged in the debian branch:
commit 2a43f519b5ad08ba944a65aa0538d79b9e70d9ba
Author: Juan Angulo Moreno <juan at apuntale.com>
Date:   Sat Jan 17 22:43:12 2009 -0430

    Added debianization files

diff --git a/shed-1.14/debian/changelog b/shed-1.14/debian/changelog
new file mode 100644
index 0000000..435339a
--- /dev/null
+++ b/shed-1.14/debian/changelog
@@ -0,0 +1,7 @@
+shed (1.14-1) unstable; urgency=low
+
+  * Initial release (Closes: #512125)
+
+ -- Juan Angulo Moreno <juan at apuntale.com>  Sat, 17 Jan 2009 11:04:33 -0430
+
+
diff --git a/shed-1.14/debian/compat b/shed-1.14/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/shed-1.14/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/shed-1.14/debian/control b/shed-1.14/debian/control
new file mode 100644
index 0000000..b1b5eda
--- /dev/null
+++ b/shed-1.14/debian/control
@@ -0,0 +1,17 @@
+Source: shed
+Section: admin
+Priority: optional
+Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
+Uploaders: Juan Angulo Moreno <juan at apuntale.com>
+Build-Depends: debhelper (>= 7), autotools-dev, ncurses-dev
+Standards-Version: 3.8.0
+Homepage: http://shed.sourceforge.net
+Vcs-Git: git://git.debian.net/git/forensics/shed.git
+Vcs-Browser: http://git.debian.net/?p=forensics/shed.git
+
+Package: shed
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: A simple hex editor with a pico-style interface
+ Is an easy application for viewing and editing files in hex, octal, binary, 
+ or ascii text using ncurses, with a friendly pico-style interface.
diff --git a/shed-1.14/debian/copyright b/shed-1.14/debian/copyright
new file mode 100644
index 0000000..d85d337
--- /dev/null
+++ b/shed-1.14/debian/copyright
@@ -0,0 +1,40 @@
+Author: Alex Sisson <alexs at cyberspace.org>
+Download: http://shed.sourceforge.net
+
+Files: *
+Copyright:
+ (C) 2002-2008 Alex Sisson <alexs at cyberspace.org>
+
+License: GPL-2
+ 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; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ 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
+ 
+Files: debian/*
+Copyright: (C) 2008 Juan Angulo Moreno <juan at apuntale.com>
+License: GPL-3+
+ This program 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, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program 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 program. If not, see <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL-3 and GPL-2 files.
diff --git a/shed-1.14/debian/dirs b/shed-1.14/debian/dirs
new file mode 100644
index 0000000..e772481
--- /dev/null
+++ b/shed-1.14/debian/dirs
@@ -0,0 +1 @@
+usr/bin
diff --git a/shed-1.14/debian/docs b/shed-1.14/debian/docs
new file mode 100644
index 0000000..4ac711d
--- /dev/null
+++ b/shed-1.14/debian/docs
@@ -0,0 +1,6 @@
+BUGS
+NEWS
+README
+TODO
+AUTHORS
+
diff --git a/shed-1.14/debian/files b/shed-1.14/debian/files
new file mode 100644
index 0000000..7506879
--- /dev/null
+++ b/shed-1.14/debian/files
@@ -0,0 +1 @@
+shed_1.14-1_i386.deb admin optional
diff --git a/shed-1.14/debian/rules b/shed-1.14/debian/rules
new file mode 100755
index 0000000..e964cb3
--- /dev/null
+++ b/shed-1.14/debian/rules
@@ -0,0 +1,66 @@
+#!/usr/bin/make -f
+
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
+CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
+else
+CROSS= --build $(DEB_BUILD_GNU_TYPE)
+endif
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+	./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status 
+	dh_testdir
+
+	$(MAKE)
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+	[ ! -f Makefile ] || $(MAKE) clean
+	rm -f config.sub config.guess config.log config.status
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	$(MAKE) DESTDIR=$(CURDIR)/debian/shed install
+
+
+binary-indep: build install
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installman debian/shed.1
+	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 
diff --git a/shed-1.14/shed.1 b/shed-1.14/debian/shed.1
similarity index 58%
copy from shed-1.14/shed.1
copy to shed-1.14/debian/shed.1
index dd0ba9c..881bcc1 100644
--- a/shed-1.14/shed.1
+++ b/shed-1.14/debian/shed.1
@@ -1,16 +1,14 @@
-.\"shed man page
-.\"(C) Alex Sisson, 2002-2007
-.TH shed 1 "03-APR-2007" shed-1.14
+.TH SHED 1 "jul 11, 2006"
 .SH NAME
-shed (Simple Hex EDitor)
+shed \- (Simple Hex EDitor)
 .SH SYNOPSIS
-.B shed
-.I [OPTIONS] [FILE]
-.PP
+.B SHED
+.RB [OPTIONS]
+.RB FILE
 .SH DESCRIPTION
-.PP
 A simple hex editor with a pico-style interface.
 .PP
+.PP
 Each line of the shed display represents one byte of the
 file. Each lines consists of the offset of that byte from
 the start of the file, the ascii value of the byte, and
@@ -26,22 +24,4 @@ Note that there is no save key. This is because the
 file is not loaded into memory, so when you edit it
 the change is made directly to disk.
 .SH OPTIONS
-.TP
-.B \-r / \-\-readonly
-open FILE read only
-.TP
-.B \-s / \-\-start=\fIOFFSET\fP
-position cursor to offset
-.TP
-.B \-H / \-\-hex
-start in hex mode (hex offsets etc.)
-.TP
-.B \-h / \-\-help
-show help and exit
-.TP
-.B \-v / \-\-version
-show version and exit
-.SH AUTHOR
-Alex Sisson (alexsisson at gmail.com)
-.SH HOMEPAGE
-Check for updates at http://shed.sourceforge.net
+A summary of options is included below.
diff --git a/shed-1.14/debian/watch b/shed-1.14/debian/watch
new file mode 100644
index 0000000..1a1a28e
--- /dev/null
+++ b/shed-1.14/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/shed/shed-(.*)\.tar\.gz

-- 
forensics/shed



More information about the forensics-changes mailing list