[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/, net-ftp/oftpd/files/, profiles/

2020-02-21 Thread Michał Górny
commit: 4467523b993d7c34e66bc2a5bdd09d891ff69103
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 21 19:14:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 21 19:14:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4467523b

net-ftp/oftpd: Remove last-rited pkg

Closes: https://bugs.gentoo.org/426028
Signed-off-by: Michał Górny  gentoo.org>

 net-ftp/oftpd/Manifest |   2 -
 net-ftp/oftpd/files/conf.d.oftpd-r7|  26 --
 net-ftp/oftpd/files/init.d.oftpd-r7|  28 --
 .../oftpd/files/oftpd-0.3.7-delay-root-check.patch |  30 --
 net-ftp/oftpd/files/oftpd-0.3.7-error-output.patch |  20 --
 net-ftp/oftpd/files/oftpd-0.3.7-family-1.patch |  23 --
 net-ftp/oftpd/files/oftpd-0.3.7-htons.patch|  16 -
 .../oftpd-0.3.7-ipv6rel2-0.3.6-to-0.3.7.patch  | 354 -
 .../oftpd/files/oftpd-0.3.7-pthread-cancel.patch   |  17 -
 net-ftp/oftpd/files/oftpd-0.3.7-unistd.patch   |  19 --
 net-ftp/oftpd/metadata.xml |   5 -
 net-ftp/oftpd/oftpd-0.3.7-r10.ebuild   |  51 ---
 profiles/package.mask  |   5 -
 13 files changed, 596 deletions(-)

diff --git a/net-ftp/oftpd/Manifest b/net-ftp/oftpd/Manifest
deleted file mode 100644
index 8ab1fdb6994..000
--- a/net-ftp/oftpd/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST oftpd-0.3.6-ipv6rel2.patch.gz 12478 BLAKE2B 
1d367979261fff05bdfa22201cf06ae537d7bc7cd656708cd2c672b8c437ec8b42d94c84c387ee450da140feab4af98e4601a1126077acdd93959284a28548b2
 SHA512 
76d12b82424a9a338f151534df55310511d3138a1e80851e6ebb8f4a841cd075892ab1a02851d871772a2229c107ec35de2d5fb3572c72207a65629e10e55dba
-DIST oftpd-0.3.7.tar.gz 97364 BLAKE2B 
4fef7204d905d248f5fbf1e641d015c0549dfcc08b0ad98ac3557250ca91dda2e25d0aaffe09c9d68d47318b977a637f693e5bbd359c20e894a656a412fccf59
 SHA512 
36bfd15dbe84043aee9678acbcc2c1312091887b381bee36a6a57f2516a5ec742a1733bf570c7cc71aaa28bd053d686976e6bfd549443a8bb398f8176db1a6a8

diff --git a/net-ftp/oftpd/files/conf.d.oftpd-r7 
b/net-ftp/oftpd/files/conf.d.oftpd-r7
deleted file mode 100644
index a8daed0f4f5..000
--- a/net-ftp/oftpd/files/conf.d.oftpd-r7
+++ /dev/null
@@ -1,26 +0,0 @@
-# Please read the oftpd(8) man page for a more detailed explaination of these
-# variables.
-#
-# FTPUSER (user-name in the man page):
-# Set this variable to the user to run the ftp daemon as
-FTPUSER=ftp
-
-# FTPROOT (root-directory in the man page):
-# The server uses chroot(2) to change the root directory of the server to this
-# directory. When a user connects, this is the directory that they  will start
-# in, and is the top of their directory tree.
-#
-FTPROOT=/home/ftp
-
-# FTPPORT (TCP port)
-# 21 is the standard ftp port, but you can change it here to something else
-FTPPORT=21
-
-## Uncoment this line to activate oftpd service
-# Note: in order for passive connections to work, you must specify an IP 
address
-# here with the -i flag.  You can make it listen to all IPv4 addresses:
-#  -i 0.0.0.0
-# or make it listen to all IPv6 addresses:
-#  -i ::1
-# By default, oftpd listens to all IPv4/IPv6 addresses, but passive mode fails.
-#OFTPD_OPTS="-p ${FTPPORT} ${FTPUSER} ${FTPROOT}"

diff --git a/net-ftp/oftpd/files/init.d.oftpd-r7 
b/net-ftp/oftpd/files/init.d.oftpd-r7
deleted file mode 100644
index 3a395c83712..000
--- a/net-ftp/oftpd/files/init.d.oftpd-r7
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-   need net
-}
-
-checkconfig() {
-   if [ -z "${OFTPD_OPTS}" ] ; then
-   eerror "You need to setup OFTPD_OPTS /etc/conf.d/oftpd"
-   return 1
-   fi
-}
-
-start() {
-   checkconfig || return 1
-
-   ebegin "Starting oftpd"
-   start-stop-daemon --start --exec /usr/sbin/oftpd -- 
${OFTPD_OPTS}
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping oftpd"
-   start-stop-daemon --stop --quiet --exec /usr/sbin/oftpd
-   eend $?
-}

