3 Commits a5cc9acf41 ... 19a66e1f81

Author SHA1 Message Date
  Matías Fonzo 19a66e1f81 recipes: Adjust recipe format (minor changes) 3 years ago
  Matías Fonzo c6d068cd41 recipes: tools/*: Tune up file system utilities 3 years ago
  Matías Fonzo 9dcdf11ac4 recipes: tools/e2fsprogs: Upgraded to version 1.45.6 3 years ago

+ 3 - 2
recipes/boot/bootscripts/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=bootscripts
 version=dragora
 pkgversion=20200822
@@ -34,8 +37,6 @@ license="Apache License version 2"
 
 build()
 {
-    set -e
-
     mkdir -p "${destdir}/etc/rc.d" "${destdir}/usr/bin"
 
     cp -p "${worktree}/archive/etc/inittab" "${destdir}/etc/"

+ 4 - 3
recipes/boot/eudev/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=eudev
 version=3.2.9
 release=2
@@ -48,8 +51,6 @@ docsdir="${docdir}/${program}-${version}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -93,7 +94,7 @@ build()
     then
         (
             cd "${destdir}/$mandir"
-            find . -type f -exec lzip -9 '{}' +
+            find . -type f -exec lzip -9 {} +
             find . -type l | while read -r file
             do
                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"

+ 4 - 3
recipes/boot/grub/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=grub
 version=2.04
 release=3
@@ -43,8 +46,6 @@ docsdir="${docdir}/${program}-${pkgversion}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -98,7 +99,7 @@ build()
     then
         (
             cd "${destdir}/$mandir"
-            find . -type f -exec lzip -9 '{}' +
+            find . -type f -exec lzip -9 {} +
             find . -type l | while read -r file
             do
                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"

+ 5 - 4
recipes/boot/os-prober/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=os-prober
 version=1.77
 release=1
@@ -42,8 +45,6 @@ docsdir="${docdir}/${program}-${version}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -100,7 +101,7 @@ build()
         chmod 755 \
          "${destdir}/usr/lib${libSuffix}/linux-boot-probes/mounted/${file##*/}"
     done
-    unset file
+    unset -v file
 
     cp -p common/50mounted-tests \
      "${destdir}/usr/lib${libSuffix}/linux-boot-probes"
@@ -126,7 +127,7 @@ build()
         chmod 755 \
          "${destdir}/usr/lib${libSuffix}/os-probes/mounted/${file##*/}"
     done
-    unset file
+    unset -v file
 
     cp -p mounted/x86/efi/* \
      "${destdir}/usr/lib${libSuffix}/os-probes/mounted/efi"

+ 4 - 3
recipes/boot/perp/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=perp
 version=2.07
 release=7
@@ -59,8 +62,6 @@ docsdir="${docdir}/${program}-${version}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -122,7 +123,7 @@ build()
     then
         (
             cd "${destdir}/$mandir"
-            find . -type f -exec lzip -9 '{}' +
+            find . -type f -exec lzip -9 {} +
             find . -type l | while read -r file
             do
                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"

+ 4 - 3
recipes/boot/sysvinit/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=sysvinit
 version=2.97
 release=1
@@ -47,8 +50,6 @@ full_pkgname=$program
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -75,7 +76,7 @@ build()
     then
         (
             cd "${destdir}/$mandir"
-            find . -type f -exec lzip -9 '{}' +
+            find . -type f -exec lzip -9 {} +
             find . -type l | while read -r file
             do
                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"

+ 4 - 3
recipes/compressors/bzip2/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=bzip2
 version=1.0.6
 release=2
@@ -49,8 +52,6 @@ docsdir="${docdir}/${program}-${version}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -98,7 +99,7 @@ build()
     then
         (
             cd "${destdir}/$mandir"
-            find . -type f -exec lzip -9 '{}' +
+            find . -type f -exec lzip -9 {} +
             find . -type l | while read -r file
             do
                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"

+ 3 - 2
recipes/compressors/clzip/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=clzip
 version=1.11
 release=1
@@ -50,8 +53,6 @@ docsdir="${docdir}/${program}-${version}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"

+ 4 - 3
recipes/compressors/gzip/recipe

@@ -14,6 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Exit immediately on any error
+set -e
+
 program=gzip
 version=1.10
 release=1
@@ -46,8 +49,6 @@ docsdir="${docdir}/${program}-${version}"
 
 build()
 {
-    set -e
-
     unpack "${tardir}/$tarname"
 
     cd "$srcdir"
@@ -89,7 +90,7 @@ build()
     then
         (
             cd "${destdir}/$mandir"
-            find . -type f -exec lzip -9 '{}' +
+            find . -type f -exec lzip -9 {} +
             find . -type l | while read -r file
             do
                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"

+ 0 - 0
recipes/compressors/plzip/recipe


Some files were not shown because too many files changed in this diff