summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-09-05 11:14:34 (EDT)
committer P. J. McDermott <pj@pehjota.net>2015-09-05 11:14:34 (EDT)
commitcd1c5e3aadf8feda96a3380321b6862cc60bf7cb (patch)
tree8834f9c1d46f3da9ef7d518e163fdda092e4c608
Initial commit
-rw-r--r--.gitignore11
-rwxr-xr-xbuild10
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--keyring.gpgbin0 -> 9651 bytes
-rw-r--r--source.mk19
7 files changed, 49 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/
diff --git a/build b/build
new file mode 100755
index 0000000..db67b14
--- /dev/null
+++ b/build
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+include ../source.mk
+
+nop:
+ @:
+
+build:
+
+install:
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..02c3aeb
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+pciutils (3.3.1-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Sat, 05 Sep 2015 10:45:07 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..f719355
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0
+Homepage: http://mj.ucw.cz/sw/pciutils/
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..df2f05a
--- /dev/null
+++ b/keyring.gpg
Binary files differ
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..ab88767
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,19 @@
+upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz
+upstream_url = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/$(upstream_archive)
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz
+keys = '5558 F939 9CD7 8368 5055 3C6E C28E 7847 ED70 F82D'
+
+$(source_archive):
+ wget -c '$(upstream_url)'
+ set -e; if gpg --version >/dev/null 2>&1; then \
+ wget -c '$(upstream_url).sign'; \
+ [ -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).sign'; \
+ fi
+ mv '$(upstream_archive)' '$@'
+
+source: $(source_archive)