RU/2: Форум. Общение пользователей и разработчиков OS/2 (eCS). : Помогите разобраться с yum/rpm


Список сообщений | Написать новое | Ответить на сообщение | Домой Поиск:
Предыдущее сообщение | Следующее сообщение
From : Slavik Gnatenko, 2:467/99, http://moveton.tk
To : Igor Vaskov
Subj : Помогите разобраться с yum/rpm

> Помогите починить yum.
>
> Выдает кривой урл и отказывается работать - файл не найден. Понятно, что урл кривой.
>
> repomd.xml
>
> Должно быть
> repomd.xml
>
> Переустановка пакета yum из rpm-yum-bootstrap-1_5-p4.wpi архива не дала результатов. Что делать дальше?
Был бы в линуксе - читал бы советы по линуксу :) Но в оси свой порт, поэтому полезнее в его исходник и смотреть. Вот вижу в yum/config.py:
=================
def _getsysver(installroot, distroverpkg):
'''Calculate the release version for the system.

@param installroot: The value of the installroot option.
@param distroverpkg: The value of the distroverpkg option.
@return: The release version as a string (eg. '4' for FC4)
'''
ts = rpmUtils.transaction.initReadOnlyTransaction(root=installroot)
ts.pushVSFlags(~(rpm._RPMVSF_NOSIGNATURES|rpm._RPMVSF_NODIGESTS))
try:
idx = ts.dbMatch('provides', distroverpkg)
except TypeError, e:
# This is code for "cannot open rpmdb"
# this is for pep 352 compliance on python 2.6 and above :(
if sys.hexversion < 0x02050000:
if hasattr(e,'message'):
raise Errors.YumBaseError("Error: " + str(e.message))
else:
raise Errors.YumBaseError("Error: " + str(e))
raise Errors.YumBaseError("Error: " + str(e))
except rpm.error, e:
# This is the "new" code for "cannot open rpmdb", 4.8.0 ish
raise Errors.YumBaseError("Error: " + str(e))
# we're going to take the first one - if there is more than one of these
# then the user needs a beating
if idx.count() == 0:
releasever = '$releasever'
else:
hdr = idx.next()
releasever = hdr['version']
del hdr
del idx
del ts
return releasever
=================

Надо полагать, что "releasever = '$releasever'" - это то, что у тебя срабатывает. Как видим, это значит, что у тебя не установлен пакет, который даёт то, что в параметре distroverpkg. Если посмотреть вызывателя, то это "redhat-release". В моей системе такой файл предоставляет пакет os2-release-00-2.oc00.noarch. У тебя есть хотя бы похожий пакет в базе rpm? Например, "rpm -qa | grep os2" (без кавычек) чего показывает?

Fri 10 Apr 2020 04:10 Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/2010




Programmed by Dmitri Maximovich, Dmitry I. Platonoff, Eugen Kuleshov.
25.09.99 (c) 1999, RU/2. All rights reserved.
Rewritten by Dmitry Ban. All rights ignored.