public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/cddlib: metadata.xml ChangeLog cddlib-094g.ebuild
@ 2013-02-03  9:54 Justin Lecher (jlec)
  0 siblings, 0 replies; only message in thread
From: Justin Lecher (jlec) @ 2013-02-03  9:54 UTC (permalink / raw
  To: gentoo-commits

jlec        13/02/03 09:54:08

  Modified:             metadata.xml ChangeLog
  Added:                cddlib-094g.ebuild
  Log:
  sci-libs/cddlib: Version Bump, #455096
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)

Revision  Changes    Path
1.2                  sci-libs/cddlib/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/metadata.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/metadata.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cddlib/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml	8 Nov 2010 23:19:56 -0000	1.1
+++ metadata.xml	3 Feb 2013 09:54:08 -0000	1.2
@@ -1,14 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<herd>sci</herd>
-<longdescription lang="en">
+  <herd>sci</herd>
+  <longdescription lang="en">
 The C-library  cddlib is a C implementation of the Double Description 
 Method of Motzkin et al. for generating all vertices (i.e. extreme points)
 and extreme rays of a general convex polyhedron in R^d given by a system 
 of linear inequalities:
 
-   P = { x=(x1, ..., xd)^T :  b - A  x  >= 0 }
+   P = { x=(x1, ..., xd)^T :  b - A  x  &gt;= 0 }
 
 where  A  is a given m x d real matrix, b is a given m-vector 
 and 0 is the m-vector of all zeros.



1.5                  sci-libs/cddlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cddlib/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	13 Aug 2011 07:12:13 -0000	1.4
+++ ChangeLog	3 Feb 2013 09:54:08 -0000	1.5
@@ -1,6 +1,12 @@
 # ChangeLog for sci-libs/cddlib
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cddlib/ChangeLog,v 1.4 2011/08/13 07:12:13 xarthisius Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cddlib/ChangeLog,v 1.5 2013/02/03 09:54:08 jlec Exp $
+
+*cddlib-094g (03 Feb 2013)
+
+  03 Feb 2013; Justin Lecher <jlec@gentoo.org> +cddlib-094g.ebuild,
+  +files/cddlib-094g-add-cdd_both_reps-binary.patch, metadata.xml:
+  Version Bump, #455096
 
   13 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> cddlib-094f-r2.ebuild:
   Dropped ppc keywords wrt #349167



1.1                  sci-libs/cddlib/cddlib-094g.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/cddlib-094g.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cddlib/cddlib-094g.ebuild?rev=1.1&content-type=text/plain

Index: cddlib-094g.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cddlib/cddlib-094g.ebuild,v 1.1 2013/02/03 09:54:08 jlec Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=true

inherit autotools-utils

DESCRIPTION="C implementation of the Double Description Method of Motzkin et al."
HOMEPAGE="http://www.ifor.math.ethz.ch/~fukuda/cdd_home/"
SRC_URI="ftp://ftp.ifor.math.ethz.ch/pub/fukuda/cdd/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"

DEPEND=">=dev-libs/gmp-4.2.2"
RDEPEND="${DEPEND}"

AUTOTOOLS_IN_SOURCE_BUILD="1"

DOCS=( ChangeLog README )

PATCHES=(
	"${FILESDIR}"/${P}-add-cdd_both_reps-binary.patch
)

src_prepare() {
	autotools-utils_src_prepare

	cp "${FILESDIR}"/cdd_both_reps.c "${S}"/src/ \
		|| die "failed to copy source file"
	ln -s "${S}"/src/cdd_both_reps.c "${S}"/src-gmp/cdd_both_reps.c \
		|| die "failed to make symbolic link to source file"
}

src_install() {
	use doc && DOCS=( ${DOCS[@]} doc/cddlibman.pdf doc/cddlibman.ps )

	autotools-utils_src_install
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-02-03  9:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-03  9:54 [gentoo-commits] gentoo-x86 commit in sci-libs/cddlib: metadata.xml ChangeLog cddlib-094g.ebuild Justin Lecher (jlec)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox