From: Derrick M. <d2...@pe...> - 2003-08-01 00:01:28
|
I get the following error from umlbuilder-1.50-0: $ umlbuilder --distro Redhat9.0 --rpmdir rpms/ --dir ~/redhat9/ \ > --hostname redhat9 --ipaddr 10.0.0.5 --fstype ext3 --fssize 4098 \ > --modules graphical-internet Indexing RPMS ========================================|100% Done. Successful Calculating packages, dependencies and install order Traceback (most recent call last): File "/usr/lib/uml/umlbuilder/uml_mkdistro.py", line 542, in ? sys.exit(Installer().install(sys.argv[1:],progress=InstallerProgress())) File "/usr/lib/uml/umlbuilder/uml_mkdistro.py", line 378, in install self.calculaterpms(progress) File "/usr/lib/uml/umlbuilder/uml_mkdistro.py", line 411, in calculaterpms self.options._rpms=self.packages.getalldeps(pkgs,progress) File "/usr/lib/uml/umlbuilder/pkg_collection.py", line 372, in getalldeps for i in packages: p.append(self.getrpmname(i)) File "/usr/lib/uml/umlbuilder/pkg_collection.py", line 285, in getrpmname raise ValueError, "No rpm matching "+package ValueError: No rpm matching compat-libstdc++-7.3 This fixes the problem: --- Redhat9.0.p.org Thu Jul 31 17:23:31 2003 +++ Redhat9.0.p Thu Jul 31 17:24:06 2003 @@ -146,7 +146,7 @@ 'balsa', 'evolution', 'gaim', 'galeon', 'gnomemeeting', 'mozilla', 'mozilla-psm', 'mozilla-chat', 'mozilla-mail', 'pan', 'xchat', - 'indexhtml', 'licq-kde', 'quanta', 'compat-libstdc++-7.3' + 'indexhtml', 'licq-kde', 'quanta', 'compat-libstdc++' ), I also tried the following command but the install to prints several errors before hanging on cups-1.1.17-13.i386.rpm. $ umlbuilder --distro Redhat9.0 --rpmdir rpms/ --dir ~/redhat9/ \ > --hostname redhat9 --ipaddr 10.0.0.5 --fstype ext3 --fssize 4098 \ > --modules gnome-desktop,kde-desktop,graphical-internet,text-internet,sound-and-video,graphics,office,editors,system-tools,fontsndicts,development-tools,x-software-development |