public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-admin/su-exec/
@ 2018-01-26 16:00 Manuel Rüger
  0 siblings, 0 replies; 4+ messages in thread
From: Manuel Rüger @ 2018-01-26 16:00 UTC (permalink / raw
  To: gentoo-commits

commit:     4e3699e5d073e3e1b358c8eeac806666bf10bc0c
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 26 15:59:47 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Jan 26 15:59:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3699e5

app-admin/su-exec: Initial version

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/su-exec/Manifest           |  1 +
 app-admin/su-exec/metadata.xml       | 11 +++++++++++
 app-admin/su-exec/su-exec-0.2.ebuild | 29 +++++++++++++++++++++++++++++
 3 files changed, 41 insertions(+)

diff --git a/app-admin/su-exec/Manifest b/app-admin/su-exec/Manifest
new file mode 100644
index 00000000000..1654c0b775d
--- /dev/null
+++ b/app-admin/su-exec/Manifest
@@ -0,0 +1 @@
+DIST su-exec-0.2.tar.gz 2426 BLAKE2B 79eda06463a238371e35dcc7acf2df9e8a7696a531a5dc9d0e9650219a5c72d71cf0e368f2178f83e949cf0f05fbc01e7023085fa2cffebcd8b78e82ab9756e2 SHA512 68155a06c716b362aee1214f22cd325b3e934c05b653d3b084a720458fb04207c0681d218b72adfd5ae8fab0262f7ab90e49eb2e218d1b0d7d7af7911715d4e1

diff --git a/app-admin/su-exec/metadata.xml b/app-admin/su-exec/metadata.xml
new file mode 100644
index 00000000000..662615bdd73
--- /dev/null
+++ b/app-admin/su-exec/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mrueg@gentoo.org</email>
+		<name>Manuel Rüger</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">ncopa/su-exec</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/app-admin/su-exec/su-exec-0.2.ebuild b/app-admin/su-exec/su-exec-0.2.ebuild
new file mode 100644
index 00000000000..4a1e1f1eab6
--- /dev/null
+++ b/app-admin/su-exec/su-exec-0.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Switch user and group id and exec"
+HOMEPAGE="https://github.com/ncopa/su-exec"
+SRC_URI="https://github.com/ncopa/su-exec/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+src_prepare() {
+	default
+	sed -i -e "s/-Werror//" Makefile || die
+}
+
+src_compile() {
+	CC=$(tc-getCC) emake
+}
+
+src_install() {
+	dobin ${PN}
+	dodoc README.md
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/su-exec/
@ 2018-01-29 15:45 Manuel Rüger
  0 siblings, 0 replies; 4+ messages in thread
From: Manuel Rüger @ 2018-01-29 15:45 UTC (permalink / raw
  To: gentoo-commits

commit:     16e25f1f2105543e5c0a4725623966b9a50d3ec4
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 29 15:42:38 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Jan 29 15:43:11 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e25f1f

app-admin/su-exec: Add support for static build

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/su-exec/su-exec-0.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/su-exec/su-exec-0.2.ebuild b/app-admin/su-exec/su-exec-0.2.ebuild
index 4a1e1f1eab6..f51e2f258af 100644
--- a/app-admin/su-exec/su-exec-0.2.ebuild
+++ b/app-admin/su-exec/su-exec-0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/ncopa/su-exec/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
+IUSE="static"
 
 src_prepare() {
 	default
@@ -20,10 +20,10 @@ src_prepare() {
 }
 
 src_compile() {
-	CC=$(tc-getCC) emake
+	CC=$(tc-getCC) emake $(usex static "${PN}-static" "")
 }
 
 src_install() {
-	dobin ${PN}
+	newbin ${PN}$(usex static "-static" "") ${PN}
 	dodoc README.md
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/su-exec/
@ 2019-04-10  8:41 Manuel Rüger
  0 siblings, 0 replies; 4+ messages in thread
From: Manuel Rüger @ 2019-04-10  8:41 UTC (permalink / raw
  To: gentoo-commits

commit:     db7834eccd6e26134484dc9b49556f9162aeae77
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 08:41:41 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 08:41:41 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db7834ec

app-admin/su-exec: Unmaintain

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 app-admin/su-exec/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-admin/su-exec/metadata.xml b/app-admin/su-exec/metadata.xml
index 662615bdd73..994ac4d0e54 100644
--- a/app-admin/su-exec/metadata.xml
+++ b/app-admin/su-exec/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version='1.0' encoding='UTF-8'?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>mrueg@gentoo.org</email>
-		<name>Manuel Rüger</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<upstream>
 		<remote-id type="github">ncopa/su-exec</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/su-exec/
@ 2023-04-18 13:41 Conrad Kostecki
  0 siblings, 0 replies; 4+ messages in thread
From: Conrad Kostecki @ 2023-04-18 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     79854815ff03f4b34328765b3863e47f0c7fb51a
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Apr 13 15:52:58 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Apr 18 13:36:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79854815

app-admin/su-exec: EAPI8 bump

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/30583
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-admin/su-exec/su-exec-0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/su-exec/su-exec-0.2.ebuild b/app-admin/su-exec/su-exec-0.2.ebuild
index 119e2dc77348..50948421a60d 100644
--- a/app-admin/su-exec/su-exec-0.2.ebuild
+++ b/app-admin/su-exec/su-exec-0.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 inherit toolchain-funcs
 


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

end of thread, other threads:[~2023-04-18 13:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-18 13:41 [gentoo-commits] repo/gentoo:master commit in: app-admin/su-exec/ Conrad Kostecki
  -- strict thread matches above, loose matches on Subject: below --
2019-04-10  8:41 Manuel Rüger
2018-01-29 15:45 Manuel Rüger
2018-01-26 16:00 Manuel Rüger

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