public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-im/minbif: minbif-1.0.5.ebuild ChangeLog
@ 2012-07-24 17:43 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2012-07-24 17:43 UTC (permalink / raw
  To: gentoo-commits

pacho       12/07/24 17:43:28

  Modified:             ChangeLog
  Added:                minbif-1.0.5.ebuild
  Log:
  Version bump, also fix gcc-4.7 and glib-2.32 compilation, and create user/group properly (#343219 by fulax).
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 net-im/minbif/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	25 Feb 2011 19:41:41 -0000	1.9
+++ ChangeLog	24 Jul 2012 17:43:28 -0000	1.10
@@ -1,6 +1,13 @@
 # ChangeLog for net-im/minbif
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.9 2011/02/25 19:41:41 cedk Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.10 2012/07/24 17:43:28 pacho Exp $
+
+*minbif-1.0.5 (24 Jul 2012)
+
+  24 Jul 2012; Pacho Ramos <pacho@gentoo.org> +files/minbif-1.0.5-gcc47.patch,
+  +files/minbif-1.0.5-glib-single-includes.patch, +minbif-1.0.5.ebuild:
+  Version bump, also fix gcc-4.7 and glib-2.32 compilation, and create
+  user/group properly (#343219 by fulax).
 
 *minbif-1.0.4 (25 Feb 2011)
 
@@ -39,4 +46,3 @@
   24 Nov 2009; Cédric Krier <cedk@gentoo.org> +minbif-1.0.ebuild,
   +files/minbif.initd, +metadata.xml:
   New ebuild
-



1.1                  net-im/minbif/minbif-1.0.5.ebuild

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

Index: minbif-1.0.5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.1 2012/07/24 17:43:28 pacho Exp $

EAPI=4
inherit cmake-utils eutils

DESCRIPTION="an IRC gateway to IM networks"
HOMEPAGE="https://symlink.me/projects/minbif/wiki/"
SRC_URI="https://symlink.me/attachments/download/148/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gnutls +imlib +libcaca pam video xinetd"
REQUIRED_USE="video? ( libcaca )"

DEPEND=">=net-im/pidgin-2.6
	video? ( >=net-im/pidgin-2.6[gstreamer] net-libs/farsight2 )
	libcaca? ( media-libs/libcaca media-libs/imlib2 )
	imlib? ( media-libs/imlib2 )
	pam? ( sys-libs/pam )
	gnutls? ( net-libs/gnutls )"
RDEPEND="${DEPEND}
	virtual/logger
	xinetd? ( sys-apps/xinetd )"

pkg_setup() {
	enewgroup minbif
	enewuser minbif -1 -1 /var/lib/minbif minbif
}

src_prepare() {
	epatch "${FILESDIR}/${PN}-1.0.5-glib-single-includes.patch"
	epatch "${FILESDIR}/${PN}-1.0.5-gcc47.patch"

	sed -i "s/-Werror//g" CMakeLists.txt || die "sed failed"

	sed -i "s#share/doc/minbif#share/doc/${P}#" \
		CMakeLists.txt || die "sed failed"

	if use xinetd; then
		sed -i "s/type\s=\s[0-9]/type = 0/" \
			minbif.conf || die "sed failed"
	fi
}

src_configure() {
	local mycmakeargs
	mycmakeargs="${mycmakeargs}
		-DCONF_PREFIX=${PREFIX:-/etc/minbif}
		$(cmake-utils_use_enable libcaca CACA)
		$(cmake-utils_use_enable video VIDEO)
		$(cmake-utils_use_enable imlib IMLIB)
		$(cmake-utils_use_enable pam PAM)
		$(cmake-utils_use_enable gnutls TLS)"

	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install
	keepdir /var/lib/minbif
	fperms 700 /var/lib/minbif
	fowners minbif:minbif /var/lib/minbif

	dodoc ChangeLog README
	doman man/minbif.8

	if use xinetd; then
		insinto /etc/xinetd.d
		newins doc/minbif.xinetd minbif
	fi

	newinitd "${FILESDIR}"/minbif.initd minbif

	dodir /usr/share/minbif
	insinto /usr/share/minbif
	doins -r scripts
}





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

* [gentoo-commits] gentoo-x86 commit in net-im/minbif: minbif-1.0.5.ebuild ChangeLog
@ 2012-08-03 16:04 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2012-08-03 16:04 UTC (permalink / raw
  To: gentoo-commits

hwoarang    12/08/03 16:04:25

  Modified:             minbif-1.0.5.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #428058
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-im/minbif/minbif-1.0.5.ebuild

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

Index: minbif-1.0.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- minbif-1.0.5.ebuild	24 Jul 2012 17:43:28 -0000	1.1
+++ minbif-1.0.5.ebuild	3 Aug 2012 16:04:25 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.1 2012/07/24 17:43:28 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.2 2012/08/03 16:04:25 hwoarang Exp $
 
 EAPI=4
 inherit cmake-utils eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="gnutls +imlib +libcaca pam video xinetd"
 REQUIRED_USE="video? ( libcaca )"
 



1.11                 net-im/minbif/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	24 Jul 2012 17:43:28 -0000	1.10
+++ ChangeLog	3 Aug 2012 16:04:25 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/minbif
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.10 2012/07/24 17:43:28 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.11 2012/08/03 16:04:25 hwoarang Exp $
+
+  03 Aug 2012; Markos Chandras <hwoarang@gentoo.org> minbif-1.0.5.ebuild:
+  Stable on amd64 wrt bug #428058
 
 *minbif-1.0.5 (24 Jul 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in net-im/minbif: minbif-1.0.5.ebuild ChangeLog
@ 2012-08-21  8:39 Johannes Huber (johu)
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Huber (johu) @ 2012-08-21  8:39 UTC (permalink / raw
  To: gentoo-commits

johu        12/08/21 08:39:05

  Modified:             minbif-1.0.5.ebuild ChangeLog
  Log:
  Non maintainer commit. Add required use on imlib if libcaca is enabled. Without this constraint configure fails.
  
  (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-im/minbif/minbif-1.0.5.ebuild

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

Index: minbif-1.0.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- minbif-1.0.5.ebuild	3 Aug 2012 16:04:25 -0000	1.2
+++ minbif-1.0.5.ebuild	21 Aug 2012 08:39:04 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.2 2012/08/03 16:04:25 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.3 2012/08/21 08:39:04 johu Exp $
 
 EAPI=4
 inherit cmake-utils eutils
@@ -13,7 +13,8 @@
 SLOT="0"
 KEYWORDS="amd64 ~arm ~x86"
 IUSE="gnutls +imlib +libcaca pam video xinetd"
-REQUIRED_USE="video? ( libcaca )"
+REQUIRED_USE="video? ( libcaca )
+	libcaca? ( imlib )"
 
 DEPEND=">=net-im/pidgin-2.6
 	video? ( >=net-im/pidgin-2.6[gstreamer] net-libs/farsight2 )



1.12                 net-im/minbif/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	3 Aug 2012 16:04:25 -0000	1.11
+++ ChangeLog	21 Aug 2012 08:39:04 -0000	1.12
@@ -1,6 +1,10 @@
 # ChangeLog for net-im/minbif
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.11 2012/08/03 16:04:25 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.12 2012/08/21 08:39:04 johu Exp $
+
+  21 Aug 2012; Johannes Huber <johu@gentoo.org> minbif-1.0.5.ebuild:
+  Non maintainer commit. Add required use on imlib if libcaca is enabled.
+  Without this constraint configure fails.
 
   03 Aug 2012; Markos Chandras <hwoarang@gentoo.org> minbif-1.0.5.ebuild:
   Stable on amd64 wrt bug #428058





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

* [gentoo-commits] gentoo-x86 commit in net-im/minbif: minbif-1.0.5.ebuild ChangeLog
@ 2014-01-08  6:41 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-08  6:41 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/08 06:41:12

  Modified:             minbif-1.0.5.ebuild ChangeLog
  Log:
  Inherit the user eclass for enewuser/etc...
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.5                  net-im/minbif/minbif-1.0.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild?r1=1.4&r2=1.5

Index: minbif-1.0.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- minbif-1.0.5.ebuild	21 Aug 2012 08:41:43 -0000	1.4
+++ minbif-1.0.5.ebuild	8 Jan 2014 06:41:12 -0000	1.5
@@ -1,9 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.4 2012/08/21 08:41:43 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.5.ebuild,v 1.5 2014/01/08 06:41:12 vapier Exp $
 
 EAPI=4
-inherit cmake-utils eutils
+inherit cmake-utils eutils user
 
 DESCRIPTION="an IRC gateway to IM networks"
 HOMEPAGE="https://symlink.me/projects/minbif/wiki/"



1.16                 net-im/minbif/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/minbif/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	1 Jun 2013 12:20:35 -0000	1.15
+++ ChangeLog	8 Jan 2014 06:41:12 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/minbif
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.15 2013/06/01 12:20:35 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/ChangeLog,v 1.16 2014/01/08 06:41:12 vapier Exp $
+
+  08 Jan 2014; Mike Frysinger <vapier@gentoo.org> minbif-1.0.5.ebuild:
+  Inherit the user eclass for enewuser/etc...
 
   01 Jun 2013; Pacho Ramos <pacho@gentoo.org> -minbif-1.0.1.ebuild,
   -minbif-1.0.3.ebuild, -minbif-1.0.4.ebuild, metadata.xml:





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

end of thread, other threads:[~2014-01-08  6:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-24 17:43 [gentoo-commits] gentoo-x86 commit in net-im/minbif: minbif-1.0.5.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-03 16:04 Markos Chandras (hwoarang)
2012-08-21  8:39 Johannes Huber (johu)
2014-01-08  6:41 Mike Frysinger (vapier)

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