From e4010fb5ba25215ed7ad1aceb26e7bc8237d3856 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 24 Nov 2018 14:03:41 -0500 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..75da92b --- /dev/null +++ b/build @@ -0,0 +1,21 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: + +build: + oh-autoconfigure + oh-autobuild + if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \ + oh-autotest; \ + fi + touch $@ + +install: build + oh-autoinstall + rm dest/usr/lib/$(OPK_HOST_ARCH)/libksba.la + oh-fixperms + oh-strip + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..8f258ee --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +libksba (1.3.5-1) trunk + + * Initial release. + + -- Patrick McDermott Sat, 24 Nov 2018 13:49:56 -0500 diff --git a/control b/control new file mode 100644 index 0000000..8c47529 --- /dev/null +++ b/control @@ -0,0 +1,3 @@ +Maintainer: Patrick McDermott +Build-Depends: opkhelper-3.0, libgpg-error-dev (>= 1.8) +Homepage: https://www.gnupg.org/software/libksba/index.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/keyring.gpg b/keyring.gpg new file mode 100644 index 0000000..d473acf --- /dev/null +++ b/keyring.gpg Binary files differ diff --git a/libksba-dev.pkg/control b/libksba-dev.pkg/control new file mode 100644 index 0000000..1a109b6 --- /dev/null +++ b/libksba-dev.pkg/control @@ -0,0 +1,7 @@ +Architecture: any +Platform: all +Depends: libksba.8 (= ${Binary-Version}) +Description: Library to access X.509 and CMS data structures - development files + ${Common-Description} + . + This package provides development files for the KSBA X.509 and CMS library. diff --git a/libksba-dev.pkg/files b/libksba-dev.pkg/files new file mode 100644 index 0000000..74c949b --- /dev/null +++ b/libksba-dev.pkg/files @@ -0,0 +1,4 @@ +/usr/bin/libksba-config +/usr/include/ +/usr/lib/*/libksba.so +/usr/share/aclocal/ diff --git a/libksba-doc.pkg/control b/libksba-doc.pkg/control new file mode 100644 index 0000000..1aa2b29 --- /dev/null +++ b/libksba-doc.pkg/control @@ -0,0 +1,7 @@ +Architecture: all +Platform: all +Depends: libksba.8 (= ${Binary-Version}) +Description: Library to access X.509 and CMS data structures - documentation + ${Common-Description} + . + This package provides documentation for the KSBA X.509 and CMS library. diff --git a/libksba-doc.pkg/files b/libksba-doc.pkg/files new file mode 100644 index 0000000..f12d443 --- /dev/null +++ b/libksba-doc.pkg/files @@ -0,0 +1 @@ +/usr/share/info/ diff --git a/libksba.8.pkg/control b/libksba.8.pkg/control new file mode 100644 index 0000000..4524e53 --- /dev/null +++ b/libksba.8.pkg/control @@ -0,0 +1,4 @@ +Architecture: any +Platform: all +Description: Library to access X.509 and CMS data structures + ${Common-Description} diff --git a/libksba.8.pkg/docs b/libksba.8.pkg/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/libksba.8.pkg/docs diff --git a/libksba.8.pkg/files b/libksba.8.pkg/files new file mode 100644 index 0000000..8bde068 --- /dev/null +++ b/libksba.8.pkg/files @@ -0,0 +1 @@ +/usr/lib/*/ksba.so.* diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..fc80a51 --- /dev/null +++ b/source.mk @@ -0,0 +1,19 @@ +upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.bz2 +upstream_url = ftp://ftp.gnupg.org/gcrypt/$(OPK_SOURCE)/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 +keys = 'D869 2123 C406 5DEA 5E0F 3AB5 249B 39D2 4F25 E3B6' + +$(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'; \ + fi + mv '$(upstream_archive)' '$(source_archive)' + +source: $(source_archive) diff --git a/substvars b/substvars new file mode 100644 index 0000000..cf6c447 --- /dev/null +++ b/substvars @@ -0,0 +1,4 @@ +Common-Description: + KSBA (pronounced Kasbah) is a library to make X.509 certificates as + well as the CMS easily accessible by other applications. Both + specifications are building blocks of S/MIME and TLS. -- cgit v0.9.1