Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/camd: metadata.xml Manifest camd-2.2.0.ebuild ChangeLog
Date: Tue, 05 Feb 2008 18:06:44
Message-Id: E1JMSBn-000654-NC@stork.gentoo.org
1 bicatali 08/02/05 18:06:35
2
3 Added: metadata.xml Manifest camd-2.2.0.ebuild ChangeLog
4 Log:
5 Initial import. Thanks to Justin Bronder for his work, see bug #173900
6 (Portage version: 2.1.4)
7
8 Revision Changes Path
9 1.1 sci-libs/camd/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci</herd>
20 <longdescription lang="en">
21 CAMD is a set of routines for ordering a sparse matrix prior to
22 Cholesky factorization (or for LU factorization with diagonal
23 pivoting). There are versions in both C and Fortran.
24 </longdescription>
25 </pkgmetadata>
26
27
28
29 1.1 sci-libs/camd/Manifest
30
31 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/Manifest?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/Manifest?rev=1.1&content-type=text/plain
33
34 Index: Manifest
35 ===================================================================
36 AUX camd-2.2.0-autotools.patch 2008 RMD160 c0ed2dff5684354bce8e1e224f39d972f334025d SHA1 769b095662ad2cb2e9fe2b36331c5e609d8e4b08 SHA256 55765472aa0fea869193281cd12a8a453ce63aca89e97832b169b8d73f63951f
37 DIST CAMD-2.2.0.tar.gz 227593 RMD160 ac91f020edac556d19fb23a5f88dfd0837f85b0a SHA1 02d323da119d3203714b3c1948f62c9813ba39a7 SHA256 a8a2254335e7dfbca7e19904fdf1a5e6149c41e141356d08121e6f806b209f45
38 EBUILD camd-2.2.0.ebuild 829 RMD160 64f309cc9da1bb50434b1a2ac79c0df55f46a4da SHA1 f5d9ed6b24e7775ad18a87744c5ebeec512885e6 SHA256 5255533a7e30b2d9a3edc25fcab2046cf259a6566d6dc4e7c517d18e70c4c3f2
39 MISC ChangeLog 342 RMD160 ff5693310b39f73c0b937ca0fb8146b18eef367e SHA1 773a83031297e09fbc59e13a16d67869b4d5afa7 SHA256 4aa8164f86ddce7cd189b2bbe0fdbb7920185517a6808766e0e8d9f4a51b6a26
40 MISC metadata.xml 388 RMD160 c113858b95883d16cf651a79d3b47e77b67d049e SHA1 474d7347b0459d0bf364eeba4a9675d1482c5b88 SHA256 956c7962863742a1d11c50b38da36d666bd5f5b3054c80b5c317324f209ca22f
41
42
43
44 1.1 sci-libs/camd/camd-2.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/camd-2.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/camd-2.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: camd-2.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-libs/camd/camd-2.2.0.ebuild,v 1.1 2008/02/05 18:06:35 bicatali Exp $
54
55 inherit autotools eutils
56
57 MY_PN=CAMD
58 DESCRIPTION="Library to order a sparse matrix prior to Cholesky factorization"
59 HOMEPAGE="http://www.cise.ufl.edu/research/sparse/camd"
60 SRC_URI="http://www.cise.ufl.edu/research/sparse/${PN}/${MY_PN}-${PV}.tar.gz"
61
62 LICENSE="LGPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc"
66 DEPEND="sci-libs/ufconfig"
67
68 S="${WORKDIR}/${MY_PN}"
69
70 src_unpack() {
71 unpack "${A}"
72 cd "${S}"
73 epatch "${FILESDIR}"/${P}-autotools.patch
74 eautoreconf
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "emake install failed"
79 dodoc README.txt Doc/ChangeLog || die "dodoc failed"
80 if use doc; then
81 insinto /usr/share/doc/${PF}
82 doins Doc/CAMD_UserGuide.pdf || die "pdf install failed"
83 fi
84 }
85
86
87
88 1.1 sci-libs/camd/ChangeLog
89
90 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/ChangeLog?rev=1.1&view=markup
91 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/ChangeLog?rev=1.1&content-type=text/plain
92
93 Index: ChangeLog
94 ===================================================================
95 # ChangeLog for sci-libs/camd
96 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
97 # $Header: /var/cvsroot/gentoo-x86/sci-libs/camd/ChangeLog,v 1.1 2008/02/05 18:06:35 bicatali Exp $
98
99 *camd-2.2.0 (05 Feb 2008)
100
101 05 Feb 2008; Sébastien Fabbro <bicatali@g.o>
102 +files/camd-2.2.0-autotools.patch, +metadata.xml, +camd-2.2.0.ebuild:
103 Initial import. Thanks to Justin Bronder for his work, see bug #173900
104
105
106
107
108 --
109 gentoo-commits@l.g.o mailing list