public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2016-05-29 13:25 Pacho Ramos
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos @ 2016-05-29 13:25 UTC (permalink / raw
  To: gentoo-commits

commit:     b8cb832157bec84b4276d66dc6d1b766ae91689d
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 13:11:49 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 29 13:24:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8cb8321

app-admin/aws-elb-tools: Cleanup due to #269417

Package-Manager: portage-2.3.0_rc1

 app-admin/aws-elb-tools/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-admin/aws-elb-tools/metadata.xml b/app-admin/aws-elb-tools/metadata.xml
index 97b78fe..097975e 100644
--- a/app-admin/aws-elb-tools/metadata.xml
+++ b/app-admin/aws-elb-tools/metadata.xml
@@ -1,7 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>lxnay@gentoo.org</email>
-  </maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2016-07-07  8:50 Austin English
  0 siblings, 0 replies; 7+ messages in thread
From: Austin English @ 2016-07-07  8:50 UTC (permalink / raw
  To: gentoo-commits

commit:     fc0ff80bd0f7d4fddf9ca4ad2f58a8bdeecf4de9
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  7 08:47:24 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Jul  7 08:47:24 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc0ff80b

app-admin/aws-elb-tools: update to EAPI 6

Package-Manager: portage-2.2.28

 .../aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild | 59 ++++++++++++++++++++++
 app-admin/aws-elb-tools/metadata.xml               |  1 +
 2 files changed, 60 insertions(+)

diff --git a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
new file mode 100644
index 0000000..8a0234b
--- /dev/null
+++ b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Serves as the client interface to the Elastic Load Balancing web service"
+HOMEPAGE="http://aws.amazon.com/developertools/Amazon-EC2/2536"
+SRC_URI="mirror://sabayon/${CATEGORY}/ElasticLoadBalancing-${PV}.zip"
+
+S="${WORKDIR}/ElasticLoadBalancing-${PV}"
+
+LICENSE="Amazon"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND="app-arch/unzip"
+RDEPEND="virtual/jre"
+RESTRICT="mirror"
+
+src_prepare() {
+	find . -name '*.cmd' -delete || die
+}
+
+src_install() {
+	dodir /opt/${PN}
+	insinto /opt/${PN}/lib
+	doins -r "${S}"/lib/*
+	exeinto /opt/${PN}/bin
+	doexe "${S}"/bin/*
+
+	dodir /etc/env.d
+	cat - > "${T}"/99${PN} <<EOF
+AWS_ELB_HOME=/opt/${PN}
+PATH=/opt/${PN}/bin
+ROOTPATH=/opt/${PN}/bin
+EOF
+	doenvd "${T}"/99${PN}
+
+	dodoc "THIRDPARTYLICENSE.TXT"
+}
+
+pkg_postinst() {
+	ewarn "Remember to run: env-update && source /etc/profile if you plan"
+	ewarn "to use these tools in a shell before logging out (or restarting"
+	ewarn "your login manager)"
+	elog
+	elog "You need to put the following in your ~/.bashrc replacing the"
+	elog "values with the full path to your AWS credentials file."
+	elog
+	elog "  export AWS_CREDENTIAL_FILE=/path/and_filename_of_credential_file"
+	elog
+	elog "It should contains two lines: the first line lists the AWS Account's"
+	elog "AWS Access Key ID, and the second line lists the AWS Account's"
+	elog "Secret Access Key. For example:"
+	elog
+	elog "  AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE"
+	elog "  AWSSecretKey=wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY"
+}

diff --git a/app-admin/aws-elb-tools/metadata.xml b/app-admin/aws-elb-tools/metadata.xml
index 097975e..6f49eba 100644
--- a/app-admin/aws-elb-tools/metadata.xml
+++ b/app-admin/aws-elb-tools/metadata.xml
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+<!-- maintainer-needed -->
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2016-07-07 16:42 Austin English
  0 siblings, 0 replies; 7+ messages in thread
From: Austin English @ 2016-07-07 16:42 UTC (permalink / raw
  To: gentoo-commits

commit:     4c17243cb0ff2845f26bf0f98133e0a810383798
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  7 16:41:26 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Jul  7 16:41:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c17243c

app-admin/aws-elb-tools: add missing call to eapply_user to aws-elb-tools-1.0.15.1-r1

Gentoo-Bug: https://bugs.gentoo.org/588240

Package-Manager: portage-2.2.28

 app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
index 8a0234b..1ea497c 100644
--- a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
+++ b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
@@ -19,6 +19,7 @@ RDEPEND="virtual/jre"
 RESTRICT="mirror"
 
 src_prepare() {
+	default
 	find . -name '*.cmd' -delete || die
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2017-12-29 22:33 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-12-29 22:33 UTC (permalink / raw
  To: gentoo-commits

commit:     66489e366bb3881ac2251da2549399290bd80139
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 19:29:12 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:32:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66489e36

app-admin/aws-elb-tools: Remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../aws-elb-tools/aws-elb-tools-1.0.15.1.ebuild    | 60 ----------------------
 1 file changed, 60 deletions(-)

diff --git a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1.ebuild b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1.ebuild
deleted file mode 100644
index 23ee15e13fe..00000000000
--- a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-DESCRIPTION="Serves as the client interface to the Elastic Load Balancing web service"
-HOMEPAGE="http://aws.amazon.com/developertools/Amazon-EC2/2536"
-SRC_URI="mirror://sabayon/${CATEGORY}/ElasticLoadBalancing-${PV}.zip"
-
-S="${WORKDIR}/ElasticLoadBalancing-${PV}"
-
-LICENSE="Amazon"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND="app-arch/unzip"
-RDEPEND="virtual/jre"
-RESTRICT="mirror"
-
-src_unpack() {
-	unpack ${A}
-	cd "$S"
-	find . -name '*.cmd' -delete || die
-}
-
-src_install() {
-	dodir /opt/${PN}
-	insinto /opt/${PN}/lib
-	doins -r "${S}"/lib/*
-	exeinto /opt/${PN}/bin
-	doexe "${S}"/bin/*
-
-	dodir /etc/env.d
-	cat - > "${T}"/99${PN} <<EOF
-AWS_ELB_HOME=/opt/${PN}
-PATH=/opt/${PN}/bin
-ROOTPATH=/opt/${PN}/bin
-EOF
-	doenvd "${T}"/99${PN}
-
-	dodoc "THIRDPARTYLICENSE.TXT"
-}
-
-pkg_postinst() {
-	ewarn "Remember to run: env-update && source /etc/profile if you plan"
-	ewarn "to use these tools in a shell before logging out (or restarting"
-	ewarn "your login manager)"
-	elog
-	elog "You need to put the following in your ~/.bashrc replacing the"
-	elog "values with the full path to your AWS credentials file."
-	elog
-	elog "  export AWS_CREDENTIAL_FILE=/path/and_filename_of_credential_file"
-	elog
-	elog "It should contains two lines: the first line lists the AWS Account's"
-	elog "AWS Access Key ID, and the second line lists the AWS Account's"
-	elog "Secret Access Key. For example:"
-	elog
-	elog "  AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE"
-	elog "  AWSSecretKey=wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2017-12-29 22:33 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-12-29 22:33 UTC (permalink / raw
  To: gentoo-commits

commit:     8ef0f152a919c92245d5947a97c67546c3f68a76
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 19:28:39 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:32:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef0f152

app-admin/aws-elb-tools: [QA] Minor touchups

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild | 31 +++++++++++-----------
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
index c1738a3ffad..7b678445606 100644
--- a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
+++ b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,15 +7,16 @@ DESCRIPTION="Serves as the client interface to the Elastic Load Balancing web se
 HOMEPAGE="http://aws.amazon.com/developertools/Amazon-EC2/2536"
 SRC_URI="mirror://sabayon/${CATEGORY}/ElasticLoadBalancing-${PV}.zip"
 
-S="${WORKDIR}/ElasticLoadBalancing-${PV}"
-
 LICENSE="Amazon"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
+RESTRICT="mirror"
+
 DEPEND="app-arch/unzip"
 RDEPEND="virtual/jre"
-RESTRICT="mirror"
+
+S="${WORKDIR}/ElasticLoadBalancing-${PV}"
 
 src_prepare() {
 	default
@@ -23,27 +24,27 @@ src_prepare() {
 }
 
 src_install() {
-	dodir /opt/${PN}
 	insinto /opt/${PN}/lib
-	doins -r "${S}"/lib/*
+	doins -r lib/.
+
 	exeinto /opt/${PN}/bin
-	doexe "${S}"/bin/*
-
-	dodir /etc/env.d
-	cat - > "${T}"/99${PN} <<EOF
-AWS_ELB_HOME=/opt/${PN}
-PATH=/opt/${PN}/bin
-ROOTPATH=/opt/${PN}/bin
-EOF
+	doexe bin/*
+
+	cat > "${T}"/99${PN} <<- EOF || die
+		AWS_ELB_HOME=/opt/${PN}
+		PATH=/opt/${PN}/bin
+		ROOTPATH=/opt/${PN}/bin
+	EOF
 	doenvd "${T}"/99${PN}
 
-	dodoc "THIRDPARTYLICENSE.TXT"
+	dodoc THIRDPARTYLICENSE.TXT
 }
 
 pkg_postinst() {
 	ewarn "Remember to run: env-update && source /etc/profile if you plan"
 	ewarn "to use these tools in a shell before logging out (or restarting"
 	ewarn "your login manager)"
+
 	elog
 	elog "You need to put the following in your ~/.bashrc replacing the"
 	elog "values with the full path to your AWS credentials file."


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2020-10-06 13:26 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2020-10-06 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     25453bac8e257ee2b6c2f6735a24af5087fc63cb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  6 13:25:50 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  6 13:25:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25453bac

app-admin/aws-elb-tools: Keyword 1.0.15.1-r1 arm64, #741864

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

 app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
index 7b678445606..ab4c2ae10a5 100644
--- a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
+++ b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://sabayon/${CATEGORY}/ElasticLoadBalancing-${PV}.zip"
 
 LICENSE="Amazon"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE=""
 RESTRICT="mirror"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/
@ 2023-09-13  3:49 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-09-13  3:49 UTC (permalink / raw
  To: gentoo-commits

commit:     9ad94ac0926a094609cb09d5c3e05317e6fb7c14
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Mon Sep  4 04:01:26 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 03:48:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad94ac0

app-admin/aws-elb-tools: update EAPI 6 -> 8

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 ...s-1.0.15.1-r1.ebuild => aws-elb-tools-1.0.15.1-r2.ebuild} | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r2.ebuild
similarity index 91%
rename from app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
rename to app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r2.ebuild
index ab4c2ae10a56..c0f148a89237 100644
--- a/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r1.ebuild
+++ b/app-admin/aws-elb-tools/aws-elb-tools-1.0.15.1-r2.ebuild
@@ -1,23 +1,21 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="Serves as the client interface to the Elastic Load Balancing web service"
-HOMEPAGE="http://aws.amazon.com/developertools/Amazon-EC2/2536"
+HOMEPAGE="https://aws.amazon.com/developertools/Amazon-EC2/2536"
 SRC_URI="mirror://sabayon/${CATEGORY}/ElasticLoadBalancing-${PV}.zip"
+S="${WORKDIR}/ElasticLoadBalancing-${PV}"
 
 LICENSE="Amazon"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
 RESTRICT="mirror"
 
-DEPEND="app-arch/unzip"
+BDEPEND="app-arch/unzip"
 RDEPEND="virtual/jre"
 
-S="${WORKDIR}/ElasticLoadBalancing-${PV}"
-
 src_prepare() {
 	default
 	find . -name '*.cmd' -delete || die


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

end of thread, other threads:[~2023-09-13  3:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-29 13:25 [gentoo-commits] repo/gentoo:master commit in: app-admin/aws-elb-tools/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2016-07-07  8:50 Austin English
2016-07-07 16:42 Austin English
2017-12-29 22:33 David Seifert
2017-12-29 22:33 David Seifert
2020-10-06 13:26 Sam James
2023-09-13  3:49 Sam James

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