mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
73aa6b610e
query002 and sync1100 had PACMAN_OUTPUT rules that looked at the build/install date (localized). Instead of looking at the month name, it will now check the year, which should be safer. I also had to add another pactest (query005) for keeping the same coverage. Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
22 lines
513 B
Python
22 lines
513 B
Python
self.description = "Query info on a package"
|
|
|
|
p = pmpkg("foobar")
|
|
p.files = ["bin/foobar"]
|
|
p.desc = "test description"
|
|
p.groups = ["foo"]
|
|
p.url = "http://www.archlinux.org"
|
|
p.license = "GPL2"
|
|
p.arch = "i686"
|
|
# test old style date
|
|
p.builddate = "Mon Oct 1 01:40:21 2007 UTC"
|
|
p.packager = "Arch Linux"
|
|
|
|
self.addpkg2db("local", p)
|
|
|
|
self.args = "-Qi %s" % p.name
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PACMAN_OUTPUT=%s" % p.name)
|
|
self.addrule("PACMAN_OUTPUT=%s" % p.desc)
|
|
self.addrule("PACMAN_OUTPUT=2007")
|