* [devel] qa-robot::bugs (was: [cyber] I: Sisyphus-20080215 bugs: +6 -2 (2181))
@ 2008-02-17 22:24 ` Michael Shigorin
2008-02-17 22:27 ` [devel] qa-robot::bugs Mikhail Gusarov
2008-02-17 22:40 ` Dmitry V. Levin
0 siblings, 2 replies; 7+ messages in thread
From: Michael Shigorin @ 2008-02-17 22:24 UTC (permalink / raw)
To: devel
[-- Attachment #1: Type: text/plain, Size: 622 bytes --]
On Fri, Feb 15, 2008 at 04:44:10AM +0300, QA Team Robot wrote:
...и с тех пор замолчал.
Кажется, bugs(1) нуждается в патчике вида
--- altbug.orig 2005-06-22 18:11:10 +0300
+++ altbug 2008-02-18 00:22:22 +0200
@@ -26,7 +26,7 @@
my $bz = WWW::Bugzilla->new(
server => 'bugzilla.altlinux.org',
- product => 'ALT Linux Sisyphus',
+ product => 'Sisyphus',
use_ssl => 1,
email => $email,
password => $password)
багу вешать?
--
---- WBR, Michael Shigorin <mike@altlinux.ru>
------ Linux.Kiev http://www.linux.kiev.ua/
[-- Attachment #2: altbug --]
[-- Type: text/plain, Size: 870 bytes --]
#!/usr/bin/perl
use strict;
use WWW::Bugzilla;
# ~/.altbug.pl:
# $email='my_name@altlinux.org';
# $password='my_password';
our ($email, $password);
do <~/.altbug.pl>; chmod 0600, <~/.altbug.pl*>;
die "no email?" unless $email =~ /@/;
die "no password?" unless $password =~ /\S/;
use Getopt::Long qw(GetOptions);
GetOptions
'pkg|package=s' => \my $pkg,
'subj|subject|summary=s' => \my $subj
or exit(1);
my $descr = join "" => <>;
die "no package?" unless $pkg =~ /\S/;
die "no summary?" unless $subj =~ /\S/;
die "no description?" unless $descr =~ /\S/;
my $bz = WWW::Bugzilla->new(
server => 'bugzilla.altlinux.org',
product => 'Sisyphus',
use_ssl => 1,
email => $email,
password => $password)
or die "Connection failed";
$bz->component($pkg);
$bz->summary($subj);
$bz->description($descr);
my $id = $bz->commit;
print "committed #$id: $subj\n";
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [devel] qa-robot::bugs
2008-02-17 22:24 ` [devel] qa-robot::bugs (was: [cyber] I: Sisyphus-20080215 bugs: +6 -2 (2181)) Michael Shigorin
@ 2008-02-17 22:27 ` Mikhail Gusarov
2008-02-17 22:38 ` Dmitry V. Levin
2008-02-18 7:03 ` Andrey Rahmatullin
2008-02-17 22:40 ` Dmitry V. Levin
1 sibling, 2 replies; 7+ messages in thread
From: Mikhail Gusarov @ 2008-02-17 22:27 UTC (permalink / raw)
To: devel
[-- Attachment #1: Type: text/plain, Size: 345 bytes --]
Twas brillig at 00:24:21 18.02.2008 UTC+02 when Michael Shigorin did gyre and gimble:
MS> ...и с тех пор замолчал.
Whoops. Переименую пока обратно. Что ещё можеть быть завязано на
название продуктов?
2at: сорри, не предупредил.
--
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [devel] qa-robot::bugs
2008-02-17 22:27 ` [devel] qa-robot::bugs Mikhail Gusarov
@ 2008-02-17 22:38 ` Dmitry V. Levin
2008-02-18 7:03 ` Andrey Rahmatullin
1 sibling, 0 replies; 7+ messages in thread
From: Dmitry V. Levin @ 2008-02-17 22:38 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 413 bytes --]
On Mon, Feb 18, 2008 at 04:27:44AM +0600, Mikhail Gusarov wrote:
> Twas brillig at 00:24:21 18.02.2008 UTC+02 when Michael Shigorin did gyre and gimble:
>
> MS> ...и с тех пор замолчал.
>
> Whoops. Переименую пока обратно. Что ещё можеть быть завязано на
> название продуктов?
>
> 2at: сорри, не предупредил.
Если будешь менять, пиши сюда. Этим роботом сейчас управляет incominger.
--
ldv
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [devel] qa-robot::bugs
2008-02-17 22:24 ` [devel] qa-robot::bugs (was: [cyber] I: Sisyphus-20080215 bugs: +6 -2 (2181)) Michael Shigorin
2008-02-17 22:27 ` [devel] qa-robot::bugs Mikhail Gusarov
@ 2008-02-17 22:40 ` Dmitry V. Levin
2008-02-17 22:43 ` Mikhail Gusarov
1 sibling, 1 reply; 7+ messages in thread
From: Dmitry V. Levin @ 2008-02-17 22:40 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 830 bytes --]
On Mon, Feb 18, 2008 at 12:24:21AM +0200, Michael Shigorin wrote:
> On Fri, Feb 15, 2008 at 04:44:10AM +0300, QA Team Robot wrote:
>
> ...и с тех пор замолчал.
Он не замолчал, он стал жаловаться Создателю.
> Кажется, bugs(1) нуждается в патчике вида
>
> --- altbug.orig 2005-06-22 18:11:10 +0300
> +++ altbug 2008-02-18 00:22:22 +0200
> @@ -26,7 +26,7 @@
>
> my $bz = WWW::Bugzilla->new(
> server => 'bugzilla.altlinux.org',
> - product => 'ALT Linux Sisyphus',
> + product => 'Sisyphus',
> use_ssl => 1,
> email => $email,
> password => $password)
>
> багу вешать?
Багу вешать уже поздно. Теперь нужно понять, какое будет имя.
Поменять не сложно, если не делать это несколько раз.
--
ldv
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [devel] qa-robot::bugs
2008-02-17 22:40 ` Dmitry V. Levin
@ 2008-02-17 22:43 ` Mikhail Gusarov
0 siblings, 0 replies; 7+ messages in thread
From: Mikhail Gusarov @ 2008-02-17 22:43 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 485 bytes --]
Twas brillig at 01:40:28 18.02.2008 UTC+03 when Dmitry V. Levin did gyre and gimble:
DVL> Багу вешать уже поздно. Теперь нужно понять, какое будет имя.
DVL> Поменять не сложно, если не делать это несколько раз.
Если просто "Sisyphus" (с тем description, что там сейчас) всех
устраивает - то пусть так и именуется.
--
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [devel] qa-robot::bugs
2008-02-17 22:27 ` [devel] qa-robot::bugs Mikhail Gusarov
2008-02-17 22:38 ` Dmitry V. Levin
@ 2008-02-18 7:03 ` Andrey Rahmatullin
2008-02-18 7:11 ` Mikhail Gusarov
1 sibling, 1 reply; 7+ messages in thread
From: Andrey Rahmatullin @ 2008-02-18 7:03 UTC (permalink / raw)
To: devel
[-- Attachment #1: Type: text/plain, Size: 649 bytes --]
On Mon, Feb 18, 2008 at 04:27:44AM +0600, Mikhail Gusarov wrote:
> Whoops. Переименую пока обратно. Что ещё можеть быть завязано на
> название продуктов?
Сохранённые урлы запросов. У меня в оперу вшит поиск по пакету, например.
Плюс в самой багзилле же можно сохранять запросы, они тоже могли
сломаться.
--
WBR, wRAR (ALT Linux Team)
Powered by the ALT Linux fortune(8):
> ./.libs/libldap_r.so: undefined reference to `pthread_create'
ld жалуется на то, что libldap_r.so нуждается в символах из
libpthread, но не слинкован с -lpthread. Пожалуйста, линкуйте
публичные библиотеки со всем, в чём они нуждаются.
-- ldv in devel@
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [devel] qa-robot::bugs
2008-02-18 7:03 ` Andrey Rahmatullin
@ 2008-02-18 7:11 ` Mikhail Gusarov
0 siblings, 0 replies; 7+ messages in thread
From: Mikhail Gusarov @ 2008-02-18 7:11 UTC (permalink / raw)
To: ALT Linux Team development discussions
[-- Attachment #1: Type: text/plain, Size: 935 bytes --]
Twas brillig at 12:03:05 18.02.2008 UTC+05 when Andrey Rahmatullin did gyre and gimble:
>> Whoops. Переименую пока обратно. Что ещё можеть быть завязано на
>> название продуктов?
AR> Сохранённые урлы запросов. У меня в оперу вшит поиск по пакету,
AR> например.
Хммм. Ок, вхреначу тогда при переезде какой-нибудь (документированный!)
хак для сохранения обратной совместимости.
AR> Плюс в самой багзилле же можно сохранять запросы, они тоже могли
AR> сломаться.
Да, и правда, там тоже query as is сохраняется. Их - исправлю. Ещё и
bugs_activity придётся поправить.
--
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-02-18 7:11 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-17 22:24 ` [devel] qa-robot::bugs (was: [cyber] I: Sisyphus-20080215 bugs: +6 -2 (2181)) Michael Shigorin
2008-02-17 22:27 ` [devel] qa-robot::bugs Mikhail Gusarov
2008-02-17 22:38 ` Dmitry V. Levin
2008-02-18 7:03 ` Andrey Rahmatullin
2008-02-18 7:11 ` Mikhail Gusarov
2008-02-17 22:40 ` Dmitry V. Levin
2008-02-17 22:43 ` Mikhail Gusarov
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