ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:110722] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed
@ 2022-11-12  8:02 yasuhirokimura (Yasuhiro KIMURA)
  2022-11-12  8:15 ` [ruby-core:110723] " jeremyevans0 (Jeremy Evans)
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: yasuhirokimura (Yasuhiro KIMURA) @ 2022-11-12  8:02 UTC (permalink / raw)
  To: ruby-core

Issue #19127 has been reported by yasuhirokimura (Yasuhiro KIMURA).

----------------------------------------
Bug #19127: Build of 3.2.0-preview3 fails unless Ruby is already installed
https://bugs.ruby-lang.org/issues/19127

* Author: yasuhirokimura (Yasuhiro KIMURA)
* Status: Open
* Priority: Normal
* ruby -v: 3.2.0-preview3
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
# Steps to reproduce process

1. Make clean install of operating system.
2. Install tools and libraries necessary to build Ruby with release
   archive files (C Compiler, make, libyaml, etc). Keep in mind any
   version of Ruby isn't installed.
3. Download `ruby-3.2.0-preview3.tar.xz`.
4. `tar xfpvJ ruby-3.2.0-preview3.tar.xz`
5. `cd ruby-3.2.0-preview3`
6. `./configure`
7. `make`

# Exptected result

Step 7 finishes successfully.

# What really happens

It fails as following.

```
compiling ruby.c
compiling scheduler.c
compiling shape.c
compiling signal.c
compiling sprintf.c
compiling st.c
compiling strftime.c
compiling string.c
compiling struct.c
compiling symbol.c
compiling thread.c
compiling time.c
compiling transcode.c
compiling transient_heap.c
compiling util.c
compiling variable.c
executable host ruby is required. use --with-baseruby option.
make: *** [uncommon.mk:1232: .revision.time] Error 1
```

# Conditions

Confirmed with following environments.

* Debian 11.5 amd64
* FreeBSD 13.1-RELEASE amd64




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ruby-core:110723] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed
  2022-11-12  8:02 [ruby-core:110722] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed yasuhirokimura (Yasuhiro KIMURA)
@ 2022-11-12  8:15 ` jeremyevans0 (Jeremy Evans)
  2022-11-14  3:20 ` [ruby-core:110742] " nobu (Nobuyoshi Nakada)
  2022-11-14  6:42 ` [ruby-core:110744] " k0kubun (Takashi Kokubun)
  2 siblings, 0 replies; 4+ messages in thread
From: jeremyevans0 (Jeremy Evans) @ 2022-11-12  8:15 UTC (permalink / raw)
  To: ruby-core

Issue #19127 has been updated by jeremyevans0 (Jeremy Evans).


This also happens on OpenBSD.  I tested with a current OpenBSD snapshot and reproduced, but I assume it also happens on supported OpenBSD releases (7.1 and 7.2).

With OpenBSD make, the error is:

```
*** Error 1 in /usr/obj/ports/ruby-3.2.0-preview3/ruby-3.2.0-preview3 (Makefile:1958 './.revision.time')
```

----------------------------------------
Bug #19127: Build of 3.2.0-preview3 fails unless Ruby is already installed
https://bugs.ruby-lang.org/issues/19127#change-100060

* Author: yasuhirokimura (Yasuhiro KIMURA)
* Status: Open
* Priority: Normal
* ruby -v: 3.2.0-preview3
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
# Steps to reproduce process

1. Make clean install of operating system.
2. Install tools and libraries necessary to build Ruby with release
   archive files (C Compiler, make, libyaml, etc). Keep in mind any
   version of Ruby isn't installed.
3. Download `ruby-3.2.0-preview3.tar.xz`.
4. `tar xfpvJ ruby-3.2.0-preview3.tar.xz`
5. `cd ruby-3.2.0-preview3`
6. `./configure`
7. `make`

# Exptected result

Step 7 finishes successfully.

# What really happens

It fails as following.

```
compiling ruby.c
compiling scheduler.c
compiling shape.c
compiling signal.c
compiling sprintf.c
compiling st.c
compiling strftime.c
compiling string.c
compiling struct.c
compiling symbol.c
compiling thread.c
compiling time.c
compiling transcode.c
compiling transient_heap.c
compiling util.c
compiling variable.c
executable host ruby is required. use --with-baseruby option.
make: *** [uncommon.mk:1232: .revision.time] Error 1
```

# Conditions

Confirmed with following environments.

