Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system.
@ 2013-07-03 20:51 Marek Belisko
  2013-07-03 21:04 ` Yann E. MORIN
  2013-07-28 14:05 ` Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Marek Belisko @ 2013-07-03 20:51 UTC (permalink / raw)
  To: buildroot

v0.1.2 update build system from autotools to cmake.

Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
---
 package/libiqrf/libiqrf.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk
index f2d5b4c..df4bb42 100644
--- a/package/libiqrf/libiqrf.mk
+++ b/package/libiqrf/libiqrf.mk
@@ -4,11 +4,11 @@
 #
 ################################################################################
 
-LIBIQRF_VERSION = v0.1.0
+LIBIQRF_VERSION = v0.1.2
 LIBIQRF_SITE = http://github.com/nandra/libiqrf/tarball/$(LIBIQRF_VERSION)
 LIBIQRF_INSTALL_STAGING = YES
 
 LIBIQRF_DEPENDENCIES = libusb
 
-$(eval $(autotools-package))
+$(eval $(cmake-package))
 
-- 
1.8.1.2

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

* [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system.
  2013-07-03 20:51 [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system Marek Belisko
@ 2013-07-03 21:04 ` Yann E. MORIN
  2013-07-04  4:51   ` Belisko Marek
  2013-07-28 14:05 ` Thomas Petazzoni
  1 sibling, 1 reply; 5+ messages in thread
From: Yann E. MORIN @ 2013-07-03 21:04 UTC (permalink / raw)
  To: buildroot

Marek, All,

On 2013-07-03 22:51 +0200, Marek Belisko spake thusly:
> v0.1.2 update build system from autotools to cmake.

Is it mandatory to switch to cmake when upgrading?
If not, then please split this in two: one to upgrade, one to switch.

If possible, I'd prefer we stick to using autotools if it is still
supported (and maintained) by libiqrf. I'm wary of the fuss around
cmake (but agreed, that's a personal taste). Every now and then, I
pester at cmake usage, since I don't really want to pay the price for
Yet-Another-Build-System, and the very few packages that I need and
use cmake, do compile in an aggregated time much smaller than it takes
to build cmake itself.

So, my personal taste would be to favour autotools against cmake
where/if possible, please. ;-)

Note: of course, if autotools is no longer supported by libiqrf, then
the switch is mandatory, but if so, state it explicitly in the commit
message.

> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
> ---
>  package/libiqrf/libiqrf.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk
> index f2d5b4c..df4bb42 100644
> --- a/package/libiqrf/libiqrf.mk
> +++ b/package/libiqrf/libiqrf.mk
> @@ -4,11 +4,11 @@
>  #
>  ################################################################################
>  
> -LIBIQRF_VERSION = v0.1.0
> +LIBIQRF_VERSION = v0.1.2
>  LIBIQRF_SITE = http://github.com/nandra/libiqrf/tarball/$(LIBIQRF_VERSION)
>  LIBIQRF_INSTALL_STAGING = YES
>  
>  LIBIQRF_DEPENDENCIES = libusb
>  
> -$(eval $(autotools-package))
> +$(eval $(cmake-package))

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] 5+ messages in thread

* [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system.
  2013-07-03 21:04 ` Yann E. MORIN
@ 2013-07-04  4:51   ` Belisko Marek
  0 siblings, 0 replies; 5+ messages in thread
From: Belisko Marek @ 2013-07-04  4:51 UTC (permalink / raw)
  To: buildroot

Hi Yann,

On Wed, Jul 3, 2013 at 11:04 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Marek, All,
>
> On 2013-07-03 22:51 +0200, Marek Belisko spake thusly:
>> v0.1.2 update build system from autotools to cmake.
>
> Is it mandatory to switch to cmake when upgrading?
> If not, then please split this in two: one to upgrade, one to switch.
>
> If possible, I'd prefer we stick to using autotools if it is still
> supported (and maintained) by libiqrf. I'm wary of the fuss around
> cmake (but agreed, that's a personal taste). Every now and then, I
> pester at cmake usage, since I don't really want to pay the price for
> Yet-Another-Build-System, and the very few packages that I need and
> use cmake, do compile in an aggregated time much smaller than it takes
> to build cmake itself.
>
> So, my personal taste would be to favour autotools against cmake
> where/if possible, please. ;-)
>
> Note: of course, if autotools is no longer supported by libiqrf, then
> the switch is mandatory, but if so, state it explicitly in the commit
> message.
Right, autotools was replaced by cmake in version v0.1.2.
>
>> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
>> ---
>>  package/libiqrf/libiqrf.mk | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk
>> index f2d5b4c..df4bb42 100644
>> --- a/package/libiqrf/libiqrf.mk
>> +++ b/package/libiqrf/libiqrf.mk
>> @@ -4,11 +4,11 @@
>>  #
>>  ################################################################################
>>
>> -LIBIQRF_VERSION = v0.1.0
>> +LIBIQRF_VERSION = v0.1.2
>>  LIBIQRF_SITE = http://github.com/nandra/libiqrf/tarball/$(LIBIQRF_VERSION)
>>  LIBIQRF_INSTALL_STAGING = YES
>>
>>  LIBIQRF_DEPENDENCIES = libusb
>>
>> -$(eval $(autotools-package))
>> +$(eval $(cmake-package))
>
> 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.  |
> '------------------------------^-------^------------------^--------------------'

Marek

--
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

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

* [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system.
  2013-07-03 20:51 [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system Marek Belisko
  2013-07-03 21:04 ` Yann E. MORIN
@ 2013-07-28 14:05 ` Thomas Petazzoni
  2013-07-28 19:38   ` Belisko Marek
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2013-07-28 14:05 UTC (permalink / raw)
  To: buildroot

Dear Marek Belisko,

On Wed,  3 Jul 2013 22:51:20 +0200, Marek Belisko wrote:
> v0.1.2 update build system from autotools to cmake.

Committed, thanks. I had to add a simple patch to the CMakeLists.txt to
avoid CMake needlessly checking for a C++ compiler. It would be good if
this patch could be upstreamed.

Thanks,

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] 5+ messages in thread

* [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system.
  2013-07-28 14:05 ` Thomas Petazzoni
@ 2013-07-28 19:38   ` Belisko Marek
  0 siblings, 0 replies; 5+ messages in thread
From: Belisko Marek @ 2013-07-28 19:38 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On Sun, Jul 28, 2013 at 4:05 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Marek Belisko,
>
> On Wed,  3 Jul 2013 22:51:20 +0200, Marek Belisko wrote:
>> v0.1.2 update build system from autotools to cmake.
>
> Committed, thanks. I had to add a simple patch to the CMakeLists.txt to
> avoid CMake needlessly checking for a C++ compiler. It would be good if
> this patch could be upstreamed.
Thanks. Sure I'll take your patch and add it upstream.
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com

marek

-- 
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

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

end of thread, other threads:[~2013-07-28 19:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-03 20:51 [Buildroot] [PATCH] libiqrf: Bump to v0.1.2 + update build system Marek Belisko
2013-07-03 21:04 ` Yann E. MORIN
2013-07-04  4:51   ` Belisko Marek
2013-07-28 14:05 ` Thomas Petazzoni
2013-07-28 19:38   ` Belisko Marek

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