--- rabbitsign-2.1+dmca1.orig/debian/copyright +++ rabbitsign-2.1+dmca1/debian/copyright @@ -0,0 +1,59 @@ +This package was debianized by Krzysztof Burghardt on +Fri, 12 Jun 2009 19:20:39 +0200. + +It was downloaded from + + +Source package was repacked to get rid of potentially copyrighted signing keys. +Directory "keys" were removed along with content of "autokeys.h" file. + +Upstream Author: + + Benjamin Moody + +Copyright: + + Copyright © 2003-2009 Benjamin Moody + + (md5.c and md5.h is) + Copyright © 1995-1996 Free Software Foundation, Inc. + +License (most files): + + 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 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 program. If not, see . + +On Debian systems, the complete text of the GNU General +Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +License (test/randapp.c, src/md5.c, src/md5.h): + + 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-2'. + +The Debian packaging is © 2009, Krzysztof Burghardt and +is licensed under the GPL, see above. --- rabbitsign-2.1+dmca1.orig/debian/docs +++ rabbitsign-2.1+dmca1/debian/docs @@ -0,0 +1 @@ +README --- rabbitsign-2.1+dmca1.orig/debian/changelog +++ rabbitsign-2.1+dmca1/debian/changelog @@ -0,0 +1,11 @@ +rabbitsign (2.1+dmca1-1build1) raring; urgency=low + + * Rebuild against libgmp10. + + -- Colin Watson Tue, 08 Jan 2013 13:26:18 +0000 + +rabbitsign (2.1+dmca1-1) unstable; urgency=low + + * Initial release (Closes: #533838) + + -- Krzysztof Burghardt Wed, 21 Oct 2009 23:02:36 +0200 --- rabbitsign-2.1+dmca1.orig/debian/control +++ rabbitsign-2.1+dmca1/debian/control @@ -0,0 +1,21 @@ +Source: rabbitsign +Section: devel +Priority: optional +Maintainer: Krzysztof Burghardt +Build-Depends: debhelper (>= 7), autotools-dev, libgmp3-dev +Standards-Version: 3.8.2 +Homepage: http://www.ticalc.org/archives/files/fileinfo/383/38392.html + +Package: rabbitsign +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: application signing system for the TI-73/83+/84+ calculators + RabbitSign is a free implementation of TI's application signing + system for the TI-73/83+/84+ calculators. + . + It handles binary, sorted and unsorted hex, and GraphLink files, + automatically detects keys, checks the validity of important header + fields, can validate and re-sign previously signed apps, accepts all + valid keys, is highly portable, has no stupid limitations on file + names, application lengths, or header fields and is faster by an order + of magnitude than TI's software. --- rabbitsign-2.1+dmca1.orig/debian/rules +++ rabbitsign-2.1+dmca1/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +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) distclean + rm -f config.sub config.guess + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) prefix=$(CURDIR)/debian/rabbitsign/usr 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 --- rabbitsign-2.1+dmca1.orig/debian/compat +++ rabbitsign-2.1+dmca1/debian/compat @@ -0,0 +1 @@ +7