public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/epic5: epic5-1.1.10.ebuild ChangeLog
@ 2014-09-03  1:36 Nathan Phillip Brink (binki)
  0 siblings, 0 replies; 5+ messages in thread
From: Nathan Phillip Brink (binki) @ 2014-09-03  1:36 UTC (permalink / raw
  To: gentoo-commits

binki       14/09/03 01:36:35

  Modified:             ChangeLog
  Added:                epic5-1.1.10.ebuild
  Log:
  Bump to epic5-1.1.10 and eradicate einstall() for bug #521590.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)

Revision  Changes    Path
1.22                 net-irc/epic5/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	25 Mar 2014 08:03:27 -0000	1.21
+++ ChangeLog	3 Sep 2014 01:36:35 -0000	1.22
@@ -1,6 +1,14 @@
 # ChangeLog for net-irc/epic5
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.21 2014/03/25 08:03:27 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.22 2014/09/03 01:36:35 binki Exp $
+
+*epic5-1.1.10 (03 Sep 2014)
+
+  03 Sep 2014; Nathan Phillip Brink <binki@gentoo.org> +epic5-1.1.10.ebuild,
+  +files/epic5-1.1.10-ruby-automagic-as-needed.patch,
+  +files/epic5-1.1.10-tcl-automagic-as-needed.patch,
+  +files/epic5-1.1.10-without-localdir.patch:
+  Bump to epic5-1.1.10 and eradicate einstall() for bug #521590.
 
 *epic5-1.1.7 (25 Mar 2014)
 



1.1                  net-irc/epic5/epic5-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.1&content-type=text/plain

Index: epic5-1.1.10.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v 1.1 2014/09/03 01:36:35 binki Exp $

EAPI=4

USE_RUBY="ruby19"
RUBY_OPTIONAL=yes
inherit autotools eutils multilib ruby-ng toolchain-funcs

DESCRIPTION="Epic5 IRC Client"
SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.bz2"
HOMEPAGE="http://epicsol.org/"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="archive ipv6 perl tcl ruby socks5 valgrind"

RDEPEND="virtual/libiconv
	>=dev-libs/openssl-0.9.8e-r3
	>=sys-libs/ncurses-5.6-r2
	archive? ( app-arch/libarchive )
	perl? ( >=dev-lang/perl-5.8.8-r2 )
	tcl? ( dev-lang/tcl )
	socks5? ( net-proxy/dante )
	ruby? ( $(ruby_implementations_depend) )"
DEPEND="${RDEPEND}
	valgrind? ( dev-util/valgrind )"
REQUIRED_USE="ruby? ( $(ruby_get_use_targets) )"

S=${WORKDIR}/${P}

pkg_setup() {
	# bug #489608, bug #497080
	use ruby && ruby-ng_pkg_setup
}

# Don't use ruby-ng's separated sources support:
src_unpack() {
	default
}

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.1.2-libarchive-automagic.patch \
		"${FILESDIR}"/${P}-ruby-automagic-as-needed.patch \
		"${FILESDIR}"/${P}-tcl-automagic-as-needed.patch \
		"${FILESDIR}"/${PN}-1.1.2-perl-automagic-as-needed.patch \
		"${FILESDIR}"/${P}-without-localdir.patch
	eautoconf
}

src_configure() {
	econf \
		--libexecdir="${EPREFIX}"/usr/lib/misc \
		$(use_with archive libarchive) \
		$(use_with ipv6) \
		$(use_with perl) \
		$(use_with ruby ruby "$(ruby_implementation_command ${USE_RUBY})") \
		$(use_with socks5) \
		$(use_with tcl tcl "${EPREFIX}"/usr/$(get_libdir)/tclConfig.sh) \
		$(use_with valgrind valgrind)
}

src_compile() {
	# parallel build failure
	emake -j1
}

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

	dodoc BUG_FORM COPYRIGHT EPIC4-USERS-README README KNOWNBUGS VOTES

	cd "${S}"/doc || die
	docinto doc
	dodoc \
		*.txt colors EPIC* IRCII_VERSIONS missing \
		nicknames outputhelp README.SSL SILLINESS TS4
}





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

* [gentoo-commits] gentoo-x86 commit in net-irc/epic5: epic5-1.1.10.ebuild ChangeLog
@ 2014-09-03  4:31 Nathan Phillip Brink (binki)
  0 siblings, 0 replies; 5+ messages in thread
From: Nathan Phillip Brink (binki) @ 2014-09-03  4:31 UTC (permalink / raw
  To: gentoo-commits

binki       14/09/03 04:31:16

  Modified:             epic5-1.1.10.ebuild ChangeLog
  Log:
  Fix USE=socks5 compatibility with in-tree versions of dante.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)

Revision  Changes    Path
1.2                  net-irc/epic5/epic5-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?r1=1.1&r2=1.2

Index: epic5-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- epic5-1.1.10.ebuild	3 Sep 2014 01:36:35 -0000	1.1
+++ epic5-1.1.10.ebuild	3 Sep 2014 04:31:16 -0000	1.2
@@ -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/net-irc/epic5/epic5-1.1.10.ebuild,v 1.1 2014/09/03 01:36:35 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v 1.2 2014/09/03 04:31:16 binki Exp $
 
 EAPI=4
 
@@ -47,6 +47,12 @@
 		"${FILESDIR}"/${P}-tcl-automagic-as-needed.patch \
 		"${FILESDIR}"/${PN}-1.1.2-perl-automagic-as-needed.patch \
 		"${FILESDIR}"/${P}-without-localdir.patch
+
+	# We want --with-socks5 except it tries -lsocks5 instead of -lsocks.
+	grep -qe -lsocks5 configure.in \
+		&& sed -i -e s/-lsocks5/-lsocks/ configure.in \
+		|| die "fixing socks5 support."
+
 	eautoconf
 }
 



1.24                 net-irc/epic5/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	3 Sep 2014 01:58:07 -0000	1.23
+++ ChangeLog	3 Sep 2014 04:31:16 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/epic5
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.23 2014/09/03 01:58:07 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.24 2014/09/03 04:31:16 binki Exp $
+
+  03 Sep 2014; Nathan Phillip Brink <binki@gentoo.org> epic5-1.1.10.ebuild:
+  Fix USE=socks5 compatibility with in-tree versions of dante.
 
   03 Sep 2014; Nathan Phillip Brink <binki@gentoo.org> -epic5-1.0.ebuild,
   -epic5-1.1.7.ebuild, -files/epic5-1.1.2-tcl-automagic-as-needed.patch,





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

* [gentoo-commits] gentoo-x86 commit in net-irc/epic5: epic5-1.1.10.ebuild ChangeLog
@ 2014-09-04  4:53 Nathan Phillip Brink (binki)
  0 siblings, 0 replies; 5+ messages in thread
From: Nathan Phillip Brink (binki) @ 2014-09-04  4:53 UTC (permalink / raw
  To: gentoo-commits

binki       14/09/04 04:53:58

  Modified:             epic5-1.1.10.ebuild ChangeLog
  Log:
  Reform USE=socks5 fix into a patch.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)

Revision  Changes    Path
1.3                  net-irc/epic5/epic5-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?r1=1.2&r2=1.3

Index: epic5-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- epic5-1.1.10.ebuild	3 Sep 2014 04:31:16 -0000	1.2
+++ epic5-1.1.10.ebuild	4 Sep 2014 04:53:58 -0000	1.3
@@ -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/net-irc/epic5/epic5-1.1.10.ebuild,v 1.2 2014/09/03 04:31:16 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v 1.3 2014/09/04 04:53:58 binki Exp $
 
 EAPI=4
 
@@ -46,13 +46,8 @@
 		"${FILESDIR}"/${P}-ruby-automagic-as-needed.patch \
 		"${FILESDIR}"/${P}-tcl-automagic-as-needed.patch \
 		"${FILESDIR}"/${PN}-1.1.2-perl-automagic-as-needed.patch \
-		"${FILESDIR}"/${P}-without-localdir.patch
-
-	# We want --with-socks5 except it tries -lsocks5 instead of -lsocks.
-	grep -qe -lsocks5 configure.in \
-		&& sed -i -e s/-lsocks5/-lsocks/ configure.in \
-		|| die "fixing socks5 support."
-
+		"${FILESDIR}"/${P}-without-localdir.patch \
+		"${FILESDIR}"/${P}-socks5-libsocks.patch
 	eautoconf
 }
 



1.25                 net-irc/epic5/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	3 Sep 2014 04:31:16 -0000	1.24
+++ ChangeLog	4 Sep 2014 04:53:58 -0000	1.25
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/epic5
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.24 2014/09/03 04:31:16 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.25 2014/09/04 04:53:58 binki Exp $
+
+  04 Sep 2014; Nathan Phillip Brink <binki@gentoo.org>
+  +files/epic5-1.1.10-socks5-libsocks.patch, epic5-1.1.10.ebuild:
+  Reform USE=socks5 fix into a patch.
 
   03 Sep 2014; Nathan Phillip Brink <binki@gentoo.org> epic5-1.1.10.ebuild:
   Fix USE=socks5 compatibility with in-tree versions of dante.





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

* [gentoo-commits] gentoo-x86 commit in net-irc/epic5: epic5-1.1.10.ebuild ChangeLog
@ 2015-01-09 13:38 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-09 13:38 UTC (permalink / raw
  To: gentoo-commits

ago         15/01/09 13:38:34

  Modified:             epic5-1.1.10.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #535570
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  net-irc/epic5/epic5-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?r1=1.3&r2=1.4

Index: epic5-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- epic5-1.1.10.ebuild	4 Sep 2014 04:53:58 -0000	1.3
+++ epic5-1.1.10.ebuild	9 Jan 2015 13:38:34 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v 1.3 2014/09/04 04:53:58 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v 1.4 2015/01/09 13:38:34 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
 
 RDEPEND="virtual/libiconv



1.26                 net-irc/epic5/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	4 Sep 2014 04:53:58 -0000	1.25
+++ ChangeLog	9 Jan 2015 13:38:34 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/epic5
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.25 2014/09/04 04:53:58 binki Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.26 2015/01/09 13:38:34 ago Exp $
+
+  09 Jan 2015; Agostino Sarubbo <ago@gentoo.org> epic5-1.1.10.ebuild:
+  Stable for amd64, wrt bug #535570
 
   04 Sep 2014; Nathan Phillip Brink <binki@gentoo.org>
   +files/epic5-1.1.10-socks5-libsocks.patch, epic5-1.1.10.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-irc/epic5: epic5-1.1.10.ebuild ChangeLog
@ 2015-01-26 10:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-26 10:12 UTC (permalink / raw
  To: gentoo-commits

ago         15/01/26 10:12:47

  Modified:             epic5-1.1.10.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #535570
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  net-irc/epic5/epic5-1.1.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild?r1=1.4&r2=1.5

Index: epic5-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- epic5-1.1.10.ebuild	9 Jan 2015 13:38:34 -0000	1.4
+++ epic5-1.1.10.ebuild	26 Jan 2015 10:12:47 -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/net-irc/epic5/epic5-1.1.10.ebuild,v 1.4 2015/01/09 13:38:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10.ebuild,v 1.5 2015/01/26 10:12:47 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
 
 RDEPEND="virtual/libiconv



1.27                 net-irc/epic5/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	9 Jan 2015 13:38:34 -0000	1.26
+++ ChangeLog	26 Jan 2015 10:12:47 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/epic5
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.26 2015/01/09 13:38:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.27 2015/01/26 10:12:47 ago Exp $
+
+  26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> epic5-1.1.10.ebuild:
+  Stable for x86, wrt bug #535570
 
   09 Jan 2015; Agostino Sarubbo <ago@gentoo.org> epic5-1.1.10.ebuild:
   Stable for amd64, wrt bug #535570





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

end of thread, other threads:[~2015-01-26 10:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-03  4:31 [gentoo-commits] gentoo-x86 commit in net-irc/epic5: epic5-1.1.10.ebuild ChangeLog Nathan Phillip Brink (binki)
  -- strict thread matches above, loose matches on Subject: below --
2015-01-26 10:12 Agostino Sarubbo (ago)
2015-01-09 13:38 Agostino Sarubbo (ago)
2014-09-04  4:53 Nathan Phillip Brink (binki)
2014-09-03  1:36 Nathan Phillip Brink (binki)

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