Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/3] Mono: fixing latest build failures
@ 2015-05-09  8:41 Angelo Compagnucci
  2015-05-09  8:41 ` [Buildroot] [PATCH 1/3] package/mono: fixing mono version Angelo Compagnucci
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Angelo Compagnucci @ 2015-05-09  8:41 UTC (permalink / raw)
  To: buildroot

This patch series should fix the latest build failures for mono.

Fixes http://autobuild.buildroot.net/results/227/227f942107e4fcbc14bb1e7d97e1e2758d6f3f2d/

Angelo Compagnucci (3):
  package/mono: fixing mono version
  package/mono: adding hash file
  package/monolite: adding hash file

 package/mono/mono.hash         | 2 ++
 package/mono/mono.mk           | 2 +-
 package/monolite/monolite.hash | 2 ++
 3 files changed, 5 insertions(+), 1 deletion(-)
 create mode 100644 package/mono/mono.hash
 create mode 100644 package/monolite/monolite.hash

-- 
1.9.1

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

* [Buildroot] [PATCH 1/3] package/mono: fixing mono version
  2015-05-09  8:41 [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Angelo Compagnucci
@ 2015-05-09  8:41 ` Angelo Compagnucci
  2015-05-09  8:41 ` [Buildroot] [PATCH 2/3] package/mono: adding hash file Angelo Compagnucci
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Angelo Compagnucci @ 2015-05-09  8:41 UTC (permalink / raw)
  To: buildroot

This patch fixes to the correct mono version 4.0.0 as stated on
the download page.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---
 package/mono/mono.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/mono/mono.mk b/package/mono/mono.mk
index c0a0827..63026f1 100644
--- a/package/mono/mono.mk
+++ b/package/mono/mono.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MONO_VERSION = 4.0.1
+MONO_VERSION = 4.0.0
 MONO_SITE = http://download.mono-project.com/sources/mono
 MONO_SOURCE = mono-$(MONO_VERSION).tar.bz2
 MONO_LICENSE = GPLv2 or MIT (compiler, tools), LGPLv2 (runtime libs), MIT (class libs) or commercial
-- 
1.9.1

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

* [Buildroot] [PATCH 2/3] package/mono: adding hash file
  2015-05-09  8:41 [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Angelo Compagnucci
  2015-05-09  8:41 ` [Buildroot] [PATCH 1/3] package/mono: fixing mono version Angelo Compagnucci
@ 2015-05-09  8:41 ` Angelo Compagnucci
  2015-05-09  8:41 ` [Buildroot] [PATCH 3/3] package/monolite: " Angelo Compagnucci
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Angelo Compagnucci @ 2015-05-09  8:41 UTC (permalink / raw)
  To: buildroot

This patch adds the hash file for mono 4.0.0.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---
 package/mono/mono.hash | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 package/mono/mono.hash

diff --git a/package/mono/mono.hash b/package/mono/mono.hash
new file mode 100644
index 0000000..c1d0c6e
--- /dev/null
+++ b/package/mono/mono.hash
@@ -0,0 +1,2 @@
+# sha256 locally computed
+sha256 4485d8b44a939bef64b3b1b6a7f0388761cfe6803e149aa1e56aab023cfb267e  mono-4.0.0.tar.bz2
-- 
1.9.1

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

* [Buildroot] [PATCH 3/3] package/monolite: adding hash file
  2015-05-09  8:41 [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Angelo Compagnucci
  2015-05-09  8:41 ` [Buildroot] [PATCH 1/3] package/mono: fixing mono version Angelo Compagnucci
  2015-05-09  8:41 ` [Buildroot] [PATCH 2/3] package/mono: adding hash file Angelo Compagnucci
@ 2015-05-09  8:41 ` Angelo Compagnucci
  2015-05-11  7:05 ` [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Peter Korsgaard
  2015-05-11 20:36 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Angelo Compagnucci @ 2015-05-09  8:41 UTC (permalink / raw)
  To: buildroot

This patch adds hash file for monolite version 117.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---
 package/monolite/monolite.hash | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 package/monolite/monolite.hash

diff --git a/package/monolite/monolite.hash b/package/monolite/monolite.hash
new file mode 100644
index 0000000..1139c0a
--- /dev/null
+++ b/package/monolite/monolite.hash
@@ -0,0 +1,2 @@
+# sha256 locally computed
+sha256 07a8573feef0053ec28b98355feba8c83dcfb3f99c2d0913a16a287382daf4b8  monolite-117-latest.tar.gz
-- 
1.9.1

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

* [Buildroot] [PATCH 0/3] Mono: fixing latest build failures
  2015-05-09  8:41 [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Angelo Compagnucci
                   ` (2 preceding siblings ...)
  2015-05-09  8:41 ` [Buildroot] [PATCH 3/3] package/monolite: " Angelo Compagnucci
@ 2015-05-11  7:05 ` Peter Korsgaard
  2015-05-11 20:36 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2015-05-11  7:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Angelo" == Angelo Compagnucci <angelo.compagnucci@gmail.com> writes:

 > This patch series should fix the latest build failures for mono.
 > Fixes http://autobuild.buildroot.net/results/227/227f942107e4fcbc14bb1e7d97e1e2758d6f3f2d/

Committed series, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 0/3] Mono: fixing latest build failures
  2015-05-09  8:41 [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Angelo Compagnucci
                   ` (3 preceding siblings ...)
  2015-05-11  7:05 ` [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Peter Korsgaard
@ 2015-05-11 20:36 ` Peter Korsgaard
  2015-05-11 20:44   ` Angelo Compagnucci
  4 siblings, 1 reply; 9+ messages in thread
From: Peter Korsgaard @ 2015-05-11 20:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Angelo" == Angelo Compagnucci <angelo.compagnucci@gmail.com> writes:

 > This patch series should fix the latest build failures for mono.
 > Fixes http://autobuild.buildroot.net/results/227/227f942107e4fcbc14bb1e7d97e1e2758d6f3f2d/

It unfortunately doesn't sem to have fixed the issue :/

http://autobuild.buildroot.net/results/81a/81aadff4232cf1f1c36d8effe309a87d706b858f/build-end.log

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 0/3] Mono: fixing latest build failures
  2015-05-11 20:36 ` Peter Korsgaard
@ 2015-05-11 20:44   ` Angelo Compagnucci
  2015-05-11 20:55     ` Romain Naour
  0 siblings, 1 reply; 9+ messages in thread
From: Angelo Compagnucci @ 2015-05-11 20:44 UTC (permalink / raw)
  To: buildroot

Dear Peter Korsgaard,

2015-05-11 22:36 GMT+02:00 Peter Korsgaard <peter@korsgaard.com>:
>>>>>> "Angelo" == Angelo Compagnucci <angelo.compagnucci@gmail.com> writes:
>
>  > This patch series should fix the latest build failures for mono.
>  > Fixes http://autobuild.buildroot.net/results/227/227f942107e4fcbc14bb1e7d97e1e2758d6f3f2d/
>
> It unfortunately doesn't sem to have fixed the issue :/
>
> http://autobuild.buildroot.net/results/81a/81aadff4232cf1f1c36d8effe309a87d706b858f/build-end.log

That's really unfortunate cause on my test machine everithing goes
well. I tested up to make -j32 and make without arguments, never
encountered that problem.

Could you suggest a better way to find the root cause of the bug?

Sincerely, Angelo

>
> --
> Bye, Peter Korsgaard



-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

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

* [Buildroot] [PATCH 0/3] Mono: fixing latest build failures
  2015-05-11 20:44   ` Angelo Compagnucci
@ 2015-05-11 20:55     ` Romain Naour
  2015-05-12  5:55       ` Angelo Compagnucci
  0 siblings, 1 reply; 9+ messages in thread
From: Romain Naour @ 2015-05-11 20:55 UTC (permalink / raw)
  To: buildroot

Hi Angelo,

Le 11/05/2015 22:44, Angelo Compagnucci a ?crit :
> Dear Peter Korsgaard,
> 
> 2015-05-11 22:36 GMT+02:00 Peter Korsgaard <peter@korsgaard.com>:
>>>>>>> "Angelo" == Angelo Compagnucci <angelo.compagnucci@gmail.com> writes:
>>
>>  > This patch series should fix the latest build failures for mono.
>>  > Fixes http://autobuild.buildroot.net/results/227/227f942107e4fcbc14bb1e7d97e1e2758d6f3f2d/
>>
>> It unfortunately doesn't sem to have fixed the issue :/
>>
>> http://autobuild.buildroot.net/results/81a/81aadff4232cf1f1c36d8effe309a87d706b858f/build-end.log
> 
> That's really unfortunate cause on my test machine everithing goes
> well. I tested up to make -j32 and make without arguments, never
> encountered that problem.
> 
> Could you suggest a better way to find the root cause of the bug?

This issue look like the imagemagick one:
http://git.buildroot.net/buildroot/commit/?id=7395ee9d3b88e45798143e05a28d6d4b51409130

You need to find by looking the Makefile from which targets the same file can be
installed.
Not easy though.

Best regards,
Romain

> 
> Sincerely, Angelo
> 
>>
>> --
>> Bye, Peter Korsgaard
> 
> 
> 

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

* [Buildroot] [PATCH 0/3] Mono: fixing latest build failures
  2015-05-11 20:55     ` Romain Naour
@ 2015-05-12  5:55       ` Angelo Compagnucci
  0 siblings, 0 replies; 9+ messages in thread
From: Angelo Compagnucci @ 2015-05-12  5:55 UTC (permalink / raw)
  To: buildroot

Dear Romain Naour,

2015-05-11 22:55 GMT+02:00 Romain Naour <romain.naour@openwide.fr>:
> Hi Angelo,
>
> Le 11/05/2015 22:44, Angelo Compagnucci a ?crit :
>> Dear Peter Korsgaard,
>>
>> 2015-05-11 22:36 GMT+02:00 Peter Korsgaard <peter@korsgaard.com>:
>>>>>>>> "Angelo" == Angelo Compagnucci <angelo.compagnucci@gmail.com> writes:
>>>
>>>  > This patch series should fix the latest build failures for mono.
>>>  > Fixes http://autobuild.buildroot.net/results/227/227f942107e4fcbc14bb1e7d97e1e2758d6f3f2d/
>>>
>>> It unfortunately doesn't sem to have fixed the issue :/
>>>
>>> http://autobuild.buildroot.net/results/81a/81aadff4232cf1f1c36d8effe309a87d706b858f/build-end.log
>>
>> That's really unfortunate cause on my test machine everithing goes
>> well. I tested up to make -j32 and make without arguments, never
>> encountered that problem.
>>
>> Could you suggest a better way to find the root cause of the bug?
>
> This issue look like the imagemagick one:
> http://git.buildroot.net/buildroot/commit/?id=7395ee9d3b88e45798143e05a28d6d4b51409130
>
> You need to find by looking the Makefile from which targets the same file can be
> installed.
> Not easy though.

You are probably right!

Effectively this is strange:

/usr/bin/install -c -c -m 644 frameworks/net_4.5.xml
/ssd1/thomas/autobuild/instance-0/output/host/usr/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml
/usr/bin/install -c -c -m 644 frameworks/net_4.5.xml
/ssd1/thomas/autobuild/instance-0/output/host/usr/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml

I'm looking at cause of this double installation.

Thank you for your help!

Sincerely, Angelo


>
> Best regards,
> Romain
>
>>
>> Sincerely, Angelo
>>
>>>
>>> --
>>> Bye, Peter Korsgaard
>>
>>
>>



-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

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

end of thread, other threads:[~2015-05-12  5:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-09  8:41 [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Angelo Compagnucci
2015-05-09  8:41 ` [Buildroot] [PATCH 1/3] package/mono: fixing mono version Angelo Compagnucci
2015-05-09  8:41 ` [Buildroot] [PATCH 2/3] package/mono: adding hash file Angelo Compagnucci
2015-05-09  8:41 ` [Buildroot] [PATCH 3/3] package/monolite: " Angelo Compagnucci
2015-05-11  7:05 ` [Buildroot] [PATCH 0/3] Mono: fixing latest build failures Peter Korsgaard
2015-05-11 20:36 ` Peter Korsgaard
2015-05-11 20:44   ` Angelo Compagnucci
2015-05-11 20:55     ` Romain Naour
2015-05-12  5:55       ` Angelo Compagnucci

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