Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2] New package: parted
@ 2011-10-20  6:58 Yegor Yefremov
  2011-10-20 12:49 ` Dechesne, Nicolas
  0 siblings, 1 reply; 12+ messages in thread
From: Yegor Yefremov @ 2011-10-20  6:58 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Nicolas Dechesne <n-dechesne@ti.com>
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in        |    1 +
 package/parted/Config.in |    9 +++++++++
 package/parted/parted.mk |   14 ++++++++++++++
 3 files changed, 24 insertions(+)

Index: b/package/Config.in
===================================================================
--- a/package/Config.in
+++ b/package/Config.in
@@ -194,6 +194,7 @@
 source "package/ntfs-3g/Config.in"
 source "package/ntfsprogs/Config.in"
 source "package/openocd/Config.in"
+source "package/parted/Config.in"
 source "package/pciutils/Config.in"
 source "package/picocom/Config.in"
 source "package/rng-tools/Config.in"
Index: b/package/parted/Config.in
===================================================================
--- /dev/null
+++ b/package/parted/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_PARTED
+	bool "parted"
+	select BR2_PACKAGE_LVM2
+	select BR2_PACKAGE_READLINE
+	select BR2_PACKAGE_UTIL_LINUX
+	help
+	  parted, the GNU partition resizing program
+
+	  http://www.gnu.org/software/parted/
Index: b/package/parted/parted.mk
===================================================================
--- /dev/null
+++ b/package/parted/parted.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# parted
+#
+#############################################################
+
+PARTED_VERSION = 3.0
+PARTED_SOURCE = parted-$(PARTED_VERSION).tar.gz
+PARTED_SITE = $(BR2_GNU_MIRROR)/parted
+PARTED_DEPENDENCIES = readline util-linux lvm2
+PARTED_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS))
+

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20  6:58 [Buildroot] [PATCH v2] New package: parted Yegor Yefremov
@ 2011-10-20 12:49 ` Dechesne, Nicolas
  2011-10-20 12:52   ` Yegor Yefremov
                     ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Dechesne, Nicolas @ 2011-10-20 12:49 UTC (permalink / raw)
  To: buildroot

On Thu, Oct 20, 2011 at 8:58 AM, Yegor Yefremov <yegor_sub1@visionsystems.de
> wrote:

> +
> +PARTED_VERSION = 3.0
>

thanks for updating ;-)

i tested with 3.0 and it's working.


>  +PARTED_SOURCE = parted-$(PARTED_VERSION).tar.gz
> +PARTED_SITE = $(BR2_GNU_MIRROR)/parted
> +PARTED_DEPENDENCIES = readline util-linux lvm2
> +PARTED_INSTALL_STAGING = YES
>
> +
> +$(eval $(call AUTOTARGETS))
> +
>

why this instead of

$(eval $(call AUTOTARGETS,package,parted))
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111020/d1287dd8/attachment.html>

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 12:49 ` Dechesne, Nicolas
@ 2011-10-20 12:52   ` Yegor Yefremov
  2011-10-20 12:56   ` Michael S. Zick
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 12+ messages in thread
From: Yegor Yefremov @ 2011-10-20 12:52 UTC (permalink / raw)
  To: buildroot

Am 20.10.2011 14:49, schrieb Dechesne, Nicolas:
>
>
> On Thu, Oct 20, 2011 at 8:58 AM, Yegor Yefremov <yegor_sub1 at visionsystems.de <mailto:yegor_sub1@visionsystems.de>> wrote:
>
>     +
>     +PARTED_VERSION = 3.0
>
>
> thanks for updating ;-)
>
> i tested with 3.0 and it's working.

You're welcome :-)

>  
>
>     +PARTED_SOURCE = parted-$(PARTED_VERSION).tar.gz
>     +PARTED_SITE = $(BR2_GNU_MIRROR)/parted
>     +PARTED_DEPENDENCIES = readline util-linux lvm2
>     +PARTED_INSTALL_STAGING = YES
>
>     +
>     +$(eval $(call AUTOTARGETS))
>     +
>
>
> why this instead of
>
> $(eval $(call AUTOTARGETS,package,parted))
>  

AFAIK these params will be picked automatically due to script improvements.

Yegor

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 12:49 ` Dechesne, Nicolas
  2011-10-20 12:52   ` Yegor Yefremov
@ 2011-10-20 12:56   ` Michael S. Zick
  2011-10-20 13:00     ` Dechesne, Nicolas
  2011-10-20 13:07   ` Thomas Petazzoni
  2011-11-22 21:38   ` Dechesne, Nicolas
  3 siblings, 1 reply; 12+ messages in thread
From: Michael S. Zick @ 2011-10-20 12:56 UTC (permalink / raw)
  To: buildroot

On Thu October 20 2011, Dechesne, Nicolas wrote:
> > +
> > +$(eval $(call AUTOTARGETS))
> > +
> >
> 
> why this instead of
> 
> $(eval $(call AUTOTARGETS,package,parted))
> 

The infra-structure has changed.

