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
**************
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)
==================
......
......@@ -82,7 +82,7 @@ class Recipe(object):
s = f.read()
f.close()
r = re.search(r'http://production.cf.rubygems.org/rubygems/'
r'rubygems-([0-9.]+).tgz', s)
r'rubygems-([0-9.]+).zip', s)
if r:
url = r.group(0)
version = r.group(1)
......
......@@ -4,7 +4,7 @@ import os
from distutils.core import setup
version = '0.1.1'
version = '0.1.2'
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