summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2018-12-22 13:23:22 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2018-12-22 13:23:22 (EST)
commit3d68fa3d5a8188ecdf55e12391c820e0ae48b4e8 (patch)
treeec5d4927934e0082a1ac591456946595a3639a67 /lib
parent87946959a411bda5a1b750cbefb34c3f067839c6 (diff)
ob_use(): Remove
Diffstat (limited to 'lib')
-rw-r--r--lib/changelog.sh4
-rw-r--r--lib/control.sh3
-rw-r--r--lib/deps.sh2
-rw-r--r--lib/load.sh45
-rw-r--r--lib/local.mk1
-rw-r--r--lib/locale.sh2
-rw-r--r--lib/metadata.sh2
-rw-r--r--lib/output.sh2
-rw-r--r--lib/package.sh4
-rw-r--r--lib/package/2.sh3
10 files changed, 0 insertions, 68 deletions
diff --git a/lib/changelog.sh b/lib/changelog.sh
index 33546fd..29c419e 100644
--- a/lib/changelog.sh
+++ b/lib/changelog.sh
@@ -20,10 +20,6 @@
[ x"${_OB_CHANGELOG_SM+set}" = x'set' ] && return 0
_OB_CHANGELOG_SM=1
-ob_use messages
-ob_use locale
-ob_use metadata
-
OB_CHANGELOG_SOURCE=
OB_CHANGELOG_VERSION=
OB_CHANGELOG_DISTRIBUTION=
diff --git a/lib/control.sh b/lib/control.sh
index ae9db28..59a69c4 100644
--- a/lib/control.sh
+++ b/lib/control.sh
@@ -20,9 +20,6 @@
[ x"${_OB_CONTROL_SM+set}" = x'set' ] && return 0
_OB_CONTROL_SM=1
-ob_use messages
-ob_use locale
-
_OB_SUBSTVARS_MAX_DEPTH=50
OB_CONTROL_NAME=
diff --git a/lib/deps.sh b/lib/deps.sh
index c9b065f..3e51930 100644
--- a/lib/deps.sh
+++ b/lib/deps.sh
@@ -20,8 +20,6 @@
[ x"${_OB_DEPS_SM+set}" = x'set' ] && return 0
_OB_DEPS_SM=1
-ob_use metadata
-
ob_parse_dep()
{
local opt=
diff --git a/lib/load.sh b/lib/load.sh
deleted file mode 100644
index 7cdaf5f..0000000
--- a/lib/load.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-# opkbuild
-# lib/load.sh
-# Functions for loading library modules.
-#
-# 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 2 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 <http://www.gnu.org/licenses/>.
-
-[ x"${_OB_LOAD_SM+set}" = x'set' ] && return 0
-_OB_LOAD_SM=1
-
-# The "common" module is used by this and all other modules.
-# We have to manually load the "common" module so we can use it in ob_use.
-# . "${PKGLIBDIR}/common.sho"
-
-ob_use()
-{
- local module
-
- if [ ${#} -eq 1 ]; then
- module="${1}"
- else
- return 125
- fi
-
- module="${PKGLIBDIR}/${module}.sho"
- if [ -r "${module}" ]; then
- : . "${module}"
- else
- return 1
- fi
-
- return 0
-}
diff --git a/lib/local.mk b/lib/local.mk
index 7bf8675..21aa786 100644
--- a/lib/local.mk
+++ b/lib/local.mk
@@ -1,5 +1,4 @@
pkgdata_sources = \
- lib/load.sh \
lib/common.sh \
lib/locale.sh \
lib/output.sh \
diff --git a/lib/locale.sh b/lib/locale.sh
index b2fe329..43f5ec3 100644
--- a/lib/locale.sh
+++ b/lib/locale.sh
@@ -20,8 +20,6 @@
[ x"${_OB_LOCALE_SM+set}" = x'set' ] && return 0
_OB_LOCALE_SM=1
-ob_use output
-
_OB_DEFAULT_LOCALE='en_US'
_OB_INTERNAL_TEXT_DOMAIN='libopkbuild_1'
_OB_TEXT_DOMAIN=
diff --git a/lib/metadata.sh b/lib/metadata.sh
index 5bd56da..62f5328 100644
--- a/lib/metadata.sh
+++ b/lib/metadata.sh
@@ -20,8 +20,6 @@
[ x"${_OB_METADATA_SM+set}" = x'set' ] && return 0
_OB_METADATA_SM=1
-ob_use "metadata/${METADATA}"
-
ob_validate_source_name()
{
local name=
diff --git a/lib/output.sh b/lib/output.sh
index 783d194..d6982be 100644
--- a/lib/output.sh
+++ b/lib/output.sh
@@ -20,8 +20,6 @@
[ x"${_OB_OUTPUT_SM+set}" = x'set' ] && return 0
_OB_OUTPUT_SM=1
-ob_use locale
-
ob_error()
{
printf '%s: Error: ' "${0##*/}" >&2
diff --git a/lib/package.sh b/lib/package.sh
index 185450d..aad1d8f 100644
--- a/lib/package.sh
+++ b/lib/package.sh
@@ -20,8 +20,6 @@
[ x"${_OB_PACKAGE_SM+set}" = x'set' ] && return 0
_OB_PACKAGE_SM=1
-ob_use metadata
-
_OB_PACKAGE_DIR=
_OB_PACKAGE_FORMAT=
_OB_BINARY_PACKAGES=
@@ -57,8 +55,6 @@ ob_init_package()
return 1
fi
- ob_use "package/${_OB_PACKAGE_FORMAT}"
-
_OB_BINARY_PACKAGES=
return 0
diff --git a/lib/package/2.sh b/lib/package/2.sh
index 8ec4784..0be38fc 100644
--- a/lib/package/2.sh
+++ b/lib/package/2.sh
@@ -20,9 +20,6 @@
[ x"${_OB_PACKAGE_2_SM+set}" = x'set' ] && return 0
_OB_PACKAGE_2_SM=1
-ob_use control
-ob_use changelog
-
_OB_SOURCE_FIELDS_REQUIRED_2='Maintainer'
_OB_SOURCE_FIELDS_OPTIONAL_2='Build-Depends Homepage'
_OB_BINARY_FIELDS_REQUIRED_2='Architecture Platform Description'