X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=sid%2Farchive.py;h=6875f1bad430717e1adbadc23630e12eb90bfaf7;hb=95c99b21c39e37d0f3ca2715642b28af990c379a;hp=b8cbfa408b22fa215f5055baf292d584671fd8e0;hpb=912b046c8bdf24a2e8a477269256ad99593f0728;p=sid.git diff --git a/sid/archive.py b/sid/archive.py index b8cbfa4..6875f1b 100644 --- a/sid/archive.py +++ b/sid/archive.py @@ -1,19 +1,6 @@ # -*- coding: utf-8 -*- - -# Copyright (C) 2020 kaliko - -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, version 3 only. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - +# SPDX-FileCopyrightText: 2020 kaliko +# SPDX-License-Identifier: GPL-3.0-or-later from re import compile as re_compile @@ -22,9 +9,11 @@ from .lib import get_pkg class Archive(Plugin): - """Fetch package info from the archive + """Fetches package info from the archive """ + #: Current stable Suite stable_codename = 'buster' + #: Pakage name regexp re_pkg = re_compile(r'(?P[0-9a-z.+-]+)$') def __init__(self, bot): @@ -32,10 +21,9 @@ class Archive(Plugin): @botcmd def archive(self, rcv, args): - """Fetch pkg versions info from the archive: + """Fetches package info from the archive - !archive pkg-name : Returns package versions (by suite) - """ + ``!archive pkg-name`` : Returns package versions (by suite)""" if not args: return if len(args) > 1: