public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/hexchat/
Date: Sun, 16 Oct 2016 17:24:15 +0000 (UTC)	[thread overview]
Message-ID: <1476638648.de3a6c813769b869ffabbb095d62cd65d890f2aa.soap@gentoo> (raw)

commit:     de3a6c813769b869ffabbb095d62cd65d890f2aa
Author:     Nicholas Vinson <nvinson234 <AT> gmail <DOT> com>
AuthorDate: Sat Oct 15 21:57:21 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Oct 16 17:24:08 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3a6c81

net-irc/hexchat: Remove outdated ebuilds

Package-Manager: portage-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/2563

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-irc/hexchat/hexchat-2.10.2-r1.ebuild | 174 -------------------------------
 net-irc/hexchat/hexchat-2.12.2.ebuild    | 139 ------------------------
 2 files changed, 313 deletions(-)

diff --git a/net-irc/hexchat/hexchat-2.10.2-r1.ebuild b/net-irc/hexchat/hexchat-2.10.2-r1.ebuild
deleted file mode 100644
index 6d16041..00000000
--- a/net-irc/hexchat/hexchat-2.10.2-r1.ebuild
+++ /dev/null
@@ -1,174 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-inherit eutils fdo-mime gnome2-utils mono-env multilib python-single-r1
-
-DESCRIPTION="Graphical IRC client based on XChat"
-HOMEPAGE="http://hexchat.github.io/"
-SRC_URI="https://dl.hexchat.net/hexchat/${P}.tar.xz"
-
-LICENSE="GPL-2 plugin-fishlim? ( MIT )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
-IUSE="dbus +gtk ipv6 libcanberra libnotify libproxy libressl nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
-REQUIRED_USE="plugins? ( python? ( ${PYTHON_REQUIRED_USE} ) )"
-
-DEPEND="dev-libs/glib:2
-	dbus? ( >=dev-libs/dbus-glib-0.98 )
-	gtk? ( x11-libs/gtk+:2 )
-	libcanberra? ( media-libs/libcanberra )
-	libproxy? ( net-libs/libproxy )
-	libnotify? ( x11-libs/libnotify )
-	nls? ( virtual/libintl )
-	ntlm? ( net-libs/libntlm )
-	plugins? (
-		perl? ( >=dev-lang/perl-5.8.0 )
-		plugin-sysinfo? ( sys-apps/pciutils )
-		python? ( ${PYTHON_DEPS} )
-	)
-	spell? ( app-text/iso-codes )
-	ssl? (
-		!libressl? ( dev-libs/openssl:0 )
-		libressl? ( dev-libs/libressl )
-	)
-	theme-manager? ( dev-lang/mono )"
-RDEPEND="${DEPEND}
-	spell? ( app-text/enchant )"
-DEPEND="${DEPEND}
-	app-arch/xz-utils
-	virtual/pkgconfig
-	nls? ( dev-util/intltool )
-	theme-manager? ( dev-util/monodevelop )"
-
-pkg_setup() {
-	use plugins && use python && python-single-r1_pkg_setup
-	if use theme-manager ; then
-		mono-env_pkg_setup
-		export XDG_CACHE_HOME="${T}/.cache"
-	fi
-
-	if use !plugins ; then
-		local myplugins
-
-		use perl && myplugins+="perl\n"
-		use python && myplugins+="python\n"
-		use plugin-checksum && myplugins+="plugin-checksum\n"
-		use plugin-doat && myplugins+="plugin-doat\n"
-		use plugin-fishlim && myplugins+="plugin-fishlim\n"
-		use plugin-sysinfo && myplugins+="plugin-sysinfo\n"
-
-		if [[ ${myplugins} ]] ; then
-			ewarn "The following plugins/interfaces have been disabled, because"
-			ewarn "\"plugins\" USE flag is disabled. Check metadata.xml"
-			ewarn "to get more information or run \"equery u hexchat\"."
-			ewarn "\n${myplugins}"
-		fi
-	fi
-}
-
-src_prepare() {
-	epatch_user
-}
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_enable libproxy socks) \
-		$(use_enable ipv6) \
-		$(use_enable ssl openssl) \
-		$(use_enable gtk gtkfe) \
-		$(use_enable !gtk textfe) \
-		$(usex plugins \
-			"$(usex python "--enable-python=${EPYTHON}" "--disable-python")" \
-			"--disable-python" \
-			) \
-		$(usex plugins \
-			"$(use_enable perl)" \
-			"--disable-perl" \
-			) \
-		$(use_enable plugins plugin) \
-		$(usex plugins \
-			"$(use_enable plugin-checksum checksum)" \
-			"--disable-checksum" \
-			) \
-		$(usex plugins \
-			"$(use_enable plugin-doat doat)" \
-			"--disable-doat" \
-			) \
-		$(usex plugins \
-			"$(use_enable plugin-fishlim fishlim)" \
-			"--disable-fishlim" \
-			) \
-		$(usex plugins \
-			"$(use_enable plugin-sysinfo sysinfo)" \
-			"--disable-sysinfo" \
-			) \
-		$(use_enable dbus) \
-		$(use_enable libnotify) \
-		$(use_enable libcanberra) \
-		$(use_enable ntlm) \
-		$(use_enable libproxy) \
-		$(use_enable spell isocodes) \
-		--enable-minimal-flags \
-		$(use_with theme-manager)
-}
-
-src_install() {
-	emake DESTDIR="${D}" \
-		UPDATE_ICON_CACHE=true \
-		UPDATE_MIME_DATABASE=true \
-		UPDATE_DESKTOP_DATABASE=true \
-		install
-	dodoc readme.md
-	prune_libtool_files --all
-}
-
-pkg_preinst() {
-	if use gtk ; then
-		gnome2_icon_savelist
-	fi
-}
-
-pkg_postinst() {
-	if use gtk ; then
-		gnome2_icon_cache_update
-		einfo
-	else
-		einfo
-		elog "You have disabled the gtk USE flag. This means you don't have"
-		elog "the GTK-GUI for HexChat but only a text interface called \"hexchat-text\"."
-		elog
-	fi
-
-	if use theme-manager ; then
-		fdo-mime_desktop_database_update
-		fdo-mime_mime_database_update
-		elog "Themes are available at:"
-		elog "  http://hexchat.org/themes.html"
-		elog
-	fi
-
-	einfo
-	elog "optional dependencies:"
-	elog "  media-sound/sox (sound playback if you don't have libcanberra"
-	elog "    enabled)"
-	elog "  x11-plugins/hexchat-javascript (javascript support)"
-	elog "  x11-themes/sound-theme-freedesktop (default BEEP sound,"
-	elog "    needs libcanberra enabled)"
-	einfo
-}
-
-pkg_postrm() {
-	if use gtk ; then
-		gnome2_icon_cache_update
-	fi
-
-	if use theme-manager ; then
-		fdo-mime_desktop_database_update
-		fdo-mime_mime_database_update
-	fi
-}

diff --git a/net-irc/hexchat/hexchat-2.12.2.ebuild b/net-irc/hexchat/hexchat-2.12.2.ebuild
deleted file mode 100644
index 530b157..00000000
--- a/net-irc/hexchat/hexchat-2.12.2.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-inherit autotools fdo-mime gnome2-utils mono-env python-single-r1
-
-DESCRIPTION="Graphical IRC client based on XChat"
-HOMEPAGE="https://hexchat.github.io/"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	SRC_URI=""
-	EGIT_REPO_URI="git://github.com/hexchat/hexchat.git"
-else
-	SRC_URI="https://dl.hexchat.net/hexchat/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
-fi
-
-LICENSE="GPL-2 plugin-fishlim? ( MIT )"
-SLOT="0"
-IUSE="dbus debug +gtk libcanberra libnotify libproxy libressl lua nls perl plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-COMMON_DEPEND="dev-libs/glib:2
-	dbus? ( sys-apps/dbus )
-	gtk? ( x11-libs/gtk+:2 )
-	libcanberra? ( media-libs/libcanberra )
-	libproxy? ( net-libs/libproxy )
-	libnotify? ( x11-libs/libnotify )
-	lua? ( dev-lang/lua:= )
-	nls? ( virtual/libintl )
-	perl? ( dev-lang/perl )
-	plugin-sysinfo? ( sys-apps/pciutils )
-	python? ( ${PYTHON_DEPS} )
-	spell? ( app-text/iso-codes )
-	ssl? (
-		!libressl? ( dev-libs/openssl:0= )
-		libressl? ( dev-libs/libressl:0= )
-	)
-	theme-manager? ( dev-lang/mono )"
-RDEPEND="${COMMON_DEPEND}
-	spell? ( app-text/enchant )"
-DEPEND="${COMMON_DEPEND}
-	app-arch/xz-utils
-	virtual/pkgconfig
-	dev-util/intltool
-	theme-manager? ( dev-util/monodevelop )"
-
-src_prepare() {
-	if [[ ${PV} == "9999" ]]; then
-		eautoreconf
-	fi
-	default
-}
-
-pkg_setup() {
-	use python && python-single-r1_pkg_setup
-	if use theme-manager ; then
-		mono-env_pkg_setup
-		export XDG_CACHE_HOME="${T}/.cache"
-	fi
-}
-
-src_configure() {
-	econf \
-		--enable-plugin \
-		$(use_enable nls) \
-		$(use_enable ssl openssl) \
-		$(use_enable gtk gtkfe) \
-		$(use_enable !gtk textfe) \
-		$(use_enable python python "${EPYTHON}") \
-		$(use_enable perl) \
-		$(use_enable plugin-checksum checksum) \
-		$(use_enable plugin-doat doat) \
-		$(use_enable plugin-fishlim fishlim) \
-		$(use_enable plugin-sysinfo sysinfo) \
-		$(use_enable dbus) \
-		$(use_enable lua) \
-		$(use_enable libnotify) \
-		$(use_enable libcanberra) \
-		$(use_enable libproxy) \
-		$(use_enable spell isocodes) \
-		$(use_enable debug) \
-		$(use_with theme-manager)
-}
-
-src_install() {
-	emake DESTDIR="${D}" \
-		UPDATE_ICON_CACHE=true \
-		UPDATE_MIME_DATABASE=true \
-		UPDATE_DESKTOP_DATABASE=true \
-		install
-	dodoc readme.md
-	find "${D}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-	if use gtk ; then
-		gnome2_icon_savelist
-	fi
-}
-
-pkg_postinst() {
-	if use gtk ; then
-		gnome2_icon_cache_update
-	else
-		elog "You have disabled the gtk USE flag. This means you don't have"
-		elog "the GTK-GUI for HexChat but only a text interface called \"hexchat-text\"."
-	fi
-
-	if use theme-manager ; then
-		fdo-mime_desktop_database_update
-		fdo-mime_mime_database_update
-		elog "Themes are available at:"
-		elog "  https://hexchat.github.io/themes.html"
-	fi
-
-	elog
-	elog "optional dependencies:"
-	elog "  media-sound/sox (sound playback if you don't have libcanberra"
-	elog "    enabled)"
-	elog "  x11-plugins/hexchat-javascript (javascript support)"
-	elog "  x11-themes/sound-theme-freedesktop (default BEEP sound,"
-	elog "    needs libcanberra enabled)"
-}
-
-pkg_postrm() {
-	if use gtk ; then
-		gnome2_icon_cache_update
-	fi
-
-	if use theme-manager ; then
-		fdo-mime_desktop_database_update
-		fdo-mime_mime_database_update
-	fi
-}


             reply	other threads:[~2016-10-16 17:24 UTC|newest]

Thread overview: 103+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-16 17:24 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-29  6:10 [gentoo-commits] repo/gentoo:master commit in: net-irc/hexchat/ Joonas Niilola
2024-05-28 20:49 Sam James
2024-05-28 17:08 Sam James
2024-05-28 12:11 Michał Górny
2024-02-29 16:14 Viorel Munteanu
2024-02-29 16:14 Viorel Munteanu
2024-02-29 16:14 Viorel Munteanu
2024-02-29 16:14 Viorel Munteanu
2024-02-29 16:14 Viorel Munteanu
2023-06-11  9:23 Michał Górny
2023-02-27 12:23 Andrew Ammerlaan
2023-02-27 12:23 Andrew Ammerlaan
2023-02-26 18:16 Arthur Zamarin
2023-01-11 11:24 Joonas Niilola
2023-01-07 11:30 Arthur Zamarin
2023-01-07  7:23 Sam James
2023-01-07  7:23 Sam James
2023-01-07  7:20 Sam James
2022-08-23  5:24 Sam James
2022-08-23  5:24 Sam James
2022-07-01  6:20 Sam James
2022-04-27  4:34 Arthur Zamarin
2022-04-25 15:48 Sam James
2022-04-24 17:47 Arthur Zamarin
2022-04-22 16:51 Arthur Zamarin
2022-04-21 13:00 Jakov Smolić
2022-04-21 13:00 Jakov Smolić
2022-02-19  5:20 Sam James
2022-02-13 23:30 Lars Wendler
2022-02-13 12:14 Lars Wendler
2022-02-13 12:14 Lars Wendler
2022-02-11 19:29 Arthur Zamarin
2022-01-31 18:51 Sam James
2022-01-31 18:50 Sam James
2022-01-31 18:50 Sam James
2022-01-31  6:24 Sam James
2021-11-22 13:17 Jakov Smolić
2021-10-04  7:24 Lars Wendler
2021-10-04  7:24 Lars Wendler
2021-10-03 22:02 David Seifert
2021-10-03  9:19 Lars Wendler
2021-06-16  9:30 Lars Wendler
2021-06-16  9:30 Lars Wendler
2021-06-01 11:14 Sam James
2021-04-30  9:54 Mikle Kolyada
2021-03-25 23:31 Conrad Kostecki
2021-01-24  3:52 Sam James
2021-01-23 22:51 Sam James
2021-01-23 22:42 Sam James
2021-01-23  4:20 Sam James
2021-01-23  4:09 Sam James
2020-12-24 23:30 Marek Szuba
2020-06-05  7:21 Mart Raudsepp
2020-04-03 13:11 Agostino Sarubbo
2020-04-03 12:19 Agostino Sarubbo
2020-04-03 12:16 Agostino Sarubbo
2020-04-03 12:12 Agostino Sarubbo
2020-04-03 12:06 Agostino Sarubbo
2020-04-03 12:05 Agostino Sarubbo
2020-02-10 12:12 Michał Górny
2020-02-02 19:35 Mart Raudsepp
2020-01-08 12:54 Joonas Niilola
2019-12-21 20:48 Lars Wendler
2019-12-21 20:48 Lars Wendler
2019-11-08 17:07 Andreas K. Hüttel
2019-03-13 14:31 Lars Wendler
2018-10-31  8:00 Lars Wendler
2018-09-03 12:11 Lars Wendler
2018-09-03 12:11 Lars Wendler
2018-07-24  0:34 Mikle Kolyada
2018-06-27 22:15 Sergei Trofimovich
2018-06-27  7:25 Tobias Klausmann
2018-06-27  7:09 Sergei Trofimovich
2018-06-24 13:09 Jason Zaman
2018-03-21  9:53 Lars Wendler
2018-03-16  8:28 Lars Wendler
2018-03-16  8:28 Lars Wendler
2018-03-15 23:22 Lars Wendler
2018-03-15 23:22 Lars Wendler
2018-02-11 11:02 Michał Górny
2018-01-15  5:15 Mike Frysinger
2017-07-30  9:44 Michał Górny
2017-02-05 17:27 Lars Wendler
2017-02-05 17:03 Markus Meier
2017-01-22  9:36 Jeroen Roovers
2017-01-21 11:37 Tobias Klausmann
2017-01-20 11:05 Agostino Sarubbo
2017-01-19 17:07 Agostino Sarubbo
2017-01-19 17:06 Agostino Sarubbo
2017-01-19 16:21 Agostino Sarubbo
2016-12-13 14:55 Lars Wendler
2016-12-11  9:48 David Seifert
2016-12-11  9:45 David Seifert
2016-10-23 22:18 Lars Wendler
2016-10-14  8:08 Lars Wendler
2016-10-14  8:07 Lars Wendler
2016-10-14  8:00 Lars Wendler
2016-10-07  6:13 Lars Wendler
2016-10-05  5:35 Matthias Maier
2016-05-22 19:35 Pacho Ramos
2015-09-30 20:16 Julian Ospald
2015-09-30 20:16 Julian Ospald

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=1476638648.de3a6c813769b869ffabbb095d62cd65d890f2aa.soap@gentoo \
    --to=soap@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