public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/libconfig: ChangeLog libconfig-1.4.9-r1.ebuild
@ 2013-04-02 18:55 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2013-04-02 18:55 UTC (permalink / raw
  To: gentoo-commits

jer         13/04/02 18:55:41

  Modified:             ChangeLog
  Added:                libconfig-1.4.9-r1.ebuild
  Log:
  Add multilib support by Karl Lindén (bug #464128).
  
  (Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.53                 dev-libs/libconfig/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	5 Mar 2013 03:38:47 -0000	1.52
+++ ChangeLog	2 Apr 2013 18:55:41 -0000	1.53
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/libconfig
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.52 2013/03/05 03:38:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.53 2013/04/02 18:55:41 jer Exp $
+
+*libconfig-1.4.9-r1 (02 Apr 2013)
+
+  02 Apr 2013; Jeroen Roovers <jer@gentoo.org> +libconfig-1.4.9-r1.ebuild,
+  +files/libconfig-1.4.9-out-of-source-build.patch:
+  Add multilib support by Karl Lindén (bug #464128).
 
   05 Mar 2013; Jeroen Roovers <jer@gentoo.org> metadata.xml:
   Add proxy-maintainers herd.



1.1                  dev-libs/libconfig/libconfig-1.4.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?rev=1.1&content-type=text/plain

Index: libconfig-1.4.9-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.1 2013/04/02 18:55:41 jer Exp $

EAPI="5"

inherit eutils autotools-multilib

DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
SRC_URI="http://www.hyperrealm.com/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
IUSE="+cxx examples static-libs"

DEPEND="
	sys-devel/libtool
	sys-devel/bison"
RDEPEND=""

PATCHES=( "${FILESDIR}/${P}-out-of-source-build.patch" )

AUTOTOOLS_AUTORECONF="1"

src_configure() {
	local myeconfargs=(
		$(use_enable cxx)
		--disable-examples
	)
	autotools-multilib_src_configure
}

local_src_test() {
	pushd "${BUILD_DIR}" > /dev/null || die
	emake test || die "test failed"
	popd > /dev/null || die
}

src_test() {
	# It responds to check but that does not work as intended
	multilib_foreach_abi local_src_test
}

src_install() {
	autotools-multilib_src_install
	if use examples; then
		local dir
		for dir in examples/c examples/c++; do
			insinto /usr/share/doc/${PF}/${dir}
			doins ${dir}/*
		done
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libconfig: ChangeLog libconfig-1.4.9-r1.ebuild
@ 2013-04-24 16:50 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2013-04-24 16:50 UTC (permalink / raw
  To: gentoo-commits

jer         13/04/24 16:50:22

  Modified:             ChangeLog libconfig-1.4.9-r1.ebuild
  Log:
  Fix building with automake-1.13.
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.54                 dev-libs/libconfig/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	2 Apr 2013 18:55:41 -0000	1.53
+++ ChangeLog	24 Apr 2013 16:50:21 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libconfig
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.53 2013/04/02 18:55:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.54 2013/04/24 16:50:21 jer Exp $
+
+  24 Apr 2013; Jeroen Roovers <jer@gentoo.org> libconfig-1.4.9-r1.ebuild:
+  Fix building with automake-1.13.
 
 *libconfig-1.4.9-r1 (02 Apr 2013)
 



1.2                  dev-libs/libconfig/libconfig-1.4.9-r1.ebuild

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

Index: libconfig-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libconfig-1.4.9-r1.ebuild	2 Apr 2013 18:55:41 -0000	1.1
+++ libconfig-1.4.9-r1.ebuild	24 Apr 2013 16:50:22 -0000	1.2
@@ -1,9 +1,8 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.1 2013/04/02 18:55:41 jer Exp $
-
-EAPI="5"
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.2 2013/04/24 16:50:22 jer Exp $
 
+EAPI=5
 inherit eutils autotools-multilib
 
 DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
@@ -18,12 +17,16 @@
 DEPEND="
 	sys-devel/libtool
 	sys-devel/bison"
-RDEPEND=""
 
 PATCHES=( "${FILESDIR}/${P}-out-of-source-build.patch" )
 
 AUTOTOOLS_AUTORECONF="1"
 
+src_prepare() {
+	sed -i configure.ac -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
+	autotools-multilib_src_prepare
+}
+
 src_configure() {
 	local myeconfargs=(
 		$(use_enable cxx)





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libconfig: ChangeLog libconfig-1.4.9-r1.ebuild
@ 2013-05-20 10:05 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 4+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2013-05-20 10:05 UTC (permalink / raw
  To: gentoo-commits

nimiux      13/05/20 10:05:45

  Modified:             ChangeLog libconfig-1.4.9-r1.ebuild
  Log:
  Stable for amd64 wrt bug #470392
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.56                 dev-libs/libconfig/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	20 May 2013 08:40:07 -0000	1.55
+++ ChangeLog	20 May 2013 10:05:45 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libconfig
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.55 2013/05/20 08:40:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.56 2013/05/20 10:05:45 nimiux Exp $
+
+  20 May 2013; Chema Alonso <nimiux@gentoo.org> libconfig-1.4.9-r1.ebuild:
+  Stable for amd64 wrt bug #470392
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> libconfig-1.4.9-r1.ebuild:
   Stable for x86, wrt bug #470392



1.4                  dev-libs/libconfig/libconfig-1.4.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?r1=1.3&r2=1.4

Index: libconfig-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libconfig-1.4.9-r1.ebuild	20 May 2013 08:40:07 -0000	1.3
+++ libconfig-1.4.9-r1.ebuild	20 May 2013 10:05:45 -0000	1.4
@@ -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-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.3 2013/05/20 08:40:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.4 2013/05/20 10:05:45 nimiux Exp $
 
 EAPI=5
 inherit eutils autotools-multilib
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-linux"
+KEYWORDS="amd64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-linux"
 IUSE="+cxx examples static-libs"
 
 DEPEND="





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libconfig: ChangeLog libconfig-1.4.9-r1.ebuild
@ 2014-06-24 19:22 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2014-06-24 19:22 UTC (permalink / raw
  To: gentoo-commits

maekke      14/06/24 19:22:21

  Modified:             ChangeLog libconfig-1.4.9-r1.ebuild
  Log:
  add ~arm, bug #512550
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.62                 dev-libs/libconfig/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	30 Apr 2014 18:26:14 -0000	1.61
+++ ChangeLog	24 Jun 2014 19:22:20 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libconfig
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.61 2014/04/30 18:26:14 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.62 2014/06/24 19:22:20 maekke Exp $
+
+  24 Jun 2014; Markus Meier <maekke@gentoo.org> libconfig-1.4.9-r1.ebuild:
+  add ~arm, bug #512550
 
   30 Apr 2014; Michał Górny <mgorny@gentoo.org> libconfig-1.4.9-r1.ebuild:
   Use multilib_src_*() phases. Fix missing eautoreconf deps.



1.9                  dev-libs/libconfig/libconfig-1.4.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild?r1=1.8&r2=1.9

Index: libconfig-1.4.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libconfig-1.4.9-r1.ebuild	30 Apr 2014 18:26:14 -0000	1.8
+++ libconfig-1.4.9-r1.ebuild	24 Jun 2014 19:22:20 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.8 2014/04/30 18:26:14 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.9 2014/06/24 19:22:20 maekke Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~mips ppc ppc64 sparc x86 ~x86-linux"
+KEYWORDS="amd64 ~arm ~mips ppc ppc64 sparc x86 ~x86-linux"
 IUSE="+cxx examples static-libs"
 
 DEPEND="





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

end of thread, other threads:[~2014-06-24 19:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 10:05 [gentoo-commits] gentoo-x86 commit in dev-libs/libconfig: ChangeLog libconfig-1.4.9-r1.ebuild JosA MarAa Alonso (nimiux)
  -- strict thread matches above, loose matches on Subject: below --
2014-06-24 19:22 Markus Meier (maekke)
2013-04-24 16:50 Jeroen Roovers (jer)
2013-04-02 18:55 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