All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11
@ 2014-07-16 12:13 Martin Jansa
  2014-08-06 11:41 ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Martin Jansa
                   ` (2 more replies)
  0 siblings, 3 replies; 26+ messages in thread
From: Martin Jansa @ 2014-07-16 12:13 UTC (permalink / raw)
  To: openembedded-core

* standalone libpostproc recipe depends on libav, but current PACKAGES_DYNAMIC indicated
  that libav-9.13 also provides libpostproc

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-multimedia/libav/libav.inc       | 5 -----
 meta/recipes-multimedia/libav/libav_0.8.11.bb | 2 ++
 meta/recipes-multimedia/libav/libav_9.13.bb   | 3 +++
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-multimedia/libav/libav.inc b/meta/recipes-multimedia/libav/libav.inc
index 1d617a2..ff1ab0e 100644
--- a/meta/recipes-multimedia/libav/libav.inc
+++ b/meta/recipes-multimedia/libav/libav.inc
@@ -87,9 +87,6 @@ do_install_append() {
     install -m 0644 ${S}/libavfilter/*.h ${D}${includedir}/libavfilter/
 }
 
-FFMPEG_LIBS = "libavcodec libavdevice libavformat \
-               libavutil libpostproc libswscale libavfilter"
-
 PACKAGES += "${PN}-vhook-dbg ${PN}-vhook ffmpeg-x264-presets"
 
 RSUGGESTS_${PN} = "mplayer"
@@ -142,5 +139,3 @@ python populate_packages_prepend() {
         for pkg in pkgs:
             d.appendVar('INSANE_SKIP_%s' % pkg, ' textrel')
 }
-
-PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|postproc|swscale).*"
diff --git a/meta/recipes-multimedia/libav/libav_0.8.11.bb b/meta/recipes-multimedia/libav/libav_0.8.11.bb
index 662d205..1344a2a 100644
--- a/meta/recipes-multimedia/libav/libav_0.8.11.bb
+++ b/meta/recipes-multimedia/libav/libav_0.8.11.bb
@@ -16,3 +16,5 @@ PROVIDES += "libpostproc"
 EXTRA_OECONF += " \
     --enable-postproc \
 "
+
+PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|postproc|swscale).*"
diff --git a/meta/recipes-multimedia/libav/libav_9.13.bb b/meta/recipes-multimedia/libav/libav_9.13.bb
index 7bfbc48..f9c413f 100644
--- a/meta/recipes-multimedia/libav/libav_9.13.bb
+++ b/meta/recipes-multimedia/libav/libav_9.13.bb
@@ -11,3 +11,6 @@ SRC_URI[md5sum] = "23b9e34bffdaee366710fdf20157a570"
 SRC_URI[sha256sum] = "2ff05df6cd2259b3bb277eb16c234214f8e0530700d0c774d033eba23edde6ca"
 
 DEFAULT_PREFERENCE = "-1"
+
+# unlike 0.8.11 we don't provide libpostproc
+PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|swscale).*"
-- 
2.0.0



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

end of thread, other threads:[~2015-01-21 20:50 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-16 12:13 [RFC][PATCH] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-08-06 11:41 ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Martin Jansa
2014-08-06 11:41   ` [PATCH 2/2] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-08-06 12:41   ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Paul Eggleton
2014-08-06 14:37     ` Martin Jansa
2014-08-06 14:42       ` Paul Eggleton
2014-08-08 10:28         ` Martin Jansa
2014-08-08 13:57           ` [PATCH] gst-ffmpeg: add PACKAGECONFIG for libav9 and patch from Gentoo Martin Jansa
2014-08-16 18:23             ` Martin Jansa
2014-08-08 14:06           ` [RFC][PATCH] libav: drop older 0.8.11 and use libav-9 by default Martin Jansa
2014-08-08 14:08             ` Paul Eggleton
2014-08-08 15:08               ` Martin Jansa
2014-08-08 14:08             ` Martin Jansa
2014-08-09  3:00         ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Tim Orling
2014-08-10 11:23           ` Paul Eggleton
2014-08-16 18:20 ` [RFC][PATCH] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-10-30  8:21 ` Martin Jansa
2014-12-10 14:17   ` [PATCHv2 1/4] gst-ffmpeg: add dependency on libpostproc Martin Jansa
2014-12-10 14:17     ` [PATCHv2 2/4] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-12-10 14:17     ` [PATCHv2 3/4] libav: drop older 0.8.11 and use libav-9 by default Martin Jansa
2014-12-18 16:29       ` Burton, Ross
2014-12-18 17:01         ` Martin Jansa
2014-12-18 17:02         ` [PATCHv3] libav: drop older 0.8.* " Martin Jansa
2014-12-10 14:17     ` [PATCHv2 4/4] libpostproc: import from meta-oe Martin Jansa
2015-01-21 20:49       ` Burton, Ross
2015-01-18 17:05     ` [PATCHv2 1/4] gst-ffmpeg: add dependency on libpostproc Martin Jansa

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.