From 99c5aa5ae665e3963454e4765427073d3fe5aff6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Tue, 21 Apr 2020 18:18:05 -0300 Subject: [PATCH] recipes: Fix docdir value for vim_tiny and vim_huge MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Matías Fonzo --- recipes/tools/vim_tiny/recipe | 7 ++++--- recipes/x-apps/vim_huge/recipe | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/recipes/tools/vim_tiny/recipe b/recipes/tools/vim_tiny/recipe index 1ac95fbe..5bb70edf 100644 --- a/recipes/tools/vim_tiny/recipe +++ b/recipes/tools/vim_tiny/recipe @@ -1,6 +1,6 @@ # Build recipe for vim (tiny). # -# Copyright (c) 2016-2019 Matias Fonzo, . +# Copyright (c) 2016-2020 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,11 +16,12 @@ program=vim version=8.1.2124 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=tools +# Set a custom name for this package pkgname=vim_tiny tarname=${program}-${version}.tar.gz @@ -44,7 +45,7 @@ license=Custom # Source documentation docs="CONTRIBUTING.md README.md" -docsdir="${docdir}/${pkgname}-${pkgversion}" +docsdir="${docdir}/${pkgname}-${version}" build() { diff --git a/recipes/x-apps/vim_huge/recipe b/recipes/x-apps/vim_huge/recipe index bb3d16c8..a582e161 100644 --- a/recipes/x-apps/vim_huge/recipe +++ b/recipes/x-apps/vim_huge/recipe @@ -1,6 +1,6 @@ # Build recipe for vim (huge). # -# Copyright (c) 2018-2019 Matias Fonzo, . +# Copyright (c) 2018-2020 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,11 +16,12 @@ program=vim version=8.1.2124 -release=1 +release=2 # Define a category for the output of the package name pkgcategory=x-apps +# Set a custom name for this package pkgname=vim_huge # The installation of this package replaces to @@ -47,7 +48,7 @@ license=Custom # Source documentation docs="CONTRIBUTING.md README.md" -docsdir="${docdir}/${pkgname}-${pkgversion}" +docsdir="${docdir}/${pkgname}-${version}" build() { -- 2.11.4.GIT