Commit e5b0fa4d authored by Casey Strouse's avatar Casey Strouse

Update redis from 4.0.1 to 4.0.2

This is a bugfix and maintenance release.

Tested on XE500C13-K01US.
parent 2ce9d8f2
...@@ -3,21 +3,13 @@ require 'package' ...@@ -3,21 +3,13 @@ require 'package'
class Redis < Package class Redis < Package
description 'Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.' description 'Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.'
homepage 'https://redis.io/' homepage 'https://redis.io/'
version '4.0.1' version '4.0.2'
source_url 'http://download.redis.io/releases/redis-4.0.1.tar.gz' source_url 'http://download.redis.io/releases/redis-4.0.2.tar.gz'
source_sha256 '2049cd6ae9167f258705081a6ef23bb80b7eff9ff3d0d7481e89510f27457591' source_sha256 'b1a0915dbc91b979d06df1977fe594c3fa9b189f1f3d38743a2948c9f7634813'
binary_url ({ binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/redis-4.0.1-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/redis-4.0.1-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/redis-4.0.1-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/redis-4.0.1-chromeos-x86_64.tar.xz',
}) })
binary_sha256 ({ binary_sha256 ({
aarch64: 'bbfe8f3f61405a5afadfd724e969db4ad37c562e764764377316b881d83e5011',
armv7l: 'bbfe8f3f61405a5afadfd724e969db4ad37c562e764764377316b881d83e5011',
i686: '995ef2a996369cec2cfad0f60bcb42ab36a38d88ed207d10bcf4e67ea93a9d3d',
x86_64: '7d8affbafbe7707ca4ee471c0057ececda07ab0fa6136cea3adafbef3c9f820f',
}) })
depends_on 'buildessential' depends_on 'buildessential'
...@@ -27,7 +19,7 @@ class Redis < Package ...@@ -27,7 +19,7 @@ class Redis < Package
end end
def self.install def self.install
system "make", "PREFIX=#{CREW_DEST_DIR}/usr/local", "install" system "make", "PREFIX=#{CREW_DEST_PREFIX}", "install"
puts "-----------------" puts "-----------------"
puts "Installation success!" puts "Installation success!"
puts "To start the redis server: redis-server --daemonize yes" puts "To start the redis server: redis-server --daemonize yes"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment