summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2018-09-26 13:44:13 +0800
committerArmin Kuster <akuster808@gmail.com>2018-09-29 10:43:01 -0700
commit29b5ec44c73e0a3544ecdd15381f3ae1f2d692ea (patch)
tree0222da4b6caa9dd7c5dc29a06b9788ebfd70d7e3
parent04ef9df593e37bdf3105c1b4c4638982082e49b0 (diff)
downloadmeta-security-29b5ec44c73e0a3544ecdd15381f3ae1f2d692ea.tar.gz
keynote: remove recipe
The keynote is unmaintained for a long time. It had been removed from main distributions (Fedora, Suse and Debian). See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594867 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--recipes-security/keynote/keynote-2.3/configure-remove-hardcode-path.patch37
-rw-r--r--recipes-security/keynote/keynote-2.3/makefile-add-ldflags.patch36
-rw-r--r--recipes-security/keynote/keynote-2.3/run-ptest16
-rw-r--r--recipes-security/keynote/keynote_2.3.bb40
4 files changed, 0 insertions, 129 deletions
diff --git a/recipes-security/keynote/keynote-2.3/configure-remove-hardcode-path.patch b/recipes-security/keynote/keynote-2.3/configure-remove-hardcode-path.patch
deleted file mode 100644
index af3ef42..0000000
--- a/recipes-security/keynote/keynote-2.3/configure-remove-hardcode-path.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1Remove the hardcoded lib and include dirs
2
3Upstream-Status: Inappropriate [cross compile specific]
4
5written by: Amy Fong <amy.fong@windriver.com>
6Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
7
8--- keynote-2.3/configure.in.orig 2010-05-24 04:44:16.000000000 -0700
9+++ keynote-2.3/configure.in 2010-05-24 04:44:55.000000000 -0700
10@@ -21,27 +21,16 @@
11 AC_PATH_PROG(ECHO, echo, /bin/echo)
12 AC_PATH_PROG(SED, sed, /usr/bin/sed)
13
14-dnl Checks for libraries.
15-LIBS="-L/usr/lib -L/usr/local/lib -L/usr/ssl/lib -L/usr/openssl/lib\
16- -L/usr/local/ssl/lib -L/usr/local/openssl/lib -L/usr/pkg/lib -L/pkg/lib"
17-
18 AC_CHECK_LIB(m, floor, LIBS="$LIBS -lm")
19 AC_CHECK_LIB(rsaref, RSAPrivateDecrypt, LIBS="$LIBS -lrsaref")
20 AC_CHECK_LIB(crypto, i2a_ASN1_STRING, LIBS="$LIBS -lcrypto")
21 AC_CHECK_LIB(RSAglue, RSA_ref_private_encrypt, LIBS="$LIBS -lRSAglue")
22
23-dnl Checks for header files.
24-CPPFLAGS="-I/usr/include -I/usr/local/include -I/usr/ssl/include\
25- -I/usr/local/ssl/include -I/usr/openssl/include -I/usr/pkg/include\
26- -I/usr/local/openssl/include -I/pkg/include"
27-
28 AC_HEADER_STDC
29 AC_HEADER_TIME
30 AC_CHECK_HEADERS(fcntl.h limits.h unistd.h regex.h sys/time.h io.h)
31 AC_CHECK_HEADERS(ssl/crypto.h openssl/crypto.h crypto.h memory.h)
32
33-dnl Checks for other files
34-
35 dnl Checks for typedefs, structures, and compiler characteristics.
36 AC_C_CONST
37 AC_CHECK_TYPE(u_int, unsigned int)
diff --git a/recipes-security/keynote/keynote-2.3/makefile-add-ldflags.patch b/recipes-security/keynote/keynote-2.3/makefile-add-ldflags.patch
deleted file mode 100644
index 80d87cf..0000000
--- a/recipes-security/keynote/keynote-2.3/makefile-add-ldflags.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1Add LDFLAGS variable to Makefile so that extra linker flags can be sent via this variable.
2
3Upstream-Status: Pending
4
5Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
6
7diff --git a/Makefile.in b/Makefile.in
8index b216648..42b4827 100644
9--- a/Makefile.in
10+++ b/Makefile.in
11@@ -35,6 +35,7 @@ MKDIR = @MKDIR@
12 SED = @SED@
13 ECHO = @ECHO@
14 TR = @TR@
15+LDFLAGS = @LDFLAGS@
16
17 TARFLAGS = -cvzf ${DISTFILE}
18 YACCFLAGS2 = -d -p kv -b z
19@@ -83,7 +84,7 @@ $(TARGET): $(OBJS)
20 $(RANLIB) $(TARGET)
21
22 $(TARGET2): $(TARGET) $(OBJS2)
23- $(CC) $(CFLAGS) -o $(TARGET2) $(OBJS2) $(LIBS)
24+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET2) $(OBJS2) $(LIBS)
25
26 k.tab.c: keynote.y header.h keynote.h assertion.h config.h
27 $(YACC) $(YACCFLAGS) keynote.y
28@@ -131,7 +132,7 @@ $(SSLCERT) $(SSLKEY):
29 -keyout $(SSLKEY)
30
31 test-sample: all $(OBJS3)
32- $(CC) $(CFLAGS) -o $(TARGET3) $(OBJS3) $(LIBS)
33+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET3) $(OBJS3) $(LIBS)
34
35 test-sig: all $(SSLCERT) $(SSLKEY)
36 $(SED) -e 's/--.*//' < $(SSLCERT) > $(SSLCERT).1
diff --git a/recipes-security/keynote/keynote-2.3/run-ptest b/recipes-security/keynote/keynote-2.3/run-ptest
deleted file mode 100644
index 4dc35c9..0000000
--- a/recipes-security/keynote/keynote-2.3/run-ptest
+++ /dev/null
@@ -1,16 +0,0 @@
1#!/bin/sh
2
3cd @PTEST_PATH@
4keynote verify -e testsuite/test-env \
5 -r false,maybe,probably,true \
6 -k testsuite/auth1 -k testsuite/auth2 \
7 -k testsuite/auth3 -k testsuite/auth4 \
8 -l testsuite/test-assertion1 \
9 -l testsuite/test-assertion2 \
10 -l testsuite/test-assertion3 \
11 -l testsuite/test-assertion4 \
12 -l testsuite/test-assertion5 \
13 -l testsuite/test-assertion6 \
14 -l testsuite/test-assertion7 \
15 && echo "PASS: keynote-ptest" \
16 || echo "FAIL: keynote-ptest"
diff --git a/recipes-security/keynote/keynote_2.3.bb b/recipes-security/keynote/keynote_2.3.bb
deleted file mode 100644
index 6ec26b8..0000000
--- a/recipes-security/keynote/keynote_2.3.bb
+++ /dev/null
@@ -1,40 +0,0 @@
1SUMMARY = "Keynote tool and library"
2DESCRIPTION = "KeyNote is a simple and flexible trust-management \
3 system designed to work well for a variety of large- and small- \
4 scale Internet-based applications. \
5"
6HOMEPAGE = "http://www.cs.columbia.edu/~angelos/keynote.html"
7SECTION = "security"
8
9LICENSE = "ISC"
10LIC_FILES_CHKSUM = "file://LICENSE;md5=3a265095c549c1808686a676f2699c98"
11
12MAIN_ID = "${@d.getVar('PV').split('.')[0]}"
13MINOR_ID = "${@d.getVar('PV').split('.')[1]}"
14SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}-${MAIN_ID}-${MINOR_ID}/${BPN}_${PV}.tar.gz \
15 file://configure-remove-hardcode-path.patch \
16 file://makefile-add-ldflags.patch \
17 file://run-ptest \
18"
19S = "${WORKDIR}/${BPN}-${PV}+dfsg.orig"
20
21inherit autotools-brokensep ptest
22
23SRC_URI[md5sum] = "a14553e6ad921b5c85026ce5bec3afe7"
24SRC_URI[sha256sum] = "38d2acfa1c3630a07adcb5c8fe92d2aef7f0e6d242b8998b2bbb1c6e4c408d46"
25
26DEPENDS = "flex openssl10 bison-native"
27
28EXTRA_OEMAKE += "test-sample -j1"
29
30do_install() {
31 install -D -m 0755 ${S}/keynote ${D}${bindir}/keynote
32 install -D -m 0644 ${S}/libkeynote.a ${D}${libdir}/libkeynote.a
33 install -D -m 0644 ${S}/keynote.h ${D}${includedir}/keynote.h
34}
35
36do_install_ptest() {
37 install -D -m 0755 ${S}/sample-app ${D}${PTEST_PATH}
38 cp -r ${S}/testsuite ${D}${PTEST_PATH}
39 sed -i 's|@PTEST_PATH@|${PTEST_PATH}|' ${D}${PTEST_PATH}/run-ptest
40}