commit:     f51d071276af645756472e42a4b2464a71f8bd98
Author:     Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Sun Mar 11 00:53:38 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 14 16:44:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51d0712

net-irc/znc: bump to 1.6.6

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-irc/znc/Manifest         |   1 +
 net-irc/znc/znc-1.6.6.ebuild | 129 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 130 insertions(+)

diff --git a/net-irc/znc/Manifest b/net-irc/znc/Manifest
index e8522361c57..d7162d91414 100644
--- a/net-irc/znc/Manifest
+++ b/net-irc/znc/Manifest
@@ -1,3 +1,4 @@
 DIST googletest-release-1.7.0.tar.gz 468653 BLAKE2B 
8dfca8b79dcd7b64ce84bad11ee68c549f4fe3dff7638ed1d845af4a7f754ad5df782d2cbebdb9fecfda2499dae6585e07cda7a8c8c454f0b70723d5c9578aa4
 SHA512 
c623d5720c4ed574e95158529872815ecff478c03bdcee8b79c9b042a603533f93fe55f939bcfe2cd745ce340fd626ad6d9a95981596f1a4d05053d874cd1dfc
 DIST znc-1.6.3.tar.gz 1464200 BLAKE2B 
7ea0aeea29133308772df91f5a43748acbfa5998a6865000d5dfe43d88ca82d18338ea0d18746361e0d22eafb4ce1c8533f213db4cc0d0444c3f05124388e562
 SHA512 
777279b6c973310b4e78a0472bd1e355c2adf3e4fbe9ebedde3dd4706e5c0b208d4330eb2318a8d9e0d7d7146bee0a4a428cbe5a3f230c8f6aa692a477e86e2b
 DIST znc-1.6.5.tar.gz 1470681 BLAKE2B 
9de0b211280489423bc2894d0e76d7276aa42428d07d64516372a9ca6d1616db1f27c0142b54160c61cbee89d65ceadf941d001319254dbff9eb5b016988482e
 SHA512 
d78603ac86d1fb92cdf591b1eb6d32fa19b0e39414bd69e1300c537051612ae590c43d3b8e4dd598cdff605bf3aa1d3d5d806edd428d15d50f733e1670f3e626
+DIST znc-1.6.6.tar.gz 1471612 BLAKE2B 
8bd977a95417c4259e9f38759d838f55a146f376dc8bb6230ab6e1b698fb7c9e060cbc237efd4e836961314abab56cc02e7c6bc74e40bad17abaf06e47fbb516
 SHA512 
cc5bc7328bfe36525ab215b4b53c7cd20aa02b41e7bb28507ff9d9632560f4c30396804e4b828bca0ece19f42813e3fce59d1bae639ea5fc149059f6979e63e7

diff --git a/net-irc/znc/znc-1.6.6.ebuild b/net-irc/znc/znc-1.6.6.ebuild
new file mode 100644
index 00000000000..0e053e7e595
--- /dev/null
+++ b/net-irc/znc/znc-1.6.6.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+inherit eutils python-single-r1 readme.gentoo-r1 systemd user
+
+MY_PV=${PV/_/-}
+GTEST_VER="1.7.0"
+GTEST_URL="https://github.com/google/googletest/archive/release-${GTEST_VER}.tar.gz
 -> googletest-release-${GTEST_VER}.tar.gz"
+
+DESCRIPTION="An advanced IRC Bouncer"
+HOMEPAGE="http://znc.in";
+SRC_URI="
+       http://znc.in/releases/archive/${PN}-${MY_PV}.tar.gz
+       test? ( ${GTEST_URL} )
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="amd64 arm x86"
+IUSE="daemon debug +ipv6 +icu libressl perl python +ssl sasl tcl test +zlib"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+       icu? ( dev-libs/icu:= )
+       perl? ( >=dev-lang/perl-5.10:= )
+       python? ( ${PYTHON_DEPS} )
+       sasl? ( >=dev-libs/cyrus-sasl-2 )
+       ssl? (
+               !libressl? ( dev-libs/openssl:0= )
+               libressl? ( dev-libs/libressl:0= )
+       )
+       tcl? ( dev-lang/tcl:0= )
+       zlib? ( sys-libs/zlib )
+"
+DEPEND="
+       ${RDEPEND}
+       virtual/pkgconfig
+"
+
+S=${WORKDIR}/${PN}-${MY_PV}
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-1.6.1-systemwideconfig.patch
+       "${FILESDIR}"/${PN}-1.6.1-create-pidfile-per-default.patch
+)
+
+pkg_setup() {
+       if use python; then
+               python-single-r1_pkg_setup
+       fi
+       if use daemon; then
+               enewgroup ${PN}
+               enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+               # The home directory was previously set to /dev/null
+               # This caused a bug with the systemd unit
+               # https://bugs.gentoo.org/521916
+               esethome ${PN} /var/lib/${PN}
+       fi
+}
+
+src_configure() {
+       econf \
+               --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \
+               $(use_enable debug) \
+               $(use_enable icu charset) \
+               $(use_enable ipv6) \
+               $(use_enable perl) \
+               $(use_enable python) \
+               $(use_enable sasl cyrus) \
+               $(use_enable ssl openssl) \
+               $(use_enable tcl) \
+               $(use_enable zlib) \
+               $(use_with test gtest 
"${WORKDIR}/googletest-release-${GTEST_VER}")
+}
+
+src_install() {
+       default
+       dodoc NOTICE
+       if use daemon; then
+               newinitd "${FILESDIR}"/znc.initd-r1 znc
+               newconfd "${FILESDIR}"/znc.confd-r1 znc
+       fi
+       DOC_CONTENTS=$(<"${FILESDIR}/README.gentoo") || die
+       DISABLE_AUTOFORMATTING=1
+       readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+       readme.gentoo_print_elog
+       if [[ -d "${EROOT%/}"/etc/znc ]]; then
+               ewarn "/etc/znc exists on your system."
+               ewarn "Due to the nature of the contents of that folder,"
+               ewarn "we have changed the default configuration to use"
+               ewarn " /var/lib/znc"
+               ewarn "please move /etc/znc to /var/lib/znc"
+               ewarn "or adjust /etc/conf.d/znc"
+       fi
+}
+
+pkg_config() {
+       if use daemon; then
+               if [[ -e "${EROOT%/}/var/lib/znc" ]]; then
+                       ewarn "${EROOT%/}/var/lib/znc already exists, aborting 
to avoid damaging"
+                       ewarn "any existing configuration. If you are sure you 
want"
+                       ewarn "to generate a new configuration, remove the 
folder"
+                       ewarn "and try again."
+               else
+                       einfo "Press any key to interactively create a new 
configuration file"
+                       einfo "for znc."
+                       einfo "To abort, press Control-C"
+                       read
+                       mkdir -p "${EROOT%/}/var/lib/znc" || die
+                       chown -R ${PN}:${PN} "${EROOT%/}/var/lib/znc" ||
+                               die "Setting permissions failed"
+                       "${EROOT%/}"/usr/bin/znc --system-wide-config-as ${PN} 
-c -r -d "${EROOT%/}/var/lib/znc" ||
+                               die "Config failed"
+                       echo
+                       einfo "To start znc, run '/etc/init.d/znc start'"
+                       einfo "or add znc to a runlevel:"
+                       einfo "  rc-update add znc default"
+               fi
+       else
+               ewarn "To configure znc as a system-wide daemon you have to"
+               ewarn "enable the 'daemon' use flag."
+       fi
+}

Reply via email to