Change fake packages to use properties of the dependency package(s). (#8167)

Fix linter issues

Co-authored-by: chronos <noreply@github.com>
This commit is contained in:
Ed Reel
2023-04-10 07:40:01 -05:00
committed by GitHub
parent d51f4eeadd
commit 2a24abc070
41 changed files with 248 additions and 210 deletions

View File

@@ -1,11 +1,12 @@
require 'package'
require_relative 'util_linux'
class Libuuid < Package
description 'Portable UUID C library'
description 'Portable UUID C library. Bundled with util_linux.'
homepage 'https://sourceforge.net/projects/libuuid/'
version '1.3.0'
license 'BSD' # The actual libuuid library
compatibility 'all'
version Util_linux.version.to_s
license Util_linux.license.to_s
compatibility Util_linux.compatibility.to_s
is_fake