* [devel] I: little gear bug
@ 2006-05-11 7:49 Stanislav Ievlev
2006-05-11 9:05 ` Anton Farygin
2006-05-11 12:24 ` Dmitry V. Levin
0 siblings, 2 replies; 10+ messages in thread
From: Stanislav Ievlev @ 2006-05-11 7:49 UTC (permalink / raw)
To: devel
Если забыть сделать перенос строки в конце файла, то gear молча теряет
последнюю строку в этом самом файле (.gear-rules).
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 7:49 [devel] I: little gear bug Stanislav Ievlev
@ 2006-05-11 9:05 ` Anton Farygin
2006-05-11 9:27 ` Alexey I. Froloff
2006-05-11 12:24 ` Dmitry V. Levin
1 sibling, 1 reply; 10+ messages in thread
From: Anton Farygin @ 2006-05-11 9:05 UTC (permalink / raw)
To: ALT Devel discussion list
Stanislav Ievlev wrote:
> Если забыть сделать перенос строки в конце файла, то gear молча теряет
> последнюю строку в этом самом файле (.gear-rules).
есть такое. Сам нарывался.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 9:05 ` Anton Farygin
@ 2006-05-11 9:27 ` Alexey I. Froloff
2006-05-11 9:30 ` Anton Farygin
0 siblings, 1 reply; 10+ messages in thread
From: Alexey I. Froloff @ 2006-05-11 9:27 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
* Anton Farygin <rider@> [060511 13:05]:
> > Если забыть сделать перенос строки в конце файла, то gear молча теряет
> > последнюю строку в этом самом файле (.gear-rules).
> есть такое. Сам нарывался.
Не пользуйтесь mcedit ;-)
--
Regards, Alexey I. Froloff
AIF5-RIPN, AIF5-RIPE
-------------------------------------------
Inform-Mobil, Ltd. System Administrator
http://www.inform-mobil.ru/
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 9:27 ` Alexey I. Froloff
@ 2006-05-11 9:30 ` Anton Farygin
0 siblings, 0 replies; 10+ messages in thread
From: Anton Farygin @ 2006-05-11 9:30 UTC (permalink / raw)
To: ALT Devel discussion list
Alexey I. Froloff wrote:
> * Anton Farygin <rider@> [060511 13:05]:
>>> Если забыть сделать перенос строки в конце файла, то gear молча теряет
>>> последнюю строку в этом самом файле (.gear-rules).
>> есть такое. Сам нарывался.
> Не пользуйтесь mcedit ;-)
Чем привык.. хотя я много чем привык.. что под рукой было ;)
Rgds,
Rider
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 7:49 [devel] I: little gear bug Stanislav Ievlev
2006-05-11 9:05 ` Anton Farygin
@ 2006-05-11 12:24 ` Dmitry V. Levin
2006-05-11 12:56 ` Stanislav Ievlev
1 sibling, 1 reply; 10+ messages in thread
From: Dmitry V. Levin @ 2006-05-11 12:24 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 320 bytes --]
On Thu, May 11, 2006 at 11:49:24AM +0400, Stanislav Ievlev wrote:
> Если забыть сделать перенос строки в конце файла, то gear молча теряет
> последнюю строку в этом самом файле (.gear-rules).
$ echo foo |while read -r; do echo $REPLY; done
foo
$ echo -n foo |while read -r; do echo $REPLY; done
$
--
ldv
[-- Attachment #2: Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 12:24 ` Dmitry V. Levin
@ 2006-05-11 12:56 ` Stanislav Ievlev
2006-05-11 13:02 ` Anton Farygin
0 siblings, 1 reply; 10+ messages in thread
From: Stanislav Ievlev @ 2006-05-11 12:56 UTC (permalink / raw)
To: ALT Devel discussion list
On Thu, May 11, 2006 at 04:24:31PM +0400, Dmitry V. Levin wrote:
> On Thu, May 11, 2006 at 11:49:24AM +0400, Stanislav Ievlev wrote:
> > Если забыть сделать перенос строки в конце файла, то gear молча теряет
> > последнюю строку в этом самом файле (.gear-rules).
>
> $ echo foo |while read -r; do echo $REPLY; done
> foo
> $ echo -n foo |while read -r; do echo $REPLY; done
> $
ну и?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 12:56 ` Stanislav Ievlev
@ 2006-05-11 13:02 ` Anton Farygin
2006-05-11 18:55 ` Dmitry V. Levin
0 siblings, 1 reply; 10+ messages in thread
From: Anton Farygin @ 2006-05-11 13:02 UTC (permalink / raw)
To: ALT Devel discussion list
Stanislav Ievlev wrote:
> On Thu, May 11, 2006 at 04:24:31PM +0400, Dmitry V. Levin wrote:
>> On Thu, May 11, 2006 at 11:49:24AM +0400, Stanislav Ievlev wrote:
>>> Если забыть сделать перенос строки в конце файла, то gear молча теряет
>>> последнюю строку в этом самом файле (.gear-rules).
>> $ echo foo |while read -r; do echo $REPLY; done
>> foo
>> $ echo -n foo |while read -r; do echo $REPLY; done
>> $
> ну и?
Дима хочет сказать, что read -r работает так, что не считывает строку,
которая не оканчивается переводом строки.
Rgds,
Rider
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 13:02 ` Anton Farygin
@ 2006-05-11 18:55 ` Dmitry V. Levin
2006-05-11 19:13 ` Alexey I. Froloff
0 siblings, 1 reply; 10+ messages in thread
From: Dmitry V. Levin @ 2006-05-11 18:55 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 790 bytes --]
On Thu, May 11, 2006 at 05:02:51PM +0400, Anton Farygin wrote:
> Stanislav Ievlev wrote:
> > On Thu, May 11, 2006 at 04:24:31PM +0400, Dmitry V. Levin wrote:
> >> On Thu, May 11, 2006 at 11:49:24AM +0400, Stanislav Ievlev wrote:
> >>> Если забыть сделать перенос строки в конце файла, то gear молча теряет
> >>> последнюю строку в этом самом файле (.gear-rules).
> >> $ echo foo |while read -r; do echo $REPLY; done
> >> foo
> >> $ echo -n foo |while read -r; do echo $REPLY; done
> >> $
> > ну и?
>
> Дима хочет сказать, что read -r работает так, что не считывает строку,
> которая не оканчивается переводом строки.
Это я к тому, что многие утилиты используют read, поэтому не стоит
забывать добавить newline в последней строке.
Исправлено в 7ac5a0f6.
--
ldv
[-- Attachment #2: Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 18:55 ` Dmitry V. Levin
@ 2006-05-11 19:13 ` Alexey I. Froloff
2006-05-11 20:23 ` Dmitry V. Levin
0 siblings, 1 reply; 10+ messages in thread
From: Alexey I. Froloff @ 2006-05-11 19:13 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 321 bytes --]
* Dmitry V. Levin <ldv@> [060511 23:05]:
> Это я к тому, что многие утилиты используют read, поэтому не стоит
> забывать добавить newline в последней строке.
> Исправлено в 7ac5a0f6.
Er... А разве в $workdir/blobs надо пустую строку добавлять? Не
в $workdir/rules (после cat_blob)?
--
Regards,
Sir Raorn.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [devel] I: little gear bug
2006-05-11 19:13 ` Alexey I. Froloff
@ 2006-05-11 20:23 ` Dmitry V. Levin
0 siblings, 0 replies; 10+ messages in thread
From: Dmitry V. Levin @ 2006-05-11 20:23 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 446 bytes --]
On Thu, May 11, 2006 at 11:13:32PM +0400, Alexey I. Froloff wrote:
> * Dmitry V. Levin <ldv@> [060511 23:05]:
> > Это я к тому, что многие утилиты используют read, поэтому не стоит
> > забывать добавить newline в последней строке.
>
> > Исправлено в 7ac5a0f6.
> Er... А разве в $workdir/blobs надо пустую строку добавлять? Не
> в $workdir/rules (после cat_blob)?
Конечно, в $workdir/rules, хотя и в blobs не помешает.
--
ldv
[-- Attachment #2: Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2006-05-11 20:23 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-11 7:49 [devel] I: little gear bug Stanislav Ievlev
2006-05-11 9:05 ` Anton Farygin
2006-05-11 9:27 ` Alexey I. Froloff
2006-05-11 9:30 ` Anton Farygin
2006-05-11 12:24 ` Dmitry V. Levin
2006-05-11 12:56 ` Stanislav Ievlev
2006-05-11 13:02 ` Anton Farygin
2006-05-11 18:55 ` Dmitry V. Levin
2006-05-11 19:13 ` Alexey I. Froloff
2006-05-11 20:23 ` Dmitry V. Levin
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git