Commit 6bfe53a9 authored by sirex's avatar sirex

New version of rubygems includes symlinks in .tgz archyve and extracted by

setuptools.archive_util extractor ignores all symlinks. This causes missing
files in extracted folder. Now rubygemsrecipe downloads .zip archyve instead of
.tgz.
parent da1e2828
Change History Change History
************** **************
0.1.2 (2011-11-09)
==================
- New version of rubygems includes symlinks in .tgz archyve and extracted by
setuptools.archive_util extractor ignores all symlinks. This causes missing
files in extracted folder. Now rubygemsrecipe downloads .zip archyve instead
of .tgz.
0.1.1 (2011-10-04) 0.1.1 (2011-10-04)
================== ==================
......
...@@ -82,7 +82,7 @@ class Recipe(object): ...@@ -82,7 +82,7 @@ class Recipe(object):
s = f.read() s = f.read()
f.close() f.close()
r = re.search(r'http://production.cf.rubygems.org/rubygems/' r = re.search(r'http://production.cf.rubygems.org/rubygems/'
r'rubygems-([0-9.]+).tgz', s) r'rubygems-([0-9.]+).zip', s)
if r: if r:
url = r.group(0) url = r.group(0)
version = r.group(1) version = r.group(1)
......
...@@ -4,7 +4,7 @@ import os ...@@ -4,7 +4,7 @@ import os
from distutils.core import setup from distutils.core import setup
version = '0.1.1' version = '0.1.2'
name = 'rubygemsrecipe' name = 'rubygemsrecipe'
......
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