public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/inspircd: inspircd-2.0.14.ebuild ChangeLog
@ 2013-08-31 18:50 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 3+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2013-08-31 18:50 UTC (permalink / raw
  To: gentoo-commits

nimiux      13/08/31 18:50:12

  Modified:             ChangeLog
  Added:                inspircd-2.0.14.ebuild
  Log:
  Version bump
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.87                 net-irc/inspircd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	31 Aug 2013 15:27:51 -0000	1.86
+++ ChangeLog	31 Aug 2013 18:50:12 -0000	1.87
@@ -1,6 +1,12 @@
 # ChangeLog for net-irc/inspircd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.86 2013/08/31 15:27:51 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.87 2013/08/31 18:50:12 nimiux Exp $
+
+*inspircd-2.0.14 (31 Aug 2013)
+
+  31 Aug 2013; Chema Alonso <nimiux@gentoo.org> +inspircd-2.0.14.ebuild,
+  +files/inspircd-2.0.14-fix-path-builds.patch, +files/inspircd-2.0.14-init:
+  Version bump
 
   31 Aug 2013; Chema Alonso <nimiux@gentoo.org> -inspircd-2.0.11.ebuild,
   -files/inspircd-2.0.11-fix-path-builds.patch, -files/inspircd-2.0.11-init,



1.1                  net-irc/inspircd/inspircd-2.0.14.ebuild

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

Index: inspircd-2.0.14.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v 1.1 2013/08/31 18:50:11 nimiux Exp $

EAPI=5

inherit eutils multilib toolchain-funcs

DESCRIPTION="Inspire IRCd - The Stable, High-Performance Modular IRCd"
HOMEPAGE="http://inspircd.github.com/"
SRC_URI="http://www.github.com/inspircd/inspircd/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="geoip gnutls ipv6 ldap mysql pcre posix postgres sqlite ssl tre"

RDEPEND="
	dev-lang/perl
	ssl? ( dev-libs/openssl )
	geoip? ( dev-libs/geoip )
	gnutls? ( net-libs/gnutls dev-libs/libgcrypt )
	ldap? ( net-nds/openldap )
	mysql? ( virtual/mysql )
	postgres? ( dev-db/postgresql-server )
	pcre? ( dev-libs/libpcre )
	sqlite? ( >=dev-db/sqlite-3.0 )
	tre? ( dev-libs/tre )"
DEPEND="${RDEPEND}"

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 -1 ${PN}
}

src_prepare() {
	# Patch the inspircd launcher with the inspircd user
	sed -i -e "s/@UID@/${PN}/" "${S}/make/template/${PN}" || die

	epatch "${FILESDIR}/${P}-fix-path-builds.patch"
}

src_configure() {
	local extras=""
	local essl="--enable-openssl"
	local egnutls="--enable-gnutls"
	local dipv6="--disable-ipv6"

	use geoip && extras="${extras}m_geoip.cpp,"
	use gnutls && extras="${extras}m_ssl_gnutls.cpp,"
	use ipv6 && dipv6=""
	use ldap && extras="${extras}m_ldapauth.cpp,m_ldapoper.cpp,"
	use mysql && extras="${extras}m_mysql.cpp,"
	use pcre && extras="${extras}m_regex_pcre.cpp,"
	use posix && extras="${extras}m_regex_posix.cpp,"
	use postgres && extras="${extras}m_pgsql.cpp,"
	use sqlite && extras="${extras}m_sqlite3.cpp,"
	use ssl && extras="${extras}m_ssl_openssl.cpp,"
	use tre && extras="${extras}m_regex_tre.cpp,"

	use !ssl && essl=""
	use !gnutls && egnutls=""

	if [ -n "${extras}" ]; then
		./configure --disable-interactive --enable-extras=${extras}
	fi

	./configure \
		--with-cc="$(tc-getCXX)" \
		--disable-interactive \
		--prefix="/usr/$(get_libdir)/${PN}" \
		--config-dir="/etc/${PN}" \
		--data-dir="/var/lib/${PN}/data" \
		--log-dir="/var/log/${PN}" \
		--binary-dir="/usr/bin" \
		--module-dir="/usr/$(get_libdir)/${PN}/modules" \
		${essl} ${egnutls} ${dipv6} || die
}

src_compile() {
	emake V=1 LDFLAGS="${LDFLAGS}" CXXFLAGS="${CXXFLAGS}"
}

src_install() {
	emake INSTUID=${PN} \
		BINPATH="${D}/usr/bin" \
		BASE="${D}/usr/$(get_libdir)/${PN}/inspircd.launcher" \
		MODPATH="${D}/usr/$(get_libdir)/${PN}/modules/" \
		CONPATH="${D}/etc/${PN}" install

	insinto "/usr/include/${PN}"
	doins include/*

	diropts -o"${PN}" -g"${PN}" -m0700
	dodir "/var/lib/${PN}"
	dodir "/var/lib/${PN}/data"

	newinitd "${FILESDIR}/${P}-init" "${PN}"
	keepdir "/var/log/${PN}"/
}

pkg_postinst() {
	elog "Before starting ${PN} the first time, you should create"
	elog "the /etc/${PN}/${PN}.conf file."
	elog "You can find example configuration files under /etc/${PN}"
	elog "Read the ${PN}.conf.example file carefully before "
	elog "(re)starting the service."
	elog
}





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

* [gentoo-commits] gentoo-x86 commit in net-irc/inspircd: inspircd-2.0.14.ebuild ChangeLog
@ 2013-10-14 17:54 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Vroon (chainsaw) @ 2013-10-14 17:54 UTC (permalink / raw
  To: gentoo-commits

chainsaw    13/10/14 17:54:01

  Modified:             inspircd-2.0.14.ebuild ChangeLog
  Log:
  Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El Lazkani in bug #487044.
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)

Revision  Changes    Path
1.2                  net-irc/inspircd/inspircd-2.0.14.ebuild

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

Index: inspircd-2.0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- inspircd-2.0.14.ebuild	31 Aug 2013 18:50:11 -0000	1.1
+++ inspircd-2.0.14.ebuild	14 Oct 2013 17:54:01 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v 1.1 2013/08/31 18:50:11 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v 1.2 2013/10/14 17:54:01 chainsaw Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="geoip gnutls ipv6 ldap mysql pcre posix postgres sqlite ssl tre"
 
 RDEPEND="



1.88                 net-irc/inspircd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	31 Aug 2013 18:50:12 -0000	1.87
+++ ChangeLog	14 Oct 2013 17:54:01 -0000	1.88
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/inspircd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.87 2013/08/31 18:50:12 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.88 2013/10/14 17:54:01 chainsaw Exp $
+
+  14 Oct 2013; Tony Vroon <chainsaw@gentoo.org> inspircd-2.0.14.ebuild:
+  Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El
+  Lazkani in bug #487044.
 
 *inspircd-2.0.14 (31 Aug 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in net-irc/inspircd: inspircd-2.0.14.ebuild ChangeLog
@ 2013-12-08 15:45 Johannes Huber (johu)
  0 siblings, 0 replies; 3+ messages in thread
From: Johannes Huber (johu) @ 2013-12-08 15:45 UTC (permalink / raw
  To: gentoo-commits

johu        13/12/08 15:45:10

  Modified:             inspircd-2.0.14.ebuild ChangeLog
  Log:
  x86 stable, bug #487044
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)

Revision  Changes    Path
1.3                  net-irc/inspircd/inspircd-2.0.14.ebuild

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

Index: inspircd-2.0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- inspircd-2.0.14.ebuild	14 Oct 2013 17:54:01 -0000	1.2
+++ inspircd-2.0.14.ebuild	8 Dec 2013 15:45:09 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v 1.2 2013/10/14 17:54:01 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.14.ebuild,v 1.3 2013/12/08 15:45:09 johu Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="geoip gnutls ipv6 ldap mysql pcre posix postgres sqlite ssl tre"
 
 RDEPEND="



1.89                 net-irc/inspircd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	14 Oct 2013 17:54:01 -0000	1.88
+++ ChangeLog	8 Dec 2013 15:45:09 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/inspircd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.88 2013/10/14 17:54:01 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.89 2013/12/08 15:45:09 johu Exp $
+
+  08 Dec 2013; Johannes Huber <johu@gentoo.org> inspircd-2.0.14.ebuild:
+  x86 stable, bug #487044
 
   14 Oct 2013; Tony Vroon <chainsaw@gentoo.org> inspircd-2.0.14.ebuild:
   Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El





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

end of thread, other threads:[~2013-12-08 15:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-08 15:45 [gentoo-commits] gentoo-x86 commit in net-irc/inspircd: inspircd-2.0.14.ebuild ChangeLog Johannes Huber (johu)
  -- strict thread matches above, loose matches on Subject: below --
2013-10-14 17:54 Tony Vroon (chainsaw)
2013-08-31 18:50 JosA MarAa Alonso (nimiux)

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