public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2016-01-10 11:37 Ian Delaney
  0 siblings, 0 replies; 20+ messages in thread
From: Ian Delaney @ 2016-01-10 11:37 UTC (permalink / raw
  To: gentoo-commits

commit:     84577da7e7f1fdc4b3e6c5246b0dad09a481b674
Author:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 11:36:34 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 11:37:06 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84577da7

net-misc/sstp-client: add user Michael 'veremit' Everitt proxy co-maintainer

Package-Manager: portage-2.2.26

 net-misc/sstp-client/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/net-misc/sstp-client/metadata.xml b/net-misc/sstp-client/metadata.xml
index 470760d..9beed9d 100644
--- a/net-misc/sstp-client/metadata.xml
+++ b/net-misc/sstp-client/metadata.xml
@@ -10,6 +10,10 @@
 		<email>maksbotan@gentoo.org</email>
 		<name>Maxim Koltsov</name>
 	</maintainer>
+	<maintainer>
+		<email>m.j.everitt@iee.org</email>
+		<name>Michael Everitt</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="sourceforge">sstp-client</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2016-01-10 11:41 Ian Delaney
  0 siblings, 0 replies; 20+ messages in thread
From: Ian Delaney @ 2016-01-10 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     cac39d145cb367838351ab4cef700eb1401e5e42
Author:     Michael Everitt <m.j.everitt <AT> iee <DOT> org>
AuthorDate: Sun Jan 10 10:30:30 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 10:30:30 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac39d14

net-misc/sstp-client: Fix for bug #567912.

Fixes issue with net-misc/networkmanager-sstp, where connections are
wrongly written to /var/lib/run/sstpc and networkmanager-sstp is looking
in /run/sstpc. Adding --with-runtime-dir="/run/sstpc" to configure opts
solves this issue.
Inherit autotools, direct sed statement to makefile.am over Makefile.in.
Ack to Coacher for various fixes & testing.
Gentoo-Bug: 567912.

Reported-by: Stanislav Nikitin <pztrn <AT> pztrn.name>
Acked-by: Michael Everitt <m.j.everitt <AT> iee.org>

Package-Manager: portage-2.2.26

 net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild | 56 ++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild b/net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild
new file mode 100644
index 0000000..533b848
--- /dev/null
+++ b/net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils linux-info multilib user
+
+DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
+HOMEPAGE="http://sstp-client.sourceforge.net/"
+SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+RDEPEND=">=dev-libs/libevent-2.0.10
+		dev-libs/openssl:0
+		net-dialup/ppp:="
+DEPEND="${RDEPEND}
+		virtual/pkgconfig"
+
+CONFIG_CHECK="~NETFILTER_NETLINK"
+DOCS=( AUTHORS ChangeLog DEVELOPERS INSTALL NEWS README TODO USING )
+
+pkg_setup() {
+	enewgroup sstpc
+	enewuser sstpc -1 -1 -1 sstpc
+}
+
+src_prepare() {
+	# set proper examples dir, --docdir overriding is src_configure does not work
+	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed'
+
+	eautoreconf
+	epatch_user
+}
+
+src_configure() {
+	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
+	econf \
+		--enable-ppp-plugin \
+		--enable-group=sstpc \
+		--enable-user=sstpc \
+		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" \
+		--with-runtime-dir="/run/sstpc" \
+		$(use_enable static)
+}
+
+src_install() {
+	default
+	prune_libtool_files --modules
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2016-01-10 11:41 Ian Delaney
  0 siblings, 0 replies; 20+ messages in thread
From: Ian Delaney @ 2016-01-10 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     57894823441934f5ff111496d91ce2e2856b032b
Author:     Michael Everitt <m.j.everitt <AT> iee <DOT> org>
AuthorDate: Sun Jan 10 10:38:55 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 10:38:55 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57894823

net-misc/sstp-client: Version bump to 1.0.10. Build fixes.

Inherit autotools, direct sed statement to makefile.am over Makefile.in.
Ack to Coacher for various fixes & testing.

Suggested-by: Stanislav Nikitin <pztrn <AT> pztrn.name>
Acked-by: Michael Everitt <m.j.everitt <AT> iee.org>

Package-Manager: portage-2.2.26

 net-misc/sstp-client/Manifest                  |  1 +
 net-misc/sstp-client/sstp-client-1.0.10.ebuild | 56 ++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index f2516f8..9b1a0fd 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1 +1,2 @@
+DIST sstp-client-1.0.10.tar.gz 3012713 SHA256 5f9084d8544c42c806724a4e70d039d8cb7b0ea06be8ea9cc5120684d4e0d424 SHA512 8f3e4b1b4d795015230b3a1b8aabf7d5fddd89be511bd6a59c22e5414520a392ba430f66f30aa2b982f084955e0085b0ea66d5acf5fd00414dc37c2c52a78cb7 WHIRLPOOL ab1484edc04f2473d0704fdaaafca2de0262e74fe1ca20415ec512c1922818c0818b3900ae68129c2afab7b30ad192a90f9734613189f502069daae8bb1b0036
 DIST sstp-client-1.0.9.tar.gz 3243308 SHA256 d3d8a26485b2cf0b24e148301b94b3ab9cdb17700ecd7c408b8fd6ad16f7fc4e SHA512 28144552b4ae36ff56c202f0f7118628035d6583863597744a670fc769c4a022f30649348ff8e1e4ceb5b68712916f14e220a8bd6e8a8bab36567998f2e087c4 WHIRLPOOL cfe6476d558954083daf9ece8e4efb6df7be60e38fbf62bcfd44e012fcad03f157e976c1c9218b7cc448e0f18e10be1895ec1823a98e7858dca0d68292f4e5f9

diff --git a/net-misc/sstp-client/sstp-client-1.0.10.ebuild b/net-misc/sstp-client/sstp-client-1.0.10.ebuild
new file mode 100644
index 0000000..7240629
--- /dev/null
+++ b/net-misc/sstp-client/sstp-client-1.0.10.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils linux-info multilib user
+
+DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
+HOMEPAGE="http://sstp-client.sourceforge.net/"
+SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+RDEPEND=">=dev-libs/libevent-2.0.10
+		dev-libs/openssl:0
+		net-dialup/ppp:="
+DEPEND="${RDEPEND}
+		virtual/pkgconfig"
+
+CONFIG_CHECK="~NETFILTER_NETLINK"
+DOCS=( AUTHORS ChangeLog DEVELOPERS INSTALL NEWS README TODO USING )
+
+pkg_setup() {
+	enewgroup sstpc
+	enewuser sstpc -1 -1 -1 sstpc
+}
+
+src_prepare() {
+	# set proper examples dir, --docdir overriding is src_configure does not work
+	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed'
+
+	eautomake
+	epatch_user
+}
+
+src_configure() {
+	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
+	econf \
+		--enable-ppp-plugin \
+		--enable-group=sstpc \
+		--enable-user=sstpc \
+		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" \
+		--with-runtime-dir="/run/sstpc" \
+		$(use_enable static)
+}
+
+src_install() {
+	default
+	prune_libtool_files --modules
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2016-08-25 11:35 Sergey Popov
  0 siblings, 0 replies; 20+ messages in thread
From: Sergey Popov @ 2016-08-25 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e52475278137a29d678b58350f19822abbc37e9e
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 25 11:34:36 2016 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 11:35:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5247527

net-misc/sstp-client: revision bump

Bump EAPI to 6, fix incorrect handling of user patches in src_prepare

Package-Manager: portage-2.2.28

 net-misc/sstp-client/Manifest                      |  1 -
 ....0.9-r2.ebuild => sstp-client-1.0.10-r1.ebuild} | 12 ++---
 net-misc/sstp-client/sstp-client-1.0.9-r1.ebuild   | 54 ----------------------
 3 files changed, 6 insertions(+), 61 deletions(-)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index 9b1a0fd..4e903f0 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1,2 +1 @@
 DIST sstp-client-1.0.10.tar.gz 3012713 SHA256 5f9084d8544c42c806724a4e70d039d8cb7b0ea06be8ea9cc5120684d4e0d424 SHA512 8f3e4b1b4d795015230b3a1b8aabf7d5fddd89be511bd6a59c22e5414520a392ba430f66f30aa2b982f084955e0085b0ea66d5acf5fd00414dc37c2c52a78cb7 WHIRLPOOL ab1484edc04f2473d0704fdaaafca2de0262e74fe1ca20415ec512c1922818c0818b3900ae68129c2afab7b30ad192a90f9734613189f502069daae8bb1b0036
-DIST sstp-client-1.0.9.tar.gz 3243308 SHA256 d3d8a26485b2cf0b24e148301b94b3ab9cdb17700ecd7c408b8fd6ad16f7fc4e SHA512 28144552b4ae36ff56c202f0f7118628035d6583863597744a670fc769c4a022f30649348ff8e1e4ceb5b68712916f14e220a8bd6e8a8bab36567998f2e087c4 WHIRLPOOL cfe6476d558954083daf9ece8e4efb6df7be60e38fbf62bcfd44e012fcad03f157e976c1c9218b7cc448e0f18e10be1895ec1823a98e7858dca0d68292f4e5f9

diff --git a/net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
similarity index 90%
rename from net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild
rename to net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
index 533b848..0853fc6 100644
--- a/net-misc/sstp-client/sstp-client-1.0.9-r2.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-inherit autotools eutils linux-info multilib user
+inherit autotools linux-info multilib user
 
 DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
 HOMEPAGE="http://sstp-client.sourceforge.net/"
@@ -16,10 +16,10 @@ KEYWORDS="~amd64 ~x86"
 IUSE="static"
 
 RDEPEND=">=dev-libs/libevent-2.0.10
-		dev-libs/openssl:0
-		net-dialup/ppp:="
+	dev-libs/openssl:0
+	net-dialup/ppp:="
 DEPEND="${RDEPEND}
-		virtual/pkgconfig"
+	virtual/pkgconfig"
 
 CONFIG_CHECK="~NETFILTER_NETLINK"
 DOCS=( AUTHORS ChangeLog DEVELOPERS INSTALL NEWS README TODO USING )
@@ -33,8 +33,8 @@ src_prepare() {
 	# set proper examples dir, --docdir overriding is src_configure does not work
 	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed'
 
+	default
 	eautoreconf
-	epatch_user
 }
 
 src_configure() {

diff --git a/net-misc/sstp-client/sstp-client-1.0.9-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.9-r1.ebuild
deleted file mode 100644
index 2bcb062..00000000
--- a/net-misc/sstp-client/sstp-client-1.0.9-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils linux-info multilib user
-
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static"
-
-RDEPEND=">=dev-libs/libevent-2.0.10
-	dev-libs/openssl:0
-	net-dialup/ppp:="
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-CONFIG_CHECK="~NETFILTER_NETLINK"
-DOCS=( AUTHORS ChangeLog DEVELOPERS INSTALL NEWS README TODO USING )
-
-pkg_setup() {
-	enewgroup sstpc
-	enewuser sstpc -1 -1 -1 sstpc
-}
-
-src_prepare() {
-	# set proper examples dir, --docdir overriding is src_configure does not work
-	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.in || die 'sed on Makefile.in failed'
-
-	epatch_user
-}
-
-src_configure() {
-	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
-	econf \
-		--enable-ppp-plugin \
-		--enable-group=sstpc \
-		--enable-user=sstpc \
-		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" \
-		$(use_enable static)
-}
-
-src_install() {
-	default
-	prune_libtool_files --modules
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2016-12-29 17:46 Göktürk Yüksek
  0 siblings, 0 replies; 20+ messages in thread
From: Göktürk Yüksek @ 2016-12-29 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     495437f501f6c0790f8769601cce42b32276b56d
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 17:36:10 2016 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 17:45:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=495437f5

net-misc/sstp-client: remove the proxied maintainer per his request

Package-Manager: portage-2.3.0

 net-misc/sstp-client/metadata.xml | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/net-misc/sstp-client/metadata.xml b/net-misc/sstp-client/metadata.xml
index 5527d49..0829a07 100644
--- a/net-misc/sstp-client/metadata.xml
+++ b/net-misc/sstp-client/metadata.xml
@@ -2,17 +2,13 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>andreis.vinogradovs@gmail.com</email>
-		<name>Andreis Vinogradovs</name>
+		<email>m.j.everitt@iee.org</email>
+		<name>Michael Everitt</name>
 	</maintainer>
 	<maintainer type="person">
 		<email>maksbotan@gentoo.org</email>
 		<name>Maxim Koltsov</name>
 	</maintainer>
-	<maintainer type="person">
-		<email>m.j.everitt@iee.org</email>
-		<name>Michael Everitt</name>
-	</maintainer>
 	<maintainer type="project">
 		<email>proxy-maint@gentoo.org</email>
 		<name>Proxy Maintainers</name>


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2017-02-24 17:48 Markus Meier
  0 siblings, 0 replies; 20+ messages in thread
From: Markus Meier @ 2017-02-24 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     5249b2cd8fba3ffee0d61b55ddba9038819312da
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 24 17:48:23 2017 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Fri Feb 24 17:48:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5249b2cd

net-misc/sstp-client: add ~arm64/~arm, bug #598146

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm arm64"

 net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
index 729b95594e..88ac866aa7 100644
--- a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="static"
 
 RDEPEND=">=dev-libs/libevent-2.0.10


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2017-08-14 18:33 Göktürk Yüksek
  0 siblings, 0 replies; 20+ messages in thread
From: Göktürk Yüksek @ 2017-08-14 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     535d5bf8804220552207df4db1d3855be84a8aca
Author:     Michael Everitt <m.j.everitt <AT> iee <DOT> org>
AuthorDate: Fri Aug 11 10:52:26 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon Aug 14 18:32:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535d5bf8

net-misc/sstp-client: Amend license, and update libtool .la handling

License was incorrectly specified as simply GPL-2, and after consultation
with QA, is now amended to 'GPL-2+-with-openssl-exception'.

Libtool archives are now removed with the 'find -delete' method as
recommended by QA policy guidelines.

Fixed typo in explanatory comment about exampes in src_prepare, and
tidied comments regarding PPPD variables for better readability.

Gentoo-Bug: #603966
Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
index dbaf858dbe4..9bf1d84c1ac 100644
--- a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
 HOMEPAGE="http://sstp-client.sourceforge.net/"
 SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="static"
@@ -29,7 +29,7 @@ pkg_setup() {
 }
 
 src_prepare() {
-	# set proper examples dir, --docdir overriding is src_configure does not work
+	# set proper examples dir, --docdir overriding in src_configure does not work
 	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed'
 
 	default
@@ -38,8 +38,8 @@ src_prepare() {
 
 src_configure() {
 	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
+	PPPD_VER=${PPPD_VER#*/*-} 		# reduce it to ${PV}-${PR}
+	PPPD_VER=${PPPD_VER%%[_-]*}		# main version without beta/pre/patch/revision
 	econf \
 		--enable-ppp-plugin \
 		--enable-group=sstpc \
@@ -51,5 +51,5 @@ src_configure() {
 
 src_install() {
 	default
-	prune_libtool_files --modules
+	find "${D}" -name '*.la' -delete || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2017-08-14 18:33 Göktürk Yüksek
  0 siblings, 0 replies; 20+ messages in thread
From: Göktürk Yüksek @ 2017-08-14 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     1d8c79361b01afb212c1efc8c864a1d3a252f9a2
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 14 18:31:25 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon Aug 14 18:32:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8c7936

net-misc/sstp-client: remove old revision

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-misc/sstp-client/sstp-client-1.0.10.ebuild | 55 --------------------------
 1 file changed, 55 deletions(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.10.ebuild b/net-misc/sstp-client/sstp-client-1.0.10.ebuild
deleted file mode 100644
index a223446c17e..00000000000
--- a/net-misc/sstp-client/sstp-client-1.0.10.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils linux-info multilib user
-
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static"
-
-RDEPEND=">=dev-libs/libevent-2.0.10
-		dev-libs/openssl:0
-		net-dialup/ppp:="
-DEPEND="${RDEPEND}
-		virtual/pkgconfig"
-
-CONFIG_CHECK="~NETFILTER_NETLINK"
-DOCS=( AUTHORS ChangeLog DEVELOPERS INSTALL NEWS README TODO USING )
-
-pkg_setup() {
-	enewgroup sstpc
-	enewuser sstpc -1 -1 -1 sstpc
-}
-
-src_prepare() {
-	# set proper examples dir, --docdir overriding is src_configure does not work
-	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed'
-
-	eautomake
-	epatch_user
-}
-
-src_configure() {
-	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
-	econf \
-		--enable-ppp-plugin \
-		--enable-group=sstpc \
-		--enable-user=sstpc \
-		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" \
-		--with-runtime-dir="/run/sstpc" \
-		$(use_enable static)
-}
-
-src_install() {
-	default
-	prune_libtool_files --modules
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2021-04-17 19:20 Conrad Kostecki
  0 siblings, 0 replies; 20+ messages in thread
From: Conrad Kostecki @ 2021-04-17 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     bb78b76f97c8a13d4bd3f9fcb36f2a323ee1de2d
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 18:34:07 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb78b76f

net-misc/sstp-client: migrate to glep 81

Closes: https://bugs.gentoo.org/781437
Closes: https://bugs.gentoo.org/717416
Closes: https://bugs.gentoo.org/696958
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild | 63 +++++++++++++++++++++++
 1 file changed, 63 insertions(+)

diff --git a/net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild
new file mode 100644
index 00000000000..9fb40250d36
--- /dev/null
+++ b/net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools linux-info
+
+DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
+HOMEPAGE="http://sstp-client.sourceforge.net/"
+SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~arm64 x86"
+IUSE="static"
+
+DEPEND="
+	dev-libs/libevent:=
+	dev-libs/openssl:0=
+	net-dialup/ppp:=
+"
+RDEPEND="
+	${DEPEND}
+	acct-group/sstpc
+	acct-user/sstpc
+"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~NETFILTER_NETLINK"
+
+PATCHES=(
+	"${FILESDIR}/${P}-remove-network-test.patch"
+	"${FILESDIR}/${P}-fix-example.patch"
+)
+
+DOCS=( AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING )
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	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
+
+	local myeconfargs=(
+		--enable-ppp-plugin
+		--enable-group=sstpc
+		--enable-user=sstpc
+		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}"
+		--with-runtime-dir="/run/sstpc"
+		$(use_enable static)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2021-04-17 19:20 Conrad Kostecki
  0 siblings, 0 replies; 20+ messages in thread
From: Conrad Kostecki @ 2021-04-17 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     aeefb4b81676789b20aad4e7a32692947512b7d9
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 18:35:13 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeefb4b8

net-misc/sstp-client: drop old version

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-misc/sstp-client/Manifest                     |  1 -
 net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild | 55 ----------------------
 net-misc/sstp-client/sstp-client-1.0.12.ebuild    | 56 -----------------------
 3 files changed, 112 deletions(-)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index d13f214b2a6..5bbc71ccec9 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1,2 +1 @@
-DIST sstp-client-1.0.10.tar.gz 3012713 BLAKE2B 6b924c9fef4df26a9aa93dd5670cae4dbfe020f2c1bfc955f88f229414b5295864c25637bddf3b80d522dd514a4f3042522f9615fe660165b4417d6ea832e4bf SHA512 8f3e4b1b4d795015230b3a1b8aabf7d5fddd89be511bd6a59c22e5414520a392ba430f66f30aa2b982f084955e0085b0ea66d5acf5fd00414dc37c2c52a78cb7
 DIST sstp-client-1.0.12.tar.gz 468683 BLAKE2B 4bb97465ee29eb6dd816a69b45c53e58e9de2cd5d7b5c9e39ea4ebbb3c3de0c21b3d95317114ae8c93bc3be359300bd6a55fa0512540bf25405fb47f8fb4e736 SHA512 d29128e59977fa844b0f2b02580284bb4e909994e5616c4dfa150b7a9807d0f34219355abe8c315c60c5f2482e3255824ce7e05566dbea9a7f13a1739d46468f

diff --git a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
deleted file mode 100644
index b3afe6c3dfb..00000000000
--- a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools linux-info user
-
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="static"
-
-RDEPEND=">=dev-libs/libevent-2.0.10
-	dev-libs/openssl:0
-	net-dialup/ppp:="
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-CONFIG_CHECK="~NETFILTER_NETLINK"
-DOCS=( AUTHORS ChangeLog DEVELOPERS INSTALL NEWS README TODO USING )
-
-pkg_setup() {
-	enewgroup sstpc
-	enewuser sstpc -1 -1 -1 sstpc
-}
-
-src_prepare() {
-	# set proper examples dir, --docdir overriding in src_configure does not work
-	sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed'
-
-	default
-	eautoreconf
-}
-
-src_configure() {
-	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
-	econf \
-		--enable-ppp-plugin \
-		--enable-group=sstpc \
-		--enable-user=sstpc \
-		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" \
-		--with-runtime-dir="/run/sstpc" \
-		$(use_enable static)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-}

diff --git a/net-misc/sstp-client/sstp-client-1.0.12.ebuild b/net-misc/sstp-client/sstp-client-1.0.12.ebuild
deleted file mode 100644
index 767cbdd4709..00000000000
--- a/net-misc/sstp-client/sstp-client-1.0.12.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools linux-info user
-
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="static"
-
-RDEPEND=">=dev-libs/libevent-2.0.10
-	dev-libs/openssl:0=
-	net-dialup/ppp:="
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-CONFIG_CHECK="~NETFILTER_NETLINK"
-
-PATCHES=( "${FILESDIR}/${P}-remove-network-test.patch"
-	  "${FILESDIR}/${P}-fix-example.patch"
-)
-DOCS=( AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING )
-
-pkg_setup() {
-	enewgroup sstpc
-	enewuser sstpc -1 -1 -1 sstpc
-}
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	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
-	econf \
-		--enable-ppp-plugin \
-		--enable-group=sstpc \
-		--enable-user=sstpc \
-		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" \
-		--with-runtime-dir="/run/sstpc" \
-		$(use_enable static)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2022-05-10 19:36 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-05-10 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     76985e4bf6fdec36277b42a74ddbdfd3558befff
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 10 17:58:39 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 10 19:35:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76985e4b

net-misc/sstp-client: add gitlab upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/sstp-client/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-misc/sstp-client/metadata.xml b/net-misc/sstp-client/metadata.xml
index 8c9ceb44c429..c93fe2ce4d92 100644
--- a/net-misc/sstp-client/metadata.xml
+++ b/net-misc/sstp-client/metadata.xml
@@ -3,6 +3,7 @@
 <pkgmetadata>
 	<!-- maintainer-needed -->
 	<upstream>
+		<remote-id type="gitlab">eivnaes/sstp-client</remote-id>
 		<remote-id type="sourceforge">sstp-client</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2022-12-18 10:37 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-12-18 10:37 UTC (permalink / raw
  To: gentoo-commits

commit:     eca03d7c188a3c4b41b8f198add5b6dcc43c4fc9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 10:36:55 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 10:37:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca03d7c

net-misc/sstp-client: Stabilize 1.0.17 amd64, #886617

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.17.ebuild b/net-misc/sstp-client/sstp-client-1.0.17.ebuild
index 275e34bc1a14..87eb70c2f930 100644
--- a/net-misc/sstp-client/sstp-client-1.0.17.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="static"
 
 DEPEND="dev-libs/libevent:=


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2022-12-18 10:37 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-12-18 10:37 UTC (permalink / raw
  To: gentoo-commits

commit:     95261bc82d13af0809381b9d353d76313eca203f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 10:36:54 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 10:36:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95261bc8

net-misc/sstp-client: Stabilize 1.0.17 x86, #886617

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.17.ebuild b/net-misc/sstp-client/sstp-client-1.0.17.ebuild
index 57f15cf30687..275e34bc1a14 100644
--- a/net-misc/sstp-client/sstp-client-1.0.17.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
 IUSE="static"
 
 DEPEND="dev-libs/libevent:=


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-03-02 16:40 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2023-03-02 16:40 UTC (permalink / raw
  To: gentoo-commits

commit:     27488051d756100ed406db09c42b7446c508e981
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Feb 24 17:45:58 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Mar  2 16:39:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27488051

net-misc/sstp-client: update HOMEPAGE

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.17.ebuild | 6 +++---
 net-misc/sstp-client/sstp-client-1.0.18.ebuild | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.17.ebuild b/net-misc/sstp-client/sstp-client-1.0.17.ebuild
index 87eb70c2f930..e7364793aeaa 100644
--- a/net-misc/sstp-client/sstp-client-1.0.17.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.17.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 inherit autotools linux-info
 
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/"
+DESCRIPTION="Client implementation of Secure Socket Tunneling Protocol (SSTP)"
+HOMEPAGE="https://sstp-client.sourceforge.net/"
 SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
 
 LICENSE="GPL-2+-with-openssl-exception"

diff --git a/net-misc/sstp-client/sstp-client-1.0.18.ebuild b/net-misc/sstp-client/sstp-client-1.0.18.ebuild
index d11d4f1ace70..8a46124cca58 100644
--- a/net-misc/sstp-client/sstp-client-1.0.18.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.18.ebuild
@@ -5,8 +5,8 @@ EAPI=8
 
 inherit autotools linux-info
 
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/"
+DESCRIPTION="Client implementation of Secure Socket Tunneling Protocol (SSTP)"
+HOMEPAGE="https://sstp-client.sourceforge.net/"
 SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
 
 LICENSE="GPL-2+-with-openssl-exception"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-04-23  4:46 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-04-23  4:46 UTC (permalink / raw
  To: gentoo-commits

commit:     827373a2cc685ebf4730b34c95c2a49f9d1eb1b0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 04:37:37 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 04:45:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=827373a2

net-misc/sstp-client: update upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/sstp-client/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/metadata.xml b/net-misc/sstp-client/metadata.xml
index c93fe2ce4d92..cc62457fcaa6 100644
--- a/net-misc/sstp-client/metadata.xml
+++ b/net-misc/sstp-client/metadata.xml
@@ -3,7 +3,7 @@
 <pkgmetadata>
 	<!-- maintainer-needed -->
 	<upstream>
-		<remote-id type="gitlab">eivnaes/sstp-client</remote-id>
+		<remote-id type="gitlab">sstp-project/sstp-client</remote-id>
 		<remote-id type="sourceforge">sstp-client</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-04-23  4:46 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-04-23  4:46 UTC (permalink / raw
  To: gentoo-commits

commit:     f943aa6f3bb0d8ee29bdda71efc1e3e7f285153d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 04:43:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 04:45:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f943aa6f

net-misc/sstp-client: fix compat. w/ ppp-2.5.0

Closes: https://bugs.gentoo.org/904846
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/sstp-client/Manifest                     |  1 +
 net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild | 67 +++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index c04331a85465..431ae0560518 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1,2 +1,3 @@
 DIST sstp-client-1.0.17.tar.gz 482831 BLAKE2B d19c752b3f061401f89eb46bd52091e3ab0a3c931c6646a55c1ee0e6dd7e9c501fba14b7c870a2514cb72fb0fd1d8bc89538562d4d99b9d58a081e0917734f5d SHA512 eff18eb894b2c96d46315b5ac7530fe50e8dd6e6c29ea946cd0e7c05c56416e85088fc65650fb77c05e3a747cb0b4e3575af5457515d240161027910abae9775
+DIST sstp-client-1.0.18-ppp-2.5.0.patch.xz 6564 BLAKE2B 97c5c1fc9d844e0845d2fff27bcfeb18834b1b007a14b2aa5ea1dad9af75b8bdb195d2469eb924466bfa68b9b7887aab2ddbe1208cb973c57232005e0b4977a1 SHA512 734d044eb956664a91cd045de5aa8f3f9730fb49eba816fb5a0decc19d47f0a00b2285aefd2735efd5285f68a93768b8b51ed9c557131a4ee25bb814f793ddc3
 DIST sstp-client-1.0.18.tar.gz 477886 BLAKE2B 3a2929a5245a703c36b9bf6c17b7f65d911446a8a44b95894fd990ccf5ad01a98e4b5e843681e4643ff4b28a57de359a98ef42f9bb378d52c6829297970399b6 SHA512 e0dd0fe57b65c2001737222159e58b11177a8f1cb64564e520fad2199c0581d0550a00f49c921be74039dec59062233b4716f8b624a0e4cb48bdf8df9272f93c

diff --git a/net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild
new file mode 100644
index 000000000000..134d2c5ee206
--- /dev/null
+++ b/net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools linux-info
+
+DESCRIPTION="Client implementation of Secure Socket Tunneling Protocol (SSTP)"
+HOMEPAGE="https://sstp-client.sourceforge.net/"
+SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-ppp-2.5.0.patch.xz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="static"
+
+DEPEND="dev-libs/libevent:=
+	dev-libs/openssl:=
+	net-dialup/ppp:="
+RDEPEND="${DEPEND}
+	acct-group/sstpc
+	acct-user/sstpc"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~NETFILTER_NETLINK"
+
+DOCS=( AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING )
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.0.12-remove-network-test.patch"
+	"${FILESDIR}/${PN}-1.0.12-fix-example.patch"
+
+	"${FILESDIR}/${PN}-1.0.18-includes.patch"
+	"${WORKDIR}/${P}-ppp-2.5.0.patch"
+)
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	local PPPD_VER="$(best_version net-dialup/ppp)"
+	# Reduce it to ${PV}-${PR}
+	PPPD_VER=${PPPD_VER#*/*-}
+	# Main version without beta/pre/patch/revision
+	PPPD_VER=${PPPD_VER%%[_-]*}
+
+	local myeconfargs=(
+		--enable-ppp-plugin
+		--enable-group=sstpc
+		--enable-user=sstpc
+		--with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}"
+		--with-runtime-dir="/run/sstpc"
+		$(use_enable static)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-04-23  7:46 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-04-23  7:46 UTC (permalink / raw
  To: gentoo-commits

commit:     36806a9ab31bf80832453f5fdb042eb212c67abe
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 07:45:01 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 07:46:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36806a9a

net-misc/sstp-client: fix ppp-2.5.0 patches

I think they need to be applied separately.

Closes: https://bugs.gentoo.org/904859
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/sstp-client/Manifest                                         | 2 +-
 .../{sstp-client-1.0.18-r1.ebuild => sstp-client-1.0.18-r2.ebuild}    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index 431ae0560518..3c0382cbe84f 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1,3 +1,3 @@
 DIST sstp-client-1.0.17.tar.gz 482831 BLAKE2B d19c752b3f061401f89eb46bd52091e3ab0a3c931c6646a55c1ee0e6dd7e9c501fba14b7c870a2514cb72fb0fd1d8bc89538562d4d99b9d58a081e0917734f5d SHA512 eff18eb894b2c96d46315b5ac7530fe50e8dd6e6c29ea946cd0e7c05c56416e85088fc65650fb77c05e3a747cb0b4e3575af5457515d240161027910abae9775
-DIST sstp-client-1.0.18-ppp-2.5.0.patch.xz 6564 BLAKE2B 97c5c1fc9d844e0845d2fff27bcfeb18834b1b007a14b2aa5ea1dad9af75b8bdb195d2469eb924466bfa68b9b7887aab2ddbe1208cb973c57232005e0b4977a1 SHA512 734d044eb956664a91cd045de5aa8f3f9730fb49eba816fb5a0decc19d47f0a00b2285aefd2735efd5285f68a93768b8b51ed9c557131a4ee25bb814f793ddc3
+DIST sstp-client-1.0.18-ppp-2.5.0-patches.tar.xz 7244 BLAKE2B 4249787feb98d71f81d50ac4f02cf38f8cd21501bfffc0ec65ba262db5c5ccf3bc3ba728f676e7156e6105181c2706c5bfc242b66c6db63cc39e82a6e4add56a SHA512 ed99b6de0ea57ff80ca175b329b00334cad7ca535fd6465f318bf5db0994a1a9aec6f7026bebcf9087a1d21ecac8a8a3a027e346ca541582470b0570273d4cd7
 DIST sstp-client-1.0.18.tar.gz 477886 BLAKE2B 3a2929a5245a703c36b9bf6c17b7f65d911446a8a44b95894fd990ccf5ad01a98e4b5e843681e4643ff4b28a57de359a98ef42f9bb378d52c6829297970399b6 SHA512 e0dd0fe57b65c2001737222159e58b11177a8f1cb64564e520fad2199c0581d0550a00f49c921be74039dec59062233b4716f8b624a0e4cb48bdf8df9272f93c

diff --git a/net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
similarity index 95%
rename from net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild
rename to net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
index 134d2c5ee206..d3fbceca2f8f 100644
--- a/net-misc/sstp-client/sstp-client-1.0.18-r1.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
@@ -8,7 +8,7 @@ inherit autotools linux-info
 DESCRIPTION="Client implementation of Secure Socket Tunneling Protocol (SSTP)"
 HOMEPAGE="https://sstp-client.sourceforge.net/"
 SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-ppp-2.5.0.patch.xz"
+SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-ppp-2.5.0-patches.tar.xz"
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
@@ -32,7 +32,7 @@ PATCHES=(
 	"${FILESDIR}/${PN}-1.0.12-fix-example.patch"
 
 	"${FILESDIR}/${PN}-1.0.18-includes.patch"
-	"${WORKDIR}/${P}-ppp-2.5.0.patch"
+	"${WORKDIR}/${P}-ppp-2.5.0-patches"
 )
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-05-15 20:55 Mike Gilbert
  0 siblings, 0 replies; 20+ messages in thread
From: Mike Gilbert @ 2023-05-15 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     766c6c5e0bf8060e9d41aa966a6c2fa2527e29a6
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon May 15 20:53:54 2023 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon May 15 20:54:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766c6c5e

net-misc/sstp-client: depend on net-dialup/ppp[ipv6(+)]

Closes: https://bugs.gentoo.org/906257
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
index 3c2af86605a0..b931ca66acf6 100644
--- a/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
@@ -17,7 +17,7 @@ IUSE="static"
 
 DEPEND="dev-libs/libevent:=
 	dev-libs/openssl:=
-	net-dialup/ppp:="
+	net-dialup/ppp:=[ipv6(+)]"
 RDEPEND="${DEPEND}
 	acct-group/sstpc
 	acct-user/sstpc"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-05-26  5:17 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2023-05-26  5:17 UTC (permalink / raw
  To: gentoo-commits

commit:     9a40dfd32411066ba619fa8b2ce380f44e9cfff0
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 05:16:33 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May 26 05:17:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a40dfd3

net-misc/sstp-client: Stabilize 1.0.18-r2 amd64, #907149

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
index 6f6b4410214b..709e731bdb8a 100644
--- a/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-ppp-2.5.
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="static"
 
 DEPEND="dev-libs/libevent:=


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/
@ 2023-05-26  5:17 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2023-05-26  5:17 UTC (permalink / raw
  To: gentoo-commits

commit:     a2c28a09426871f5cad2a353a7346bd3587c4582
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 05:16:08 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May 26 05:17:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c28a09

net-misc/sstp-client: Stabilize 1.0.18-r2 x86, #907149

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
index b931ca66acf6..6f6b4410214b 100644
--- a/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
+++ b/net-misc/sstp-client/sstp-client-1.0.18-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-ppp-2.5.
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
 IUSE="static"
 
 DEPEND="dev-libs/libevent:=


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

end of thread, other threads:[~2023-05-26  5:17 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-18 10:37 [gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-05-26  5:17 Joonas Niilola
2023-05-26  5:17 Joonas Niilola
2023-05-15 20:55 Mike Gilbert
2023-04-23  7:46 Sam James
2023-04-23  4:46 Sam James
2023-04-23  4:46 Sam James
2023-03-02 16:40 Joonas Niilola
2022-12-18 10:37 Sam James
2022-05-10 19:36 Sam James
2021-04-17 19:20 Conrad Kostecki
2021-04-17 19:20 Conrad Kostecki
2017-08-14 18:33 Göktürk Yüksek
2017-08-14 18:33 Göktürk Yüksek
2017-02-24 17:48 Markus Meier
2016-12-29 17:46 Göktürk Yüksek
2016-08-25 11:35 Sergey Popov
2016-01-10 11:41 Ian Delaney
2016-01-10 11:41 Ian Delaney
2016-01-10 11:37 Ian Delaney

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