public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/libreport: libreport-2.0.13.ebuild ChangeLog
@ 2012-09-22 20:12 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2012-09-22 20:12 UTC (permalink / raw
  To: gentoo-commits

tetromino    12/09/22 20:12:48

  Modified:             ChangeLog
  Added:                libreport-2.0.13.ebuild
  Log:
  Version bump. Fix automake-1.12 problems with a proper patch.
  
  (Portage version: 2.2.0_alpha128/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 dev-libs/libreport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	8 Jul 2012 17:19:34 -0000	1.12
+++ ChangeLog	22 Sep 2012 20:12:48 -0000	1.13
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/libreport
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.12 2012/07/08 17:19:34 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.13 2012/09/22 20:12:48 tetromino Exp $
+
+*libreport-2.0.13 (22 Sep 2012)
+
+  22 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
+  +libreport-2.0.13.ebuild, +files/libreport-2.0.13-automake-1.12.patch,
+  +files/libreport-2.0.13-gentoo.patch:
+  Version bump. Fix automake-1.12 problems with a proper patch.
 
   08 Jul 2012; Justin Lecher <jlec@gentoo.org> libreport-2.0.10.ebuild:
   Add fix for automake-1.12, #425268



1.1                  dev-libs/libreport/libreport-2.0.13.ebuild

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

Index: libreport-2.0.13.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v 1.1 2012/09/22 20:12:48 tetromino Exp $

EAPI="4"
PYTHON_DEPEND="2:2.6"

inherit autotools eutils python user

DESCRIPTION="Generic library for reporting software bugs"
HOMEPAGE="https://fedorahosted.org/abrt/"
SRC_URI="https://fedorahosted.org/released/abrt/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"

COMMON_DEPEND=">=dev-libs/btparser-0.18
	>=dev-libs/glib-2.21:2
	dev-libs/json-c
	dev-libs/libtar
	dev-libs/libxml2:2
	dev-libs/newt
	dev-libs/nss
	dev-libs/xmlrpc-c
	net-libs/libproxy
	net-misc/curl[ssl]
	sys-apps/dbus
	>=x11-libs/gtk+-3.3.12:3
	x11-misc/xdg-utils"
RDEPEND="${COMMON_DEPEND}
	|| ( gnome-base/gnome-keyring >=kde-base/kwalletd-4.8 )"
DEPEND="${COMMON_DEPEND}
	app-text/asciidoc
	app-text/xmlto
	>=dev-util/intltool-0.3.50
	>=sys-devel/gettext-0.17
	virtual/pkgconfig"

# Tests require python-meh, which is highly redhat-specific.
RESTRICT="test"

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup

	enewgroup abrt
	enewuser abrt -1 -1 -1 abrt
}

src_prepare() {
	# Replace redhat- and fedora-specific defaults with gentoo ones, and disable
	# code that requires gentoo infra support.
	epatch "${FILESDIR}/${PN}-2.0.13-gentoo.patch"

	# Modify uploader_event so that the gui recognizes it
	epatch "${FILESDIR}/${PN}-2.0.7-uploader_event-syntax.patch"

	# automake-1.12
	epatch "${FILESDIR}/${PN}-2.0.13-automake-1.12.patch"

	python_clean_py-compile_files

	mkdir -p m4
	eautoreconf
}

src_configure() {
	ECONF="--disable-bodhi
		--localstatedir=${EPREFIX}/var"
	# --disable-debug enables debug!
	use debug && ECONF="${ECONF} --enable-debug"
	econf ${ECONF}
}

src_install() {
	default

	# Need to set correct ownership for use by app-admin/abrt
	diropts -o abrt -g abrt
	keepdir /var/spool/abrt

	find "${D}" -name '*.la' -exec rm -f {} + || die
}

pkg_postinst() {
	python_mod_optimize report reportclient
}

pkg_postrm() {
	python_mod_cleanup report reportclient
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libreport: libreport-2.0.13.ebuild ChangeLog
@ 2013-03-25 15:42 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-25 15:42 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/25 15:42:20

  Modified:             libreport-2.0.13.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #458984
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  dev-libs/libreport/libreport-2.0.13.ebuild

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

Index: libreport-2.0.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libreport-2.0.13.ebuild	22 Sep 2012 20:12:48 -0000	1.1
+++ libreport-2.0.13.ebuild	25 Mar 2013 15:42:20 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v 1.1 2012/09/22 20:12:48 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v 1.2 2013/03/25 15:42:20 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2:2.6"
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug"
 
 COMMON_DEPEND=">=dev-libs/btparser-0.18



1.17                 dev-libs/libreport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	5 Mar 2013 23:18:59 -0000	1.16
+++ ChangeLog	25 Mar 2013 15:42:20 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libreport
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.16 2013/03/05 23:18:59 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.17 2013/03/25 15:42:20 ago Exp $
+
+  25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> libreport-2.0.13.ebuild:
+  Stable for amd64, wrt bug #458984
 
   05 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
   -files/libreport-2.0.7-gentoo.patch,





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libreport: libreport-2.0.13.ebuild ChangeLog
@ 2013-03-25 16:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-25 16:21 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/25 16:21:24

  Modified:             libreport-2.0.13.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #458984
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-libs/libreport/libreport-2.0.13.ebuild

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

Index: libreport-2.0.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libreport-2.0.13.ebuild	25 Mar 2013 15:42:20 -0000	1.2
+++ libreport-2.0.13.ebuild	25 Mar 2013 16:21:24 -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-libs/libreport/libreport-2.0.13.ebuild,v 1.2 2013/03/25 15:42:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v 1.3 2013/03/25 16:21:24 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2:2.6"
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug"
 
 COMMON_DEPEND=">=dev-libs/btparser-0.18



1.18                 dev-libs/libreport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	25 Mar 2013 15:42:20 -0000	1.17
+++ ChangeLog	25 Mar 2013 16:21:24 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libreport
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.17 2013/03/25 15:42:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.18 2013/03/25 16:21:24 ago Exp $
+
+  25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> libreport-2.0.13.ebuild:
+  Stable for x86, wrt bug #458984
 
   25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> libreport-2.0.13.ebuild:
   Stable for amd64, wrt bug #458984





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libreport: libreport-2.0.13.ebuild ChangeLog
@ 2013-04-28 14:38 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2013-04-28 14:38 UTC (permalink / raw
  To: gentoo-commits

tetromino    13/04/28 14:38:45

  Modified:             libreport-2.0.13.ebuild ChangeLog
  Log:
  Fix building with json-c-0.11 (bug #467700, thanks to Markos Chandras for the patch).
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)

Revision  Changes    Path
1.4                  dev-libs/libreport/libreport-2.0.13.ebuild

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

Index: libreport-2.0.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libreport-2.0.13.ebuild	25 Mar 2013 16:21:24 -0000	1.3
+++ libreport-2.0.13.ebuild	28 Apr 2013 14:38: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/libreport/libreport-2.0.13.ebuild,v 1.3 2013/03/25 16:21:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.13.ebuild,v 1.4 2013/04/28 14:38:45 tetromino Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2:2.6"
@@ -60,6 +60,9 @@
 	# automake-1.12
 	epatch "${FILESDIR}/${PN}-2.0.13-automake-1.12.patch"
 
+	# json-c-0.11, https://github.com/abrt/libreport/pull/159
+	epatch "${FILESDIR}/${PN}-2.0.13-json-c-0.11.patch"
+
 	python_clean_py-compile_files
 
 	mkdir -p m4



1.19                 dev-libs/libreport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	25 Mar 2013 16:21:24 -0000	1.18
+++ ChangeLog	28 Apr 2013 14:38:45 -0000	1.19
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libreport
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.18 2013/03/25 16:21:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.19 2013/04/28 14:38:45 tetromino Exp $
+
+  28 Apr 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
+  libreport-2.0.13.ebuild, +files/libreport-2.0.13-json-c-0.11.patch:
+  Fix building with json-c-0.11 (bug #467700, thanks to Markos Chandras for the
+  patch).
 
   25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> libreport-2.0.13.ebuild:
   Stable for x86, wrt bug #458984





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

end of thread, other threads:[~2013-04-28 14:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-25 15:42 [gentoo-commits] gentoo-x86 commit in dev-libs/libreport: libreport-2.0.13.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-04-28 14:38 Alexandre Rostovtsev (tetromino)
2013-03-25 16:21 Agostino Sarubbo (ago)
2012-09-22 20:12 Alexandre Rostovtsev (tetromino)

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