summaryrefslogtreecommitdiffstats
path: root/src/package
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2021-01-03 21:01:02 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2021-01-03 21:01:02 (EST)
commit6a65dc27b229fc99b55a5b7e68e155bf261de9f1 (patch)
tree063a594f7bb63f88b74a0cb4f002dfdd0b5c57f7 /src/package
parentceca66e390d6ff479721485e3160e913e97761c1 (diff)
package_get_name_and_version(): New function
Diffstat (limited to 'src/package')
-rw-r--r--src/package/2.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/package/2.sh b/src/package/2.sh
index 2a856d3..18e5a85 100644
--- a/src/package/2.sh
+++ b/src/package/2.sh
@@ -20,6 +20,15 @@
_package_2_build_deps=
+_package_2_get_name_and_version()
+{
+ # The first line is all we need to parse.
+ sed '1{ s/^\([^ ][^ ]*\) (\([^)][^)]*\)).*$/\1 \2/; q; };' \
+ "${package_dir}/changelog"
+
+ return 0
+}
+
_package_2_build_deps_field_cb()
{
local name="${1}"