The documentation system is in the process of
being changed.

The visible documention has not yet caught up 
with all the changes.

Mike

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 12:56   ` Michael S. Zick
@ 2011-10-20 13:00     ` Dechesne, Nicolas
  0 siblings, 0 replies; 12+ messages in thread
From: Dechesne, Nicolas @ 2011-10-20 13:00 UTC (permalink / raw)
  To: buildroot

On Thu, Oct 20, 2011 at 2:56 PM, Michael S. Zick <minimod@morethan.org>wrote:

> > $(eval $(call AUTOTARGETS,package,parted))
> >
>
> The infra-structure has changed.
>
> The documentation system is in the process of
> being changed.
>
> The visible documention has not yet caught up
> with all the changes.


ok. nice tip!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111020/68320263/attachment.html>

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 12:49 ` Dechesne, Nicolas
  2011-10-20 12:52   ` Yegor Yefremov
  2011-10-20 12:56   ` Michael S. Zick
@ 2011-10-20 13:07   ` Thomas Petazzoni
  2011-10-20 13:09     ` Dechesne, Nicolas
                       ` (2 more replies)
  2011-11-22 21:38   ` Dechesne, Nicolas
  3 siblings, 3 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2011-10-20 13:07 UTC (permalink / raw)
  To: buildroot

Le Thu, 20 Oct 2011 14:49:26 +0200,
"Dechesne, Nicolas" <n-dechesne@ti.com> a ?crit :

> > +$(eval $(call AUTOTARGETS))
> 
> why this instead of
> 
> $(eval $(call AUTOTARGETS,package,parted))

In the new Git version, it is sufficient to write:

$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
$(eval $(call GENTARGETS))
$(eval $(call GENTARGETS,host))

And the package infrastructure will figure out automatically the
package name and the package directory.

Next week, I'll be in Prague, where I will physically meet Peter. And I
intend to use this opportunity to use whatever method happens to be
necessary to have him merge the asciidoc documentation patches so that
we can work on improving the documentation! :-))

Or maybe I should start a fund-raising campaign from Buildroot
contributors to buy enough beers to Peter so that he gets drunk enough
to blindly merge all our patches. Who's contributing ? :-)

Regards!

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 13:07   ` Thomas Petazzoni
@ 2011-10-20 13:09     ` Dechesne, Nicolas
  2011-10-20 13:21       ` Thomas Petazzoni
  2011-10-20 19:49     ` Yann E. MORIN
  2011-10-20 20:19     ` Peter Korsgaard
  2 siblings, 1 reply; 12+ messages in thread
From: Dechesne, Nicolas @ 2011-10-20 13:09 UTC (permalink / raw)
  To: buildroot

On Thu, Oct 20, 2011 at 3:07 PM, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:

>
> $(eval $(call AUTOTARGETS))
> $(eval $(call AUTOTARGETS,host))
> $(eval $(call GENTARGETS))
> $(eval $(call GENTARGETS,host))
>
> And the package infrastructure will figure out automatically the
> package name and the package directory.
>

this is cool. so someone has to update all packages ;-)


>
> Next week, I'll be in Prague, where I will physically meet Peter.


i will be there as well ;-)


> And I
> intend to use this opportunity to use whatever method happens to be
> necessary to have him merge the asciidoc documentation patches so that
> we can work on improving the documentation! :-))
>
> Or maybe I should start a fund-raising campaign from Buildroot
> contributors to buy enough beers to Peter so that he gets drunk enough
> to blindly merge all our patches. Who's contributing ? :-)
>

sounds like a plan!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111020/4de0b090/attachment.html>

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 13:09     ` Dechesne, Nicolas
@ 2011-10-20 13:21       ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2011-10-20 13:21 UTC (permalink / raw)
  To: buildroot

Le Thu, 20 Oct 2011 15:09:27 +0200,
"Dechesne, Nicolas" <n-dechesne@ti.com> a ?crit :

> this is cool. so someone has to update all packages ;-)

This is done already.

http://git.buildroot.net/buildroot/commit/?id=9e4aeb3c2b92435f406ff165965475ba774705d0
http://git.buildroot.net/buildroot/commit/?id=300f9c9c9dcf2b47ea89c45d5b1ea05e7305bd49
http://git.buildroot.net/buildroot/commit/?id=0849e8193ef429f29945b8c2a54eafc8635e0969

> > Next week, I'll be in Prague, where I will physically meet Peter.
> 
> i will be there as well ;-)

Great! I hope to find some time to chat a bit with you about your
Buildroot usage.

> > And I
> > intend to use this opportunity to use whatever method happens to be
> > necessary to have him merge the asciidoc documentation patches so
> > that we can work on improving the documentation! :-))
> >
> > Or maybe I should start a fund-raising campaign from Buildroot
> > contributors to buy enough beers to Peter so that he gets drunk
> > enough to blindly merge all our patches. Who's contributing ? :-)
> 
> sounds like a plan!

 :-)

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 13:07   ` Thomas Petazzoni
  2011-10-20 13:09     ` Dechesne, Nicolas
@ 2011-10-20 19:49     ` Yann E. MORIN
  2011-10-20 20:19     ` Peter Korsgaard
  2 siblings, 0 replies; 12+ messages in thread
From: Yann E. MORIN @ 2011-10-20 19:49 UTC (permalink / raw)
  To: buildroot

All,

On Thursday 20 October 2011 15:07:04 Thomas Petazzoni wrote:
> Next week, I'll be in Prague, where I will physically meet Peter. And I
> intend to use this opportunity to use whatever method happens to be
> necessary to have him merge the asciidoc documentation patches so that
> we can work on improving the documentation! :-))

Yes, the asciidoc patches are pretty good. I think they should go in
before -rc1.

> Or maybe I should start a fund-raising campaign from Buildroot
> contributors to buy enough beers to Peter so that he gets drunk enough
> to blindly merge all our patches. Who's contributing ? :-)

Count me in! It'll be fun to see how Peter copes after a few beers! :-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 13:07   ` Thomas Petazzoni
  2011-10-20 13:09     ` Dechesne, Nicolas
  2011-10-20 19:49     ` Yann E. MORIN
