Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/circuit_macros/
Date: Wed, 02 Mar 2016 04:50:52
Message-Id: 1456894174.5b19f9f7e5de5adc37f4d9e1794a72117c09457e.calchan@gentoo
1 commit: 5b19f9f7e5de5adc37f4d9e1794a72117c09457e
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 04:49:34 2016 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 04:49:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b19f9f7
7
8 dev-tex/circuit_macros: remove 8.3
9
10 dev-tex/circuit_macros/Manifest | 1 -
11 dev-tex/circuit_macros/circuit_macros-8.3.ebuild | 50 ------------------------
12 2 files changed, 51 deletions(-)
13
14 diff --git a/dev-tex/circuit_macros/Manifest b/dev-tex/circuit_macros/Manifest
15 index 701690a..d16774d 100644
16 --- a/dev-tex/circuit_macros/Manifest
17 +++ b/dev-tex/circuit_macros/Manifest
18 @@ -1,3 +1,2 @@
19 DIST circuit_macros-8.3.1.tar.gz 2021702 SHA256 3ea3a258c4222b981c541924a2f006079b6240a6500a7e5a76985be1ad4eb085 SHA512 b7f5ee756169b15b80d8645501462281150a9981e7b80eec7b453829b61610b352a349e2f0086f70421ef7eb38f1ac205e3eecc318fc14ee67eb90e94414d219 WHIRLPOOL 6d2f22bac6b7f695261db6878faaeb1fa08ae5924c5d9ce15362d2c7f5f2e60c372302c581f234c21dc7b183206b46aa85e71b877a53720b3b2ca6882a996206
20 DIST circuit_macros-8.3.2.tar.gz 2047086 SHA256 006723c6ebc06120c90b5c4a9b77cea318172121923207575eeb5c6b1925d32d SHA512 bfc43496985b9b2a09a5adbf5c2e5dbd09109a75d3d684858746885fd571da17f4d8209bd9a3b084b155d6a36269fea2d9f750a05c262f1c0d07b969b3233204 WHIRLPOOL be295b4c8c41236632a32f6ce8990c93fab490c9977d246ac0bfcd54868bfad4a21cb9d135b4d2100405c6200f8d09ee4c0e68e920aa9a0330c20c8a95c40351
21 -DIST circuit_macros-8.3.tar.gz 1897642 SHA256 c3b547a79204acb71cc32f59261963116afb6afd2614bb135bf1b5edf64b077c SHA512 d9407c54e5b87f5bd1cf43f92f4b65a2e59221f8a62d687918230f0ab6ffa47757436c1914e76872b7ac22b6547ab6c0efa54a0f05647ff435a4f2452a1c6029 WHIRLPOOL 7b50ed8cac220cfd1c071102ff54a1074ce2f737e7a61202b446202a613da2a9d94b19611174a9e979a8b09aa4f60246580b802efb6ba821307d8849f7306ad8
22
23 diff --git a/dev-tex/circuit_macros/circuit_macros-8.3.ebuild b/dev-tex/circuit_macros/circuit_macros-8.3.ebuild
24 deleted file mode 100644
25 index 64e3480..0000000
26 --- a/dev-tex/circuit_macros/circuit_macros-8.3.ebuild
27 +++ /dev/null
28 @@ -1,50 +0,0 @@
29 -# Copyright 1999-2015 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -# $Id$
32 -
33 -EAPI=5
34 -
35 -inherit texlive-common
36 -
37 -DESCRIPTION="M4 Macros for Electric circuit diagrams in TeX or LaTeX"
38 -HOMEPAGE="https://ece.uwaterloo.ca/~aplevich/Circuit_macros/"
39 -SRC_URI="https://ece.uwaterloo.ca/~aplevich/Circuit_macros/Circuit_macros.tar.gz -> circuit_macros-${PV}.tar.gz"
40 -
41 -LICENSE="LPPL-1.3c"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE="doc examples +script"
45 -
46 -DEPEND=""
47 -RDEPEND="|| ( app-text/texlive[graphics] app-text/texlive[pstricks] )
48 - media-gfx/dpic
49 - sys-devel/m4
50 - script? ( app-text/texlive[graphics]
51 - dev-texlive/texlive-latexextra )"
52 -
53 -S="${WORKDIR}/Circuit_macros${PV}"
54 -
55 -src_install() {
56 - insinto /usr/share/${PN}
57 - doins *.m4
58 - insinto /usr/share/texmf-site/tex/latex/${PN}
59 - doins boxdims.sty
60 - dodoc README CHANGES Makefile doc/CMman.pdf
61 - rm -f doc/CMman.pdf
62 - use doc && dodoc -r doc
63 - use examples && dodoc -r examples
64 - use script && dobin "${FILESDIR}/cm2pdf"
65 - docompress -x \
66 - /usr/share/doc/${PF}/Makefile \
67 - /usr/share/doc/${PF}/doc \
68 - /usr/share/doc/${PF}/examples
69 -}
70 -
71 -pkg_postinst() {
72 - etexmf-update
73 - use script && einfo "cm2pdf was installed to automatically create PDFs. Run cm2pdf --help for usage help."
74 -}
75 -
76 -pkg_postrm() {
77 - etexmf-update
78 -}