Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/omalloc/
Date: Wed, 23 Sep 2015 12:48:34
Message-Id: 1443010570.418d7656c65f6804a1eccc096344aabcf5be67dc.jlec@gentoo
1 commit: 418d7656c65f6804a1eccc096344aabcf5be67dc
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 23 12:16:10 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 23 12:16:10 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=418d7656
7
8 sci-libs/omalloc: Use default functions
9
10 Package-Manager: portage-2.2.21
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 sci-libs/omalloc/metadata.xml | 12 ++++++------
14 sci-libs/omalloc/omalloc-0.9.6.ebuild | 13 ++-----------
15 2 files changed, 8 insertions(+), 17 deletions(-)
16
17 diff --git a/sci-libs/omalloc/metadata.xml b/sci-libs/omalloc/metadata.xml
18 index 884f5b5..198ffa1 100644
19 --- a/sci-libs/omalloc/metadata.xml
20 +++ b/sci-libs/omalloc/metadata.xml
21 @@ -1,12 +1,12 @@
22 <?xml version="1.0" encoding="UTF-8"?>
23 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 <pkgmetadata>
25 -<herd>sci</herd>
26 -<maintainer>
27 -<email>tom111@×××.de</email>
28 -<name>Thomas Kahle</name>
29 -</maintainer>
30 -<longdescription lang="en">
31 + <herd>sci</herd>
32 + <maintainer>
33 + <email>tom111@×××.de</email>
34 + <name>Thomas Kahle</name>
35 + </maintainer>
36 + <longdescription lang="en">
37 omalloc is the memory management of Singular
38 </longdescription>
39 </pkgmetadata>
40
41 diff --git a/sci-libs/omalloc/omalloc-0.9.6.ebuild b/sci-libs/omalloc/omalloc-0.9.6.ebuild
42 index ff067a1..b03291a 100644
43 --- a/sci-libs/omalloc/omalloc-0.9.6.ebuild
44 +++ b/sci-libs/omalloc/omalloc-0.9.6.ebuild
45 @@ -18,13 +18,10 @@ SRC_URI="${SRC_COM}/Singular-3-1-1-2.tar.gz"
46 LICENSE="GPL-2"
47 SLOT="0"
48 KEYWORDS="~amd64 ~ppc ~x86"
49 -IUSE="debug"
50 +IUSE=""
51
52 S=${WORKDIR}/Singular-3-1-1/omalloc
53
54 -# Until tarballs are mirrored:
55 -RESTRICT="mirror"
56 -
57 pkg_setup() {
58 tc-export CC CXX
59 }
60 @@ -39,11 +36,5 @@ src_configure() {
61 }
62
63 src_test () {
64 - if use debug; then
65 - emake check
66 - fi
67 -}
68 -
69 -src_install () {
70 - emake DESTDIR="${D}" install
71 + emake check
72 }