public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/irssi/
Date: Fri, 16 Feb 2018 10:27:59 +0000 (UTC)	[thread overview]
Message-ID: <1518776871.0e3fa2f4174301b9b829a6022ed2e03431be7001.monsieurp@gentoo> (raw)

commit:     0e3fa2f4174301b9b829a6022ed2e03431be7001
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 16 10:17:16 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Feb 16 10:27:51 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e3fa2f4

net-irc/irssi: version bump to 1.1.1.

Bug: https://bugs.gentoo.org/647780
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-irc/irssi/Manifest           |  1 +
 net-irc/irssi/irssi-1.1.1.ebuild | 54 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/net-irc/irssi/Manifest b/net-irc/irssi/Manifest
index e9c18b1d848..1500e74811c 100644
--- a/net-irc/irssi/Manifest
+++ b/net-irc/irssi/Manifest
@@ -3,3 +3,4 @@ DIST irssi-1.0.5.tar.xz 1032308 BLAKE2B 6b5d924871b135fdd3d380eca4520288c00d6ecd
 DIST irssi-1.0.6.tar.xz 1033428 BLAKE2B 63a482cc12a184f5117d97a6922a5fee4075e72b36c631718490c64a1fc203d6e9038c59d5748b7190af1523a85a0cf4cef4f920867e1ddf5d2f2269b36bd3e2 SHA512 ec7ac952fe0cfdf583540f1a466404a573da169e796a342b423126d7bb5d8f8336baafa27f9aed5d0eabc1f201cc4809723493b731d49e42ae1f2b7ec4099d16
 DIST irssi-1.0.7.tar.xz 1034188 BLAKE2B 738ac8c09bb70a1a4f2fea880cf745d38145637ba7afb02dca13be9ee8df1dc5f39eaedd9245a0511446d9ca3cac0a2729d818fa50ce8c2af1825aedc2d52e76 SHA512 f5593ffdbb15c815e1445d15379245a3dba7935a82a6caca0ca2b720e03000df06e6515f5f5d78eaec3923aafccea7396baf12ac945ecddd02664c5f10611bc5
 DIST irssi-1.1.0.tar.xz 1078596 BLAKE2B 5c3e8a2f6adfccd25cd0c91a61b9a7bdabd9124e28355311fb520f08a0e0c37b3987c858935ba39b8139c99f9600edda9772a000ab116c5b9b0c5f124ba15cca SHA512 a1dfe03706fe5194f9a8c21b7795f250f6f19051f4e56075cba8153debb3cea8f635cadcea91691fba3c82989435dc2c8dfe2e67eb7e7ca825457b0bdaf395b5
+DIST irssi-1.1.1.tar.xz 1080992 BLAKE2B a7f7f2004958d9b71d0bba3dea2ee09ebd7f99246d9b6e950a36ae772e4e8c49e4f6be6b18b7cd05ec50397fef2b3c4d16dba41637773b149eff8f7755610df4 SHA512 b2fc0805d6213c31bc34c48237baf2e33ac509c0fa09c483fd39f1473e32eee227ff4532efc60fb495c2ec263c05290578bca7ad6d39149e0594f864da5986c0

diff --git a/net-irc/irssi/irssi-1.1.1.ebuild b/net-irc/irssi/irssi-1.1.1.ebuild
new file mode 100644
index 00000000000..17380b8dfb1
--- /dev/null
+++ b/net-irc/irssi/irssi-1.1.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils perl-module
+
+# Keep for _rc compability
+MY_P="${P/_/-}"
+
+DESCRIPTION="A modular textUI IRC client with IPv6 support"
+HOMEPAGE="https://irssi.org/"
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV/_/-}/${MY_P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+perl selinux socks5 +proxy libressl"
+
+CDEPEND="
+	sys-libs/ncurses:0=
+	>=dev-libs/glib-2.6.0
+	!libressl? ( dev-libs/openssl:= )
+	libressl? ( dev-libs/libressl:= )
+	perl? ( dev-lang/perl:= )
+	socks5? ( >=net-proxy/dante-1.1.18 )"
+
+DEPEND="
+	${CDEPEND}
+	virtual/pkgconfig"
+
+RDEPEND="
+	${CDEPEND}
+	selinux? ( sec-policy/selinux-irc )
+	perl? ( !net-im/silc-client )"
+
+RESTRICT="test"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+	econf \
+		--with-perl-lib=vendor \
+		--enable-true-color \
+		$(use_with proxy) \
+		$(use_with perl) \
+		$(use_with socks5 socks)
+}
+
+src_install() {
+	default
+	use perl && perl_delete_localpod
+	prune_libtool_files --modules
+}


             reply	other threads:[~2018-02-16 10:28 UTC|newest]

Thread overview: 184+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-16 10:27 Patrice Clement [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-30  6:00 [gentoo-commits] repo/gentoo:master commit in: net-irc/irssi/ Sam James
2024-04-30  6:00 Sam James
2024-04-30  5:54 Sam James
2024-04-30  5:54 Sam James
2024-04-30  5:54 Sam James
2024-04-30  5:54 Sam James
2024-04-30  5:54 Sam James
2023-12-28 14:58 Sam James
2023-11-29  4:23 Sam James
2023-10-26 16:33 Arthur Zamarin
2023-10-23 14:05 Arthur Zamarin
2023-10-23  1:44 Sam James
2023-10-23  1:44 Sam James
2023-10-23  1:44 Sam James
2023-10-03 23:38 Sam James
2023-09-03 19:45 Sven Wegener
2023-07-18 22:14 Sam James
2023-07-17 21:47 Sam James
2023-05-12 19:20 Sven Wegener
2023-04-12  9:55 Arthur Zamarin
2023-04-12  9:42 Sam James
2023-04-12  9:42 Sam James
2023-04-12  9:42 Sam James
2023-04-12  9:42 Sam James
2023-04-12  9:42 Sam James
2023-04-12  9:42 Sam James
2023-04-12  9:42 Sam James
2023-04-12  1:50 Sam James
2023-04-11 19:41 Sam James
2022-10-31 20:47 Sam James
2022-08-27 18:05 Arthur Zamarin
2022-08-19 17:42 Sven Wegener
2022-07-31 11:08 Agostino Sarubbo
2022-07-30 14:20 Arthur Zamarin
2022-07-30 11:32 Arthur Zamarin
2022-07-30  9:51 Arthur Zamarin
2022-07-30  9:51 Arthur Zamarin
2022-07-30  8:19 Sam James
2022-07-30  8:19 Sam James
2022-07-17 19:38 Sam James
2022-07-09  9:59 David Seifert
2022-07-06  7:19 Arthur Zamarin
2022-07-06  6:40 Agostino Sarubbo
2022-07-06  6:39 Agostino Sarubbo
2022-07-06  6:39 Agostino Sarubbo
2022-07-06  6:38 Agostino Sarubbo
2022-07-05 19:36 Arthur Zamarin
2022-07-05 16:31 Arthur Zamarin
2022-07-05 16:31 Arthur Zamarin
2022-06-12  5:33 Sam James
2022-06-12  5:05 Sam James
2022-06-12  0:06 Sam James
2022-06-12  0:05 Sam James
2022-06-11 23:28 Sam James
2022-05-19  7:28 WANG Xuerui
2021-05-16  8:26 Mikle Kolyada
2021-04-29 18:28 Mikle Kolyada
2021-04-11 11:46 Mikle Kolyada
2020-11-14 11:19 Mikle Kolyada
2020-11-14 11:19 Mikle Kolyada
2020-02-25 11:31 Mikle Kolyada
2019-12-03  8:24 Mikle Kolyada
2019-11-10 13:08 Mikle Kolyada
2019-08-31  5:16 Mikle Kolyada
2019-08-31  5:16 Mikle Kolyada
2019-07-25 17:47 Mikle Kolyada
2019-07-21  8:16 Sergei Trofimovich
2019-07-18 13:10 Agostino Sarubbo
2019-07-18 11:45 Agostino Sarubbo
2019-07-18 10:01 Agostino Sarubbo
2019-07-18  9:57 Agostino Sarubbo
2019-07-17 15:24 Agostino Sarubbo
2019-07-15 19:10 Sergei Trofimovich
2019-07-15 13:14 Agostino Sarubbo
2019-06-30  4:06 Sven Wegener
2019-05-21 19:53 Mikle Kolyada
2019-04-02 19:21 Mikle Kolyada
2019-02-17 19:21 Mikle Kolyada
2019-02-17 12:03 Mikle Kolyada
2019-02-14 15:56 Mikle Kolyada
2019-02-14 15:23 Mikle Kolyada
2019-02-12 22:19 Jeroen Roovers
2019-02-12 21:22 Lars Wendler
2019-02-12 20:36 Mikle Kolyada
2019-02-12 20:15 Jeroen Roovers
2019-02-12 19:40 Mikle Kolyada
2019-02-12 19:18 Jeroen Roovers
2019-02-12 17:45 Mikle Kolyada
2019-02-12 17:45 Mikle Kolyada
2019-02-12  6:57 Mikle Kolyada
2019-02-12  6:41 Mikle Kolyada
2019-01-10 11:52 Mikle Kolyada
2019-01-10 11:52 Mikle Kolyada
2019-01-10  8:21 Mikle Kolyada
2018-10-24  7:18 Mikle Kolyada
2018-10-24  7:18 Mikle Kolyada
2018-10-24  7:18 Mikle Kolyada
2018-10-22 15:46 Mikle Kolyada
2018-10-20 14:16 Mikle Kolyada
2018-10-18 11:45 Tobias Klausmann
2018-10-17 12:07 Thomas Deutschmann
2018-10-17 10:48 Mikle Kolyada
2018-10-17 10:47 Mikle Kolyada
2018-10-15 19:52 Mikle Kolyada
2018-10-15 19:05 Sergei Trofimovich
2018-10-14 21:18 Sergei Trofimovich
2018-10-13 20:29 Mikle Kolyada
2018-09-23 19:05 Mikle Kolyada
2018-08-24 10:03 Patrice Clement
2018-04-27 21:08 Sergei Trofimovich
2018-04-22 21:14 Aaron Bauman
2018-04-22 20:19 Matt Turner
2018-04-17 21:57 Sergei Trofimovich
2018-04-08 10:55 Markus Meier
2018-03-31 20:00 Sergei Trofimovich
2018-03-31 15:38 Tobias Klausmann
2018-03-24 11:18 Sergei Trofimovich
2018-03-23 10:27 Agostino Sarubbo
2018-03-04  8:16 Tobias Klausmann
2018-02-16 10:27 Patrice Clement
2018-02-11 11:02 Michał Górny
2018-02-05 21:27 Markus Meier
2018-01-20 23:06 Patrice Clement
2018-01-10 22:25 Sergei Trofimovich
2018-01-10 21:22 Sergei Trofimovich
2018-01-09  8:09 Sergei Trofimovich
2018-01-08 22:50 Thomas Deutschmann
2018-01-07 23:19 Mikle Kolyada
2018-01-07 20:53 Markus Meier
2018-01-06 17:59 Patrice Clement
2017-12-27 20:31 Sergei Trofimovich
2017-12-26 22:59 Mikle Kolyada
2017-12-26  0:59 Thomas Deutschmann
2017-10-22 13:51 Patrice Clement
2017-09-26 22:28 Sergei Trofimovich
2017-09-26  8:55 Sergei Trofimovich
2017-09-23 14:02 Sergei Trofimovich
2017-08-31 15:18 Matt Turner
2017-08-26  9:47 Mikle Kolyada
2017-08-18 20:10 Thomas Deutschmann
2017-08-10  7:01 Agostino Sarubbo
2017-08-08 20:41 Markus Meier
2017-08-08 14:03 Sergei Trofimovich
2017-07-30  9:44 Michał Górny
2017-07-07 13:14 Patrice Clement
2017-06-23  4:39 Markus Meier
2017-06-15  9:54 Agostino Sarubbo
2017-06-14  7:49 Agostino Sarubbo
2017-06-13 21:07 Sergei Trofimovich
2017-06-06 22:02 Patrice Clement
2017-03-15 10:22 Patrice Clement
2017-02-17 16:30 Patrice Clement
2017-01-29 19:33 Fabian Groffen
2017-01-17 22:48 Sven Wegener
2017-01-14 23:48 Jeroen Roovers
2017-01-13 16:58 Markus Meier
2017-01-10 15:22 Agostino Sarubbo
2017-01-10  9:57 Jeroen Roovers
2017-01-08 14:48 Sven Wegener
2017-01-06 19:52 Sven Wegener
2017-01-06 13:32 Tobias Klausmann
2017-01-06 13:16 Aaron Bauman
2017-01-05 19:58 Robin H. Johnson
2016-09-30 16:50 Sven Wegener
2016-09-29 13:28 Agostino Sarubbo
2016-09-29 13:14 Agostino Sarubbo
2016-09-29 12:35 Agostino Sarubbo
2016-09-29  9:35 Agostino Sarubbo
2016-09-26 21:57 Sven Wegener
2016-09-23 13:32 Jeroen Roovers
2016-09-22 10:57 Tobias Klausmann
2016-09-21 21:46 Agostino Sarubbo
2016-09-21 21:46 Agostino Sarubbo
2016-09-21 19:47 Matt Thode
2016-06-07 21:21 Andreas Hüttel
2016-03-26 20:29 Patrice Clement
2016-03-15 21:45 Sven Wegener
2016-03-13 22:37 Sven Wegener
2016-03-13 22:37 Sven Wegener
2016-03-13 22:37 Sven Wegener
2016-01-26  9:16 Patrice Clement
2016-01-17 23:10 Patrice Clement
2015-11-03 19:39 Sven Wegener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1518776871.0e3fa2f4174301b9b829a6022ed2e03431be7001.monsieurp@gentoo \
    --to=monsieurp@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox