* [meta-oe][PATCH 0/1] Pull request for debianutils package
@ 2011-08-30 13:24 Noor, Ahsan
2011-08-30 13:24 ` [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe) Noor, Ahsan
0 siblings, 1 reply; 5+ messages in thread
From: Noor, Ahsan @ 2011-08-30 13:24 UTC (permalink / raw)
To: openembedded-devel
From: Noor Ahsan <noor_ahsan@mentor.com>
The following changes since commit 95b817a700e9717ccfed4167ee0be3fb9547c1b4:
Noor Ahsan (1):
iozone3: Add version 263 (initial recipe)
are available in the git repository at:
git://github.com/Noor-Ahsan/meta-oe master
https://github.com/Noor-Ahsan/meta-oe/tree/master
Noor Ahsan (1):
debianutils: Add version 2.30 (initial recipe)
.../debianutils/debianutils_2.30.bb | 49 ++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-support/debianutils/debianutils_2.30.bb
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe)
2011-08-30 13:24 [meta-oe][PATCH 0/1] Pull request for debianutils package Noor, Ahsan
@ 2011-08-30 13:24 ` Noor, Ahsan
2011-08-30 13:40 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Noor, Ahsan @ 2011-08-30 13:24 UTC (permalink / raw)
To: openembedded-devel
From: Noor Ahsan <noor_ahsan@mentor.com>
* Imported from oe.dev commit id 280a17bc1d8132f97cf6a89b8bc08a32380fa357.
* Merged .bb and .inc file
Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
---
.../debianutils/debianutils_2.30.bb | 49 ++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-support/debianutils/debianutils_2.30.bb
diff --git a/meta-oe/recipes-support/debianutils/debianutils_2.30.bb b/meta-oe/recipes-support/debianutils/debianutils_2.30.bb
new file mode 100644
index 0000000..ff8bdde
--- /dev/null
+++ b/meta-oe/recipes-support/debianutils/debianutils_2.30.bb
@@ -0,0 +1,49 @@
+DESCRIPTION = "Miscellaneous utilities specific to Debian"
+SECTION = "base"
+LICENSE = "GPLv2 & BSD & SMAIL_GPL"
+LIC_FILES_CHKSUM = "file://debian/copyright;md5=b948675029f79c64840e78881e91e1d4"
+
+SRC_URI = "${DEBIAN_MIRROR}/main/d/${PN}/${PN}_${PV}.tar.gz"
+SRC_URI[md5sum] = "7fdd5f8395162d8728d4b79e97b9819e"
+SRC_URI[sha256sum] = "d62e98fee5b1a758d83b62eed8d8bdec473677ff782fed89fc4ae3ba3f381401"
+
+inherit autotools
+
+do_configure_prepend() {
+ sed -i -e 's:tempfile.1 which.1:which.1:g' Makefile.am
+}
+
+do_install_append() {
+ for app in ${D}${sbindir}/* ${D}${bindir}/*; do
+ mv $app $app.${PN}
+ done
+ if [ "${base_bindir}" != "${bindir}" ]; then
+ # Debian places some utils into ${base_bindir} as does busybox
+ install -d ${D}${base_bindir}
+ for app in run-parts.${PN} tempfile.${PN}; do
+ mv ${D}${bindir}/$app ${D}${base_bindir}/$app
+ done
+ fi
+}
+
+pkg_prerm_${PN} () {
+for app in add-shell installkernel mkboot remove-shell run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do
+ update-alternatives --remove $app $app.${PN}
+done
+}
+
+pkg_postinst_${PN} () {
+#!/bin/sh
+for app in add-shell installkernel mkboot remove-shell ; do
+ update-alternatives --install ${sbindir}/$app $app $app.${PN} 100
+done
+for app in savelog sensible-browser sensible-editor sensible-pager which ; do
+ update-alternatives --install ${bindir}/$app $app $app.${PN} 100
+done
+for app in run-parts tempfile ; do
+ update-alternatives --install ${base_bindir}/$app $app $app.${PN} 100
+done
+}
+
+
+
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe)
2011-08-30 13:24 ` [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe) Noor, Ahsan
@ 2011-08-30 13:40 ` Koen Kooi
2011-08-30 14:21 ` Ahsan, Noor
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2011-08-30 13:40 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 30-08-11 15:24, Noor, Ahsan schreef:
> From: Noor Ahsan <noor_ahsan@mentor.com>
>
> * Imported from oe.dev commit id 280a17bc1d8132f97cf6a89b8bc08a32380fa357. * Merged .bb and .inc file
>
> Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> --- .../debianutils/debianutils_2.30.bb | 49 ++++++++++++++++++++
> +pkg_prerm_${PN} () { +for app in add-shell installkernel mkboot remove-shell run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do + update-alternatives --remove $app $app.${PN} +done +} + +pkg_postinst_${PN} () { +#!/bin/sh +for app in add-shell
> installkernel mkboot remove-shell ; do + update-alternatives --install ${sbindir}/$app $app $app.${PN} 100 +done +for app in savelog sensible-browser sensible-editor sensible-pager which ; do + update-alternatives --install ${bindir}/$app $app $app.${PN} 100 +done +for app in
> run-parts tempfile ; do + update-alternatives --install ${base_bindir}/$app $app $app.${PN} 100 +done +}
The *insts are inconsistent, one has a shebang, the other doesn't and neither are safe to use in a cross environment.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOXOg2MkyGM64RGpERAjJ9AJ49QdImds18J3+35yKjLGJnKq/WzQCeJmGa
U0+Ri3DkNyu52JW5LJ9+QcU=
=l6E5
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe)
2011-08-30 13:40 ` Koen Kooi
@ 2011-08-30 14:21 ` Ahsan, Noor
2011-08-30 15:36 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Ahsan, Noor @ 2011-08-30 14:21 UTC (permalink / raw)
To: openembedded-devel
> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf
Of
> Koen Kooi
> Sent: Tuesday, August 30, 2011 6:40 PM
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [meta-oe][PATCH 1/1] debianutils: Add version 2.30
> (initial recipe)
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Op 30-08-11 15:24, Noor, Ahsan schreef:
> > From: Noor Ahsan <noor_ahsan@mentor.com>
> >
> > * Imported from oe.dev commit id
> 280a17bc1d8132f97cf6a89b8bc08a32380fa357. * Merged .bb and .inc file
> >
> > Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> ---
> .../debianutils/debianutils_2.30.bb | 49
> ++++++++++++++++++++
>
> > +pkg_prerm_${PN} () { +for app in add-shell installkernel mkboot
> remove-shell run-parts savelog sensible-browser sensible-editor
> sensible-pager tempfile which ; do + update-alternatives --remove
> $app $app.${PN} +done +} + +pkg_postinst_${PN} () { +#!/bin/sh +for
app
> in add-shell
> > installkernel mkboot remove-shell ; do + update-alternatives --
> install ${sbindir}/$app $app $app.${PN} 100 +done +for app in savelog
> sensible-browser sensible-editor sensible-pager which ; do +
> update-alternatives --install ${bindir}/$app $app $app.${PN} 100 +done
> +for app in
> > run-parts tempfile ; do + update-alternatives --install
> ${base_bindir}/$app $app $app.${PN} 100 +done +}
>
> The *insts are inconsistent, one has a shebang, the other doesn't and
> neither are safe to use in a cross environment.
Koen BTW this is directly coming from oe.dev.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
>
> iD8DBQFOXOg2MkyGM64RGpERAjJ9AJ49QdImds18J3+35yKjLGJnKq/WzQCeJmGa
> U0+Ri3DkNyu52JW5LJ9+QcU=
> =l6E5
> -----END PGP SIGNATURE-----
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe)
2011-08-30 14:21 ` Ahsan, Noor
@ 2011-08-30 15:36 ` Koen Kooi
0 siblings, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2011-08-30 15:36 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 30-08-11 16:21, Ahsan, Noor schreef:
>> -----Original Message----- From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf
> Of
>> Koen Kooi Sent: Tuesday, August 30, 2011 6:40 PM To: openembedded-devel@lists.openembedded.org Subject: Re: [oe] [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe)
>>
> Op 30-08-11 15:24, Noor, Ahsan schreef:
>>>> From: Noor Ahsan <noor_ahsan@mentor.com>
>>>>
>>>> * Imported from oe.dev commit id
> 280a17bc1d8132f97cf6a89b8bc08a32380fa357. * Merged .bb and .inc file
>>>>
>>>> Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> ---
> .../debianutils/debianutils_2.30.bb | 49 ++++++++++++++++++++
>
>>>> +pkg_prerm_${PN} () { +for app in add-shell installkernel mkboot
> remove-shell run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do + update-alternatives --remove $app $app.${PN} +done +} + +pkg_postinst_${PN} () { +#!/bin/sh +for
>> app
> in add-shell
>>>> installkernel mkboot remove-shell ; do + update-alternatives --
> install ${sbindir}/$app $app $app.${PN} 100 +done +for app in savelog sensible-browser sensible-editor sensible-pager which ; do + update-alternatives --install ${bindir}/$app $app $app.${PN} 100 +done +for app in
>>>> run-parts tempfile ; do + update-alternatives --install
> ${base_bindir}/$app $app $app.${PN} 100 +done +}
>
> The *insts are inconsistent, one has a shebang, the other doesn't and neither are safe to use in a cross environment.
>
>> Koen BTW this is directly coming from oe.dev.
And? It's still wrong
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOXQOPMkyGM64RGpERAvYjAJ45fZRDUEa//mXKK1XoU3ByNaQWOQCeNE4q
xQJ2N/zgMWG42dY/6GN/NeM=
=zz1B
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-08-30 15:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-30 13:24 [meta-oe][PATCH 0/1] Pull request for debianutils package Noor, Ahsan
2011-08-30 13:24 ` [meta-oe][PATCH 1/1] debianutils: Add version 2.30 (initial recipe) Noor, Ahsan
2011-08-30 13:40 ` Koen Kooi
2011-08-30 14:21 ` Ahsan, Noor
2011-08-30 15:36 ` Koen Kooi
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.