All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dual-camera-demo: Grab latest commit and update Matrix files installation
@ 2014-06-11 14:00 Franklin S. Cooper Jr
  2014-06-11 14:00 ` [PATCH] ptpd: Add latest version of ptpd 2.3.0 Franklin S. Cooper Jr
  0 siblings, 1 reply; 6+ messages in thread
From: Franklin S. Cooper Jr @ 2014-06-11 14:00 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Also switch to using license file for checksum
* Use latest commit that adds double buffering for pip.
* Double buffering reduces tearing.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../dual-camera-demo/dual-camera-demo_1.0.bb       |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
index 1f9b941..d21a0e5 100644
--- a/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
+++ b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
@@ -2,14 +2,14 @@ DESCRIPTION = "Qt Dual Camera Demo"
 HOMEPAGE = "https://gitorious.org/dual-camera-demo/"
 SECTION = "multimedia"
 LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://main.cpp;beginline=1;endline=18;md5=1e0116b09fc3d8f888286927eac06928"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5"
 
 require recipes-core/matrix/matrix-gui-paths.inc
 
-PR = "r3"
+PR = "r4"
 
 BRANCH = "master"
-SRCREV = "a877c704eba77fc09aec54211b387b95e62e523b"
+SRCREV = "255808485bfd9bebd7f13ecd48704b6cc9ae0d69"
 
 SRC_URI = "git://gitorious.org/dual-camera-demo/dual-camera-demo.git;protocol=git;branch=${BRANCH}"
 
@@ -20,15 +20,15 @@ inherit qt-provider
 # use the make targets already created in the Makefile.build files
 do_install() {
     install -d ${D}/usr/bin
-    install -d ${D}${MATRIX_APP_DIR}/arm_multimedia_dual-camera
+    install -d ${D}${MATRIX_APP_DIR}/dual-camera
     install dual_camera ${D}/usr/bin/dual_camera
     install dual_camera.sh ${D}/usr/bin/dual_camera.sh
-    install matrix/* ${D}/${MATRIX_APP_DIR}/arm_multimedia_dual-camera
+    install matrix/* ${D}/${MATRIX_APP_DIR}/dual-camera
 }
 
 PACKAGES += "matrix-gui-apps-dual-camera"
 
-RDEPENDS_matrix-gui-apps-dual-camera  = "matrix-gui-apps-images matrix-gui-submenus-multimedia ${PN}"
+RDEPENDS_matrix-gui-apps-dual-camera  = "matrix-gui-apps-images matrix-gui-submenus-camera ${PN}"
 
 # Add the matrix directory to the FILES
 FILES_${PN} = "/usr/bin/*"
-- 
1.7.0.4



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

* [PATCH] ptpd: Add latest version of ptpd 2.3.0
  2014-06-11 14:00 [PATCH] dual-camera-demo: Grab latest commit and update Matrix files installation Franklin S. Cooper Jr
@ 2014-06-11 14:00 ` Franklin S. Cooper Jr
  2014-06-11 14:05   ` Denys Dmytriyenko
  0 siblings, 1 reply; 6+ messages in thread
From: Franklin S. Cooper Jr @ 2014-06-11 14:00 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-daemons/ptpd/ptpd_2.3.0.bb             |   30 ++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb

diff --git a/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
new file mode 100644
index 0000000..c54f507
--- /dev/null
+++ b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
@@ -0,0 +1,30 @@
+SUMMARY = "The PTP daemon (PTPd)"
+DESCRIPTION = "The PTP daemon (PTPd) implements the Precision Time protocol (PTP) as \
+defined by the relevant IEEE 1588 standard. PTP Version 1 implements IEEE-1588-2002, \
+and PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very precise \
+time coordination of LAN connected computers."
+HOMEPAGE = "http://sourceforge.net/projects/ptpd"
+SECTION = "network"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
+
+DEPENDS = "libpcap"
+
+PR = "r0"
+
+inherit autotools
+
+SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
+SRC_URI[sha256sum] = "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
+
+S = "${WORKDIR}/ptpd-${PV}"
+
+EXTRA_OEMAKE = ""
+
+do_install() {
+    install -d ${D}${bindir} ${D}${mandir}/man8
+    install -m 0755 ${S}/src/ptpd2 ${D}${bindir}
+    install -m 0644 ${S}/src/ptpd2.8 ${D}${mandir}/man8
+}
-- 
1.7.0.4



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

* Re: [PATCH] ptpd: Add latest version of ptpd 2.3.0
  2014-06-11 14:00 ` [PATCH] ptpd: Add latest version of ptpd 2.3.0 Franklin S. Cooper Jr
@ 2014-06-11 14:05   ` Denys Dmytriyenko
  2014-06-11 14:41     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-06-11 14:05 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago

On Wed, Jun 11, 2014 at 09:00:32AM -0500, Franklin S. Cooper Jr wrote:
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>

Will you be submitting it to meta-oe?


> ---
>  .../recipes-daemons/ptpd/ptpd_2.3.0.bb             |   30 ++++++++++++++++++++
>  1 files changed, 30 insertions(+), 0 deletions(-)
>  create mode 100644 meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> 
> diff --git a/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> new file mode 100644
> index 0000000..c54f507
> --- /dev/null
> +++ b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> @@ -0,0 +1,30 @@
> +SUMMARY = "The PTP daemon (PTPd)"
> +DESCRIPTION = "The PTP daemon (PTPd) implements the Precision Time protocol (PTP) as \
> +defined by the relevant IEEE 1588 standard. PTP Version 1 implements IEEE-1588-2002, \
> +and PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very precise \
> +time coordination of LAN connected computers."
> +HOMEPAGE = "http://sourceforge.net/projects/ptpd"
> +SECTION = "network"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
> +
> +DEPENDS = "libpcap"
> +
> +PR = "r0"
> +
> +inherit autotools
> +
> +SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
> +SRC_URI[sha256sum] = "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
> +
> +S = "${WORKDIR}/ptpd-${PV}"
> +
> +EXTRA_OEMAKE = ""
> +
> +do_install() {
> +    install -d ${D}${bindir} ${D}${mandir}/man8
> +    install -m 0755 ${S}/src/ptpd2 ${D}${bindir}
> +    install -m 0644 ${S}/src/ptpd2.8 ${D}${mandir}/man8
> +}
> -- 
> 1.7.0.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH] ptpd: Add latest version of ptpd 2.3.0
  2014-06-11 14:05   ` Denys Dmytriyenko
@ 2014-06-11 14:41     ` Cooper Jr., Franklin
  2014-06-11 18:50       ` Cooper Jr., Franklin
  0 siblings, 1 reply; 6+ messages in thread
From: Cooper Jr., Franklin @ 2014-06-11 14:41 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

Yes I plan on updating the meta-oe version.

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, June 11, 2014 9:05 AM
> To: Cooper Jr., Franklin
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] ptpd: Add latest version of ptpd 2.3.0
> 
> On Wed, Jun 11, 2014 at 09:00:32AM -0500, Franklin S. Cooper Jr wrote:
> > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> 
> Will you be submitting it to meta-oe?
> 
> 
> > ---
> >  .../recipes-daemons/ptpd/ptpd_2.3.0.bb             |   30
> ++++++++++++++++++++
> >  1 files changed, 30 insertions(+), 0 deletions(-)  create mode 100644
> > meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> >
> > diff --git a/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > new file mode 100644
> > index 0000000..c54f507
> > --- /dev/null
> > +++ b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > @@ -0,0 +1,30 @@
> > +SUMMARY = "The PTP daemon (PTPd)"
> > +DESCRIPTION = "The PTP daemon (PTPd) implements the Precision Time
> > +protocol (PTP) as \ defined by the relevant IEEE 1588 standard. PTP
> > +Version 1 implements IEEE-1588-2002, \ and PTP Version 2 implements
> > +IEEE-1588-2008. PTP was developed to provide very precise \ time
> coordination of LAN connected computers."
> > +HOMEPAGE = "http://sourceforge.net/projects/ptpd"
> > +SECTION = "network"
> > +LICENSE = "BSD"
> > +LIC_FILES_CHKSUM =
> "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
> > +
> > +DEPENDS = "libpcap"
> > +
> > +PR = "r0"
> > +
> > +inherit autotools
> > +
> > +SRC_URI =
> "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-
> ${PV}.tar.gz"
> > +
> > +SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
> > +SRC_URI[sha256sum] =
> "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
> > +
> > +S = "${WORKDIR}/ptpd-${PV}"
> > +
> > +EXTRA_OEMAKE = ""
> > +
> > +do_install() {
> > +    install -d ${D}${bindir} ${D}${mandir}/man8
> > +    install -m 0755 ${S}/src/ptpd2 ${D}${bindir}
> > +    install -m 0644 ${S}/src/ptpd2.8 ${D}${mandir}/man8 }
> > --
> > 1.7.0.4
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH] ptpd: Add latest version of ptpd 2.3.0
  2014-06-11 14:41     ` Cooper Jr., Franklin
@ 2014-06-11 18:50       ` Cooper Jr., Franklin
  2014-06-11 21:28         ` Cooper Jr., Franklin
  0 siblings, 1 reply; 6+ messages in thread
From: Cooper Jr., Franklin @ 2014-06-11 18:50 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

FYI I can update it in meta-oe but it still won't help us since it is apart of meta-networking and we don't "depend" on it. 

Do you want to add that layer as a dependency?
> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> Sent: Wednesday, June 11, 2014 9:42 AM
> To: Dmytriyenko, Denys
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] ptpd: Add latest version of ptpd 2.3.0
> 
> Yes I plan on updating the meta-oe version.
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Wednesday, June 11, 2014 9:05 AM
> > To: Cooper Jr., Franklin
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH] ptpd: Add latest version of ptpd
> > 2.3.0
> >
> > On Wed, Jun 11, 2014 at 09:00:32AM -0500, Franklin S. Cooper Jr wrote:
> > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> >
> > Will you be submitting it to meta-oe?
> >
> >
> > > ---
> > >  .../recipes-daemons/ptpd/ptpd_2.3.0.bb             |   30
> > ++++++++++++++++++++
> > >  1 files changed, 30 insertions(+), 0 deletions(-)  create mode
> > > 100644 meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > >
> > > diff --git a/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > new file mode 100644
> > > index 0000000..c54f507
> > > --- /dev/null
> > > +++ b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > @@ -0,0 +1,30 @@
> > > +SUMMARY = "The PTP daemon (PTPd)"
> > > +DESCRIPTION = "The PTP daemon (PTPd) implements the Precision Time
> > > +protocol (PTP) as \ defined by the relevant IEEE 1588 standard. PTP
> > > +Version 1 implements IEEE-1588-2002, \ and PTP Version 2 implements
> > > +IEEE-1588-2008. PTP was developed to provide very precise \ time
> > coordination of LAN connected computers."
> > > +HOMEPAGE = "http://sourceforge.net/projects/ptpd"
> > > +SECTION = "network"
> > > +LICENSE = "BSD"
> > > +LIC_FILES_CHKSUM =
> > "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
> > > +
> > > +DEPENDS = "libpcap"
> > > +
> > > +PR = "r0"
> > > +
> > > +inherit autotools
> > > +
> > > +SRC_URI =
> > "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-
> > ${PV}.tar.gz"
> > > +
> > > +SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
> > > +SRC_URI[sha256sum] =
> > "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
> > > +
> > > +S = "${WORKDIR}/ptpd-${PV}"
> > > +
> > > +EXTRA_OEMAKE = ""
> > > +
> > > +do_install() {
> > > +    install -d ${D}${bindir} ${D}${mandir}/man8
> > > +    install -m 0755 ${S}/src/ptpd2 ${D}${bindir}
> > > +    install -m 0644 ${S}/src/ptpd2.8 ${D}${mandir}/man8 }
> > > --
> > > 1.7.0.4
> > >
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH] ptpd: Add latest version of ptpd 2.3.0
  2014-06-11 18:50       ` Cooper Jr., Franklin
@ 2014-06-11 21:28         ` Cooper Jr., Franklin
  0 siblings, 0 replies; 6+ messages in thread
From: Cooper Jr., Franklin @ 2014-06-11 21:28 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

Ok I'm dumb. I didn't realize we already included meta-networking.

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> Sent: Wednesday, June 11, 2014 1:50 PM
> To: Dmytriyenko, Denys
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] ptpd: Add latest version of ptpd 2.3.0
> 
> FYI I can update it in meta-oe but it still won't help us since it is apart of
> meta-networking and we don't "depend" on it.
> 
> Do you want to add that layer as a dependency?
> > -----Original Message-----
> > From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> > Sent: Wednesday, June 11, 2014 9:42 AM
> > To: Dmytriyenko, Denys
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH] ptpd: Add latest version of ptpd
> > 2.3.0
> >
> > Yes I plan on updating the meta-oe version.
> >
> > > -----Original Message-----
> > > From: Dmytriyenko, Denys
> > > Sent: Wednesday, June 11, 2014 9:05 AM
> > > To: Cooper Jr., Franklin
> > > Cc: meta-arago@arago-project.org
> > > Subject: Re: [meta-arago] [PATCH] ptpd: Add latest version of ptpd
> > > 2.3.0
> > >
> > > On Wed, Jun 11, 2014 at 09:00:32AM -0500, Franklin S. Cooper Jr wrote:
> > > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > >
> > > Will you be submitting it to meta-oe?
> > >
> > >
> > > > ---
> > > >  .../recipes-daemons/ptpd/ptpd_2.3.0.bb             |   30
> > > ++++++++++++++++++++
> > > >  1 files changed, 30 insertions(+), 0 deletions(-)  create mode
> > > > 100644 meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > >
> > > > diff --git a/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > > b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > > new file mode 100644
> > > > index 0000000..c54f507
> > > > --- /dev/null
> > > > +++ b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
> > > > @@ -0,0 +1,30 @@
> > > > +SUMMARY = "The PTP daemon (PTPd)"
> > > > +DESCRIPTION = "The PTP daemon (PTPd) implements the Precision
> > > > +Time protocol (PTP) as \ defined by the relevant IEEE 1588
> > > > +standard. PTP Version 1 implements IEEE-1588-2002, \ and PTP
> > > > +Version 2 implements IEEE-1588-2008. PTP was developed to provide
> > > > +very precise \ time
> > > coordination of LAN connected computers."
> > > > +HOMEPAGE = "http://sourceforge.net/projects/ptpd"
> > > > +SECTION = "network"
> > > > +LICENSE = "BSD"
> > > > +LIC_FILES_CHKSUM =
> > > "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
> > > > +
> > > > +DEPENDS = "libpcap"
> > > > +
> > > > +PR = "r0"
> > > > +
> > > > +inherit autotools
> > > > +
> > > > +SRC_URI =
> > > "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-
> > > ${PV}.tar.gz"
> > > > +
> > > > +SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
> > > > +SRC_URI[sha256sum] =
> > >
> "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
> > > > +
> > > > +S = "${WORKDIR}/ptpd-${PV}"
> > > > +
> > > > +EXTRA_OEMAKE = ""
> > > > +
> > > > +do_install() {
> > > > +    install -d ${D}${bindir} ${D}${mandir}/man8
> > > > +    install -m 0755 ${S}/src/ptpd2 ${D}${bindir}
> > > > +    install -m 0644 ${S}/src/ptpd2.8 ${D}${mandir}/man8 }
> > > > --
> > > > 1.7.0.4
> > > >
> > > > _______________________________________________
> > > > meta-arago mailing list
> > > > meta-arago@arago-project.org
> > > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2014-06-11 21:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-11 14:00 [PATCH] dual-camera-demo: Grab latest commit and update Matrix files installation Franklin S. Cooper Jr
2014-06-11 14:00 ` [PATCH] ptpd: Add latest version of ptpd 2.3.0 Franklin S. Cooper Jr
2014-06-11 14:05   ` Denys Dmytriyenko
2014-06-11 14:41     ` Cooper Jr., Franklin
2014-06-11 18:50       ` Cooper Jr., Franklin
2014-06-11 21:28         ` Cooper Jr., Franklin

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.