diff options
author | P. J. McDermott <pjm@nac.net> | 2013-10-09 17:23:52 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-10-09 17:31:00 (EDT) |
commit | debc641386aadbee613f7b03f3463b82ac426231 (patch) | |
tree | bfcaf5369f8ac21e6362c6459c96d5ee172fce3b |
Initial commit.
-rw-r--r-- | .gitignore | 11 | ||||
-rwxr-xr-x | build | 20 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | keyring.gpg | bin | 0 -> 5164 bytes | |||
-rw-r--r-- | source.mk | 28 |
7 files changed, 68 insertions, 0 deletions
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/ @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: + +configure: + oh-autoconfigure + touch $@ + +build: configure + oh-autobuild + touch $@ + +install: build + oh-autoinstall + oh-fixperms + oh-strip + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..665fb25 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +strace (4.8-1) trunk + + * Initial release. + + -- "P. J. McDermott" <pjm@nac.net> Wed, 09 Oct 2013 17:08:38 -0400 @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" <pjm@nac.net> +Build-Depends: opkhelper-3.0 +Homepage: http://sourceforge.net/projects/strace/ @@ -0,0 +1 @@ +2.0 diff --git a/keyring.gpg b/keyring.gpg Binary files differnew file mode 100644 index 0000000..c0563b3 --- /dev/null +++ b/keyring.gpg diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..aac9ab0 --- /dev/null +++ b/source.mk @@ -0,0 +1,28 @@ +# Upstream only distributes xz-compressed archives, which opkbuild doesn't +# support. So we repack with bzip2 compression. + +upstream_sf_base = http://downloads.sourceforge.net/project/strace +upstream_path = strace/$(OPK_SOURCE_VERSION_UPSTREAM) +upstream_archive = strace-$(OPK_SOURCE_VERSION_UPSTREAM).tar.xz +upstream_url = $(upstream_sf_base)/$(upstream_path)/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 +keys = F7DDBB3A + +$(source_archive): + wget -c '$(upstream_url)' + set -e; if gpg --version >/dev/null 2>&1; then \ + wget -c '$(upstream_url).asc'; \ + [ -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).asc'; \ + fi + tar -xJf '$(upstream_archive)' + rm -f '$(upstream_archive)' '$(upstream_archive).asc' + tar -cjf '$(source_archive)' \ + $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM) + mv $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM) src + +source: $(source_archive) |