Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libdynd: metadata.xml libdynd-0.6.0.ebuild Manifest ChangeLog
Date: Mon, 10 Feb 2014 23:30:15
Message-Id: 20140210233010.A1DED2004E@flycatcher.gentoo.org
1 bicatali 14/02/10 23:30:10
2
3 Added: metadata.xml libdynd-0.6.0.ebuild Manifest
4 ChangeLog
5 Log:
6 Initial import
7
8 (Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.1 dev-libs/libdynd/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>sci</herd>
22 <longdescription lang='en'>
23 LibDyND, a component of the Blaze project, is a C++ library for
24 dynamic, multidimensional arrays. It is inspired by NumPy, the
25 Python array programming library at the core of the scientific
26 Python stack, but tries to address a number of obstacles encountered
27 by some of its users. Examples of this are support for
28 variable-sized string and ragged array types. The library is in a
29 preview development state, and can be thought of as a sandbox where
30 features are being tried and tweaked to gain experience with them.
31 </longdescription>
32 </pkgmetadata>
33
34
35
36 1.1 dev-libs/libdynd/libdynd-0.6.0.ebuild
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/libdynd-0.6.0.ebuild?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/libdynd-0.6.0.ebuild?rev=1.1&content-type=text/plain
40
41 Index: libdynd-0.6.0.ebuild
42 ===================================================================
43 # Copyright 1999-2014 Gentoo Foundation
44 # Distributed under the terms of the GNU General Public License v2
45 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libdynd/libdynd-0.6.0.ebuild,v 1.1 2014/02/10 23:30:10 bicatali Exp $
46
47 EAPI=5
48
49 inherit cmake-utils multilib
50
51 DESCRIPTION="C++ dynamic multi-dimensionnal array library with Python exposure"
52 HOMEPAGE="https://github.com/ContinuumIO/libdynd"
53 SRC_URI="https://github.com/ContinuumIO/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
54
55 LICENSE="BSD"
56
57 SLOT="0"
58 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
59
60 IUSE="doc test"
61
62 RDEPEND="dev-libs/c-blosc"
63 DEPEND="${RDEPEND}"
64
65 DOCS=( README.md )
66
67 PATCHES=(
68 "${FILESDIR}"/${P}-out-of-git-versioning.patch
69 "${FILESDIR}"/${P}-dont-install-test.patch
70 "${FILESDIR}"/${P}-respect-libdir.patch
71 "${FILESDIR}"/${P}-optional-cblosc.patch
72 )
73
74 src_configure() {
75 sed -i \
76 -e '/add_subdirectory(examples)/d' \
77 CMakeLists.txt || die
78 local mycmakeargs=(
79 -DDYND_SHARED_LIB=ON
80 -DDYND_INSTALL_LIB=ON
81 -DDYND_INTERNAL_BLOSC=OFF
82 $(cmake-utils_use test DYND_BUILD_TESTS)
83 )
84 cmake-utils_src_configure
85 }
86
87 src_test() {
88 cd "${BUILD_DIR}" || die
89 ./tests/test_libdynd || die
90 }
91
92 src_install() {
93 cmake-utils_src_install
94 use doc && dodoc documents/*
95 }
96
97
98
99 1.1 dev-libs/libdynd/Manifest
100
101 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/Manifest?rev=1.1&view=markup
102 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/Manifest?rev=1.1&content-type=text/plain
103
104 Index: Manifest
105 ===================================================================
106 AUX libdynd-0.6.0-dont-install-test.patch 494 SHA256 b171e6dbff8c0b43984a511567d62e18b3e3d9ed848fe643a77088d951075e52 SHA512 345c2315e04775d2a2169f910b521a3e781b602a2495256d3ca022b47e0a49be621b4c2d11b8ef1f21d6c7f8055d5ebc4bf82f3b2581b6fe7f0eca1624a668f7 WHIRLPOOL b2dd7a6c00608e881073c5913adaf1e3ae788a608596ca79ea089080ac52dda8ad61b1274abf422017c7a5ea07cd350e41a73000e33bab305b0af2bb3b33dd79
107 AUX libdynd-0.6.0-optional-cblosc.patch 895 SHA256 6ff32cdb5ee64b4d2fd44850e5d7bf64baf99647577ef982e0adc45b8f54fe30 SHA512 1c607d8a4dbc653b57b1b8e8111b640438613805de4b79dd86c979f4a6ad81cdc825c12277556f9a16c9020b6e1b1909338b2f6ad9f6f47a378e24dc7280829c WHIRLPOOL 21f6d033d725b53244634500f0c79c172e17170eefac0459c447fc0887b87e965fb4baed9023f8894fd2169846de13acb5729f660d81c5d9a799bb2b2b05a94d
108 AUX libdynd-0.6.0-out-of-git-versioning.patch 613 SHA256 87050a1b52c4a07d3a4b40072c0ace93dc0dbac58e9d3fe3c2d9abdd09fe0d5b SHA512 9aa63896c529437838288310ca2691df644ef0a7c96a9ace479043374c6a0fdcff75d89a7bcbd7174fab37859b5b8137823bfe409dfc7933e00bf53d99b25a6f WHIRLPOOL d10dc76e433d2fc4ee06b43f46f9692088f777950be26c5c04ea10bf10be7a064725c581a30a1b227fa32295e9903e8962f914340a897b024146976cbf638198
109 AUX libdynd-0.6.0-respect-libdir.patch 635 SHA256 1474543d5c4a2ce2e5505635c53535cbdf81940144f79b3da84ad293171c27d5 SHA512 5fbff46016eefd142bc5f28e6ae8c01c0fc644844d2ab1dc325ed29c7da5704579ed7a872a611a6577b2cafb1fd1fae6bb9f29995ac51773b08adb8cc402140e WHIRLPOOL 619e1b76bc84b3fe5b6184f035381cb5c21f92b3e70e3614e5303c13d7f76e3f116467da8007b1cf68815ec836d4c3a9bb35d95b6d60de8def54582e6269cfd3
110 DIST libdynd-0.6.0.tar.gz 661449 SHA256 1cb5870ad0812443de013fe175ef3d4435f417c1132c997fd035cae2db12db5a SHA512 d6550c80afa4a29259bb34ae8bde1ec215b34b05f614fcbfa3a306e489558e5f5123492b41388ae1a761017ec0e46b29fa43db6ce0517c73ed9ee94f03abd97f WHIRLPOOL 091596905a9e6e9b14b7d59b21ce98e90125c1543dfbe7fda999a8ba874596b4b5320f6dda041e0e060b4413f86add1b466c849bada7c4d28553870288ca48c9
111 EBUILD libdynd-0.6.0.ebuild 1227 SHA256 b6c6aa176e88f60f7970f8ea52e2a4cb976b667e38400428da752f85bb2eee54 SHA512 057973b5b3f1b15efa0b19b26feb14d0866745a8f9020fc7086fab3f07b3bfd1cefed481a74a7b0cdb311922185fc21fb50d71fb09e68fad646110fe9c442b30 WHIRLPOOL 89e4089e4f594ec432674e823b0c3b2b691da2f6f2a244662dcdfb65dd63f4a926cdfad3c8c40525f2d5e2515b76e064ed7e9dfa03d78c8b912fd51d270279b3
112 MISC metadata.xml 734 SHA256 02f6e6459b00824ef3d0a342f4ace1460f9e0df830657ed3c0bbf6faaa14d56d SHA512 9e1de6c6ef6cc02f48b8fcfb7f5e56b6da577496d043685f4aa4719f887343c877e25158212c90a09cd38f89f2e861961e24e4008d41252df920bb16c8e25f9a WHIRLPOOL 217ae2f97e85a4ca1473f6741dd18a14056ef696df837c906e5f8a33a2482e283f0f6e7d48ad037654ee3ee798597870ba61a44b440f282ea5a2f018aa893617
113
114
115
116 1.1 dev-libs/libdynd/ChangeLog
117
118 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/ChangeLog?rev=1.1&view=markup
119 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/ChangeLog?rev=1.1&content-type=text/plain
120
121 Index: ChangeLog
122 ===================================================================
123 # ChangeLog for dev-libs/libdynd
124 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
125 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libdynd/ChangeLog,v 1.1 2014/02/10 23:30:10 bicatali Exp $
126
127 *libdynd-0.6.0 (10 Feb 2014)
128
129 10 Feb 2014; Sébastien Fabbro <bicatali@g.o>
130 +files/libdynd-0.6.0-dont-install-test.patch,
131 +files/libdynd-0.6.0-optional-cblosc.patch,
132 +files/libdynd-0.6.0-out-of-git-versioning.patch,
133 +files/libdynd-0.6.0-respect-libdir.patch, +libdynd-0.6.0.ebuild,
134 +metadata.xml:
135 Initial import