rPATH 的 conary 配方中有没有办法获取现有包的版本
我正在尝试...
loadRecipe('existingpackage') class NewPackage(PackageRecipe): name = 'newpackage-test' p = existingpackage.version print p
但出现错误,现有包未定义
i am trying ...
loadRecipe('existingpackage') class NewPackage(PackageRecipe): name = 'newpackage-test' p = existingpackage.version print p
but getting error, that existingpackage is not defined
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你猜对了,loadRecipe 需要包的名称。但是要访问配方中的信息,您应该使用那里定义的类,而不是包名称或配方文件名。 (这也是很自然的。有时配方可以定义多个类。)
例如,在一个 firefox 插件中,我想要 firefox 的版本,以便可以将该插件安装到正确的位置。
我加载 Firefox 配方并使用 Firefox.version 来获取我想要的内容。
You got it right that loadRecipe needs the name of the package. But to access information from the recipe, you should use the class defined there, not the package name or the recipe filename. (That's also quite natural. Sometimes recipes can define more than one classes.)
For example, in a firefox plugin, I want the version of firefox, so that the plugin can be installed to the right place.
I load the firefox recipe and use Firefox.version to get what I want.
因为 conary 就像(几乎)在 python 中编码:
p = .version
print '你的包的版本号:' + p
rhs = p.split("_",1)
print '最新的软件包变更集:' + rhs[1]
since conary is just like (almost) coding in python:
p = .version
print 'your package's Version Number: ' + p
rhs = p.split("_",1)
print 'Latest Your Package's Changeset: ' + rhs[1]