From 4a81346961031aecc50c657423bd8d68250fc40d Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Tue, 7 Jul 2015 11:06:16 +0100 Subject: Fix 'name' field mismatches The 'name' field is set in both a chunk's definition, and in the chunk reference point in each stratum where that chunk is included. Some of them didn't agree on the name of the chunk. In all cases I've made 'name' match the filename of the chunk .morph file, either by fixing the chunk .morph file or the stratum .morph file (and in one case, the filename). This should have no effect on behaviour, it's just a tidyup. Change-Id: I90bcd3fa382e24c8aa2d370ea5f545491169d1db --- strata/apache-httpd-server.morph | 2 +- strata/bsp-armv5l-openbmc-aspeed.morph | 2 +- strata/chef.morph | 4 ++-- strata/chef/ipaddress-0.8.0.morph | 13 +++++++++++++ strata/chef/ipaddress-master.morph | 13 ------------- strata/enlightenment/bullet3.morph | 2 +- strata/genivi/DLT-daemon.morph | 2 +- strata/java/java-ant.morph | 2 +- strata/lorry.morph | 2 +- strata/networking-utils.morph | 2 +- strata/test-tools/subunit.morph | 2 +- strata/unionfs-fuse-group.morph | 2 +- 12 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 strata/chef/ipaddress-0.8.0.morph delete mode 100644 strata/chef/ipaddress-master.morph diff --git a/strata/apache-httpd-server.morph b/strata/apache-httpd-server.morph index 7a403535..20510091 100644 --- a/strata/apache-httpd-server.morph +++ b/strata/apache-httpd-server.morph @@ -11,7 +11,7 @@ chunks: repo: upstream:apache/apr ref: 3c818c6d7351f0130282d212a69035642f5fecad unpetrify-ref: trunk -- name: httpd +- name: httpd-server morph: strata/apache-httpd-server/httpd-server.morph repo: upstream:apache/httpd ref: 6d8e0b2fd95268fcba96326ba9dce7bb8f712c19 diff --git a/strata/bsp-armv5l-openbmc-aspeed.morph b/strata/bsp-armv5l-openbmc-aspeed.morph index 83bb74ef..7b36ffbb 100644 --- a/strata/bsp-armv5l-openbmc-aspeed.morph +++ b/strata/bsp-armv5l-openbmc-aspeed.morph @@ -7,7 +7,7 @@ description: build-depends: - morph: strata/core.morph chunks: -- name: linux-armv5l-openbmc-aspeed-wedge +- name: linux-armv5l-openbmc-aspeed morph: strata/bsp-armv5l-openbmc-aspeed/linux-armv5l-openbmc-aspeed.morph repo: upstream:linux-stable ref: 5cbce86c2115075b8054e4dba8cdf328aa6fa5b6 diff --git a/strata/chef.morph b/strata/chef.morph index 69b495aa..b28298e0 100644 --- a/strata/chef.morph +++ b/strata/chef.morph @@ -71,8 +71,8 @@ chunks: unpetrify-ref: v1.2.5 build-depends: - hoe-master -- name: ipaddress-master - morph: strata/chef/ipaddress-master.morph +- name: ipaddress-0.8.0 + morph: strata/chef/ipaddress-0.8.0.morph repo: upstream:ruby-gems/ipaddress ref: dae93ad0e4fb9a5d547a15dae0c3f2417078c845 unpetrify-ref: master diff --git a/strata/chef/ipaddress-0.8.0.morph b/strata/chef/ipaddress-0.8.0.morph new file mode 100644 index 00000000..fdaa5de6 --- /dev/null +++ b/strata/chef/ipaddress-0.8.0.morph @@ -0,0 +1,13 @@ +name: ipaddress-0.8.0 +kind: chunk +description: Automatically generated by rubygems.to_chunk +products: +- artifact: ipaddress-0.8.0-doc + include: + - usr/lib/ruby/gems/\d[\w.]*/doc/.* +build-commands: +- gem build ipaddress.gemspec +install-commands: +- mkdir -p "$DESTDIR/$(gem environment home)" +- gem install --install-dir "$DESTDIR/$(gem environment home)" --bindir "$DESTDIR/$PREFIX/bin" + --ignore-dependencies --local ./ipaddress-0.8.0.gem diff --git a/strata/chef/ipaddress-master.morph b/strata/chef/ipaddress-master.morph deleted file mode 100644 index fdaa5de6..00000000 --- a/strata/chef/ipaddress-master.morph +++ /dev/null @@ -1,13 +0,0 @@ -name: ipaddress-0.8.0 -kind: chunk -description: Automatically generated by rubygems.to_chunk -products: -- artifact: ipaddress-0.8.0-doc - include: - - usr/lib/ruby/gems/\d[\w.]*/doc/.* -build-commands: -- gem build ipaddress.gemspec -install-commands: -- mkdir -p "$DESTDIR/$(gem environment home)" -- gem install --install-dir "$DESTDIR/$(gem environment home)" --bindir "$DESTDIR/$PREFIX/bin" - --ignore-dependencies --local ./ipaddress-0.8.0.gem diff --git a/strata/enlightenment/bullet3.morph b/strata/enlightenment/bullet3.morph index 74cb097a..357e1f67 100644 --- a/strata/enlightenment/bullet3.morph +++ b/strata/enlightenment/bullet3.morph @@ -1,4 +1,4 @@ -name: bullet +name: bullet3 kind: chunk configure-commands: - cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON diff --git a/strata/genivi/DLT-daemon.morph b/strata/genivi/DLT-daemon.morph index e22e31e3..d16c42ea 100644 --- a/strata/genivi/DLT-daemon.morph +++ b/strata/genivi/DLT-daemon.morph @@ -1,4 +1,4 @@ -name: DLT-deamon +name: DLT-daemon kind: chunk build-system: cmake configure-commands: diff --git a/strata/java/java-ant.morph b/strata/java/java-ant.morph index 172483ab..13c490d4 100644 --- a/strata/java/java-ant.morph +++ b/strata/java/java-ant.morph @@ -1,4 +1,4 @@ -name: ant +name: java-ant kind: chunk build-commands: - | diff --git a/strata/lorry.morph b/strata/lorry.morph index b3a0c779..0c5f2c11 100644 --- a/strata/lorry.morph +++ b/strata/lorry.morph @@ -56,7 +56,7 @@ chunks: unpetrify-ref: baserock/morph build-depends: - perl-dbi-tarball -- name: libserf-tarball +- name: libserf morph: strata/lorry/libserf.morph repo: upstream:libserf-tarball ref: 6f61a1acd01dc2ad1d2f5c1f7458702c77c69f9c diff --git a/strata/networking-utils.morph b/strata/networking-utils.morph index 445df46d..13a8c72f 100644 --- a/strata/networking-utils.morph +++ b/strata/networking-utils.morph @@ -47,7 +47,7 @@ chunks: repo: upstream:libnet ref: 05df365769597e1d64d02af931d6127762ff2658 unpetrify-ref: libnet-1.2 -- name: arping +- name: iputils morph: strata/networking-utils/iputils.morph repo: upstream:iputils ref: d25e54e25107bc7c5d14737ed65f5f52b54f1472 diff --git a/strata/test-tools/subunit.morph b/strata/test-tools/subunit.morph index b7b43a39..0d3819ed 100644 --- a/strata/test-tools/subunit.morph +++ b/strata/test-tools/subunit.morph @@ -1,3 +1,3 @@ -name: python-subunit +name: subunit kind: chunk build-system: autotools diff --git a/strata/unionfs-fuse-group.morph b/strata/unionfs-fuse-group.morph index 914b18e0..2db03d87 100644 --- a/strata/unionfs-fuse-group.morph +++ b/strata/unionfs-fuse-group.morph @@ -14,7 +14,7 @@ build-depends: - morph: strata/foundation.morph chunks: - - name: unionfs.fuse + - name: unionfs-fuse morph: strata/unionfs-fuse-group/unionfs-fuse.morph repo: upstream:unionfs-fuse ref: efac5b7aa91ec860f8f430a8d21060fe53a07002 -- cgit v1.2.1