public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/qa-scripts:master commit in: htdocs/, genrdeps/
@ 2019-01-19 16:17 Mike Gilbert
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Gilbert @ 2019-01-19 16:17 UTC (permalink / raw
  To: gentoo-commits

commit:     698acf010cf56a444823682b681909dc32e12191
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 18 18:09:52 2019 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Jan 18 18:14:59 2019 +0000
URL:        https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=698acf01

genrdeps: scan for BDEPEND

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 genrdeps/run-genrdeps-index.sh | 9 +++++++++
 htdocs/index.html              | 7 ++++---
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/genrdeps/run-genrdeps-index.sh b/genrdeps/run-genrdeps-index.sh
index 819940d..fd89301 100755
--- a/genrdeps/run-genrdeps-index.sh
+++ b/genrdeps/run-genrdeps-index.sh
@@ -29,3 +29,12 @@ popd > /dev/null
 mv pindex pindex_old
 mv .pindex_new pindex
 rm -rf pindex_old
+
+mkdir .bindex_new
+pushd .bindex_new > /dev/null
+/var/www/qa-reports.gentoo.org/qa-scripts/genrdeps/genrdeps.py BDEPEND
+find | cut -c 3- > .bindex
+popd > /dev/null
+mv bindex bindex_old
+mv .bindex_new bindex
+rm -rf bindex_old

diff --git a/htdocs/index.html b/htdocs/index.html
index 308821a..1f84ef3 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -105,9 +105,10 @@
             <div class="col-lg-4">
               <h3>Tree-wide Scanning</h3>
               <div class="list-group">
-                <a href="/output/genrdeps/rindex/" class="list-group-item">Reverse runtime dependencies</a>
-                <a href="/output/genrdeps/dindex/" class="list-group-item">Reverse buildtime dependencies</a>
-                <a href="/output/genrdeps/pindex/" class="list-group-item">Reverse post dependencies</a>
+                <a href="/output/genrdeps/rindex/" class="list-group-item">Reverse runtime dependencies (RDEPEND)</a>
+                <a href="/output/genrdeps/dindex/" class="list-group-item">Reverse buildtime dependencies (DEPEND)</a>
+                <a href="/output/genrdeps/pindex/" class="list-group-item">Reverse post dependencies (PDEPEND)</a>
+                <a href="/output/genrdeps/bindex/" class="list-group-item">Reverse buildtime dependencies (BDEPEND)</a>
                 <a href="/output/eapi_usage.txt" class="list-group-item">EAPI Usage</a>
                 <a href="/output/eapi-per-eclass" class="list-group-item">EAPI Usage per eclass</a>
                 <a href="/output/eapi-per-eclass/matrix.txt" class="list-group-item">Eclass-EAPI usage matrix</a>


^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] proj/qa-scripts:master commit in: htdocs/, genrdeps/
@ 2011-04-10 11:46 Tomas Chvatal
  0 siblings, 0 replies; 2+ messages in thread
From: Tomas Chvatal @ 2011-04-10 11:46 UTC (permalink / raw
  To: gentoo-commits

commit:     8092cdf2cc0982b615c8b40a060ab1a063828fac
Author:     Ulrich Mueller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 11:42:25 2011 +0000
Commit:     Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 11:46:39 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qa-scripts.git;a=commit;h=8092cdf2

Scan for post dependencies (PDEPEND) too.

---
 genrdeps/run-genrdeps-index.sh |    6 ++++++
 htdocs/index.html              |    2 ++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/genrdeps/run-genrdeps-index.sh b/genrdeps/run-genrdeps-index.sh
index 77f84aa..09cf7ac 100755
--- a/genrdeps/run-genrdeps-index.sh
+++ b/genrdeps/run-genrdeps-index.sh
@@ -13,3 +13,9 @@ mkdir ${OUTPUTDIR}/dindex
 cd ${OUTPUTDIR}/dindex
 /var/www/qa-reports.gentoo.org/qa-scripts/genrdeps/genrdeps.py DEPEND
 find | cut -c 3- > .dindex
+
+rm -rf ${OUTPUTDIR}/pindex
+mkdir ${OUTPUTDIR}/pindex
+cd ${OUTPUTDIR}/pindex
+/var/www/qa-reports.gentoo.org/qa-scripts/genrdeps/genrdeps.py PDEPEND
+find | cut -c 3- > .pindex

diff --git a/htdocs/index.html b/htdocs/index.html
index f2ffde2..0f11314 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -43,6 +43,8 @@
 	<br />
 	<a href=http://qa-reports.gentoo.org/output/genrdeps/dindex/>Reverse buildtime dependencies</a>
 	<br />
+	<a href=http://qa-reports.gentoo.org/output/genrdeps/pindex/>Reverse post dependencies</a>
+	<br />
 	<a href=http://qa-reports.gentoo.org/output/eapi_usage.txt>EAPI Usage</a>&nbsp;|&nbsp;
 	<a href=http://qa-reports.gentoo.org/output/eapi-per-eclass/>EAPI Usage per eclass</a>
 	<br />



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-01-19 16:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-19 16:17 [gentoo-commits] proj/qa-scripts:master commit in: htdocs/, genrdeps/ Mike Gilbert
  -- strict thread matches above, loose matches on Subject: below --
2011-04-10 11:46 Tomas Chvatal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox