public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2016-08-07  6:52 Pacho Ramos
  0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2016-08-07  6:52 UTC (permalink / raw
  To: gentoo-commits

commit:     8c5e9c062424d18bd088c6174fc022237609c72f
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  7 06:45:07 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Aug  7 06:45:07 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c5e9c06

net-misc/wput: Cleanup per bug #269977

Package-Manager: portage-2.3.0

 net-misc/wput/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/net-misc/wput/metadata.xml b/net-misc/wput/metadata.xml
index 34c8e18..2d3a29a 100644
--- a/net-misc/wput/metadata.xml
+++ b/net-misc/wput/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>wired@gentoo.org</email>
-		<name>Alex Alexander</name>
-	</maintainer>
 	<upstream>
 		<remote-id type="sourceforge">wput</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2017-08-06 13:42 Amy Liffey
  0 siblings, 0 replies; 15+ messages in thread
From: Amy Liffey @ 2017-08-06 13:42 UTC (permalink / raw
  To: gentoo-commits

commit:     e18367738cf73ea23ef62960785ad7275888f1d0
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  6 13:04:20 2017 +0000
Commit:     Amy Liffey <amynka <AT> gentoo <DOT> org>
CommitDate: Sun Aug  6 13:41:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1836773

net-misc/wput: Shorter DESCRIPTION

 net-misc/wput/wput-0.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/wput/wput-0.6.1.ebuild b/net-misc/wput/wput-0.6.1.ebuild
index b42f7b0ec72..1d495ab77a2 100644
--- a/net-misc/wput/wput-0.6.1.ebuild
+++ b/net-misc/wput/wput-0.6.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 inherit eutils
 
-DESCRIPTION="A tiny, wget-alike program, that is designed to upload files/whole directories to remote ftp-servers"
+DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
 HOMEPAGE="http://wput.sourceforge.net/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2017-08-10  9:46 Patrice Clement
  0 siblings, 0 replies; 15+ messages in thread
From: Patrice Clement @ 2017-08-10  9:46 UTC (permalink / raw
  To: gentoo-commits

commit:     e8d522ac26dda3560e840f614613040d16350da2
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 10 08:29:35 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Aug 10 09:46:52 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d522ac

net-misc/wput: EAPI 6 bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-misc/wput/wput-0.6.1-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild
new file mode 100644
index 00000000000..354b883b95e
--- /dev/null
+++ b/net-misc/wput/wput-0.6.1-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
+HOMEPAGE="http://wput.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="debug nls ssl"
+
+RDEPEND="ssl? ( net-libs/gnutls )"
+
+DEPEND="
+	${RDEPEND}
+	nls? ( sys-devel/gettext )"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-0.6-gentoo.diff"
+	"${FILESDIR}/${PN}-0.6-respectldflags.patch"
+)
+
+DOCS=( ChangeLog INSTALL TODO )
+
+src_configure() {
+	local myconf="--enable-g-switch=no"
+	use debug && myconf="--enable-memdbg=yes"
+	econf \
+		$(use_enable nls) \
+		$(use_with ssl) \
+		"${myconf}"
+}
+
+src_install() {
+	default
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2018-02-18 21:48 Thomas Deutschmann
  0 siblings, 0 replies; 15+ messages in thread
From: Thomas Deutschmann @ 2018-02-18 21:48 UTC (permalink / raw
  To: gentoo-commits

commit:     647629bf217dbaa03c6c4f31663c93669198665c
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 21:47:28 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 21:48:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=647629bf

net-misc/wput: x86 stable (bug #647736)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/wput/wput-0.6.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild
index 354b883b95e..2faba78f82c 100644
--- a/net-misc/wput/wput-0.6.1-r1.ebuild
+++ b/net-misc/wput/wput-0.6.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 IUSE="debug nls ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2018-04-16 21:26 Sergei Trofimovich
  0 siblings, 0 replies; 15+ messages in thread
From: Sergei Trofimovich @ 2018-04-16 21:26 UTC (permalink / raw
  To: gentoo-commits

commit:     d9b3b0f320223ebf38a18b60b96210f1c34c69c3
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 16 21:14:00 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Apr 16 21:25:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b3b0f3

net-misc/wput: stable 0.6.1-r1 for ppc, bug #647736

Bug: https://bugs.gentoo.org/647736
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 net-misc/wput/wput-0.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild
index 95361822ca9..4622df77796 100644
--- a/net-misc/wput/wput-0.6.1-r1.ebuild
+++ b/net-misc/wput/wput-0.6.1-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug nls ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2018-04-17 20:27 David Seifert
  0 siblings, 0 replies; 15+ messages in thread
From: David Seifert @ 2018-04-17 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     0bae59e073320e1e99e8378d87a3cc002fd0229f
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Tue Apr 17 08:36:33 2018 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Apr 17 20:26:27 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bae59e0

net-misc/wput: Clean up old

Package-Manager: Portage-2.3.29, Repoman-2.3.9

 net-misc/wput/wput-0.6.1.ebuild | 39 ---------------------------------------
 1 file changed, 39 deletions(-)

diff --git a/net-misc/wput/wput-0.6.1.ebuild b/net-misc/wput/wput-0.6.1.ebuild
deleted file mode 100644
index 1d495ab77a2..00000000000
--- a/net-misc/wput/wput-0.6.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
-HOMEPAGE="http://wput.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE="debug nls ssl"
-
-RDEPEND="ssl? ( net-libs/gnutls )"
-DEPEND="${RDEPEND}
-		nls? ( sys-devel/gettext )"
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}/${PN}-0.6-gentoo.diff"
-	# Fix bug 126828
-	epatch "${FILESDIR}/wput-0.6-respectldflags.patch"
-}
-
-src_compile() {
-	local myconf
-	use debug && myconf="--enable-memdbg=yes" || myconf="--enable-g-switch=no"
-	econf ${myconf} \
-		$(use_enable nls) \
-		$(use_with ssl) || die "econf failed"
-	emake || die "emake failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "make install failed"
-	dodoc ChangeLog INSTALL TODO
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2020-11-01 21:29 Thomas Deutschmann
  0 siblings, 0 replies; 15+ messages in thread
From: Thomas Deutschmann @ 2020-11-01 21:29 UTC (permalink / raw
  To: gentoo-commits

commit:     b529105dbd54ce0868d136bb3f1fba9836cf3336
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  1 21:29:15 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Nov  1 21:29:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b529105d

net-misc/wput: x86 stable (bug #752072)

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 net-misc/wput/wput-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2.ebuild b/net-misc/wput/wput-0.6.2.ebuild
index dd45712ffb4..f39bf6c2426 100644
--- a/net-misc/wput/wput-0.6.2.ebuild
+++ b/net-misc/wput/wput-0.6.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 IUSE="debug nls ssl"
 
 BDEPEND="nls? ( sys-devel/gettext )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2020-11-04  0:55 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2020-11-04  0:55 UTC (permalink / raw
  To: gentoo-commits

commit:     26621d53a72b030e6ea4a7b6b116255cafb89133
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  4 00:55:33 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov  4 00:55:33 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26621d53

net-misc/wput: Stabilize 0.6.2 amd64, #752072

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

 net-misc/wput/wput-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2.ebuild b/net-misc/wput/wput-0.6.2.ebuild
index f39bf6c2426..756c1ee191f 100644
--- a/net-misc/wput/wput-0.6.2.ebuild
+++ b/net-misc/wput/wput-0.6.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="debug nls ssl"
 
 BDEPEND="nls? ( sys-devel/gettext )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2020-11-04  7:59 Sergei Trofimovich
  0 siblings, 0 replies; 15+ messages in thread
From: Sergei Trofimovich @ 2020-11-04  7:59 UTC (permalink / raw
  To: gentoo-commits

commit:     ffb7a66713c7a226c8e74e18e22adf55faafb951
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  4 07:58:38 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov  4 07:58:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb7a667

net-misc/wput: stable 0.6.2 for ppc

stable wrt bug #752072

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-misc/wput/wput-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2.ebuild b/net-misc/wput/wput-0.6.2.ebuild
index 756c1ee191f..b9fa842bf3a 100644
--- a/net-misc/wput/wput-0.6.2.ebuild
+++ b/net-misc/wput/wput-0.6.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug nls ssl"
 
 BDEPEND="nls? ( sys-devel/gettext )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2021-03-16 19:57 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-03-16 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     93de193cf76fc0b69705c1aceed22e5389b819e8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 19:36:16 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 19:56:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93de193c

net-misc/wput: drop 0.6.1-r1

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

 net-misc/wput/Manifest             |  1 -
 net-misc/wput/wput-0.6.1-r1.ebuild | 34 ----------------------------------
 2 files changed, 35 deletions(-)

diff --git a/net-misc/wput/Manifest b/net-misc/wput/Manifest
index 5e669fa06ef..bd6176fde97 100644
--- a/net-misc/wput/Manifest
+++ b/net-misc/wput/Manifest
@@ -1,2 +1 @@
-DIST wput-0.6.1.tgz 312342 BLAKE2B 67053f71307e9fbb3f085e9347c7843f4bcaf951858164fa228f9cfd80898192efc344f1f9cbf65a3db286fae5b514da64ed3599627f264586c9242ac753f62b SHA512 f5eb5e343c77cec0f3370e8d73679e3c720a848a963c2cdc64e6c52f30b47d76e0de9ccde965da9af97d2e5f23f45dd894f26371f56ead498d28fadffe65fc4b
 DIST wput-0.6.2.tgz 368510 BLAKE2B bf59720e220d837354aff7d90bf06dcf54df4adf10c53ca844cb18dc6f327793ebd5dce7beecc76b43ddccfe273435a1eca918ab2272145dc8bf47293f601004 SHA512 e1d0fb8570cbda44c97215ee1a021a9867f2e91323b3d7f7df1d7fd68a1b2aba40a7f3068e5e85e8c736b1dba1fba62df375af99e3fb96cd0fd414b139c641bd

diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild
deleted file mode 100644
index f45089a463e..00000000000
--- a/net-misc/wput/wput-0.6.1-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Tiny program like wget to upload files/whole directories via FTP"
-HOMEPAGE="http://wput.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE="debug nls ssl"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-RDEPEND="ssl? ( net-libs/gnutls )"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-0.6-gentoo.diff"
-	"${FILESDIR}/${PN}-0.6-respectldflags.patch"
-	"${FILESDIR}/${PN}-0.6.2-fno-common.patch"
-)
-
-DOCS=( ChangeLog INSTALL TODO )
-
-src_configure() {
-	local myconf="--enable-g-switch=no"
-	use debug && myconf="--enable-memdbg=yes"
-	econf \
-		$(use_enable nls) \
-		$(use_with ssl) \
-		"${myconf}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2022-10-25 17:55 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2022-10-25 17:55 UTC (permalink / raw
  To: gentoo-commits

commit:     f004cc9ef6b3e454a09e6182f1fe365f117f5f21
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 25 17:54:34 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 25 17:54:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f004cc9e

net-misc/wput: Stabilize 0.6.2_p20130413_p11 amd64, #873529

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

 net-misc/wput/wput-0.6.2_p20130413_p11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild b/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
index 7ee4c29b053c..eeff9d20599b 100644
--- a/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
+++ b/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="debug ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls:= )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2022-10-27  7:40 Agostino Sarubbo
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo @ 2022-10-27  7:40 UTC (permalink / raw
  To: gentoo-commits

commit:     c5fc50e953c73f699188ed974203118d3f3a89f8
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 07:40:26 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 07:40:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5fc50e9

net-misc/wput: Stabilize 0.6.2_p20130413_p11 ppc, #873529

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-misc/wput/wput-0.6.2_p20130413_p11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild b/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
index eeff9d20599b..518960f4edb5 100644
--- a/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
+++ b/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls:= )"


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

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

commit:     47dbb59bea51c3332d97e00cad257b38feb11d59
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Feb 24 17:50:16 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=47dbb59b

net-misc/wput: update HOMEPAGE, LICENSE

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

 net-misc/wput/wput-0.6.2.ebuild               | 6 +++---
 net-misc/wput/wput-0.6.2_p20130413_p11.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-misc/wput/wput-0.6.2.ebuild b/net-misc/wput/wput-0.6.2.ebuild
index b9fa842bf3ab..c5722a566a9f 100644
--- a/net-misc/wput/wput-0.6.2.ebuild
+++ b/net-misc/wput/wput-0.6.2.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
-HOMEPAGE="http://wput.sourceforge.net/"
+HOMEPAGE="https://wput.sourceforge.net/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug nls ssl"

diff --git a/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild b/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
index 518960f4edb5..8e78b06cf2b7 100644
--- a/net-misc/wput/wput-0.6.2_p20130413_p11.ebuild
+++ b/net-misc/wput/wput-0.6.2_p20130413_p11.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=8
@@ -6,7 +6,7 @@ EAPI=8
 inherit autotools
 
 DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
-HOMEPAGE="http://wput.sourceforge.net/"
+HOMEPAGE="https://wput.sourceforge.net/"
 
 if [[ ${PV} == *_p* ]] ; then
 	MY_PV=$(ver_cut 1-3)
@@ -17,7 +17,7 @@ else
 	SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tgz"
 fi
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug ssl"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2023-10-09  4:57 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-10-09  4:57 UTC (permalink / raw
  To: gentoo-commits

commit:     f928c40ec8ba1b9234929a550b09ed710bc2cc58
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  9 04:56:45 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct  9 04:56:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f928c40e

net-misc/wput: Stabilize 0.6.2_p20130413_p11-r1 x86, #915441

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

 net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild b/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild
index feeba7bfe7a1..8d4ea662b1ad 100644
--- a/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild
+++ b/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 IUSE="debug ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls:= )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
@ 2023-10-09 20:30 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-10-09 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c9a18b4d02079c563ca825b1a9f428c5b8cf4d97
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  9 20:29:57 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct  9 20:30:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9a18b4d

net-misc/wput: Stabilize 0.6.2_p20130413_p11-r1 amd64, #915441

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

 net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild b/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild
index ce1a8fc2c03c..44e2c7becb8c 100644
--- a/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild
+++ b/net-misc/wput/wput-0.6.2_p20130413_p11-r1.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls:= )"


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

end of thread, other threads:[~2023-10-09 20:30 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-09 20:30 [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-10-09  4:57 Sam James
2023-03-02 16:40 Joonas Niilola
2022-10-27  7:40 Agostino Sarubbo
2022-10-25 17:55 Sam James
2021-03-16 19:57 Sam James
2020-11-04  7:59 Sergei Trofimovich
2020-11-04  0:55 Sam James
2020-11-01 21:29 Thomas Deutschmann
2018-04-17 20:27 David Seifert
2018-04-16 21:26 Sergei Trofimovich
2018-02-18 21:48 Thomas Deutschmann
2017-08-10  9:46 Patrice Clement
2017-08-06 13:42 Amy Liffey
2016-08-07  6:52 Pacho Ramos

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