summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-08-22 09:56:06 +0000
committerTim Harder <radhermit@gentoo.org>2011-08-22 09:56:06 +0000
commit6d8fd4c79464d780eee4b541c44938fe91c6b551 (patch)
tree1853a0f02a185f562d51f66bf132bb779bd1e411 /dev-tex/latexmk
parentVersion bump (diff)
downloadgentoo-2-6d8fd4c79464d780eee4b541c44938fe91c6b551.tar.gz
gentoo-2-6d8fd4c79464d780eee4b541c44938fe91c6b551.tar.bz2
gentoo-2-6d8fd4c79464d780eee4b541c44938fe91c6b551.zip
Remove old
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex/latexmk')
-rw-r--r--dev-tex/latexmk/ChangeLog7
-rw-r--r--dev-tex/latexmk/files/completion.bash45
-rw-r--r--dev-tex/latexmk/latexmk-408.ebuild26
-rw-r--r--dev-tex/latexmk/latexmk-416a.ebuild29
-rw-r--r--dev-tex/latexmk/latexmk-418.ebuild29
-rw-r--r--dev-tex/latexmk/latexmk-422e.ebuild29
6 files changed, 6 insertions, 159 deletions
diff --git a/dev-tex/latexmk/ChangeLog b/dev-tex/latexmk/ChangeLog
index f6b4553dbb50..1287de9b88d9 100644
--- a/dev-tex/latexmk/ChangeLog
+++ b/dev-tex/latexmk/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-tex/latexmk
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/ChangeLog,v 1.32 2011/08/22 09:53:21 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/ChangeLog,v 1.33 2011/08/22 09:56:06 radhermit Exp $
+
+ 22 Aug 2011; Tim Harder <radhermit@gentoo.org> -latexmk-408.ebuild,
+ -latexmk-416a.ebuild, -latexmk-418.ebuild, -latexmk-422e.ebuild,
+ -files/completion.bash:
+ Remove old
*latexmk-426 (22 Aug 2011)
diff --git a/dev-tex/latexmk/files/completion.bash b/dev-tex/latexmk/files/completion.bash
deleted file mode 100644
index 12575774c242..000000000000
--- a/dev-tex/latexmk/files/completion.bash
+++ /dev/null
@@ -1,45 +0,0 @@
-#! /bin/bash
-
-# 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, or (at your option)
-# any later version.
-
-# bash_completion for latexmk
-#
-#
-# Author: Christoph Junghans
-# junghans@mpip-mainz.mpg.de
-#
-# Revision history:
-# 0.1 26-05-10 --- initial version
-#
-# HOWTO:
-# source this file to enable it
-
-_latexmk()
-{
- #we have perl due to the fact that latexmk is written in perl
- local cur output opts prev
- cur=${COMP_WORDS[COMP_CWORD]}
- prev=${COMP_WORDS[COMP_CWORD-1]}
-
- output=$( $1 -help 2> /dev/null)
- #options with args
- aopts=" $( echo " $output" | sed -n 's/^[[:space:]]\+\(-[^[:space:]]\+\)[[:space:]]\+<[^>]\+>.*$/\1/p' | sort -u | tr '\n' ' ')"
- #if previous option in in $aopts
- if [[ -n "$prev" ]] && [[ -z "${aopts//* $prev *}" ]]; then
- #argument of $pres
- opts=$(echo "$output" | sed -n "s/^[[:space:]]\+$prev[[:space:]]\+\(<[^>]\+>\).*\$/\1/p")
- COMPREPLY=( $( compgen -W '$opts' -- $cur ) )
- elif [[ "$cur" == -* ]]; then
- #all options
- opts=$( echo "$output" | sed -n 's/^[[:space:]]\+\(-[^[:space:]]\+\).*$/\1/p'| sort -u )
- COMPREPLY=( $( compgen -W '$opts' -- $cur ) )
- else
- #filenames *.tex and dirs, rest is done by '-o filenames' below
- COMPREPLY=( $( eval compgen -f -X "!*.tex" -- ${cur} ) $( compgen -d -- $cur ) )
- fi
-}
-
-complete -F _latexmk -o filenames latexmk
diff --git a/dev-tex/latexmk/latexmk-408.ebuild b/dev-tex/latexmk/latexmk-408.ebuild
deleted file mode 100644
index b047365d0ec7..000000000000
--- a/dev-tex/latexmk/latexmk-408.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/latexmk-408.ebuild,v 1.2 2009/09/19 15:11:19 maekke Exp $
-
-DESCRIPTION="Perl script for automatically building LaTeX documents."
-HOMEPAGE="http://www.phys.psu.edu/~collins/software/latexmk/"
-SRC_URI="http://www.phys.psu.edu/~collins/software/latexmk/${P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="virtual/latex-base
- dev-lang/perl"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-src_install() {
- cd "${WORKDIR}"
- newbin latexmk.pl latexmk
- dodoc CHANGES README latexmk.pdf latexmk.ps latexmk.txt
- doman latexmk.1
- insinto /usr/share/doc/${PF}
- doins -r example_rcfiles extra-scripts
-}
diff --git a/dev-tex/latexmk/latexmk-416a.ebuild b/dev-tex/latexmk/latexmk-416a.ebuild
deleted file mode 100644
index ca3d27c7f7b5..000000000000
--- a/dev-tex/latexmk/latexmk-416a.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/latexmk-416a.ebuild,v 1.2 2010/06/11 19:18:43 aballier Exp $
-
-inherit bash-completion
-
-DESCRIPTION="Perl script for automatically building LaTeX documents."
-HOMEPAGE="http://www.phys.psu.edu/~collins/software/latexmk/"
-SRC_URI="http://www.phys.psu.edu/~collins/software/latexmk/${P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="virtual/latex-base
- dev-lang/perl"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-src_install() {
- cd "${WORKDIR}"
- newbin latexmk.pl latexmk
- dodoc CHANGES README latexmk.pdf latexmk.ps latexmk.txt
- doman latexmk.1
- insinto /usr/share/doc/${PF}
- doins -r example_rcfiles extra-scripts
- dobashcompletion "${FILESDIR}"/completion.bash ${PN}
-}
diff --git a/dev-tex/latexmk/latexmk-418.ebuild b/dev-tex/latexmk/latexmk-418.ebuild
deleted file mode 100644
index 081263c753d3..000000000000
--- a/dev-tex/latexmk/latexmk-418.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/latexmk-418.ebuild,v 1.5 2011/02/27 15:52:54 armin76 Exp $
-
-inherit bash-completion
-
-DESCRIPTION="Perl script for automatically building LaTeX documents."
-HOMEPAGE="http://www.phys.psu.edu/~collins/software/latexmk/"
-SRC_URI="http://www.phys.psu.edu/~collins/software/latexmk/${P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~s390 ~sh ~sparc ~x86 ~ppc-macos"
-IUSE=""
-
-RDEPEND="virtual/latex-base
- dev-lang/perl"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-src_install() {
- cd "${WORKDIR}"
- newbin latexmk.pl latexmk || die
- dodoc CHANGES README latexmk.pdf latexmk.ps latexmk.txt || die
- doman latexmk.1 || die
- insinto /usr/share/doc/${PF}
- doins -r example_rcfiles extra-scripts || die
- dobashcompletion "${FILESDIR}"/completion.bash ${PN}
-}
diff --git a/dev-tex/latexmk/latexmk-422e.ebuild b/dev-tex/latexmk/latexmk-422e.ebuild
deleted file mode 100644
index 488c67576259..000000000000
--- a/dev-tex/latexmk/latexmk-422e.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/latexmk-422e.ebuild,v 1.3 2011/02/27 15:52:54 armin76 Exp $
-
-inherit bash-completion
-
-DESCRIPTION="Perl script for automatically building LaTeX documents."
-HOMEPAGE="http://www.phys.psu.edu/~collins/software/latexmk/"
-SRC_URI="http://www.phys.psu.edu/~collins/software/latexmk/${P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-macos"
-IUSE=""
-
-RDEPEND="virtual/latex-base
- dev-lang/perl"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-src_install() {
- cd "${WORKDIR}"
- newbin latexmk.pl latexmk || die
- dodoc CHANGES README latexmk.pdf latexmk.ps latexmk.txt || die
- doman latexmk.1 || die
- insinto /usr/share/doc/${PF}
- doins -r example_rcfiles extra-scripts || die
- dobashcompletion "${FILESDIR}"/completion.bash-2 ${PN}
-}