commit:     5b89e151f90ee650c237d389d26a3ef5e164b7b3
Author:     Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Sat Jan  8 15:05:56 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Feb  6 19:33:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b89e151

dev-db/mydumper: bump to 0.11.5.2

Closes: https://bugs.gentoo.org/830717
Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23701
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-db/mydumper/Manifest                 |  1 +
 dev-db/mydumper/mydumper-0.11.5.2.ebuild | 49 ++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/dev-db/mydumper/Manifest b/dev-db/mydumper/Manifest
index 39c88ee052a3..b4a45482835d 100644
--- a/dev-db/mydumper/Manifest
+++ b/dev-db/mydumper/Manifest
@@ -1,2 +1,3 @@
 DIST mydumper-0.11.1-3.tar.gz 77589 BLAKE2B 
5b5a6965ee07fb265e2f3dad288195035554c02da49337ed008b01b6a5f5d399769e67c00f57f4531ed1a1b14233829f617f4bbfb45abb904f1f3054a41b0b01
 SHA512 
70f5e4dac5af4e016bfc85d8befa2eebbe9e5c1a6b2ee1ccbd491bed29e2625202aee7961ead41d0cf432b23e8ce06dfa4474587663b35fbbdd5bffabc32ae2e
 DIST mydumper-0.11.3-5.tar.gz 105032 BLAKE2B 
722938bf88fdea17804542c28f0613f4e792fece7fcc03b1c27bc9bf52ab4ffb235472a07a13761339ce4db0b6b3b320daaf8924990878752227c5d891a5eb15
 SHA512 
8eb99c3a949f6547badfe6a291fa63819f4fb3844e7dcf797a9d741e7df7912c6f0006a3ca694c4ad5b5d7efe2bde86c7fdd3c98a3c4a987cc99d8dfcb331f7c
+DIST mydumper-0.11.5-2.tar.gz 110088 BLAKE2B 
c9e2f56ce7cc206f311ba00fd82e96479cd0313d99260ae27130489b5aa02e0b465c96900e41e9eb017d68022501bf327495ae39c8a64b330dc1072b3fb5ca9b
 SHA512 
f600c086c7e3402c3d35070709c5968e30046be5fc351e67dca05d2d7c48565e68ccbba08cf01195aa4d2ae3f2bdf8df84338d4f44a40504b583959fb67e72d8

diff --git a/dev-db/mydumper/mydumper-0.11.5.2.ebuild 
b/dev-db/mydumper/mydumper-0.11.5.2.ebuild
new file mode 100644
index 000000000000..72f86aa467fe
--- /dev/null
+++ b/dev-db/mydumper/mydumper-0.11.5.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit cmake
+
+MY_PV="$(ver_rs 3 -)"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="A high-performance multi-threaded backup (and restore) toolset 
for MySQL"
+HOMEPAGE="https://github.com/maxbube/mydumper";
+SRC_URI="https://github.com/maxbube/mydumper/archive/v${MY_PV}.tar.gz -> 
${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="app-arch/zstd
+       dev-db/mysql-connector-c:=
+       dev-libs/glib:2
+       dev-libs/libpcre
+       dev-libs/openssl:=
+       sys-libs/zlib:="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+       doc? ( dev-python/sphinx )"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-0.10.5-atomic.patch" #654314
+)
+
+src_prepare() {
+       # respect user cflags; do not expand ${CMAKE_C_FLAGS} (!)
+       sed -i -e 's|-O3 -g -Werror|${CMAKE_C_FLAGS}|' CMakeLists.txt || die
+
+       # fix doc install path
+       sed -i -e "s|share/doc/mydumper|share/doc/${PF}|" docs/CMakeLists.txt 
|| die
+
+       cmake_src_prepare
+}
+
+src_configure() {
+       local mycmakeargs=(-DBUILD_DOCS=$(usex doc))
+
+       cmake_src_configure
+}

Reply via email to