diff options
author | Hans de Graaff <graaff@gentoo.org> | 2015-10-22 07:41:34 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2015-10-22 07:41:58 +0200 |
commit | 3586c66120938a2b67786906cbbe14622a4ee7a8 (patch) | |
tree | d1fb908708058f98c0297aabdf6507cbab0b0499 /app-emacs/magit | |
parent | app-emacs/magit: add 2.2.2 (diff) | |
download | gentoo-3586c66120938a2b67786906cbbe14622a4ee7a8.tar.gz gentoo-3586c66120938a2b67786906cbbe14622a4ee7a8.tar.bz2 gentoo-3586c66120938a2b67786906cbbe14622a4ee7a8.zip |
app-emacs/magit: cleanup
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-emacs/magit')
-rw-r--r-- | app-emacs/magit/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/magit/magit-1.2.0-r1.ebuild | 43 |
2 files changed, 0 insertions, 44 deletions
diff --git a/app-emacs/magit/Manifest b/app-emacs/magit/Manifest index a3f0242d6e14..b8e211daba91 100644 --- a/app-emacs/magit/Manifest +++ b/app-emacs/magit/Manifest @@ -1,3 +1,2 @@ -DIST magit-1.2.0.tar.gz 163318 SHA256 ef535819b8ee32c53ad38efabc82028f62422f2629407d69ddc5970669dc1ba9 SHA512 3f673d38d9f73cdf653108184ed97c1d499492224be3925949ffadb3bb6900a9be664c773dae49da696c6e1daa8bbb70d7446a9f9d7f9a7f8714ca254ed02c3d WHIRLPOOL 0462ea59ae75c01992d6d7dd17783ab4c60c335c17e03a8791be0771caf54d6a546a84c0622f2c1d45d1231a8d2638fb936bff31c94aa08a10d2c98e5986e4a4 DIST magit-1.2.2.tar.gz 111245 SHA256 8ed300887909d0990cf17b1f4a3b902944db2471ca93dbf0202724b3f44e5d0c SHA512 c7817a5231485e593e8f7aab8c01db19f433ff9b77d6635c95eec6beabb45901f1dbd9d02fad718436f9e25516df14714e7ca1b05b53244e8465dcc14a8cee7a WHIRLPOOL 4b7116bf2568f786a859299ed8039bee32fda51322e29f7ddd139a9ee5e3f3a3caa9d245fffed3e6c28f11b0e068c398f424450275de94a4559a9812634639a0 DIST magit-2.2.2.tar.gz 244326 SHA256 08e61898e23dbeb3a152d82e58fc9f6c769fe36d35d87617dcd1e69b2f91b3c6 SHA512 fcb8a27597988fd29b824be58b145f483a492a0d199e505478cf7cab09068a608e5e9d314abda7e8954712c2db3012ee578c8a5bbdfd79e909a8b9d1ef45e0d4 WHIRLPOOL f45d4bfe3942d4203918b8c5309b640efcb9204d7a05f74df746349d9a49ae40df34d744d91388db23e718fc7579e303ea0a704d7f30235efbf63b9da360082a diff --git a/app-emacs/magit/magit-1.2.0-r1.ebuild b/app-emacs/magit/magit-1.2.0-r1.ebuild deleted file mode 100644 index 7a9cf741b572..000000000000 --- a/app-emacs/magit/magit-1.2.0-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit elisp - -DESCRIPTION="An Emacs mode for GIT" -HOMEPAGE="http://magit.github.io/" -SRC_URI="https://github.com/downloads/magit/magit/${P}.tar.gz" - -LICENSE="GPL-3+ FDL-1.2+" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="contrib" - -ELISP_PATCHES="${P}-delete-directory.patch" -SITEFILE="50${PN}-gentoo.el" - -RESTRICT="test" - -src_compile() { - # The upstream build system ignores errors during byte-compilation - # and happily installs broken files, causing errors at runtime. - # Call elisp-compile, in order to catch them here already. - elisp-compile *.el - emake core docs - use contrib && emake contrib - rm 50magit.el magit-pkg.el || die -} - -src_install() { - elisp-install ${PN} *.{el,elc} || die - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - doinfo magit.info - dodoc README.md - - if use contrib; then - elisp-install ${PN} contrib/*.{el,elc} || die - dobin contrib/magit - fi -} |