public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: pure-ftpd-1.0.29.ebuild ChangeLog
@ 2010-03-19 10:16 Bernard Cafarelli (voyageur)
  0 siblings, 0 replies; 3+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2010-03-19 10:16 UTC (permalink / raw
  To: gentoo-commits

voyageur    10/03/19 10:16:33

  Modified:             ChangeLog
  Added:                pure-ftpd-1.0.29.ebuild
  Log:
  Version bump by Polynomial-C, bug #310177
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.86                 net-ftp/pure-ftpd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	17 Feb 2010 12:34:58 -0000	1.85
+++ ChangeLog	19 Mar 2010 10:16:32 -0000	1.86
@@ -1,6 +1,12 @@
 # ChangeLog for net-ftp/pure-ftpd
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.85 2010/02/17 12:34:58 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.86 2010/03/19 10:16:32 voyageur Exp $
+
+*pure-ftpd-1.0.29 (19 Mar 2010)
+
+  19 Mar 2010; Bernard Cafarelli <voyageur@gentoo.org>
+  +pure-ftpd-1.0.29.ebuild, files/pure-ftpd.rc7:
+  Version bump by Polynomial-C, bug #310177
 
 *pure-ftpd-1.0.28 (17 Feb 2010)
 



1.1                  net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?rev=1.1&content-type=text/plain

Index: pure-ftpd-1.0.29.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v 1.1 2010/03/19 10:16:32 voyageur Exp $

EAPI=2
inherit eutils confutils flag-o-matic

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"

DESCRIPTION="Fast, production-quality, standard-conformant FTP server."
HOMEPAGE="http://www.pureftpd.org/"
SRC_URI="ftp://ftp.pureftpd.org/pub/${PN}/releases/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"

IUSE="anondel anonperm anonren anonres caps charconv ldap mysql noiplog pam paranoidmsg postgres selinux ssl vchroot xinetd"

DEPEND="caps? ( sys-libs/libcap )
		charconv? ( virtual/libiconv )
		ldap? ( >=net-nds/openldap-2.0.25 )
		mysql? ( virtual/mysql )
		pam? ( virtual/pam )
		postgres? ( virtual/postgresql-base )
		ssl? ( >=dev-libs/openssl-0.9.6g )
		xinetd? ( virtual/inetd )"

RDEPEND="${DEPEND}
		net-ftp/ftpbase
		selinux? ( sec-policy/selinux-ftpd )"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.0.28-pam.patch
}

src_configure() {
	# adjust max user length to something more appropriate
	# for virtual hosts. See bug #62472 for details.
	sed -e "s:# define MAX_USER_LENGTH 32U:# define MAX_USER_LENGTH 127U:" -i "${S}/src/ftpd.h" || die "sed failed"

	local my_conf=""

	# Let's configure the USE-enabled stuff
	enable_extension_without	"capabilities"	"caps"
	enable_extension_with		"rfc2640"		"charconv"		0
	enable_extension_with		"ldap"			"ldap"			0
	enable_extension_with		"mysql"			"mysql"			0
	enable_extension_with		"pam"			"pam"			0
	enable_extension_with		"paranoidmsg"	"paranoidmsg"	0
	enable_extension_with		"pgsql"			"postgres"		0
	enable_extension_with		"tls"			"ssl"			0
	enable_extension_with		"virtualchroot"	"vchroot"		0
	enable_extension_without	"inetd"			"xinetd"

	# noiplog is a negative flag, we don't want that enabled by default,
	# so we handle it manually, as confutils can't do that
	use noiplog && my_conf="${my_conf} --without-iplogging"

	# Those features are only configurable like this, see bug #179375.
	use anondel && append-cppflags -DANON_CAN_DELETE
	use anonperm && append-cppflags -DANON_CAN_CHANGE_PERMS
	use anonren && append-cppflags -DANON_CAN_RENAME
	use anonres && append-cppflags -DANON_CAN_RESUME

	econf \
		--with-altlog \
		--with-cookie \
		--with-diraliases \
		--with-extauth \
		--with-ftpwho \
		--with-language=${PUREFTPD_LANG:=english} \
		--with-peruserlimits \
		--with-privsep \
		--with-puredb \
		--with-quotas \
		--with-ratios \
		--with-throttling \
		--with-uploadscript \
		--with-virtualhosts \
		--enable-largefile \
		${my_conf} || die "econf failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc AUTHORS CONTACT ChangeLog FAQ HISTORY INSTALL README* NEWS

	newconfd "${FILESDIR}/pure-ftpd.conf_d" pure-ftpd

	newinitd "${FILESDIR}/pure-ftpd.rc7" pure-ftpd

	if use xinetd ; then
		insinto /etc/xinetd.d
		newins "${FILESDIR}/pure-ftpd.xinetd" pure-ftpd
	fi

	if use ldap ; then
		insinto /etc/openldap/schema
		doins pureftpd.schema
		insinto /etc/openldap
		insopts -m 0600
		doins pureftpd-ldap.conf
	fi
}

pkg_postinst() {
	elog
	elog "Before starting Pure-FTPd, you have to edit the /etc/conf.d/pure-ftpd file!"
	elog
	ewarn "It's *really* important to read the README provided with Pure-FTPd!"
	ewarn "Check out http://download.pureftpd.org/pub/pure-ftpd/doc/README for general info"
	ewarn "and http://download.pureftpd.org/pub/pure-ftpd/doc/README.TLS for SSL/TLS info."
	ewarn
	if use charconv ; then
		ewarn "Charset conversion is an *experimental* feature!"
		ewarn "Remember to set a valid charset for your filesystem in the configuration!"
	fi
}






^ permalink raw reply	[flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: pure-ftpd-1.0.29.ebuild ChangeLog
@ 2010-03-22 19:41 Bernard Cafarelli (voyageur)
  0 siblings, 0 replies; 3+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2010-03-22 19:41 UTC (permalink / raw
  To: gentoo-commits

voyageur    10/03/22 19:41:46

  Modified:             pure-ftpd-1.0.29.ebuild ChangeLog
  Log:
  Revert rc7 init script changes for 1.0.28 stable request, create rc8 for 1.0.29, spotted by Polynomial-C
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?r1=1.1&r2=1.2

Index: pure-ftpd-1.0.29.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pure-ftpd-1.0.29.ebuild	19 Mar 2010 10:16:32 -0000	1.1
+++ pure-ftpd-1.0.29.ebuild	22 Mar 2010 19:41:45 -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/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v 1.1 2010/03/19 10:16:32 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v 1.2 2010/03/22 19:41:45 voyageur Exp $
 
 EAPI=2
 inherit eutils confutils flag-o-matic
@@ -88,7 +88,7 @@
 
 	newconfd "${FILESDIR}/pure-ftpd.conf_d" pure-ftpd
 
-	newinitd "${FILESDIR}/pure-ftpd.rc7" pure-ftpd
+	newinitd "${FILESDIR}/pure-ftpd.rc8" pure-ftpd
 
 	if use xinetd ; then
 		insinto /etc/xinetd.d



1.88                 net-ftp/pure-ftpd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	21 Mar 2010 13:19:55 -0000	1.87
+++ ChangeLog	22 Mar 2010 19:41:45 -0000	1.88
@@ -1,6 +1,11 @@
 # ChangeLog for net-ftp/pure-ftpd
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.87 2010/03/21 13:19:55 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.88 2010/03/22 19:41:45 voyageur Exp $
+
+  22 Mar 2010; Bernard Cafarelli <voyageur@gentoo.org>
+  pure-ftpd-1.0.29.ebuild, files/pure-ftpd.rc7, +files/pure-ftpd.rc8:
+  Revert rc7 init script changes for 1.0.28 stable request, create rc8 for
+  1.0.29, spotted by Polynomial-C
 
   21 Mar 2010; Brent Baude <ranger@gentoo.org> pure-ftpd-1.0.28.ebuild:
   Marking pure-ftpd-1.0.28 ppc64 for bug 296166






^ permalink raw reply	[flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: pure-ftpd-1.0.29.ebuild ChangeLog
@ 2010-07-17 12:22 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler (polynomial-c) @ 2010-07-17 12:22 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    10/07/17 12:22:29

  Modified:             pure-ftpd-1.0.29.ebuild ChangeLog
  Log:
  Added a new init script which should wrk with both baselayout-1 and openrc.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild?r1=1.3&r2=1.4

Index: pure-ftpd-1.0.29.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pure-ftpd-1.0.29.ebuild	17 Jun 2010 20:46:52 -0000	1.3
+++ pure-ftpd-1.0.29.ebuild	17 Jul 2010 12:22:29 -0000	1.4
@@ -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/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v 1.3 2010/06/17 20:46:52 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.29.ebuild,v 1.4 2010/07/17 12:22:29 polynomial-c Exp $
 
 EAPI=2
 inherit eutils confutils flag-o-matic
@@ -88,7 +88,7 @@
 
 	newconfd "${FILESDIR}/pure-ftpd.conf_d" pure-ftpd
 
-	newinitd "${FILESDIR}/pure-ftpd.rc8" pure-ftpd
+	newinitd "${FILESDIR}/pure-ftpd.rc9" pure-ftpd
 
 	if use xinetd ; then
 		insinto /etc/xinetd.d



1.96                 net-ftp/pure-ftpd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?r1=1.95&r2=1.96

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	17 Jul 2010 08:59:46 -0000	1.95
+++ ChangeLog	17 Jul 2010 12:22:29 -0000	1.96
@@ -1,6 +1,12 @@
 # ChangeLog for net-ftp/pure-ftpd
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.95 2010/07/17 08:59:46 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.96 2010/07/17 12:22:29 polynomial-c Exp $
+
+  17 Jul 2010; Lars Wendler <polynomial-c@gentoo.org>
+  pure-ftpd-1.0.29.ebuild, +files/pure-ftpd.rc9:
+  Added a new init script which should wrk with both baselayout-1 and
+  openrc. Keep the old (now unused) init script for a while until we can be
+  sure the new one causes no regressions.
 
   17 Jul 2010; Lars Wendler <polynomial-c@gentoo.org>
   -pure-ftpd-1.0.21-r1.ebuild, -files/pure-ftpd-1.0.21-pam.patch,






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

end of thread, other threads:[~2010-07-17 12:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-19 10:16 [gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: pure-ftpd-1.0.29.ebuild ChangeLog Bernard Cafarelli (voyageur)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-22 19:41 Bernard Cafarelli (voyageur)
2010-07-17 12:22 Lars Wendler (polynomial-c)

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