ALT Linux Team development discussions
 help / color / mirror / Atom feed
From: Michael Shigorin <mike@osdn.org.ua>
To: ALT Linux Team development discussions <devel@lists.altlinux.org>
Subject: [devel] altbug
Date: Sat, 1 Nov 2008 21:50:55 +0200
Message-ID: <20081101195055.GN30261@osdn.org.ua> (raw)
In-Reply-To: <87skqgl0w5.fsf@frontier.dottedmag.net>

[-- Attachment #1: Type: text/plain, Size: 1327 bytes --]

On Wed, Oct 29, 2008 at 06:07:22AM +0600, Mikhail Gusarov wrote:
> > Я думаю, что важным аспектом здесь является не только личная
> > отвественность, но и наличие группы, которая хотя бы
> > потенциально способна разгребать весь поток проблем...

Именно.  Причём это называется QA.

> Группа зовётся ALT Linux Team и потенциальна способна
> разгребать весь поток проблем на Сизиф.

Практически -- нет.

> Группа зовётся релиз-менеджеры дистрибутивов и потенциально
> способна разгребать весь поток проблем на дистрибутивы.

Ещё более нет.

> Группа зовётся ALT Linux Team (минус несколько не желающих) и
> потенциально способна разгребать весь поток проблем на бранчи.
> Что с большим или меньшим успехом и делается.

Увы, у нас последние несколько лет наблюдается скорее DoS.

> Других вариантов быть не может: место хранение багов должно быть одно.

+1

> Проблема одна: ресурса для пользователей нет. sisyphus.ru - не
> пользовательский ресурс. Его необходимо перестраивать, прежде
> чем его можно будет использовать как packages.altlinux.org.
> Оффлайного клиента, аналогично, нет - никто не взялся
> портировать reportbug(1).

См. аттач (thx at@), но его бы действительно дооблагородить,
задокументировать и в дистрибутивы.

-- 
 ---- 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";

  reply	other threads:[~2008-11-01 19:50 UTC|newest]

Thread overview: 61+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-28 13:22 [devel] глупый вопрос Sergey Zhumatiy
2008-10-28 13:28 ` Andrey Rahmatullin
2008-10-28 16:00   ` Sergey Zhumatiy
2008-10-28 19:39     ` Andrey Rahmatullin
2008-10-29  7:58       ` Sergey Zhumatiy
2008-10-29  8:10         ` [devel] [JT] " Andrey Rahmatullin
2008-10-29 10:09           ` Sergey Zhumatiy
2008-10-29 11:11             ` Andrey Rahmatullin
2008-10-29 12:49               ` Sergey Zhumatiy
2008-10-29 13:24                 ` Andrey Rahmatullin
2008-10-30 10:08                   ` Sergey Zhumatiy
2008-11-01 19:56             ` [devel] [JT] проблемы Michael Shigorin
2008-10-28 13:44 ` [devel] глупый вопрос Anton Farygin
2008-10-28 16:14   ` Evgeny Sinelnikov
2008-10-28 16:42     ` Mikhail Gusarov
2008-10-28 17:05       ` Evgeny Sinelnikov
2008-10-28 17:55         ` Sergey V Turchin
2008-10-28 19:10         ` Alexey I. Froloff
2008-10-28 19:12           ` Mikhail Gusarov
2008-10-28 19:33             ` Led
2008-10-28 19:35               ` Mikhail Gusarov
2008-10-28 19:42                 ` Led
2008-10-28 19:44                   ` Mikhail Gusarov
2008-10-29  5:39         ` Anton Farygin
2008-10-29  8:13           ` Mikhail Gusarov
2008-10-29  9:08             ` Anton Farygin
2008-10-29  9:23               ` Dmitry V. Levin
2008-10-29  9:31                 ` Anton Farygin
2008-10-29  9:47               ` Dmitry Afanasov
2008-10-29  9:51                 ` Alexey I. Froloff
2008-10-29  9:53                   ` Dmitry Afanasov
2008-10-29  9:56                     ` Anton Farygin
2008-10-29 10:27                     ` Alexey I. Froloff
2008-10-29 10:07                   ` Sergey Zhumatiy
2008-10-30  6:19                 ` Mikhail Gusarov
2008-11-01 19:44                   ` [devel] p.a.o Michael Shigorin
2008-10-31 12:55       ` [devel] глупый вопрос Stanislav Ievlev
2008-10-31 12:57         ` Andrey Rahmatullin
2008-11-01  7:46           ` Stanislav Ievlev
2008-10-31 16:26         ` Mikhail Gusarov
2008-11-01  7:45           ` Stanislav Ievlev
2008-11-01 13:54             ` Mikhail Gusarov
2008-11-01 14:18               ` Stanislav Ievlev
2008-11-01 21:15                 ` Mikhail Gusarov
2008-11-03 10:09                   ` Michael Shigorin
2008-10-28 17:23     ` Mikhail Gusarov
2008-10-28 17:28       ` Mikhail Gusarov
2008-10-28 17:38       ` Dmitriy M. Maslennikov
2008-10-28 18:57         ` Dmitry Afanasov
2008-10-28 23:53       ` Evgeny Sinelnikov
2008-10-29  0:07         ` Mikhail Gusarov
2008-11-01 19:50           ` Michael Shigorin [this message]
2008-10-29 10:05       ` Sergey Zhumatiy
2008-11-01 19:54         ` Michael Shigorin
2008-11-02 17:30           ` Led
2008-11-02 18:37             ` Evgeny Sinelnikov
2008-11-02 19:38             ` Mikhail Gusarov
2008-11-02 20:06               ` Evgeny Sinelnikov
2008-11-02 22:08                 ` Mikhail Gusarov
2008-10-29 19:33 ` Michael Shigorin
2008-10-30 10:19   ` Sergey Zhumatiy

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=20081101195055.GN30261@osdn.org.ua \
    --to=mike@osdn.org.ua \
    --cc=devel@lists.altlinux.org \
    /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