From 5cf94b9ae9e0bd25c9f3849a23eeb4efe7d55cc7 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 28 Aug 2017 09:30:49 +0200 Subject: [PATCH 1/2] expect: Convert to versionless bee-file --- expect-5.44.1.15-0.bee => expect.be0 | 2 ++ 1 file changed, 2 insertions(+) rename expect-5.44.1.15-0.bee => expect.be0 (95%) diff --git a/expect-5.44.1.15-0.bee b/expect.be0 similarity index 95% rename from expect-5.44.1.15-0.bee rename to expect.be0 index c13b49381..4b564aa29 100755 --- a/expect-5.44.1.15-0.bee +++ b/expect.be0 @@ -1,5 +1,7 @@ #!/bin/env beesh +# BEE_VERSION expect-5.44.1.15-0 + PGRP=( programming ) SRCURL="http://prdownloads.sourceforge.net/expect/expect-5.44.1.15.tar.bz2" From e0e6e1a5e51288ae6b112c1a7493159fa1654383 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 28 Aug 2017 09:31:45 +0200 Subject: [PATCH 2/2] expect: Update from 5.44.1.15 to 5.45 issue #443 close #443 --- expect.be0 | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/expect.be0 b/expect.be0 index 4b564aa29..c9ed70652 100755 --- a/expect.be0 +++ b/expect.be0 @@ -1,27 +1,16 @@ #!/bin/env beesh -# BEE_VERSION expect-5.44.1.15-0 +# BEE_VERSION expect-5.45-0 -PGRP=( programming ) - -SRCURL="http://prdownloads.sourceforge.net/expect/expect-5.44.1.15.tar.bz2" - -#PATCHES[0]="http://www.linuxfromscratch.org/patches/lfs/development/expect-5.44.1.15-no_tk-1.patch" - -#PATCHES[0]="http://www.linuxfromscratch.org/patches/blfs/svn/expect-5.43.0-tcl_8.5.8_fix-1.patch" -#PATCHES[1]="http://www.linuxfromscratch.org/patches/blfs/svn/expect-5.43.0-spawn-2.patch" - - -IGNORE_DATAROOTDIR=yes -IGNORE_LOCALEDIR=yes -IGNORE_DOCDIR=yes +SRCURL="https://downloads.sourceforge.net/expect/expect${PKGVERSION}.tar.gz" # EXCLUDE="" #B=${S} mee_configure() { - bee_configure --with-tcl=${LIBDIR} --with-tclinclude=${INCLUDEDIR} + bee_configure --with-tcl=${LIBDIR} --with-tclinclude=${INCLUDEDIR} \ + --enable-shared } # mee_build() { @@ -31,5 +20,6 @@ mee_configure() { mee_install() { bee_install -# ln -sf ../libexpect${PV}.a ${D}${LIBDIR}/expect${PV} + cd ${D} + start_cmd ln -s ${LIBDIR}/expect${PKGVERSION}/libexpect${PKGVERSION}.so ${D}${LIBDIR} }