public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-servers/gatling: ChangeLog gatling-0.12.ebuild
@ 2010-05-03 18:05 Patrick Lauer (patrick)
  0 siblings, 0 replies; 3+ messages in thread
From: Patrick Lauer (patrick) @ 2010-05-03 18:05 UTC (permalink / raw
  To: gentoo-commits

patrick     10/05/03 18:05:21

  Modified:             ChangeLog
  Added:                gatling-0.12.ebuild
  Log:
  Bump
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  www-servers/gatling/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/gatling/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/gatling/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/gatling/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	4 Nov 2009 08:31:38 -0000	1.4
+++ ChangeLog	3 May 2010 18:05:21 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for www-servers/gatling
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.4 2009/11/04 08:31:38 patrick Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.5 2010/05/03 18:05:21 patrick Exp $
+
+*gatling-0.12 (03 May 2010)
+
+  03 May 2010; Patrick Lauer <patrick@gentoo.org> +gatling-0.12.ebuild:
+  Bump
 
   04 Nov 2009; Patrick Lauer <patrick@gentoo.org> gatling-0.9.ebuild,
   gatling-0.11.ebuild, gatling-0.11-r1.ebuild:



1.1                  www-servers/gatling/gatling-0.12.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?rev=1.1&content-type=text/plain

Index: gatling-0.12.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v 1.1 2010/05/03 18:05:21 patrick Exp $

inherit eutils

DESCRIPTION="High performance web server"
HOMEPAGE="http://www.fefe.de/gatling/"
SRC_URI="http://dl.fefe.de/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

# We still have compile issues with USE=ssl, so it's commented out for now
#IUSE="ssl"
IUSE=""

DEPEND=">=dev-libs/libowfat-0.25
	dev-libs/dietlibc"
	#ssl? ( dev-libs/openssl )
	#"
RDEPEND=""

src_unpack() {
	unpack $A
	cd "${S}"

	epatch "${FILESDIR}/gentoo-vars.patch"
}

src_compile() {
	# FIX ME
	#if use ssl; then
	#	emake tlsgatling || die "emake tlsgatling failed"
	#fi
	emake gatling || die "emake gatling failed"
}

src_install() {
	dobin gatling || die "installing gatling binary failed"
	doman gatling.1 || die "installing manpage failed"
	# FIX ME
	#dobin tlsgatling || die "installing tlsgatling binary failed"

	newconfd "${FILESDIR}/gatling.confd gatling"
	newinitd "${FILESDIR}/gatling.initd gatling"
	dodoc README.{ftp,http} || die "installing docs failed"
}

pkg_setup() {
	ebegin "Creating gatling user and group"
	enewgroup gatling
	enewuser ${PN} -1 -1 /var/www/localhost ${PN}
}






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

* [gentoo-commits] gentoo-x86 commit in www-servers/gatling: ChangeLog gatling-0.12.ebuild
@ 2010-05-30 23:36 Victor Ostorga (vostorga)
  0 siblings, 0 replies; 3+ messages in thread
From: Victor Ostorga (vostorga) @ 2010-05-30 23:36 UTC (permalink / raw
  To: gentoo-commits

vostorga    10/05/30 23:36:32

  Modified:             ChangeLog gatling-0.12.ebuild
  Log:
  Respecting LDFLAGS, fixing pre-stripped files bug #314111
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.6                  www-servers/gatling/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	3 May 2010 18:05:21 -0000	1.5
+++ ChangeLog	30 May 2010 23:36:32 -0000	1.6
@@ -1,6 +1,10 @@
 # ChangeLog for www-servers/gatling
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.5 2010/05/03 18:05:21 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.6 2010/05/30 23:36:32 vostorga Exp $
+
+  30 May 2010; Víctor Ostorga <vostorga@gentoo.org> gatling-0.12.ebuild,
+  +files/gatling-0.12-FLAGS.patch:
+  Respecting LDFLAGS, fixing pre-stripped files bug #314111
 
 *gatling-0.12 (03 May 2010)
 



1.2                  www-servers/gatling/gatling-0.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?r1=1.1&r2=1.2

Index: gatling-0.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gatling-0.12.ebuild	3 May 2010 18:05:21 -0000	1.1
+++ gatling-0.12.ebuild	30 May 2010 23:36:32 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v 1.1 2010/05/03 18:05:21 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v 1.2 2010/05/30 23:36:32 vostorga Exp $
 
 inherit eutils
 
@@ -26,7 +26,7 @@
 	unpack $A
 	cd "${S}"
 
-	epatch "${FILESDIR}/gentoo-vars.patch"
+	epatch "${FILESDIR}/${P}-FLAGS.patch"
 }
 
 src_compile() {






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

* [gentoo-commits] gentoo-x86 commit in www-servers/gatling: ChangeLog gatling-0.12.ebuild
@ 2010-08-13 11:20 Patrick Lauer (patrick)
  0 siblings, 0 replies; 3+ messages in thread
From: Patrick Lauer (patrick) @ 2010-08-13 11:20 UTC (permalink / raw
  To: gentoo-commits

patrick     10/08/13 11:20:01

  Modified:             ChangeLog gatling-0.12.ebuild
  Log:
  Fixing init.d install quoting so it actually does something. Thanks to Sebastian Lechte for noticing the problem. Fixes #332453
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  www-servers/gatling/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	18 Jun 2010 07:27:06 -0000	1.7
+++ ChangeLog	13 Aug 2010 11:20:01 -0000	1.8
@@ -1,6 +1,10 @@
 # ChangeLog for www-servers/gatling
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.7 2010/06/18 07:27:06 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.8 2010/08/13 11:20:01 patrick Exp $
+
+  13 Aug 2010; Patrick Lauer <patrick@gentoo.org> gatling-0.12.ebuild:
+  Fixing init.d install quoting so it actually does something. Thanks to
+  Sebastian Lechte for noticing the problem. Fixes #332453
 
   18 Jun 2010; Patrick Lauer <patrick@gentoo.org> -gatling-0.9.ebuild,
   -gatling-0.11.ebuild, -gatling-0.11-r1.ebuild:



1.3                  www-servers/gatling/gatling-0.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild?r1=1.2&r2=1.3

Index: gatling-0.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gatling-0.12.ebuild	30 May 2010 23:36:32 -0000	1.2
+++ gatling-0.12.ebuild	13 Aug 2010 11:20:01 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v 1.2 2010/05/30 23:36:32 vostorga Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v 1.3 2010/08/13 11:20:01 patrick Exp $
 
 inherit eutils
 
@@ -43,8 +43,8 @@
 	# FIX ME
 	#dobin tlsgatling || die "installing tlsgatling binary failed"
 
-	newconfd "${FILESDIR}/gatling.confd gatling"
-	newinitd "${FILESDIR}/gatling.initd gatling"
+	newconfd "${FILESDIR}/gatling.confd" gatling
+	newinitd "${FILESDIR}/gatling.initd" gatling
 	dodoc README.{ftp,http} || die "installing docs failed"
 }
 






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

end of thread, other threads:[~2010-08-13 11:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-03 18:05 [gentoo-commits] gentoo-x86 commit in www-servers/gatling: ChangeLog gatling-0.12.ebuild Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2010-05-30 23:36 Victor Ostorga (vostorga)
2010-08-13 11:20 Patrick Lauer (patrick)

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