* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2018-07-15 19:05 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2018-07-15 19:05 UTC (permalink / raw
To: gentoo-commits
commit: 61d9918d2bf69fb9d556fff905c28416a8307c7a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 15 18:59:38 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jul 15 19:04:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61d9918d
net-irc/epic5: cleanup
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-irc/epic5/epic5-1.1.10-r1.ebuild | 87 ------------------------------------
1 file changed, 87 deletions(-)
diff --git a/net-irc/epic5/epic5-1.1.10-r1.ebuild b/net-irc/epic5/epic5-1.1.10-r1.ebuild
deleted file mode 100644
index 32634a46933..00000000000
--- a/net-irc/epic5/epic5-1.1.10-r1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-USE_RUBY="ruby22 ruby23"
-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="
- >=dev-libs/openssl-0.9.8e-r3:0
- >=sys-libs/ncurses-5.6-r2
- virtual/libiconv
- archive? ( app-arch/libarchive )
- perl? ( >=dev-lang/perl-5.8.8-r2 )
- tcl? ( dev-lang/tcl:0 )
- socks5? ( net-proxy/dante )
- ruby? ( $(ruby_implementations_depend) )"
-DEPEND="${RDEPEND}
- valgrind? ( dev-util/valgrind )"
-REQUIRED_USE="ruby? ( ^^ ( $(ruby_get_use_targets) ) )
- $(for t in $(ruby_get_use_targets); do echo "${t}? ( ruby )"; done)"
-
-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 \
- "${FILESDIR}"/${P}-socks5-libsocks.patch \
- "${FILESDIR}"/${P}-xlocale.patch
- eautoconf
-}
-
-src_configure() {
- # Because of our REQUIRED_USE constraints above, we know that
- # ruby_get_use_implementations will only ever return one ruby
- # implementation.
- econf \
- --libexecdir="${EPREFIX}"/usr/lib/misc \
- $(use_with archive libarchive) \
- $(use_with ipv6) \
- $(use_with perl) \
- $(use_with ruby ruby "$(ruby_implementation_command $(ruby_get_use_implementations))") \
- $(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 () {
- default
-
- 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 related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2023-05-14 17:11 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-05-14 17:11 UTC (permalink / raw
To: gentoo-commits
commit: a6ca203daa3c390970b395eb5ec939aaec7a4070
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 14 17:08:24 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 14 17:10:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ca203d
net-irc/epic5: simplify econf arg for valgrind
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/epic5/epic5-2.0.1-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/epic5/epic5-2.0.1-r2.ebuild b/net-irc/epic5/epic5-2.0.1-r2.ebuild
index a8525b1ed375..a531ac999b66 100644
--- a/net-irc/epic5/epic5-2.0.1-r2.ebuild
+++ b/net-irc/epic5/epic5-2.0.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -44,7 +44,7 @@ src_configure() {
$(use_with perl) \
$(use_with socks5) \
$(use_with tcl tcl "${EPREFIX}"/usr/$(get_libdir)/tclConfig.sh) \
- $(use_with valgrind valgrind)
+ $(use_with valgrind)
}
src_compile() {
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2023-05-14 17:11 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-05-14 17:11 UTC (permalink / raw
To: gentoo-commits
commit: d30364f33c24214a30bfed3389dbe61651c7cfa8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 14 17:02:11 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 14 17:10:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30364f3
net-irc/epic5: defer to new global USE=valgrind description
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/epic5/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/net-irc/epic5/metadata.xml b/net-irc/epic5/metadata.xml
index ee0aa82a8292..5d07a7dac25b 100644
--- a/net-irc/epic5/metadata.xml
+++ b/net-irc/epic5/metadata.xml
@@ -4,6 +4,5 @@
<!-- maintainer-needed -->
<use>
<flag name="archive">Use <pkg>app-arch/libarchive</pkg> to use zip and tar archives from scripts.</flag>
- <flag name="valgrind">Compile against <pkg>dev-util/valgrind</pkg> headers to improve memory-leak checking when running epic5 under valgrind.</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2022-07-09 6:33 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2022-07-09 6:33 UTC (permalink / raw
To: gentoo-commits
commit: 1b46fd744ea57fd3f3ccda8ffe85e1673549f107
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 9 06:33:12 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Jul 9 06:33:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b46fd74
net-irc/epic5: drop 2.0.1-r1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
net-irc/epic5/epic5-2.0.1-r1.ebuild | 72 -------------------------------------
1 file changed, 72 deletions(-)
diff --git a/net-irc/epic5/epic5-2.0.1-r1.ebuild b/net-irc/epic5/epic5-2.0.1-r1.ebuild
deleted file mode 100644
index df6800edb35e..000000000000
--- a/net-irc/epic5/epic5-2.0.1-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26"
-
-inherit ruby-single
-
-DESCRIPTION="Epic5 IRC Client"
-SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.xz"
-HOMEPAGE="http://epicsol.org/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~riscv x86"
-
-# Fails to build without ipv6
-IUSE="archive perl tcl ruby socks5 valgrind" #ipv6
-
-RDEPEND="
- >=dev-libs/openssl-0.9.8e-r3:0=
- >=sys-libs/ncurses-5.6-r2:0=
- virtual/libcrypt:=
- virtual/libiconv
- archive? ( app-arch/libarchive )
- perl? ( >=dev-lang/perl-5.8.8-r2:= )
- tcl? ( dev-lang/tcl:0= )
- socks5? ( net-proxy/dante )
- ruby? ( ${RUBY_DEPS} )
-"
-DEPEND="${RDEPEND}
- valgrind? ( dev-util/valgrind )
-"
-
-S="${WORKDIR}/${P}"
-
-PATCHES=(
- # From Debian
- "${FILESDIR}/${P}-openssl-1.1.patch"
-)
-
-src_configure() {
- # Because of our REQUIRED_USE constraints above, we know that
- # ruby_get_use_implementations will only ever return one ruby
- # implementation.
- econf \
- --libexecdir="${EPREFIX}"/usr/lib/misc \
- --with-ipv6 \
- $(use_with archive libarchive) \
- $(use_with perl) \
- $(use_with 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() {
- default
-
- 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 related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2022-07-09 6:33 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2022-07-09 6:33 UTC (permalink / raw
To: gentoo-commits
commit: 9c5a10a06a99f003df1d5284b6dc67e3dc69b45b
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 9 06:33:01 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Jul 9 06:33:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c5a10a0
net-irc/epic5: stabilize 2.0.1-r2 for amd64, x86
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
net-irc/epic5/epic5-2.0.1-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-2.0.1-r2.ebuild b/net-irc/epic5/epic5-2.0.1-r2.ebuild
index 1f531895fb25..a8525b1ed375 100644
--- a/net-irc/epic5/epic5-2.0.1-r2.ebuild
+++ b/net-irc/epic5/epic5-2.0.1-r2.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+KEYWORDS="amd64 ~ppc ~riscv x86"
# Fails to build without ipv6
IUSE="archive perl tcl socks5 valgrind" #ipv6
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2022-06-26 7:45 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2022-06-26 7:45 UTC (permalink / raw
To: gentoo-commits
commit: ec7bae422aa3dfcdd767157e3d4fb2da769c2f82
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 07:13:25 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 07:45:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec7bae42
net-irc/epic5: drop ruby support
The ruby code is not compatible with ruby27 or newer.
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
net-irc/epic5/epic5-2.0.1-r2.ebuild | 65 +++++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/net-irc/epic5/epic5-2.0.1-r2.ebuild b/net-irc/epic5/epic5-2.0.1-r2.ebuild
new file mode 100644
index 000000000000..1f531895fb25
--- /dev/null
+++ b/net-irc/epic5/epic5-2.0.1-r2.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Epic5 IRC Client"
+SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.xz"
+HOMEPAGE="http://epicsol.org/"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+
+# Fails to build without ipv6
+IUSE="archive perl tcl socks5 valgrind" #ipv6
+
+RDEPEND="
+ >=dev-libs/openssl-0.9.8e-r3:0=
+ >=sys-libs/ncurses-5.6-r2:0=
+ virtual/libcrypt:=
+ virtual/libiconv
+ archive? ( app-arch/libarchive )
+ perl? ( >=dev-lang/perl-5.8.8-r2:= )
+ tcl? ( dev-lang/tcl:0= )
+ socks5? ( net-proxy/dante )
+"
+DEPEND="${RDEPEND}
+ valgrind? ( dev-util/valgrind )
+"
+
+S="${WORKDIR}/${P}"
+
+PATCHES=(
+ # From Debian
+ "${FILESDIR}/${P}-openssl-1.1.patch"
+)
+
+src_configure() {
+ econf \
+ --libexecdir="${EPREFIX}"/usr/lib/misc \
+ --with-ipv6 \
+ --without-ruby \
+ $(use_with archive libarchive) \
+ $(use_with perl) \
+ $(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() {
+ default
+
+ 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 related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2021-06-30 18:40 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2021-06-30 18:40 UTC (permalink / raw
To: gentoo-commits
commit: da839af6cb77386cf04aae94b3184ac1510030ad
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 18:39:33 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 18:39:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da839af6
net-irc/epic5: add missing libcrypt dependency
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/epic5/{epic5-2.0.1.ebuild => epic5-2.0.1-r1.ebuild} | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1-r1.ebuild
similarity index 98%
rename from net-irc/epic5/epic5-2.0.1.ebuild
rename to net-irc/epic5/epic5-2.0.1-r1.ebuild
index 45d0990c99f..681e43cb0b3 100644
--- a/net-irc/epic5/epic5-2.0.1.ebuild
+++ b/net-irc/epic5/epic5-2.0.1-r1.ebuild
@@ -20,6 +20,7 @@ IUSE="archive perl tcl ruby socks5 valgrind" #ipv6
RDEPEND="
>=dev-libs/openssl-0.9.8e-r3:0=
>=sys-libs/ncurses-5.6-r2:0=
+ virtual/libcrypt:=
virtual/libiconv
archive? ( app-arch/libarchive )
perl? ( >=dev-lang/perl-5.8.8-r2:= )
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2021-06-07 8:33 Joonas Niilola
0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2021-06-07 8:33 UTC (permalink / raw
To: gentoo-commits
commit: 4489277b769e0d573f74328227464adea6a99795
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat May 8 17:17:47 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jun 7 08:33:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4489277b
net-irc/epic5: remove unused eclass
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/epic5/epic5-2.0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
index d38b780348b..45d0990c99f 100644
--- a/net-irc/epic5/epic5-2.0.1.ebuild
+++ b/net-irc/epic5/epic5-2.0.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
USE_RUBY="ruby24 ruby25 ruby26"
-inherit autotools ruby-single toolchain-funcs
+inherit autotools ruby-single
DESCRIPTION="Epic5 IRC Client"
SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.xz"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2020-04-28 4:41 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2020-04-28 4:41 UTC (permalink / raw
To: gentoo-commits
commit: 045e544c6fa3274d49c82e28fab71d653c3a8172
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 27 09:21:24 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 04:39:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=045e544c
net-irc/epic5: add ruby26
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
net-irc/epic5/epic5-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
index e10c5b555d3..d38b780348b 100644
--- a/net-irc/epic5/epic5-2.0.1.ebuild
+++ b/net-irc/epic5/epic5-2.0.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby24 ruby25 ruby26"
inherit autotools ruby-single toolchain-funcs
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2019-07-17 8:00 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2019-07-17 8:00 UTC (permalink / raw
To: gentoo-commits
commit: a93d0dd6dbb0a26941dd93e92344a4e9cedf7d51
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 07:42:31 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 08:00:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a93d0dd6
net-irc/epic5: add ruby25
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
net-irc/epic5/epic5-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
index 62ee7a864b6..bc14d30432e 100644
--- a/net-irc/epic5/epic5-2.0.1.ebuild
+++ b/net-irc/epic5/epic5-2.0.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
inherit autotools ruby-single toolchain-funcs
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2019-05-15 15:24 Mikle Kolyada
0 siblings, 0 replies; 20+ messages in thread
From: Mikle Kolyada @ 2019-05-15 15:24 UTC (permalink / raw
To: gentoo-commits
commit: cfdff132e7081f163ed05e6aa370b76e311d33e8
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 15:23:59 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed May 15 15:23:59 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfdff132
net-irc/epic5: amd64 stable wrt bug #684592
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
net-irc/epic5/epic5-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
index e5ebd880946..ac5df01eb52 100644
--- a/net-irc/epic5/epic5-2.0.1.ebuild
+++ b/net-irc/epic5/epic5-2.0.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
# Fails to build without ipv6
IUSE="archive perl tcl ruby socks5 valgrind" #ipv6
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2019-05-15 15:24 Mikle Kolyada
0 siblings, 0 replies; 20+ messages in thread
From: Mikle Kolyada @ 2019-05-15 15:24 UTC (permalink / raw
To: gentoo-commits
commit: 882a82686dde103ef9e18f61994b2448db566fce
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 15:24:20 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed May 15 15:24:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882a8268
net-irc/epic5: x86 stable wrt bug #684592
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"
net-irc/epic5/epic5-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
index ac5df01eb52..62ee7a864b6 100644
--- a/net-irc/epic5/epic5-2.0.1.ebuild
+++ b/net-irc/epic5/epic5-2.0.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
# Fails to build without ipv6
IUSE="archive perl tcl ruby socks5 valgrind" #ipv6
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2019-01-26 12:43 Pacho Ramos
0 siblings, 0 replies; 20+ messages in thread
From: Pacho Ramos @ 2019-01-26 12:43 UTC (permalink / raw
To: gentoo-commits
commit: 64c2ec24e1e7a45fee8a8409298e11546a7010b9
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 26 12:27:02 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 26 12:42:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64c2ec24
net-irc/epic5: Bump to 2.0.1
Closes: https://bugs.gentoo.org/675254
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-irc/epic5/Manifest | 1 +
net-irc/epic5/epic5-2.0.1.ebuild | 66 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/net-irc/epic5/Manifest b/net-irc/epic5/Manifest
index d6852ab3490..84edd9778ef 100644
--- a/net-irc/epic5/Manifest
+++ b/net-irc/epic5/Manifest
@@ -1 +1,2 @@
DIST epic5-1.1.10.tar.bz2 851439 BLAKE2B 13cf0f78ed2009595479fac8173b2936cf74382ec22964e00de2d84fd89c6cee661e4ea9e3d8ba44ec715ac7e861f4639b3459d3ac2d67c74cc49ad4aeebf127 SHA512 d0215570962253a0d5c60dacec86db1094575b0765db039247cf16b5957ba721576618ff73588610ba528782f4460fd4bbe5a1869e60e2c10d832d41ea3c6048
+DIST epic5-2.0.1.tar.xz 808612 BLAKE2B 48bc1305f955f524e26b5a2122f061b0251b874ad102e3a95c65b15646f7d5c95f661bdbac3e6ea118ce5d5b5e3ca58a94cfce288ee32c7483ea6dc1b6d24950 SHA512 29721cb097946fae3d64f71be4047f8348f7821ccdea870b4c756098f07adee90f03decb2f37fc5fa5c7c9d1aac5a16f4944adc9c9bc66097ceb609c69da2e25
diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
new file mode 100644
index 00000000000..ac3c4b0060a
--- /dev/null
+++ b/net-irc/epic5/epic5-2.0.1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby23 ruby24"
+
+inherit autotools ruby-single toolchain-funcs
+
+DESCRIPTION="Epic5 IRC Client"
+SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.xz"
+HOMEPAGE="http://epicsol.org/"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+# Fails to build without ipv6
+IUSE="archive perl tcl ruby socks5 valgrind" #ipv6
+
+RDEPEND="
+ >=dev-libs/openssl-0.9.8e-r3:0=
+ >=sys-libs/ncurses-5.6-r2:0=
+ virtual/libiconv
+ archive? ( app-arch/libarchive )
+ perl? ( >=dev-lang/perl-5.8.8-r2:= )
+ tcl? ( dev-lang/tcl:0= )
+ socks5? ( net-proxy/dante )
+ ruby? ( ${RUBY_DEPS} )
+"
+DEPEND="${RDEPEND}
+ valgrind? ( dev-util/valgrind )
+"
+
+S="${WORKDIR}/${P}"
+
+src_configure() {
+ # Because of our REQUIRED_USE constraints above, we know that
+ # ruby_get_use_implementations will only ever return one ruby
+ # implementation.
+ econf \
+ --libexecdir="${EPREFIX}"/usr/lib/misc \
+ --with-ipv6 \
+ $(use_with archive libarchive) \
+ $(use_with perl) \
+ $(use_with 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 () {
+ default
+
+ 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 related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2018-07-15 19:05 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2018-07-15 19:05 UTC (permalink / raw
To: gentoo-commits
commit: 8ee4b76bbdb56d1d8ff685a2ed13414e03cb187e
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 15 18:59:06 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jul 15 19:04:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ee4b76b
net-irc/epic5: amd64 stable
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-irc/epic5/epic5-1.1.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-1.1.10-r2.ebuild b/net-irc/epic5/epic5-1.1.10-r2.ebuild
index c2c38112598..85532830333 100644
--- a/net-irc/epic5/epic5-1.1.10-r2.ebuild
+++ b/net-irc/epic5/epic5-1.1.10-r2.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
RDEPEND="
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2018-05-06 16:18 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2018-05-06 16:18 UTC (permalink / raw
To: gentoo-commits
commit: 1a0276fc03094b3062519d9e81ea9405d28781be
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 08:32:09 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun May 6 16:18:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a0276fc
net-irc/epic5: add ruby24
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-irc/epic5/epic5-1.1.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-1.1.10-r2.ebuild b/net-irc/epic5/epic5-1.1.10-r2.ebuild
index b2c668fcd02..19db1f3b7bc 100644
--- a/net-irc/epic5/epic5-1.1.10-r2.ebuild
+++ b/net-irc/epic5/epic5-1.1.10-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-USE_RUBY="ruby22 ruby23"
+USE_RUBY="ruby23 ruby24"
inherit autotools ruby-single toolchain-funcs
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2018-04-07 8:38 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2018-04-07 8:38 UTC (permalink / raw
To: gentoo-commits
commit: 4e61d05c9aecb3eee317fc1b12b3397f44d0ca91
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 7 08:38:08 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr 7 08:38:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e61d05c
net-irc/epic5: fix ruby support, bug 650342
Switch to ruby-single.eclass. This fixes bug 650342 but also simplifies
ruby dependency handling. Remove the REQUIRED_USE since this will always
be a blocker for most people and simply build against the currently
selected ruby version provided by ruby-single. This is in effect what
the ebuild was doing before anyway.
Include correct slot for ncurses.
Use EAPI=6.
Closes: https://bugs.gentoo.org/650342
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-irc/epic5/epic5-1.1.10-r2.ebuild | 77 ++++++++++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/net-irc/epic5/epic5-1.1.10-r2.ebuild b/net-irc/epic5/epic5-1.1.10-r2.ebuild
new file mode 100644
index 00000000000..323296c7006
--- /dev/null
+++ b/net-irc/epic5/epic5-1.1.10-r2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby22 ruby23"
+
+inherit autotools eutils multilib ruby-single 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="
+ >=dev-libs/openssl-0.9.8e-r3:0
+ >=sys-libs/ncurses-5.6-r2:0
+ virtual/libiconv
+ archive? ( app-arch/libarchive )
+ perl? ( >=dev-lang/perl-5.8.8-r2 )
+ tcl? ( dev-lang/tcl:0 )
+ socks5? ( net-proxy/dante )
+ ruby? ( ${RUBY_DEPS} )"
+DEPEND="${RDEPEND}
+ valgrind? ( dev-util/valgrind )"
+
+S=${WORKDIR}/${P}
+
+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 \
+ "${FILESDIR}"/${P}-socks5-libsocks.patch
+
+ eapply_user
+
+ eautoconf
+}
+
+src_configure() {
+ # Because of our REQUIRED_USE constraints above, we know that
+ # ruby_get_use_implementations will only ever return one ruby
+ # implementation.
+ econf \
+ --libexecdir="${EPREFIX}"/usr/lib/misc \
+ $(use_with archive libarchive) \
+ $(use_with ipv6) \
+ $(use_with perl) \
+ $(use_with 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 () {
+ default
+
+ 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 related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2018-01-21 19:37 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2018-01-21 19:37 UTC (permalink / raw
To: gentoo-commits
commit: ae4f80708db42bc5ce0649d49d1171de7f2baf9f
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 19:18:41 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 19:36:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae4f8070
net-irc/epic5: add ruby23
Package-Manager: Portage-2.3.19, Repoman-2.3.6
net-irc/epic5/epic5-1.1.10-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/epic5/epic5-1.1.10-r1.ebuild b/net-irc/epic5/epic5-1.1.10-r1.ebuild
index b10edb0ea04..97036b79137 100644
--- a/net-irc/epic5/epic5-1.1.10-r1.ebuild
+++ b/net-irc/epic5/epic5-1.1.10-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
RUBY_OPTIONAL=yes
inherit autotools eutils multilib ruby-ng toolchain-funcs
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2015-12-28 8:05 Hans de Graaff
0 siblings, 0 replies; 20+ messages in thread
From: Hans de Graaff @ 2015-12-28 8:05 UTC (permalink / raw
To: gentoo-commits
commit: 89bad6a2dc5ea0a82177efd881815e6aa466f1ce
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 28 08:05:24 2015 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Dec 28 08:05:41 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bad6a2
net-irc/epic5: cleanup for bug 547768
Package-Manager: portage-2.2.24
net-irc/epic5/epic5-1.1.10.ebuild | 83 ---------------------------------------
1 file changed, 83 deletions(-)
diff --git a/net-irc/epic5/epic5-1.1.10.ebuild b/net-irc/epic5/epic5-1.1.10.ebuild
deleted file mode 100644
index 9ed22d7..0000000
--- a/net-irc/epic5/epic5-1.1.10.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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="
- >=dev-libs/openssl-0.9.8e-r3:0
- >=sys-libs/ncurses-5.6-r2
- virtual/libiconv
- archive? ( app-arch/libarchive )
- perl? ( >=dev-lang/perl-5.8.8-r2 )
- tcl? ( dev-lang/tcl:0 )
- 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 \
- "${FILESDIR}"/${P}-socks5-libsocks.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 () {
- default
-
- 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 related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2015-11-11 9:12 Agostino Sarubbo
0 siblings, 0 replies; 20+ messages in thread
From: Agostino Sarubbo @ 2015-11-11 9:12 UTC (permalink / raw
To: gentoo-commits
commit: f7a5a8cb62950f1a59e9a705de08c35786f74ae6
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 11 09:11:14 2015 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Nov 11 09:11:14 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a5a8cb
net-irc/epic5: x86 stable wrt bug #558130
Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"
net-irc/epic5/epic5-1.1.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-1.1.10-r1.ebuild b/net-irc/epic5/epic5-1.1.10-r1.ebuild
index 3eda37e..f03d193 100644
--- a/net-irc/epic5/epic5-1.1.10-r1.ebuild
+++ b/net-irc/epic5/epic5-1.1.10-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
RDEPEND="
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
@ 2015-11-09 10:31 Agostino Sarubbo
0 siblings, 0 replies; 20+ messages in thread
From: Agostino Sarubbo @ 2015-11-09 10:31 UTC (permalink / raw
To: gentoo-commits
commit: 84c8db29452aafa5abaf05e8928bb8e7fe0f82c8
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 9 10:29:47 2015 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Nov 9 10:29:47 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84c8db29
net-irc/epic5: amd64 stable wrt bug #558130
Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"
net-irc/epic5/epic5-1.1.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/epic5/epic5-1.1.10-r1.ebuild b/net-irc/epic5/epic5-1.1.10-r1.ebuild
index 6246558..3eda37e 100644
--- a/net-irc/epic5/epic5-1.1.10-r1.ebuild
+++ b/net-irc/epic5/epic5-1.1.10-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
RDEPEND="
^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2023-05-14 17:11 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-15 19:05 [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2023-05-14 17:11 Sam James
2023-05-14 17:11 Sam James
2022-07-09 6:33 Hans de Graaff
2022-07-09 6:33 Hans de Graaff
2022-06-26 7:45 Hans de Graaff
2021-06-30 18:40 Sam James
2021-06-07 8:33 Joonas Niilola
2020-04-28 4:41 Hans de Graaff
2019-07-17 8:00 Hans de Graaff
2019-05-15 15:24 Mikle Kolyada
2019-05-15 15:24 Mikle Kolyada
2019-01-26 12:43 Pacho Ramos
2018-07-15 19:05 Hans de Graaff
2018-05-06 16:18 Hans de Graaff
2018-04-07 8:38 Hans de Graaff
2018-01-21 19:37 Hans de Graaff
2015-12-28 8:05 Hans de Graaff
2015-11-11 9:12 Agostino Sarubbo
2015-11-09 10:31 Agostino Sarubbo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox