public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2017-05-27 20:55 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 25+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2017-05-27 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     01d954041cf94c2db1e429cc09d96e35358caeb9
Author:     Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 18:25:55 2017 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Sat May 27 20:55:00 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01d95404

dev-erlang/epam: Bump version

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-erlang/epam/Manifest          |  1 +
 dev-erlang/epam/epam-1.0.2.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 6c75e7daf00..cd1317386b2 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1 +1,2 @@
 DIST epam-1.0.0.tar.gz 44008 SHA256 0febab627700f9570bfafd1a93499a5f43de74d85c7a5bdfda8067c6b75f8f4f SHA512 c0b1fbdc1e910f24b2f39ea34cf6fd5859f3ab0cf762a16cf9ef71b1e49129c8238001151dd9031046049967f31fd2cb3d0c06a7d8bdd46e49f19862c143f374 WHIRLPOOL 9037a749657ea55024a355f2f6f96b906118175be6a68ef8cc0d78a379da1181b01114d739c2d5fc8cee61775d710ac84903a8f5e59ce82bdd9b7bbb5fd405c0
+DIST epam-1.0.2.tar.gz 43720 SHA256 96906817cde9e9a048d6a42e4eae82c5e1c9206c34746e83a71c7f636058d0d5 SHA512 a3fdb379d8c25e56e51dcf1e683d289e9f3d19a537b1a55ca4c09185eb5731fe073a5bf0dd1449f09f8ee5b7d868b0e63f04473c1f3d1b97722dcd9832e4e030 WHIRLPOOL 9e26577ffd5128ad28844f06991182b4a98964d4d5cdeafd7ddb67950e8fb75dc6803531de6d615eee04ba40b40696c0a61be20634c3ab35d99ca0342b497fcd

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
new file mode 100644
index 00000000000..ae214ce36f1
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2017-05-27 20:55 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 25+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2017-05-27 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     1f644f26d001988885f7945480d1584e8faad8e3
Author:     Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 14:30:34 2017 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Sat May 27 20:55:00 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f644f26

dev-erlang/epam: Add SUID bit for epam binary

Gentoo-Bug: 612608
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-erlang/epam/epam-1.0.0-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/dev-erlang/epam/epam-1.0.0-r1.ebuild b/dev-erlang/epam/epam-1.0.0-r1.ebuild
new file mode 100644
index 00000000000..58d8b83046a
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.0-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+REBAR_APP_SRC=src/p1_pam.app.src
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2018-05-27 14:14 Thomas Deutschmann
  0 siblings, 0 replies; 25+ messages in thread
From: Thomas Deutschmann @ 2018-05-27 14:14 UTC (permalink / raw
  To: gentoo-commits

commit:     7c6b2dfd890d94b37524c35c9f62e00042b68f20
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 14:13:37 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun May 27 14:14:00 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6b2dfd

dev-erlang/epam: x86 stable (bug #649202)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-erlang/epam/epam-1.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
index ae214ce36f1..b9a983771bb 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.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
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2018-05-27 15:33 Mikle Kolyada
  0 siblings, 0 replies; 25+ messages in thread
From: Mikle Kolyada @ 2018-05-27 15:33 UTC (permalink / raw
  To: gentoo-commits

commit:     255398558235283be7a2fd95e3f0abb1e1fc8b33
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 15:31:29 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 27 15:31:29 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25539855

dev-erlang/epam: amd64 stable wrt bug #649202

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-erlang/epam/epam-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
index b9a983771bb..87a63a1d27a 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2018-06-17 10:21 Sergei Trofimovich
  0 siblings, 0 replies; 25+ messages in thread
From: Sergei Trofimovich @ 2018-06-17 10:21 UTC (permalink / raw
  To: gentoo-commits

commit:     1e5688927a569983cbc89f67a048d7950f4c39e6
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun Jun 17 09:41:46 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 10:21:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e568892

dev-erlang/epam: stable 1.0.2 for sparc

Bug: https://bugs.gentoo.org/649202
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-erlang/epam/epam-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
index 87a63a1d27a..4bc7d13454c 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2018-06-25 13:36 Tobias Klausmann
  0 siblings, 0 replies; 25+ messages in thread
From: Tobias Klausmann @ 2018-06-25 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     e37ece0e3b61352ded9ec2ddc951980da9647dd7
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 25 13:35:44 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Jun 25 13:36:00 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e37ece0e

dev-erlang/epam-1.0.2-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/649202

 dev-erlang/epam/epam-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
index 4bc7d13454c..7d24c551f71 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc sparc x86"
+KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2018-07-01  9:11 Sergei Trofimovich
  0 siblings, 0 replies; 25+ messages in thread
From: Sergei Trofimovich @ 2018-07-01  9:11 UTC (permalink / raw
  To: gentoo-commits

commit:     2ddde6772950f991b9724a7b58e0ffd68c6aa709
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  1 09:10:37 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jul  1 09:10:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ddde677

dev-erlang/epam: stable 1.0.2 for ppc64, bug #649202

Bug: https://bugs.gentoo.org/649202
Package-Manager: Portage-2.3.41, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc64"

 dev-erlang/epam/epam-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
index 7d24c551f71..a78069218ba 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc sparc x86"
+KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc ppc64 sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2018-10-16 21:28 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 25+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2018-10-16 21:28 UTC (permalink / raw
  To: gentoo-commits

commit:     012f9c2d184b0f4fb8b03fcf6bc6cc268d668d1d
Author:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 16 21:27:26 2018 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Tue Oct 16 21:27:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=012f9c2d

dev-erlang/epam: Bump version

Bug: https://bugs.gentoo.org/626260
Signed-off-by: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo.org>

 dev-erlang/epam/Manifest          |  1 +
 dev-erlang/epam/epam-1.0.4.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 6ea84e414cf..3772c0cdc71 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,2 +1,3 @@
 DIST epam-1.0.0.tar.gz 44008 BLAKE2B 5dcb21b17bd3e4a2dca5ab4776aa609cce784f0df1f6192acaa35024a342d72f6233c03997218113bc54d18e9ef3473dc420f93a6f00fb2c2c8079c4ce6dc353 SHA512 c0b1fbdc1e910f24b2f39ea34cf6fd5859f3ab0cf762a16cf9ef71b1e49129c8238001151dd9031046049967f31fd2cb3d0c06a7d8bdd46e49f19862c143f374
 DIST epam-1.0.2.tar.gz 43720 BLAKE2B 39a1056d068bdceb7ff640a498b0766aa59649228b03e03f9385bfc106f45aa210315162d4386907a1e9cbc8f177289adebf72f527a4eaf270cd62413f1daa13 SHA512 a3fdb379d8c25e56e51dcf1e683d289e9f3d19a537b1a55ca4c09185eb5731fe073a5bf0dd1449f09f8ee5b7d868b0e63f04473c1f3d1b97722dcd9832e4e030
+DIST epam-1.0.4.tar.gz 43816 BLAKE2B a8070e45be428e1cd55dbe369051f2c5566d6d8d41af5d4258ec8dc86b70d7e55f316df10d0a65687d0ad8c5de2bd493859fd0c839ad57c90bb0eb1e4ea9db96 SHA512 46cbdfa683f48f24c4709837cba49745c3b7f87b6c1223b01ced65d547a8ec1a0467997070daf40bedeeb8298d7bb31eb33b331098b406964642f059b77fd313

diff --git a/dev-erlang/epam/epam-1.0.4.ebuild b/dev-erlang/epam/epam-1.0.4.ebuild
new file mode 100644
index 00000000000..faddaeab02f
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2019-08-31 14:12 Hanno Boeck
  0 siblings, 0 replies; 25+ messages in thread
From: Hanno Boeck @ 2019-08-31 14:12 UTC (permalink / raw
  To: gentoo-commits

commit:     21d330f533cc31bb18048d7d15b02069df29abec
Author:     Hanno <hanno <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 14:11:11 2019 +0000
Commit:     Hanno Boeck <hanno <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 14:11:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d330f5

dev-erlang/epam: Version bump

Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.74, Repoman-2.3.17

 dev-erlang/epam/Manifest          |  1 +
 dev-erlang/epam/epam-1.0.6.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 3772c0cdc71..2c596bd0dbe 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,3 +1,4 @@
 DIST epam-1.0.0.tar.gz 44008 BLAKE2B 5dcb21b17bd3e4a2dca5ab4776aa609cce784f0df1f6192acaa35024a342d72f6233c03997218113bc54d18e9ef3473dc420f93a6f00fb2c2c8079c4ce6dc353 SHA512 c0b1fbdc1e910f24b2f39ea34cf6fd5859f3ab0cf762a16cf9ef71b1e49129c8238001151dd9031046049967f31fd2cb3d0c06a7d8bdd46e49f19862c143f374
 DIST epam-1.0.2.tar.gz 43720 BLAKE2B 39a1056d068bdceb7ff640a498b0766aa59649228b03e03f9385bfc106f45aa210315162d4386907a1e9cbc8f177289adebf72f527a4eaf270cd62413f1daa13 SHA512 a3fdb379d8c25e56e51dcf1e683d289e9f3d19a537b1a55ca4c09185eb5731fe073a5bf0dd1449f09f8ee5b7d868b0e63f04473c1f3d1b97722dcd9832e4e030
 DIST epam-1.0.4.tar.gz 43816 BLAKE2B a8070e45be428e1cd55dbe369051f2c5566d6d8d41af5d4258ec8dc86b70d7e55f316df10d0a65687d0ad8c5de2bd493859fd0c839ad57c90bb0eb1e4ea9db96 SHA512 46cbdfa683f48f24c4709837cba49745c3b7f87b6c1223b01ced65d547a8ec1a0467997070daf40bedeeb8298d7bb31eb33b331098b406964642f059b77fd313
+DIST epam-1.0.6.tar.gz 47494 BLAKE2B 8120e4f10222468ee2adf2f0ec9cffcaaea8c1fc92faf9889de0f970562631cb54cd9ba34d01994dcf657108c4232158d5617e4b9c884bc84e5eb383028b8e3f SHA512 2c316a46ac734be2c74a86e767b413fa8ff1b296622b85de4828fdd60c84e5b3962f8b76004fcb39ab43a345ec967e3f3db4ac6d0e7335dc982dbcf1edf02c4b

diff --git a/dev-erlang/epam/epam-1.0.6.ebuild b/dev-erlang/epam/epam-1.0.6.ebuild
new file mode 100644
index 00000000000..6056b365b81
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2019-11-03  9:20 Hanno Boeck
  0 siblings, 0 replies; 25+ messages in thread
From: Hanno Boeck @ 2019-11-03  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     262a8649768aaf2373981fa111bf8446652eb1dc
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  3 09:20:29 2019 +0000
Commit:     Hanno Boeck <hanno <AT> gentoo <DOT> org>
CommitDate: Sun Nov  3 09:20:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=262a8649

dev-erlang/epam: Assign to ejabberd project

Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.78, Repoman-2.3.17

 dev-erlang/epam/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-erlang/epam/metadata.xml b/dev-erlang/epam/metadata.xml
index 86241e316e6..a9b652440b4 100644
--- a/dev-erlang/epam/metadata.xml
+++ b/dev-erlang/epam/metadata.xml
@@ -1,7 +1,9 @@
 <?xml version='1.0' encoding='UTF-8'?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>ejabberd@gentoo.org</email>
+	</maintainer>
 	<upstream>
 		<remote-id type="github">processone/epam</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2019-11-17  4:16 Matt Turner
  0 siblings, 0 replies; 25+ messages in thread
From: Matt Turner @ 2019-11-17  4:16 UTC (permalink / raw
  To: gentoo-commits

commit:     f66d733035c7057ac7a92d737ac9bdc7069dc30f
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 17 04:13:29 2019 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 17 04:13:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66d7330

dev-erlang/epam: Drop alpha keywords

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-erlang/epam/epam-1.0.2.ebuild | 2 +-
 dev-erlang/epam/epam-1.0.6.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
index a1d38a1c1c4..f718c6eefb5 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"

diff --git a/dev-erlang/epam/epam-1.0.6.ebuild b/dev-erlang/epam/epam-1.0.6.ebuild
index 6056b365b81..529ffdd2798 100644
--- a/dev-erlang/epam/epam-1.0.6.ebuild
+++ b/dev-erlang/epam/epam-1.0.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2020-04-01  9:15 Hanno Böck
  0 siblings, 0 replies; 25+ messages in thread
From: Hanno Böck @ 2020-04-01  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     cd3199fa1b039b8444a5ae9a00620f227a79fb2b
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  1 09:15:01 2020 +0000
Commit:     Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Wed Apr  1 09:15:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3199fa

dev-erlang/epam: Version bump

Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.96, Repoman-2.3.22

 dev-erlang/epam/Manifest          |  1 +
 dev-erlang/epam/epam-1.0.7.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index a62e1638110..71d1af7a27a 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,2 +1,3 @@
 DIST epam-1.0.2.tar.gz 43720 BLAKE2B 39a1056d068bdceb7ff640a498b0766aa59649228b03e03f9385bfc106f45aa210315162d4386907a1e9cbc8f177289adebf72f527a4eaf270cd62413f1daa13 SHA512 a3fdb379d8c25e56e51dcf1e683d289e9f3d19a537b1a55ca4c09185eb5731fe073a5bf0dd1449f09f8ee5b7d868b0e63f04473c1f3d1b97722dcd9832e4e030
 DIST epam-1.0.6.tar.gz 47494 BLAKE2B 8120e4f10222468ee2adf2f0ec9cffcaaea8c1fc92faf9889de0f970562631cb54cd9ba34d01994dcf657108c4232158d5617e4b9c884bc84e5eb383028b8e3f SHA512 2c316a46ac734be2c74a86e767b413fa8ff1b296622b85de4828fdd60c84e5b3962f8b76004fcb39ab43a345ec967e3f3db4ac6d0e7335dc982dbcf1edf02c4b
+DIST epam-1.0.7.tar.gz 47506 BLAKE2B 8ac8026623a653c4d0f897fb08044003c2426ca1309b1e57cbdb6f6ece4662fd15143293e1dae1f806cbc3d6cf028712701e2587750de15f44304ed7e28c17bd SHA512 ddfcb6a0ef955e6ef0fba2c98e25fbc8532c829b80c4150d0545bb9b5114773184af0adba49921cf6e2363a0224dedccd7bf81b5da292dda74f8966a8e73e1b2

diff --git a/dev-erlang/epam/epam-1.0.7.ebuild b/dev-erlang/epam/epam-1.0.7.ebuild
new file mode 100644
index 00000000000..bc3c599bafe
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.7.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2020-07-01 11:46 Hanno Böck
  0 siblings, 0 replies; 25+ messages in thread
From: Hanno Böck @ 2020-07-01 11:46 UTC (permalink / raw
  To: gentoo-commits

commit:     236fc5de64d10498f60defed4c64d68340c67fa4
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  1 11:45:52 2020 +0000
Commit:     Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Wed Jul  1 11:45:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=236fc5de

dev-erlang/epam: Version bump

Closes: https://bugs.gentoo.org/724624
Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.103, Repoman-2.3.23

 dev-erlang/epam/Manifest          |  1 +
 dev-erlang/epam/epam-1.0.8.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 71d1af7a27a..6c8ff9be278 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,3 +1,4 @@
 DIST epam-1.0.2.tar.gz 43720 BLAKE2B 39a1056d068bdceb7ff640a498b0766aa59649228b03e03f9385bfc106f45aa210315162d4386907a1e9cbc8f177289adebf72f527a4eaf270cd62413f1daa13 SHA512 a3fdb379d8c25e56e51dcf1e683d289e9f3d19a537b1a55ca4c09185eb5731fe073a5bf0dd1449f09f8ee5b7d868b0e63f04473c1f3d1b97722dcd9832e4e030
 DIST epam-1.0.6.tar.gz 47494 BLAKE2B 8120e4f10222468ee2adf2f0ec9cffcaaea8c1fc92faf9889de0f970562631cb54cd9ba34d01994dcf657108c4232158d5617e4b9c884bc84e5eb383028b8e3f SHA512 2c316a46ac734be2c74a86e767b413fa8ff1b296622b85de4828fdd60c84e5b3962f8b76004fcb39ab43a345ec967e3f3db4ac6d0e7335dc982dbcf1edf02c4b
 DIST epam-1.0.7.tar.gz 47506 BLAKE2B 8ac8026623a653c4d0f897fb08044003c2426ca1309b1e57cbdb6f6ece4662fd15143293e1dae1f806cbc3d6cf028712701e2587750de15f44304ed7e28c17bd SHA512 ddfcb6a0ef955e6ef0fba2c98e25fbc8532c829b80c4150d0545bb9b5114773184af0adba49921cf6e2363a0224dedccd7bf81b5da292dda74f8966a8e73e1b2
+DIST epam-1.0.8.tar.gz 47334 BLAKE2B be914b0a5e4657e3ddb3e9bcb607448b14451e112c0b929159a962ca8bdc778e6d7d358fb4053b500e71fddc2fbd16ce6d5b543a5f592c9037d71b4ec09aacc7 SHA512 b09624b7d1650ae741bcfcdddceacf5bfd29bb3e00a4044498d6eaec328f8762423f71025fb89a8242c76934c56b8d60f1910fc390766382468f3d844723bef2

diff --git a/dev-erlang/epam/epam-1.0.8.ebuild b/dev-erlang/epam/epam-1.0.8.ebuild
new file mode 100644
index 00000000000..bc3c599bafe
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.8.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2020-08-06 11:47 Agostino Sarubbo
  0 siblings, 0 replies; 25+ messages in thread
From: Agostino Sarubbo @ 2020-08-06 11:47 UTC (permalink / raw
  To: gentoo-commits

commit:     daca05c261ca869f897110d099253acb1309e7e9
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  6 11:45:26 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Aug  6 11:45:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daca05c2

dev-erlang/epam: amd64 stable wrt bug #735926

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-erlang/epam/epam-1.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.8.ebuild b/dev-erlang/epam/epam-1.0.8.ebuild
index bc3c599bafe..2cd110a7b73 100644
--- a/dev-erlang/epam/epam-1.0.8.ebuild
+++ b/dev-erlang/epam/epam-1.0.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2020-08-06 11:52 Agostino Sarubbo
  0 siblings, 0 replies; 25+ messages in thread
From: Agostino Sarubbo @ 2020-08-06 11:52 UTC (permalink / raw
  To: gentoo-commits

commit:     8418ac8c6521dfe67dc437f71a7e2f9ea82073ca
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  6 11:51:42 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Aug  6 11:51:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8418ac8c

dev-erlang/epam: x86 stable wrt bug #735926

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-erlang/epam/epam-1.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.8.ebuild b/dev-erlang/epam/epam-1.0.8.ebuild
index 2cd110a7b73..8d61dee63ee 100644
--- a/dev-erlang/epam/epam-1.0.8.ebuild
+++ b/dev-erlang/epam/epam-1.0.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
 	sys-libs/pam"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2020-10-13 10:19 Hanno Böck
  0 siblings, 0 replies; 25+ messages in thread
From: Hanno Böck @ 2020-10-13 10:19 UTC (permalink / raw
  To: gentoo-commits

commit:     4e2ae4aa4d69c6f11915534b72d1e6deee64442d
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 13 10:18:54 2020 +0000
Commit:     Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Tue Oct 13 10:18:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e2ae4aa

dev-erlang/epam: Remove old

Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.1

 dev-erlang/epam/Manifest          |  3 ---
 dev-erlang/epam/epam-1.0.2.ebuild | 33 ---------------------------------
 dev-erlang/epam/epam-1.0.6.ebuild | 33 ---------------------------------
 dev-erlang/epam/epam-1.0.7.ebuild | 33 ---------------------------------
 4 files changed, 102 deletions(-)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 6c8ff9be278..a4dd04810be 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,4 +1 @@
-DIST epam-1.0.2.tar.gz 43720 BLAKE2B 39a1056d068bdceb7ff640a498b0766aa59649228b03e03f9385bfc106f45aa210315162d4386907a1e9cbc8f177289adebf72f527a4eaf270cd62413f1daa13 SHA512 a3fdb379d8c25e56e51dcf1e683d289e9f3d19a537b1a55ca4c09185eb5731fe073a5bf0dd1449f09f8ee5b7d868b0e63f04473c1f3d1b97722dcd9832e4e030
-DIST epam-1.0.6.tar.gz 47494 BLAKE2B 8120e4f10222468ee2adf2f0ec9cffcaaea8c1fc92faf9889de0f970562631cb54cd9ba34d01994dcf657108c4232158d5617e4b9c884bc84e5eb383028b8e3f SHA512 2c316a46ac734be2c74a86e767b413fa8ff1b296622b85de4828fdd60c84e5b3962f8b76004fcb39ab43a345ec967e3f3db4ac6d0e7335dc982dbcf1edf02c4b
-DIST epam-1.0.7.tar.gz 47506 BLAKE2B 8ac8026623a653c4d0f897fb08044003c2426ca1309b1e57cbdb6f6ece4662fd15143293e1dae1f806cbc3d6cf028712701e2587750de15f44304ed7e28c17bd SHA512 ddfcb6a0ef955e6ef0fba2c98e25fbc8532c829b80c4150d0545bb9b5114773184af0adba49921cf6e2363a0224dedccd7bf81b5da292dda74f8966a8e73e1b2
 DIST epam-1.0.8.tar.gz 47334 BLAKE2B be914b0a5e4657e3ddb3e9bcb607448b14451e112c0b929159a962ca8bdc778e6d7d358fb4053b500e71fddc2fbd16ce6d5b543a5f592c9037d71b4ec09aacc7 SHA512 b09624b7d1650ae741bcfcdddceacf5bfd29bb3e00a4044498d6eaec328f8762423f71025fb89a8242c76934c56b8d60f1910fc390766382468f3d844723bef2

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild b/dev-erlang/epam/epam-1.0.2.ebuild
deleted file mode 100644
index f718c6eefb5..00000000000
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rebar user
-
-DESCRIPTION="epam for ejabberd to help with PAM authentication support"
-HOMEPAGE="https://github.com/processone/epam"
-SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
-
-DEPEND=">=dev-lang/erlang-17.1
-	sys-libs/pam"
-RDEPEND="${DEPEND}"
-
-DOCS=( README.md )
-
-pkg_setup() {
-	enewgroup "${PN}"
-}
-
-src_install() {
-	rebar_src_install
-
-	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
-	fowners root:"${PN}" "${epam_path}"
-	fperms 4750 "${epam_path}"
-}

diff --git a/dev-erlang/epam/epam-1.0.6.ebuild b/dev-erlang/epam/epam-1.0.6.ebuild
deleted file mode 100644
index 529ffdd2798..00000000000
--- a/dev-erlang/epam/epam-1.0.6.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rebar user
-
-DESCRIPTION="epam for ejabberd to help with PAM authentication support"
-HOMEPAGE="https://github.com/processone/epam"
-SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-DEPEND=">=dev-lang/erlang-17.1
-	sys-libs/pam"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG.md README.md )
-
-pkg_setup() {
-	enewgroup "${PN}"
-}
-
-src_install() {
-	rebar_src_install
-
-	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
-	fowners root:"${PN}" "${epam_path}"
-	fperms 4750 "${epam_path}"
-}

diff --git a/dev-erlang/epam/epam-1.0.7.ebuild b/dev-erlang/epam/epam-1.0.7.ebuild
deleted file mode 100644
index bc3c599bafe..00000000000
--- a/dev-erlang/epam/epam-1.0.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rebar user
-
-DESCRIPTION="epam for ejabberd to help with PAM authentication support"
-HOMEPAGE="https://github.com/processone/epam"
-SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-DEPEND=">=dev-lang/erlang-17.1
-	sys-libs/pam"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG.md README.md )
-
-pkg_setup() {
-	enewgroup "${PN}"
-}
-
-src_install() {
-	rebar_src_install
-
-	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
-	fowners root:"${PN}" "${epam_path}"
-	fperms 4750 "${epam_path}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2020-10-13 10:19 Hanno Böck
  0 siblings, 0 replies; 25+ messages in thread
From: Hanno Böck @ 2020-10-13 10:19 UTC (permalink / raw
  To: gentoo-commits

commit:     b80c696d9807ecd774c381f7057e79d0362cc5b7
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 13 10:19:37 2020 +0000
Commit:     Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Tue Oct 13 10:19:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80c696d

dev-erlang/epam: Bump

Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.1

 dev-erlang/epam/Manifest          |  1 +
 dev-erlang/epam/epam-1.0.9.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index a4dd04810be..e5e3b0447ac 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1 +1,2 @@
 DIST epam-1.0.8.tar.gz 47334 BLAKE2B be914b0a5e4657e3ddb3e9bcb607448b14451e112c0b929159a962ca8bdc778e6d7d358fb4053b500e71fddc2fbd16ce6d5b543a5f592c9037d71b4ec09aacc7 SHA512 b09624b7d1650ae741bcfcdddceacf5bfd29bb3e00a4044498d6eaec328f8762423f71025fb89a8242c76934c56b8d60f1910fc390766382468f3d844723bef2
+DIST epam-1.0.9.tar.gz 47548 BLAKE2B b0a8c6e07d788160e153c75e6d8c6535f68279f1f404b25c0fe5ad1559251059a6efd38a9a30c5b180513f69fb22674ba772c29fa598bed5ddc6dcacd9f0f419 SHA512 f537dbfdba09b3f65775e2235e90e2e91951908d95cd10df05581c740d7254cce53a3a2f4131df75f5c6400b3b2cdf6b37651a554076e9cfa66fb3c627d8562c

diff --git a/dev-erlang/epam/epam-1.0.9.ebuild b/dev-erlang/epam/epam-1.0.9.ebuild
new file mode 100644
index 00000000000..bc3c599bafe
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.9.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar user
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-17.1
+	sys-libs/pam"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+pkg_setup() {
+	enewgroup "${PN}"
+}
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2021-06-01  9:35 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-06-01  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c333e4edb79f74a3823841bd08330150a71c369f
Author:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
AuthorDate: Sat Apr 10 07:18:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  1 09:35:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c333e4ed

dev-erlang/epam: migrate to GLEP 81: depend on acct-group/epam

Closes: https://bugs.gentoo.org/755185
Signed-off-by: Florian Schmaus <flo <AT> geekplace.eu>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../epam/{epam-1.0.8.ebuild => epam-1.0.8-r1.ebuild}      | 15 +++++++--------
 .../epam/{epam-1.0.9.ebuild => epam-1.0.9-r1.ebuild}      | 15 +++++++--------
 2 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/dev-erlang/epam/epam-1.0.8.ebuild b/dev-erlang/epam/epam-1.0.8-r1.ebuild
similarity index 80%
rename from dev-erlang/epam/epam-1.0.8.ebuild
rename to dev-erlang/epam/epam-1.0.8-r1.ebuild
index 8d61dee63ee..cc1bc6c2e84 100644
--- a/dev-erlang/epam/epam-1.0.8.ebuild
+++ b/dev-erlang/epam/epam-1.0.8-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit rebar user
+inherit rebar
 
 DESCRIPTION="epam for ejabberd to help with PAM authentication support"
 HOMEPAGE="https://github.com/processone/epam"
@@ -14,16 +14,15 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
-DEPEND=">=dev-lang/erlang-17.1
-	sys-libs/pam"
+DEPEND="
+	acct-group/epam
+	>=dev-lang/erlang-17.1
+	sys-libs/pam
+"
 RDEPEND="${DEPEND}"
 
 DOCS=( CHANGELOG.md README.md )
 
-pkg_setup() {
-	enewgroup "${PN}"
-}
-
 src_install() {
 	rebar_src_install
 

diff --git a/dev-erlang/epam/epam-1.0.9.ebuild b/dev-erlang/epam/epam-1.0.9-r1.ebuild
similarity index 80%
rename from dev-erlang/epam/epam-1.0.9.ebuild
rename to dev-erlang/epam/epam-1.0.9-r1.ebuild
index bc3c599bafe..ced309ebcc0 100644
--- a/dev-erlang/epam/epam-1.0.9.ebuild
+++ b/dev-erlang/epam/epam-1.0.9-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit rebar user
+inherit rebar
 
 DESCRIPTION="epam for ejabberd to help with PAM authentication support"
 HOMEPAGE="https://github.com/processone/epam"
@@ -14,16 +14,15 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
-DEPEND=">=dev-lang/erlang-17.1
-	sys-libs/pam"
+DEPEND="
+	acct-group/epam
+	>=dev-lang/erlang-17.1
+	sys-libs/pam
+"
 RDEPEND="${DEPEND}"
 
 DOCS=( CHANGELOG.md README.md )
 
-pkg_setup() {
-	enewgroup "${PN}"
-}
-
 src_install() {
 	rebar_src_install
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2021-06-01  9:35 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-06-01  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     274a73ba4edd339fe5d6d17bd3db7a1a9091158c
Author:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
AuthorDate: Thu Apr  8 06:37:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  1 09:35:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274a73ba

dev-erlang/epam: add 1.0.10

Bug: https://bugs.gentoo.org/766686
Signed-off-by: Florian Schmaus <flo <AT> geekplace.eu>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-erlang/epam/Manifest           |  1 +
 dev-erlang/epam/epam-1.0.10.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index e5e3b0447ac..426c4da10f7 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,2 +1,3 @@
+DIST epam-1.0.10.tar.gz 47727 BLAKE2B 9107bc991a32cf866ea1809a4d36ebb8b00c8c38e9d4eb9333298851fb6f00d89ac5df1e19ee95132f00064ba01c36725cb5351a0188a32e5be655dec7c848b2 SHA512 a659011a9ee8fdf59bd4950c78dcd0f001bf3c4512dfae156d6d66908b918968c80f836bc9801c98f0c3bb90d7bb2df6a36f2066086d623c74c96647d3637054
 DIST epam-1.0.8.tar.gz 47334 BLAKE2B be914b0a5e4657e3ddb3e9bcb607448b14451e112c0b929159a962ca8bdc778e6d7d358fb4053b500e71fddc2fbd16ce6d5b543a5f592c9037d71b4ec09aacc7 SHA512 b09624b7d1650ae741bcfcdddceacf5bfd29bb3e00a4044498d6eaec328f8762423f71025fb89a8242c76934c56b8d60f1910fc390766382468f3d844723bef2
 DIST epam-1.0.9.tar.gz 47548 BLAKE2B b0a8c6e07d788160e153c75e6d8c6535f68279f1f404b25c0fe5ad1559251059a6efd38a9a30c5b180513f69fb22674ba772c29fa598bed5ddc6dcacd9f0f419 SHA512 f537dbfdba09b3f65775e2235e90e2e91951908d95cd10df05581c740d7254cce53a3a2f4131df75f5c6400b3b2cdf6b37651a554076e9cfa66fb3c627d8562c

diff --git a/dev-erlang/epam/epam-1.0.10.ebuild b/dev-erlang/epam/epam-1.0.10.ebuild
new file mode 100644
index 00000000000..fb79360470e
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.10.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit rebar
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND="
+	acct-group/epam
+	>=dev-lang/erlang-17.1
+	sys-libs/pam
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:${PN} "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2021-07-08 15:37 Florian Schmaus
  0 siblings, 0 replies; 25+ messages in thread
From: Florian Schmaus @ 2021-07-08 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     49d35570744a130977b1bab56d5a5af032a6de8b
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  8 15:37:08 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Jul  8 15:37:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d35570

dev-erlang/epam: Stabilize 1.0.10 amd64 x86, #801088

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-erlang/epam/epam-1.0.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.10.ebuild b/dev-erlang/epam/epam-1.0.10.ebuild
index fb79360470e..6e786105264 100644
--- a/dev-erlang/epam/epam-1.0.10.ebuild
+++ b/dev-erlang/epam/epam-1.0.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 DEPEND="
 	acct-group/epam


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2021-12-10 13:06 Florian Schmaus
  0 siblings, 0 replies; 25+ messages in thread
From: Florian Schmaus @ 2021-12-10 13:06 UTC (permalink / raw
  To: gentoo-commits

commit:     3af519b6b6f3b321a0e51b00a44bde9c7d19ad25
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 10 08:37:50 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Dec 10 13:03:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af519b6

dev-erlang/epam: add 1.0.12

Bug: https://bugs.gentoo.org/810886
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-erlang/epam/Manifest           |  1 +
 dev-erlang/epam/epam-1.0.12.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 426c4da10f7e..a891e8a5866d 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,3 +1,4 @@
 DIST epam-1.0.10.tar.gz 47727 BLAKE2B 9107bc991a32cf866ea1809a4d36ebb8b00c8c38e9d4eb9333298851fb6f00d89ac5df1e19ee95132f00064ba01c36725cb5351a0188a32e5be655dec7c848b2 SHA512 a659011a9ee8fdf59bd4950c78dcd0f001bf3c4512dfae156d6d66908b918968c80f836bc9801c98f0c3bb90d7bb2df6a36f2066086d623c74c96647d3637054
+DIST epam-1.0.12.tar.gz 49074 BLAKE2B 258b51bf483fa7a8fb58b6d6f7482e2fde7d8013f7d99be3c3ef51992f23af0e2b788fdc71f45f26c9a59af36e39abef646e4c7381f7d997b5fe7e58b600ad64 SHA512 61a1d49c3316fb7f8fcc8b7d7c1ab0b5dd87fa31cecac679a850d191fe9171f7e01473b9979f8107c1c4567836e07ced67336dd5133dfdc5d4680cb3b6c3b270
 DIST epam-1.0.8.tar.gz 47334 BLAKE2B be914b0a5e4657e3ddb3e9bcb607448b14451e112c0b929159a962ca8bdc778e6d7d358fb4053b500e71fddc2fbd16ce6d5b543a5f592c9037d71b4ec09aacc7 SHA512 b09624b7d1650ae741bcfcdddceacf5bfd29bb3e00a4044498d6eaec328f8762423f71025fb89a8242c76934c56b8d60f1910fc390766382468f3d844723bef2
 DIST epam-1.0.9.tar.gz 47548 BLAKE2B b0a8c6e07d788160e153c75e6d8c6535f68279f1f404b25c0fe5ad1559251059a6efd38a9a30c5b180513f69fb22674ba772c29fa598bed5ddc6dcacd9f0f419 SHA512 f537dbfdba09b3f65775e2235e90e2e91951908d95cd10df05581c740d7254cce53a3a2f4131df75f5c6400b3b2cdf6b37651a554076e9cfa66fb3c627d8562c

diff --git a/dev-erlang/epam/epam-1.0.12.ebuild b/dev-erlang/epam/epam-1.0.12.ebuild
new file mode 100644
index 000000000000..90dbfe3dfaba
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.12.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit rebar
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND="
+	acct-group/epam
+	>=dev-lang/erlang-17.1
+	sys-libs/pam
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2022-01-20 20:10 Florian Schmaus
  0 siblings, 0 replies; 25+ messages in thread
From: Florian Schmaus @ 2022-01-20 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     57359212ed344381ee9755013491c960917c8e28
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 20:10:34 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 20:10:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57359212

dev-erlang/epam: Stabilize 1.0.12 amd64, #831401

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-erlang/epam/epam-1.0.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-erlang/epam/epam-1.0.12.ebuild b/dev-erlang/epam/epam-1.0.12.ebuild
index 90dbfe3dfaba..46063ac58227 100644
--- a/dev-erlang/epam/epam-1.0.12.ebuild
+++ b/dev-erlang/epam/epam-1.0.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND="
 	acct-group/epam


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2022-04-10 17:40 Florian Schmaus
  0 siblings, 0 replies; 25+ messages in thread
From: Florian Schmaus @ 2022-04-10 17:40 UTC (permalink / raw
  To: gentoo-commits

commit:     401948ba824cf23026433c8b63c19930a5d43d6e
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 13:47:38 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 17:40:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=401948ba

dev-erlang/epam: drop 1.0.8-r1, 1.0.9-r1, 1.0.10

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-erlang/epam/Manifest             |  3 ---
 dev-erlang/epam/epam-1.0.10.ebuild   | 32 --------------------------------
 dev-erlang/epam/epam-1.0.8-r1.ebuild | 32 --------------------------------
 dev-erlang/epam/epam-1.0.9-r1.ebuild | 32 --------------------------------
 4 files changed, 99 deletions(-)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index a891e8a5866d..0f454f11a700 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1,4 +1 @@
-DIST epam-1.0.10.tar.gz 47727 BLAKE2B 9107bc991a32cf866ea1809a4d36ebb8b00c8c38e9d4eb9333298851fb6f00d89ac5df1e19ee95132f00064ba01c36725cb5351a0188a32e5be655dec7c848b2 SHA512 a659011a9ee8fdf59bd4950c78dcd0f001bf3c4512dfae156d6d66908b918968c80f836bc9801c98f0c3bb90d7bb2df6a36f2066086d623c74c96647d3637054
 DIST epam-1.0.12.tar.gz 49074 BLAKE2B 258b51bf483fa7a8fb58b6d6f7482e2fde7d8013f7d99be3c3ef51992f23af0e2b788fdc71f45f26c9a59af36e39abef646e4c7381f7d997b5fe7e58b600ad64 SHA512 61a1d49c3316fb7f8fcc8b7d7c1ab0b5dd87fa31cecac679a850d191fe9171f7e01473b9979f8107c1c4567836e07ced67336dd5133dfdc5d4680cb3b6c3b270
-DIST epam-1.0.8.tar.gz 47334 BLAKE2B be914b0a5e4657e3ddb3e9bcb607448b14451e112c0b929159a962ca8bdc778e6d7d358fb4053b500e71fddc2fbd16ce6d5b543a5f592c9037d71b4ec09aacc7 SHA512 b09624b7d1650ae741bcfcdddceacf5bfd29bb3e00a4044498d6eaec328f8762423f71025fb89a8242c76934c56b8d60f1910fc390766382468f3d844723bef2
-DIST epam-1.0.9.tar.gz 47548 BLAKE2B b0a8c6e07d788160e153c75e6d8c6535f68279f1f404b25c0fe5ad1559251059a6efd38a9a30c5b180513f69fb22674ba772c29fa598bed5ddc6dcacd9f0f419 SHA512 f537dbfdba09b3f65775e2235e90e2e91951908d95cd10df05581c740d7254cce53a3a2f4131df75f5c6400b3b2cdf6b37651a554076e9cfa66fb3c627d8562c

diff --git a/dev-erlang/epam/epam-1.0.10.ebuild b/dev-erlang/epam/epam-1.0.10.ebuild
deleted file mode 100644
index 6e7861052642..000000000000
--- a/dev-erlang/epam/epam-1.0.10.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rebar
-
-DESCRIPTION="epam for ejabberd to help with PAM authentication support"
-HOMEPAGE="https://github.com/processone/epam"
-SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-DEPEND="
-	acct-group/epam
-	>=dev-lang/erlang-17.1
-	sys-libs/pam
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG.md README.md )
-
-src_install() {
-	rebar_src_install
-
-	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
-	fowners root:${PN} "${epam_path}"
-	fperms 4750 "${epam_path}"
-}

diff --git a/dev-erlang/epam/epam-1.0.8-r1.ebuild b/dev-erlang/epam/epam-1.0.8-r1.ebuild
deleted file mode 100644
index cc1bc6c2e84d..000000000000
--- a/dev-erlang/epam/epam-1.0.8-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rebar
-
-DESCRIPTION="epam for ejabberd to help with PAM authentication support"
-HOMEPAGE="https://github.com/processone/epam"
-SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-DEPEND="
-	acct-group/epam
-	>=dev-lang/erlang-17.1
-	sys-libs/pam
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG.md README.md )
-
-src_install() {
-	rebar_src_install
-
-	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
-	fowners root:"${PN}" "${epam_path}"
-	fperms 4750 "${epam_path}"
-}

diff --git a/dev-erlang/epam/epam-1.0.9-r1.ebuild b/dev-erlang/epam/epam-1.0.9-r1.ebuild
deleted file mode 100644
index ced309ebcc0a..000000000000
--- a/dev-erlang/epam/epam-1.0.9-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rebar
-
-DESCRIPTION="epam for ejabberd to help with PAM authentication support"
-HOMEPAGE="https://github.com/processone/epam"
-SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-DEPEND="
-	acct-group/epam
-	>=dev-lang/erlang-17.1
-	sys-libs/pam
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG.md README.md )
-
-src_install() {
-	rebar_src_install
-
-	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
-	fowners root:"${PN}" "${epam_path}"
-	fperms 4750 "${epam_path}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2023-02-10 12:40 Florian Schmaus
  0 siblings, 0 replies; 25+ messages in thread
From: Florian Schmaus @ 2023-02-10 12:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e2c6b5914cad5e1a1221b63f21ac119ea1f3e582
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 10 11:58:06 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Feb 10 12:39:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2c6b591

dev-erlang/epam: add 1.0.14

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-erlang/epam/Manifest           |  1 +
 dev-erlang/epam/epam-1.0.14.ebuild | 34 ++++++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/dev-erlang/epam/Manifest b/dev-erlang/epam/Manifest
index 0f454f11a700..7479c4b03f95 100644
--- a/dev-erlang/epam/Manifest
+++ b/dev-erlang/epam/Manifest
@@ -1 +1,2 @@
 DIST epam-1.0.12.tar.gz 49074 BLAKE2B 258b51bf483fa7a8fb58b6d6f7482e2fde7d8013f7d99be3c3ef51992f23af0e2b788fdc71f45f26c9a59af36e39abef646e4c7381f7d997b5fe7e58b600ad64 SHA512 61a1d49c3316fb7f8fcc8b7d7c1ab0b5dd87fa31cecac679a850d191fe9171f7e01473b9979f8107c1c4567836e07ced67336dd5133dfdc5d4680cb3b6c3b270
+DIST epam-1.0.14.tar.gz 49229 BLAKE2B 382ddde51558b5cd174fb58d9603e317375efa70456abf1cbcc66a065271178aa0aec7a736c0f426620c27388d19bb6da6c7058e97135a96af858bffe7a19290 SHA512 a8ff1e6095ad6f2cdf8a9766a7d846377e6ac5659851078a67a80595710fbd1552f900f0b4cad0baa54d63d3fbbe6009371f3a51dcaffe95c17565c0f7177678

diff --git a/dev-erlang/epam/epam-1.0.14.ebuild b/dev-erlang/epam/epam-1.0.14.ebuild
new file mode 100644
index 000000000000..6565bcb82ec0
--- /dev/null
+++ b/dev-erlang/epam/epam-1.0.14.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit rebar
+
+DESCRIPTION="epam for ejabberd to help with PAM authentication support"
+HOMEPAGE="https://github.com/processone/epam"
+SRC_URI="
+	https://github.com/processone/${PN}/archive/${PV}.tar.gz
+	-> ${P}.tar.gz
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND="
+	acct-group/epam
+	>=dev-lang/erlang-17.1
+	sys-libs/pam
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( CHANGELOG.md README.md )
+
+src_install() {
+	rebar_src_install
+
+	local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
+	fowners root:"${PN}" "${epam_path}"
+	fperms 4750 "${epam_path}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/
@ 2023-07-28 18:56 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2023-07-28 18:56 UTC (permalink / raw
  To: gentoo-commits

commit:     89ea8341301b0cf54bd9e12be98207c566ad8259
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 28 18:56:01 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 28 18:56:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89ea8341

dev-erlang/epam: Stabilize 1.0.14 amd64, #911392

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

 dev-erlang/epam/epam-1.0.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-erlang/epam/epam-1.0.14.ebuild b/dev-erlang/epam/epam-1.0.14.ebuild
index 6565bcb82ec0..b95732e69ef6 100644
--- a/dev-erlang/epam/epam-1.0.14.ebuild
+++ b/dev-erlang/epam/epam-1.0.14.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND="
 	acct-group/epam


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

end of thread, other threads:[~2023-07-28 18:56 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-10 13:06 [gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/ Florian Schmaus
  -- strict thread matches above, loose matches on Subject: below --
2023-07-28 18:56 Sam James
2023-02-10 12:40 Florian Schmaus
2022-04-10 17:40 Florian Schmaus
2022-01-20 20:10 Florian Schmaus
2021-07-08 15:37 Florian Schmaus
2021-06-01  9:35 Sam James
2021-06-01  9:35 Sam James
2020-10-13 10:19 Hanno Böck
2020-10-13 10:19 Hanno Böck
2020-08-06 11:52 Agostino Sarubbo
2020-08-06 11:47 Agostino Sarubbo
2020-07-01 11:46 Hanno Böck
2020-04-01  9:15 Hanno Böck
2019-11-17  4:16 Matt Turner
2019-11-03  9:20 Hanno Boeck
2019-08-31 14:12 Hanno Boeck
2018-10-16 21:28 Amadeusz Piotr Żołnowski
2018-07-01  9:11 Sergei Trofimovich
2018-06-25 13:36 Tobias Klausmann
2018-06-17 10:21 Sergei Trofimovich
2018-05-27 15:33 Mikle Kolyada
2018-05-27 14:14 Thomas Deutschmann
2017-05-27 20:55 Amadeusz Piotr Żołnowski
2017-05-27 20:55 Amadeusz Piotr Żołnowski

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