From 984cbfd3fd77a65217b68bbb0d97eb573f1a0696 Mon Sep 17 00:00:00 2001 From: Ed Reel Date: Sat, 26 Feb 2022 20:44:56 -0600 Subject: [PATCH] Uthash 2.1.0 => 2.3.0 (#6782) --- packages/uthash.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/uthash.rb b/packages/uthash.rb index 2fbcc56bd..872b9fddf 100644 --- a/packages/uthash.rb +++ b/packages/uthash.rb @@ -3,14 +3,14 @@ require 'package' class Uthash < Package description 'A hash table for C structures' homepage 'https://troydhanson.github.com/uthash/' - version '2.1.0' + version '2.3.0' license 'BSD-1' compatibility 'all' - source_url 'https://github.com/troydhanson/uthash/archive/v2.1.0.tar.gz' - source_sha256 '152ccd8e64d0f495377232e3964d06c7ec8bb8c3fbd3217f8a5702614f9a669e' + source_url 'https://github.com/troydhanson/uthash/archive/v2.3.0.tar.gz' + source_sha256 'e10382ab75518bad8319eb922ad04f907cb20cccb451a3aa980c9d005e661acc' def self.install FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/include/" - FileUtils.cp_r Dir.glob('./src/*'), "#{CREW_DEST_PREFIX}/include/" + FileUtils.cp_r Dir['./src/*'], "#{CREW_DEST_PREFIX}/include/" end end