Class: LinuxAdmin::Deb
Constant Summary collapse
- APT_CACHE_CMD =
'/usr/bin/apt-cache'
Class Method Summary collapse
- .from_line(apt_cache_line, in_description = false) ⇒ Object
- .from_string(apt_cache_string) ⇒ Object
- .info(pkg) ⇒ Object
Class Method Details
.from_line(apt_cache_line, in_description = false) ⇒ Object
5 6 7 8 9 |
# File 'lib/linux_admin/deb.rb', line 5 def self.from_line(apt_cache_line, in_description=false) tag,value = apt_cache_line.split(':') tag = tag.strip.downcase [tag, value] end |
.from_string(apt_cache_string) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/linux_admin/deb.rb', line 11 def self.from_string(apt_cache_string) in_description = false apt_cache_string.split("\n").each.with_object({}) do |line,deb| tag,value = self.from_line(line) if tag == 'description-en' in_description = true elsif tag == 'homepage' in_description = false end if in_description && tag != 'description-en' deb['description-en'] << line else deb[tag] = value.strip end end end |
.info(pkg) ⇒ Object
29 30 31 |
# File 'lib/linux_admin/deb.rb', line 29 def self.info(pkg) from_string(Common.run!(APT_CACHE_CMD, :params => ["show", pkg]).output) end |