diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-01-08 18:29:52 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-01-08 18:29:52 +0100 |
commit | fdb8b9febcdc380c074318bf5b4ce2e41c957b9c (patch) | |
tree | 6ff8ffad8b49f7e9efdc58ff63ca04353b77a310 /dev-lang/c-intercal | |
parent | net-dns/rbldnsd: new revision to fix an out-of-memory error. (diff) | |
download | gentoo-fdb8b9febcdc380c074318bf5b4ce2e41c957b9c.tar.gz gentoo-fdb8b9febcdc380c074318bf5b4ce2e41c957b9c.tar.bz2 gentoo-fdb8b9febcdc380c074318bf5b4ce2e41c957b9c.zip |
dev-lang/c-intercal: Remove old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-lang/c-intercal')
-rw-r--r-- | dev-lang/c-intercal/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/c-intercal/c-intercal-29.0.ebuild | 76 |
2 files changed, 0 insertions, 77 deletions
diff --git a/dev-lang/c-intercal/Manifest b/dev-lang/c-intercal/Manifest index f8b7ba0da282..1a3f2ada0057 100644 --- a/dev-lang/c-intercal/Manifest +++ b/dev-lang/c-intercal/Manifest @@ -1,2 +1 @@ -DIST intercal-0.29.pax.gz 1003800 SHA256 fba1678bdd058350742fad2f3f0673bcea9f4c8add761855a67d8ada6650950b SHA512 0789278b334f65b6e2034493cf08b26a9885e7aec09072c9d9d3d2796b2c6b09f13a856afea1f77f6c6aac0f386b0a76e35ddd9c87584386f3b8a0ad30bddd31 WHIRLPOOL 9039db79d0ecfd17abdd2ba4788d5e812d4fc5db1fab3ba554567ec3d08cd7091408d054903e8a59dbf77fc78f5408dfc1608eaac0b10e1bf76c32b3a92e300d DIST intercal-0.30.tar.gz 930759 SHA256 b38b62a61a3cb5b0d3ce9f2d09c97bd74796979d532615073025a7fff6be1715 SHA512 e82f52082a73e0eb6116026f78fdcc38369f54af828b9ed0d3ca6ed6c40550bfa81db4ca7c4d09015b5db5104a1c06229cfed52e1d202c3a7443f933fbcc0498 WHIRLPOOL b76542b81d8322c5791a30573e0b7efdd7793a298970b29f074e49fa061e3a28f38fdbf7732f74a77d940e8167650182d3366f657ed525d079feb0c3d47d7dc2 diff --git a/dev-lang/c-intercal/c-intercal-29.0.ebuild b/dev-lang/c-intercal/c-intercal-29.0.ebuild deleted file mode 100644 index dfc1909a7364..000000000000 --- a/dev-lang/c-intercal/c-intercal-29.0.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit elisp-common eutils multilib - -# C-INTERCAL uses minor-major ordering of version components and -# negative version numbers. We map version components -1, -2, ... -# to 65535, 65534, ..., and subtract one from the next component. -# For example, upstream version 0.28 is mapped to Gentoo version 28.0 -# and 0.-2.0.29 is mapped to 28.65535.65534.0. -get_intercal_version() { - local i=.${1:-${PV}} j k c=0 - while [[ ${i} ]]; do - (( k = ${i##*.} + c )) - (( (c = (k >= 32768)) && (k -= 65536) )) - i=${i%.*} - j=${j}.${k} - done - echo ${j#.} -} - -MY_PN="${PN#c-}" -MY_PV="$(get_intercal_version)" -DESCRIPTION="C-INTERCAL - INTERCAL to binary (via C) compiler" -HOMEPAGE="http://c.intercal.org.uk/" -SRC_URI="http://overload.intercal.org.uk/c/${MY_PN}-${MY_PV}.pax.gz" - -LICENSE="GPL-2+ FDL-1.2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="emacs examples" - -DEPEND="emacs? ( virtual/emacs )" -RDEPEND="${DEPEND}" - -MY_PV2=${MY_PV%.${MY_PV##*.}} -S="${WORKDIR}/${MY_PN}-${MY_PV2##*.}.${MY_PV##*.}" -SITEFILE="50${PN}-gentoo.el" - -src_unpack() { - tar xzf "${DISTDIR}/${A}" || die "tar failed" -} - -src_compile() { - emake - - if use emacs; then - elisp-compile etc/intercal.el || die - fi -} - -src_install() { - emake DESTDIR="${D}" install - dodoc BUGS NEWS HISTORY README doc/THEORY.txt - - if use emacs; then - elisp-install ${PN} etc/intercal.{el,elc} || die - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - fi - - if use examples; then - insinto /usr/share/doc/${PF} - doins -r pit - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |