summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2024-04-12 19:34:13 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2024-04-13 20:07:55 +0200
commit6f11f3f247d8949401cd0afb676198b439053740 (patch)
treef3d244a97885e22f5a678f937ad44789aa5fb0d5 /examples
parent35e0cd907a89b751637f71ce910950a8a8865fe0 (diff)
downloadrebel-6f11f3f247d8949401cd0afb676198b439053740.tar
rebel-6f11f3f247d8949401cd0afb676198b439053740.zip
Replace 'inherit' recipe field with 'parent'
All occurrences of 'inherit' in the code are replaced with 'parent' or 'ancestors'.
Diffstat (limited to 'examples')
-rw-r--r--examples/recipes/binutils/build.yml6
-rw-r--r--examples/recipes/busybox/build.yml6
-rw-r--r--examples/recipes/e2fsprogs/build.yml6
-rw-r--r--examples/recipes/gcc/build.libgcc-initial.yml6
-rw-r--r--examples/recipes/gcc/build.libgcc.yml4
-rw-r--r--examples/recipes/gcc/build.libs.yml4
-rw-r--r--examples/recipes/gcc/build.yml6
-rw-r--r--examples/recipes/glibc/build.yml6
-rw-r--r--examples/recipes/gmp/build.yml6
-rw-r--r--examples/recipes/linux/build.uapi-headers.yml2
-rw-r--r--examples/recipes/linux/build.yml6
-rw-r--r--examples/recipes/make_ext4fs/build.yml4
-rw-r--r--examples/recipes/mpc/build.yml6
-rw-r--r--examples/recipes/mpfr/build.yml6
-rw-r--r--examples/recipes/zlib/build.yml6
15 files changed, 40 insertions, 40 deletions
diff --git a/examples/recipes/binutils/build.yml b/examples/recipes/binutils/build.yml
index a82723f..dd82d2e 100644
--- a/examples/recipes/binutils/build.yml
+++ b/examples/recipes/binutils/build.yml
@@ -12,7 +12,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -44,7 +44,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -55,7 +55,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/busybox/build.yml b/examples/recipes/busybox/build.yml
index e8019bb..fa87bc3 100644
--- a/examples/recipes/busybox/build.yml
+++ b/examples/recipes/busybox/build.yml
@@ -10,7 +10,7 @@ tasks:
configure:
- inherit:
+ parent:
task: 'unpack'
run: |
mkdir {{name}}-build
@@ -23,7 +23,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
build_depends:
- recipe: 'toolchain'
@@ -46,7 +46,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/e2fsprogs/build.yml b/examples/recipes/e2fsprogs/build.yml
index e1fc0e0..508d1d4 100644
--- a/examples/recipes/e2fsprogs/build.yml
+++ b/examples/recipes/e2fsprogs/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -31,7 +31,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -41,7 +41,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/gcc/build.libgcc-initial.yml b/examples/recipes/gcc/build.libgcc-initial.yml
index 38414aa..ed230ba 100644
--- a/examples/recipes/gcc/build.libgcc-initial.yml
+++ b/examples/recipes/gcc/build.libgcc-initial.yml
@@ -3,7 +3,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
recipe: 'gcc'
task: 'compile'
depends:
@@ -28,7 +28,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -38,7 +38,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default: {}
diff --git a/examples/recipes/gcc/build.libgcc.yml b/examples/recipes/gcc/build.libgcc.yml
index ed7fa66..67e21f7 100644
--- a/examples/recipes/gcc/build.libgcc.yml
+++ b/examples/recipes/gcc/build.libgcc.yml
@@ -3,7 +3,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
recipe: 'gcc'
task: 'compile'
depends:
@@ -19,7 +19,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default: {}
diff --git a/examples/recipes/gcc/build.libs.yml b/examples/recipes/gcc/build.libs.yml
index 4a20ad1..856fd1c 100644
--- a/examples/recipes/gcc/build.libs.yml
+++ b/examples/recipes/gcc/build.libs.yml
@@ -2,7 +2,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
recipe: 'gcc/libgcc'
task: 'compile'
args:
@@ -15,7 +15,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/gcc/build.yml b/examples/recipes/gcc/build.yml
index cd4166e..3352b2d 100644
--- a/examples/recipes/gcc/build.yml
+++ b/examples/recipes/gcc/build.yml
@@ -26,7 +26,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -95,7 +95,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'configure'
depends:
- task: 'header-stubs'
@@ -109,7 +109,7 @@ tasks:
args:
host: 'platform'
target: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/glibc/build.yml b/examples/recipes/glibc/build.yml
index 3538d90..f1bf890 100644
--- a/examples/recipes/glibc/build.yml
+++ b/examples/recipes/glibc/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'gcc'
@@ -47,7 +47,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -56,7 +56,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/gmp/build.yml b/examples/recipes/gmp/build.yml
index 3a07f44..322f0f0 100644
--- a/examples/recipes/gmp/build.yml
+++ b/examples/recipes/gmp/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -31,7 +31,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -40,7 +40,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/linux/build.uapi-headers.yml b/examples/recipes/linux/build.uapi-headers.yml
index ea398d3..a302aa9 100644
--- a/examples/recipes/linux/build.uapi-headers.yml
+++ b/examples/recipes/linux/build.uapi-headers.yml
@@ -9,7 +9,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
output:
default: {}
diff --git a/examples/recipes/linux/build.yml b/examples/recipes/linux/build.yml
index ad32813..3f84291 100644
--- a/examples/recipes/linux/build.yml
+++ b/examples/recipes/linux/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'gcc'
@@ -28,7 +28,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
export KBUILD_BUILD_TIMESTAMP="@${SOURCE_DATE_EPOCH}"
@@ -42,7 +42,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
boot:
diff --git a/examples/recipes/make_ext4fs/build.yml b/examples/recipes/make_ext4fs/build.yml
index f50fa85..183389a 100644
--- a/examples/recipes/make_ext4fs/build.yml
+++ b/examples/recipes/make_ext4fs/build.yml
@@ -19,7 +19,7 @@ tasks:
task: 'depends'
- recipe: 'zlib'
task: 'install'
- inherit:
+ parent:
task: 'unpack'
run: |
cd {{name}}-{{version}}
@@ -28,7 +28,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/mpc/build.yml b/examples/recipes/mpc/build.yml
index 816bed0..e415c60 100644
--- a/examples/recipes/mpc/build.yml
+++ b/examples/recipes/mpc/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -33,7 +33,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -42,7 +42,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/mpfr/build.yml b/examples/recipes/mpfr/build.yml
index b77cf81..619bec7 100644
--- a/examples/recipes/mpfr/build.yml
+++ b/examples/recipes/mpfr/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -33,7 +33,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -42,7 +42,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default:
diff --git a/examples/recipes/zlib/build.yml b/examples/recipes/zlib/build.yml
index a9f09d7..3e72844 100644
--- a/examples/recipes/zlib/build.yml
+++ b/examples/recipes/zlib/build.yml
@@ -11,7 +11,7 @@ tasks:
configure:
args:
host: 'platform'
- inherit:
+ parent:
task: 'unpack'
build_depends:
- recipe: 'toolchain'
@@ -29,7 +29,7 @@ tasks:
compile:
args:
host: 'platform'
- inherit:
+ parent:
task: 'configure'
run: |
cd {{name}}-build
@@ -38,7 +38,7 @@ tasks:
install:
args:
host: 'platform'
- inherit:
+ parent:
task: 'compile'
output:
default: