public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/shadowircd: shadowircd-6.3.3.ebuild ChangeLog
@ 2012-12-31 22:46 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-12-31 22:46 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/12/31 22:46:14

  Modified:             ChangeLog
  Added:                shadowircd-6.3.3.ebuild
  Log:
  Version bump due to security advisory ASA-2012-12-31
  
  (Portage version: 2.2.0_alpha149/cvs/Linux i686, signed Manifest commit with key 23E9E900)

Revision  Changes    Path
1.7                  net-irc/shadowircd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	5 Apr 2012 20:37:32 -0000	1.6
+++ ChangeLog	31 Dec 2012 22:46:14 -0000	1.7
@@ -1,6 +1,11 @@
 # ChangeLog for net-irc/shadowircd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.6 2012/04/05 20:37:32 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.7 2012/12/31 22:46:14 jdhore Exp $
+
+*shadowircd-6.3.3 (31 Dec 2012)
+
+  31 Dec 2012; Jeff Horelick <jdhore@gentoo.org> +shadowircd-6.3.3.ebuild:
+  Version bump due to security advisory ASA-2012-12-31
 
   05 Apr 2012; Jeff Horelick <jdhore@gentoo.org> shadowircd-6.3.2.1.ebuild:
   marked x86 per bug 410849
@@ -24,4 +29,3 @@
   +files/shadowircd.initd, +metadata.xml, +shadowircd-6.3.2.1.ebuild:
   Add net-irc/shadowircd-6.3.2.1, an IRCd based on charybdis, but adds several
   useful features.
-



1.1                  net-irc/shadowircd/shadowircd-6.3.3.ebuild

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

Index: shadowircd-6.3.3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.3.ebuild,v 1.1 2012/12/31 22:46:14 jdhore Exp $

EAPI=4

inherit eutils multilib user

DESCRIPTION="An IRCd based on charybdis that adds several useful features"
HOMEPAGE="http://shadowircd.net"
SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +ipv6 largenet ssl zlib"

RDEPEND="ssl? ( dev-libs/openssl )
	zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
	virtual/yacc
	sys-devel/flex"

S="${WORKDIR}/${PN}-${P}"

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 "${EPREFIX}"/usr ${PN}
}

src_prepare() {
	# Fill the example configuration file with proper paths.
	sed -i \
		-e "s:path =.*modules:path = \"$(get_libdir)/${PN}/modules:g" \
		-e "s:etc/:../etc/${PN}/:g" \
		-e "s:logs/:../var/log/shadowircd/:g" \
		-e "s:test\.\(cert\|key\):ssl.\1:g" \
		doc/example.conf \
		doc/reference.conf \
		|| die
}

src_configure() {
	econf \
		ac_cv_prog_cc_g=no \
		--disable-gnutls \
		$(use_enable debug assert soft) \
		$(use_enable debug iodebug) \
		$(use_enable ipv6) \
		$(use_enable !largenet small-net) \
		$(use_enable ssl openssl) \
		$(use_enable zlib) \
		--with-program-prefix=shadowircd- \
		\
		--enable-fhs-paths \
		--sysconfdir="${EPREFIX}"/etc/${PN} \
		--libdir="${EPREFIX}"/usr/"$(get_libdir)"/${PN} \
		--with-logdir="${EPREFIX}"/var/log/${PN} \
		--with-moduledir="${EPREFIX}"/usr/"$(get_libdir)"/${PN}/modules \
		--with-rundir="${EPREFIX}"/var/run
}

src_install() {
	default

	newinitd "${FILESDIR}"/${PN}.initd ${PN}
	newconfd "${FILESDIR}"/${PN}.confd ${PN}

	insinto etc/${PN}
	newins doc/reference.conf ircd.conf

	keepdir var/{lib,log}/${PN}

	# Ensure that if `make install' created /var/run/${PN}, we still
	# force the initscript to create that directory.
	rm -rf "${D}"/var/run || die

	# shadowircd needs writing to its state (bandb) and log directories
	fowners :shadowircd /var/{lib,log}/${PN}
	fperms 770 /var/{lib,log}/${PN}

	# ensure that shadowircd can access but not modify its configuration
	# while protecting it from others
	fowners :shadowircd /etc/${PN}{,/ircd.conf}
	fperms 750 /etc/${PN}
	fperms 640 /etc/${PN}/ircd.conf
}

pkg_postinst() {
	elog "All of the shadowircd binaries in PATH have been prefixed with"
	elog "'shadowircd-' to prevent file collisions."
}





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

* [gentoo-commits] gentoo-x86 commit in net-irc/shadowircd: shadowircd-6.3.3.ebuild ChangeLog
@ 2013-01-03 11:47 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-03 11:47 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/03 11:47:19

  Modified:             shadowircd-6.3.3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #449790
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  net-irc/shadowircd/shadowircd-6.3.3.ebuild

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

Index: shadowircd-6.3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- shadowircd-6.3.3.ebuild	31 Dec 2012 22:46:14 -0000	1.1
+++ shadowircd-6.3.3.ebuild	3 Jan 2013 11:47:19 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.3.ebuild,v 1.1 2012/12/31 22:46:14 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.3.ebuild,v 1.2 2013/01/03 11:47:19 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug +ipv6 largenet ssl zlib"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.8                  net-irc/shadowircd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	31 Dec 2012 22:46:14 -0000	1.7
+++ ChangeLog	3 Jan 2013 11:47:19 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/shadowircd
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.7 2012/12/31 22:46:14 jdhore Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.8 2013/01/03 11:47:19 ago Exp $
+
+  03 Jan 2013; Agostino Sarubbo <ago@gentoo.org> shadowircd-6.3.3.ebuild:
+  Stable for amd64, wrt bug #449790
 
 *shadowircd-6.3.3 (31 Dec 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in net-irc/shadowircd: shadowircd-6.3.3.ebuild ChangeLog
@ 2013-01-03 11:49 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-03 11:49 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/03 11:49:25

  Modified:             shadowircd-6.3.3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #449790
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  net-irc/shadowircd/shadowircd-6.3.3.ebuild

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

Index: shadowircd-6.3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- shadowircd-6.3.3.ebuild	3 Jan 2013 11:47:19 -0000	1.2
+++ shadowircd-6.3.3.ebuild	3 Jan 2013 11:49:25 -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/shadowircd/shadowircd-6.3.3.ebuild,v 1.2 2013/01/03 11:47:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/shadowircd-6.3.3.ebuild,v 1.3 2013/01/03 11:49:25 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug +ipv6 largenet ssl zlib"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.9                  net-irc/shadowircd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	3 Jan 2013 11:47:19 -0000	1.8
+++ ChangeLog	3 Jan 2013 11:49:25 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/shadowircd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.8 2013/01/03 11:47:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/shadowircd/ChangeLog,v 1.9 2013/01/03 11:49:25 ago Exp $
+
+  03 Jan 2013; Agostino Sarubbo <ago@gentoo.org> shadowircd-6.3.3.ebuild:
+  Stable for x86, wrt bug #449790
 
   03 Jan 2013; Agostino Sarubbo <ago@gentoo.org> shadowircd-6.3.3.ebuild:
   Stable for amd64, wrt bug #449790





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

end of thread, other threads:[~2013-01-03 11:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-03 11:49 [gentoo-commits] gentoo-x86 commit in net-irc/shadowircd: shadowircd-6.3.3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-03 11:47 Agostino Sarubbo (ago)
2012-12-31 22:46 Jeff Horelick (jdhore)

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