public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/ctemplate: ctemplate-2.0.ebuild ChangeLog
@ 2012-02-11  8:21 Tim Harder (radhermit)
  0 siblings, 0 replies; 2+ messages in thread
From: Tim Harder (radhermit) @ 2012-02-11  8:21 UTC (permalink / raw
  To: gentoo-commits

radhermit    12/02/11 08:21:33

  Modified:             ChangeLog
  Added:                ctemplate-2.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 dev-cpp/ctemplate/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	11 Feb 2012 05:11:44 -0000	1.18
+++ ChangeLog	11 Feb 2012 08:21:33 -0000	1.19
@@ -1,6 +1,11 @@
 # ChangeLog for dev-cpp/ctemplate
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.18 2012/02/11 05:11:44 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.19 2012/02/11 08:21:33 radhermit Exp $
+
+*ctemplate-2.0 (11 Feb 2012)
+
+  11 Feb 2012; Tim Harder <radhermit@gentoo.org> +ctemplate-2.0.ebuild:
+  Version bump.
 
   11 Feb 2012; Mike Frysinger <vapier@gentoo.org> ctemplate-1.0.ebuild:
   Add some arm love.



1.1                  dev-cpp/ctemplate/ctemplate-2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild?rev=1.1&content-type=text/plain

Index: ctemplate-2.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild,v 1.1 2012/02/11 08:21:33 radhermit Exp $

EAPI="4"

inherit elisp-common python

DESCRIPTION="A simple but powerful template language for C++"
HOMEPAGE="http://code.google.com/p/ctemplate/"
SRC_URI="http://ctemplate.googlecode.com/files/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc emacs vim-syntax static-libs test"

DEPEND="test? ( =dev-lang/python-2* )"
RDEPEND="vim-syntax? ( >=app-editors/vim-core-7 )
	emacs? ( virtual/emacs )"

SITEFILE="70ctemplate-gentoo.el"

pkg_setup() {
	if use test ; then
		python_set_active_version 2
		python_pkg_setup
	fi
}

src_configure() {
	econf \
		--enable-shared \
		$(use_enable static-libs static)
}

src_compile() {
	default

	if use emacs ; then
		elisp-compile contrib/tpl-mode.el || die "elisp-compile failed"
	fi
}

src_install() {
	emake DESTDIR="${D}" install

	# Installs just every piece
	rm -rf "${ED}/usr/share/doc"

	dodoc AUTHORS ChangeLog NEWS README
	use doc && dohtml doc/*

	if use vim-syntax ; then
		cd "${S}/contrib"
		sh highlighting.vim || die "unpacking vim scripts failed"
		insinto /usr/share/vim/vimfiles
		doins -r .vim/*
	fi

	if use emacs ; then
		cd "${S}/contrib"
		elisp-install ${PN} tpl-mode.el tpl-mode.elc || die "elisp-install failed"
		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
	fi

	find "${ED}" -name '*.la' -exec rm -f {} +
}

pkg_postinst() {
	use emacs && elisp-site-regen
}

pkg_postrm() {
	use emacs && elisp-site-regen
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/ctemplate: ctemplate-2.0.ebuild ChangeLog
@ 2012-03-07 19:07 Brent Baude (ranger)
  0 siblings, 0 replies; 2+ messages in thread
From: Brent Baude (ranger) @ 2012-03-07 19:07 UTC (permalink / raw
  To: gentoo-commits

ranger      12/03/07 19:07:34

  Modified:             ctemplate-2.0.ebuild ChangeLog
  Log:
  Marking ctemplate-2.0 ppc for bug 394729
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.2                  dev-cpp/ctemplate/ctemplate-2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild?r1=1.1&r2=1.2

Index: ctemplate-2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ctemplate-2.0.ebuild	11 Feb 2012 08:21:33 -0000	1.1
+++ ctemplate-2.0.ebuild	7 Mar 2012 19:07:34 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild,v 1.1 2012/02/11 08:21:33 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-2.0.ebuild,v 1.2 2012/03/07 19:07:34 ranger Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc emacs vim-syntax static-libs test"
 
 DEPEND="test? ( =dev-lang/python-2* )"



1.21                 dev-cpp/ctemplate/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	13 Feb 2012 16:29:14 -0000	1.20
+++ ChangeLog	7 Mar 2012 19:07:34 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/ctemplate
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.20 2012/02/13 16:29:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.21 2012/03/07 19:07:34 ranger Exp $
+
+  07 Mar 2012; Brent Baude <ranger@gentoo.org> ctemplate-2.0.ebuild:
+  Marking ctemplate-2.0 ppc for bug 394729
 
   13 Feb 2012; Mike Frysinger <vapier@gentoo.org> ctemplate-1.0.ebuild:
   Mark arm stable.






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-03-07 19:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-11  8:21 [gentoo-commits] gentoo-x86 commit in dev-cpp/ctemplate: ctemplate-2.0.ebuild ChangeLog Tim Harder (radhermit)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-07 19:07 Brent Baude (ranger)

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