From 6bd45d872859822f848bfbad8c505acf24694efb Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 11 Oct 2013 10:43:14 -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..ba1ea1d --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +gdb (7.6.1+sip1-1) trunk + + * Initial release. + + -- "P. J. McDermott" Fri, 11 Oct 2013 10:00:21 -0400 diff --git a/control b/control new file mode 100644 index 0000000..ff3b82f --- /dev/null +++ b/control @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" +Build-Depends: opkhelper-3.0 +Homepage: https://www.gnu.org/software/gdb/ diff --git a/copyright b/copyright new file mode 100644 index 0000000..a41202a --- /dev/null +++ b/copyright @@ -0,0 +1,18 @@ +Upstream Source +=============== + + +On this system, a copy of the GNU General Public License may be found at +. + + +Distribution Packaging +====================== + +Copyright (C) 2013 Patrick "P. J." McDermott + +These files may be reproduced, distributed, modified, and otherwise dealt in +under the terms of the Expat License. + +On this system, a copy of the Expat License may be found at +. 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/keyring.gpg b/keyring.gpg new file mode 100644 index 0000000..32394dc --- /dev/null +++ b/keyring.gpg Binary files differ diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..f946eea --- /dev/null +++ b/source.mk @@ -0,0 +1,33 @@ +non_free_files = \ + gdb/doc/gdb.texinfo \ + gdb/doc/gdb.info* + +upstream_version = $$(printf '%s\n' '$(OPK_SOURCE_VERSION_UPSTREAM)' | \ + sed 's/^\([0-9a-z.~-][0-9a-z.~-]*\)+sip[1-9][0-9]*.*$$/\1/') +upstream_name = $(OPK_SOURCE)-$(upstream_version) +upstream_archive = $(upstream_name).tar.bz2 +upstream_url = http://ftp.gnu.org/gnu/$(OPK_SOURCE)/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 +keys = FF325CF3 + +$(source_archive): + wget -c "$(upstream_url)" + set -e; if gpg --version >/dev/null 2>&1; then \ + wget -c "$(upstream_url).sig"; \ + [ -e ../keyring.gpg ] || \ + gpg --keyring ../keyring.gpg --no-default-keyring \ + --recv-keys $(keys) || true; \ + rm -f ../keyring.gpg~; \ + gpg --verify --keyring ../keyring.gpg \ + "$(upstream_archive).sig"; \ + rm -f "$(upstream_archive).sig"; \ + fi + tar -xjf "$(upstream_archive)" + rm -f "$(upstream_archive)" + cd "$(upstream_name)"; for file in $(non_free_files); do \ + rm -f "$${file}"; \ + done; cd .. + tar -cjf '$(source_archive)' "$(upstream_name)" + rm -Rf "$(upstream_name)" + +source: $(source_archive) -- cgit v0.9.1