From: Alexey Tourbin <at@altlinux.ru>
To: ALT Devel discussion list <devel@altlinux.ru>
Subject: [devel] Re: RFC: perl deps versioning
Date: Fri, 3 Dec 2004 06:36:11 +0300
Message-ID: <20041203033611.GE3898@solemn.turbinal.org> (raw)
In-Reply-To: <20041202013349.GN7294@solemn.turbinal.org>
[-- Attachment #1: Type: text/plain, Size: 2299 bytes --]
On Thu, Dec 02, 2004 at 04:33:49AM +0300, Alexey Tourbin wrote:
> Тем более что зависимости 1: в общем-то harmful, т.к. Serial перекрывает
> любую версию. Так что здесь тоже возможны казусы. Однако же v-strings
> deprecated. Правда, будут какие-то version objects.
>
> Да, наверное три знака -- тоже неплохо (тогда для v-strings сохранится
> один знак после точки, если отказаться от 1: зависимостей).
Думаю остановиться на 3 цифрах и отказаться от Serial.
Т.е. сейчас выполняются следующие тесты:
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m 2;);
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m 2.0;);
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m 2.00;);
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m 2.000998;);
cmp_ok "$d >= 2.001", 'eq', grok qq(use $m 2.000999;);
cmp_ok "$d >= 2.010", 'eq', grok qq(use $m 2.01;);
cmp_ok "$d >= 2.012", 'eq', grok qq(use $m 2.012;);
cmp_ok "$d >= 2.019", 'eq', grok qq(use $m 2.0199;);
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m v2;);
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m v2.0;);
cmp_ok "$d >= 2.0", 'eq', grok qq(use $m v2.0.998;);
cmp_ok "$d >= 2.001", 'eq', grok qq(use $m v2.0.999;);
cmp_ok "$d >= 2.001", 'eq', grok qq(use $m 2.1.1;);
cmp_ok "$d >= 2.001", 'eq', grok qq(use $m v2.1.1;);
При этом для геренации версии отрабатывает следующий код:
sub version ($) {
my $sv = shift;
my $class = class($sv);
if ($class eq "IV" or $class eq "PVIV") {
return verf($sv->int_value);
}
if ($class eq "NV" or $class eq "PVNV") {
return verf($sv->NV);
}
if ($class eq "PVMG") {
my @v;
for (my $mg = $sv->MAGIC; $mg; $mg = $mg->MOREMAGIC) {
next if $mg->TYPE ne "V";
@v = $mg->PTR =~ /(\d+)/g;
last;
}
@v = map ord, split //, $sv->PV unless @v;
return verf($v[0] + $v[1] / 1000 + $v[2] / 1000 / 1000);
}
return undef;
}
sub verf($) {
my $v = shift;
$v = sprintf("%.3f", int($v * 1000 + 1e-3) / 1000 + 1e-6);
$v =~ s/\.000$/.0/g;
return $v;
}
Подробности: sprintf "%.3f" может округлить в верхнюю сторону, а это не
очень хорошо. Казалось бы, отрубить цифры после заданной -- нет
проблем, однако же возникает казус:
$ perl -le 'print 2.01 * 1000'
2010
$ perl -le 'print int(2.01 * 1000)'
2009
$
Поэтому в ход пошли 1e-3 и 1e-6.
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
next prev parent reply other threads:[~2004-12-03 3:36 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-01 19:33 [devel] " Alexey Tourbin
2004-12-01 23:15 ` [devel] " Michael Shigorin
2004-12-02 0:57 ` Alexey Tourbin
2004-12-01 23:49 ` [devel] " Mikhail Zabaluev
2004-12-02 1:33 ` [devel] " Alexey Tourbin
2004-12-02 1:54 ` Alexey Tourbin
2004-12-02 12:16 ` Dmitry V. Levin
2004-12-03 3:36 ` Alexey Tourbin [this message]
2004-12-02 15:29 ` Alexey Tourbin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20041203033611.GE3898@solemn.turbinal.org \
--to=at@altlinux.ru \
--cc=devel@altlinux.ru \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
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