diff options
author | Sergiy Borodych <Sergiy.Borodych@gmail.com> | 2017-02-13 18:44:12 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-03-17 00:09:49 +0100 |
commit | d012f36edeabaa24abe3aeefe1fcd9e1bfdb895d (patch) | |
tree | 791282b1a2d6d9fe42e7228d2d278a9e5c8b50b1 /dev-db | |
parent | dev-python/neovim-python-client: version bump to 0.1.13. (diff) | |
download | gentoo-d012f36edeabaa24abe3aeefe1fcd9e1bfdb895d.tar.gz gentoo-d012f36edeabaa24abe3aeefe1fcd9e1bfdb895d.tar.bz2 gentoo-d012f36edeabaa24abe3aeefe1fcd9e1bfdb895d.zip |
dev-db/mysqltuner: version bump to 1.6.18.
Gentoo-Bug: https://bugs.gentoo.org/595634
Closes: https://github.com/gentoo/gentoo/pull/3956
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/mysqltuner/Manifest | 1 | ||||
-rw-r--r-- | dev-db/mysqltuner/metadata.xml | 3 | ||||
-rw-r--r-- | dev-db/mysqltuner/mysqltuner-1.6.18.ebuild | 31 |
3 files changed, 34 insertions, 1 deletions
diff --git a/dev-db/mysqltuner/Manifest b/dev-db/mysqltuner/Manifest index 9c3e35fd3dcf..70850f102e84 100644 --- a/dev-db/mysqltuner/Manifest +++ b/dev-db/mysqltuner/Manifest @@ -1,2 +1,3 @@ DIST mysqltuner-1.2.0.tar.gz 24562 SHA256 54b743808f7f1d882cc912ffbb62dae57303e3e17f45aefd55a16825c016bc9d SHA512 b38277c31c1a870525f20bc1c023fe9675403834313a65c99c445a5fa1048c7aa3dc8ed5a9a9255c4844bdb001b28ee45be807306d0f1739c170d8ee9e0ab53f WHIRLPOOL 5290f77df91bcb23cc2bbb5097a08df54bc4e32560732ff078005bdd9acdf74a8f76647b893ab600dee4d848a70d6a6923e9806b30fb9504c6d3f5d31067be75 DIST mysqltuner-1.6.0.tar.gz 53424 SHA256 dc3045b9ffae7837d187d2b1ef4c42648bf7ffc6bb9f69864a4bfeecd5205e37 SHA512 904022ef64eaf75f3294a9a5123dc5e00482d95378722df63140bc6859ec245c32d9b06d19955790a5e29b9335e6da3df2cebdeb4659cb9058561866f6ec69c2 WHIRLPOOL fa1cde57da2eb67ca6524aea6cae58864128ab7beebb9dab779ba6f44b7a38fb1a2b5a6a729f0b0c73e78e8bd61d3519ea0990885e992e00091b178d110cec3a +DIST mysqltuner-1.6.18.tar.gz 169074 SHA256 ae2b2668198fb78a7685fc4a372bafcef0a91b1dca15d065dae73eeb74bcd6cb SHA512 8067b7ac4a4fe7398ee2cdc463a30042f46972f97680b49912dca46fd1d835989aa4115568dbe5473ff28c4d956bf0ad70537318db788dd56bc93ad220e6bcb6 WHIRLPOOL 0ffe6459f157cc4e7e015dde806f0e5086c546f14c53855b04f61edba3e2e8b4b98a57212d10d48722bb2277041561729b14ec870383df56bd32587fb6275c4b diff --git a/dev-db/mysqltuner/metadata.xml b/dev-db/mysqltuner/metadata.xml index 4b9e3adf3168..b5fa8bce6890 100644 --- a/dev-db/mysqltuner/metadata.xml +++ b/dev-db/mysqltuner/metadata.xml @@ -3,6 +3,7 @@ <pkgmetadata> <!-- maintainer-needed --> <upstream> - <remote-id type="github">rackerhacker/MySQLTuner-perl</remote-id> + <remote-id type="github">major/MySQLTuner-perl</remote-id> + <bugs-to>https://github.com/major/MySQLTuner-perl/issues</bugs-to> </upstream> </pkgmetadata> diff --git a/dev-db/mysqltuner/mysqltuner-1.6.18.ebuild b/dev-db/mysqltuner/mysqltuner-1.6.18.ebuild new file mode 100644 index 000000000000..7a51ca5617e3 --- /dev/null +++ b/dev-db/mysqltuner/mysqltuner-1.6.18.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN=MySQLTuner-perl + +DESCRIPTION="MySQLTuner is a high-performance MySQL tuning script" +HOMEPAGE="http://www.mysqltuner.com/" +SRC_URI="https://github.com/major/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="dev-lang/perl + virtual/perl-Getopt-Long + virtual/mysql" + +DOCS=( README.* USAGE.md CONTRIBUTING.md INTERNALS.md basic_passwords.txt vulnerabilities.csv ) +S="${WORKDIR}/${MY_PN}-${PV}" + +src_install() { + newbin "${PN}.pl" "${PN}" + + # The passwords and vulnerabilities are meant to be fed to the script uncompressed + docompress -x "/usr/share/doc/${PF}/basic_passwords.txt" "/usr/share/doc/${PF}/vulnerabilities.csv" + einstalldocs +} |