@ 2011-10-20 20:19     ` Peter Korsgaard
  2011-10-21  6:58       ` Thomas Petazzoni
  2 siblings, 1 reply; 12+ messages in thread
From: Peter Korsgaard @ 2011-10-20 20:19 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

Hi,

 Thomas> Next week, I'll be in Prague, where I will physically meet
 Thomas> Peter. And I intend to use this opportunity to use whatever
 Thomas> method happens to be necessary to have him merge the asciidoc
 Thomas> documentation patches so that we can work on improving the
 Thomas> documentation! :-))

It's not lack of willingness, purely an issue of
not-enough-hours-in-a-day combined with the osuosl guys being very busy 
because of kernel.org. I'm looking at the patches now..

 Thomas> Or maybe I should start a fund-raising campaign from Buildroot
 Thomas> contributors to buy enough beers to Peter so that he gets drunk
 Thomas> enough to blindly merge all our patches. Who's contributing ?
 Thomas> :-)

Heh, I rather have a new laptop though ;)

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 20:19     ` Peter Korsgaard
@ 2011-10-21  6:58       ` Thomas Petazzoni
  0 siblings, 0 replies; 12+ messages in thread
From: Thomas Petazzoni @ 2011-10-21  6:58 UTC (permalink / raw)
  To: buildroot

Le Thu, 20 Oct 2011 22:19:46 +0200,
Peter Korsgaard <jacmet@uclibc.org> a ?crit :

> It's not lack of willingness, purely an issue of
> not-enough-hours-in-a-day combined with the osuosl guys being very busy 
> because of kernel.org. I'm looking at the patches now..

Yeah, I know. I was joking, really. I also have been busy lately.

>  Thomas> Or maybe I should start a fund-raising campaign from Buildroot
>  Thomas> contributors to buy enough beers to Peter so that he gets drunk
>  Thomas> enough to blindly merge all our patches. Who's contributing ?
>  Thomas> :-)
> 
> Heh, I rather have a new laptop though ;)

True that your laptop starts to be a bit oldish.

Regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH v2] New package: parted
  2011-10-20 12:49 ` Dechesne, Nicolas
                     ` (2 preceding siblings ...)
  2011-10-20 13:07   ` Thomas Petazzoni
@ 2011-11-22 21:38   ` Dechesne, Nicolas
  3 siblings, 0 replies; 12+ messages in thread
From: Dechesne, Nicolas @ 2011-11-22 21:38 UTC (permalink / raw)
  To: buildroot

On Thu, Oct 20, 2011 at 2:49 PM, Dechesne, Nicolas <n-dechesne@ti.com>wrote:

> On Thu, Oct 20, 2011 at 8:58 AM, Yegor Yefremov <
> yegor_sub1 at visionsystems.de> wrote:
>
>> +
>> +PARTED_VERSION = 3.0
>>
>
> thanks for updating ;-)
>
> i tested with 3.0 and it's working.
>

anything more needed to get 'parted' package merged? let me know if I can
do anything.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111122/15e101fb/attachment.html>

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

end of thread, other threads:[~2011-11-22 21:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-20  6:58 [Buildroot] [PATCH v2] New package: parted Yegor Yefremov
2011-10-20 12:49 ` Dechesne, Nicolas
2011-10-20 12:52   ` Yegor Yefremov
2011-10-20 12:56   ` Michael S. Zick
2011-10-20 13:00     ` Dechesne, Nicolas
2011-10-20 13:07   ` Thomas Petazzoni
2011-10-20 13:09     ` Dechesne, Nicolas
2011-10-20 13:21       ` Thomas Petazzoni
2011-10-20 19:49     ` Yann E. MORIN
2011-10-20 20:19     ` Peter Korsgaard
2011-10-21  6:58       ` Thomas Petazzoni
2011-11-22 21:38   ` Dechesne, Nicolas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox