public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-mpost/, app-eselect/eselect-mpost/files/
@ 2015-09-11 14:46 Manuel Rüger
  0 siblings, 0 replies; only message in thread
From: Manuel Rüger @ 2015-09-11 14:46 UTC (permalink / raw
  To: gentoo-commits

commit:     c84a2dc6b538aee6fefa9e3ca410d3a5a8a86bd2
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 14:43:20 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 14:46:11 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84a2dc6

app-eselect/eselect-mpost: Remove old

Package-Manager: portage-2.2.20.1

 app-eselect/eselect-mpost/eselect-mpost-0.1.ebuild |  28 ----
 app-eselect/eselect-mpost/eselect-mpost-0.2.ebuild |  29 ----
 app-eselect/eselect-mpost/files/mpost.eselect-0.1  | 153 ---------------------
 app-eselect/eselect-mpost/files/mpost.eselect-0.2  | 148 --------------------
 4 files changed, 358 deletions(-)

diff --git a/app-eselect/eselect-mpost/eselect-mpost-0.1.ebuild b/app-eselect/eselect-mpost/eselect-mpost-0.1.ebuild
deleted file mode 100644
index ae08b7f..0000000
--- a/app-eselect/eselect-mpost/eselect-mpost-0.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="mpost module for eselect"
-HOMEPAGE="https://www.gentoo.org/proj/en/eselect/"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
-
-IUSE=""
-DEPEND=""
-# Depend on texlive-core-2008 that allows usage of this module, otherwise it
-# will not work so nicely.
-RDEPEND=">=app-admin/eselect-1.0.5
-	>=app-text/texlive-core-2008"
-
-src_install() {
-	local MODULEDIR="/usr/share/eselect/modules"
-	local MODULE="mpost"
-	dodir ${MODULEDIR}
-	insinto ${MODULEDIR}
-	newins "${FILESDIR}/${MODULE}.eselect-${PVR}" ${MODULE}.eselect || die "failed to install"
-}

diff --git a/app-eselect/eselect-mpost/eselect-mpost-0.2.ebuild b/app-eselect/eselect-mpost/eselect-mpost-0.2.ebuild
deleted file mode 100644
index ac09044..0000000
--- a/app-eselect/eselect-mpost/eselect-mpost-0.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="mpost module for eselect"
-HOMEPAGE="https://www.gentoo.org/proj/en/eselect/"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-# Depend on texlive-core-2008 that allows usage of this module, otherwise it
-# will not work so nicely.
-RDEPEND=">=app-admin/eselect-1.2.3
-	>=app-text/texlive-core-2008"
-
-src_install() {
-	local MODULEDIR="/usr/share/eselect/modules"
-	local MODULE="mpost"
-	dodir ${MODULEDIR}
-	insinto ${MODULEDIR}
-	newins "${FILESDIR}/${MODULE}.eselect-${PVR}" ${MODULE}.eselect \
-		|| die "failed to install"
-}

diff --git a/app-eselect/eselect-mpost/files/mpost.eselect-0.1 b/app-eselect/eselect-mpost/files/mpost.eselect-0.1
deleted file mode 100644
index 1fb3cf9..0000000
--- a/app-eselect/eselect-mpost/files/mpost.eselect-0.1
+++ /dev/null
@@ -1,153 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-DESCRIPTION="Manage /usr/bin/mpost implementations"
-MAINTAINER="ml@gentoo.org"
-SVN_DATE='$Date: 2015/03/31 16:51:56 $'
-VERSION=$(svn_date_to_version "${SVN_DATE}" )
-
-# find a list of mpost symlink targets, best first
-find_targets() {
-	local f
-	for f in "${ROOT}"/usr/bin/mpost-*; do
-		if [[ -f ${f} ]] ; then
-			echo "${f##*/mpost-}"
-		fi
-	done | sort
-}
-
-# find version number of currently symlinked version
-identify_target() {
-	local f
-	f="$(canonicalise "${ROOT}"/usr/bin/mpost)"
-	echo "${f##*/mpost-}"
-}
-
-# try to remove the mpost symlink
-remove_symlinks() {
-	rm -f "${ROOT}"/usr/bin/mpost &>/dev/null
-}
-
-# set the mpost symlink
-set_symlinks() {
-	local target="${1}" targets
-	if is_number "${target}" && [[ ${target} -ge 1 ]] ; then
-		targets=( $(find_targets ) )
-		target=${targets[$(( ${target} - 1 ))]}
-	fi
-	if [[ -f "${ROOT}/usr/bin/mpost-${target}" ]] ; then
-		remove_symlinks
-		ln -s "mpost-${target}" "${ROOT}/usr/bin/mpost" || \
-			die "Could not set ${target} /usr/bin/mpost symlink"
-                echo "Updating TeX formats"
-	        [ -z "${ROOT}" ] && fmtutil-sys --all &>/dev/null || write_warning_msg "Could not update TeX formats for some reason, mpost may not work properly."
-	else
-		die -q "Target \"${target}\" doesn't appear to be valid!"
-	fi
-}
-
-### show action ###
-
-describe_show() {
-	echo "Show the current mpost version"
-}
-
-do_show() {
-	[[ -z "${@}" ]] || die -q "Too many parameters"
-
-	write_list_start "Current mpost verson:"
-	if [[ -L "${ROOT}/usr/bin/mpost" ]] ; then
-		write_kv_list_entry "$(identify_target)" ""
-	elif [[ -e "${ROOT}/usr/bin/mpost" ]] ; then
-		write_kv_list_entry "(not a symlink)" ""
-	else
-		write_kv_list_entry "(unset)" ""
-	fi
-}
-
-### list action ###
-
-describe_list() {
-	echo "List available mpost versions"
-}
-
-do_list() {
-	[[ -z "${@}" ]] || die -q "Too many parameters"
-
-	local i targets current
-	targets=( $(find_targets ) )
-	current=$(identify_target)
-	if [[ -n ${targets[@]} ]] ; then
-		for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do
-			[[ ${targets[${i}]} == ${current} ]] && \
-				targets[${i}]="${targets[${i}]} $(highlight '*' )"
-		done
-		write_list_start "Available mpost versions:"
-		write_numbered_list "${targets[@]}"
-	else
-		write_kv_list_entry "(none found)" ""
-	fi
-}
-
-### set action ###
-
-describe_set() {
-	echo "Set a new mpost version"
-}
-
-describe_set_options() {
-	echo "target : Target version number or index from 'list' action"
-}
-
-describe_set_parameters() {
-	echo "<target>"
-}
-
-do_set() {
-	if [[ -z "${1}" ]] ; then
-		die -q "You didn't give me a version number"
-
-	elif [[ -n "${2}" ]] ; then
-		die -q "Too many parameters"
-
-	elif [[ -L "${ROOT}/usr/bin/mpost" ]] ; then
-		if ! remove_symlinks ; then
-			die -q "Can't remove existing version symlink"
-		elif ! set_symlinks "${1}" ; then
-			die -q "Can't set new version"
-		fi
-
-	elif [[ -e "${ROOT}/usr/bin/mpost" ]] ; then
-		die -q "${ROOT}/usr/bin/mpost seems to be from an old ebuild, please remove manually"
-	else
-		set_symlinks "${1}" || die -q "Can't set new version"
-	fi
-}
-
-### update action ###
-
-describe_update() {
-	echo "Automatically update the mpost version number"
-}
-
-describe_update_options() {
-	echo "--if-unset : Do not override currently selected version"
-}
-
-do_update() {
-	[[ -z "${1}" ]] || ( [[ -z "${2}" ]] && [[ "${1}" == "--if-unset" ]] ) || \
-		die -q "Usage error"
-
-	if [[ -L "${ROOT}/usr/bin/mpost" ]] ; then
-		[[ ${1} == "--if-unset" ]] && return
-		remove_symlinks || die -q "Can't remove existing symlink"
-	fi
-	if [[ -e "${ROOT}/usr/bin/mpost" ]] ; then
-		die -q "${ROOT}/usr/bin/mpost seems to be from an old ebuild, please remove manually"
-	elif ! [[ -z $(find_targets ) ]] ; then
-		set_symlinks 1 || die -q "Can't set a new version"
-	fi
-}
-
-# vim: set ft=eselect :

diff --git a/app-eselect/eselect-mpost/files/mpost.eselect-0.2 b/app-eselect/eselect-mpost/files/mpost.eselect-0.2
deleted file mode 100644
index 0824045..0000000
--- a/app-eselect/eselect-mpost/files/mpost.eselect-0.2
+++ /dev/null
@@ -1,148 +0,0 @@
-# -*-eselect-*-  vim: ft=eselect
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-DESCRIPTION="Manage /usr/bin/mpost implementations"
-MAINTAINER="ml@gentoo.org"
-SVN_DATE='$Date: 2015/03/31 16:51:56 $'
-VERSION=$(svn_date_to_version "${SVN_DATE}" )
-
-# find a list of mpost symlink targets, best first
-find_targets() {
-	local f
-	for f in "${ROOT}"/usr/bin/mpost-*; do
-		if [[ -f ${f} ]] ; then
-			echo "${f##*/mpost-}"
-		fi
-	done | sort
-}
-
-# find version number of currently symlinked version
-identify_target() {
-	local f
-	f="$(canonicalise "${ROOT}"/usr/bin/mpost)"
-	echo "${f##*/mpost-}"
-}
-
-# try to remove the mpost symlink
-remove_symlinks() {
-	rm -f "${ROOT}"/usr/bin/mpost &>/dev/null
-}
-
-# set the mpost symlink
-set_symlinks() {
-	local target="${1}" targets
-	if is_number "${target}" && [[ ${target} -ge 1 ]] ; then
-		targets=( $(find_targets ) )
-		target=${targets[$(( ${target} - 1 ))]}
-	fi
-	if [[ -f "${ROOT}/usr/bin/mpost-${target}" ]] ; then
-		remove_symlinks
-		ln -s "mpost-${target}" "${ROOT}/usr/bin/mpost" || \
-			die "Could not set ${target} /usr/bin/mpost symlink"
-		echo "Updating TeX formats"
-		[ -z "${ROOT}" ] && fmtutil-sys --all &>/dev/null || write_warning_msg "Could not update TeX formats for some reason, mpost may not work properly."
-	else
-		die -q "Target \"${target}\" doesn't appear to be valid!"
-	fi
-}
-
-### show action ###
-
-describe_show() {
-	echo "Show the current mpost version"
-}
-
-do_show() {
-	[[ -z "${@}" ]] || die -q "Too many parameters"
-
-	write_list_start "Current mpost verson:"
-	if [[ -L "${ROOT}/usr/bin/mpost" ]] ; then
-		write_kv_list_entry "$(identify_target)" ""
-	elif [[ -e "${ROOT}/usr/bin/mpost" ]] ; then
-		write_kv_list_entry "(not a symlink)" ""
-	else
-		write_kv_list_entry "(unset)" ""
-	fi
-}
-
-### list action ###
-
-describe_list() {
-	echo "List available mpost versions"
-}
-
-do_list() {
-	[[ -z "${@}" ]] || die -q "Too many parameters"
-
-	local i targets current
-	targets=( $(find_targets ) )
-	current=$(identify_target)
-	for (( i = 0; i < ${#targets[@]}; i++ )); do
-		[[ ${targets[i]} = ${current} ]] \
-			&& targets[i]=$(highlight_marker "${targets[i]}")
-	done
-	write_list_start "Available mpost versions:"
-	write_numbered_list -m "(none found)" "${targets[@]}"
-}
-
-### set action ###
-
-describe_set() {
-	echo "Set a new mpost version"
-}
-
-describe_set_options() {
-	echo "target : Target version number or index from 'list' action"
-}
-
-describe_set_parameters() {
-	echo "<target>"
-}
-
-do_set() {
-	if [[ -z "${1}" ]] ; then
-		die -q "You didn't give me a version number"
-
-	elif [[ -n "${2}" ]] ; then
-		die -q "Too many parameters"
-
-	elif [[ -L "${ROOT}/usr/bin/mpost" ]] ; then
-		if ! remove_symlinks ; then
-			die -q "Can't remove existing version symlink"
-		elif ! set_symlinks "${1}" ; then
-			die -q "Can't set new version"
-		fi
-
-	elif [[ -e "${ROOT}/usr/bin/mpost" ]] ; then
-		die -q "${ROOT}/usr/bin/mpost seems to be from an old ebuild, please remove manually"
-	else
-		set_symlinks "${1}" || die -q "Can't set new version"
-	fi
-}
-
-### update action ###
-
-describe_update() {
-	echo "Automatically update the mpost version number"
-}
-
-describe_update_options() {
-	echo "--if-unset : Do not override currently selected version"
-}
-
-do_update() {
-	[[ -z "${1}" ]] || ( [[ -z "${2}" ]] && [[ "${1}" == "--if-unset" ]] ) || \
-		die -q "Usage error"
-
-	if [[ -L "${ROOT}/usr/bin/mpost" ]] ; then
-		[[ ${1} == "--if-unset" ]] && return
-		remove_symlinks || die -q "Can't remove existing symlink"
-	fi
-	if [[ -e "${ROOT}/usr/bin/mpost" ]] ; then
-		die -q "${ROOT}/usr/bin/mpost seems to be from an old ebuild, please remove manually"
-	elif ! [[ -z $(find_targets ) ]] ; then
-		set_symlinks 1 || die -q "Can't set a new version"
-	fi
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-09-11 14:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-11 14:46 [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-mpost/, app-eselect/eselect-mpost/files/ Manuel Rüger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox