All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x265: add x265 recipe
@ 2020-02-07 21:34 Scott Branden
  2020-02-07 22:09 ` Alexander Kanavin
  2020-02-07 23:08 ` Andre McCurdy
  0 siblings, 2 replies; 8+ messages in thread
From: Scott Branden @ 2020-02-07 21:34 UTC (permalink / raw)
  To: openembedded-core

Add x265 recipe from latest revision of stable branch.

Signed-off-by: Scott Branden <scott.branden@broadcom.com>
---
 meta/recipes-multimedia/x265/x265_git.bb | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 meta/recipes-multimedia/x265/x265_git.bb

diff --git a/meta/recipes-multimedia/x265/x265_git.bb b/meta/recipes-multimedia/x265/x265_git.bb
new file mode 100644
index 0000000000..7c230e2b1e
--- /dev/null
+++ b/meta/recipes-multimedia/x265/x265_git.bb
@@ -0,0 +1,21 @@
+SUMMARY = "H.265/HEVC video encoder"
+DESCRIPTION = "A free software library and application for encoding video streams into the H.265/HEVC format."
+HOMEPAGE = "http://www.videolan.org/developers/x265.html"
+
+LICENSE = "GPLv2"
+LICENSE_FLAGS = "commercial"
+LIC_FILES_CHKSUM = "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
+
+DEPENDS = "nasm-native"
+DEPENDS = "gnutls zlib libpcre"
+
+SRC_URI = "git://github.com/videolan/x265;branch=stable \
+          "
+
+SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
+
+S = "${WORKDIR}/git/source"
+
+inherit lib_package pkgconfig cmake
+
+AS[unexport] = "1"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-07 21:34 [PATCH] x265: add x265 recipe Scott Branden
@ 2020-02-07 22:09 ` Alexander Kanavin
  2020-02-07 22:26   ` Scott Branden
  2020-02-07 23:08 ` Andre McCurdy
  1 sibling, 1 reply; 8+ messages in thread
From: Alexander Kanavin @ 2020-02-07 22:09 UTC (permalink / raw)
  To: Scott Branden; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 1833 bytes --]

Can you also enable x265 in ffmpeg and gstreamer plugins recipes, so there
would be actual users of the codec in oe-core?

Also, x265 git repo does have tagged releases, and so PV/SRCREV in recipe
should be set to match a release tag.

Alex

On Fri, 7 Feb 2020 at 22:35, Scott Branden via Openembedded-core <
openembedded-core@lists.openembedded.org> wrote:

> Add x265 recipe from latest revision of stable branch.
>
> Signed-off-by: Scott Branden <scott.branden@broadcom.com>
> ---
>  meta/recipes-multimedia/x265/x265_git.bb | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>  create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>
> diff --git a/meta/recipes-multimedia/x265/x265_git.bb
> b/meta/recipes-multimedia/x265/x265_git.bb
> new file mode 100644
> index 0000000000..7c230e2b1e
> --- /dev/null
> +++ b/meta/recipes-multimedia/x265/x265_git.bb
> @@ -0,0 +1,21 @@
> +SUMMARY = "H.265/HEVC video encoder"
> +DESCRIPTION = "A free software library and application for encoding video
> streams into the H.265/HEVC format."
> +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
> +
> +LICENSE = "GPLv2"
> +LICENSE_FLAGS = "commercial"
> +LIC_FILES_CHKSUM =
> "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
> +
> +DEPENDS = "nasm-native"
> +DEPENDS = "gnutls zlib libpcre"
> +
> +SRC_URI = "git://github.com/videolan/x265;branch=stable \
> +          "
> +
> +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
> +
> +S = "${WORKDIR}/git/source"
> +
> +inherit lib_package pkgconfig cmake
> +
> +AS[unexport] = "1"
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 3170 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-07 22:09 ` Alexander Kanavin
@ 2020-02-07 22:26   ` Scott Branden
  2020-02-07 23:28     ` Scott Branden
  0 siblings, 1 reply; 8+ messages in thread
From: Scott Branden @ 2020-02-07 22:26 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 2741 bytes --]

HI Alex,

On 2020-02-07 2:09 p.m., Alexander Kanavin wrote:
> Can you also enable x265 in ffmpeg and gstreamer plugins recipes, so 
> there would be actual users of the codec in oe-core?
I do have a patch for ffmpeg and have tested that works.  I'll add that 
to the patch series.
>
> Also, x265 git repo does have tagged releases, and so PV/SRCREV in 
> recipe should be set to match a release tag.
You'll have to help me out a little here on exactly what you want.

This is based off the stable tag.
I already specified the SRCREV in the recipe.

Do you want PV to be:
PV = "stable+git${SRCPV}"

?
>
> Alex
>
> On Fri, 7 Feb 2020 at 22:35, Scott Branden via Openembedded-core 
> <openembedded-core@lists.openembedded.org 
> <mailto:openembedded-core@lists.openembedded.org>> wrote:
>
>     Add x265 recipe from latest revision of stable branch.
>
>     Signed-off-by: Scott Branden <scott.branden@broadcom.com
>     <mailto:scott.branden@broadcom.com>>
>     ---
>      meta/recipes-multimedia/x265/x265_git.bb <http://x265_git.bb> |
>     21 +++++++++++++++++++++
>      1 file changed, 21 insertions(+)
>      create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>     <http://x265_git.bb>
>
>     diff --git a/meta/recipes-multimedia/x265/x265_git.bb
>     <http://x265_git.bb> b/meta/recipes-multimedia/x265/x265_git.bb
>     <http://x265_git.bb>
>     new file mode 100644
>     index 0000000000..7c230e2b1e
>     --- /dev/null
>     +++ b/meta/recipes-multimedia/x265/x265_git.bb <http://x265_git.bb>
>     @@ -0,0 +1,21 @@
>     +SUMMARY = "H.265/HEVC video encoder"
>     +DESCRIPTION = "A free software library and application for
>     encoding video streams into the H.265/HEVC format."
>     +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
>     +
>     +LICENSE = "GPLv2"
>     +LICENSE_FLAGS = "commercial"
>     +LIC_FILES_CHKSUM =
>     "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
>     +
>     +DEPENDS = "nasm-native"
>     +DEPENDS = "gnutls zlib libpcre"
>     +
>     +SRC_URI = "git://github.com/videolan/x265;branch=stable
>     <http://github.com/videolan/x265;branch=stable> \
>     +          "
>     +
>     +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
>     +
>     +S = "${WORKDIR}/git/source"
>     +
>     +inherit lib_package pkgconfig cmake
>     +
>     +AS[unexport] = "1"
>     -- 
>     2.17.1
>
>     -- 
>     _______________________________________________
>     Openembedded-core mailing list
>     Openembedded-core@lists.openembedded.org
>     <mailto:Openembedded-core@lists.openembedded.org>
>     http://lists.openembedded.org/mailman/listinfo/openembedded-core
>


[-- Attachment #2: Type: text/html, Size: 5574 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-07 21:34 [PATCH] x265: add x265 recipe Scott Branden
  2020-02-07 22:09 ` Alexander Kanavin
@ 2020-02-07 23:08 ` Andre McCurdy
  2020-02-07 23:15   ` Scott Branden
  1 sibling, 1 reply; 8+ messages in thread
From: Andre McCurdy @ 2020-02-07 23:08 UTC (permalink / raw)
  To: Scott Branden; +Cc: OE Core mailing list

On Fri, Feb 7, 2020 at 1:35 PM Scott Branden via Openembedded-core
<openembedded-core@lists.openembedded.org> wrote:
>
> Add x265 recipe from latest revision of stable branch.
>
> Signed-off-by: Scott Branden <scott.branden@broadcom.com>
> ---
>  meta/recipes-multimedia/x265/x265_git.bb | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>  create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>
> diff --git a/meta/recipes-multimedia/x265/x265_git.bb b/meta/recipes-multimedia/x265/x265_git.bb
> new file mode 100644
> index 0000000000..7c230e2b1e
> --- /dev/null
> +++ b/meta/recipes-multimedia/x265/x265_git.bb
> @@ -0,0 +1,21 @@
> +SUMMARY = "H.265/HEVC video encoder"
> +DESCRIPTION = "A free software library and application for encoding video streams into the H.265/HEVC format."
> +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
> +
> +LICENSE = "GPLv2"
> +LICENSE_FLAGS = "commercial"
> +LIC_FILES_CHKSUM = "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
> +
> +DEPENDS = "nasm-native"
> +DEPENDS = "gnutls zlib libpcre"

What's the final value of DEPENDS you are expecting here?

> +SRC_URI = "git://github.com/videolan/x265;branch=stable \
> +          "
> +
> +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
> +
> +S = "${WORKDIR}/git/source"
> +
> +inherit lib_package pkgconfig cmake
> +
> +AS[unexport] = "1"
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-07 23:08 ` Andre McCurdy
@ 2020-02-07 23:15   ` Scott Branden
  0 siblings, 0 replies; 8+ messages in thread
From: Scott Branden @ 2020-02-07 23:15 UTC (permalink / raw)
  To: Andre McCurdy; +Cc: OE Core mailing list



On 2020-02-07 3:08 p.m., Andre McCurdy wrote:
> On Fri, Feb 7, 2020 at 1:35 PM Scott Branden via Openembedded-core
> <openembedded-core@lists.openembedded.org> wrote:
>> Add x265 recipe from latest revision of stable branch.
>>
>> Signed-off-by: Scott Branden <scott.branden@broadcom.com>
>> ---
>>   meta/recipes-multimedia/x265/x265_git.bb | 21 +++++++++++++++++++++
>>   1 file changed, 21 insertions(+)
>>   create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>>
>> diff --git a/meta/recipes-multimedia/x265/x265_git.bb b/meta/recipes-multimedia/x265/x265_git.bb
>> new file mode 100644
>> index 0000000000..7c230e2b1e
>> --- /dev/null
>> +++ b/meta/recipes-multimedia/x265/x265_git.bb
>> @@ -0,0 +1,21 @@
>> +SUMMARY = "H.265/HEVC video encoder"
>> +DESCRIPTION = "A free software library and application for encoding video streams into the H.265/HEVC format."
>> +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
>> +
>> +LICENSE = "GPLv2"
>> +LICENSE_FLAGS = "commercial"
>> +LIC_FILES_CHKSUM = "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
>> +
>> +DEPENDS = "nasm-native"
>> +DEPENDS = "gnutls zlib libpcre"
> What's the final value of DEPENDS you are expecting here?
Started from the x264 recipe - will remove "nasm-native".  Thanks for 
noticing this.
>
>> +SRC_URI = "git://github.com/videolan/x265;branch=stable \
>> +          "
>> +
>> +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
>> +
>> +S = "${WORKDIR}/git/source"
>> +
>> +inherit lib_package pkgconfig cmake
>> +
>> +AS[unexport] = "1"
>> --
>> 2.17.1
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-07 22:26   ` Scott Branden
@ 2020-02-07 23:28     ` Scott Branden
  2020-02-08 14:47       ` Alexander Kanavin
  0 siblings, 1 reply; 8+ messages in thread
From: Scott Branden @ 2020-02-07 23:28 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 3062 bytes --]

Hi Alex,

more comment below about PV.

On 2020-02-07 2:26 p.m., Scott Branden wrote:
> HI Alex,
>
> On 2020-02-07 2:09 p.m., Alexander Kanavin wrote:
>> Can you also enable x265 in ffmpeg and gstreamer plugins recipes, so 
>> there would be actual users of the codec in oe-core?
> I do have a patch for ffmpeg and have tested that works.  I'll add 
> that to the patch series.
>>
>> Also, x265 git repo does have tagged releases, and so PV/SRCREV in 
>> recipe should be set to match a release tag.
> You'll have to help me out a little here on exactly what you want.
>
> This is based off the stable tag.
> I already specified the SRCREV in the recipe.
>
> Do you want PV to be:
> PV = "stable+git${SRCPV}"
>
> ?
I was trying to follow the x264 recipe.

Do you want me do something like name the recipe x265_stable.bb instead 
and not specify PV?
>>
>> Alex
>>
>> On Fri, 7 Feb 2020 at 22:35, Scott Branden via Openembedded-core 
>> <openembedded-core@lists.openembedded.org 
>> <mailto:openembedded-core@lists.openembedded.org>> wrote:
>>
>>     Add x265 recipe from latest revision of stable branch.
>>
>>     Signed-off-by: Scott Branden <scott.branden@broadcom.com
>>     <mailto:scott.branden@broadcom.com>>
>>     ---
>>      meta/recipes-multimedia/x265/x265_git.bb <http://x265_git.bb> |
>>     21 +++++++++++++++++++++
>>      1 file changed, 21 insertions(+)
>>      create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>>     <http://x265_git.bb>
>>
>>     diff --git a/meta/recipes-multimedia/x265/x265_git.bb
>>     <http://x265_git.bb> b/meta/recipes-multimedia/x265/x265_git.bb
>>     <http://x265_git.bb>
>>     new file mode 100644
>>     index 0000000000..7c230e2b1e
>>     --- /dev/null
>>     +++ b/meta/recipes-multimedia/x265/x265_git.bb <http://x265_git.bb>
>>     @@ -0,0 +1,21 @@
>>     +SUMMARY = "H.265/HEVC video encoder"
>>     +DESCRIPTION = "A free software library and application for
>>     encoding video streams into the H.265/HEVC format."
>>     +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
>>     +
>>     +LICENSE = "GPLv2"
>>     +LICENSE_FLAGS = "commercial"
>>     +LIC_FILES_CHKSUM =
>>     "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
>>     +
>>     +DEPENDS = "nasm-native"
>>     +DEPENDS = "gnutls zlib libpcre"
>>     +
>>     +SRC_URI = "git://github.com/videolan/x265;branch=stable
>>     <http://github.com/videolan/x265;branch=stable> \
>>     +          "
>>     +
>>     +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
>>     +
>>     +S = "${WORKDIR}/git/source"
>>     +
>>     +inherit lib_package pkgconfig cmake
>>     +
>>     +AS[unexport] = "1"
>>     -- 
>>     2.17.1
>>
>>     -- 
>>     _______________________________________________
>>     Openembedded-core mailing list
>>     Openembedded-core@lists.openembedded.org
>>     <mailto:Openembedded-core@lists.openembedded.org>
>>     http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>
>


[-- Attachment #2: Type: text/html, Size: 6541 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-07 23:28     ` Scott Branden
@ 2020-02-08 14:47       ` Alexander Kanavin
  2020-02-09 19:16         ` Scott Branden
  0 siblings, 1 reply; 8+ messages in thread
From: Alexander Kanavin @ 2020-02-08 14:47 UTC (permalink / raw)
  To: Scott Branden; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 3350 bytes --]

What I meant is that upstream is actually tagging releases:
https://github.com/videolan/x265/releases
and therefore we should package the latest release, rather than a random
commit.

Which means you should name the recipe x265_3.1.2.bb and set SRCREV to
match the 3.1.2 tag. Going forward, the recipe should be updated the same
way: rename file to the new version, update SRCREV.

Another problem is that github is not synced properly with the original
x265 repo, and is several months behind. SRC_URI should probably refer to
https://bitbucket.org/multicoreware/x265/src/default/
Alternatively, don't use git at all and fetch tarballs:
http://ftp.videolan.org/pub/videolan/x265/

Alex

On Sat, 8 Feb 2020 at 00:28, Scott Branden <scott.branden@broadcom.com>
wrote:

> Hi Alex,
>
> more comment below about PV.
>
> On 2020-02-07 2:26 p.m., Scott Branden wrote:
>
> HI Alex,
>
> On 2020-02-07 2:09 p.m., Alexander Kanavin wrote:
>
> Can you also enable x265 in ffmpeg and gstreamer plugins recipes, so there
> would be actual users of the codec in oe-core?
>
> I do have a patch for ffmpeg and have tested that works.  I'll add that to
> the patch series.
>
>
> Also, x265 git repo does have tagged releases, and so PV/SRCREV in recipe
> should be set to match a release tag.
>
> You'll have to help me out a little here on exactly what you want.
>
> This is based off the stable tag.
> I already specified the SRCREV in the recipe.
>
> Do you want PV to be:
> PV = "stable+git${SRCPV}"
>
> ?
>
> I was trying to follow the x264 recipe.
>
> Do you want me do something like name the recipe x265_stable.bb instead
> and not specify PV?
>
>
> Alex
>
> On Fri, 7 Feb 2020 at 22:35, Scott Branden via Openembedded-core <
> openembedded-core@lists.openembedded.org> wrote:
>
>> Add x265 recipe from latest revision of stable branch.
>>
>> Signed-off-by: Scott Branden <scott.branden@broadcom.com>
>> ---
>>  meta/recipes-multimedia/x265/x265_git.bb | 21 +++++++++++++++++++++
>>  1 file changed, 21 insertions(+)
>>  create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>>
>> diff --git a/meta/recipes-multimedia/x265/x265_git.bb
>> b/meta/recipes-multimedia/x265/x265_git.bb
>> new file mode 100644
>> index 0000000000..7c230e2b1e
>> --- /dev/null
>> +++ b/meta/recipes-multimedia/x265/x265_git.bb
>> @@ -0,0 +1,21 @@
>> +SUMMARY = "H.265/HEVC video encoder"
>> +DESCRIPTION = "A free software library and application for encoding
>> video streams into the H.265/HEVC format."
>> +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
>> +
>> +LICENSE = "GPLv2"
>> +LICENSE_FLAGS = "commercial"
>> +LIC_FILES_CHKSUM =
>> "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
>> +
>> +DEPENDS = "nasm-native"
>> +DEPENDS = "gnutls zlib libpcre"
>> +
>> +SRC_URI = "git://github.com/videolan/x265;branch=stable \
>> +          "
>> +
>> +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
>> +
>> +S = "${WORKDIR}/git/source"
>> +
>> +inherit lib_package pkgconfig cmake
>> +
>> +AS[unexport] = "1"
>> --
>> 2.17.1
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>
>
>
>

[-- Attachment #2: Type: text/html, Size: 6784 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] x265: add x265 recipe
  2020-02-08 14:47       ` Alexander Kanavin
@ 2020-02-09 19:16         ` Scott Branden
  0 siblings, 0 replies; 8+ messages in thread
From: Scott Branden @ 2020-02-09 19:16 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 4622 bytes --]

Hi Alex,

Thanks for the pointers.

Yes, too bad - the github mirror is out of date, it would be nice to 
have commit history.

I will setup x265_3.2.1.bb recipe use tarballs to fetch.


On 2020-02-08 6:47 a.m., Alexander Kanavin wrote:
> What I meant is that upstream is actually tagging releases:
> https://github.com/videolan/x265/releases
> and therefore we should package the latest release, rather than a 
> random commit.
>
> Which means you should name the recipe x265_3.1.2.bb 
> <http://x265_3.1.2.bb> and set SRCREV to match the 3.1.2 tag. Going 
> forward, the recipe should be updated the same way: rename file to the 
> new version, update SRCREV.
>
> Another problem is that github is not synced properly with the 
> original x265 repo, and is several months behind. SRC_URI should 
> probably refer to https://bitbucket.org/multicoreware/x265/src/default/
> Alternatively, don't use git at all and fetch tarballs: 
> http://ftp.videolan.org/pub/videolan/x265/
>
> Alex
>
> On Sat, 8 Feb 2020 at 00:28, Scott Branden <scott.branden@broadcom.com 
> <mailto:scott.branden@broadcom.com>> wrote:
>
>     Hi Alex,
>
>     more comment below about PV.
>
>     On 2020-02-07 2:26 p.m., Scott Branden wrote:
>>     HI Alex,
>>
>>     On 2020-02-07 2:09 p.m., Alexander Kanavin wrote:
>>>     Can you also enable x265 in ffmpeg and gstreamer plugins
>>>     recipes, so there would be actual users of the codec in oe-core?
>>     I do have a patch for ffmpeg and have tested that works. I'll add
>>     that to the patch series.
>>>
>>>     Also, x265 git repo does have tagged releases, and so PV/SRCREV
>>>     in recipe should be set to match a release tag.
>>     You'll have to help me out a little here on exactly what you want.
>>
>>     This is based off the stable tag.
>>     I already specified the SRCREV in the recipe.
>>
>>     Do you want PV to be:
>>     PV = "stable+git${SRCPV}"
>>
>>     ?
>     I was trying to follow the x264 recipe.
>
>     Do you want me do something like name the recipe x265_stable.bb
>     <http://x265_stable.bb> instead and not specify PV?
>>>
>>>     Alex
>>>
>>>     On Fri, 7 Feb 2020 at 22:35, Scott Branden via Openembedded-core
>>>     <openembedded-core@lists.openembedded.org
>>>     <mailto:openembedded-core@lists.openembedded.org>> wrote:
>>>
>>>         Add x265 recipe from latest revision of stable branch.
>>>
>>>         Signed-off-by: Scott Branden <scott.branden@broadcom.com
>>>         <mailto:scott.branden@broadcom.com>>
>>>         ---
>>>          meta/recipes-multimedia/x265/x265_git.bb
>>>         <http://x265_git.bb> | 21 +++++++++++++++++++++
>>>          1 file changed, 21 insertions(+)
>>>          create mode 100644 meta/recipes-multimedia/x265/x265_git.bb
>>>         <http://x265_git.bb>
>>>
>>>         diff --git a/meta/recipes-multimedia/x265/x265_git.bb
>>>         <http://x265_git.bb>
>>>         b/meta/recipes-multimedia/x265/x265_git.bb <http://x265_git.bb>
>>>         new file mode 100644
>>>         index 0000000000..7c230e2b1e
>>>         --- /dev/null
>>>         +++ b/meta/recipes-multimedia/x265/x265_git.bb
>>>         <http://x265_git.bb>
>>>         @@ -0,0 +1,21 @@
>>>         +SUMMARY = "H.265/HEVC video encoder"
>>>         +DESCRIPTION = "A free software library and application for
>>>         encoding video streams into the H.265/HEVC format."
>>>         +HOMEPAGE = "http://www.videolan.org/developers/x265.html"
>>>         +
>>>         +LICENSE = "GPLv2"
>>>         +LICENSE_FLAGS = "commercial"
>>>         +LIC_FILES_CHKSUM =
>>>         "file://../COPYING;md5=c9e0427bc58f129f99728c62d4ad4091"
>>>         +
>>>         +DEPENDS = "nasm-native"
>>>         +DEPENDS = "gnutls zlib libpcre"
>>>         +
>>>         +SRC_URI = "git://github.com/videolan/x265;branch=stable
>>>         <http://github.com/videolan/x265;branch=stable> \
>>>         +          "
>>>         +
>>>         +SRCREV = "4ef6b67fd46e1584e52a11a264812edcaef02526"
>>>         +
>>>         +S = "${WORKDIR}/git/source"
>>>         +
>>>         +inherit lib_package pkgconfig cmake
>>>         +
>>>         +AS[unexport] = "1"
>>>         -- 
>>>         2.17.1
>>>
>>>         -- 
>>>         _______________________________________________
>>>         Openembedded-core mailing list
>>>         Openembedded-core@lists.openembedded.org
>>>         <mailto:Openembedded-core@lists.openembedded.org>
>>>         http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>>
>>
>


[-- Attachment #2: Type: text/html, Size: 9686 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-02-09 19:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-07 21:34 [PATCH] x265: add x265 recipe Scott Branden
2020-02-07 22:09 ` Alexander Kanavin
2020-02-07 22:26   ` Scott Branden
2020-02-07 23:28     ` Scott Branden
2020-02-08 14:47       ` Alexander Kanavin
2020-02-09 19:16         ` Scott Branden
2020-02-07 23:08 ` Andre McCurdy
2020-02-07 23:15   ` Scott Branden

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.