--- ascii2binary-2.14.orig/debian/copyright +++ ascii2binary-2.14/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Mohammed Sameer on +Sat, 3 Jun 2006 20:26:06 +0300. + + +It was downloaded from http://billposer.org/Software/a2b.html + +Copyright Holder: Copyright (C) 2003-2006 Bill Poser + +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; 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 + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- ascii2binary-2.14.orig/debian/changelog +++ ascii2binary-2.14/debian/changelog @@ -0,0 +1,33 @@ +ascii2binary (2.14-1) unstable; urgency=low + + * New upstream release (Closes: #598600, #625025). + * debian/compat use compatibility level 8 + * debian/rules simplified by using dh + * debian/control + - Requires debhelper 8 to build + - Added Homepage + - Bumped Standards-Version to 3.9.1 + + -- Mohammed Sameer Sun, 23 Oct 2011 22:47:41 +0300 + +ascii2binary (2.13-1) unstable; urgency=low + + * New upstream release. + + -- Mohammed Sameer Sun, 17 Jun 2007 23:18:59 +0300 + +ascii2binary (2.11-2) unstable; urgency=low + + * debian/rules: Cleaned up. + * debian/control: + - Better package description + - Removed autotools-dev from Build-Depends. + + -- Mohammed Sameer Wed, 2 Aug 2006 00:10:49 +0300 + +ascii2binary (2.11-1) unstable; urgency=low + + * Initial release (Closes: #370145) + + -- Mohammed Sameer Sat, 3 Jun 2006 20:26:06 +0300 + --- ascii2binary-2.14.orig/debian/control +++ ascii2binary-2.14/debian/control @@ -0,0 +1,33 @@ +Source: ascii2binary +Section: misc +Priority: optional +Maintainer: Mohammed Sameer +Build-Depends: debhelper (>= 8.0.0) +Standards-Version: 3.9.1 +Homepage: http://billposer.org/Software/a2b.html + +Package: ascii2binary +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Convert between ASCII, hexadecimal and binary representations + This package contains: + * ascii2binary reads input consisting of ascii or hexadecimal representation + numbers separated by whitespace and produces as output the binary + equivalents. The type and precision of the binary output is selected + using command line flags. + * binary2ascii reads input consisting of binary numbers and converts + them to their ascii or hexadecimal representation. + Command line flags specify the type and size of the binary numbers + and provide control over the format of the output. + Unsigned integers may be written out in binary, octal, decimal, + or hexadecimal. + Signed integers may be written out only in binary or decimal. Floating + point numbers may be written out only decimal, either in standard or + scientific notation. (If you want to examine the binary representation + of floating point numbers, just treat the input as a sequence of unsigned + characters.) + . + The two programs are useful for generating test data, for inspecting binary + files, and for interfacing programs that generate textual output to programs + that require binary input and conversely. They can also be useful when it is + desired to reformat numbers. --- ascii2binary-2.14.orig/debian/compat +++ ascii2binary-2.14/debian/compat @@ -0,0 +1 @@ +8 --- ascii2binary-2.14.orig/debian/rules +++ ascii2binary-2.14/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@