From 5c8fae239a898369cb044c528b7c82df3b18ba1a Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 27 Jul 2017 15:01:26 +0200 Subject: [PATCH 1/4] sg3_utils: change to versionless bee file --- sg3_utils-1.29-0.bee => sg3_utils.be0 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename sg3_utils-1.29-0.bee => sg3_utils.be0 (71%) diff --git a/sg3_utils-1.29-0.bee b/sg3_utils.be0 similarity index 71% rename from sg3_utils-1.29-0.bee rename to sg3_utils.be0 index 48db1e477..8808d899c 100755 --- a/sg3_utils-1.29-0.bee +++ b/sg3_utils.be0 @@ -1,6 +1,8 @@ #!/bin/env beesh -SRCURL[0]="http://sg.danny.cz/sg/p/sg3_utils-1.29.tgz" +# BEE_VERSION sg3_utils-1.29-0 + +SRCURL[0]="http://sg.danny.cz/sg/p/sg3_utils-${PKGVERSION}.tgz" PATCHURL[0]="" From 4468c37c61bd04f8dba2d16b177d98b9f36f2d48 Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 27 Jul 2017 17:59:45 +0200 Subject: [PATCH 2/4] sg3_utils: set current version --- sg3_utils.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sg3_utils.be0 b/sg3_utils.be0 index 8808d899c..673a9188d 100755 --- a/sg3_utils.be0 +++ b/sg3_utils.be0 @@ -1,6 +1,6 @@ #!/bin/env beesh -# BEE_VERSION sg3_utils-1.29-0 +# BEE_VERSION sg3_utils-1.42-0 SRCURL[0]="http://sg.danny.cz/sg/p/sg3_utils-${PKGVERSION}.tgz" From eb648ed344bce418ad6bd4623e6866958e4333de Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 27 Jul 2017 18:04:53 +0200 Subject: [PATCH 3/4] sg3_utils: switch to verbose template when switching to the verbose template it also turned out that 'build_in_sourcedir' is unneeded. --- sg3_utils.be0 | 43 ++++++++++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/sg3_utils.be0 b/sg3_utils.be0 index 673a9188d..0fcc179c4 100755 --- a/sg3_utils.be0 +++ b/sg3_utils.be0 @@ -2,32 +2,41 @@ # BEE_VERSION sg3_utils-1.42-0 +## The source URL(s) array SRCURL[0]="http://sg.danny.cz/sg/p/sg3_utils-${PKGVERSION}.tgz" -PATCHURL[0]="" +## Add URLs/paths to patch files +# PATCHURL+=() -PGRP=( uncategorized ) +## files that should not be added from the image directory. +# EXCLUDE+=() +## uncomment to change default +# build_in_sourcedir -B=${S} +## specify different source directory +# sourcesubdir_append src -# BEE_CONFIGURE=compat -# EXCLUDE="" +#mee_extract() { +# bee_extract "${@}" +#} -mee_patch() { - bee_patch -} +#mee_patch() { +# bee_patch "${@}" +#} -mee_configure() { - bee_configure -} +#mee_configure() { +# bee_configure +#} -mee_build() { - bee_build -} +#mee_build() { +# bee_build +#} -mee_install() { - bee_install -} +## mee_install() should install into "${D}" +## default: 'make install DESTDIR="${D}"' +#mee_install() { +# bee_install +#} From ec7164c3ab938ab7c7caf31543ae300979da09f6 Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 27 Jul 2017 18:08:09 +0200 Subject: [PATCH 4/4] sg3_utils: add an important note concerning the download protocol --- sg3_utils.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/sg3_utils.be0 b/sg3_utils.be0 index 0fcc179c4..930867a42 100755 --- a/sg3_utils.be0 +++ b/sg3_utils.be0 @@ -3,6 +3,7 @@ # BEE_VERSION sg3_utils-1.42-0 ## The source URL(s) array +# the site uses an invalid certificate, thus the adherence on http SRCURL[0]="http://sg.danny.cz/sg/p/sg3_utils-${PKGVERSION}.tgz" ## Add URLs/paths to patch files