Re: [yocto] recipe gsl-1.15

2013-05-09 Thread Philip Balister
There is already a recipe for gsl in meta-oe: ./meta-oe/recipes-support/gsl/gsl_1.12.bb We be happy to take a patch to update it to a current gsl. Philip On 05/09/2013 11:48 AM, Edward Vidal wrote: > Hello, > I am trying to write the recipe to add gsl-1.15 to core-image-sato. > > First I did m

Re: [yocto] recipe gsl-1.15

2013-05-09 Thread Edward Vidal
Hello, Below is the current gs_1.15.bb DESCRIPTION = "GNU Scientific Library (GSL)" HOMEPAGE = "http://www.gnu.org/software/gsl/"; LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" SRC_URI = "http://mirror.rit.edu/gnu/gnu/gsl/gsl-${PV}.tar.gz"; SRC_URI[md5

Re: [yocto] recipe gsl-1.15

2013-05-09 Thread Burton, Ross
On 9 May 2013 17:50, Edward Vidal wrote: > The only place I saw ** License updated to GNU GPL version 3. was in the > NEWS file. GNU software typically includes a COPYING file with the license terms in, use that entire file. Ross ___ yocto mailing lis

Re: [yocto] recipe gsl-1.15

2013-05-09 Thread Edward Vidal
All, The only place I saw ** License updated to GNU GPL version 3. was in the NEWS file. I modified the recipe gsl_1.15.bb as follows DESCRIPTION = "GNU Scientific Library (GSL)" HOMEPAGE = "http://www.gnu.org/software/gsl/"; LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://NEWS;beginline=361;endlin

Re: [yocto] recipe gsl-1.15

2013-05-09 Thread Burton, Ross
Hi, On 9 May 2013 16:48, Edward Vidal wrote: > I am trying to write the recipe to add gsl-1.15 to core-image-sato. > > First I did mdkir poky/meta/recipes-support/gsl > > Is this the correct location for this recipe? It's a perfectly valid location. The recipes folders have no defined structure

Re: [yocto] recipe gsl-1.15

2013-05-09 Thread Tomas Frydrych
On 09/05/13 16:48, Edward Vidal wrote: > "file://NEWS;beginline=362;endline=363;md5=325d4344063147ef38e3ac2cbf1cc157" You should be hashing the actual license file, not the NEWS file. Also, the above is only hashing one line of the file, while your md5 sum is for the whole file. Tomas __

[yocto] recipe gsl-1.15

2013-05-09 Thread Edward Vidal
Hello, I am trying to write the recipe to add gsl-1.15 to core-image-sato. First I did mdkir poky/meta/recipes-support/gsl Is this the correct location for this recipe? cp ~/POKY/gsl_1.15.bb ../meta/recipes-support/gsl/ This is the gsl_1.15.bb file **