summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-03-22 12:03:54 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-03-22 12:03:54 +0000
commit3bacd8bcc37a16877851abb6664802f1402d9de2 (patch)
treea5f2454c50c8b1f1ab7cd80877e64680141dd140
parentStable for HPPA (bug #408385). (diff)
downloadhistorical-3bacd8bcc37a16877851abb6664802f1402d9de2.tar.gz
historical-3bacd8bcc37a16877851abb6664802f1402d9de2.tar.bz2
historical-3bacd8bcc37a16877851abb6664802f1402d9de2.zip
Drop support for pre-2010 TeX Live versions
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/texlive-module.eclass39
2 files changed, 14 insertions, 30 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 4cca4a44c3f7..4feab12e5f70 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.179 2012/03/22 06:57:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.180 2012/03/22 12:03:54 aballier Exp $
+
+ 22 Mar 2012; Alexis Ballier <aballier@gentoo.org> texlive-module.eclass:
+ Drop support for pre-2010 TeX Live versions
22 Mar 2012; Michał Górny <mgorny@gentoo.org> xorg-2.eclass:
Use autotools-utils to reconfigure.
diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass
index fa741768bae1..7e03bb990666 100644
--- a/eclass/texlive-module.eclass
+++ b/eclass/texlive-module.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.60 2011/08/29 01:28:10 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.61 2012/03/22 12:03:54 aballier Exp $
# @ECLASS: texlive-module.eclass
# @MAINTAINER:
@@ -27,21 +27,17 @@
# @DESCRIPTION:
# The list of packages that will be installed. This variable will be expanded to
# SRC_URI:
-#
-# For TeX Live 2008: foo -> texlive-module-foo-${PV}.tar.lzma
-# For TeX Live 2009: foo -> texlive-module-foo-${PV}.tar.xz
+# foo -> texlive-module-foo-${PV}.tar.xz
# @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS
# @DESCRIPTION:
# The list of packages that will be installed if the doc useflag is enabled.
-# Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only
-# valid for TeX Live 2008 and later.
+# Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS.
# @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS
# @DESCRIPTION:
# The list of packages that will be installed if the source useflag is enabled.
-# Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only
-# valid for TeX Live 2008 and later.
+# Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS.
# @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS
# @DESCRIPTION:
@@ -68,17 +64,10 @@ COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}"
IUSE="source"
-# TeX Live 2008 was providing .tar.lzma files of CTAN packages.
-# For 2009 and 2010 they are now .tar.xz
-if [ "${PV#2008}" != "${PV}" ]; then
- PKGEXT=tar.lzma
- DEPEND="${COMMON_DEPEND}
- || ( app-arch/xz-utils app-arch/lzma-utils )"
-else
- PKGEXT=tar.xz
- DEPEND="${COMMON_DEPEND}
- app-arch/xz-utils"
-fi
+# Starting from TeX Live 2009, upstream provides .tar.xz modules.
+PKGEXT=tar.xz
+DEPEND="${COMMON_DEPEND}
+ app-arch/xz-utils"
for i in ${TEXLIVE_MODULE_CONTENTS}; do
SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}"
@@ -106,8 +95,6 @@ RDEPEND="${COMMON_DEPEND}"
S="${WORKDIR}"
-if [ "${PV#2008}" = "${PV}" ]; then
-
# @FUNCTION: texlive-module_src_unpack
# @DESCRIPTION:
# Only for TeX Live 2009 and later.
@@ -144,8 +131,6 @@ texlive-module_src_unpack() {
done
}
-fi
-
# @FUNCTION: texlive-module_add_format
# @DESCRIPTION:
# Creates/appends to a format.${PN}.cnf file for fmtutil.
@@ -278,7 +263,7 @@ texlive-module_src_compile() {
AddHyphen)
texlive-module_make_language_def_lines "$parameter"
texlive-module_make_language_dat_lines "$parameter"
- [ "${PV#2008}" = "${PV}" -a "${PV#2009}" = "${PV}" ] && texlive-module_make_language_lua_lines "$parameter"
+ texlive-module_make_language_lua_lines "$parameter"
;;
AddFormat)
texlive-module_add_format "$parameter";;
@@ -379,8 +364,4 @@ texlive-module_pkg_postrm() {
etexmf-update
}
-if [ "${PV#2008}" != "${PV}" ]; then
-EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm
-else
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm
-fi