* [gentoo-commits] gentoo-x86 commit in dev-util/cunit: ChangeLog cunit-2.1_p2.ebuild
@ 2013-05-21 17:22 Jeroen Roovers (jer)
0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2013-05-21 17:22 UTC (permalink / raw
To: gentoo-commits
jer 13/05/21 17:22:34
Modified: ChangeLog
Added: cunit-2.1_p2.ebuild
Log:
Version bump. Add ncurses support (bug #336901 by Tom Hendrikx). Add IUSE=static-libs (bug #460794).
(Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.34 dev-util/cunit/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 2 May 2013 03:52:26 -0000 1.33
+++ ChangeLog 21 May 2013 17:22:34 -0000 1.34
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/cunit
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.33 2013/05/02 03:52:26 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.34 2013/05/21 17:22:34 jer Exp $
+
+*cunit-2.1_p2 (21 May 2013)
+
+ 21 May 2013; Jeroen Roovers <jer@gentoo.org> +cunit-2.1_p2.ebuild:
+ Version bump. Add ncurses support (bug #336901 by Tom Hendrikx). Add
+ IUSE=static-libs (bug #460794).
02 May 2013; Patrick Lauer <patrick@gentoo.org> cunit-2.1-r1.ebuild:
Automake 1.13 fix
1.1 dev-util/cunit/cunit-2.1_p2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?rev=1.1&content-type=text/plain
Index: cunit-2.1_p2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild,v 1.1 2013/05/21 17:22:34 jer Exp $
EAPI=5
inherit autotools eutils flag-o-matic
MY_PN='CUnit'
MY_PV="${PV/_p*}-2"
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="CUnit - C Unit Test Framework"
SRC_URI="mirror://sourceforge/cunit/${MY_P}-src.tar.bz2"
HOMEPAGE="http://cunit.sourceforge.net"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="ncurses static-libs"
DEPEND="ncurses? ( sys-libs/ncurses )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS=( AUTHORS NEWS README ChangeLog )
src_prepare() {
sed -e "/^docdir/d" -i doc/Makefile.am || die
sed -e '/^dochdrdir/{s:$(prefix)/doc/@PACKAGE@:$(docdir):}' \
-i doc/headers/Makefile.am || die
sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.in || die
eautoreconf
append-cppflags -D_BSD_SOURCE
}
src_configure() {
econf \
$(use_enable ncurses curses) \
$(use_enable static-libs static) \
--disable-debug \
--docdir="${EPREFIX}"/usr/share/doc/${PF}
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cunit: ChangeLog cunit-2.1_p2.ebuild
@ 2013-05-21 20:15 Jeroen Roovers (jer)
0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2013-05-21 20:15 UTC (permalink / raw
To: gentoo-commits
jer 13/05/21 20:15:34
Modified: ChangeLog cunit-2.1_p2.ebuild
Log:
Remove ncurses support (bug #336901).
(Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.37 dev-util/cunit/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 21 May 2013 17:33:58 -0000 1.36
+++ ChangeLog 21 May 2013 20:15:33 -0000 1.37
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cunit
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.36 2013/05/21 17:33:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.37 2013/05/21 20:15:33 jer Exp $
+
+ 21 May 2013; Jeroen Roovers <jer@gentoo.org> cunit-2.1_p2.ebuild:
+ Remove ncurses support (bug #336901).
21 May 2013; Jeroen Roovers <jer@gentoo.org> cunit-2.1_p2.ebuild:
Auto-remove .la.
1.3 dev-util/cunit/cunit-2.1_p2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?r1=1.2&r2=1.3
Index: cunit-2.1_p2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cunit-2.1_p2.ebuild 21 May 2013 17:33:58 -0000 1.2
+++ cunit-2.1_p2.ebuild 21 May 2013 20:15:33 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild,v 1.2 2013/05/21 17:33:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild,v 1.3 2013/05/21 20:15:33 jer Exp $
EAPI=5
inherit autotools eutils flag-o-matic
@@ -16,10 +16,7 @@
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="ncurses static-libs"
-
-DEPEND="ncurses? ( sys-libs/ncurses )"
-RDEPEND="${DEPEND}"
+IUSE="static-libs"
S=${WORKDIR}/${MY_P}
@@ -36,7 +33,6 @@
src_configure() {
econf \
- $(use_enable ncurses curses) \
$(use_enable static-libs static) \
--disable-debug \
--docdir="${EPREFIX}"/usr/share/doc/${PF}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-21 20:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-21 20:15 [gentoo-commits] gentoo-x86 commit in dev-util/cunit: ChangeLog cunit-2.1_p2.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2013-05-21 17:22 Jeroen Roovers (jer)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox