From 1c4b441cdcf9dcd7e2d19a9ff453b1e8b076c19b Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Fri, 27 Jan 2017 15:20:38 +0100 Subject: [PATCH 1/4] libogg: add version 1.3.2 Also inc'ified version and updated license to BSD-3-Clause. --- recipes/libogg/libogg.inc | 9 +++++++++ recipes/libogg/libogg_1.3.2.oe | 1 + recipes/libogg/libogg_1.3.2.oe.sig | 1 + 3 files changed, 11 insertions(+) create mode 100644 recipes/libogg/libogg.inc create mode 100644 recipes/libogg/libogg_1.3.2.oe create mode 100644 recipes/libogg/libogg_1.3.2.oe.sig diff --git a/recipes/libogg/libogg.inc b/recipes/libogg/libogg.inc new file mode 100644 index 0000000..ae7a6f2 --- /dev/null +++ b/recipes/libogg/libogg.inc @@ -0,0 +1,9 @@ +DESCRIPTION = "libogg is the bitstream and framing library \ +for the Ogg project. It provides functions which are \ +necessary to codec libraries like libvorbis." +HOMEPAGE = "http://xiph.org/" +LICENSE = "BSD-3-Clause" + +inherit autotools-autoreconf pkgconfig library + +SRC_URI = "http://downloads.xiph.org/releases/ogg/libogg-${PV}.tar.gz" diff --git a/recipes/libogg/libogg_1.3.2.oe b/recipes/libogg/libogg_1.3.2.oe new file mode 100644 index 0000000..2aad0c4 --- /dev/null +++ b/recipes/libogg/libogg_1.3.2.oe @@ -0,0 +1 @@ +require libogg.inc diff --git a/recipes/libogg/libogg_1.3.2.oe.sig b/recipes/libogg/libogg_1.3.2.oe.sig new file mode 100644 index 0000000..f858368 --- /dev/null +++ b/recipes/libogg/libogg_1.3.2.oe.sig @@ -0,0 +1 @@ +df7f3977bbeda67306bc2a427257dd7375319d7d libogg-1.3.2.tar.gz From b8ec8db2f006287e186fac062ba5899510a76ccf Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Fri, 27 Jan 2017 15:24:43 +0100 Subject: [PATCH 2/4] libogg: remove version 1.3.1 --- recipes/libogg/libogg_1.3.1.oe | 11 ----------- recipes/libogg/libogg_1.3.1.oe.sig | 1 - 2 files changed, 12 deletions(-) delete mode 100644 recipes/libogg/libogg_1.3.1.oe delete mode 100644 recipes/libogg/libogg_1.3.1.oe.sig diff --git a/recipes/libogg/libogg_1.3.1.oe b/recipes/libogg/libogg_1.3.1.oe deleted file mode 100644 index 09e273e..0000000 --- a/recipes/libogg/libogg_1.3.1.oe +++ /dev/null @@ -1,11 +0,0 @@ -DESCRIPTION = "libogg is the bitstream and framing library \ -for the Ogg project. It provides functions which are \ -necessary to codec libraries like libvorbis." -HOMEPAGE = "http://xiph.org/" -BUGTRACKER = "https://trac.xiph.org/newticket" -LICENSE = "BSD" - -inherit autotools-autoreconf pkgconfig library - -SRC_URI = "http://downloads.xiph.org/releases/ogg/libogg-${PV}.tar.gz" - diff --git a/recipes/libogg/libogg_1.3.1.oe.sig b/recipes/libogg/libogg_1.3.1.oe.sig deleted file mode 100644 index e84dc46..0000000 --- a/recipes/libogg/libogg_1.3.1.oe.sig +++ /dev/null @@ -1 +0,0 @@ -270685c2a3d9dc6c98372627af99868aa4b4db53 libogg-1.3.1.tar.gz From d7cc3ff8db867c2ea43c3fc00e4f1473c0fe6571 Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Tue, 31 Jan 2017 17:11:37 +0100 Subject: [PATCH 3/4] libogg: add libc to (R)DEPENDS_${PN} --- recipes/libogg/libogg.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes/libogg/libogg.inc b/recipes/libogg/libogg.inc index ae7a6f2..6ea8bec 100644 --- a/recipes/libogg/libogg.inc +++ b/recipes/libogg/libogg.inc @@ -7,3 +7,6 @@ LICENSE = "BSD-3-Clause" inherit autotools-autoreconf pkgconfig library SRC_URI = "http://downloads.xiph.org/releases/ogg/libogg-${PV}.tar.gz" + +DEPENDS_${PN} = "libc" +RDPENDS_${PN} = "libc" From 1ac728af58aa8a758d6bf2b41795442aa7dc935a Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Tue, 31 Jan 2017 17:12:21 +0100 Subject: [PATCH 4/4] libogg: add allow-missing-provides to pass packageqa --- recipes/libogg/libogg.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/libogg/libogg.inc b/recipes/libogg/libogg.inc index 6ea8bec..709fbf5 100644 --- a/recipes/libogg/libogg.inc +++ b/recipes/libogg/libogg.inc @@ -8,5 +8,7 @@ inherit autotools-autoreconf pkgconfig library SRC_URI = "http://downloads.xiph.org/releases/ogg/libogg-${PV}.tar.gz" +PROVIDES_${PN}[qa] += "allow-missing-provides" + DEPENDS_${PN} = "libc" RDPENDS_${PN} = "libc"