From 0a0a2d5874db365ca638c68b2db8a403321acdae Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 16 Oct 2014 22:41:40 -0400 Subject: Initial commit --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..213a9bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Swap and backup files +.*.sw* +.sw* +*~ +Session.vim + +# Source archives +*-*.orig.tar.* + +# Work area +tmp/ diff --git a/build b/build new file mode 100755 index 0000000..2a40656 --- /dev/null +++ b/build @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: diff --git a/changelog b/changelog new file mode 100644 index 0000000..9418fd8 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +dropbear (2014.65-1) trunk + + * Initial release. + + -- "P. J. McDermott" Thu, 16 Oct 2014 22:31:46 -0400 diff --git a/control b/control new file mode 100644 index 0000000..6c85a87 --- /dev/null +++ b/control @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" +Build-Depends: opkhelper-3.0, libtomcrypt-dev +Homepage: https://matt.ucc.asn.au/dropbear/dropbear.html diff --git a/format b/format new file mode 100644 index 0000000..cd5ac03 --- /dev/null +++ b/format @@ -0,0 +1 @@ +2.0 diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..bafa64d --- /dev/null +++ b/source.mk @@ -0,0 +1,8 @@ +upstream_archive = dropbear-$(OPK_SOURCE_VERSION_UPSTREAM).tar.bz2 +upstream_url = https://matt.ucc.asn.au/dropbear/releases/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 + +$(source_archive): + wget -O '$@' '$(upstream_url)' + +source: $(source_archive) -- cgit v0.9.1