Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 654314 - dev-db/mydumper-0.9.3-r1 : -- Configuring incomplete, errors occurred!
Summary: dev-db/mydumper-0.9.3-r1 : -- Configuring incomplete, errors occurred!
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Tomáš Mózes
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-04-29 11:34 UTC by Toralf Förster
Modified: 2018-05-24 10:23 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
emerge-info.txt (emerge-info.txt,15.00 KB, text/plain)
2018-04-29 11:34 UTC, Toralf Förster
Details
CMakeOutput.log (CMakeOutput.log,48.18 KB, text/plain)
2018-04-29 11:34 UTC, Toralf Förster
Details
dev-db:mydumper-0.9.3-r1:20180427-151924.log (dev-db:mydumper-0.9.3-r1:20180427-151924.log,4.94 KB, text/plain)
2018-04-29 11:34 UTC, Toralf Förster
Details
emerge-history.txt (emerge-history.txt,100.33 KB, text/plain)
2018-04-29 11:34 UTC, Toralf Förster
Details
environment (environment,113.89 KB, text/plain)
2018-04-29 11:34 UTC, Toralf Förster
Details
etc.portage.tbz2 (etc.portage.tbz2,12.80 KB, application/x-bzip)
2018-04-29 11:34 UTC, Toralf Förster
Details
logs.tbz2 (logs.tbz2,4.49 KB, application/x-bzip)
2018-04-29 11:34 UTC, Toralf Förster
Details
temp.tbz2 (temp.tbz2,27.36 KB, application/x-bzip)
2018-04-29 11:34 UTC, Toralf Förster
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Toralf Förster gentoo-dev 2018-04-29 11:34:24 UTC
    linked by target "mydumper" in directory /var/tmp/portage/dev-db/mydumper-0.9.3-r1/work/mydumper-0.9.3

-- Configuring incomplete, errors occurred!
See also "/var/tmp/portage/dev-db/mydumper-0.9.3-r1/work/mydumper-0.9.3_build/CMakeFiles/CMakeOutput.log".
 * ERROR: dev-db/mydumper-0.9.3-r1::gentoo failed (configure phase):
 *   cmake failed

  -------------------------------------------------------------------

  This is an unstable amd64 chroot image at a tinderbox (==build bot)
  name: 17.0_20180425-210301

  -------------------------------------------------------------------

gcc-config -l:
 [1] x86_64-pc-linux-gnu-7.3.0 *

Available Python interpreters, in order of preference:
  [1]   python3.5
  [2]   python2.7 (fallback)
Available Ruby profiles:
  [1]   ruby22 (with Rubygems)
  [2]   ruby23 (with Rubygems) *



emerge -qpv dev-db/mydumper
[ebuild  N    ] dev-db/mydumper-0.9.3-r1  USE="-doc"
Comment 1 Toralf Förster gentoo-dev 2018-04-29 11:34:27 UTC
Created attachment 528790 [details]
emerge-info.txt
Comment 2 Toralf Förster gentoo-dev 2018-04-29 11:34:30 UTC
Created attachment 528792 [details]
CMakeOutput.log
Comment 3 Toralf Förster gentoo-dev 2018-04-29 11:34:34 UTC
Created attachment 528794 [details]
dev-db:mydumper-0.9.3-r1:20180427-151924.log
Comment 4 Toralf Förster gentoo-dev 2018-04-29 11:34:37 UTC
Created attachment 528796 [details]
emerge-history.txt
Comment 5 Toralf Förster gentoo-dev 2018-04-29 11:34:40 UTC
Created attachment 528798 [details]
environment
Comment 6 Toralf Förster gentoo-dev 2018-04-29 11:34:43 UTC
Created attachment 528800 [details]
etc.portage.tbz2
Comment 7 Toralf Förster gentoo-dev 2018-04-29 11:34:46 UTC
Created attachment 528802 [details]
logs.tbz2
Comment 8 Toralf Förster gentoo-dev 2018-04-29 11:34:49 UTC
Created attachment 528804 [details]
temp.tbz2
Comment 9 Tomáš Mózes 2018-05-03 05:59:56 UTC
Mysql team - any advice how to handle this?
Comment 10 Brian Evans (RETIRED) gentoo-dev 2018-05-18 13:39:54 UTC
This is your problem:

foreach(MY_LIB ${MYSQL_ADD_LIBRARIES})
    find_library("MYSQL_LIBRARIES_${MY_LIB}" NAMES ${MY_LIB}
        HINTS
        ${MYSQL_ADD_LIBRARY_PATH}
        /usr/lib/mysql
        /usr/lib
        /usr/local/lib
        /usr/local/lib/mysql
        /usr/local/mysql/lib
    )
    list(APPEND TMP_MYSQL_LIBRARIES "${MYSQL_LIBRARIES_${MY_LIB}}")
endforeach(MY_LIB ${MYSQL_ADD_LIBRARIES})


libatomic lives with gcc.

Assuming all dependencies are right, which should be the case in Gentoo, remove that block and change the following line.

-set(MYSQL_LIBRARIES ${TMP_MYSQL_LIBRARIES} CACHE FILEPATH INTERNAL)
+set(MYSQL_LIBRARIES ${MYSQL_ADD_LIBRARIES} CACHE FILEPATH INTERNAL)
Comment 11 Tomáš Mózes 2018-05-21 12:38:42 UTC
(In reply to Brian Evans from comment #10)
> This is your problem:
> 
> foreach(MY_LIB ${MYSQL_ADD_LIBRARIES})
>     find_library("MYSQL_LIBRARIES_${MY_LIB}" NAMES ${MY_LIB}
>         HINTS
>         ${MYSQL_ADD_LIBRARY_PATH}
>         /usr/lib/mysql
>         /usr/lib
>         /usr/local/lib
>         /usr/local/lib/mysql
>         /usr/local/mysql/lib
>     )
>     list(APPEND TMP_MYSQL_LIBRARIES "${MYSQL_LIBRARIES_${MY_LIB}}")
> endforeach(MY_LIB ${MYSQL_ADD_LIBRARIES})
> 
> 
> libatomic lives with gcc.
> 
> Assuming all dependencies are right, which should be the case in Gentoo,
> remove that block and change the following line.
> 
> -set(MYSQL_LIBRARIES ${TMP_MYSQL_LIBRARIES} CACHE FILEPATH INTERNAL)
> +set(MYSQL_LIBRARIES ${MYSQL_ADD_LIBRARIES} CACHE FILEPATH INTERNAL)

Thank you!
Comment 12 Larry the Git Cow gentoo-dev 2018-05-24 10:23:41 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf649b87bc0a3083060a8439e99f7a122a0a2218

commit cf649b87bc0a3083060a8439e99f7a122a0a2218
Author:     Tomas Mozes <hydrapolic@gmail.com>
AuthorDate: 2018-05-22 08:52:03 +0000
Commit:     Amy Liffey <amynka@gentoo.org>
CommitDate: 2018-05-24 10:23:27 +0000

    dev-db/mydumper: bump to 0.9.5
    
    Closes: https://bugs.gentoo.org/654314
    Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-db/mydumper/Manifest                    |  1 +
 dev-db/mydumper/files/mydumper-atomic.patch | 27 ++++++++++++++++++
 dev-db/mydumper/mydumper-0.9.5.ebuild       | 44 +++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+)