* [Xenomai-help] Debian package building fails with 2.5-rc1
@ 2009-05-05 18:25 Stefan Kisdaroczi
2009-05-28 9:10 ` Stefan Kisdaroczi
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Kisdaroczi @ 2009-05-05 18:25 UTC (permalink / raw)
To: xenomai
[-- Attachment #1: Type: text/plain, Size: 682 bytes --]
Hi,
there is no ChangeLog file in the project root anymore, so debian package building fails.
Following patch fixed it for me.
kisda
--- xenomai-2.5.orig/debian/rules
+++ xenomai-2.5/debian/rules
@@ -108,7 +108,7 @@
dh_testdir -i
dh_testroot -i
dh_installdocs -i -A CREDITS README.INSTALL TROUBLESHOOTING
- dh_installchangelogs -i ChangeLog
+ dh_installchangelogs -i
dh_link -i
dh_strip -i
dh_compress -i -X.pdf
@@ -131,7 +131,7 @@
dh_testroot -s
dh_installman -s
dh_installdocs -s -A CREDITS README.INSTALL TROUBLESHOOTING
- dh_installchangelogs -s ChangeLog
+ dh_installchangelogs -s
dh_link -s
dh_strip -s
dh_compress -s
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Xenomai-help] Debian package building fails with 2.5-rc1
2009-05-05 18:25 [Xenomai-help] Debian package building fails with 2.5-rc1 Stefan Kisdaroczi
@ 2009-05-28 9:10 ` Stefan Kisdaroczi
2009-05-28 12:28 ` Philippe Gerum
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Kisdaroczi @ 2009-05-28 9:10 UTC (permalink / raw)
To: xenomai
[-- Attachment #1: Type: text/plain, Size: 1157 bytes --]
Hi Philippe,
thx for commiting to xenomai-head.
Please merge to 2.4.x, you removed the Changelog file one week ago.
Thank you
Stefan
Stefan Kisdaroczi schrieb:
> Hi,
>
> there is no ChangeLog file in the project root anymore, so debian package building fails.
> Following patch fixed it for me.
>
> kisda
>
> --- xenomai-2.5.orig/debian/rules
> +++ xenomai-2.5/debian/rules
> @@ -108,7 +108,7 @@
> dh_testdir -i
> dh_testroot -i
> dh_installdocs -i -A CREDITS README.INSTALL TROUBLESHOOTING
> - dh_installchangelogs -i ChangeLog
> + dh_installchangelogs -i
> dh_link -i
> dh_strip -i
> dh_compress -i -X.pdf
> @@ -131,7 +131,7 @@
> dh_testroot -s
> dh_installman -s
> dh_installdocs -s -A CREDITS README.INSTALL TROUBLESHOOTING
> - dh_installchangelogs -s ChangeLog
> + dh_installchangelogs -s
> dh_link -s
> dh_strip -s
> dh_compress -s
>
>
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Xenomai-help mailing list
> Xenomai-help@domain.hid
> https://mail.gna.org/listinfo/xenomai-help
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Xenomai-help] Debian package building fails with 2.5-rc1
2009-05-28 9:10 ` Stefan Kisdaroczi
@ 2009-05-28 12:28 ` Philippe Gerum
2009-05-28 13:22 ` Stefan Kisdaroczi
0 siblings, 1 reply; 6+ messages in thread
From: Philippe Gerum @ 2009-05-28 12:28 UTC (permalink / raw)
To: Stefan Kisdaroczi; +Cc: xenomai
On Thu, 2009-05-28 at 11:10 +0200, Stefan Kisdaroczi wrote:
> Hi Philippe,
>
> thx for commiting to xenomai-head.
> Please merge to 2.4.x, you removed the Changelog file one week ago.
>
Should be ok now. Thanks,
http://git.xenomai.org/?p=xenomai-head.git;a=commit;h=3efa9d95abc65bef76546480bbd643de5a391a30
> Thank you
> Stefan
>
> Stefan Kisdaroczi schrieb:
> > Hi,
> >
> > there is no ChangeLog file in the project root anymore, so debian package building fails.
> > Following patch fixed it for me.
> >
> > kisda
> >
> > --- xenomai-2.5.orig/debian/rules
> > +++ xenomai-2.5/debian/rules
> > @@ -108,7 +108,7 @@
> > dh_testdir -i
> > dh_testroot -i
> > dh_installdocs -i -A CREDITS README.INSTALL TROUBLESHOOTING
> > - dh_installchangelogs -i ChangeLog
> > + dh_installchangelogs -i
> > dh_link -i
> > dh_strip -i
> > dh_compress -i -X.pdf
> > @@ -131,7 +131,7 @@
> > dh_testroot -s
> > dh_installman -s
> > dh_installdocs -s -A CREDITS README.INSTALL TROUBLESHOOTING
> > - dh_installchangelogs -s ChangeLog
> > + dh_installchangelogs -s
> > dh_link -s
> > dh_strip -s
> > dh_compress -s
> >
> >
> >
> >
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > Xenomai-help mailing list
> > Xenomai-help@domain.hid
> > https://mail.gna.org/listinfo/xenomai-help
>
>
> _______________________________________________
> Xenomai-help mailing list
> Xenomai-help@domain.hid
> https://mail.gna.org/listinfo/xenomai-help
--
Philippe.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Xenomai-help] Debian package building fails with 2.5-rc1
2009-05-28 12:28 ` Philippe Gerum
@ 2009-05-28 13:22 ` Stefan Kisdaroczi
2009-05-28 13:40 ` Philippe Gerum
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Kisdaroczi @ 2009-05-28 13:22 UTC (permalink / raw)
To: Philippe Gerum; +Cc: xenomai
[-- Attachment #1: Type: text/plain, Size: 1853 bytes --]
Philippe Gerum schrieb:
> On Thu, 2009-05-28 at 11:10 +0200, Stefan Kisdaroczi wrote:
>> Hi Philippe,
>>
>> thx for commiting to xenomai-head.
>> Please merge to 2.4.x, you removed the Changelog file one week ago.
>>
>
> Should be ok now. Thanks,
> http://git.xenomai.org/?p=xenomai-head.git;a=commit;h=3efa9d95abc65bef76546480bbd643de5a391a30
this is _xenomai-head.git_ , i dont see the change in _xenomai-2.4.git_
you removed the changelog in 2.4.x here:
http://git.xenomai.org/?p=xenomai-2.4.git;a=commit;h=8a5e70f8067b6f8e8e1645a481a9ddcba8946581
thanks
>> Thank you
>> Stefan
>>
>> Stefan Kisdaroczi schrieb:
>>> Hi,
>>>
>>> there is no ChangeLog file in the project root anymore, so debian package building fails.
>>> Following patch fixed it for me.
>>>
>>> kisda
>>>
>>> --- xenomai-2.5.orig/debian/rules
>>> +++ xenomai-2.5/debian/rules
>>> @@ -108,7 +108,7 @@
>>> dh_testdir -i
>>> dh_testroot -i
>>> dh_installdocs -i -A CREDITS README.INSTALL TROUBLESHOOTING
>>> - dh_installchangelogs -i ChangeLog
>>> + dh_installchangelogs -i
>>> dh_link -i
>>> dh_strip -i
>>> dh_compress -i -X.pdf
>>> @@ -131,7 +131,7 @@
>>> dh_testroot -s
>>> dh_installman -s
>>> dh_installdocs -s -A CREDITS README.INSTALL TROUBLESHOOTING
>>> - dh_installchangelogs -s ChangeLog
>>> + dh_installchangelogs -s
>>> dh_link -s
>>> dh_strip -s
>>> dh_compress -s
>>>
>>>
>>>
>>>
>>> ------------------------------------------------------------------------
>>>
>>> _______________________________________________
>>> Xenomai-help mailing list
>>> Xenomai-help@domain.hid
>>> https://mail.gna.org/listinfo/xenomai-help
>>
>> _______________________________________________
>> Xenomai-help mailing list
>> Xenomai-help@domain.hid
>> https://mail.gna.org/listinfo/xenomai-help
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Xenomai-help] Debian package building fails with 2.5-rc1
2009-05-28 13:22 ` Stefan Kisdaroczi
@ 2009-05-28 13:40 ` Philippe Gerum
2009-05-28 13:57 ` Stefan Kisdaroczi
0 siblings, 1 reply; 6+ messages in thread
From: Philippe Gerum @ 2009-05-28 13:40 UTC (permalink / raw)
To: Stefan Kisdaroczi; +Cc: xenomai
On Thu, 2009-05-28 at 15:22 +0200, Stefan Kisdaroczi wrote:
> Philippe Gerum schrieb:
> > On Thu, 2009-05-28 at 11:10 +0200, Stefan Kisdaroczi wrote:
> >> Hi Philippe,
> >>
> >> thx for commiting to xenomai-head.
> >> Please merge to 2.4.x, you removed the Changelog file one week ago.
> >>
> >
> > Should be ok now. Thanks,
> > http://git.xenomai.org/?p=xenomai-head.git;a=commit;h=3efa9d95abc65bef76546480bbd643de5a391a30
>
> this is _xenomai-head.git_ , i dont see the change in _xenomai-2.4.git_
That's normal. I did not find my brain either.
Should really be ok, now.
>
> you removed the changelog in 2.4.x here:
> http://git.xenomai.org/?p=xenomai-2.4.git;a=commit;h=8a5e70f8067b6f8e8e1645a481a9ddcba8946581
>
> thanks
>
> >> Thank you
> >> Stefan
> >>
> >> Stefan Kisdaroczi schrieb:
> >>> Hi,
> >>>
> >>> there is no ChangeLog file in the project root anymore, so debian package building fails.
> >>> Following patch fixed it for me.
> >>>
> >>> kisda
> >>>
> >>> --- xenomai-2.5.orig/debian/rules
> >>> +++ xenomai-2.5/debian/rules
> >>> @@ -108,7 +108,7 @@
> >>> dh_testdir -i
> >>> dh_testroot -i
> >>> dh_installdocs -i -A CREDITS README.INSTALL TROUBLESHOOTING
> >>> - dh_installchangelogs -i ChangeLog
> >>> + dh_installchangelogs -i
> >>> dh_link -i
> >>> dh_strip -i
> >>> dh_compress -i -X.pdf
> >>> @@ -131,7 +131,7 @@
> >>> dh_testroot -s
> >>> dh_installman -s
> >>> dh_installdocs -s -A CREDITS README.INSTALL TROUBLESHOOTING
> >>> - dh_installchangelogs -s ChangeLog
> >>> + dh_installchangelogs -s
> >>> dh_link -s
> >>> dh_strip -s
> >>> dh_compress -s
> >>>
> >>>
> >>>
> >>>
> >>> ------------------------------------------------------------------------
> >>>
> >>> _______________________________________________
> >>> Xenomai-help mailing list
> >>> Xenomai-help@domain.hid
> >>> https://mail.gna.org/listinfo/xenomai-help
> >>
> >> _______________________________________________
> >> Xenomai-help mailing list
> >> Xenomai-help@domain.hid
> >> https://mail.gna.org/listinfo/xenomai-help
>
>
--
Philippe.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Xenomai-help] Debian package building fails with 2.5-rc1
2009-05-28 13:40 ` Philippe Gerum
@ 2009-05-28 13:57 ` Stefan Kisdaroczi
0 siblings, 0 replies; 6+ messages in thread
From: Stefan Kisdaroczi @ 2009-05-28 13:57 UTC (permalink / raw)
To: Philippe Gerum; +Cc: xenomai
[-- Attachment #1: Type: text/plain, Size: 2169 bytes --]
Philippe Gerum schrieb:
> On Thu, 2009-05-28 at 15:22 +0200, Stefan Kisdaroczi wrote:
>> Philippe Gerum schrieb:
>>> On Thu, 2009-05-28 at 11:10 +0200, Stefan Kisdaroczi wrote:
>>>> Hi Philippe,
>>>>
>>>> thx for commiting to xenomai-head.
>>>> Please merge to 2.4.x, you removed the Changelog file one week ago.
>>>>
>>> Should be ok now. Thanks,
>>> http://git.xenomai.org/?p=xenomai-head.git;a=commit;h=3efa9d95abc65bef76546480bbd643de5a391a30
>> this is _xenomai-head.git_ , i dont see the change in _xenomai-2.4.git_
>
> That's normal. I did not find my brain either.
>
> Should really be ok, now.
merci beaucoup
>
>> you removed the changelog in 2.4.x here:
>> http://git.xenomai.org/?p=xenomai-2.4.git;a=commit;h=8a5e70f8067b6f8e8e1645a481a9ddcba8946581
>>
>> thanks
>>
>>>> Thank you
>>>> Stefan
>>>>
>>>> Stefan Kisdaroczi schrieb:
>>>>> Hi,
>>>>>
>>>>> there is no ChangeLog file in the project root anymore, so debian package building fails.
>>>>> Following patch fixed it for me.
>>>>>
>>>>> kisda
>>>>>
>>>>> --- xenomai-2.5.orig/debian/rules
>>>>> +++ xenomai-2.5/debian/rules
>>>>> @@ -108,7 +108,7 @@
>>>>> dh_testdir -i
>>>>> dh_testroot -i
>>>>> dh_installdocs -i -A CREDITS README.INSTALL TROUBLESHOOTING
>>>>> - dh_installchangelogs -i ChangeLog
>>>>> + dh_installchangelogs -i
>>>>> dh_link -i
>>>>> dh_strip -i
>>>>> dh_compress -i -X.pdf
>>>>> @@ -131,7 +131,7 @@
>>>>> dh_testroot -s
>>>>> dh_installman -s
>>>>> dh_installdocs -s -A CREDITS README.INSTALL TROUBLESHOOTING
>>>>> - dh_installchangelogs -s ChangeLog
>>>>> + dh_installchangelogs -s
>>>>> dh_link -s
>>>>> dh_strip -s
>>>>> dh_compress -s
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------
>>>>>
>>>>> _______________________________________________
>>>>> Xenomai-help mailing list
>>>>> Xenomai-help@domain.hid
>>>>> https://mail.gna.org/listinfo/xenomai-help
>>>> _______________________________________________
>>>> Xenomai-help mailing list
>>>> Xenomai-help@domain.hid
>>>> https://mail.gna.org/listinfo/xenomai-help
>>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-05-28 13:57 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-05 18:25 [Xenomai-help] Debian package building fails with 2.5-rc1 Stefan Kisdaroczi
2009-05-28 9:10 ` Stefan Kisdaroczi
2009-05-28 12:28 ` Philippe Gerum
2009-05-28 13:22 ` Stefan Kisdaroczi
2009-05-28 13:40 ` Philippe Gerum
2009-05-28 13:57 ` Stefan Kisdaroczi
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.