public inbox for gentoo-proxy-maint@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-proxy-maint] [PATCH 1/4] net-irc/ii: add myself to maintainers
@ 2021-04-17 16:51 Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 2/4] net-irc/ii: fix copyright header Vladimir Kuznetsov
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Vladimir Kuznetsov @ 2021-04-17 16:51 UTC (permalink / raw
  To: gentoo-proxy-maint; +Cc: Vladimir Kuznetsov

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Vladimir Kuznetsov <fulade@riseup.net>
---
 net-irc/ii/metadata.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/net-irc/ii/metadata.xml b/net-irc/ii/metadata.xml
index 6f49eba8f49..377905d6eba 100644
--- a/net-irc/ii/metadata.xml
+++ b/net-irc/ii/metadata.xml
@@ -1,5 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
+	<maintainer type="person" proxied="yes">
+		<email>fulade@riseup.net</email>
+		<name>Vladimir Kuznetsov</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 </pkgmetadata>
-- 
2.26.3



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

* [gentoo-proxy-maint] [PATCH 2/4] net-irc/ii: fix copyright header
  2021-04-17 16:51 [gentoo-proxy-maint] [PATCH 1/4] net-irc/ii: add myself to maintainers Vladimir Kuznetsov
@ 2021-04-17 16:52 ` Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 3/4] net-irc/ii: bump eapi to 7 Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 4/4] net-irc/ii: flesh out ebuild Vladimir Kuznetsov
  2 siblings, 0 replies; 5+ messages in thread
From: Vladimir Kuznetsov @ 2021-04-17 16:52 UTC (permalink / raw
  To: gentoo-proxy-maint; +Cc: Vladimir Kuznetsov

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Vladimir Kuznetsov <fulade@riseup.net>
---
 net-irc/ii/ii-1.8.ebuild  | 2 +-
 net-irc/ii/ii-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 2bb1b227445..9593153edc6 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -1,36 +1,36 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit toolchain-funcs
 
 DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
 HOMEPAGE="https://tools.suckless.org/ii/"
 SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
 
 src_prepare() {
 	default
 
 	sed -i \
 		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
 		-e '/^CC/d' \
 		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
 		config.mk || die
 	sed -i \
 		-e 's|@${CC}|$(CC)|g' \
 		Makefile || die
 }
 
 src_compile() {
 	emake CC="$(tc-getCC)"
 }
 
 src_install() {
 	dobin ii
 	dodoc CHANGES FAQ README
 	doman *.1
 }
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index 0cb5a9d7e15..493190ceb84 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -1,36 +1,36 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit git-r3 toolchain-funcs
 
 DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
 HOMEPAGE="https://tools.suckless.org/ii/"
 EGIT_REPO_URI="https://git.suckless.org/ii"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
 
 src_prepare() {
 	default
 
 	sed -i \
 		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
 		-e '/^CC/d' \
 		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
 		config.mk || die
 	sed -i \
 		-e 's|@${CC}|$(CC)|g' \
 		Makefile || die
 }
 
 src_compile() {
 	emake CC="$(tc-getCC)"
 }
 
 src_install() {
 	dobin ii
 	dodoc CHANGES FAQ README
 	doman *.1
 }
-- 
2.26.3



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

* [gentoo-proxy-maint] [PATCH 3/4] net-irc/ii: bump eapi to 7
  2021-04-17 16:51 [gentoo-proxy-maint] [PATCH 1/4] net-irc/ii: add myself to maintainers Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 2/4] net-irc/ii: fix copyright header Vladimir Kuznetsov
@ 2021-04-17 16:52 ` Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 4/4] net-irc/ii: flesh out ebuild Vladimir Kuznetsov
  2 siblings, 0 replies; 5+ messages in thread
From: Vladimir Kuznetsov @ 2021-04-17 16:52 UTC (permalink / raw
  To: gentoo-proxy-maint; +Cc: Vladimir Kuznetsov

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Vladimir Kuznetsov <fulade@riseup.net>
---
 net-irc/ii/ii-1.8.ebuild  | 2 +-
 net-irc/ii/ii-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 9593153edc6..8602091e7e7 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -1,36 +1,36 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 inherit toolchain-funcs
 
 DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
 HOMEPAGE="https://tools.suckless.org/ii/"
 SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
 
 src_prepare() {
 	default
 
 	sed -i \
 		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
 		-e '/^CC/d' \
 		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
 		config.mk || die
 	sed -i \
 		-e 's|@${CC}|$(CC)|g' \
 		Makefile || die
 }
 
 src_compile() {
 	emake CC="$(tc-getCC)"
 }
 
 src_install() {
 	dobin ii
 	dodoc CHANGES FAQ README
 	doman *.1
 }
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index 493190ceb84..db00b6528aa 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -1,36 +1,36 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 inherit git-r3 toolchain-funcs
 
 DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
 HOMEPAGE="https://tools.suckless.org/ii/"
 EGIT_REPO_URI="https://git.suckless.org/ii"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
 
 src_prepare() {
 	default
 
 	sed -i \
 		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
 		-e '/^CC/d' \
 		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
 		config.mk || die
 	sed -i \
 		-e 's|@${CC}|$(CC)|g' \
 		Makefile || die
 }
 
 src_compile() {
 	emake CC="$(tc-getCC)"
 }
 
 src_install() {
 	dobin ii
 	dodoc CHANGES FAQ README
 	doman *.1
 }
-- 
2.26.3



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

* [gentoo-proxy-maint] [PATCH 4/4] net-irc/ii: flesh out ebuild
  2021-04-17 16:51 [gentoo-proxy-maint] [PATCH 1/4] net-irc/ii: add myself to maintainers Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 2/4] net-irc/ii: fix copyright header Vladimir Kuznetsov
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 3/4] net-irc/ii: bump eapi to 7 Vladimir Kuznetsov
@ 2021-04-17 16:52 ` Vladimir Kuznetsov
  2021-05-07 12:54   ` Joonas Niilola
  2 siblings, 1 reply; 5+ messages in thread
From: Vladimir Kuznetsov @ 2021-04-17 16:52 UTC (permalink / raw
  To: gentoo-proxy-maint; +Cc: Vladimir Kuznetsov

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Vladimir Kuznetsov <fulade@riseup.net>
---
 net-irc/ii/ii-1.8.ebuild  | 17 ++++++-----------
 net-irc/ii/ii-9999.ebuild | 18 ++++++------------
 2 files changed, 12 insertions(+), 23 deletions(-)

diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 8602091e7e7..5ef9e5bdca9 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -1,36 +1,31 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 inherit toolchain-funcs
 
 DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
 HOMEPAGE="https://tools.suckless.org/ii/"
 SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
 
 src_prepare() {
 	default
 
-	sed -i \
-		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
-		-e '/^CC/d' \
-		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
-		config.mk || die
-	sed -i \
-		-e 's|@${CC}|$(CC)|g' \
-		Makefile || die
+	sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die
 }
 
 src_compile() {
 	emake CC="$(tc-getCC)"
 }
 
 src_install() {
-	dobin ii
-	dodoc CHANGES FAQ README
-	doman *.1
+	emake \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+		install
 }
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index db00b6528aa..4ba2eac0c28 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -1,36 +1,30 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 inherit git-r3 toolchain-funcs
 
 DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
 HOMEPAGE="https://tools.suckless.org/ii/"
 EGIT_REPO_URI="https://git.suckless.org/ii"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS=""
 
 src_prepare() {
 	default
 
-	sed -i \
-		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
-		-e '/^CC/d' \
-		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
-		config.mk || die
-	sed -i \
-		-e 's|@${CC}|$(CC)|g' \
-		Makefile || die
+	sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die
 }
 
 src_compile() {
 	emake CC="$(tc-getCC)"
 }
 
 src_install() {
-	dobin ii
-	dodoc CHANGES FAQ README
-	doman *.1
+	emake \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCPREFIX="${EPREFIX}"/usr/share/doc/${PF} \
+		install
 }
-- 
2.26.3



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

* Re: [gentoo-proxy-maint] [PATCH 4/4] net-irc/ii: flesh out ebuild
  2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 4/4] net-irc/ii: flesh out ebuild Vladimir Kuznetsov
@ 2021-05-07 12:54   ` Joonas Niilola
  0 siblings, 0 replies; 5+ messages in thread
From: Joonas Niilola @ 2021-05-07 12:54 UTC (permalink / raw
  To: gentoo-proxy-maint


[-- Attachment #1.1: Type: text/plain, Size: 3593 bytes --]

Hey,

merged, thanks! I squashed your commits 2-4 to a single one, and added
the CFLAGS sed's back due to:

 * Messages for package net-irc/ii-1.8:
 * Log file:
/var/tmp/portage/vbslogs/build/net-irc/ii-1.8:20210507-122242.log

 * QA Notice: Files built without respecting CFLAGS have been detected
 *  Please include the following list of files in your report:
 * /usr/bin/ii

 * Messages for package net-irc/ii-9999:
 * Log file:
/var/tmp/portage/vbslogs/build/net-irc/ii-9999:20210507-122233.log

 * QA Notice: Files built without respecting CFLAGS have been detected
 *  Please include the following list of files in your report:
 * /usr/bin/ii

In future you can use
https://wiki.gentoo.org/wiki/Package_testing#make.conf these settings to
test your ebuilds and see these QA notices.

-- juippis

On 17.4.2021 19.52, Vladimir Kuznetsov wrote:
> Package-Manager: Portage-3.0.17, Repoman-3.0.2
> Signed-off-by: Vladimir Kuznetsov <fulade@riseup.net>
> ---
>  net-irc/ii/ii-1.8.ebuild  | 17 ++++++-----------
>  net-irc/ii/ii-9999.ebuild | 18 ++++++------------
>  2 files changed, 12 insertions(+), 23 deletions(-)
> 
> diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
> index 8602091e7e7..5ef9e5bdca9 100644
> --- a/net-irc/ii/ii-1.8.ebuild
> +++ b/net-irc/ii/ii-1.8.ebuild
> @@ -1,36 +1,31 @@
>  # Copyright 1999-2021 Gentoo Authors
>  # Distributed under the terms of the GNU General Public License v2
>  
>  EAPI=7
>  inherit toolchain-funcs
>  
>  DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
>  HOMEPAGE="https://tools.suckless.org/ii/"
>  SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
>  
>  LICENSE="MIT"
>  SLOT="0"
>  KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
>  
>  src_prepare() {
>  	default
>  
> -	sed -i \
> -		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
> -		-e '/^CC/d' \
> -		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
> -		config.mk || die
> -	sed -i \
> -		-e 's|@${CC}|$(CC)|g' \
> -		Makefile || die
> +	sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die
>  }
>  
>  src_compile() {
>  	emake CC="$(tc-getCC)"
>  }
>  
>  src_install() {
> -	dobin ii
> -	dodoc CHANGES FAQ README
> -	doman *.1
> +	emake \
> +		DESTDIR="${D}" \
> +		PREFIX="${EPREFIX}"/usr \
> +		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
> +		install
>  }
> diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
> index db00b6528aa..4ba2eac0c28 100644
> --- a/net-irc/ii/ii-9999.ebuild
> +++ b/net-irc/ii/ii-9999.ebuild
> @@ -1,36 +1,30 @@
>  # Copyright 1999-2021 Gentoo Authors
>  # Distributed under the terms of the GNU General Public License v2
>  
>  EAPI=7
>  inherit git-r3 toolchain-funcs
>  
>  DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
>  HOMEPAGE="https://tools.suckless.org/ii/"
>  EGIT_REPO_URI="https://git.suckless.org/ii"
>  
>  LICENSE="MIT"
>  SLOT="0"
> -KEYWORDS=""
>  
>  src_prepare() {
>  	default
>  
> -	sed -i \
> -		-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
> -		-e '/^CC/d' \
> -		-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
> -		config.mk || die
> -	sed -i \
> -		-e 's|@${CC}|$(CC)|g' \
> -		Makefile || die
> +	sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die
>  }
>  
>  src_compile() {
>  	emake CC="$(tc-getCC)"
>  }
>  
>  src_install() {
> -	dobin ii
> -	dodoc CHANGES FAQ README
> -	doman *.1
> +	emake \
> +		DESTDIR="${D}" \
> +		PREFIX="${EPREFIX}"/usr \
> +		DOCPREFIX="${EPREFIX}"/usr/share/doc/${PF} \
> +		install
>  }
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 618 bytes --]

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

end of thread, other threads:[~2021-05-07 12:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-17 16:51 [gentoo-proxy-maint] [PATCH 1/4] net-irc/ii: add myself to maintainers Vladimir Kuznetsov
2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 2/4] net-irc/ii: fix copyright header Vladimir Kuznetsov
2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 3/4] net-irc/ii: bump eapi to 7 Vladimir Kuznetsov
2021-04-17 16:52 ` [gentoo-proxy-maint] [PATCH 4/4] net-irc/ii: flesh out ebuild Vladimir Kuznetsov
2021-05-07 12:54   ` Joonas Niilola

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