* [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/
@ 2019-02-04 10:22 Jeroen Roovers
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers @ 2019-02-04 10:22 UTC (permalink / raw
To: gentoo-commits
commit: 63b67cdbeb0f4e4ff1cb6094e9436353b4621bdb
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 4 10:22:26 2019 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Feb 4 10:22:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b67cdb
net-vpn/pptpd: metadata.xml: packages => packets
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
net-vpn/pptpd/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/pptpd/metadata.xml b/net-vpn/pptpd/metadata.xml
index 32a22c503fb..8f69579af46 100644
--- a/net-vpn/pptpd/metadata.xml
+++ b/net-vpn/pptpd/metadata.xml
@@ -6,8 +6,8 @@
<name>Sergey Popov</name>
</maintainer>
<use>
- <flag name="gre-extreme-debug">Log all GRE accepted packages when in debug
- mode (required if you want upstream support)</flag>
+ <flag name="gre-extreme-debug">Log all GRE accepted packets when in
+ debug mode (required if you want upstream support)</flag>
</use>
<upstream>
<remote-id type="sourceforge">poptop</remote-id>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/
@ 2020-08-11 11:15 Sergey Popov
0 siblings, 0 replies; 6+ messages in thread
From: Sergey Popov @ 2020-08-11 11:15 UTC (permalink / raw
To: gentoo-commits
commit: 61968c8a1fa2f2bd93991801cf8fd3756c3f2c6b
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 11 11:12:03 2020 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Tue Aug 11 11:13:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61968c8a
net-vpn/pptpd: stabilize on amd64/x86, drop old version
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
net-vpn/pptpd/pptpd-1.4.0-r2.ebuild | 79 -------------------------------------
net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 2 +-
2 files changed, 1 insertion(+), 80 deletions(-)
diff --git a/net-vpn/pptpd/pptpd-1.4.0-r2.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r2.ebuild
deleted file mode 100644
index 81d148bcf80..00000000000
--- a/net-vpn/pptpd/pptpd-1.4.0-r2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server"
-HOMEPAGE="http://poptop.sourceforge.net/"
-SRC_URI="mirror://sourceforge/poptop/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="gre-extreme-debug tcpd"
-
-DEPEND="net-dialup/ppp:=
- tcpd? ( sys-apps/tcp-wrappers )"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-PATCHES=(
- "${FILESDIR}/${P}-gentoo.patch"
- "${FILESDIR}/${P}-sandbox-fix.patch"
- "${FILESDIR}/${P}-pidfile.patch"
-)
-
-src_prepare() {
- # Match pptpd-logwtmp.so's version with pppd's version (#89895)
- local PPPD_VER=`best_version net-dialup/ppp`
- PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR}
- PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision
- sed -i -e "s:\\(#define[ \\t]*VERSION[ \\t]*\\)\".*\":\\1\"${PPPD_VER}\":" plugins/patchlevel.h || die
-
- # configure.in is actually configure.ac
- mv configure.in configure.ac || die
-
- # Automake 1.13 compatibility, bug #469476
- sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac || die 'sed on configure.ac failed'
-
- # remove 'missing' script to prevent warnings
- rm missing || die 'remove missing script failed'
-
- # respect compiler, bug #461722
- tc-export CC
-
- # Call to default src_prepare to apply patches
- default
-
- eautoreconf
-}
-
-src_configure() {
- use gre-extreme-debug && append-cppflags "-DLOG_DEBUG_GRE_ACCEPTING_PACKET"
- econf \
- --enable-bcrelay \
- $(use tcpd && echo "--with-libwrap")
-}
-
-src_compile() {
- emake COPTS="${CFLAGS}"
-}
-
-src_install() {
- default
-
- insinto /etc
- doins samples/pptpd.conf
-
- insinto /etc/ppp
- doins samples/options.pptpd
-
- newinitd "${FILESDIR}/pptpd-init-r2" pptpd
- newconfd "${FILESDIR}/pptpd-confd" pptpd
-
- dodoc README.*
- dodoc -r samples
-}
diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
index 17768c52b76..d22507a50d4 100644
--- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
+++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/poptop/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="gre-extreme-debug tcpd"
DEPEND="net-dialup/ppp:=
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/
@ 2022-06-25 15:01 Mike Gilbert
0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert @ 2022-06-25 15:01 UTC (permalink / raw
To: gentoo-commits
commit: 470a810d903205b14079a10a66e7d9764313f4ef
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 22:05:14 2022 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Jun 25 15:01:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470a810d
net-vpn/pptpd: depend on net-libs/ppp-defs on musl
Closes: https://bugs.gentoo.org/851918
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
index d22507a50d47..f07ade6610c2 100644
--- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
+++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,9 +14,10 @@ LICENSE="GPL-2"
KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="gre-extreme-debug tcpd"
-DEPEND="net-dialup/ppp:=
+RDEPEND="net-dialup/ppp:=
tcpd? ( sys-apps/tcp-wrappers )"
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+ elibc_musl? ( net-libs/ppp-defs )"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/
@ 2022-10-08 18:34 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-10-08 18:34 UTC (permalink / raw
To: gentoo-commits
commit: ca1e8436215ebab63284e968a2ba33ed34bd2b09
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 8 18:33:01 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 8 18:33:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca1e8436
net-vpn/pptpd: drop eutils
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
index f07ade6610c2..3a01c176e448 100644
--- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
+++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit autotools eutils flag-o-matic toolchain-funcs
+inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server"
HOMEPAGE="http://poptop.sourceforge.net/"
@@ -31,7 +31,7 @@ PATCHES=(
src_prepare() {
# Match pptpd-logwtmp.so's version with pppd's version (#89895)
- local PPPD_VER=`best_version net-dialup/ppp`
+ local PPPD_VER=$(best_version net-dialup/ppp)
PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR}
PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision
sed -i -e "s:\\(#define[ \\t]*VERSION[ \\t]*\\)\".*\":\\1\"${PPPD_VER}\":" plugins/patchlevel.h || die
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/
@ 2023-04-28 19:54 Sergey Popov
0 siblings, 0 replies; 6+ messages in thread
From: Sergey Popov @ 2023-04-28 19:54 UTC (permalink / raw
To: gentoo-commits
commit: c852b89232e054c66333b92f6de635721378098e
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 28 19:53:32 2023 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Fri Apr 28 19:54:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c852b892
net-vpn/pptpd: restrict net-vpn/ppp dependency
Release of net-dialup/ppp-2.5.0 contains some API breakages,
that are not sorted out by pptpd's upstream yet
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
index 3a01c176e448..227b7be9450d 100644
--- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
+++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,7 +14,7 @@ LICENSE="GPL-2"
KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="gre-extreme-debug tcpd"
-RDEPEND="net-dialup/ppp:=
+RDEPEND="<net-dialup/ppp-2.5.0:=
tcpd? ( sys-apps/tcp-wrappers )"
DEPEND="${RDEPEND}
elibc_musl? ( net-libs/ppp-defs )"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/
@ 2023-12-29 6:58 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2023-12-29 6:58 UTC (permalink / raw
To: gentoo-commits
commit: 9aed77ed5cebb43b95bd3899edd51698e88711cf
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 06:58:18 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 06:58:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aed77ed
net-vpn/pptpd: Keyword 1.4.0-r3 arm64, #920864
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
index 3a013c769e13..425dcbcb8d78 100644
--- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
+++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/poptop/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="gre-extreme-debug tcpd"
RDEPEND="net-dialup/ppp:=
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-12-29 6:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-04 10:22 [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/ Jeroen Roovers
-- strict thread matches above, loose matches on Subject: below --
2020-08-11 11:15 Sergey Popov
2022-06-25 15:01 Mike Gilbert
2022-10-08 18:34 Sam James
2023-04-28 19:54 Sergey Popov
2023-12-29 6:58 Arthur Zamarin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox