From 6f237d0b78ea9069eb1af23526b128ac21631021 Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Thu, 29 Nov 2018 21:20:15 +0100 Subject: app-emacs/auto-complete: Remove unused file. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Ulrich Müller --- .../auto-complete/auto-complete-1.5.1-r1.ebuild | 41 ++++++++++++++++++++++ app-emacs/auto-complete/auto-complete-1.5.1.ebuild | 40 --------------------- 2 files changed, 41 insertions(+), 40 deletions(-) create mode 100644 app-emacs/auto-complete/auto-complete-1.5.1-r1.ebuild delete mode 100644 app-emacs/auto-complete/auto-complete-1.5.1.ebuild (limited to 'app-emacs') diff --git a/app-emacs/auto-complete/auto-complete-1.5.1-r1.ebuild b/app-emacs/auto-complete/auto-complete-1.5.1-r1.ebuild new file mode 100644 index 000000000000..284700ba65e3 --- /dev/null +++ b/app-emacs/auto-complete/auto-complete-1.5.1-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp + +DESCRIPTION="Auto-complete package" +HOMEPAGE="https://github.com/auto-complete/auto-complete/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+ FDL-1.1+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="app-emacs/popup" +BDEPEND="${RDEPEND} + doc? ( app-text/pandoc )" + +ELISP_REMOVE="${PN}-pkg.el" +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + use doc && emake -C doc +} + +src_install() { + elisp_src_install + + # install dictionaries + insinto "${SITEETC}/${PN}" + doins -r dict + + dodoc README.md TODO.md etc/test.txt + if use doc; then + docinto html + dodoc doc/manual.html doc/changes.html doc/style.css doc/*.png + fi +} diff --git a/app-emacs/auto-complete/auto-complete-1.5.1.ebuild b/app-emacs/auto-complete/auto-complete-1.5.1.ebuild deleted file mode 100644 index e6e662ea615f..000000000000 --- a/app-emacs/auto-complete/auto-complete-1.5.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit elisp - -DESCRIPTION="Auto-complete package" -HOMEPAGE="https://github.com/auto-complete/auto-complete/" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+ FDL-1.1+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -RDEPEND="app-emacs/popup" -BDEPEND="${RDEPEND} - doc? ( app-text/pandoc )" - -SITEFILE="50${PN}-gentoo.el" - -src_compile() { - elisp_src_compile - use doc && emake -C doc -} - -src_install() { - elisp_src_install - - # install dictionaries - insinto "${SITEETC}/${PN}" - doins -r dict - - dodoc README.md TODO.md etc/test.txt - if use doc; then - docinto html - dodoc doc/manual.html doc/changes.html doc/style.css doc/*.png - fi -} -- cgit v1.2.3-65-gdbad