[gentoo-commits] repo/gentoo:master commit in: net-dns/odsclient/

2022-03-19 Thread Sam James
commit: 07a17dae56a48995c65dee2c1fd207f0e9c6d702
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 20 00:26:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar 20 00:26:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a17dae

net-dns/odsclient: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James  gentoo.org>

 net-dns/odsclient/odsclient-1.03-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-dns/odsclient/odsclient-1.03-r1.ebuild 
b/net-dns/odsclient/odsclient-1.03-r1.ebuild
index 7222b961927d..7437ef0ff5eb 100644
--- a/net-dns/odsclient/odsclient-1.03-r1.ebuild
+++ b/net-dns/odsclient/odsclient-1.03-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -23,7 +23,7 @@ src_prepare() {
 
 src_compile() {
emake \
-   CC=$(tc-getCC) \
+   CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}"
 }



[gentoo-commits] repo/gentoo:master commit in: net-dns/odsclient/

2018-05-28 Thread Pacho Ramos
commit: 23a42e1394937e3a87c0f1f9c5459657b86a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon May 28 18:30:10 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon May 28 18:39:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a42e13

net-dns/odsclient: Fix docs installation (#656764)

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 net-dns/odsclient/odsclient-1.03-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/odsclient/odsclient-1.03-r1.ebuild 
b/net-dns/odsclient/odsclient-1.03-r1.ebuild
index 26681347080..4f928f134a1 100644
--- a/net-dns/odsclient/odsclient-1.03-r1.ebuild
+++ b/net-dns/odsclient/odsclient-1.03-r1.ebuild
@@ -31,5 +31,5 @@ src_compile() {
 
 src_install() {
dosbin odsclient
-   default
+   einstalldocs
 }



[gentoo-commits] repo/gentoo:master commit in: net-dns/odsclient/

2018-05-26 Thread Aaron Bauman
commit: 74e198a74c342dee63fea2c5ae25da6be7f579dd
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat May 26 15:58:36 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat May 26 18:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e198a7

net-dns/odsclient: add default call to src_install for docs

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-dns/odsclient/odsclient-1.03-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-dns/odsclient/odsclient-1.03-r1.ebuild 
b/net-dns/odsclient/odsclient-1.03-r1.ebuild
index bf24d233dae..26681347080 100644
--- a/net-dns/odsclient/odsclient-1.03-r1.ebuild
+++ b/net-dns/odsclient/odsclient-1.03-r1.ebuild
@@ -31,4 +31,5 @@ src_compile() {
 
 src_install() {
dosbin odsclient
+   default
 }



[gentoo-commits] repo/gentoo:master commit in: net-dns/odsclient/

2018-05-25 Thread Aaron Bauman
commit: b57fe056aa008db216700f439e06d45246fdef0a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat May 26 00:19:55 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat May 26 02:05:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b57fe056

net-dns/odsclient: bump EAPI and drop eutils

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8591

 net-dns/odsclient/odsclient-1.03-r1.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-dns/odsclient/odsclient-1.03-r1.ebuild 
b/net-dns/odsclient/odsclient-1.03-r1.ebuild
index d679353f724..bf24d233dae 100644
--- a/net-dns/odsclient/odsclient-1.03-r1.ebuild
+++ b/net-dns/odsclient/odsclient-1.03-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="2"
+EAPI=6
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Client for the Open Domain Server's dynamic dns"
 HOMEPAGE="http://www.ods.org/;
@@ -14,10 +14,11 @@ SLOT="0"
 KEYWORDS="~amd64 x86"
 IUSE=""
 
+PATCHES=( "${FILESDIR}/${PV}-gentoo.patch" )
+
 src_prepare() {
+   default
sed -i Makefile -e 's| -o | $(LDFLAGS)&|g' || die "sed failed"
-
-   epatch "${FILESDIR}"/${PV}-gentoo.patch
 }
 
 src_compile() {
@@ -30,5 +31,4 @@ src_compile() {
 
 src_install() {
dosbin odsclient
-   dodoc README
 }