public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: ChangeLog thttpd-2.26.4-r1.ebuild
@ 2012-08-08 13:24 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-08 13:24 UTC (permalink / raw
  To: gentoo-commits

blueness    12/08/08 13:24:58

  Modified:             ChangeLog thttpd-2.26.4-r1.ebuild
  Log:
  Fix THTTPD_DOCROOT
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.47                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	5 Aug 2012 15:50:57 -0000	1.46
+++ ChangeLog	8 Aug 2012 13:24:57 -0000	1.47
@@ -1,12 +1,16 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.46 2012/08/05 15:50:57 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.47 2012/08/08 13:24:57 blueness Exp $
+
+  08 Aug 2012; Anthony G. Basile <blueness@gentoo.org> thttpd-2.26.4-r1.ebuild,
+  files/thttpd.conf.sample, files/thttpd.confd, files/thttpd.confd.1:
+  Fix THTTPD_DOCROOT
 
 *thttpd-2.26.4-r1 (05 Aug 2012)
 
   05 Aug 2012; Anthony G. Basile <blueness@gentoo.org> -thttpd-2.26.4.ebuild,
   +thttpd-2.26.4-r1.ebuild:
-  Move distribution's htdocs to doc dir, bug #429632
+  Move htdocs to docdir, bug #429632
 
 *thttpd-2.26.4 (13 Jul 2012)
 



1.2                  www-servers/thttpd/thttpd-2.26.4-r1.ebuild

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

Index: thttpd-2.26.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- thttpd-2.26.4-r1.ebuild	5 Aug 2012 15:50:57 -0000	1.1
+++ thttpd-2.26.4-r1.ebuild	8 Aug 2012 13:24:57 -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/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.1 2012/08/05 15:50:57 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.2 2012/08/08 13:24:57 blueness Exp $
 
 EAPI="4"
 
@@ -21,9 +21,11 @@
 RDEPEND=""
 DEPEND=""
 
+WEBROOT="/var/www/localhost"
+
 THTTPD_USER=thttpd
 THTTPD_GROUP=thttpd
-THTTPD_DOCROOT="${EPREFIX}/var/www/localhost/htdocs"
+THTTPD_DOCROOT="${EPREFIX}${WEBROOT}/htdocs"
 
 DOCS=( README TODO )
 
@@ -49,12 +51,13 @@
 	insinto /etc/thttpd
 	doins "${FILESDIR}"/thttpd.conf.sample
 
+	#move htdocs to docdir, bug #429632
 	docompress -x /usr/share/doc/"${PF}"/htdocs.dist
-
-	mv "${ED}"/var/www/localhost/htdocs \
+	mv "${ED}"${WEBROOT}/htdocs \
 		"${ED}"/usr/share/doc/"${PF}"/htdocs.dist
+	mkdir "${ED}"${WEBROOT}/htdocs
 
-	mkdir "${ED}"/var/www/localhost/htdocs
+	keepdir ${WEBROOT}/htdocs
 }
 
 pkg_postinst() {
@@ -62,7 +65,6 @@
 		|| die "Failed chown makeweb"
 	chmod 2751 "${EROOT}/usr/sbin/makeweb" \
 		|| die "Failed chmod makeweb"
-	chmod 755 "${THTTPD_DOCROOT}/cgi-bin/printenv" \
+	chmod 755 "${EROOT}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" \
 		|| die "Failed chmod printenv"
-	elog "Adjust THTTPD_DOCROOT in /etc/conf.d/thttpd !"
 }





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: ChangeLog thttpd-2.26.4-r1.ebuild
@ 2012-11-06 17:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-06 17:07 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/06 17:07:25

  Modified:             ChangeLog thttpd-2.26.4-r1.ebuild
  Log:
  Stable for amd64, wrt bug #441548
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	3 Nov 2012 18:22:48 -0000	1.50
+++ ChangeLog	6 Nov 2012 17:07:25 -0000	1.51
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.50 2012/11/03 18:22:48 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.51 2012/11/06 17:07:25 ago Exp $
+
+  06 Nov 2012; <ago@gentoo.org> thttpd-2.26.4-r1.ebuild:
+  Stable for amd64, wrt bug #441548
 
   03 Nov 2012; Anthony G. Basile <blueness@gentoo.org> thttpd-2.26.4-r1.ebuild:
   stable arm, bug #441548



1.6                  www-servers/thttpd/thttpd-2.26.4-r1.ebuild

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

Index: thttpd-2.26.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- thttpd-2.26.4-r1.ebuild	3 Nov 2012 18:22:48 -0000	1.5
+++ thttpd-2.26.4-r1.ebuild	6 Nov 2012 17:07:25 -0000	1.6
@@ -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/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.5 2012/11/03 18:22:48 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.6 2012/11/06 17:07:25 ago Exp $
 
 EAPI="4"
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~hppa ~mips ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=""





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: ChangeLog thttpd-2.26.4-r1.ebuild
@ 2012-11-21 10:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-21 10:14 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/21 10:14:17

  Modified:             ChangeLog thttpd-2.26.4-r1.ebuild
  Log:
  Stable for x86, wrt bug #441548
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.52                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	6 Nov 2012 17:07:25 -0000	1.51
+++ ChangeLog	21 Nov 2012 10:14:17 -0000	1.52
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.51 2012/11/06 17:07:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.52 2012/11/21 10:14:17 ago Exp $
+
+  21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> thttpd-2.26.4-r1.ebuild:
+  Stable for x86, wrt bug #441548
 
   06 Nov 2012; <ago@gentoo.org> thttpd-2.26.4-r1.ebuild:
   Stable for amd64, wrt bug #441548



1.7                  www-servers/thttpd/thttpd-2.26.4-r1.ebuild

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

Index: thttpd-2.26.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- thttpd-2.26.4-r1.ebuild	6 Nov 2012 17:07:25 -0000	1.6
+++ thttpd-2.26.4-r1.ebuild	21 Nov 2012 10:14:17 -0000	1.7
@@ -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/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.6 2012/11/06 17:07:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.7 2012/11/21 10:14:17 ago Exp $
 
 EAPI="4"
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=""





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

* [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: ChangeLog thttpd-2.26.4-r1.ebuild
@ 2013-12-20  0:56 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-12-20  0:56 UTC (permalink / raw
  To: gentoo-commits

blueness    13/12/20 00:56:15

  Modified:             ChangeLog
  Removed:              thttpd-2.26.4-r1.ebuild
  Log:
  Remove older stable version
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.67                 www-servers/thttpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	20 Dec 2013 00:52:37 -0000	1.66
+++ ChangeLog	20 Dec 2013 00:56:14 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/thttpd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.66 2013/12/20 00:52:37 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.67 2013/12/20 00:56:14 blueness Exp $
+
+  20 Dec 2013; Anthony G. Basile <blueness@gentoo.org> -thttpd-2.26.4-r1.ebuild:
+  Remove older stable version
 
   20 Dec 2013; Anthony G. Basile <blueness@gentoo.org> ChangeLog:
   Fix gpg signing of manifest





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

end of thread, other threads:[~2013-12-20  0:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-21 10:14 [gentoo-commits] gentoo-x86 commit in www-servers/thttpd: ChangeLog thttpd-2.26.4-r1.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-20  0:56 Anthony G. Basile (blueness)
2012-11-06 17:07 Agostino Sarubbo (ago)
2012-08-08 13:24 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