blob: 74ffcc2edb0d1c54727efef1d992e1b939122684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/usr/bin/ruby
require 'zypp'
include Zypp
# Load installed packages
z = ZYppFactory::instance.getZYpp
z.initializeTarget( Pathname.new("/") )
z.target.load;
tmp_dir = TmpDir.new()
opts = RepoManagerOptions.new(tmp_dir.path())
repo_manager = RepoManager.new(opts)
repo_info = RepoInfo.new()
repo_info.setAlias("factorytest")
repo_info.setName("Test Repo for Factory.")
repo_info.setEnabled(true)
repo_info.setAutorefresh(false)
url = Url.new("http://download.opensuse.org/factory-tested/repo/oss/")
repo_info.addBaseUrl(url)
#repo_manager.addRepository(repo_info)
KeyRing.setDefaultAccept( KeyRing::ACCEPT_UNKNOWNKEY |
KeyRing::ACCEPT_VERIFICATION_FAILED | KeyRing::ACCEPT_UNSIGNED_FILE |
KeyRing::TRUST_KEY_TEMPORARILY)
repos = repo_manager.knownRepositories()
repos.each do | repo |
repo_manager.refreshMetadata(repo)
repo_manager.buildCache(repo)
repo_manager.loadFromCache(repo)
end
# puts pool.class
pool = z.pool()
pool.each do | p |
#puts p.class
r = p.resolvable
#puts r.class
puts "#{r.kind} #{r.name} #{r.edition} #{r.arch}"
if isKindPackage(p)
changes = asKindPackage(p).changelog
puts changes.class
puts changes.size
changes.each do | c |
puts c.date
puts c.author
puts c.text
end
end
puts " Summary: #{r.summary}"
puts " DownloadSize: #{r.downloadSize}"
puts " Vendor: #{r.vendor}"
puts " Buildtime: #{r.buildtime}"
d = r.dep(Dep.PROVIDES)
# puts d.class
d.each do | x |
# puts y.class
puts " Provides: #{x.to_s}"
end
puts
end
|