diff --git a/net-ftp/oftpd/files/oftpd-0.3.7-delay-root-check.patch 
b/net-ftp/oftpd/files/oftpd-0.3.7-delay-root-check.patch
deleted file mode 100644
index 56ab51e4d6c..000
--- a/net-ftp/oftpd/files/oftpd-0.3.7-delay-root-check.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-check for root after processing args so non-root can run --help
-
 a/src/oftpd.c
-+++ b/src/oftpd.c
-@@ -56,12 +56,6 @@ int main(int argc, char *argv[])
- exe_name = argv[0];
- }
- 
--/* verify we're running as root */
--if (geteuid() != 0) {
--fprintf(stderr, "%s: program needs root permission to run\n", 
exe_name);
--exit(1);
--}
--
- /* default command-line arguments */
- port = FTP_PORT;
- user_ptr = NULL;
-@@ -187,6 +181,12 @@ int main(int argc, char *argv[])
- exit(1);
- }
- 
-+/* verify we're 

[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-05-20 Thread Johannes Huber
commit: c626dc0aff41cfbdc424bb6b156561c3dfcd88ad
Author: Johannes Huber  gentoo  org>
AuthorDate: Sun May 20 12:44:08 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sun May 20 12:45:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c626dc0a

net-ftp/oftpd: Remove 0.3.7-r9

Uses deprecated EAPI 4 and overshadowed by 0.3.7-r10.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 net-ftp/oftpd/oftpd-0.3.7-r9.ebuild | 49 -
 1 file changed, 49 deletions(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r9.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r9.ebuild
deleted file mode 100644
index 510f2bb03cf..000
--- a/net-ftp/oftpd/oftpd-0.3.7-r9.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils
-
-DESCRIPTION="Secure, small, anonymous only ftpd"
-HOMEPAGE="http://www.time-travellers.org/oftpd;
-SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
-   
ftp://ftp.deepspace6.net/pub/ds6/sources/${PN}/${PN}-0.3.6-ipv6rel2.patch.gz;
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86"
-IUSE="ipv6"
-
-DEPEND="net-ftp/ftpbase"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   cd "${WORKDIR}" || die
-   epatch "${FILESDIR}"/oftpd-0.3.7-ipv6rel2-0.3.6-to-0.3.7.patch
-
-   cd "${S}" || die
-   epatch "${WORKDIR}"/${PN}-0.3.6-ipv6rel2.patch
-   epatch "${FILESDIR}"/${PN}-0.3.7-delay-root-check.patch
-
-   # Don't crash when using an unsupported address family, #159178.
-   # updated in bug #157005
-   epatch "${FILESDIR}"/${P}-family-1.patch
-
-   # htons patch #371963
-   epatch "${FILESDIR}"/${P}-htons.patch
-
-   epatch "${FILESDIR}"/${P}-unistd.patch
-   eautoreconf
-}
-
-src_configure() {
-   econf --bindir=/usr/sbin $(use_enable ipv6)
-}
-
-src_install() {
-   default
-   keepdir /home/ftp
-   newinitd "${FILESDIR}"/init.d.oftpd-r7 oftpd
-   newconfd "${FILESDIR}"/conf.d.oftpd-r7 oftpd
-}



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-05-20 Thread Johannes Huber
commit: 0ac2e8dcc32a7774c2698b588d9ab4fd6699535c
Author: Johannes Huber  gentoo  org>
AuthorDate: Sun May 20 12:43:23 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sun May 20 12:45:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ac2e8dc

net-ftp/oftpd: Remove 0.3.7-r8

Uses deprecated EAPI 4 and overshadowed by 0.3.7-r10.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 net-ftp/oftpd/oftpd-0.3.7-r8.ebuild | 48 -
 1 file changed, 48 deletions(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r8.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r8.ebuild
deleted file mode 100644
index 431e783eb9b..000
--- a/net-ftp/oftpd/oftpd-0.3.7-r8.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils
-
-DESCRIPTION="Secure, small, anonymous only ftpd"
-HOMEPAGE="http://www.time-travellers.org/oftpd;
-SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
-   
ftp://ftp.deepspace6.net/pub/ds6/sources/${PN}/${PN}-0.3.6-ipv6rel2.patch.gz;
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86"
-IUSE="ipv6"
-
-DEPEND="net-ftp/ftpbase"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   cd "${WORKDIR}" || die
-   epatch "${FILESDIR}"/oftpd-0.3.7-ipv6rel2-0.3.6-to-0.3.7.patch
-
-   cd "${S}" || die
-   epatch "${WORKDIR}"/${PN}-0.3.6-ipv6rel2.patch
-
-   # Don't crash when using an unsupported address family, #159178.
-   # updated in bug #157005
-   epatch "${FILESDIR}"/${P}-family-1.patch
-
-   # htons patch #371963
-   epatch "${FILESDIR}"/${P}-htons.patch
-
-   epatch "${FILESDIR}"/${P}-unistd.patch
-   eautoreconf
-}
-
-src_configure() {
-   econf --bindir=/usr/sbin $(use_enable ipv6)
-}
-
-src_install() {
-   default
-   keepdir /home/ftp
-   newinitd "${FILESDIR}"/init.d.oftpd-r7 oftpd
-   newconfd "${FILESDIR}"/conf.d.oftpd-r7 oftpd
-}



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-05-09 Thread Mikle Kolyada
commit: 3e783acfab0598abe005705495d80d5986f90327
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed May  9 10:56:53 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed May  9 10:57:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e783acf

net-ftp/oftpd: ppc/sh stable wrt bug #648398

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-ftp/oftpd/oftpd-0.3.7-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
index b1c5b9e701c..b8a810ca188 100644
--- a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
+++ b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc ppc64 ~sh sparc x86"
+KEYWORDS="amd64 arm ppc ppc64 sh sparc x86"
 IUSE="ipv6"
 
 DEPEND="net-ftp/ftpbase"



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-05-09 Thread Mikle Kolyada
commit: 4f5fa2bfface1c8a856d2fd5f9e9f8cc2d49e176
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed May  9 10:57:35 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed May  9 10:57:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f5fa2bf

net-ftp/oftpd: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-ftp/oftpd/oftpd-0.3.7-r7.ebuild | 45 -
 1 file changed, 45 deletions(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r7.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r7.ebuild
deleted file mode 100644
index d898a4dba66..000
--- a/net-ftp/oftpd/oftpd-0.3.7-r7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit autotools eutils
-
-DESCRIPTION="Secure, small, anonymous only ftpd"
-HOMEPAGE="http://www.time-travellers.org/oftpd;
-SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
-   
ftp://ftp.deepspace6.net/pub/ds6/sources/${PN}/${PN}-0.3.6-ipv6rel2.patch.gz;
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 sh sparc x86"
-IUSE="ipv6"
-
-DEPEND="net-ftp/ftpbase"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   cd "${WORKDIR}" || die
-   epatch "${FILESDIR}"/oftpd-0.3.7-ipv6rel2-0.3.6-to-0.3.7.patch
-
-   cd "${S}" || die
-   epatch "${WORKDIR}"/${PN}-0.3.6-ipv6rel2.patch
-
-   # Don't crash when using an unsupported address family, #159178.
-   # updated in bug #157005
-   epatch "${FILESDIR}"/${P}-family-1.patch
-
-   eautoreconf
-}
-
-src_configure() {
-   econf --bindir=/usr/sbin $(use_enable ipv6)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc AUTHORS BUGS FAQ NEWS README TODO || die
-   keepdir /home/ftp
-   newinitd "${FILESDIR}"/init.d.oftpd-r7 oftpd || die
-   newconfd "${FILESDIR}"/conf.d.oftpd-r7 oftpd || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-04-21 Thread Mikle Kolyada
commit: 43e0006e023d0168881d6512c612cc4cf84c2bd1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Apr 21 18:59:28 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Apr 21 18:59:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e0006e

net-ftp/oftpd: arm stable wrt bug #648398

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-ftp/oftpd/oftpd-0.3.7-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
index ac5e5c1b08e..b1c5b9e701c 100644
--- a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
+++ b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ppc64 ~sh sparc x86"
+KEYWORDS="amd64 arm ~ppc ppc64 ~sh sparc x86"
 IUSE="ipv6"
 
 DEPEND="net-ftp/ftpbase"



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-04-07 Thread Sergei Trofimovich
commit: 78f90a109617fd9507536eea6c9235913b0dd019
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Apr  7 20:21:50 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr  7 20:21:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f90a10

net-ftp/oftpd: stable 0.3.7-r10 for ppc64, bug #648398

Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc64"

 net-ftp/oftpd/oftpd-0.3.7-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
index 0a2bee26eec..ac5e5c1b08e 100644
--- a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
+++ b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sh sparc x86"
+KEYWORDS="amd64 ~arm ~ppc ppc64 ~sh sparc x86"
 IUSE="ipv6"
 
 DEPEND="net-ftp/ftpbase"



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-03-13 Thread Thomas Deutschmann
commit: 82d449e84570afdc2119185f9820d16b12b70563
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 13 22:16:48 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 13 22:25:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d449e8

net-ftp/oftpd: x86 stable (bug #648398)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-ftp/oftpd/oftpd-0.3.7-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
index a1f4a31f661..0a2bee26eec 100644
--- a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
+++ b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sh sparc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sh sparc x86"
 IUSE="ipv6"
 
 DEPEND="net-ftp/ftpbase"



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2018-03-07 Thread Sergei Trofimovich
commit: 66707f80120bfca75976c7889f6175fbe3690e37
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar  7 19:55:45 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar  7 20:09:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66707f80

net-ftp/oftpd: stable 0.3.7-r10 for sparc, bug #648398

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 net-ftp/oftpd/oftpd-0.3.7-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild 
b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
index 40b4b1f12a5..a1f4a31f661 100644
--- a/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
+++ b/net-ftp/oftpd/oftpd-0.3.7-r10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sh sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="net-ftp/ftpbase"



[gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/

2017-11-26 Thread David Seifert
commit: 3dd04963ea9329501e6536ccec04310197c16308
Author: David Seifert  gentoo  org>
AuthorDate: Sun Nov 26 12:40:33 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Nov 26 23:10:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dd04963

net-ftp/oftpd: [QA] Consistent whitespace in metadata.xml

 net-ftp/oftpd/metadata.xml | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-ftp/oftpd/metadata.xml b/net-ftp/oftpd/metadata.xml
index 59e5b15b00c..3c3d5ced641 100644
--- a/net-ftp/oftpd/metadata.xml
+++ b/net-ftp/oftpd/metadata.xml
@@ -1,8 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-x...@gentoo.org
-   Michael Weber
-  
+   
+   x...@gentoo.org
+   Michael Weber
+