commit: 0b357784234a96572f391dd8d45181448ea937b0
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 7 21:41:10 2026 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Feb 7 23:22:54 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b357784
dev-db/mysqltuner: add 2.8.35
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-db/mysqltuner/Manifest | 1 +
dev-db/mysqltuner/metadata.xml | 1 +
dev-db/mysqltuner/mysqltuner-2.8.35.ebuild | 33 ++++++++++++++++++++++++++++++
3 files changed, 35 insertions(+)
diff --git a/dev-db/mysqltuner/Manifest b/dev-db/mysqltuner/Manifest
index 3a5d713e3cf8..cf834989fc35 100644
--- a/dev-db/mysqltuner/Manifest
+++ b/dev-db/mysqltuner/Manifest
@@ -1,2 +1,3 @@
DIST mysqltuner-2.6.0.tar.gz 5137050 BLAKE2B
37f94b71fc8523ab36ed7a6f39a73f1f831bd551d4935ad87b3d20a9894f86551dcf600e806947e62e3cce154658212e39349ed4a83aaec76ad06e3367d6d6d8
SHA512
0ba8b5a8fd952b961d8b8a13f9339925d106abc27d5f9f32c892c268bfbf3742ed6a516b10ef3a64d123c78d0ce6e37a708911487375d06fa7fe91acfe833e0b
DIST mysqltuner-2.7.0.tar.gz 5137793 BLAKE2B
fa35617f8382e1f7d3ff2c2908a22626011c13f4945a6c671b61c790553106c8036aa8a1babfade6b42846212084b6055b52fcf63d0cd442a3db5ccebd8daa55
SHA512
f4492522ffc455cbfe3ac50413db71ded34744da741680f700c336865d027e8b52b2dbb01ec57825dddce0c404a07d7a9ff06ff720450d4f651892136694ca8c
+DIST mysqltuner-2.8.35.tar.gz 624939 BLAKE2B
1bf4020637658169b84c9561d995d092832740577794c9115c2cce2a8ea0763e39c9f120921785610a99dd742098743b09a014226d10f7d2221cfcd0eb4bae07
SHA512
abd7a813a9b90db3cbc65a6d364200cf0eedfd4f02a94a112f2de800d3fb2c1f81f08564c6962ebefcfe99a940aca2a4f4e314af4ab70a89190b730698b46707
diff --git a/dev-db/mysqltuner/metadata.xml b/dev-db/mysqltuner/metadata.xml
index 070d028f5266..0c68fc5e5fcc 100644
--- a/dev-db/mysqltuner/metadata.xml
+++ b/dev-db/mysqltuner/metadata.xml
@@ -12,6 +12,7 @@
</longdescription>
<upstream>
<bugs-to>https://github.com/major/MySQLTuner-perl/issues</bugs-to>
+ <remote-id type="github">jmrenouard/MySQLTuner-perl</remote-id>
<remote-id type="github">major/MySQLTuner-perl</remote-id>
</upstream>
</pkgmetadata>
diff --git a/dev-db/mysqltuner/mysqltuner-2.8.35.ebuild
b/dev-db/mysqltuner/mysqltuner-2.8.35.ebuild
new file mode 100644
index 000000000000..a339fc3f8f21
--- /dev/null
+++ b/dev-db/mysqltuner/mysqltuner-2.8.35.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="MySQLTuner-perl"
+
+DESCRIPTION="Makes recommendations for increased performance and stability for
MySQL"
+HOMEPAGE="https://github.com/major/MySQLTuner-perl"
+SRC_URI="https://github.com/jmrenouard/${MY_PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-lang/perl
+"
+
+src_compile() {
+ :;
+}
+
+src_install() {
+ newbin mysqltuner.pl mysqltuner
+ dodoc {CONTRIBUTING,INTERNALS,USAGE}.md
+ einstalldocs
+
+ # Passwords and vulnerabilities are meant to be fed to the script
uncompressed.
+ dodoc basic_passwords.txt vulnerabilities.csv
+ docompress -x "/usr/share/doc/${PF}/basic_passwords.txt"
"/usr/share/doc/${PF}/vulnerabilities.csv"
+}