# opkbuild # lib/package/2 # Functions for retrieving metadata from packages in SPF 2.0. # # 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_PACKAGE_2_SM}" ] && return 0 _OB_PACKAGE_2_SM='true' _ob_parse_package_metadata_2() { _ob_local # XXX: Stub. _ob_return 0 return ${?} } _ob_get_binary_packages_2() { _ob_local _obgbp2_pkgs _obgbp2_pkg_control for _obgbp2_pkg_control in "${_OB_PACKAGE_DIR}/"*'.pkg/control'; do _obgbp2_pkg_control="${_obgbp2_pkg_control%.pkg/control}" _obgbp2_pkg_control="${_obgbp2_pkg_control##*/}" ob_validate_binary_name "${_obgbp2_pkg_control}" _obgbp2_pkgs="${_obgbp2_pkgs} ${_obgbp2_pkg_control}" done _ob_set_binary_packages "${_obgbp2_pkgs}" _ob_return 0 return ${?} }