* Debian 11.5 amd64
* FreeBSD 13.1-RELEASE amd64




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ruby-core:110742] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed
  2022-11-12  8:02 [ruby-core:110722] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed yasuhirokimura (Yasuhiro KIMURA)
  2022-11-12  8:15 ` [ruby-core:110723] " jeremyevans0 (Jeremy Evans)
@ 2022-11-14  3:20 ` nobu (Nobuyoshi Nakada)
  2022-11-14  6:42 ` [ruby-core:110744] " k0kubun (Takashi Kokubun)
  2 siblings, 0 replies; 4+ messages in thread
From: nobu (Nobuyoshi Nakada) @ 2022-11-14  3:20 UTC (permalink / raw)
  To: ruby-core

Issue #19127 has been updated by nobu (Nobuyoshi Nakada).


Seems by commit:git|39f91bc24baa37db3c3d1485902056f43b013b54.

----------------------------------------
Bug #19127: Build of 3.2.0-preview3 fails unless Ruby is already installed
https://bugs.ruby-lang.org/issues/19127#change-100078

* Author: yasuhirokimura (Yasuhiro KIMURA)
* Status: Open
* Priority: Normal
* ruby -v: 3.2.0-preview3
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
# Steps to reproduce process

1. Make clean install of operating system.
2. Install tools and libraries necessary to build Ruby with release
   archive files (C Compiler, make, libyaml, etc). Keep in mind any
   version of Ruby isn't installed.
3. Download `ruby-3.2.0-preview3.tar.xz`.
4. `tar xfpvJ ruby-3.2.0-preview3.tar.xz`
5. `cd ruby-3.2.0-preview3`
6. `./configure`
7. `make`

# Exptected result

Step 7 finishes successfully.

# What really happens

It fails as following.

```
compiling ruby.c
compiling scheduler.c
compiling shape.c
compiling signal.c
compiling sprintf.c
compiling st.c
compiling strftime.c
compiling string.c
compiling struct.c
compiling symbol.c
compiling thread.c
compiling time.c
compiling transcode.c
compiling transient_heap.c
compiling util.c
compiling variable.c
executable host ruby is required. use --with-baseruby option.
make: *** [uncommon.mk:1232: .revision.time] Error 1
```

# Conditions

Confirmed with following environments.

* Debian 11.5 amd64
* FreeBSD 13.1-RELEASE amd64




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ruby-core:110744] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed
  2022-11-12  8:02 [ruby-core:110722] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed yasuhirokimura (Yasuhiro KIMURA)
  2022-11-12  8:15 ` [ruby-core:110723] " jeremyevans0 (Jeremy Evans)
  2022-11-14  3:20 ` [ruby-core:110742] " nobu (Nobuyoshi Nakada)
@ 2022-11-14  6:42 ` k0kubun (Takashi Kokubun)
  2 siblings, 0 replies; 4+ messages in thread
From: k0kubun (Takashi Kokubun) @ 2022-11-14  6:42 UTC (permalink / raw)
  To: ruby-core

Issue #19127 has been updated by k0kubun (Takashi Kokubun).


On the nightly snapshot builds, it wasn't reproducible as of https://github.com/ruby/actions/actions/runs/3371938561/jobs/5594778747, and it has been reproduced since https://github.com/ruby/actions/actions/runs/3380198941/jobs/5612712842. So it seems like something in https://github.com/ruby/ruby/compare/cbf15e5cbe30cbca45810ef65224ad1bc19c67b4...b777408c33b57077f8be09eaed9245eeca0b59c5 caused that problem.

----------------------------------------
Bug #19127: Build of 3.2.0-preview3 fails unless Ruby is already installed
https://bugs.ruby-lang.org/issues/19127#change-100081

* Author: yasuhirokimura (Yasuhiro KIMURA)
* Status: Open
* Priority: Normal
* Target version: 3.2
* ruby -v: 3.2.0-preview3
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
# Steps to reproduce process

1. Make clean install of operating system.
2. Install tools and libraries necessary to build Ruby with release
   archive files (C Compiler, make, libyaml, etc). Keep in mind any
   version of Ruby isn't installed.
3. Download `ruby-3.2.0-preview3.tar.xz`.
4. `tar xfpvJ ruby-3.2.0-preview3.tar.xz`
5. `cd ruby-3.2.0-preview3`
6. `./configure`
7. `make`

# Exptected result

Step 7 finishes successfully.

# What really happens

It fails as following.

```
compiling ruby.c
compiling scheduler.c
compiling shape.c
compiling signal.c
compiling sprintf.c
compiling st.c
compiling strftime.c
compiling string.c
compiling struct.c
compiling symbol.c
compiling thread.c
compiling time.c
compiling transcode.c
compiling transient_heap.c
compiling util.c
compiling variable.c
executable host ruby is required. use --with-baseruby option.
make: *** [uncommon.mk:1232: .revision.time] Error 1
```

# Conditions

Confirmed with following environments.

* Debian 11.5 amd64
* FreeBSD 13.1-RELEASE amd64




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-14  6:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-12  8:02 [ruby-core:110722] [Ruby master Bug#19127] Build of 3.2.0-preview3 fails unless Ruby is already installed yasuhirokimura (Yasuhiro KIMURA)
2022-11-12  8:15 ` [ruby-core:110723] " jeremyevans0 (Jeremy Evans)
2022-11-14  3:20 ` [ruby-core:110742] " nobu (Nobuyoshi Nakada)
2022-11-14  6:42 ` [ruby-core:110744] " k0kubun (Takashi Kokubun)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).