public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ulrich Mueller (ulm)" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/eselect-pdftex/files: pdftex.eselect-0.2
Date: Fri, 06 Nov 2009 21:37:41 +0000	[thread overview]
Message-ID: <E1N6WV3-0006K1-9t@stork.gentoo.org> (raw)

ulm         09/11/06 21:37:41

  Added:                pdftex.eselect-0.2
  Log:
  Version bump, bug 292107.
  (Portage version: 2.2_rc46/cvs/Linux i686)

Revision  Changes    Path
1.1                  app-admin/eselect-pdftex/files/pdftex.eselect-0.2

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-pdftex/files/pdftex.eselect-0.2?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-pdftex/files/pdftex.eselect-0.2?rev=1.1&content-type=text/plain

Index: pdftex.eselect-0.2
===================================================================
# -*-eselect-*-  vim: ft=eselect
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: pdftex.eselect-0.2,v 1.1 2009/11/06 21:37:40 ulm Exp $

DESCRIPTION="Manage /usr/bin/pdftex implementations"
MAINTAINER="ml@gentoo.org"
SVN_DATE='$Date: 2009/11/06 21:37:40 $'
VERSION=$(svn_date_to_version "${SVN_DATE}" )

# find a list of pdftex symlink targets, best first
find_targets() {
	local f
	for f in "${ROOT}"/usr/bin/pdftex-*; do
		if [[ -f ${f} ]] ; then
			echo "${f##*/pdftex-}"
		fi
	done | sort
}

# find version number of currently symlinked version
identify_target() {
	local f
	f="$(canonicalise "${ROOT}"/usr/bin/pdftex)"
	echo "${f##*/pdftex-}"
}

# try to remove the pdftex symlink
remove_symlinks() {
	rm -f "${ROOT}"/usr/bin/pdftex &>/dev/null
}

# set the pdftex 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/pdftex-${target}" ]] ; then
		remove_symlinks
		ln -s "pdftex-${target}" "${ROOT}/usr/bin/pdftex" || \
			die "Could not set ${target} /usr/bin/pdftex symlink"
		echo "Updating TeX formats"
		[ -z "${ROOT}" ] && fmtutil-sys --all &>/dev/null || write_warning_msg "Could not update TeX formats for some reason, pdftex may not work properly."
	else
		die -q "Target \"${target}\" doesn't appear to be valid!"
	fi
}

### show action ###

describe_show() {
	echo "Show the current pdftex version"
}

do_show() {
	[[ -z "${@}" ]] || die -q "Too many parameters"

	write_list_start "Current pdftex verson:"
	if [[ -L "${ROOT}/usr/bin/pdftex" ]] ; then
		write_kv_list_entry "$(identify_target)" ""
	elif [[ -e "${ROOT}/usr/bin/pdftex" ]] ; then
		write_kv_list_entry "(not a symlink)" ""
	else
		write_kv_list_entry "(unset)" ""
	fi
}

### list action ###

describe_list() {
	echo "List available pdftex 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 pdftex versions:"
	write_numbered_list -m "(none found)" "${targets[@]}"
}

### set action ###

describe_set() {
	echo "Set a new pdftex 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/pdftex" ]] ; 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/pdftex" ]] ; then
		die -q "${ROOT}/usr/bin/pdftex 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 pdftex 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/pdftex" ]] ; then
		[[ ${1} == "--if-unset" ]] && return
		remove_symlinks || die -q "Can't remove existing symlink"
	fi
	if [[ -e "${ROOT}/usr/bin/pdftex" ]] ; then
		die -q "${ROOT}/usr/bin/pdftex 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
}






                 reply	other threads:[~2009-11-06 21:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1N6WV3-0006K1-9t@stork.gentoo.org \
    --to=ulm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox