diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2011-03-22 16:23:42 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2011-04-07 21:42:49 +0000 |
commit | ca7345b3c0a254a054d7f21a63dd28195cc0f480 (patch) | |
tree | 3ec6487b3833ca17cd43f127cd762a8e55d269b9 | |
parent | Improve cElementTree import. (diff) | |
download | rbot-gentoo-ca7345b3c0a254a054d7f21a63dd28195cc0f480.tar.gz rbot-gentoo-ca7345b3c0a254a054d7f21a63dd28195cc0f480.tar.bz2 rbot-gentoo-ca7345b3c0a254a054d7f21a63dd28195cc0f480.zip |
rdeps: New URL for {r,d}index, bug 359977
Use qa-reports.gentoo.org instead of tinderbox.dev.gentoo.org
-rw-r--r-- | gentoo-data.rb | 4 | ||||
-rw-r--r-- | gentoo-scripts/DOCS | 8 | ||||
-rw-r--r-- | gentoo-scripts/grabrdeps.sh | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/gentoo-data.rb b/gentoo-data.rb index 43d86be..f4e6608 100644 --- a/gentoo-data.rb +++ b/gentoo-data.rb @@ -295,11 +295,11 @@ class GentooPlugin < Plugin end def ddep(m, params) - depcommon(m, 'DEPEND', 'http://tinderbox.dev.gentoo.org/misc/dindex/', params) + depcommon(m, 'DEPEND', 'http://qa-reports.gentoo.org/output/genrdeps/dindex/', params) end def rdep(m, params) - depcommon(m, 'RDEPEND', 'http://tinderbox.dev.gentoo.org/misc/rindex/', params) + depcommon(m, 'RDEPEND', 'http://qa-reports.gentoo.org/output/genrdeps/rindex/', params) end def earch(m, params) diff --git a/gentoo-scripts/DOCS b/gentoo-scripts/DOCS index 3b51e0b..63ec313 100644 --- a/gentoo-scripts/DOCS +++ b/gentoo-scripts/DOCS @@ -26,14 +26,14 @@ wget -O - -q http://dev.gentoo.org/~solar/.alias | grep ^${arg} ddep PACKAGE ------------ -1. Validate against http://tinderbox.x86.dev.gentoo.org/misc/rindex/.rindex -2. http://tinderbox.dev.gentoo.org/misc/dindex/${CAT}/${PN} +1. Validate against http://qa-reports.gentoo.org/output/genrdeps/dindex/.dindex +2. http://qa-reports.gentoo.org/output/genrdeps/dindex/${CAT}/${PN} 3. See grabrdeps.sh rdep PACKAGE ------------ -1. Validate against http://tinderbox.x86.dev.gentoo.org/misc/rindex/.rindex -2. http://tinderbox.dev.gentoo.org/misc/rindex/${CAT}/${PN} +1. Validate against http://qa-reports.gentoo.org/output/genrdeps/dindex/.dindex +2. http://qa-reports.gentoo.org/output/genrdeps/rindex/${CAT}/${PN} 3. See grabrdeps.sh maintainer PACKAGE diff --git a/gentoo-scripts/grabrdeps.sh b/gentoo-scripts/grabrdeps.sh index 332b6c1..f48a5ca 100644 --- a/gentoo-scripts/grabrdeps.sh +++ b/gentoo-scripts/grabrdeps.sh @@ -4,7 +4,7 @@ x="$1" cd ~ if [ "${x/\// }" == "${x}" ]; then - wget -q -O ~/rindex.cache http://tinderbox.x86.dev.gentoo.org/misc/rindex/.rindex + wget -q -O ~/rindex.cache http://qa-reports.gentoo.org/output/genrdeps/rindex/.rindex x=$(grep /${x}$ ~/rindex.cache) x=$(echo -n ${x} |tr '\n' ' ') if [ "${x/ /}" != "${x}" ]; then @@ -14,7 +14,7 @@ if [ "${x/\// }" == "${x}" ]; then [[ $x == "" ]] && exit 1 fi -foo=$(wget -q -O - http://tinderbox.x86.dev.gentoo.org/misc/rindex/$x) +foo=$(wget -q -O - http://qa-reports.gentoo.org/output/genrdeps/rindex/$x) if [[ $foo != "" ]]; then for pkg in ${foo}; do cpv=${pkg%:*} |