From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 08 07:51:34 2019 Received: (at submit) by debbugs.gnu.org; 8 Dec 2019 12:51:34 +0000 Received: from localhost ([127.0.0.1]:50633 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1idw29-0003Qa-UX for submit@debbugs.gnu.org; Sun, 08 Dec 2019 07:51:34 -0500 Received: from lists.gnu.org ([209.51.188.17]:59090) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1idw27-0003QT-U6 for submit@debbugs.gnu.org; Sun, 08 Dec 2019 07:51:32 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:43934) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1idw26-0002Q6-7M for guix-patches@gnu.org; Sun, 08 Dec 2019 07:51:31 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1idw24-0001dm-Rd for guix-patches@gnu.org; Sun, 08 Dec 2019 07:51:29 -0500 Received: from mout02.posteo.de ([185.67.36.66]:58837) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1idw23-0001I3-EY for guix-patches@gnu.org; Sun, 08 Dec 2019 07:51:27 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 28C45240100 for ; Sun, 8 Dec 2019 13:51:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1575809483; bh=h0B8r8TaCfCnG0G8FZYHD8Wt+kCfoYrI81Mu4SDiWc4=; h=From:To:Cc:Subject:Date:From; b=Y/FDVk6/v/JcvjUBi8sukR47oW5zxHQuYHsIS8/n9Pf9/KuzKsbdF9OVQcEIqD4OC x0ZFf/wh4y4+fmW9LoKSLVyfXowuw9PyLDRJy0r7/O1DXzoBeZrfhYmX0T5I5KFV8V j3F+f9GBi/rbtxFa7miyqo/V78HnrRChLj0XpZI2kWDYUHeCXGRc2PBjRieqeQOy/e 2lxGTtWlU07M+T8uXI89R8AqfjAcPDUYCXbFRYVE4QFutKa7rHBrVcbY7b1bLYLn5w OJ/urNQU+QWrllwn+Uy36eyrFjd7Kat1KHy+ATRyVvfiDIqsVaRKA1nM4pOUNFygBc S86BCZzqtjwVg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 47W5mR43zFz9rxD; Sun, 8 Dec 2019 13:51:18 +0100 (CET) From: Guillaume Le Vaillant To: guix-patches@gnu.org Subject: [PATCH] gnu: libdbi-drivers: Fix build with multi-output mariadb. Date: Sun, 8 Dec 2019 13:50:53 +0100 Message-Id: <20191208125053.17828-1-glv@posteo.net> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 185.67.36.66 X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Guillaume Le Vaillant X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/databases.scm (libdbi-drivers)[native-inputs]: Add mysql a= nd mysql-dev. [inputs]: Remove mysql and add mysql-lib and zlib. [arguments]: Remove unnecessary configure-flags and disable mysql test because mysql_install_db fails to run. --- gnu/packages/databases.scm | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index cb843672af..377efed42b 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3234,35 +3234,35 @@ simultaneous database connections by using this f= ramework.") (build-system gnu-build-system) (native-inputs `(("inetutils" ,inetutils) - ("glibc-locales" ,glibc-locales))) + ("glibc-locales" ,glibc-locales) + ("mysql" ,mariadb) + ("mysql-dev" ,mariadb "dev"))) (inputs `(("libdbi" ,libdbi) - ("mysql" ,mariadb) + ("mysql-lib" ,mariadb "lib") ("postgresql" ,postgresql) - ("sqlite" ,sqlite))) + ("sqlite" ,sqlite) + ("zlib" ,zlib))) (arguments `(#:configure-flags - (let ((libdbi (assoc-ref %build-inputs "libdbi")) - (mysql (assoc-ref %build-inputs "mysql")) - (postgresql (assoc-ref %build-inputs "postgresql")) - (sqlite (assoc-ref %build-inputs "sqlite"))) + (let ((libdbi (assoc-ref %build-inputs "libdbi"))) (list "--disable-docs" (string-append "--with-dbi-incdir=3D" libdbi "/include") (string-append "--with-dbi-libdir=3D" libdbi "/lib") "--with-mysql" - (string-append "--with-mysql-incdir=3D" mysql "/include/m= ysql") - (string-append "--with-mysql-libdir=3D" mysql "/lib") "--with-pgsql" - (string-append "--with-pgsql-incdir=3D" postgresql "/incl= ude") - (string-append "--with-pgsql-libdir=3D" postgresql "/lib"= ) - "--with-sqlite3" - (string-append "--with-sqlite-incdir=3D" sqlite "/include= ") - (string-append "--with-sqlite-libdir=3D" sqlite "/lib"))) + "--with-sqlite3")) #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-tests (lambda* (#:key inputs #:allow-other-keys) (substitute* "tests/test_mysql.sh" + (("^mysql_install_db.*") + ;; FIXME: Disable the mysql test for now. + ;; The mysql_install_db program needs files in both the + ;; mariadb and mariadb:lib packages and fails to find + ;; the ones in mariadb:lib. + "exit 0\n") (("^MYMYSQLD=3D.*") (string-append "MYMYSQLD=3D" (assoc-ref inputs "mysql") --=20 2.24.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 18 16:49:27 2019 Received: (at 38527-done) by debbugs.gnu.org; 18 Dec 2019 21:49:27 +0000 Received: from localhost ([127.0.0.1]:44056 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ihhCA-0003hY-SE for submit@debbugs.gnu.org; Wed, 18 Dec 2019 16:49:27 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:50769) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ihhC9-0003hD-8o for 38527-done@debbugs.gnu.org; Wed, 18 Dec 2019 16:49:26 -0500 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id AD5C7210DB; Wed, 18 Dec 2019 16:49:19 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Wed, 18 Dec 2019 16:49:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm1; bh=t7qSuMe8GOgbc7BV8RNjBZQsjd oq5vrgbmcirbIz6ww=; b=uDPZbnbdBtcGi7smFmBFmakVMK+TXV8WM6ZB5oxLwr sqORaX9WQc6zjLMwGVesm3Xj0rP7CDMjQf0jTNwtyyDAFI3Qnni8yYwzIs2A/g26 OxVqvSKRDuQPo7HNm6mA4hxYBkYlJe0Q1lrztn1JZjVE+SHZ8vmilZ6imNy/2kWO Edkissp2aZw29/meQGnkq9CTVIysLwr5cOz5ZstadW7KT0oiVhsrppSVqJ7VQxd4 SeAAuod7LOB4JbHxr5H6Xd+fVBzYiMbJG8FMyFSge54MIfDeTRDIULFHzexsUOtG vIR5rWzzn8qM7R3PFm5Mhot4dOZw0LXkjioOfmymmqYQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=t7qSuM e8GOgbc7BV8RNjBZQsjdoq5vrgbmcirbIz6ww=; b=KwKifEnoNl0gtaALIP1g5b hnK+9UqOK1eSAVu5XExs4/94WFVnidv4TzStTnJLDns/GnA254p2h48+Wi6F8Gfm ZuPC6tWhW7MRXbl1x4HIrVArkeh2KrTZhwkOuPirmBp4zxitWiSUBnUZeQMpPegl Tac6DNS1s3TJ0qeHYMmzS+4vX4V0q13o6VivCvwDsRr7yakd5Jo84I89P9Un4s2c gZ9JnWO30KKcVUlVF+1t5gIVolu0tRJ6k+VU0gI5IqdjAZq1FBUuCH1EdzGP9U62 47MVvBJCFwr8AhSszbtaR15CqSeOzIj5pPd7tVbjvAWicDhNlOIFG/yPsRGvpRzw == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrvddtledgudehtdcutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecunecujfgurhephffvufgjfhgffffkgggtsehgtd erredtredtnecuhfhrohhmpeforghrihhushcuuegrkhhkvgcuoehmsggrkhhkvgesfhgr shhtmhgrihhlrdgtohhmqeenucfkphepkeegrddvtddvrdeiledrvdehfeenucfrrghrrg hmpehmrghilhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrghilhdrtghomhenucevlhhu shhtvghrufhiiigvpedt X-ME-Proxy: Received: from localhost (ti0006q161-3035.bb.online.no [84.202.69.253]) by mail.messagingengine.com (Postfix) with ESMTPA id E8647306074E; Wed, 18 Dec 2019 16:49:18 -0500 (EST) From: Marius Bakke To: Guillaume Le Vaillant , 38527-done@debbugs.gnu.org Subject: Re: [bug#38527] [PATCH] gnu: libdbi-drivers: Fix build with multi-output mariadb. In-Reply-To: <20191208125053.17828-1-glv@posteo.net> References: <20191208125053.17828-1-glv@posteo.net> User-Agent: Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Wed, 18 Dec 2019 22:49:17 +0100 Message-ID: <87a77pcnj6.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 38527-done Cc: Guillaume Le Vaillant X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain Guillaume Le Vaillant writes: > * gnu/packages/databases.scm (libdbi-drivers)[native-inputs]: Add mysql and > mysql-dev. > [inputs]: Remove mysql and add mysql-lib and zlib. > [arguments]: Remove unnecessary configure-flags and disable mysql > test because mysql_install_db fails to run. Whoops, I did not see this issue until I had fixed it and searched for a recent bug report on help-guix@. So I ended up pushing a variant that fixed the MariaDB problem in 9077cf68ec57c0303ef7746e203c3fe5ed041add. By the way, could you create an account on Savannah so that we can grant you commit access? If you are okay with that, please send a signed reply to this message signed by the same GPG key that you uploaded to Savannah for signing git commits. Thanks, Marius --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl36nt0ACgkQoqBt8qM6 VPr7Zgf/U1zeRI4sP/W+XOGXBmpUOQpqHmsBi3CbnNyqMaEVzJug1eXvOH+r40D+ gd6HvIuYov3uVsJiFm+SbJcrzv5eaoMe+fsqN7LTLKNrXnMo/4wXTxO6p3XCd/uY q/erP4sObaSF8+J9eqLIqL8nF/4R9GAB/IiDMR8sk6PwOgDQ8ErY17gZsFxFqSz3 FJD4lKAOEz0F44kw59liTrx2s2m/wLLEGbcKnxuOa8syVIaerg0PNM17kF/+aQBO 4DswiTvkuV+51Ug4DGwIsGC2UkN88VBDFvKY35rilDB0oj1o187CB2cSTt1fCPaL tV9Aeq5Faw6QTW5W/WeaeYpDPOxmsQ== =sCRm -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 26 11:57:58 2019 Received: (at 38527-done) by debbugs.gnu.org; 26 Dec 2019 16:57:58 +0000 Received: from localhost ([127.0.0.1]:56147 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ikWSU-0005m3-IS for submit@debbugs.gnu.org; Thu, 26 Dec 2019 11:57:58 -0500 Received: from wout2-smtp.messagingengine.com ([64.147.123.25]:34929) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ikWSS-0005lq-8t for 38527-done@debbugs.gnu.org; Thu, 26 Dec 2019 11:57:57 -0500 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.west.internal (Postfix) with ESMTP id 2EA0D829; Thu, 26 Dec 2019 11:57:50 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Thu, 26 Dec 2019 11:57:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm1; bh=FwhJ/03lIe8nbeIxfaIeqcxSDz 0IZzVPJI31+FnPGvE=; b=fBGXWDZzJ6RDgILwkkAT+UMRMVnxacuufqhYlxF4xt QDUJ+mavUZeXpCibXhspb2bJmJSmMrRX8Dbsl9dG5NmACML2vCd5tZgq8nKzm41G ELecL21WhhKUAVKDFy+7OAI1rxeKrPJpCm61p5xWv+tTbOCCaLMX02BK0cUcSTnf Y0Flj3VvcxRylEW40BACDCZea8K7StVu4D7li+ZQBzt+l7vlNZj4fWgEKcsEgsnT NDtn9oAquKcXSMleVYgLOZjD/ygtOZMH7gT6CrlqRxpzeWPARuQK9PrkfHaIPuXj 0amuMleTJxpkLDzSjNSB6JZeSDvvBXQfkwHYlbrFgxTg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=FwhJ/0 3lIe8nbeIxfaIeqcxSDz0IZzVPJI31+FnPGvE=; b=qlX/4TlJ55BARE/oZWm10a AuneMwR4IoLKLLQsSJjlIBo72gt3F0Cb9wNJsXXUYJwjaY/Fm9QQg1COJjwy1dmA 3MNXavxUurA8F0AgKympA/Tbyh8jn9iHsk5nh10J3v1nIasLNCh9lI2fwLjMeWLO NpTmy1g1W3qzHl4zEutmPfLdZsKE4RlIR+79Bdq80LUpmElqFuRcfBvqF6nF7KhC 67CT3ORyFTQv6TDDNKTFfSLMVG5p7iwpZF+xsp4MIN+DU0eg8IN8j4f7N2bia19P M14xlMOxIdx88k7+FS4RkPohFWuPybFLVgcmuCrII6baCcWsz35517oqCEmTBkcg == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrvddviedgleefucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpefhvffujghffgffkfggtgesghdtre ertdertdenucfhrhhomhepofgrrhhiuhhsuceurghkkhgvuceomhgsrghkkhgvsehfrghs thhmrghilhdrtghomheqnecukfhppeekgedrvddugedrudejgedrudekheenucfrrghrrg hmpehmrghilhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrghilhdrtghomhenucevlhhu shhtvghrufhiiigvpedt X-ME-Proxy: Received: from localhost (cm-84.214.174.185.getinternet.no [84.214.174.185]) by mail.messagingengine.com (Postfix) with ESMTPA id 33FF230607B4; Thu, 26 Dec 2019 11:57:49 -0500 (EST) From: Marius Bakke To: Guillaume Le Vaillant Subject: Re: [bug#38527] [PATCH] gnu: libdbi-drivers: Fix build with multi-output mariadb. In-Reply-To: <87mubozij3.fsf@yamatai> References: <20191208125053.17828-1-glv@posteo.net> <87a77pcnj6.fsf@devup.no> <87mubozij3.fsf@yamatai> User-Agent: Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Thu, 26 Dec 2019 17:57:47 +0100 Message-ID: <87a77fja7o.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 38527-done Cc: 38527-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain Guillaume Le Vaillant writes: > Marius Bakke skribis: > >> Guillaume Le Vaillant writes: >> >>> * gnu/packages/databases.scm (libdbi-drivers)[native-inputs]: Add mysql and >>> mysql-dev. >>> [inputs]: Remove mysql and add mysql-lib and zlib. >>> [arguments]: Remove unnecessary configure-flags and disable mysql >>> test because mysql_install_db fails to run. >> >> Whoops, I did not see this issue until I had fixed it and searched for a >> recent bug report on help-guix@. So I ended up pushing a variant that >> fixed the MariaDB problem in 9077cf68ec57c0303ef7746e203c3fe5ed041add. >> >> By the way, could you create an account on Savannah so that we can grant >> you commit access? If you are okay with that, please send a signed >> reply to this message signed by the same GPG key that you uploaded to >> Savannah for signing git commits. >> >> Thanks, >> Marius > > Hi, I created an account on Savannah (account name is "glv"). The GPG > key I usually use is an ED25519 key, but it looks like the version of > GnuPG on Savannah is old and doesn't support that. So I added a DSA > subkey and tried to upload the updated key. The Savannah website printed > a "key saved" message, but I'm not sure if it will work as the main key > is an ED25519 one... Looks good! I have added you to the project now, so you should be able to push commits directly. Make sure to read HACKING, as well as the "Contributing" section of the manual; and don't be afraid to ask on #guix or the lists if you are unsure about anything. Thank you, and welcome! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl4E5osACgkQoqBt8qM6 VPoprQf/RD2VB0K5NLEfh1dp1cDpfuc7trSm0E8nTZo2ihNcmBlRXxi8hAGIOtGe M8J45ZjHtTmF0TWU+q4yi7unlpp3Oa4mY0vBS1Q0wW2o5MUJOKuswglD9jdbhAQI 76vC5aE2I7gF+Ob6BH60ogpiWt5ASQWgbJ/18iG7MpAOeHuB9fyVVafgVb2OWoK7 EedpR5h++oCkl/HRntdoaiHwP9wHB1q8ecDXQ8t9z8V4ANiyPbs/Ygy4e+YQicLA jbhv+I1jyO+LpMFcZpXJGh+sRV255w2auXtS3ISfSXrQRuf14S1ocMawzQ6UmzUJ 59cWMCjCQ84vxk0anrp5/sgNmSFuVQ== =qgMc -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 27 05:35:22 2019 Received: (at 38527-done) by debbugs.gnu.org; 27 Dec 2019 10:35:22 +0000 Received: from localhost ([127.0.0.1]:56579 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ikmxm-0001kh-Af for submit@debbugs.gnu.org; Fri, 27 Dec 2019 05:35:22 -0500 Received: from mout02.posteo.de ([185.67.36.66]:57549) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ikmxj-0001kT-Pf for 38527-done@debbugs.gnu.org; Fri, 27 Dec 2019 05:35:21 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 586002400FD for <38527-done@debbugs.gnu.org>; Fri, 27 Dec 2019 11:35:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1577442913; bh=vrPNz3VqBpaNB937tfOFR9Qqed78/te45zlSySJSXOU=; h=From:To:Cc:Subject:Date:From; b=d/8xjj7dVPfP/q/uZwD9RZyyyxsfN15tud1y8WDwNWjHpKgY35t/C43iwE1hRZyba 5vpedX4peQCV0o+/LJ4+j7ZVBNxBrXBVNSRHSZbfOsFsTEs1EeZKBl0U0V/0/WF185 WSZdzxnYOaqLzNFHgdoNm9gmZJjD+l76cEyYnEmuUIARG2Ldp6Y6w+FRjHdUmz48g/ s/8Xb7M+LXSyNvv9S8Snat8kCDauHHuHqrPsFRaXIYCq6P5lCxlfbdkTp26c0nqQe0 K280/M0xeMhuo2LayLO/znvhZ8kLAju7HHvfzG7LZdRjEnKtA36DHlzk6+KgLEhluJ IefPMVjLcFTFg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 47kjrc3FMJz9rxQ; Fri, 27 Dec 2019 11:35:12 +0100 (CET) References: <20191208125053.17828-1-glv@posteo.net> <87a77pcnj6.fsf@devup.no> <87mubozij3.fsf@yamatai> <87a77fja7o.fsf@devup.no> User-agent: mu4e 1.2.0; emacs 26.3 From: Guillaume Le Vaillant To: Marius Bakke Subject: Re: [bug#38527] [PATCH] gnu: libdbi-drivers: Fix build with multi-output mariadb. In-reply-to: <87a77fja7o.fsf@devup.no> Date: Fri, 27 Dec 2019 11:34:52 +0100 Message-ID: <875zi23vlf.fsf@yamatai> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 38527-done Cc: 38527-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Marius Bakke skribis: > Guillaume Le Vaillant writes: > >> Marius Bakke skribis: >> >>> Guillaume Le Vaillant writes: >>> >>>> * gnu/packages/databases.scm (libdbi-drivers)[native-inputs]: Add mysql and >>>> mysql-dev. >>>> [inputs]: Remove mysql and add mysql-lib and zlib. >>>> [arguments]: Remove unnecessary configure-flags and disable mysql >>>> test because mysql_install_db fails to run. >>> >>> Whoops, I did not see this issue until I had fixed it and searched for a >>> recent bug report on help-guix@. So I ended up pushing a variant that >>> fixed the MariaDB problem in 9077cf68ec57c0303ef7746e203c3fe5ed041add. >>> >>> By the way, could you create an account on Savannah so that we can grant >>> you commit access? If you are okay with that, please send a signed >>> reply to this message signed by the same GPG key that you uploaded to >>> Savannah for signing git commits. >>> >>> Thanks, >>> Marius >> >> Hi, I created an account on Savannah (account name is "glv"). The GPG >> key I usually use is an ED25519 key, but it looks like the version of >> GnuPG on Savannah is old and doesn't support that. So I added a DSA >> subkey and tried to upload the updated key. The Savannah website printed >> a "key saved" message, but I'm not sure if it will work as the main key >> is an ED25519 one... > > Looks good! > > I have added you to the project now, so you should be able to push > commits directly. > > Make sure to read HACKING, as well as the "Contributing" section of the > manual; and don't be afraid to ask on #guix or the lists if you are > unsure about anything. > > Thank you, and welcome! Thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEAREKAB0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCXgXeXwAKCRBr6CCK3yH+ P0L2AP4ju09JSiuUu6u9i24VpxLhNIur0ceLEVdW6sKFHwwAywD/bIJx7W28/dEA dvqls32KCCCWZ/IOi2QBhvOUYBE5zGE= =lCAJ -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Sep 08 07:02:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 24 Jan 2020 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator