mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
lang/ruby19: update to Ruby 1.9.3-p547
This commit is contained in:
parent
191ebfa3ca
commit
8af92cd6d1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=362982
@ -177,9 +177,9 @@ RUBY?= ${LOCALBASE}/bin/${RUBY_NAME}
|
||||
# Ruby 1.9
|
||||
#
|
||||
RUBY_RELVERSION= 1.9.3
|
||||
RUBY_PORTREVISION= 2
|
||||
RUBY_PORTREVISION= 0
|
||||
RUBY_PORTEPOCH= 1
|
||||
RUBY_PATCHLEVEL= 484
|
||||
RUBY_PATCHLEVEL= 547
|
||||
|
||||
#
|
||||
# PLIST_SUB helpers
|
||||
|
@ -330,7 +330,8 @@ validate:
|
||||
@${MKDIR} ${WRKSRC}/rubyspec
|
||||
rm -rf ${WRKSRC}/rubyspec/*
|
||||
(cd ${WRKSRC}/rubyspec && git clone git://github.com/rubyspec/rubyspec.git)
|
||||
(cd ${WRKSRC}/rubyspec/rubyspec && git checkout 1.x)
|
||||
(cd ${WRKSRC}/rubyspec && git clone git://github.com/rubyspec/mspec.git)
|
||||
(cd ${WRKSRC}/rubyspec/rubyspec && env PATH=${WRKSRC}/rubyspec/mspec/bin:${PATH} mspec -t ${STAGEDIR}${PREFIX}/bin/ruby${RUBY_SUFFIX})
|
||||
(cd ${WRKSRC}/rubyspec/rubyspec && env PATH=${WRKSRC}/rubyspec/mspec/bin:${PATH} mspec -t ${PREFIX}/bin/ruby${RUBY_SUFFIX} .)
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (ruby/ruby-1.9.3-p484.tar.bz2) = 0fdc6e860d0023ba7b94c7a0cf1f7d32908b65b526246de9dfd5bb39d0d7922b
|
||||
SIZE (ruby/ruby-1.9.3-p484.tar.bz2) = 10041514
|
||||
SHA256 (ruby/ruby-1.9.3-p547.tar.bz2) = ef588ed3ff53009b4c1833c83187ae252dd6c20db45e21a326cd4a16a102ef4c
|
||||
SIZE (ruby/ruby-1.9.3-p547.tar.bz2) = 10036828
|
||||
|
@ -1,19 +0,0 @@
|
||||
--- thread_pthread.c.orig 2013-03-28 10:10:00.000000000 +0000
|
||||
+++ thread_pthread.c 2014-01-25 02:59:12.085473158 +0000
|
||||
@@ -1193,13 +1193,13 @@
|
||||
|
||||
pthread_attr_init(&attr);
|
||||
#ifdef PTHREAD_STACK_MIN
|
||||
- if (PTHREAD_STACK_MIN < 4096 * 3) {
|
||||
+ if (PTHREAD_STACK_MIN < 4096 * 4) {
|
||||
/* Allocate the machine stack for the timer thread
|
||||
- * at least 12KB (3 pages). FreeBSD 8.2 AMD64 causes
|
||||
+ * at least 16KB (4 pages). FreeBSD 8.2 AMD64 causes
|
||||
* machine stack overflow only with PTHREAD_STACK_MIN.
|
||||
*/
|
||||
pthread_attr_setstacksize(&attr,
|
||||
- 4096 * 3 + (THREAD_DEBUG ? BUFSIZ : 0));
|
||||
+ 4096 * 4 + (THREAD_DEBUG ? BUFSIZ : 0));
|
||||
}
|
||||
else {
|
||||
pthread_attr_setstacksize(&attr,
|
Loading…
Reference in New Issue
Block a user