public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-embedded/libftdi: libftdi-0.17.ebuild ChangeLog
@ 2009-12-20 12:39 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2009-12-20 12:39 UTC (permalink / raw
  To: gentoo-commits

vapier      09/12/20 12:39:54

  Modified:             ChangeLog
  Added:                libftdi-0.17.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc60/cvs/Linux x86_64)

Revision  Changes    Path
1.48                 dev-embedded/libftdi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	20 Dec 2009 12:39:35 -0000	1.47
+++ ChangeLog	20 Dec 2009 12:39:54 -0000	1.48
@@ -1,6 +1,11 @@
 # ChangeLog for dev-embedded/libftdi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.47 2009/12/20 12:39:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.48 2009/12/20 12:39:54 vapier Exp $
+
+*libftdi-0.17 (20 Dec 2009)
+
+  20 Dec 2009; Mike Frysinger <vapier@gentoo.org> +libftdi-0.17.ebuild:
+  Version bump.
 
   20 Dec 2009; Mike Frysinger <vapier@gentoo.org> libftdi-0.16.ebuild:
   Mark sparc stable #288994.



1.1                  dev-embedded/libftdi/libftdi-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?rev=1.1&content-type=text/plain

Index: libftdi-0.17.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v 1.1 2009/12/20 12:39:54 vapier Exp $

EAPI="2"

DESCRIPTION="Userspace access to FTDI USB interface chips"
HOMEPAGE="http://www.intra2net.com/en/developer/libftdi/"
SRC_URI="http://www.intra2net.com/en/developer/libftdi/download/${P}.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="cxx doc examples python"

RDEPEND="virtual/libusb:0
	cxx? ( dev-libs/boost )
	python? ( dev-lang/python )"
DEPEND="${RDEPEND}
	doc? ( app-doc/doxygen )"

src_prepare() {
	# don't bother building examples as we dont want the binaries
	# installed and the Makefile has broken install targets
	sed -i '/^SUBDIRS =/s:examples::' Makefile.in
}

src_configure() {
	use doc || export ac_cv_path_DOXYGEN=true
	econf \
		$(use_enable cxx libftdipp) \
		$(use_enable python python-binding)
}

src_install() {
	emake DESTDIR="${D}" install || die "Installation failed"
	dodoc ChangeLog README

	if use doc ; then
		doman doc/man/man3/*
		dohtml doc/html/*
	fi
	if use examples ; then
		docinto examples
		dodoc examples/*.c
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-embedded/libftdi: libftdi-0.17.ebuild ChangeLog
@ 2009-12-29  7:46 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2009-12-29  7:46 UTC (permalink / raw
  To: gentoo-commits

vapier      09/12/29 07:46:49

  Modified:             libftdi-0.17.ebuild ChangeLog
  Log:
  Fix typo in builddir name #298607 by uzytkownik.
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-embedded/libftdi/libftdi-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?r1=1.1&r2=1.2

Index: libftdi-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libftdi-0.17.ebuild	20 Dec 2009 12:39:54 -0000	1.1
+++ libftdi-0.17.ebuild	29 Dec 2009 07:46:49 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v 1.1 2009/12/20 12:39:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v 1.2 2009/12/29 07:46:49 vapier Exp $
 
 EAPI="2"
 
@@ -23,6 +23,7 @@
 	# don't bother building examples as we dont want the binaries
 	# installed and the Makefile has broken install targets
 	sed -i '/^SUBDIRS =/s:examples::' Makefile.in
+	sed -i 's:@top_buildir@:@top_builddir@:' bindings/python/setup.py.in #298607
 }
 
 src_configure() {



1.49                 dev-embedded/libftdi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	20 Dec 2009 12:39:54 -0000	1.48
+++ ChangeLog	29 Dec 2009 07:46:49 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for dev-embedded/libftdi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.48 2009/12/20 12:39:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.49 2009/12/29 07:46:49 vapier Exp $
+
+  29 Dec 2009; Mike Frysinger <vapier@gentoo.org> libftdi-0.17.ebuild:
+  Fix typo in builddir name #298607 by uzytkownik.
 
 *libftdi-0.17 (20 Dec 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-embedded/libftdi: libftdi-0.17.ebuild ChangeLog
@ 2010-06-22 20:27 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2010-06-22 20:27 UTC (permalink / raw
  To: gentoo-commits

vapier      10/06/22 20:27:28

  Modified:             libftdi-0.17.ebuild ChangeLog
  Log:
  Stabilize for all.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-embedded/libftdi/libftdi-0.17.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild?r1=1.2&r2=1.3

Index: libftdi-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libftdi-0.17.ebuild	29 Dec 2009 07:46:49 -0000	1.2
+++ libftdi-0.17.ebuild	22 Jun 2010 20:27:28 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v 1.2 2009/12/29 07:46:49 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v 1.3 2010/06/22 20:27:28 vapier Exp $
 
 EAPI="2"
 
@@ -10,7 +10,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ppc ppc64 sparc x86"
 IUSE="cxx doc examples python"
 
 RDEPEND="virtual/libusb:0



1.50                 dev-embedded/libftdi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	29 Dec 2009 07:46:49 -0000	1.49
+++ ChangeLog	22 Jun 2010 20:27:28 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for dev-embedded/libftdi
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.49 2009/12/29 07:46:49 vapier Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.50 2010/06/22 20:27:28 vapier Exp $
+
+  22 Jun 2010; Mike Frysinger <vapier@gentoo.org> libftdi-0.17.ebuild:
+  Stabilize for all.
 
   29 Dec 2009; Mike Frysinger <vapier@gentoo.org> libftdi-0.17.ebuild:
   Fix typo in builddir name #298607 by uzytkownik.






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

end of thread, other threads:[~2010-06-22 20:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-22 20:27 [gentoo-commits] gentoo-x86 commit in dev-embedded/libftdi: libftdi-0.17.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2009-12-29  7:46 Mike Frysinger (vapier)
2009-12-20 12:39 Mike Frysinger (vapier)

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