Share your experiences and connect with fellow developers to discover how to build and manage open source software for the AIX operating system
A good example of an opensource repository with a repoview index is rpmfusion:RepoView: "RPM Fusion Fedora free 31 updates - ppc64le"
Could this be implemented in the aixtoolbox repositories?I downloaded all the repodata for aixtoolbox to my internal web server and built the repoview index and pages.REPODATA:http://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/repodata/http://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/noarch/repodata/http://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc-6.1/repodata/http://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc-7.1/repodata/http://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc-7.2/repodata/EXAMPLE:$ mkdir repodata$ cd repodata$ export URL=http://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/repodata/$ wget -N $URL$ grep href index.html | awk -F\" '{print $6}' | grep -v '../' > list$ for N in $(cat list); do wget -N $URL/$N; done$ cd ..$ repoview .$ ls repoviewMy webserver has the Linux repoview command but I noticed that it is not ported to aixtoolbox.Thanks