rPATH 的 conary 配方中有没有办法获取现有包的版本

发布于 2024-11-03 04:46:45 字数 185 浏览 6 评论 0原文

我正在尝试...

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情何以堪。 2024-11-10 04:46:45

你猜对了,loadRecipe 需要包的名称。但是要访问配方中的信息,您应该使用那里定义的,而不是包名称或配方文件名。 (这也是很自然的。有时配方可以定义多个类。)

例如,在一个 firefox 插件中,我想要 firefox 的版本,以便可以将该插件安装到正确的位置。

loadRecipe('firefox')
class FirefoxPackageSearch(PackageRecipe):

    [snip]

    def setup(r):
        [snip]
        r.macros.ff_version = '.'.join(FireFox.version.split('.')[:2])

我加载 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.

loadRecipe('firefox')
class FirefoxPackageSearch(PackageRecipe):

    [snip]

    def setup(r):
        [snip]
        r.macros.ff_version = '.'.join(FireFox.version.split('.')[:2])

I load the firefox recipe and use Firefox.version to get what I want.

缺⑴份安定 2024-11-10 04:46:45

因为 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]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文