Sha256: 874827e97c272fdf16edff10946c40ab8da08fc51e52ef04493c42468e6b9cf7
Contents?: true
Size: 1.79 KB
Versions: 2
Compression:
Stored size: 1.79 KB
Contents
# Copyright (C) 2011 Cornelius Schumacher <schumacher@kde.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. class Suse attr_accessor :name, :version def is_it_me? begin File.open "/etc/SuSE-release" do |file| if file.readline =~ /^openSUSE/ @name = "openSUSE" file.readline =~ /VERSION = (.*)/ @version = $1 end end true rescue Errno::ENOENT false end end def installed handler packages = Hash.new `rpmqpack`.each_line do |package| packages[package.chomp] = true end unknown = 0 installed = Array.new handler.manifests.each do |manifest| unknown += 1 package_section = manifest["packages"] next unless package_section name_section = package_section[name] next unless name_section version_section = name_section[version] next unless version_section if packages.has_key? version_section["package_name"] installed.push manifest unknown -= 1 end end STDERR.puts "Warning: #{unknown} libraries don't have package information" installed end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
inqlude-0.0.3 | lib/distros/suse.rb |
inqlude-0.0.2 | lib/distros/suse.rb |