public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-1.2.10-r6.ebuild ChangeLog
@ 2015-06-05  1:29 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2015-06-05  1:29 UTC (permalink / raw
  To: gentoo-commits

tetromino    15/06/05 01:29:16

  Modified:             ChangeLog
  Added:                glib-1.2.10-r6.ebuild
  Log:
  Add multilib support for glib-1 since it seems a few users still need it; thanks to  Ian Stakenvicius for the ebuild (bug #534016).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x18E5B6F2D8D5EC8D)

Revision  Changes    Path
1.647                dev-libs/glib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.646
retrieving revision 1.647
diff -u -r1.646 -r1.647
--- ChangeLog	8 Apr 2015 17:51:56 -0000	1.646
+++ ChangeLog	5 Jun 2015 01:29:16 -0000	1.647
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.646 2015/04/08 17:51:56 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.647 2015/06/05 01:29:16 tetromino Exp $
+
+*glib-1.2.10-r6 (05 Jun 2015)
+
+  05 Jun 2015; Alexandre Rostovtsev <tetromino@gentoo.org>
+  +glib-1.2.10-r6.ebuild:
+  Add multilib support for glib-1 since it seems a few users still need it;
+  thanks to Ian Stakenvicius for the ebuild (bug #534016).
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org> glib-2.40.2.ebuild:
   Drop old Python implementations



1.1                  dev-libs/glib/glib-1.2.10-r6.ebuild

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

Index: glib-1.2.10-r6.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.1 2015/06/05 01:29:16 tetromino Exp $

EAPI=5

GNOME_TARBALL_SUFFIX="gz"
GNOME2_LA_PUNT="yes"

inherit autotools eutils gnome2 libtool flag-o-matic portability multilib-minimal

DESCRIPTION="The GLib library of C routines"
HOMEPAGE="http://www.gtk.org/"
SRC_URI="${SRC_URI}
	 mirror://gentoo/glib-1.2.10-r1-as-needed.patch.bz2"

LICENSE="LGPL-2.1+"
SLOT="1"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="hardened static-libs"

DEPEND=""
RDEPEND=""

MULTILIB_CHOST_TOOLS=(/usr/bin/glib-config)

src_prepare() {
	epatch "${FILESDIR}"/${P}-automake.patch
	epatch "${FILESDIR}"/${P}-m4.patch
	epatch "${FILESDIR}"/${P}-configure-LANG.patch #133679

	# Allow glib to build with gcc-3.4.x #47047
	epatch "${FILESDIR}"/${P}-gcc34-fix.patch

	# Fix for -Wl,--as-needed (bug #133818)
	epatch "${DISTDIR}"/glib-1.2.10-r1-as-needed.patch.bz2

	# build failure with automake-1.13
	epatch "${FILESDIR}/${P}-automake-1.13.patch"

	use ppc64 && use hardened && replace-flags -O[2-3] -O1
	append-ldflags $(dlopen_lib)

	rm -f acinclude.m4 #168198
	eautoreconf
	elibtoolize
	gnome2_src_prepare
}

multilib_src_configure() {
	# Bug 48839: pam fails to build on ia64
	# The problem is that it attempts to link a shared object against
	# libglib.a; this library needs to be built with -fPIC.  Since
	# this package doesn't contain any significant binaries, build the
	# whole thing with -fPIC (23 Apr 2004 agriffis)
	append-flags -fPIC

	ECONF_SOURCE="${S}" \
	gnome2_src_configure \
		--with-threads=posix \
		--enable-debug=yes \
		$(use_enable static-libs static)
}

multilib_src_install() {
	gnome2_src_install

	chmod 755 "${ED}"/usr/$(get_libdir)/libgmodule-1.2.so.* || die
}

multilib_src_install_all() {
	einstalldocs
	dohtml -r docs
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-1.2.10-r6.ebuild ChangeLog
@ 2015-06-21 10:48 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 5+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-06-21 10:48 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/06/21 10:48:52

  Modified:             glib-1.2.10-r6.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #551814
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.4                  dev-libs/glib/glib-1.2.10-r6.ebuild

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

Index: glib-1.2.10-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- glib-1.2.10-r6.ebuild	21 Jun 2015 08:42:11 -0000	1.3
+++ glib-1.2.10-r6.ebuild	21 Jun 2015 10:48:52 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.3 2015/06/21 08:42:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.4 2015/06/21 10:48:52 zlogene Exp $
 
 EAPI=5
 GNOME_TARBALL_SUFFIX="gz"
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="hardened static-libs"
 
 DEPEND=""



1.652                dev-libs/glib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.651
retrieving revision 1.652
diff -u -r1.651 -r1.652
--- ChangeLog	21 Jun 2015 08:42:11 -0000	1.651
+++ ChangeLog	21 Jun 2015 10:48:52 -0000	1.652
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.651 2015/06/21 08:42:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.652 2015/06/21 10:48:52 zlogene Exp $
+
+  21 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> glib-1.2.10-r6.ebuild:
+  amd64 stable wrt bug #551814
 
   21 Jun 2015; Jeroen Roovers <jer@gentoo.org> glib-1.2.10-r6.ebuild:
   Stable for PPC64 (bug #551814).





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-1.2.10-r6.ebuild ChangeLog
@ 2015-06-26  9:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-26  9:21 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/26 09:21:15

  Modified:             glib-1.2.10-r6.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #551814
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-libs/glib/glib-1.2.10-r6.ebuild

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

Index: glib-1.2.10-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- glib-1.2.10-r6.ebuild	21 Jun 2015 10:48:52 -0000	1.4
+++ glib-1.2.10-r6.ebuild	26 Jun 2015 09:21:15 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.4 2015/06/21 10:48:52 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.5 2015/06/26 09:21:15 ago Exp $
 
 EAPI=5
 GNOME_TARBALL_SUFFIX="gz"
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="hardened static-libs"
 
 DEPEND=""



1.653                dev-libs/glib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.652
retrieving revision 1.653
diff -u -r1.652 -r1.653
--- ChangeLog	21 Jun 2015 10:48:52 -0000	1.652
+++ ChangeLog	26 Jun 2015 09:21:15 -0000	1.653
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.652 2015/06/21 10:48:52 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.653 2015/06/26 09:21:15 ago Exp $
+
+  26 Jun 2015; Agostino Sarubbo <ago@gentoo.org> glib-1.2.10-r6.ebuild:
+  Stable for x86, wrt bug #551814
 
   21 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> glib-1.2.10-r6.ebuild:
   amd64 stable wrt bug #551814





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-1.2.10-r6.ebuild ChangeLog
@ 2015-07-07 20:40 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2015-07-07 20:40 UTC (permalink / raw
  To: gentoo-commits

maekke      15/07/07 20:40:00

  Modified:             glib-1.2.10-r6.ebuild ChangeLog
  Log:
  arm stable, bug #551814
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.6                  dev-libs/glib/glib-1.2.10-r6.ebuild

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

Index: glib-1.2.10-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- glib-1.2.10-r6.ebuild	26 Jun 2015 09:21:15 -0000	1.5
+++ glib-1.2.10-r6.ebuild	7 Jul 2015 20:40:00 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.5 2015/06/26 09:21:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.6 2015/07/07 20:40:00 maekke Exp $
 
 EAPI=5
 GNOME_TARBALL_SUFFIX="gz"
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="hardened static-libs"
 
 DEPEND=""



1.654                dev-libs/glib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.653
retrieving revision 1.654
diff -u -r1.653 -r1.654
--- ChangeLog	26 Jun 2015 09:21:15 -0000	1.653
+++ ChangeLog	7 Jul 2015 20:40:00 -0000	1.654
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.653 2015/06/26 09:21:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.654 2015/07/07 20:40:00 maekke Exp $
+
+  07 Jul 2015; Markus Meier <maekke@gentoo.org> glib-1.2.10-r6.ebuild:
+  arm stable, bug #551814
 
   26 Jun 2015; Agostino Sarubbo <ago@gentoo.org> glib-1.2.10-r6.ebuild:
   Stable for x86, wrt bug #551814





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-1.2.10-r6.ebuild ChangeLog
@ 2015-07-25 12:12 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2015-07-25 12:12 UTC (permalink / raw
  To: gentoo-commits

pacho       15/07/25 12:12:48

  Modified:             glib-1.2.10-r6.ebuild ChangeLog
  Log:
  ppc stable wrt bug #551814
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.9                  dev-libs/glib/glib-1.2.10-r6.ebuild

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

Index: glib-1.2.10-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- glib-1.2.10-r6.ebuild	17 Jul 2015 15:32:53 -0000	1.8
+++ glib-1.2.10-r6.ebuild	25 Jul 2015 12:12:48 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.8 2015/07/17 15:32:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r6.ebuild,v 1.9 2015/07/25 12:12:48 pacho Exp $
 
 EAPI=5
 GNOME_TARBALL_SUFFIX="gz"
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="1"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="hardened static-libs"
 
 DEPEND=""



1.658                dev-libs/glib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.657
retrieving revision 1.658
diff -u -r1.657 -r1.658
--- ChangeLog	19 Jul 2015 12:27:51 -0000	1.657
+++ ChangeLog	25 Jul 2015 12:12:48 -0000	1.658
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.657 2015/07/19 12:27:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.658 2015/07/25 12:12:48 pacho Exp $
+
+  25 Jul 2015; Pacho Ramos <pacho@gentoo.org> glib-1.2.10-r6.ebuild:
+  ppc stable wrt bug #551814
 
   19 Jul 2015; Tobias Klausmann <klausman@gentoo.org> glib-2.42.2.ebuild:
   Stable on alpha, bug 553500





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

end of thread, other threads:[~2015-07-25 12:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-21 10:48 [gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-1.2.10-r6.ebuild ChangeLog Mikle Kolyada (zlogene)
  -- strict thread matches above, loose matches on Subject: below --
2015-07-25 12:12 Pacho Ramos (pacho)
2015-07-07 20:40 Markus Meier (maekke)
2015-06-26  9:21 Agostino Sarubbo (ago)
2015-06-05  1:29 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