From: Michael Shigorin <mike@osdn.org.ua>
To: ALT Linux Team development discussions <devel@lists.altlinux.org>
Subject: Re: [devel] ANN: закрытие багов через changelog пакетов
Date: Sat, 11 Apr 2009 16:18:44 +0300
Message-ID: <20090411131844.GH26100@osdn.org.ua> (raw)
In-Reply-To: <3b8491740904100935v583e73c0v9bc3a4bc88d8c841@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 580 bytes --]
On Fri, Apr 10, 2009 at 08:35:11PM +0400, Vladimir Lettiev wrote:
> может реализовать консольный вариант утилиты или прикрутить к
> git.alt какой-нибудь ssh git.alt bug #3404 close?
Ой, и так уже к ssh git.alt думаю, что бы прикрутить.
А ты точно не видел altbug.pl?
2 zerg: я вот тоже не представляю, как роботу догадываться.
Если руками ходить перевешивать -- то сразу и закрыть уж проще.
2 bga: ой нет, вот только писем по поводу и без повода не надо,
это добро я и сам умею.
--
---- 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";
next prev parent reply other threads:[~2009-04-11 13:18 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-09 22:38 [devel] [devel-announce] " Mikhail Gusarov
2009-04-10 9:25 ` Alexey Morsov
2009-04-10 10:38 ` Sergey V Turchin
2009-04-10 10:43 ` Mikhail Gusarov
2009-04-10 12:32 ` Sergey V Turchin
2009-04-10 12:34 ` Mikhail Gusarov
2009-04-10 13:11 ` Sergey V Turchin
2009-04-10 13:18 ` Mikhail Gusarov
2009-04-10 15:47 ` Sergey V Turchin
2009-04-10 15:49 ` Mikhail Gusarov
2009-04-10 16:03 ` Grigory Batalov
2009-04-10 16:09 ` Sergey V Turchin
2009-04-10 16:12 ` Mikhail Gusarov
2009-04-10 16:35 ` Sergey V Turchin
2009-04-10 16:35 ` Vladimir Lettiev
2009-04-10 16:43 ` Mikhail Gusarov
2009-04-10 21:23 ` Vladimir Lettiev
2009-04-11 7:42 ` Mikhail Gusarov
2009-04-11 13:18 ` Michael Shigorin [this message]
2009-04-11 13:29 ` [devel] " Dmitry V. Levin
2009-04-11 13:41 ` Michael Shigorin
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=20090411131844.GH26100@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