From 679eca860879a144b73843dc39d58f762f2ecc8b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 12 Sep 2012 13:50:14 -0400 Subject: Implement ob_validate_{source,binary}_name. --- (limited to 'lib/metadata.sh') diff --git a/lib/metadata.sh b/lib/metadata.sh new file mode 100644 index 0000000..84aa17e --- /dev/null +++ b/lib/metadata.sh @@ -0,0 +1,45 @@ +# opkbuild +# lib/metadata +# Functions for parsing and validating package metadata. +# +# Copyright (C) 2012 Patrick "P. J." McDermott +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +[ -n "${_OB_METADATA_SM}" ] && return 0 +_OB_METADATA_SM='true' + +_OB_NAME_RE='^[a-z0-9][a-z0-9+.-]+$' + +ob_validate_source_name() +{ + _ob_local _obvsn_name + + if [ ${#} -eq 1 ]; then + _obvsn_name="${1}" + else + _ob_return 125 + return ${?} + fi + + echo "${_obvsn_name}" | grep -E "${_OB_NAME_RE}" + + _ob_return ${?} + return ${?} +} + +ob_validate_binary_name() +{ + ob_validate_source_name "${@}" +} -- cgit v0.9.1