* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2020-01-03 20:40 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2020-01-03 20:40 UTC (permalink / raw
To: gentoo-commits
commit: 018fd85f5142b3250774812f651b8d2147f022e8
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 16:54:37 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 20:39:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=018fd85f
net-dns/resolvconf-symlink: Use relative symlink path
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index dbf2b430fba..782762cc845 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -38,7 +38,7 @@ pkg_preinst() {
src_install() {
# XXX: /run should be more correct, when it's supported by baselayout
- use symlink && dosym /var/run/resolv.conf /etc/resolv.conf
+ use symlink && dosym ../var/run/resolv.conf /etc/resolv.conf
}
pkg_postrm() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2020-01-03 20:40 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2020-01-03 20:40 UTC (permalink / raw
To: gentoo-commits
commit: 8f22b32f4d5bfd7ff043b3dd49574f1290a5e688
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 16:49:23 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 20:39:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f22b32f
net-dns/resolvconf-symlink: Remove useless HOMEPAGE
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index d11ff4ab625..f7ad0c45626 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="Make /etc/resolv.conf a symlink to a runtime-writable location"
-HOMEPAGE="https://www.gentoo.org"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI=""
LICENSE="public-domain"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2020-01-03 20:40 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2020-01-03 20:40 UTC (permalink / raw
To: gentoo-commits
commit: 3dd9591c26a2d8d03b2e1bd8c56e1958eb3fba19
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 16:51:28 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 20:39:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dd9591c
net-dns/resolvconf-symlink: Bump to EAPI=7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../resolvconf-symlink/resolvconf-symlink-0.ebuild | 24 +++++++++++-----------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index f7ad0c45626..dbf2b430fba 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -1,35 +1,34 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
DESCRIPTION="Make /etc/resolv.conf a symlink to a runtime-writable location"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI=""
+S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+symlink"
-S=${WORKDIR}
-
pkg_preinst() {
if use symlink; then
- if [[ -f "${ROOT}"etc/resolv.conf && ! -L "${ROOT}"etc/resolv.conf ]]
+ if [[ -f ${EROOT}/etc/resolv.conf && ! -L ${EROOT}/etc/resolv.conf ]]
then # migrate existing resolv.conf
- if [[ "$(head -n 1 "${ROOT}"etc/resolv.conf)" \
+ if [[ "$(head -n 1 "${EROOT}"/etc/resolv.conf)" \
!= "# Generated by "* ]]; then
- eerror "${ROOT}etc/resolv.conf seems not to be autogenerated."
+ eerror "${EROOT}/etc/resolv.conf seems not to be autogenerated."
eerror "Aborting build to avoid removing user data. If that file is supposed"
eerror "to be autogenerated, please remove it manually. Otherwise, please"
eerror "set USE=-symlink to avoid installing resolv.conf symlink."
- die "${ROOT}etc/resolv.conf not autogenerated"
+ die "${EROOT}/etc/resolv.conf not autogenerated"
else
- ebegin "Moving ${ROOT}etc/resolv.conf to ${ROOT}var/run/"
- mv "${ROOT}"etc/resolv.conf "${ROOT}"var/run/
+ ebegin "Moving ${EROOT}/etc/resolv.conf to ${EROOT}/var/run/"
+ mv "${EROOT}"/etc/resolv.conf "${EROOT}"/var/run/
eend ${?} || die
fi
fi
@@ -44,9 +43,10 @@ src_install() {
pkg_postrm() {
# Don't leave the user with no resolv.conf
- if [[ ! -e "${ROOT}"etc/resolv.conf && -f "${ROOT}"var/run/resolv.conf ]]; then
- ebegin "Moving ${ROOT}var/run/resolv.conf to ${ROOT}etc/"
- mv "${ROOT}"var/run/resolv.conf "${ROOT}"etc/
+ if [[ ! -e ${EROOT}/etc/resolv.conf && -f ${EROOT}/var/run/resolv.conf ]]
+ then
+ ebegin "Moving ${EROOT}/var/run/resolv.conf to ${EROOT}/etc/"
+ mv "${EROOT}"/var/run/resolv.conf "${EROOT}"/etc/
eend ${?} || die
fi
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-01-19 13:51 Marek Szuba
0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2022-01-19 13:51 UTC (permalink / raw
To: gentoo-commits
commit: 17842471ef3dd349ebd1ed3bf3fc40ce6912c5ae
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 19 13:44:09 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Jan 19 13:51:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17842471
net-dns/resolvconf-symlink: keyword 0 for ~riscv
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index 782762cc845f..b1b8eebaefda 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-01-19 22:53 James Le Cuirot
0 siblings, 0 replies; 13+ messages in thread
From: James Le Cuirot @ 2022-01-19 22:53 UTC (permalink / raw
To: gentoo-commits
commit: 8df30a2f03c7052885378882e9b21dc32528303f
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 19 22:52:49 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Jan 19 22:52:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8df30a2f
net-dns/resolvconf-symlink: Keyword 0 for ~m68k
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index b1b8eebaefda..ac49c77edaf7 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="~amd64 ~m68k ~riscv ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-01-21 12:25 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-01-21 12:25 UTC (permalink / raw
To: gentoo-commits
commit: 67ddca2592b2c32a2c86cd6b6cad4126a1d43b49
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Jan 20 17:01:48 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 21 12:25:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ddca25
net-dns/resolvconf-symlink: keyword 0 for sparc, bug #831409
Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index ac49c77edaf7..f3cff56ba096 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~m68k ~riscv ~x86"
+KEYWORDS="~amd64 ~m68k ~riscv ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-01-21 12:25 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-01-21 12:25 UTC (permalink / raw
To: gentoo-commits
commit: 36b87664ef7a901ac0f900ee8f030174763e5b69
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Jan 20 17:21:53 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 21 12:25:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b87664
net-dns/resolvconf-symlink: keyword 0 for hppa, bug #831409
Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index f3cff56ba096..d4e2f12eaec9 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~m68k ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~m68k ~riscv ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-01-29 7:23 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-01-29 7:23 UTC (permalink / raw
To: gentoo-commits
commit: aa0a42ec1e1d358e3c55e0721b46e08ccf042afd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 07:23:10 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 07:23:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0a42ec
net-dns/resolvconf-symlink: Keyword 0 ia64, #831409
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index d4e2f12eaec9..d0c26696f14e 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~m68k ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-02-05 6:34 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-02-05 6:34 UTC (permalink / raw
To: gentoo-commits
commit: a0df1929a6ff550f62f45c3bd40ddba6a7d5d21e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 5 06:32:40 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 5 06:32:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0df1929
net-dns/resolvconf-symlink: Keyword 0 arm, #831409
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index d0c26696f14e..4236454ba1f2 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-02-06 7:40 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-02-06 7:40 UTC (permalink / raw
To: gentoo-commits
commit: dd1588dc42444a0f537c8fa4141f636a3e22ca21
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 6 07:39:33 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 6 07:39:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1588dc
net-dns/resolvconf-symlink: Keyword 0 arm64, #831409
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index 4236454ba1f2..a42f8692f4e2 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-02-06 7:44 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-02-06 7:44 UTC (permalink / raw
To: gentoo-commits
commit: a15dd6898c40d29c722a4f19da0ec9a99a0ddd81
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 6 07:43:39 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 6 07:44:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a15dd689
net-dns/resolvconf-symlink: keyword 0 for ~alpha, ~mips, ~ppc, ~ppc64, ~s390
Let's do it ALLARCHES given how simple the ebuild is to avoid
wasting CPU/time.
Also, if there were any issues, it would've shown up on the
arches (some exotic) tested already.
Closes: https://bugs.gentoo.org/831409
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index a42f8692f4e2..fae0e1958df1 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2022-02-06 7:51 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-02-06 7:51 UTC (permalink / raw
To: gentoo-commits
commit: e581517923a42fd6292991633ea059f06db67a3e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 6 07:49:23 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 6 07:49:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5815179
net-dns/resolvconf-symlink: mark ALLARCHES
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-dns/resolvconf-symlink/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-dns/resolvconf-symlink/metadata.xml b/net-dns/resolvconf-symlink/metadata.xml
index 11cc45f2e4f5..2c89bdd7abe6 100644
--- a/net-dns/resolvconf-symlink/metadata.xml
+++ b/net-dns/resolvconf-symlink/metadata.xml
@@ -5,6 +5,7 @@
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
+ <stabilize-allarches/>
<use>
<flag name="symlink">Actually replace /etc/resolv.conf with a
symlink. Without this flag, the ebuild is a no-op.</flag>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/
@ 2023-06-07 13:09 Ben Kohler
0 siblings, 0 replies; 13+ messages in thread
From: Ben Kohler @ 2023-06-07 13:09 UTC (permalink / raw
To: gentoo-commits
commit: 2653a9c20b599e6534614830d45d5c74bd7e59e1
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 7 13:08:30 2023 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Jun 7 13:08:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2653a9c2
net-dns/resolvconf-symlink: keyword 0 for ~loong
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index fae0e1958df1..c657ee83055f 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="+symlink"
pkg_preinst() {
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-06-07 13:09 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-05 6:34 [gentoo-commits] repo/gentoo:master commit in: net-dns/resolvconf-symlink/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-06-07 13:09 Ben Kohler
2022-02-06 7:51 Sam James
2022-02-06 7:44 Sam James
2022-02-06 7:40 Sam James
2022-01-29 7:23 Sam James
2022-01-21 12:25 Sam James
2022-01-21 12:25 Sam James
2022-01-19 22:53 James Le Cuirot
2022-01-19 13:51 Marek Szuba
2020-01-03 20:40 Michał Górny
2020-01-03 20:40 Michał Górny
2020-01-03 20:40 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox