public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog
@ 2009-12-11  2:40 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeremy Olexa (darkside) @ 2009-12-11  2:40 UTC (permalink / raw
  To: gentoo-commits

darkside    09/12/11 02:40:33

  Modified:             ChangeLog
  Added:                hamlib-1.2.10.ebuild
  Log:
  Version bump, ebuild by Thomas Beierlein
  (Portage version: 2.1.7.4/cvs/Linux x86_64)

Revision  Changes    Path
1.40                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	29 Aug 2009 18:14:26 -0000	1.39
+++ ChangeLog	11 Dec 2009 02:40:33 -0000	1.40
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.39 2009/08/29 18:14:26 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.40 2009/12/11 02:40:33 darkside Exp $
+
+*hamlib-1.2.10 (11 Dec 2009)
+
+  11 Dec 2009; Jeremy Olexa <darkside@gentoo.org> +hamlib-1.2.10.ebuild:
+  Version bump, ebuild by Thomas Beierlein
 
   29 Aug 2009; nixnut <nixnut@gentoo.org> hamlib-1.2.9.ebuild:
   ppc stable #276423



1.1                  media-libs/hamlib/hamlib-1.2.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.1&content-type=text/plain

Index: hamlib-1.2.10.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.1 2009/12/11 02:40:33 darkside Exp $

inherit autotools eutils multilib python

DESCRIPTION="Ham radio backend rig control libraries"
HOMEPAGE="http://sourceforge.net/apps/mediawiki/hamlib"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="LGPL-2 GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="doc python tcl"

RESTRICT="test"

RDEPEND="
	=virtual/libusb-0*
	dev-libs/libxml2
	python? ( dev-lang/python
		dev-lang/tcl )
	tcl? ( dev-lang/tcl )"

DEPEND=" ${RDEPEND}
	dev-util/pkgconfig
	dev-lang/swig
	>=sys-devel/libtool-2.2
	doc? ( app-doc/doxygen )"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# fix hardcoded libdir paths
	sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
		-e "s#fix}/include#fix}/include/hamlib#" \
		hamlib.pc.in || die "sed failed"
	sed -i -e "s#/lib/#/$(get_libdir)/#g" \
		bindings/Makefile.am || die "sed failed"

	if use python ; then
		# fix python lib path
		python_version
		sed -i -e "s#/python#/python${PYVER}#" \
			bindings/Makefile.am || die "sed failed"
	fi

	# avoid compilation and use of bundled libltdl copy
	sed -i -e "s/lib libltdl src/lib src/g" \
		Makefile.am || die "sed failed"
	eautoreconf
	rm -rf libltdl
}

src_compile() {
	econf \
		--libdir=/usr/$(get_libdir)/hamlib \
		--disable-static \
		--with-rpc-backends \
		--without-perl-binding \
		$(use_with python python-binding) \
		$(use_enable tcl  tcl-binding)

	emake || die "emake failed"

	if use doc ; then
		cd doc && make doc || die "make doc failed"
	fi
}

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

	dodoc AUTHORS PLAN README README.betatester \
		README.developer NEWS TODO || die "dodoc failed"

	if use doc; then
		dohtml doc/html/* || die "dohtml failed"
	fi

	insinto /usr/$(get_libdir)/pkgconfig
	doins hamlib.pc || die "doins failed"

	echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
	doenvd "${T}"/73hamlib || die "doenvd failed"
}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog
@ 2010-03-14 20:39 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeremy Olexa (darkside) @ 2010-03-14 20:39 UTC (permalink / raw
  To: gentoo-commits

darkside    10/03/14 20:39:18

  Modified:             hamlib-1.2.10.ebuild ChangeLog
  Log:
  Add fixes for python/tcl bindings and python.eclass fixes by Thomas Beierlein
  (Portage version: 2.1.8/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-libs/hamlib/hamlib-1.2.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?r1=1.1&r2=1.2

Index: hamlib-1.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hamlib-1.2.10.ebuild	11 Dec 2009 02:40:33 -0000	1.1
+++ hamlib-1.2.10.ebuild	14 Mar 2010 20:39:17 -0000	1.2
@@ -1,7 +1,8 @@
-# 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/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.1 2009/12/11 02:40:33 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.2 2010/03/14 20:39:17 darkside Exp $
 
+PYTHON_DEPEND="2"
 inherit autotools eutils multilib python
 
 DESCRIPTION="Ham radio backend rig control libraries"
@@ -36,15 +37,10 @@
 	sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
 		-e "s#fix}/include#fix}/include/hamlib#" \
 		hamlib.pc.in || die "sed failed"
-	sed -i -e "s#/lib/#/$(get_libdir)/#g" \
-		bindings/Makefile.am || die "sed failed"
 
-	if use python ; then
-		# fix python lib path
-		python_version
-		sed -i -e "s#/python#/python${PYVER}#" \
-			bindings/Makefile.am || die "sed failed"
-	fi
+	# fix python and tcl lib path and
+	# drop unneeded search for python library
+	epatch "${FILESDIR}"/${PN}-bindings.diff
 
 	# avoid compilation and use of bundled libltdl copy
 	sed -i -e "s/lib libltdl src/lib src/g" \
@@ -60,7 +56,7 @@
 		--with-rpc-backends \
 		--without-perl-binding \
 		$(use_with python python-binding) \
-		$(use_enable tcl  tcl-binding)
+		$(use_enable tcl tcl-binding)
 
 	emake || die "emake failed"
 



1.41                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	11 Dec 2009 02:40:33 -0000	1.40
+++ ChangeLog	14 Mar 2010 20:39:17 -0000	1.41
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/hamlib
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.40 2009/12/11 02:40:33 darkside Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.41 2010/03/14 20:39:17 darkside Exp $
+
+  14 Mar 2010; Jeremy Olexa <darkside@gentoo.org> hamlib-1.2.10.ebuild,
+  +files/hamlib-bindings.diff:
+  Add fixes for python/tcl bindings and python.eclass fixes by Thomas
+  Beierlein
 
 *hamlib-1.2.10 (11 Dec 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog
@ 2010-03-15 19:28 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-03-15 19:28 UTC (permalink / raw
  To: gentoo-commits

nixnut      10/03/15 19:28:48

  Modified:             hamlib-1.2.10.ebuild ChangeLog
  Log:
  ppc stable #307219
  (Portage version: 2.1.7.17/cvs/Linux ppc)

Revision  Changes    Path
1.3                  media-libs/hamlib/hamlib-1.2.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?r1=1.2&r2=1.3

Index: hamlib-1.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hamlib-1.2.10.ebuild	14 Mar 2010 20:39:17 -0000	1.2
+++ hamlib-1.2.10.ebuild	15 Mar 2010 19:28:48 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.2 2010/03/14 20:39:17 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.3 2010/03/15 19:28:48 nixnut Exp $
 
 PYTHON_DEPEND="2"
 inherit autotools eutils multilib python
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ppc ~x86 ~x86-fbsd"
 IUSE="doc python tcl"
 
 RESTRICT="test"



1.42                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	14 Mar 2010 20:39:17 -0000	1.41
+++ ChangeLog	15 Mar 2010 19:28:48 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.41 2010/03/14 20:39:17 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.42 2010/03/15 19:28:48 nixnut Exp $
+
+  15 Mar 2010; nixnut <nixnut@gentoo.org> hamlib-1.2.10.ebuild:
+  ppc stable #307219
 
   14 Mar 2010; Jeremy Olexa <darkside@gentoo.org> hamlib-1.2.10.ebuild,
   +files/hamlib-bindings.diff:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog
@ 2010-03-24 19:33 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-03-24 19:33 UTC (permalink / raw
  To: gentoo-commits

fauli       10/03/24 19:33:15

  Modified:             hamlib-1.2.10.ebuild ChangeLog
  Log:
  stable x86, bug 307219
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.4                  media-libs/hamlib/hamlib-1.2.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?r1=1.3&r2=1.4

Index: hamlib-1.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hamlib-1.2.10.ebuild	15 Mar 2010 19:28:48 -0000	1.3
+++ hamlib-1.2.10.ebuild	24 Mar 2010 19:33:15 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.3 2010/03/15 19:28:48 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.4 2010/03/24 19:33:15 fauli Exp $
 
 PYTHON_DEPEND="2"
 inherit autotools eutils multilib python
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ppc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ppc x86 ~x86-fbsd"
 IUSE="doc python tcl"
 
 RESTRICT="test"



1.43                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	15 Mar 2010 19:28:48 -0000	1.42
+++ ChangeLog	24 Mar 2010 19:33:15 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.42 2010/03/15 19:28:48 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.43 2010/03/24 19:33:15 fauli Exp $
+
+  24 Mar 2010; Christian Faulhammer <fauli@gentoo.org> hamlib-1.2.10.ebuild:
+  stable x86, bug 307219
 
   15 Mar 2010; nixnut <nixnut@gentoo.org> hamlib-1.2.10.ebuild:
   ppc stable #307219






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

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog
@ 2010-04-13 18:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-04-13 18:25 UTC (permalink / raw
  To: gentoo-commits

armin76     10/04/13 18:25:22

  Modified:             hamlib-1.2.10.ebuild ChangeLog
  Log:
  alpha stable wrt #307219
  (Portage version: 2.1.7.17/cvs/Linux ia64)

Revision  Changes    Path
1.5                  media-libs/hamlib/hamlib-1.2.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?r1=1.4&r2=1.5

Index: hamlib-1.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hamlib-1.2.10.ebuild	24 Mar 2010 19:33:15 -0000	1.4
+++ hamlib-1.2.10.ebuild	13 Apr 2010 18:25:22 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.4 2010/03/24 19:33:15 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.5 2010/04/13 18:25:22 armin76 Exp $
 
 PYTHON_DEPEND="2"
 inherit autotools eutils multilib python
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ppc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ppc x86 ~x86-fbsd"
 IUSE="doc python tcl"
 
 RESTRICT="test"



1.44                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	24 Mar 2010 19:33:15 -0000	1.43
+++ ChangeLog	13 Apr 2010 18:25:22 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.43 2010/03/24 19:33:15 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.44 2010/04/13 18:25:22 armin76 Exp $
+
+  13 Apr 2010; Raúl Porcel <armin76@gentoo.org> hamlib-1.2.10.ebuild:
+  alpha stable wrt #307219
 
   24 Mar 2010; Christian Faulhammer <fauli@gentoo.org> hamlib-1.2.10.ebuild:
   stable x86, bug 307219






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

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog
@ 2010-05-23 18:14 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2010-05-23 18:14 UTC (permalink / raw
  To: gentoo-commits

pacho       10/05/23 18:14:25

  Modified:             hamlib-1.2.10.ebuild ChangeLog
  Log:
  stable amd64, bug 307219
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  media-libs/hamlib/hamlib-1.2.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild?r1=1.5&r2=1.6

Index: hamlib-1.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- hamlib-1.2.10.ebuild	13 Apr 2010 18:25:22 -0000	1.5
+++ hamlib-1.2.10.ebuild	23 May 2010 18:14:24 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.5 2010/04/13 18:25:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.10.ebuild,v 1.6 2010/05/23 18:14:24 pacho Exp $
 
 PYTHON_DEPEND="2"
 inherit autotools eutils multilib python
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2 GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ppc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ppc x86 ~x86-fbsd"
 IUSE="doc python tcl"
 
 RESTRICT="test"



1.46                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	29 Apr 2010 16:09:27 -0000	1.45
+++ ChangeLog	23 May 2010 18:14:24 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.45 2010/04/29 16:09:27 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.46 2010/05/23 18:14:24 pacho Exp $
+
+  23 May 2010; Pacho Ramos <pacho@gentoo.org> hamlib-1.2.10.ebuild:
+  stable amd64, bug 307219
 
   29 Apr 2010; Thomas Beierlein <tomjbe@gentoo.org> metadata.xml:
   I take over full maintainership now. Darkside, thanks for proxying.






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

end of thread, other threads:[~2010-05-23 18:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-13 18:25 [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: hamlib-1.2.10.ebuild ChangeLog Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2010-05-23 18:14 Pacho Ramos (pacho)
2010-03-24 19:33 Christian Faulhammer (fauli)
2010-03-15 19:28 Gysbert Wassenaar (nixnut)
2010-03-14 20:39 Jeremy Olexa (darkside)
2009-12-11  2:40 Jeremy Olexa (darkside)

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