All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] package ipk bbclass: store build branch and revision in ipkg metadata
@ 2010-12-21 10:06 Koen Kooi
  2010-12-21 10:18 ` Koen Kooi
  0 siblings, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2010-12-21 10:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

The ipkg metadata will look like this now:

koen@dominion:/OE/angstrom-dev/deploy/glibc$ dpkg-deb -I ipk/am3517-evm/matrix-gui_1.3-r19.0.6_am3517-evm.ipk
 new debian package, version 2.0.
 size 24112 bytes: control archive= 540 bytes.
     629 bytes,    13 lines      control
 Package: matrix-gui
 Version: 1.3-r19.0.6
 Description: Matrix GUI for Qt X11
 Section: multimedia
 Priority: optional
 Maintainer: Angstrom Developers <angstrom-distro-devel@linuxtogo.org>
 License: BSD
 Architecture: am3517-evm
 OE: matrix-gui
 Homepage: https://gforge.ti.com/gf/project/matrix_gui/
 Build: org.openembedded.dev/f35ab2d
 Depends: matrix-gui-common, libpng12-0, libfreetype6, libz1, libgthread-2.0-0, libqtwebkit4, libphonon4, libqtdbus4, libqtxml4, libqtgui4, libqtnetwork4, libqtcore4, libglib-2.0-0, libc6, libstdc++6, libgcc1
 Source: svn://gforge.ti.com/svn/matrix_gui/;module=trunk;proto=https;user=anonymous;pswd=''
koen@dominion:/OE/angstrom-dev/deploy/glibc$

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 classes/package_ipk.bbclass |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass
index 5d388da..97e5cd8 100644
--- a/classes/package_ipk.bbclass
+++ b/classes/package_ipk.bbclass
@@ -224,6 +224,7 @@ python do_package_ipk () {
 		fields.append(["Architecture: %s\n", ['PACKAGE_ARCH']])
 		fields.append(["OE: %s\n", ['PN']])
 		fields.append(["Homepage: %s\n", ['HOMEPAGE']])
+		fields.append(["Build: %s/%s\n", ['METADATA_BRANCH', 'METADATA_REVISION']])
 
 		def pullData(l, d):
 			l2 = []
-- 
1.6.6.1




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

* Re: [PATCH 1/2] package ipk bbclass: store build branch and revision in ipkg metadata
  2010-12-21 10:06 [PATCH 1/2] package ipk bbclass: store build branch and revision in ipkg metadata Koen Kooi
@ 2010-12-21 10:18 ` Koen Kooi
  2010-12-21 10:30   ` Martin Jansa
  0 siblings, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2010-12-21 10:18 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

There is no 2/2, this is the only patch in the series, I had a git
format-patch slip up on my end.

On 21-12-10 11:06, Koen Kooi wrote:
> The ipkg metadata will look like this now:
> 
> koen@dominion:/OE/angstrom-dev/deploy/glibc$ dpkg-deb -I ipk/am3517-evm/matrix-gui_1.3-r19.0.6_am3517-evm.ipk
>  new debian package, version 2.0.
>  size 24112 bytes: control archive= 540 bytes.
>      629 bytes,    13 lines      control
>  Package: matrix-gui
>  Version: 1.3-r19.0.6
>  Description: Matrix GUI for Qt X11
>  Section: multimedia
>  Priority: optional
>  Maintainer: Angstrom Developers <angstrom-distro-devel@linuxtogo.org>
>  License: BSD
>  Architecture: am3517-evm
>  OE: matrix-gui
>  Homepage: https://gforge.ti.com/gf/project/matrix_gui/
>  Build: org.openembedded.dev/f35ab2d
>  Depends: matrix-gui-common, libpng12-0, libfreetype6, libz1, libgthread-2.0-0, libqtwebkit4, libphonon4, libqtdbus4, libqtxml4, libqtgui4, libqtnetwork4, libqtcore4, libglib-2.0-0, libc6, libstdc++6, libgcc1
>  Source: svn://gforge.ti.com/svn/matrix_gui/;module=trunk;proto=https;user=anonymous;pswd=''
> koen@dominion:/OE/angstrom-dev/deploy/glibc$
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  classes/package_ipk.bbclass |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass
> index 5d388da..97e5cd8 100644
> --- a/classes/package_ipk.bbclass
> +++ b/classes/package_ipk.bbclass
> @@ -224,6 +224,7 @@ python do_package_ipk () {
>  		fields.append(["Architecture: %s\n", ['PACKAGE_ARCH']])
>  		fields.append(["OE: %s\n", ['PN']])
>  		fields.append(["Homepage: %s\n", ['HOMEPAGE']])
> +		fields.append(["Build: %s/%s\n", ['METADATA_BRANCH', 'METADATA_REVISION']])
>  
>  		def pullData(l, d):
>  			l2 = []

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNEH7fMkyGM64RGpERAtfoAJ4wwHII7rXn7YG4gCKFSQd1B9SmEACeIg/Y
rhw39nBhCibyooRTxx+zAZM=
=SkML
-----END PGP SIGNATURE-----




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

* Re: [PATCH 1/2] package ipk bbclass: store build branch and revision in ipkg metadata
  2010-12-21 10:18 ` Koen Kooi
