From 12062829b2aff244870e6062c9fa273bcbbb5b2e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Tue, 23 Mar 2021 20:57:49 -0300 Subject: [PATCH] recipes: Set package category for blacklisted packages MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This will allow easy categorizing, searching within the Dragora installer. Dragora installer. Signed-off-by: Matías Fonzo --- recipes/compressors/plzip/recipe | 4 ++-- recipes/libs/musl/recipe | 4 ++-- recipes/perl/perl5/recipe | 4 ++-- recipes/shells/bash/recipe | 4 ++-- recipes/shells/mksh/recipe | 4 ++-- recipes/tools/coreutils/recipe | 6 +++--- recipes/tools/graft/recipe | 4 ++-- recipes/tools/tarlz/recipe | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/recipes/compressors/plzip/recipe b/recipes/compressors/plzip/recipe index b6c709db..db0b6aa4 100644 --- a/recipes/compressors/plzip/recipe +++ b/recipes/compressors/plzip/recipe @@ -19,7 +19,7 @@ set -e program=plzip version=1.9 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=compressors @@ -50,7 +50,7 @@ Plzip is the default version of Lzip used in Dragora as the main 'lzip'. " # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" # Source documentation docs="AUTHORS COPYING ChangeLog NEWS README" diff --git a/recipes/libs/musl/recipe b/recipes/libs/musl/recipe index 2a2e58e4..11bc90e4 100644 --- a/recipes/libs/musl/recipe +++ b/recipes/libs/musl/recipe @@ -19,7 +19,7 @@ set -e program=musl version=1.2.2 -release=5 +release=6 # Define a category for the output of the package name pkgcategory=libs @@ -49,7 +49,7 @@ docs="COPYRIGHT README VERSION WHATSNEW" docsdir="${docdir}/${program}" # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" build() { diff --git a/recipes/perl/perl5/recipe b/recipes/perl/perl5/recipe index 62d3130f..04ff6a42 100644 --- a/recipes/perl/perl5/recipe +++ b/recipes/perl/perl5/recipe @@ -20,7 +20,7 @@ set -e program=perl pkgname=perl5 version=5.32.1 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=perl @@ -55,7 +55,7 @@ docsdir="${docdir}/${pkgname}" jobs=1 # Limit package name to the program name -full_pkgname=$pkgname +full_pkgname="${program}@${pkgcategory}" build() { diff --git a/recipes/shells/bash/recipe b/recipes/shells/bash/recipe index ac765c1a..cdfebb15 100644 --- a/recipes/shells/bash/recipe +++ b/recipes/shells/bash/recipe @@ -19,7 +19,7 @@ set -e program=bash version=5.1 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=shells @@ -44,7 +44,7 @@ homepage=https://www.gnu.org/software/bash license=GPLv3+ # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" # Source documentation docsdir="${docdir}/${program}" diff --git a/recipes/shells/mksh/recipe b/recipes/shells/mksh/recipe index 0cb01c70..efddd9f5 100644 --- a/recipes/shells/mksh/recipe +++ b/recipes/shells/mksh/recipe @@ -19,7 +19,7 @@ set -e program=mksh version=R59c -release=2 +release=3 # Define a category for the output of the package name pkgcategory=shells @@ -44,7 +44,7 @@ homepage=https://www.mirbsd.org/mksh.htm license="The MirOS Licence, ISC, special terms for use the BSD daemon mascot" # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" # Source documentation docsdir="${docdir}/${program}" diff --git a/recipes/tools/coreutils/recipe b/recipes/tools/coreutils/recipe index a5db0527..bdf22117 100644 --- a/recipes/tools/coreutils/recipe +++ b/recipes/tools/coreutils/recipe @@ -1,6 +1,6 @@ # Build recipe for coreutils. # -# Copyright (c) 2016-2020 Matias Fonzo, . +# Copyright (c) 2016-2021 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ set -e program=coreutils version=8.32 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=tools @@ -45,7 +45,7 @@ docs="AUTHORS COPYING ChangeLog NEWS README THANKS THANKS-to-translators TODO" docsdir="${docdir}/${program}" # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" build() { diff --git a/recipes/tools/graft/recipe b/recipes/tools/graft/recipe index 0c8d52e4..63e3c10f 100644 --- a/recipes/tools/graft/recipe +++ b/recipes/tools/graft/recipe @@ -20,7 +20,7 @@ set -e program=graft version=2.16 arch=noarch -release=4 +release=5 # Define a category for the output of the package name pkgcategory=tools @@ -53,7 +53,7 @@ docs="CHANGES COPYING README THOUGHTS doc/graft.html doc/graft.pdf doc/graft.txt docsdir="${docdir}/${program}" # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" build() { diff --git a/recipes/tools/tarlz/recipe b/recipes/tools/tarlz/recipe index a7a61ab5..02beaa5c 100644 --- a/recipes/tools/tarlz/recipe +++ b/recipes/tools/tarlz/recipe @@ -19,7 +19,7 @@ set -e program=tarlz version=0.19 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=tools @@ -48,7 +48,7 @@ compressed archives. " # Limit package name to the program name -full_pkgname=$program +full_pkgname="${program}@${pkgcategory}" # Source documentation docs="AUTHORS COPYING ChangeLog NEWS README" -- 2.11.4.GIT