Yamashita, Yuu
d8559b9749
Workaround for performance issue with conda.txt
...
The performance issue must be caused by too many I/O requests to
`conda.txt` from fgrep. This inline expansion should work to reduce # of
read to the `conda.txt`.
original performance:
```
% git rev-parse HEAD
4f76be6a12
% time bash -c 'pyenv rehash'
bash -c 'pyenv rehash' 0.05s user 0.02s system 76% cpu 0.089 total
```
previous commit: ==> 4x slower than original
```
% git rev-parse HEAD
4469d51ef7
% time bash -c 'pyenv rehash'
bash -c 'pyenv rehash' 0.06s user 0.03s system 25% cpu 0.358 total
```
with this workaround: ==> almost same as original
```
% git rev-parse HEAD
3ffe91bdbc69220eaecf6e2088229cc27366c3f3
% time bash -c 'pyenv rehash'
bash -c 'pyenv rehash' 0.05s user 0.00s system 68% cpu 0.082 total
```
2016-08-15 05:49:50 +00:00
Yamashita, Yuu
4469d51ef7
Extract conda's system command list to anaconda.txt
2016-08-15 05:48:25 +00:00
Yamashita, Yuu
4f76be6a12
anaconda.bash
is misleading. It's not only for anaconda, but for all conda
2016-08-15 05:40:15 +00:00
Yamashita, Yuu
81b89e16db
Update change log [ci skip]
2016-08-15 05:31:45 +00:00
Yamashita, Yuu
a62f1a4423
Merge pull request #669 from yyuu/rbenv-20160815
...
rbenv 20160815
2016-08-15 14:30:03 +09:00
Yamashita, Yuu
a02f5dde4f
s/rbenv/pyenv/g
2016-08-15 05:22:59 +00:00
Yamashita, Yuu
cf1beda362
Merge remote-tracking branch 'rbenv/master' into rbenv-20160815
2016-08-15 05:14:24 +00:00
Yamashita, Yuu
8aebe3b43d
Update change log [ci skip]
2016-08-15 04:47:22 +00:00
Yamashita, Yuu
9a10674ab9
Merge pull request #668 from yyuu/ruby-build-20160602
...
ruby-build 20160602
2016-08-15 13:45:19 +09:00
Yamashita, Yuu
66c8ca6cff
Import changes in rbenv/ruby-build#979
2016-08-15 04:42:50 +00:00
Yamashita, Yuu
3a1379cb34
Import changes from ruby-build v20160602
2016-08-15 04:40:09 +00:00
Yamashita, Yuu
740fbe4bda
Merge pull request #661 from yyuu/workaroud-bin-python
...
Add workaround for `/bin/python`
2016-08-03 22:48:46 +09:00
Mislav Marohnić
0c7224af95
Merge pull request #919 from yyuu/system-in-bin
...
Add a workaround system executable in `/bin`
2016-08-03 03:58:31 -09:00
Yamashita, Yuu
93ece2ac16
Rewrite with using here document syntax
2016-08-03 06:31:27 +00:00
Yamashita, Yuu
36138f4901
Rewrite with using here document syntax
2016-08-03 06:29:59 +00:00
Yamashita, Yuu
bc8dba4bea
Always create bin
as symlink to framework path if the version was built with --enable-frameowrk
( #590 )
...
Actually I'm not 100% sure what was going on, but it seems CPython build
script may create `bin` as directory instead of symlink even if
`--enable-framework` was specified.
2016-08-03 10:48:44 +09:00
Yamashita, Yuu
1b35cfaa2c
1) Remove useless touch
2) Add explicit shebang line to executable for testing
2016-08-03 01:34:42 +00:00
Yamashita, Yuu
83e874a165
Add explicit shebang to executable for testing
2016-08-03 01:33:35 +00:00
Yamashita, Yuu
8eefa41a4d
Remove useless touch
line
2016-08-03 00:58:05 +00:00
Mislav Marohnić
57a902f36a
Merge pull request #922 from jlduran/update-src-shobj-conf
...
Update `shobj-conf`
2016-08-02 19:04:10 +02:00
Jose Luis Duran
07fd1ae66b
Update shobj-conf
...
Update the `shobj-conf` script imported from bash to support new OSs.
2016-08-02 11:36:37 -03:00
Yamashita, Yuu
b8885e4fe2
Keep using original PATH ordering in test_helper
2016-08-02 00:23:47 +00:00
Yamashita, Yuu
a456528be8
Keep original ordering of PATH configuration
2016-08-02 00:21:28 +00:00
Yamashita, Yuu
6030ea51e4
Add a workaround for system executables in /bin
2016-08-01 00:32:50 +00:00
Yamashita, Yuu
2485257424
Add a test to confirm the prefix doesn't work fine with /bin/ruby
2016-08-01 00:31:11 +00:00
Yamashita, Yuu
5c83c4abb7
Add test for /bin/python
case
2016-08-01 00:19:04 +00:00
Yamashita, Yuu
7da05ee964
v20160726
2016-07-26 08:06:31 +00:00
Yamashita, Yuu
21131ee493
Merge pull request #663 from yyuu/bsd-tar-xz
...
Use `.tar.xz` archive only if `tar` supports `-J` (especially on *BSD)
2016-07-26 16:59:07 +09:00
Yamashita, Yuu
ac07d63780
Add workaround for conflict of rehash
hook between pyenv-virtualenv
2016-07-26 07:47:02 +00:00
Yamashita, Yuu
ad9805a455
Don't need to create temporary files since tar(1) writes to stdout by default
2016-07-26 07:22:47 +00:00
Yamashita, Yuu
e0fdded2cd
Use .tar.xz
archive only if tar
supports -J
(especially on *BSD) ( #654 )
2016-07-25 01:17:22 +00:00
Yamashita, Yuu
4df7cf2dd6
Add workaround for /bin/python
( #628 )
2016-07-21 02:45:27 +00:00
Yamashita, Yuu
e93ae00ca1
Write help message to stdout just like other commands ( #650 , #651 )
2016-07-20 00:25:09 +00:00
Yamashita, Yuu
a761ff602d
Merge pull request #657 from zmwangx/cpython-3.6.0a3
...
Add CPython 3.6.0a3 and remove 3.6.0a2
2016-07-12 17:58:03 +09:00
Zhiming Wang
253d79503d
Remove CPython 3.6.0a2 in favor of 3.6.0a3
2016-07-12 14:39:22 +08:00
Zhiming Wang
f3e7005fb1
Add CPython 3.6.0a3
2016-07-12 14:38:54 +08:00
Yamashita, Yuu
2ad9dfd217
Merge pull request #654 from yyuu/tgz-to-tar-xz
...
Use xz archive instead of gzip archive
2016-07-05 11:25:59 +09:00
Yamashita, Yuu
9e8df34124
MD5 -> SHA256
2016-07-05 02:21:51 +00:00
Yamashita, Yuu
7a61486b5c
PyPy 5.1.1 binary isn't available for ppc64(le)?
2016-07-05 02:14:21 +00:00
Yamashita, Yuu
c3cefd9588
Add anaconda[23]-4.1.0
2016-07-05 00:38:02 +00:00
Yamashita, Yuu
4771e05c53
Use xz archive instead of gzip archive
2016-07-04 09:34:57 +00:00
Yamashita, Yuu
331f68260b
3.4.3: MD5 -> SHA256
2016-07-04 08:52:08 +00:00
Yamashita, Yuu
c803130a9d
Merge pull request #651 from yyuu/sh-help-stderr
...
Messages should not be written to stdout if the command is `sh-` command
2016-07-01 09:13:42 +09:00
Yamashita, Yuu
24ba8ce904
Merge pull request #653 from yyuu/rbenv-20160701
...
rbenv 20160701
2016-07-01 09:05:46 +09:00
Yamashita, Yuu
727b8b02ac
Merge remote-tracking branch 'rbenv/master' into rbenv-20160701
2016-07-01 00:00:35 +00:00
Yamashita, Yuu
de4c2a91d4
Merge pull request #652 from nicktimko/patch-1
...
Use non-broken 3.6.0a2 xz archive
2016-07-01 08:53:23 +09:00
Nick Timkovich
aedbd8d046
Use non-broken 3.6.0a2 xz archive
...
Fixes #647 . Also reduces potential demonic invasions through reduction of `666`s.
2016-06-30 15:41:47 -05:00
Yamashita, Yuu
25d3ca7fdf
Messages should not be written in stdout if the command is sh-
command ( fixes #650 )
2016-06-30 09:48:00 +00:00
Yamashita, Yuu
081f539cbc
Merge pull request #648 from JayH5/fix-pypy-5-3-1
...
pypy-5.3.1: Remove stray text
2016-06-29 19:14:29 +09:00
Jamie Hewland
1e75a11d32
pypy-5.3.1: Remove stray text
2016-06-29 11:50:52 +02:00