mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
r-*: strip dot from the end of pkgdesc
This commit is contained in:
parent
4265939278
commit
6602e62bc1
6 changed files with 8 additions and 5 deletions
|
@ -5,7 +5,7 @@ _pkgver=1.6.0
|
|||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//-/.}
|
||||
pkgrel=3
|
||||
pkgdesc="a library for connecting to Expasy ENZYME database."
|
||||
pkgdesc="a library for connecting to Expasy ENZYME database"
|
||||
arch=(any)
|
||||
url="https://bioconductor.org/packages/$_pkgname"
|
||||
license=(AGPL3)
|
||||
|
|
|
@ -5,7 +5,7 @@ _pkgver=1.6.0
|
|||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//-/.}
|
||||
pkgrel=3
|
||||
pkgdesc="a library for connecting to NCBI Databases."
|
||||
pkgdesc="a library for connecting to NCBI Databases"
|
||||
arch=(any)
|
||||
url="https://bioconductor.org/packages/$_pkgname"
|
||||
license=(AGPL3)
|
||||
|
|
|
@ -6,7 +6,7 @@ _pkgver=4.14.1
|
|||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//-/.}
|
||||
pkgrel=1
|
||||
pkgdesc="Infrastructure for representing and interacting with gated and ungated cytometry data sets."
|
||||
pkgdesc="Infrastructure for representing and interacting with gated and ungated cytometry data sets"
|
||||
arch=(x86_64)
|
||||
url="https://bioconductor.org/packages/$_pkgname"
|
||||
license=(AGPL3)
|
||||
|
|
|
@ -5,7 +5,7 @@ _pkgver=3.14.0
|
|||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//-/.}
|
||||
pkgrel=1
|
||||
pkgdesc="A data package containing two flowJo, one diva xml workspace and the associated fcs files as well as three GatingSets for testing the flowWorkspace, openCyto and CytoML packages."
|
||||
pkgdesc="A data package containing two flowJo, one diva xml workspace and the associated fcs files as well as three GatingSets for testing the flowWorkspace, openCyto and CytoML packages"
|
||||
arch=(any)
|
||||
url="https://bioconductor.org/packages/$_pkgname"
|
||||
license=(GPL2)
|
||||
|
|
|
@ -5,7 +5,7 @@ _pkgver=1.2.0
|
|||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//-/.}
|
||||
pkgrel=2
|
||||
pkgdesc="'rifiComparative' compares the output of rifi from two different conditions."
|
||||
pkgdesc="'rifiComparative' compares the output of rifi from two different conditions"
|
||||
arch=(any)
|
||||
url="https://bioconductor.org/packages/$_pkgname"
|
||||
license=(GPL3)
|
||||
|
|
|
@ -349,6 +349,9 @@ def check_pkgdesc(pkg: Pkgbuild, desc: Description, cfg: CheckConfig):
|
|||
if title_lower.startswith(prefix):
|
||||
title = title[len(prefix):]
|
||||
break
|
||||
# detect and remove trailing dot from the title
|
||||
if len(title) > 1 and title[-1] == "." and title[-2] != ".":
|
||||
title = title[:-1]
|
||||
|
||||
if cfg.expect_title is not None:
|
||||
if pkg.pkgdesc == title:
|
||||
|
|
Loading…
Add table
Reference in a new issue