Update plugin author/maintainer data

This commit is contained in:
James Lu 2019-11-16 12:26:32 -08:00
parent 22146bcb08
commit cbd953b32c
21 changed files with 53 additions and 65 deletions

View File

@ -40,8 +40,8 @@ from supybot import world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.authors.unknown supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -39,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -39,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -38,6 +38,8 @@ import supybot.world as world
__version__ = "" __version__ = ""
__author__ = supybot.Author('Moritz Lipp', 'mlq', 'mail@mlq.me') __author__ = supybot.Author('Moritz Lipp', 'mlq', 'mail@mlq.me')
__maintainer__ = getattr(supybot.authors, 'jlu',
supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
__contributors__ = {} __contributors__ = {}

View File

@ -43,6 +43,9 @@ __version__ = "2019.07.09+git"
# Replace this with an appropriate author or supybot.Author instance. # Replace this with an appropriate author or supybot.Author instance.
__author__ = supybot.Author("Kevin Funk", "KRF", "krf@electrostorm.net") __author__ = supybot.Author("Kevin Funk", "KRF", "krf@electrostorm.net")
__maintainer__ = getattr(supybot.authors, 'jlu',
supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.
__contributors__ = { __contributors__ = {

View File

@ -39,8 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) NoTrigger: mangle the bot's text to prevent triggering other bots
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -44,8 +44,8 @@ from supybot import world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
__author__ = supybot.Author('James Lu', 'GLolol', __author__ = getattr(supybot.authors, 'jlu',
'james@overdrivenetworks.com') supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -1,5 +1,5 @@
### ###
# Copyright (c) 2014, James Lu (GLolol) # Copyright (c) 2014, James Lu <james@overdrivenetworks.com>
# All rights reserved. # All rights reserved.
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) Allows the bot to oper up on connect.
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) Fetch package repository data for various *nix distributions.
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -28,7 +28,8 @@ from supybot import world
# Use this for the version of this plugin. # Use this for the version of this plugin.
__version__ = "" __version__ = ""
__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') __author__ = getattr(supybot.authors, 'jlu',
supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -39,8 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.authors.unknown supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -39,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -36,7 +36,8 @@ import supybot
import supybot.world as world import supybot.world as world
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') __author__ = getattr(supybot.authors, 'jlu',
supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
__contributors__ = {} __contributors__ = {}
__url__ = 'https://github.com/jlu5/SupyPlugins/' __url__ = 'https://github.com/jlu5/SupyPlugins/'

View File

@ -35,12 +35,10 @@ RhymeZone: Fetches rhymes from http://rhymezone.com/.
import supybot import supybot
import supybot.world as world import supybot.world as world
# Use this for the version of this plugin. You may wish to put a CVS keyword
# in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -43,6 +43,9 @@ __contributors__ = {supybot.Author("James Lu", "GLolol", "glolol@overdrivenetwor
supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'): supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'):
["_unpack_sed method within plugin.py"] ["_unpack_sed method within plugin.py"]
} }
__maintainer__ = getattr(supybot.authors, 'jlu',
supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
__url__ = 'https://github.com/jlu5/SupyPlugins' __url__ = 'https://github.com/jlu5/SupyPlugins'
from . import config from . import config

View File

@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) SupyMisc: assorted commands that don't seem to fit anywhere else
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) SysDNS: perform DNS lookups using the 'host' command on the host machine
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) Translate text through multiple rounds of Google Translate for amusing results.
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -29,8 +29,7 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) A simple plugin to track polls.
here. This should describe *what* the plugin does.
""" """
import supybot import supybot
@ -40,9 +39,8 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = getattr(supybot.authors, 'jlu',
__author__ = supybot.Author('James Lu', 'GLolol', supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
'james@overdrivenetworks.com')
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.

View File

@ -40,20 +40,17 @@ import supybot.world as world
# in here if you're keeping the plugin in CVS or some similar system. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "2019.07.09+git" __version__ = "2019.07.09+git"
# XXX Replace this with an appropriate author or supybot.Author instance.
__author__ = supybot.Author('quantumlemur', 'quantumlemur', __author__ = supybot.Author('quantumlemur', 'quantumlemur',
'quantumlemur@users.sourceforge.net') 'quantumlemur@users.sourceforge.net')
__maintainer__ = getattr(supybot.authors, 'jlu',
supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com'))
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.
if not hasattr(supybot.authors, 'progval'):
supybot.authors.progval = supybot.Author('Valentin Lorentz', 'ProgVal',
'progval@gmail.com')
__contributors__ = {supybot.authors.progval: ['enhance configurability', __contributors__ = {supybot.authors.progval: ['enhance configurability',
'many bug fixes', 'many bug fixes',
'internationalization'], 'internationalization'],
supybot.Author('James Lu', 'GLolol', 'glolol@overdrivenetworks.com'): __maintainer__: ['formatting updates',
['formatting updates',
'multiple wiki support']} 'multiple wiki support']}
__url__ = 'https://github.com/jlu5/SupyPlugins' __url__ = 'https://github.com/jlu5/SupyPlugins'