Merge branch 'kill-util-functions' of git://github.com/redneb/portage-gentoo-git-config

This commit is contained in:
hasufell 2015-08-22 00:51:03 +02:00
commit 9b25baeeed
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
6 changed files with 1 additions and 19 deletions

View File

@ -1,7 +1,6 @@
#!/bin/bash
source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
repository_name="${1}"
repository_path="${3}"

View File

@ -1,7 +1,6 @@
#!/bin/bash
source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
repository_name="${1}"
repository_path="${3}"

View File

@ -1,7 +1,6 @@
#!/bin/bash
source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
repository_name="${1}"
repository_path="${3}"

View File

@ -1,7 +1,6 @@
#!/bin/bash
source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
repository_name="${1}"
repository_path="${3}"

View File

@ -1,7 +1,6 @@
#!/bin/bash
source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
repository_name="${1}"
repository_path="${3}"
@ -14,5 +13,5 @@ if [[ ${repository_name} == "gentoo" ]]; then
else
git clone -q https://anongit.gentoo.org/git/data/gentoo-news.git "${NEWSDIR}"
fi
eend $? "Try to remove ${PORTDIR}/metadata/news"
eend $? "Try to remove ${NEWSDIR}"
fi

View File

@ -1,13 +0,0 @@
#!/bin/bash
source /etc/init.d/functions.sh
eend_die() {
eend "$@"
[[ $1 -ne 0 ]] && exit $1
}
die() {
eerror "$*"
exit 1
}