* [gentoo-commits] repo/gentoo:master commit in: net-fs/ncpfs/
@ 2016-01-18 12:26 Joshua Kinard
0 siblings, 0 replies; 4+ messages in thread
From: Joshua Kinard @ 2016-01-18 12:26 UTC (permalink / raw
To: gentoo-commits
commit: 0502bb60e03559cf350da7381bf92ae0178f9a3b
Author: Joshua Kinard <kumba <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 12:23:53 2016 +0000
Commit: Joshua Kinard <kumba <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 12:23:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0502bb60
net-fs/ncpfs: take over maintainership
Package-Manager: portage-2.2.26
net-fs/ncpfs/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-fs/ncpfs/metadata.xml b/net-fs/ncpfs/metadata.xml
index 55227da..7149c89 100644
--- a/net-fs/ncpfs/metadata.xml
+++ b/net-fs/ncpfs/metadata.xml
@@ -1,6 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>net-fs</herd>
+ <maintainer>
+ <email>kumba@gentoo.org</email>
+ <name>Joshua Kinard</name>
+ </maintainer>
<longdescription>Provides Access to Netware services using the NCP protocol (Kernel support must be activated!)</longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-fs/ncpfs/
@ 2018-04-30 3:40 Joshua Kinard
0 siblings, 0 replies; 4+ messages in thread
From: Joshua Kinard @ 2018-04-30 3:40 UTC (permalink / raw
To: gentoo-commits
commit: b596f24ddd523ec65e6ee65583926930bd36af5f
Author: Joshua Kinard <kumba <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 30 03:39:01 2018 +0000
Commit: Joshua Kinard <kumba <AT> gentoo <DOT> org>
CommitDate: Mon Apr 30 03:39:33 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b596f24d
net-fs/ncpfs: Remove PHP support
Removed the PHP USE flag and force-disabled PHP support.
Also removed epatch lines for ncpfs-2.2.5-php.patch and
ncpfs-2.2.6-zend_function_entry.patch. See Bug #582516.
Package-Manager: Portage-2.3.31, Repoman-2.3.9
net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild | 91 ++++++++++++++++++++++++++++++++++++++
1 file changed, 91 insertions(+)
diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
new file mode 100644
index 00000000000..14c992bac3a
--- /dev/null
+++ b/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit pam
+
+DESCRIPTION="Provides access to Netware services using the NCP protocol"
+HOMEPAGE="ftp://platan.vc.cvut.cz/pub/linux/ncpfs/"
+SRC_URI="ftp://platan.vc.cvut.cz/pub/linux/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
+IUSE="nls pam"
+
+DEPEND="
+ nls? ( sys-devel/gettext )
+ pam? ( virtual/pam )"
+
+RDEPEND="${DEPEND}"
+
+MY_PATCHES=(
+ # Build fixes.
+ "${FILESDIR}"/${P}-gcc4.patch
+ "${FILESDIR}"/${P}-missing-includes.patch
+
+ # Add a patch to fix multiple vulnerabilities.
+ # CVE-2010-0788, CVE-2010-0790, & CVE-2010-0791.
+ # http://seclists.org/fulldisclosure/2010/Mar/122
+ "${FILESDIR}"/${P}-multiple-vulns.patch
+
+ # Add a patch that removes the __attribute__((packed)); directive
+ # from several struct members in include/ncp/ncplib.h. This will
+ # cut down on a large number of compile warnings generated by modern
+ # gcc releases.
+ "${FILESDIR}"/${P}-remove-packed-attrib.patch
+
+ # Misc patches borrowed from Mageia.
+ "${FILESDIR}"/${P}-align-fix.patch
+ "${FILESDIR}"/${P}-getuid-fix.patch
+ "${FILESDIR}"/${P}-pam_ncp_auth-fix.patch
+ "${FILESDIR}"/${P}-servername-array-fix.patch
+
+ # Misc patches borrowed from Debian.
+ # Fixes Bug #497278
+ "${FILESDIR}"/${P}-drop-kernel-check.patch
+ "${FILESDIR}"/${P}-drop-mtab-support.patch
+ "${FILESDIR}"/${P}-no-suid-root.patch
+ "${FILESDIR}"/${P}-remove-libncp_atomic-header.patch
+
+ # Support LDFLAGS.
+ "${FILESDIR}"/${P}-ldflags-support.patch
+
+ # Bug 446696. This might need re-diffing if additional Makefile
+ # fixes are added.
+ "${FILESDIR}"/${P}-makefile-fix-soname-link.patch
+)
+
+DOCS=( FAQ README )
+
+src_prepare() {
+ default
+
+ # Bug #273484.
+ sed -i '/ldconfig/d' lib/Makefile.in || die
+
+ epatch "${MY_PATCHES[@]}"
+}
+
+src_configure() {
+ # PHP integration no longer supported in Gentoo, per Bug #582516.
+ econf \
+ $(use_enable nls) \
+ $(use_enable pam pam "$(getpam_mod_dir)") \
+ --disable-php
+}
+
+src_install() {
+ dodir $(getpam_mod_dir) /usr/sbin /sbin
+
+ # Install main software and headers.
+ emake DESTDIR="${D}" install
+ emake DESTDIR="${D}" install-dev
+
+ # Install a startup script in /etc/init.d and a conf file in /etc/conf.d
+ newconfd "${FILESDIR}"/ipx.confd ipx
+ newinitd "${FILESDIR}"/ipx.init ipx
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-fs/ncpfs/
@ 2019-02-16 15:50 Brian Evans
0 siblings, 0 replies; 4+ messages in thread
From: Brian Evans @ 2019-02-16 15:50 UTC (permalink / raw
To: gentoo-commits
commit: ab60db98ed2c9b3dca50392135b8fd067f8b8bdc
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 16 15:49:34 2019 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sat Feb 16 15:49:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab60db98
net-fs/ncpfs: Drop epatch use in EAPI=6
Non-maintainer commit
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
index 14c992bac3a..a024decda07 100644
--- a/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
+++ b/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -20,7 +20,7 @@ DEPEND="
RDEPEND="${DEPEND}"
-MY_PATCHES=(
+PATCHES=(
# Build fixes.
"${FILESDIR}"/${P}-gcc4.patch
"${FILESDIR}"/${P}-missing-includes.patch
@@ -60,12 +60,10 @@ MY_PATCHES=(
DOCS=( FAQ README )
src_prepare() {
- default
-
# Bug #273484.
sed -i '/ldconfig/d' lib/Makefile.in || die
- epatch "${MY_PATCHES[@]}"
+ default
}
src_configure() {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-fs/ncpfs/
@ 2019-10-12 21:18 Mikle Kolyada
0 siblings, 0 replies; 4+ messages in thread
From: Mikle Kolyada @ 2019-10-12 21:18 UTC (permalink / raw
To: gentoo-commits
commit: 17e8d9ddeec574faca7aa41f2e742c009b1fbf31
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 21:18:15 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 21:18:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17e8d9dd
net-fs/ncpfs: migrate to sys-libs/pam
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-fs/ncpfs/ncpfs-2.2.6-r3.ebuild | 4 ++--
net-fs/ncpfs/ncpfs-2.2.6-r4.ebuild | 4 ++--
net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r3.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r3.ebuild
index f66a06347b8..aeda73ee956 100644
--- a/net-fs/ncpfs/ncpfs-2.2.6-r3.ebuild
+++ b/net-fs/ncpfs/ncpfs-2.2.6-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -14,7 +14,7 @@ KEYWORDS="amd64 ~mips ppc ppc64 x86"
IUSE="nls pam php"
DEPEND="nls? ( sys-devel/gettext )
- pam? ( virtual/pam )
+ pam? ( sys-libs/pam )
php? ( || ( dev-lang/php virtual/httpd-php ) )"
RDEPEND="${DEPEND}"
diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r4.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r4.ebuild
index 481e43c3474..04130516b2c 100644
--- a/net-fs/ncpfs/ncpfs-2.2.6-r4.ebuild
+++ b/net-fs/ncpfs/ncpfs-2.2.6-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -16,7 +16,7 @@ IUSE="nls pam php"
DEPEND="
nls? ( sys-devel/gettext )
- pam? ( virtual/pam )
+ pam? ( sys-libs/pam )
php? ( || ( dev-lang/php:* virtual/httpd-php:* ) )"
RDEPEND="${DEPEND}"
diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
index a024decda07..7e4c742a0e1 100644
--- a/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
+++ b/net-fs/ncpfs/ncpfs-2.2.6-r5.ebuild
@@ -16,7 +16,7 @@ IUSE="nls pam"
DEPEND="
nls? ( sys-devel/gettext )
- pam? ( virtual/pam )"
+ pam? ( sys-libs/pam )"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-10-12 21:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-12 21:18 [gentoo-commits] repo/gentoo:master commit in: net-fs/ncpfs/ Mikle Kolyada
-- strict thread matches above, loose matches on Subject: below --
2019-02-16 15:50 Brian Evans
2018-04-30 3:40 Joshua Kinard
2016-01-18 12:26 Joshua Kinard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox