--- dns323-firmware-tools-0.7.3.orig/debian/changelog +++ dns323-firmware-tools-0.7.3/debian/changelog @@ -0,0 +1,71 @@ +dns323-firmware-tools (0.7.3-1.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Tue, 29 Dec 2020 01:11:48 +0100 + +dns323-firmware-tools (0.7.3-1) unstable; urgency=low + + * New upstream release. + - Fixed -p option to mkdns323fw. Closes: #752318 + + -- Matt Palmer Mon, 23 Jun 2014 12:44:46 +1000 + +dns323-firmware-tools (0.7.2-1) unstable; urgency=low + + * New upstream release. + - Fix bug that made mkdns323fw pretty useless. Closes: #751753. + + -- Matt Palmer Tue, 17 Jun 2014 09:27:33 +1000 + +dns323-firmware-tools (0.7.1-1) unstable; urgency=low + + * New upstream release. + + -- Matt Palmer Thu, 01 May 2014 17:10:25 +1000 + +dns323-firmware-tools (0.6-2) unstable; urgency=low + + * Correct ruby dependency. Closes: #740744. + + -- Matt Palmer Sun, 13 Apr 2014 10:00:52 +1000 + +dns323-firmware-tools (0.6-1) unstable; urgency=low + + * New upstream release. + + -- Matt Palmer Fri, 11 Apr 2014 17:04:20 +1000 + +dns323-firmware-tools (0.5-1) unstable; urgency=low + + * New upstream release. + * Supports Ruby 1.9. (Closes: #735476) + + -- Matt Palmer Sun, 02 Mar 2014 14:14:08 +1100 + +dns323-firmware-tools (0.3-2) unstable; urgency=low + + * Include splitdns323fw binary and manpage in package. + Closes: #520244 + + -- Matt Palmer Wed, 18 Mar 2009 22:19:17 +1100 + +dns323-firmware-tools (0.3-1) unstable; urgency=low + + * New upstream release. Closes: #519852 + + -- Matt Palmer Mon, 16 Mar 2009 06:06:06 +1100 + +dns323-firmware-tools (0.2-1) unstable; urgency=low + + * New upstream release + + -- Matt Palmer Wed, 12 Nov 2008 06:19:23 +1100 + +dns323-firmware-tools (0.1-1) unstable; urgency=low + + * Initial release. + + -- Matt Palmer Mon, 20 Oct 2008 23:18:24 +1100 + --- dns323-firmware-tools-0.7.3.orig/debian/compat +++ dns323-firmware-tools-0.7.3/debian/compat @@ -0,0 +1 @@ +7 --- dns323-firmware-tools-0.7.3.orig/debian/control +++ dns323-firmware-tools-0.7.3/debian/control @@ -0,0 +1,20 @@ +Source: dns323-firmware-tools +Section: otherosfs +Priority: optional +Maintainer: Matt Palmer +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.0 +Homepage: http://theshed.hezmatt.org/dns323-firmware-tools/ + +Package: dns323-firmware-tools +Architecture: all +Depends: ruby (>= 1:1.9.3), ruby-ffi +Description: build and manipulate firmware images for a range of NAS devices + This package contains programs for manipulating the firmware images used by + a range of small consumer-grade NAS devices, such as the D-Link DNS-323. + . + These firmware images are what are used to "bundle" the kernel, initrd, and + other data when uploading new firmware images using the "stock" interface. + If you are already running a custom firmware, it is likely that these tools + will be of no use to you, and you will need to use whatever update + mechanism is provided by your firmware. --- dns323-firmware-tools-0.7.3.orig/debian/copyright +++ dns323-firmware-tools-0.7.3/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Matt Palmer on +Mon, 20 Oct 2008 23:18:24 +1100. + +It was downloaded from + +Upstream Author: + + Matt Palmer + +Copyright: + + Copyright (C) 2008 Matt Palmer + +License: + + 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 2 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, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +The Debian packaging is (C) 2008, Matt Palmer and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- dns323-firmware-tools-0.7.3.orig/debian/dirs +++ dns323-firmware-tools-0.7.3/debian/dirs @@ -0,0 +1 @@ +usr/bin --- dns323-firmware-tools-0.7.3.orig/debian/docs +++ dns323-firmware-tools-0.7.3/debian/docs @@ -0,0 +1 @@ +README.md --- dns323-firmware-tools-0.7.3.orig/debian/rules +++ dns323-firmware-tools-0.7.3/debian/rules @@ -0,0 +1,54 @@ +#!/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 + +DESTDIR=$(CURDIR)/debian/dns323-firmware-tools + +build: build-stamp +build-stamp: + dh_testdir + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/dns323-firmware-tools. + cp mkdns323fw splitdns323fw $(DESTDIR)/usr/bin + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG + dh_installdocs + dh_installman mkdns323fw.1 splitdns323fw.1 + 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