public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2014-10-03 19:30 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 7+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-10-03 19:30 UTC (permalink / raw
  To: gentoo-commits

blueness    14/10/03 19:30:31

  Modified:             ChangeLog
  Added:                thttpd-2.27.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.78                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	10 Aug 2014 20:09:17 -0000	1.77
+++ ChangeLog	3 Oct 2014 19:30:31 -0000	1.78
@@ -1,6 +1,12 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.77 2014/08/10 20:09:17 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.78 2014/10/03 19:30:31 blueness Exp $
+
+*thttpd-2.27.0 (03 Oct 2014)
+
+  03 Oct 2014; Anthony G. Basile <blueness@gentoo.org> +thttpd-2.27.0.ebuild,
+  files/thttpd-renamed-htpasswd.patch:
+  Version bump
 
   10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> thttpd-2.26.4-r2.ebuild,
   thttpd-2.26.4-r3.ebuild, thttpd-9999.ebuild:



1.1                  www-servers/thttpd/thttpd-2.27.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild?rev=1.1&content-type=text/plain

Index: thttpd-2.27.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.1 2014/10/03 19:30:31 blueness Exp $

EAPI="5"

inherit autotools eutils flag-o-matic toolchain-funcs user

if [[ ${PV} = 9999* ]]
then
	EGIT_REPO_URI="git://opensource.dyc.edu/s${PN}.git"
	inherit git-2
	KEYWORDS=""
else
	MY_P="s${P}"
	S="${WORKDIR}/${MY_P}"
	SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
	KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
fi

DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"
HOMEPAGE="http://opensource.dyc.edu/sthttpd"

LICENSE="BSD GPL-2"
SLOT="0"
IUSE=""

RDEPEND=""
DEPEND=""

WEBROOT="/var/www/localhost"

THTTPD_USER=thttpd
THTTPD_GROUP=thttpd
THTTPD_DOCROOT="${EPREFIX}${WEBROOT}/htdocs"

DOCS=( README TODO )

pkg_setup() {
	ebegin "Creating thttpd user and group"
	enewgroup ${THTTPD_GROUP}
	enewuser ${THTTPD_USER} -1 -1 -1 ${THTTPD_GROUP}
}

src_prepare() {
	epatch "${FILESDIR}"/thttpd-renamed-htpasswd.patch
	mv "${S}"/extras/{htpasswd.c,th_htpasswd.c}
	eautoreconf -f -i
}

src_configure() {
	econf WEBDIR=${THTTPD_DOCROOT}
}

src_install () {
	default

	newinitd "${FILESDIR}"/thttpd.init.1 thttpd
	newconfd "${FILESDIR}"/thttpd.confd.1 thttpd

	insinto /etc/logrotate.d
	newins "${FILESDIR}/thttpd.logrotate" thttpd

	insinto /etc/thttpd
	doins "${FILESDIR}"/thttpd.conf.sample

	#move htdocs to docdir, bug #429632
	docompress -x /usr/share/doc/"${PF}"/htdocs.dist
	mv "${ED}"${WEBROOT}/htdocs \
		"${ED}"/usr/share/doc/"${PF}"/htdocs.dist
	mkdir "${ED}"${WEBROOT}/htdocs

	keepdir ${WEBROOT}/htdocs

	chown root:${THTTPD_GROUP} "${ED}/usr/sbin/makeweb" \
		|| die "Failed chown makeweb"
	chmod 2751 "${ED}/usr/sbin/makeweb" \
		|| die "Failed chmod makeweb"
	chmod 755 "${ED}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" \
		|| die "Failed chmod printenv"
}





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2015-01-08 21:09 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2015-01-08 21:09 UTC (permalink / raw
  To: gentoo-commits

maekke      15/01/08 21:09:15

  Modified:             thttpd-2.27.0.ebuild ChangeLog
  Log:
  arm stable, bug #535694
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.2                  www-servers/thttpd/thttpd-2.27.0.ebuild

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

Index: thttpd-2.27.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- thttpd-2.27.0.ebuild	3 Oct 2014 19:30:31 -0000	1.1
+++ thttpd-2.27.0.ebuild	8 Jan 2015 21:09:15 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.1 2014/10/03 19:30:31 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.2 2015/01/08 21:09:15 maekke Exp $
 
 EAPI="5"
 
@@ -15,7 +15,7 @@
 	MY_P="s${P}"
 	S="${WORKDIR}/${MY_P}"
 	SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="~amd64 arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"



1.80                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	3 Oct 2014 19:31:45 -0000	1.79
+++ ChangeLog	8 Jan 2015 21:09:15 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.79 2014/10/03 19:31:45 blueness Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.80 2015/01/08 21:09:15 maekke Exp $
+
+  08 Jan 2015; Markus Meier <maekke@gentoo.org> thttpd-2.27.0.ebuild:
+  arm stable, bug #535694
 
   03 Oct 2014; Anthony G. Basile <blueness@gentoo.org> -thttpd-2.26.4-r2.ebuild:
   Remove older stable version





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2015-01-12 22:54 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 7+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2015-01-12 22:54 UTC (permalink / raw
  To: gentoo-commits

nimiux      15/01/12 22:54:24

  Modified:             thttpd-2.27.0.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #535694
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key F253DB15)

Revision  Changes    Path
1.3                  www-servers/thttpd/thttpd-2.27.0.ebuild

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

Index: thttpd-2.27.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- thttpd-2.27.0.ebuild	8 Jan 2015 21:09:15 -0000	1.2
+++ thttpd-2.27.0.ebuild	12 Jan 2015 22:54:24 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.2 2015/01/08 21:09:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.3 2015/01/12 22:54:24 nimiux Exp $
 
 EAPI="5"
 
@@ -15,7 +15,7 @@
 	MY_P="s${P}"
 	S="${WORKDIR}/${MY_P}"
 	SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
-	KEYWORDS="~amd64 arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="amd64 arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"



1.81                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	8 Jan 2015 21:09:15 -0000	1.80
+++ ChangeLog	12 Jan 2015 22:54:24 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.80 2015/01/08 21:09:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.81 2015/01/12 22:54:24 nimiux Exp $
+
+  12 Jan 2015; Chema Alonso <nimiux@gentoo.org> thttpd-2.27.0.ebuild:
+  Stable for amd64 wrt bug #535694
 
   08 Jan 2015; Markus Meier <maekke@gentoo.org> thttpd-2.27.0.ebuild:
   arm stable, bug #535694





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2015-03-02  9:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:27 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:27:07

  Modified:             thttpd-2.27.0.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #535694
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  www-servers/thttpd/thttpd-2.27.0.ebuild

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

Index: thttpd-2.27.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- thttpd-2.27.0.ebuild	12 Jan 2015 22:54:24 -0000	1.3
+++ thttpd-2.27.0.ebuild	2 Mar 2015 09:27:07 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.3 2015/01/12 22:54:24 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.4 2015/03/02 09:27:07 ago Exp $
 
 EAPI="5"
 
@@ -15,7 +15,7 @@
 	MY_P="s${P}"
 	S="${WORKDIR}/${MY_P}"
 	SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
-	KEYWORDS="amd64 arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="amd64 arm ~hppa ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"



1.82                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	12 Jan 2015 22:54:24 -0000	1.81
+++ ChangeLog	2 Mar 2015 09:27:07 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.81 2015/01/12 22:54:24 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.82 2015/03/02 09:27:07 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> thttpd-2.27.0.ebuild:
+  Stable for ppc, wrt bug #535694
 
   12 Jan 2015; Chema Alonso <nimiux@gentoo.org> thttpd-2.27.0.ebuild:
   Stable for amd64 wrt bug #535694





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2015-03-02 17:21 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 7+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2015-03-02 17:21 UTC (permalink / raw
  To: gentoo-commits

nimiux      15/03/02 17:21:17

  Modified:             thttpd-2.27.0.ebuild ChangeLog
  Log:
  Add missing || die (bug #535694 comment #4
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key F253DB15)

Revision  Changes    Path
1.5                  www-servers/thttpd/thttpd-2.27.0.ebuild

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

Index: thttpd-2.27.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- thttpd-2.27.0.ebuild	2 Mar 2015 09:27:07 -0000	1.4
+++ thttpd-2.27.0.ebuild	2 Mar 2015 17:21:17 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.4 2015/03/02 09:27:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.5 2015/03/02 17:21:17 nimiux Exp $
 
 EAPI="5"
 
@@ -44,7 +44,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/thttpd-renamed-htpasswd.patch
-	mv "${S}"/extras/{htpasswd.c,th_htpasswd.c}
+	mv "${S}"/extras/{htpasswd.c,th_htpasswd.c} || die
 	eautoreconf -f -i
 }
 
@@ -67,8 +67,8 @@
 	#move htdocs to docdir, bug #429632
 	docompress -x /usr/share/doc/"${PF}"/htdocs.dist
 	mv "${ED}"${WEBROOT}/htdocs \
-		"${ED}"/usr/share/doc/"${PF}"/htdocs.dist
-	mkdir "${ED}"${WEBROOT}/htdocs
+		"${ED}"/usr/share/doc/"${PF}"/htdocs.dist || die
+	mkdir "${ED}"${WEBROOT}/htdocs || die
 
 	keepdir ${WEBROOT}/htdocs
 



1.83                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	2 Mar 2015 09:27:07 -0000	1.82
+++ ChangeLog	2 Mar 2015 17:21:17 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.82 2015/03/02 09:27:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.83 2015/03/02 17:21:17 nimiux Exp $
+
+  02 Mar 2015; Chema Alonso <nimiux@gentoo.org> thttpd-2.27.0.ebuild:
+  Add missing || die (bug #535694 comment #4
 
   02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> thttpd-2.27.0.ebuild:
   Stable for ppc, wrt bug #535694





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2015-04-26  6:58 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2015-04-26  6:58 UTC (permalink / raw
  To: gentoo-commits

jer         15/04/26 06:58:24

  Modified:             thttpd-2.27.0.ebuild ChangeLog
  Log:
  Stable for PPC64 (bug #535694).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.7                  www-servers/thttpd/thttpd-2.27.0.ebuild

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

Index: thttpd-2.27.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- thttpd-2.27.0.ebuild	19 Apr 2015 09:46:51 -0000	1.6
+++ thttpd-2.27.0.ebuild	26 Apr 2015 06:58:23 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.6 2015/04/19 09:46:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.7 2015/04/26 06:58:23 jer Exp $
 
 EAPI="5"
 
@@ -10,12 +10,12 @@
 then
 	EGIT_REPO_URI="git://opensource.dyc.edu/s${PN}.git"
 	inherit git-2
-	KEYWORDS=""
+	KEYWORDS="ppc64"
 else
 	MY_P="s${P}"
 	S="${WORKDIR}/${MY_P}"
 	SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
-	KEYWORDS="amd64 arm ~hppa ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"



1.85                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	19 Apr 2015 09:46:51 -0000	1.84
+++ ChangeLog	26 Apr 2015 06:58:23 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.84 2015/04/19 09:46:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.85 2015/04/26 06:58:23 jer Exp $
+
+  26 Apr 2015; Jeroen Roovers <jer@gentoo.org> thttpd-2.27.0.ebuild:
+  Stable for PPC64 (bug #535694).
 
   19 Apr 2015; Pacho Ramos <pacho@gentoo.org> thttpd-2.27.0.ebuild:
   x86 stable wrt bug #535694





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog
@ 2015-06-02  5:18 Jack Morgan (jmorgan)
  0 siblings, 0 replies; 7+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-06-02  5:18 UTC (permalink / raw
  To: gentoo-commits

jmorgan     15/06/02 05:18:52

  Modified:             thttpd-2.27.0.ebuild ChangeLog
  Log:
  sparc stable wrt bug #535694
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key )

Revision  Changes    Path
1.8                  www-servers/thttpd/thttpd-2.27.0.ebuild

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

Index: thttpd-2.27.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- thttpd-2.27.0.ebuild	26 Apr 2015 06:58:23 -0000	1.7
+++ thttpd-2.27.0.ebuild	2 Jun 2015 05:18:52 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.7 2015/04/26 06:58:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.27.0.ebuild,v 1.8 2015/06/02 05:18:52 jmorgan Exp $
 
 EAPI="5"
 
@@ -10,12 +10,12 @@
 then
 	EGIT_REPO_URI="git://opensource.dyc.edu/s${PN}.git"
 	inherit git-2
-	KEYWORDS="ppc64"
+	KEYWORDS="ppc64 sparc"
 else
 	MY_P="s${P}"
 	S="${WORKDIR}/${MY_P}"
 	SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
-	KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"



1.86                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	26 Apr 2015 06:58:23 -0000	1.85
+++ ChangeLog	2 Jun 2015 05:18:52 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.85 2015/04/26 06:58:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.86 2015/06/02 05:18:52 jmorgan Exp $
+
+  02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> thttpd-2.27.0.ebuild:
+  sparc stable wrt bug #535694
 
   26 Apr 2015; Jeroen Roovers <jer@gentoo.org> thttpd-2.27.0.ebuild:
   Stable for PPC64 (bug #535694).





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

end of thread, other threads:[~2015-06-02  5:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-08 21:09 [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: thttpd-2.27.0.ebuild ChangeLog Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-02  5:18 Jack Morgan (jmorgan)
2015-04-26  6:58 Jeroen Roovers (jer)
2015-03-02 17:21 JosA MarAa Alonso (nimiux)
2015-03-02  9:27 Agostino Sarubbo (ago)
2015-01-12 22:54 JosA MarAa Alonso (nimiux)
2014-10-03 19:30 Anthony G. Basile (blueness)

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