summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* net-irc/pisg: port to EAPI 7Sam James2021-04-031-10/+7
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/ninja: port to EAPI 7Sam James2021-04-031-6/+17
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/eggdrop: drop 1.8.3, 1.8.4Louis Sautier2021-04-033-152/+0
| | | | Signed-off-by: Louis Sautier <sbraz@gentoo.org>
* net-irc/eggdrop: add 1.9.0, fixes build with USE=staticLouis Sautier2021-04-032-0/+73
| | | | | Closes: https://bugs.gentoo.org/774333 Signed-off-by: Louis Sautier <sbraz@gentoo.org>
* net-irc/limnoria: bump to 20210326Sam Jorna2021-03-292-0/+79
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Sam Jorna <wraeth@gentoo.org>
* net-irc/limnoria: add self to metadataSam Jorna2021-03-291-0/+4
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Sam Jorna <wraeth@gentoo.org>
* net-irc/ircii: drop oldBen Kohler2021-03-282-37/+0
| | | | | | Bug: https://bugs.gentoo.org/776772 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
* net-irc/ircii: Stabilize 20210314 amd64, #776772Sam James2021-03-281-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/ircii: Stabilize 20210314 x86, #776772Sam James2021-03-281-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/irccloud-desktop-bin: bump to 0.16Jason A. Donenfeld2021-03-272-2/+2
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Jason A. Donenfeld <zx2c4@gentoo.org>
* net-irc/hexchat: drop old versionConrad Kostecki2021-03-261-132/+0
| | | | | | | Drop old version, which does not support slotted lua. Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* */*: normalise np-hardass@ emailSam James2021-03-251-2/+2
| | | | | | | The old form confused tools like bug-assign-user-js and is more consistent with the rest of the tree. Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/ngircd: style + BDEPENDSam James2021-03-231-12/+11
| | | | | | | * Style changes (sam-style semicolons) * expect and telnet are used during testing as binaries Signed-off-by: Sam James <sam@gentoo.org>
* */*: replace <description>Proxy...</description with proxied=""Michał Górny2021-03-161-2/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Add proxied="yes" for non-@gentoo.org peopleMichał Górny2021-03-164-4/+4
| | | | | | | | | | | | Done via: find -name metadata.xml -exec xml ed -P -L \ -a '/pkgmetadata/maintainer[substring(email, string-length(email) - string-length("@gentoo.org") + 1) != "@gentoo.org"]' \ -t attr -n proxied -v yes {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Add 'proxied="proxy"' for proxy-maint projectMichał Górny2021-03-163-3/+3
| | | | | | | | | | Done via: find -name metadata.xml -exec xml ed -P -L \ -a '//maintainer[email="proxy-maint@gentoo.org"]' \ -t attr -n proxied -v proxy {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Normalize metadata.xml filesMichał Górny2021-03-166-6/+4
| | | | | | | | | | | Normalize quoting, replace '>' with entities, replace unnecessary entities, remove trailing empty lines. Done via: find -name metadata.xml -exec xml ed -P -L -d //none {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* net-irc/ircii: remove outdated blockerBen Kohler2021-03-161-3/+1
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
* net-irc/ircii: bump to 20210314Ben Kohler2021-03-162-0/+38
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
* net-irc/telepathy-idle: Version bump to 0.2.2Matt Turner2021-03-132-0/+29
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* net-irc/irker: fix copyright header in files/irkerd.initdSam James2021-03-111-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/irker: remove bashisms from init scriptKerin Millar2021-03-112-19/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Quote the ${parameter:=word} expansions (SC2223), while removing two that are spurious. Remove the -z test which does absolutely nothing. It can never be true, because IRKERD_USER will always contain something. As an aside, the "nobody" account is not intended for running services. If ever the test is re-instated, it should be carried out _before_ checkpath is invoked, for reasons that should be obvious. Remove the use of the [[ keyword in favour of the POSIX test command (SC3010). Employ a vastly improved method of conveying the user-specified options. Obviously, POSIX sh doesn't support arrays so we must still perform word-splitting upon IRKERD_OPTS. However, potential pathname expansion can still be suppressed with set -f, so let's do that. Next, proceed to assemble a list of positional parameters using the set builtin. This completely eliminates the possibility for word-splitting and pathname expansion to be performed upon the other IRKERD_* variables, instead conveying them verbatim. Note that the start function is altered to define a ( ... ) compound command, so that the effects of set -f do not persist beyond the intended scope of the function. Closes: https://bugs.gentoo.org/760869 Signed-off-by: Kerin Millar <kfm@plushkava.net> Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/psybnc: modernise, fix invalid EROOT in src_*Sam James2021-03-101-12/+20
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/weechat: drop oldGeorgy Yakovlev2021-03-093-314/+0
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
* net-irc/weechat: bump to 3.1Georgy Yakovlev2021-03-092-0/+171
| | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
* net-irc/atheme-services: Drop 7.2.10_p2-r2Wade Cline2021-03-093-107/+0
| | | | | | | Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Wade Cline <wadecline@hotmail.com> Closes: https://github.com/gentoo/gentoo/pull/19824 Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/atheme-services: Add 7.2.11Wade Cline2021-03-092-0/+91
| | | | | | Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Wade Cline <wadecline@hotmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/rbot: add ruby26, ruby27; drop shorturl USE flagHans de Graaff2021-03-092-14/+7
| | | | | Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
* net-irc/inspircd: Add 3.9.0Wade Cline2021-03-063-0/+506
| | | | | | | Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Wade Cline <wadecline@hotmail.com> Closes: https://github.com/gentoo/gentoo/pull/19767 Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/eggdrop: Keyword 1.8.4-r1 arm64, #772227Sam James2021-03-051-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/konversation: drop 20.12.2*Andreas Sturmlechner2021-03-042-74/+0
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* net-irc/konversation: 20.12.3 version bumpAndreas Sturmlechner2021-03-042-0/+74
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* net-irc/oragono: restrict tests (not available)Sam James2021-03-041-0/+4
| | | | | | | | | Tests aren't available per se, although we may be able to use the external shared test suite with some effort in future. Closes: https://bugs.gentoo.org/774150 Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/oragono: minor style change (block structure)Sam James2021-03-041-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/oragono: initial importSam James2021-03-045-0/+90
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/iroffer-dinoex: Stabilize 3.31 amd64, #773163Sam James2021-02-271-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/limnoria: Update licenseJakov Smolic2021-02-262-2/+2
| | | | | | | Bug: https://bugs.gentoo.org/716740 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Closes: https://github.com/gentoo/gentoo/pull/19677 Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/eggdrop: amd64 stable wrt bug #772212Agostino Sarubbo2021-02-261-1/+1
| | | | | | Package-Manager: Portage-3.0.13, Repoman-3.0.2 RepoMan-Options: --include-arches="amd64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* net-irc/limnoria: Mark ALLARCHESJakov Smolic2021-02-261-0/+1
| | | | | Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/limnoria: Remove oldJakov Smolic2021-02-262-86/+0
| | | | | Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/limnoria: Sync live ebuild (not so many 9's)Jakov Smolic2021-02-261-29/+22
| | | | | Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/limnoria: Bump to 20200124Jakov Smolic2021-02-262-0/+79
| | | | | | | | | Closes: https://bugs.gentoo.org/762214 Closes: https://bugs.gentoo.org/728010 Closes: https://bugs.gentoo.org/751856 Bug: https://bugs.gentoo.org/716740 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/eggdrop: x86 stable wrt bug #772212Agostino Sarubbo2021-02-251-1/+1
| | | | | | Package-Manager: Portage-3.0.13, Repoman-3.0.2 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* net-irc/eggdrop: Stabilize 1.8.4-r1 sparc, #772212Sam James2021-02-251-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/eggdrop: Stabilize 1.8.4-r1 ppc, #772212Sam James2021-02-241-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/emech: retire maintainerJoonas Niilola2021-02-211-8/+1
| | | | | Closes: https://bugs.gentoo.org/652160 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* profiles/use.desc: add global man flagAisha Tammy2021-02-201-1/+0
| | | | | | Signed-off-by: Aisha Tammy <gentoo@aisha.cc> Closes: https://github.com/gentoo/gentoo/pull/19455 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* net-irc/ngircd: cleanup oldSam James2021-02-142-107/+0
| | | | | Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/ngircd: Stabilize 26.1 arm64, #768144Sam James2021-02-131-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/konversation: drop 20.12.1*Andreas Sturmlechner2021-02-042-74/+0
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>