@ 2010-12-21 10:30   ` Martin Jansa
  2010-12-21 13:22     ` Maupin, Chase
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2010-12-21 10:30 UTC (permalink / raw)
  To: openembedded-devel

On Tue, Dec 21, 2010 at 11:18:07AM +0100, Koen Kooi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> There is no 2/2, this is the only patch in the series, I had a git
> format-patch slip up on my end.

Ah :), looks usefull to me

Acked-by: Martin Jansa <Martin.Jansa@gmail.com>

> On 21-12-10 11:06, Koen Kooi wrote:
> > The ipkg metadata will look like this now:
> > 
> > koen@dominion:/OE/angstrom-dev/deploy/glibc$ dpkg-deb -I ipk/am3517-evm/matrix-gui_1.3-r19.0.6_am3517-evm.ipk
> >  new debian package, version 2.0.
> >  size 24112 bytes: control archive= 540 bytes.
> >      629 bytes,    13 lines      control
> >  Package: matrix-gui
> >  Version: 1.3-r19.0.6
> >  Description: Matrix GUI for Qt X11
> >  Section: multimedia
> >  Priority: optional
> >  Maintainer: Angstrom Developers <angstrom-distro-devel@linuxtogo.org>
> >  License: BSD
> >  Architecture: am3517-evm
> >  OE: matrix-gui
> >  Homepage: https://gforge.ti.com/gf/project/matrix_gui/
> >  Build: org.openembedded.dev/f35ab2d
> >  Depends: matrix-gui-common, libpng12-0, libfreetype6, libz1, libgthread-2.0-0, libqtwebkit4, libphonon4, libqtdbus4, libqtxml4, libqtgui4, libqtnetwork4, libqtcore4, libglib-2.0-0, libc6, libstdc++6, libgcc1
> >  Source: svn://gforge.ti.com/svn/matrix_gui/;module=trunk;proto=https;user=anonymous;pswd=''
> > koen@dominion:/OE/angstrom-dev/deploy/glibc$
> > 
> > Signed-off-by: Koen Kooi <koen@openembedded.org>
> > ---
> >  classes/package_ipk.bbclass |    1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> > 
> > diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass
> > index 5d388da..97e5cd8 100644
> > --- a/classes/package_ipk.bbclass
> > +++ b/classes/package_ipk.bbclass
> > @@ -224,6 +224,7 @@ python do_package_ipk () {
> >  		fields.append(["Architecture: %s\n", ['PACKAGE_ARCH']])
> >  		fields.append(["OE: %s\n", ['PN']])
> >  		fields.append(["Homepage: %s\n", ['HOMEPAGE']])
> > +		fields.append(["Build: %s/%s\n", ['METADATA_BRANCH', 'METADATA_REVISION']])
> >  
> >  		def pullData(l, d):
> >  			l2 = []
> 
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> 
> iD8DBQFNEH7fMkyGM64RGpERAtfoAJ4wwHII7rXn7YG4gCKFSQd1B9SmEACeIg/Y
> rhw39nBhCibyooRTxx+zAZM=
> =SkML
> -----END PGP SIGNATURE-----
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com



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

* Re: [PATCH 1/2] package ipk bbclass: store build branch and revision in ipkg metadata
  2010-12-21 10:30   ` Martin Jansa
@ 2010-12-21 13:22     ` Maupin, Chase
  0 siblings, 0 replies; 4+ messages in thread
From: Maupin, Chase @ 2010-12-21 13:22 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
> Martin Jansa
> Sent: Tuesday, December 21, 2010 4:30 AM
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [PATCH 1/2] package ipk bbclass: store build branch and
> revision in ipkg metadata
> 
> On Tue, Dec 21, 2010 at 11:18:07AM +0100, Koen Kooi wrote:
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> >
> > There is no 2/2, this is the only patch in the series, I had a git
> > format-patch slip up on my end.
> 
> Ah :), looks usefull to me
> 
> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>

I agree.  Thanks for adding this.

Acked-by: Chase Maupin <chase.maupin@ti.com>

> 
> > On 21-12-10 11:06, Koen Kooi wrote:
> > > The ipkg metadata will look like this now:
> > >
> > > koen@dominion:/OE/angstrom-dev/deploy/glibc$ dpkg-deb -I ipk/am3517-
> evm/matrix-gui_1.3-r19.0.6_am3517-evm.ipk
> > >  new debian package, version 2.0.
> > >  size 24112 bytes: control archive= 540 bytes.
> > >      629 bytes,    13 lines      control
> > >  Package: matrix-gui
> > >  Version: 1.3-r19.0.6
> > >  Description: Matrix GUI for Qt X11
> > >  Section: multimedia
> > >  Priority: optional
> > >  Maintainer: Angstrom Developers <angstrom-distro-devel@linuxtogo.org>
> > >  License: BSD
> > >  Architecture: am3517-evm
> > >  OE: matrix-gui
> > >  Homepage: https://gforge.ti.com/gf/project/matrix_gui/
> > >  Build: org.openembedded.dev/f35ab2d
> > >  Depends: matrix-gui-common, libpng12-0, libfreetype6, libz1,
> libgthread-2.0-0, libqtwebkit4, libphonon4, libqtdbus4, libqtxml4,
> libqtgui4, libqtnetwork4, libqtcore4, libglib-2.0-0, libc6, libstdc++6,
> libgcc1
> > >  Source:
> svn://gforge.ti.com/svn/matrix_gui/;module=trunk;proto=https;user=anonymou
> s;pswd=''
> > > koen@dominion:/OE/angstrom-dev/deploy/glibc$
> > >
> > > Signed-off-by: Koen Kooi <koen@openembedded.org>
> > > ---
> > >  classes/package_ipk.bbclass |    1 +
> > >  1 files changed, 1 insertions(+), 0 deletions(-)
> > >
> > > diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass
> > > index 5d388da..97e5cd8 100644
> > > --- a/classes/package_ipk.bbclass
> > > +++ b/classes/package_ipk.bbclass
> > > @@ -224,6 +224,7 @@ python do_package_ipk () {
> > >  		fields.append(["Architecture: %s\n", ['PACKAGE_ARCH']])
> > >  		fields.append(["OE: %s\n", ['PN']])
> > >  		fields.append(["Homepage: %s\n", ['HOMEPAGE']])
> > > +		fields.append(["Build: %s/%s\n", ['METADATA_BRANCH',
> 'METADATA_REVISION']])
> > >
> > >  		def pullData(l, d):
> > >  			l2 = []
> >
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.5 (Darwin)
> >
> > iD8DBQFNEH7fMkyGM64RGpERAtfoAJ4wwHII7rXn7YG4gCKFSQd1B9SmEACeIg/Y
> > rhw39nBhCibyooRTxx+zAZM=
> > =SkML
> > -----END PGP SIGNATURE-----
> >
> >
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 
> --
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

end of thread, other threads:[~2010-12-21 13:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-21 10:06 [PATCH 1/2] package ipk bbclass: store build branch and revision in ipkg metadata Koen Kooi
2010-12-21 10:18 ` Koen Kooi
2010-12-21 10:30   ` Martin Jansa
2010-12-21 13:22     ` Maupin, Chase

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.