* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-03-23 7:24 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-03-23 7:24 UTC (permalink / raw
To: gentoo-commits
commit: cbca31658095e7f54d32fb0d25b0482eb75e2b3a
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 23 07:15:01 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 07:24:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbca3165
net-irc/ii: Old.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
net-irc/ii/Manifest | 1 -
net-irc/ii/ii-1.6.ebuild | 39 ---------------------------------------
2 files changed, 40 deletions(-)
diff --git a/net-irc/ii/Manifest b/net-irc/ii/Manifest
index 4e405e09786..4d3d53ebf0c 100644
--- a/net-irc/ii/Manifest
+++ b/net-irc/ii/Manifest
@@ -1,2 +1 @@
-DIST ii-1.6.tar.gz 9970 SHA256 794fa639b253b4b332fa80e76cde782d9dae021dfaf35a207334c553d962cc29 SHA512 54e9adc11d06601c6933c3f6310dacbc66bd5b4e9cf469cc4866fda79d838b1dcd826ea9fc234ba6c76e22d2512283ad2a875986f7965f483c6be9f91dddf19d WHIRLPOOL 9c2f8d15ecc9efb96b87387df626497d2a6fecfd1833c9dbb799f2caf04e0d905a0b40d90d515554d529ade6af0d15393d326736188c93ce14d24ab648b72a1c
DIST ii-1.7.tar.gz 10174 SHA256 3a72ac6606d5560b625c062c71f135820e2214fed098e6d624fc40632dc7cc9c SHA512 1fa744bc9b4291b5c6c56e023d982aad59001137db6c7682284a2d63e649a32d558adbb85ae3407e312ae5436852b4278c2c522d4ef03f47cf54ea3a1f13ca90 WHIRLPOOL 6aa7c43f7d9beca03724f98e2110ba4d2430943905d9c0a8cd28a9f8aba8d673af7eaaaa0c1b84028397fb566201581d8731e3387bcede589dfefb1f518953bc
diff --git a/net-irc/ii/ii-1.6.ebuild b/net-irc/ii/ii-1.6.ebuild
deleted file mode 100644
index 86fdee0ccea..00000000000
--- a/net-irc/ii/ii-1.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit fixheadtails toolchain-funcs
-
-DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
-HOMEPAGE="http://tools.suckless.org/ii/"
-SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
- sed -i \
- -e "s/CFLAGS = -g -O0/CFLAGS += /" \
- -e "s/LDFLAGS =/LDFLAGS +=/" \
- -e /^LIBS/d \
- config.mk || die "sed failed to fix {C,LD}FLAGS"
-
- ht_fix_file query.sh
-}
-
-src_compile() {
- emake CC=$(tc-getCC)
-}
-
-src_install() {
- dobin ii
- newbin query.sh ii-query
- dodoc CHANGES FAQ README
- doman *.1
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-03-23 7:24 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-03-23 7:24 UTC (permalink / raw
To: gentoo-commits
commit: 87cc7b99087f918ef27611292fe04cf9934d711c
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 23 07:21:37 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 07:24:35 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87cc7b99
net-irc/ii: Add live ebuild.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
net-irc/ii/ii-9999.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
new file mode 100644
index 00000000000..dce9e4b2dd6
--- /dev/null
+++ b/net-irc/ii/ii-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit fixheadtails git-r3 toolchain-funcs
+
+DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
+HOMEPAGE="http://tools.suckless.org/ii/"
+EGIT_REPO_URI="http://git.suckless.org/ii"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e "s/CFLAGS = -g -O0/CFLAGS += /" \
+ -e "s/LDFLAGS =/LDFLAGS +=/" \
+ -e /^LIBS/d \
+ config.mk || die
+
+ # enable verbose build
+ sed -i 's/@${CC}/${CC}/' Makefile || die
+
+ ht_fix_file query.sh
+}
+
+src_compile() {
+ emake CC="$(tc-getCC)"
+}
+
+src_install() {
+ dobin ii
+ newbin query.sh ii-query
+ dodoc CHANGES FAQ README
+ doman *.1
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-03-23 7:24 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-03-23 7:24 UTC (permalink / raw
To: gentoo-commits
commit: a1f69cd4c63fd72bd432375df14507e03d9a39a4
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 23 07:23:54 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 07:24:38 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f69cd4
net-irc/ii: EAPI bump so people can apply their patches.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
net-irc/ii/ii-1.7-r1.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/net-irc/ii/ii-1.7-r1.ebuild b/net-irc/ii/ii-1.7-r1.ebuild
new file mode 100644
index 00000000000..3bd8f005d20
--- /dev/null
+++ b/net-irc/ii/ii-1.7-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit fixheadtails toolchain-funcs
+
+DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
+HOMEPAGE="http://tools.suckless.org/ii/"
+SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux"
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e "s/CFLAGS[[:space:]]*= -g -O0/CFLAGS += /" \
+ -e "s/LDFLAGS[[:space:]]*=/LDFLAGS +=/" \
+ -e /^LIBS/d \
+ config.mk || die
+
+ # enable verbose build
+ sed -i 's/@${CC}/${CC}/' Makefile || die
+
+ ht_fix_file query.sh
+}
+
+src_compile() {
+ emake CC="$(tc-getCC)"
+}
+
+src_install() {
+ dobin ii
+ newbin query.sh ii-query
+ dodoc CHANGES FAQ README
+ doman *.1
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-08-31 10:33 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-08-31 10:33 UTC (permalink / raw
To: gentoo-commits
commit: 814e679302e38f8a5e222815b06ae7334b2f0d07
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 10:17:28 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 10:17:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=814e6793
net-irc/ii: Fix live ebuild.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-irc/ii/ii-9999.ebuild | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index 58da99365e5..ba78309913a 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -2,11 +2,11 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit fixheadtails git-r3 toolchain-funcs
+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"
+EGIT_REPO_URI="git://git.suckless.org/ii"
LICENSE="MIT"
SLOT="0"
@@ -16,15 +16,13 @@ src_prepare() {
default
sed -i \
- -e "s/CFLAGS = -g -O0/CFLAGS += /" \
- -e "s/LDFLAGS =/LDFLAGS +=/" \
- -e /^LIBS/d \
+ -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
+ -e '/^CC/d' \
+ -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
config.mk || die
-
- # enable verbose build
- sed -i 's/@${CC}/${CC}/' Makefile || die
-
- ht_fix_file query.sh
+ sed -i \
+ -e 's|@${CC}|$(CC)|g' \
+ Makefile || die
}
src_compile() {
@@ -33,7 +31,6 @@ src_compile() {
src_install() {
dobin ii
- newbin query.sh ii-query
dodoc CHANGES FAQ README
doman *.1
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-08-31 10:33 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-08-31 10:33 UTC (permalink / raw
To: gentoo-commits
commit: ec524fde0199c2e847ab8acbc478aaf8027c69a2
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 10:18:47 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 10:18:47 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec524fde
net-irc/ii: Respect CFLAGS.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-irc/ii/ii-1.7-r1.ebuild | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/net-irc/ii/ii-1.7-r1.ebuild b/net-irc/ii/ii-1.7-r1.ebuild
index 1bc0538ae7b..4a1fce5af76 100644
--- a/net-irc/ii/ii-1.7-r1.ebuild
+++ b/net-irc/ii/ii-1.7-r1.ebuild
@@ -16,13 +16,13 @@ src_prepare() {
default
sed -i \
- -e "s/CFLAGS[[:space:]]*= -g -O0/CFLAGS += /" \
- -e "s/LDFLAGS[[:space:]]*=/LDFLAGS +=/" \
- -e /^LIBS/d \
+ -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
+ -e '/^CC/d' \
+ -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
config.mk || die
-
- # enable verbose build
- sed -i 's/@${CC}/${CC}/' Makefile || die
+ sed -i \
+ -e 's|@${CC}|$(CC)|g' \
+ Makefile || die
ht_fix_file query.sh
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-08-31 10:33 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-08-31 10:33 UTC (permalink / raw
To: gentoo-commits
commit: 197ceeb26c968c60f27bbaf702c07d5279f4f899
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 10:13:12 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 10:13:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=197ceeb2
net-irc/ii: Old.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-irc/ii/ii-1.7.ebuild | 39 ---------------------------------------
1 file changed, 39 deletions(-)
diff --git a/net-irc/ii/ii-1.7.ebuild b/net-irc/ii/ii-1.7.ebuild
deleted file mode 100644
index 541535bd7dd..00000000000
--- a/net-irc/ii/ii-1.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit fixheadtails 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 ~x86 ~amd64-linux"
-IUSE=""
-
-src_prepare() {
- sed -i \
- -e "s/CFLAGS = -g -O0/CFLAGS += /" \
- -e "s/LDFLAGS =/LDFLAGS +=/" \
- -e /^LIBS/d \
- config.mk || die "sed failed to fix {C,LD}FLAGS"
-
- # enable verbose build
- sed -i 's/@${CC}/${CC}/' Makefile || die
-
- ht_fix_file query.sh
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- dobin ii
- newbin query.sh ii-query
- dodoc CHANGES FAQ README
- doman *.1
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-08-31 10:33 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-08-31 10:33 UTC (permalink / raw
To: gentoo-commits
commit: c1796d6123666dd1c2cc02ccc0562ea651b3207e
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 10:12:49 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 10:12:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1796d61
net-irc/ii: Switch to HTTPS.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-irc/ii/ii-1.7-r1.ebuild | 4 ++--
net-irc/ii/ii-1.7.ebuild | 6 +++---
net-irc/ii/ii-9999.ebuild | 4 ++--
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/net-irc/ii/ii-1.7-r1.ebuild b/net-irc/ii/ii-1.7-r1.ebuild
index 3bd8f005d20..1bc0538ae7b 100644
--- a/net-irc/ii/ii-1.7-r1.ebuild
+++ b/net-irc/ii/ii-1.7-r1.ebuild
@@ -5,8 +5,8 @@ EAPI=6
inherit fixheadtails toolchain-funcs
DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
-HOMEPAGE="http://tools.suckless.org/ii/"
-SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
+HOMEPAGE="https://tools.suckless.org/ii/"
+SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
diff --git a/net-irc/ii/ii-1.7.ebuild b/net-irc/ii/ii-1.7.ebuild
index 61bb3d61082..541535bd7dd 100644
--- a/net-irc/ii/ii-1.7.ebuild
+++ b/net-irc/ii/ii-1.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -6,8 +6,8 @@ EAPI=4
inherit fixheadtails toolchain-funcs
DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
-HOMEPAGE="http://tools.suckless.org/ii/"
-SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
+HOMEPAGE="https://tools.suckless.org/ii/"
+SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index dce9e4b2dd6..58da99365e5 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -5,8 +5,8 @@ EAPI=6
inherit fixheadtails git-r3 toolchain-funcs
DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
-HOMEPAGE="http://tools.suckless.org/ii/"
-EGIT_REPO_URI="http://git.suckless.org/ii"
+HOMEPAGE="https://tools.suckless.org/ii/"
+EGIT_REPO_URI="https://git.suckless.org/ii"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2017-09-10 21:47 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-09-10 21:47 UTC (permalink / raw
To: gentoo-commits
commit: d37fc847435a0e79237d6adbd7ea6d42de479b64
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 10 21:38:54 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 10 21:46:47 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37fc847
net-irc/ii: Use HTTPS.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-irc/ii/ii-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index ba78309913a..0cb5a9d7e15 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -6,7 +6,7 @@ inherit git-r3 toolchain-funcs
DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
HOMEPAGE="https://tools.suckless.org/ii/"
-EGIT_REPO_URI="git://git.suckless.org/ii"
+EGIT_REPO_URI="https://git.suckless.org/ii"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2018-02-12 0:09 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2018-02-12 0:09 UTC (permalink / raw
To: gentoo-commits
commit: ca34771d3176f17c2189b657fb0e46f2b7f8f13d
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 12 00:08:54 2018 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Feb 12 00:09:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca34771d
net-irc/ii: Version 1.8.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-irc/ii/Manifest | 1 +
net-irc/ii/ii-1.8.ebuild | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/net-irc/ii/Manifest b/net-irc/ii/Manifest
index caa8727424b..b3af42cfc78 100644
--- a/net-irc/ii/Manifest
+++ b/net-irc/ii/Manifest
@@ -1 +1,2 @@
DIST ii-1.7.tar.gz 10174 BLAKE2B 93af2dc182d77dbfca65cbee6c40aedabe9166be7abcb03c87e80e74273dea1e4dd875d86cf0e1dd04b4a10bfcd825ea9a8c109badb72cc877a484bdaea705d9 SHA512 1fa744bc9b4291b5c6c56e023d982aad59001137db6c7682284a2d63e649a32d558adbb85ae3407e312ae5436852b4278c2c522d4ef03f47cf54ea3a1f13ca90
+DIST ii-1.8.tar.gz 12326 BLAKE2B 7ae90d788aaec0a359ce46370f27c0ce62c6f77e8cda61d9d168d0ebd7de927a478b42a591631f2c193f3816b2a1b39cf79607326b073bcbeefe4291e0fb95f6 SHA512 2b41a0611ac76612c9333e8490709ee22d17506f0c5d7e680a0d8f3f8b511bd5b279555cf609c1543aba71948819369a3c306b1168086890aa49c145b7860e17
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
new file mode 100644
index 00000000000..0a4bb49da75
--- /dev/null
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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 ~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
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2018-03-14 6:00 Markus Meier
0 siblings, 0 replies; 32+ messages in thread
From: Markus Meier @ 2018-03-14 6:00 UTC (permalink / raw
To: gentoo-commits
commit: cfa2ff7ffaa378706deca6e042a061fce0573659
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 14 05:57:21 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Mar 14 05:57:21 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa2ff7f
net-irc/ii: add ~arm, bug #647854
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"
net-irc/ii/ii-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 0a4bb49da75..73c50e70118 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2020-09-23 13:54 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2020-09-23 13:54 UTC (permalink / raw
To: gentoo-commits
commit: 9904d27e0d93e6d804e555fbfa54faefbb5abe36
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 13:53:59 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 13:54:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9904d27e
net-irc/ii: Stabilize 1.8 arm, #744169
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 73c50e70118..55703a78a38 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux"
+KEYWORDS="~amd64 arm ~x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2020-09-24 6:59 Agostino Sarubbo
0 siblings, 0 replies; 32+ messages in thread
From: Agostino Sarubbo @ 2020-09-24 6:59 UTC (permalink / raw
To: gentoo-commits
commit: 36970e1a63094cfbd1d2fed7ad0da0bcf0422d1c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 06:56:39 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 06:56:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36970e1a
net-irc/ii: x86 stable wrt bug #744169
Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 55703a78a38..bf2889aab60 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 arm ~x86 ~amd64-linux"
+KEYWORDS="~amd64 arm x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2020-09-24 18:08 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2020-09-24 18:08 UTC (permalink / raw
To: gentoo-commits
commit: e05ee465c1d61978165c716bfe9ef5de8081c6ea
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 18:07:57 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 18:07:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e05ee465
net-irc/ii: keyworded 1.8 for ppc
keyworded wrt bug #744172
Package-Manager: Portage-3.0.8, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index bf2889aab60..64ff7918e67 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 arm x86 ~amd64-linux"
+KEYWORDS="~amd64 arm ~ppc x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2020-09-24 18:16 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2020-09-24 18:16 UTC (permalink / raw
To: gentoo-commits
commit: c761a6bca2a76c7fe54f0393b55ecd8aff881d22
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 18:16:23 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 18:16:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c761a6bc
net-irc/ii: keyworded 1.8 for ppc64
keyworded wrt bug #744172
Package-Manager: Portage-3.0.8, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 64ff7918e67..77abe790e33 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 arm ~ppc x86 ~amd64-linux"
+KEYWORDS="~amd64 arm ~ppc ~ppc64 x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2020-09-27 17:06 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2020-09-27 17:06 UTC (permalink / raw
To: gentoo-commits
commit: 12cd6577bbc5955d2e5bfe1584ceabb9a21bf462
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 27 17:06:24 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 17:06:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12cd6577
net-irc/ii: Keyword 1.8 arm64, #744172
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 77abe790e33..c079034f9bf 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 arm ~ppc ~ppc64 x86 ~amd64-linux"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2020-10-09 8:31 Agostino Sarubbo
0 siblings, 0 replies; 32+ messages in thread
From: Agostino Sarubbo @ 2020-10-09 8:31 UTC (permalink / raw
To: gentoo-commits
commit: 4d7eecc03d68a96a26baa4436a69763ebbedf77d
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 9 08:27:51 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Oct 9 08:30:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d7eecc0
net-irc/ii: amd64 stable wrt bug #744169
Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index c079034f9bf..2bb1b227445 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2021-05-07 12:50 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2021-05-07 12:50 UTC (permalink / raw
To: gentoo-commits
commit: 5297e0ae60c6115c91dc132e8e72e1ec196a2fd5
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri May 7 12:49:26 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May 7 12:50:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5297e0ae
net-irc/ii: sed-fix CFLAGS in 1.8
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 5ef9e5bdca9..be2821b3f79 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -15,7 +15,8 @@ KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux"
src_prepare() {
default
- sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die
+ sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
+ -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' config.mk || die
}
src_compile() {
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2021-05-07 12:50 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2021-05-07 12:50 UTC (permalink / raw
To: gentoo-commits
commit: a9f9525371fafef3b8ea7a93931b379cbd12e64f
Author: Vladimir Kuznetsov <fulade <AT> riseup <DOT> net>
AuthorDate: Fri May 7 12:43:44 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May 7 12:50:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f95253
net-irc/ii: bump eapi to 7 & flesh out ebuilds
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Vladimir Kuznetsov <fulade <AT> riseup.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/ii-1.8.ebuild | 21 ++++++++-------------
net-irc/ii/ii-9999.ebuild | 22 ++++++++--------------
2 files changed, 16 insertions(+), 27 deletions(-)
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
index 2bb1b227445..5ef9e5bdca9 100644
--- a/net-irc/ii/ii-1.8.ebuild
+++ b/net-irc/ii/ii-1.8.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# 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"
@@ -15,14 +15,7 @@ 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() {
@@ -30,7 +23,9 @@ src_compile() {
}
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 0cb5a9d7e15..4ba2eac0c28 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# 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"
@@ -10,19 +10,11 @@ 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() {
@@ -30,7 +22,9 @@ src_compile() {
}
src_install() {
- dobin ii
- dodoc CHANGES FAQ README
- doman *.1
+ emake \
+ DESTDIR="${D}" \
+ PREFIX="${EPREFIX}"/usr \
+ DOCPREFIX="${EPREFIX}"/usr/share/doc/${PF} \
+ install
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2021-05-07 12:50 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2021-05-07 12:50 UTC (permalink / raw
To: gentoo-commits
commit: afe2cd8430281edb5a3ce72ae7bf58529b84ae1c
Author: Vladimir Kuznetsov <fulade <AT> riseup <DOT> net>
AuthorDate: Fri May 7 12:42:46 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May 7 12:50:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe2cd84
net-irc/ii: add myself to maintainers
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Vladimir Kuznetsov <fulade <AT> riseup.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
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>
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2021-05-07 12:50 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2021-05-07 12:50 UTC (permalink / raw
To: gentoo-commits
commit: 1638484e583399d0cede4750176c4e1b89500b56
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri May 7 12:49:50 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri May 7 12:50:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1638484e
net-irc/ii: sed-fix CFLAGS in 9999
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/ii-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index 4ba2eac0c28..265a788ad43 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -14,7 +14,8 @@ SLOT="0"
src_prepare() {
default
- sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die
+ sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
+ -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' config.mk || die
}
src_compile() {
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-02-27 13:29 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2022-02-27 13:29 UTC (permalink / raw
To: gentoo-commits
commit: 795294eb54eae5fdcd43f52a48c8c5852a4c517d
Author: Spencer Pavkovic <smp <AT> nandre <DOT> com>
AuthorDate: Sat Jan 8 23:57:01 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 13:29:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795294eb
net-irc/ii: version bump to 1.9
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Spencer Pavkovic <smp <AT> nandre.com>
Closes: https://github.com/gentoo/gentoo/pull/23707
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/Manifest | 1 +
net-irc/ii/ii-1.9.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/net-irc/ii/Manifest b/net-irc/ii/Manifest
index 4871af24cd36..087a679b701a 100644
--- a/net-irc/ii/Manifest
+++ b/net-irc/ii/Manifest
@@ -1 +1,2 @@
DIST ii-1.8.tar.gz 12326 BLAKE2B 7ae90d788aaec0a359ce46370f27c0ce62c6f77e8cda61d9d168d0ebd7de927a478b42a591631f2c193f3816b2a1b39cf79607326b073bcbeefe4291e0fb95f6 SHA512 2b41a0611ac76612c9333e8490709ee22d17506f0c5d7e680a0d8f3f8b511bd5b279555cf609c1543aba71948819369a3c306b1168086890aa49c145b7860e17
+DIST ii-1.9.tar.gz 12672 BLAKE2B 95da596de00fb311a69b907ab25c0089aafa512085b25fe5753206cdeaa0fec3d9a16eb38d60c68542f7002efd1052e69e1f5542f535363d38760cab508b3d99 SHA512 a665a6d1e1ffe56e370da2d703e677436ef4e18e763bb3cadbbf55e01812454ce4b79e8a20eda23846fdbe5a441ec8c534c9394995b3441472ce8a74c9035279
diff --git a/net-irc/ii/ii-1.9.ebuild b/net-irc/ii/ii-1.9.ebuild
new file mode 100644
index 000000000000..51bf246848f4
--- /dev/null
+++ b/net-irc/ii/ii-1.9.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 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 '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
+ -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
+ -e 's|doc|doc/${PF}|' config.mk || die
+
+ sed -i -e 's|(DOCPREFIX)/ii|(DOCPREFIX)|' Makefile || die
+}
+
+src_compile() {
+ emake CC="$(tc-getCC)"
+}
+
+src_install() {
+ emake \
+ DESTDIR="${D}" \
+ PREFIX="${EPREFIX}"/usr \
+ install
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-02-27 13:29 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2022-02-27 13:29 UTC (permalink / raw
To: gentoo-commits
commit: ec28659f0128d94fc300554984e671f98316b5f8
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 27 13:25:12 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 13:29:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec28659f
net-irc/ii: update EAPI 7 -> 8 on 1.9
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/ii-1.9.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/net-irc/ii/ii-1.9.ebuild b/net-irc/ii/ii-1.9.ebuild
index 51bf246848f4..77398ef92d7e 100644
--- a/net-irc/ii/ii-1.9.ebuild
+++ b/net-irc/ii/ii-1.9.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
+
inherit toolchain-funcs
DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
@@ -19,7 +20,7 @@ src_prepare() {
-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
-e 's|doc|doc/${PF}|' config.mk || die
- sed -i -e 's|(DOCPREFIX)/ii|(DOCPREFIX)|' Makefile || die
+ sed -i -e 's|(DOCPREFIX)/ii|(DOCPREFIX)|' Makefile || die
}
src_compile() {
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-08-16 5:00 Jakov Smolić
0 siblings, 0 replies; 32+ messages in thread
From: Jakov Smolić @ 2022-08-16 5:00 UTC (permalink / raw
To: gentoo-commits
commit: 6da12089602f6b5085f715f09d84c36ca2f29d48
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Tue Aug 16 04:08:54 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 05:00:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6da12089
net-irc/ii: keyword 1.9 for ~riscv
Bug: https://bugs.gentoo.org/865195
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26877
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-irc/ii/ii-1.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.9.ebuild b/net-irc/ii/ii-1.9.ebuild
index 77398ef92d7e..58a18bed45aa 100644
--- a/net-irc/ii/ii-1.9.ebuild
+++ b/net-irc/ii/ii-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-09-25 1:21 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2022-09-25 1:21 UTC (permalink / raw
To: gentoo-commits
commit: adabf845656b45da7d31665a4078ab3adad502d8
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Wed Sep 7 10:08:21 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 01:19:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adabf845
net-irc/ii: sync live with upstream
Upstream removed config.mk recently in commit 36c77931fd89 ("Makefile:
simplify and use system flags by default"), therefore, src_prepare is no
longer needed.
Additional changes:
- EAPI update, 7 -> 8
- doublequote full PREFIX and DOCPREFIX paths
Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/27178
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/ii/ii-9999.ebuild | 16 +++++-----------
1 file changed, 5 insertions(+), 11 deletions(-)
diff --git a/net-irc/ii/ii-9999.ebuild b/net-irc/ii/ii-9999.ebuild
index 265a788ad43b..2241af190778 100644
--- a/net-irc/ii/ii-9999.ebuild
+++ b/net-irc/ii/ii-9999.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
+
inherit git-r3 toolchain-funcs
DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
@@ -11,13 +12,6 @@ EGIT_REPO_URI="https://git.suckless.org/ii"
LICENSE="MIT"
SLOT="0"
-src_prepare() {
- default
-
- sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
- -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' config.mk || die
-}
-
src_compile() {
emake CC="$(tc-getCC)"
}
@@ -25,7 +19,7 @@ src_compile() {
src_install() {
emake \
DESTDIR="${D}" \
- PREFIX="${EPREFIX}"/usr \
- DOCPREFIX="${EPREFIX}"/usr/share/doc/${PF} \
+ PREFIX="${EPREFIX}/usr" \
+ DOCPREFIX="${EPREFIX}/usr/share/doc/${PF}" \
install
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-09-25 6:50 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2022-09-25 6:50 UTC (permalink / raw
To: gentoo-commits
commit: 7af8e99e0e6f01a2bed76d800b55a19c67b2af12
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 06:50:20 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 06:50:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af8e99e
net-irc/ii: Stabilize 1.9 amd64, #869062
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/ii-1.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.9.ebuild b/net-irc/ii/ii-1.9.ebuild
index 9a5940951edf..67969310e7e7 100644
--- a/net-irc/ii/ii-1.9.ebuild
+++ b/net-irc/ii/ii-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-09-25 6:50 Joonas Niilola
0 siblings, 0 replies; 32+ messages in thread
From: Joonas Niilola @ 2022-09-25 6:50 UTC (permalink / raw
To: gentoo-commits
commit: 2926bdad6d2322d88fc56870536c5cb04532f15e
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 06:49:47 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 06:49:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2926bdad
net-irc/ii: Stabilize 1.9 x86, #869062
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/ii/ii-1.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.9.ebuild b/net-irc/ii/ii-1.9.ebuild
index 58a18bed45aa..9a5940951edf 100644
--- a/net-irc/ii/ii-1.9.ebuild
+++ b/net-irc/ii/ii-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-09-25 13:17 Arthur Zamarin
0 siblings, 0 replies; 32+ messages in thread
From: Arthur Zamarin @ 2022-09-25 13:17 UTC (permalink / raw
To: gentoo-commits
commit: 66ead9ced7c4a799d8856d7de6ff7000cc47a671
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 13:17:36 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 13:17:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ead9ce
net-irc/ii: Stabilize 1.9 arm, #869062
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-irc/ii/ii-1.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-1.9.ebuild b/net-irc/ii/ii-1.9.ebuild
index 67969310e7e7..f1cd0011b17c 100644
--- a/net-irc/ii/ii-1.9.ebuild
+++ b/net-irc/ii/ii-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2022-10-28 13:35 Florian Schmaus
0 siblings, 0 replies; 32+ messages in thread
From: Florian Schmaus @ 2022-10-28 13:35 UTC (permalink / raw
To: gentoo-commits
commit: 1b5d7206638b90c111e84cdb21f93183389ca766
Author: Spencer M.P <smp <AT> nandre <DOT> com>
AuthorDate: Sun Oct 23 23:22:35 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 13:35:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b5d7206
net-irc/ii: add 2.0
Signed-off-by: Spencer M.P <smp <AT> nandre.com>
Closes: https://github.com/gentoo/gentoo/pull/27923
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
net-irc/ii/Manifest | 1 +
net-irc/ii/ii-2.0.ebuild | 26 ++++++++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/net-irc/ii/Manifest b/net-irc/ii/Manifest
index 087a679b701a..4ddd4fef37d4 100644
--- a/net-irc/ii/Manifest
+++ b/net-irc/ii/Manifest
@@ -1,2 +1,3 @@
DIST ii-1.8.tar.gz 12326 BLAKE2B 7ae90d788aaec0a359ce46370f27c0ce62c6f77e8cda61d9d168d0ebd7de927a478b42a591631f2c193f3816b2a1b39cf79607326b073bcbeefe4291e0fb95f6 SHA512 2b41a0611ac76612c9333e8490709ee22d17506f0c5d7e680a0d8f3f8b511bd5b279555cf609c1543aba71948819369a3c306b1168086890aa49c145b7860e17
DIST ii-1.9.tar.gz 12672 BLAKE2B 95da596de00fb311a69b907ab25c0089aafa512085b25fe5753206cdeaa0fec3d9a16eb38d60c68542f7002efd1052e69e1f5542f535363d38760cab508b3d99 SHA512 a665a6d1e1ffe56e370da2d703e677436ef4e18e763bb3cadbbf55e01812454ce4b79e8a20eda23846fdbe5a441ec8c534c9394995b3441472ce8a74c9035279
+DIST ii-2.0.tar.gz 11129 BLAKE2B ee8b4e1169f1f59a9f09fa2a96fc898b0c48a337708a19a208fd344453f620bb3a832e25c26a20f7d14e2e5a7924d8a1d97efabdbb269125c2117f453d5f737f SHA512 ab8102b5669495b7bc6a3311245f3eb49d2add1e387290e41deb51e121f4c7c98a09d117052c345d8b896149276a83790c0b78efe3ed19fc52bc00575bf8e44a
diff --git a/net-irc/ii/ii-2.0.ebuild b/net-irc/ii/ii-2.0.ebuild
new file mode 100644
index 000000000000..e932246b3013
--- /dev/null
+++ b/net-irc/ii/ii-2.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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 ~riscv ~x86 ~amd64-linux"
+
+src_compile() {
+ emake CC="$(tc-getCC)"
+}
+
+src_install() {
+ emake \
+ DESTDIR="${D}" \
+ PREFIX="${EPREFIX}/usr" \
+ DOCPREFIX="${EPREFIX}/usr/share/doc/${PF}" \
+ install
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2024-07-20 11:14 Arthur Zamarin
0 siblings, 0 replies; 32+ messages in thread
From: Arthur Zamarin @ 2024-07-20 11:14 UTC (permalink / raw
To: gentoo-commits
commit: 1993be8f3771020ba6f592e28efc802923e3867b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 11:13:50 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 11:13:50 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1993be8f
net-irc/ii: Stabilize 2.0 arm, #936380
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-irc/ii/ii-2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-2.0.ebuild b/net-irc/ii/ii-2.0.ebuild
index bae24dca9ffd..d5816d33f358 100644
--- a/net-irc/ii/ii-2.0.ebuild
+++ b/net-irc/ii/ii-2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
src_compile() {
emake CC="$(tc-getCC)"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2024-07-20 11:14 Arthur Zamarin
0 siblings, 0 replies; 32+ messages in thread
From: Arthur Zamarin @ 2024-07-20 11:14 UTC (permalink / raw
To: gentoo-commits
commit: 8feb15a37a3fb966bfd1053deb99aba242da6f4f
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 11:13:49 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 11:13:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8feb15a3
net-irc/ii: Stabilize 2.0 x86, #936380
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-irc/ii/ii-2.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/ii/ii-2.0.ebuild b/net-irc/ii/ii-2.0.ebuild
index e932246b3013..bae24dca9ffd 100644
--- a/net-irc/ii/ii-2.0.ebuild
+++ b/net-irc/ii/ii-2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
src_compile() {
emake CC="$(tc-getCC)"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2024-07-20 11:18 Arthur Zamarin
0 siblings, 0 replies; 32+ messages in thread
From: Arthur Zamarin @ 2024-07-20 11:18 UTC (permalink / raw
To: gentoo-commits
commit: 1db1d6c6ed58c88456dd3fa5424ce821483963b7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 11:18:25 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 11:18:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1db1d6c6
net-irc/ii: Stabilize 2.0 amd64, #936380
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-irc/ii/ii-2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/ii/ii-2.0.ebuild b/net-irc/ii/ii-2.0.ebuild
index d5816d33f358..ff668b9f4764 100644
--- a/net-irc/ii/ii-2.0.ebuild
+++ b/net-irc/ii/ii-2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
src_compile() {
emake CC="$(tc-getCC)"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
@ 2024-07-20 12:43 Petr Vaněk
0 siblings, 0 replies; 32+ messages in thread
From: Petr Vaněk @ 2024-07-20 12:43 UTC (permalink / raw
To: gentoo-commits
commit: 28269d52bb1bfbe85ee376834c08c3aca01e979a
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 12:42:52 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 12:42:52 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28269d52
net-irc/ii: drop 1.8
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-irc/ii/Manifest | 1 -
net-irc/ii/ii-1.8.ebuild | 32 --------------------------------
2 files changed, 33 deletions(-)
diff --git a/net-irc/ii/Manifest b/net-irc/ii/Manifest
index 4ddd4fef37d4..be199d9f125c 100644
--- a/net-irc/ii/Manifest
+++ b/net-irc/ii/Manifest
@@ -1,3 +1,2 @@
-DIST ii-1.8.tar.gz 12326 BLAKE2B 7ae90d788aaec0a359ce46370f27c0ce62c6f77e8cda61d9d168d0ebd7de927a478b42a591631f2c193f3816b2a1b39cf79607326b073bcbeefe4291e0fb95f6 SHA512 2b41a0611ac76612c9333e8490709ee22d17506f0c5d7e680a0d8f3f8b511bd5b279555cf609c1543aba71948819369a3c306b1168086890aa49c145b7860e17
DIST ii-1.9.tar.gz 12672 BLAKE2B 95da596de00fb311a69b907ab25c0089aafa512085b25fe5753206cdeaa0fec3d9a16eb38d60c68542f7002efd1052e69e1f5542f535363d38760cab508b3d99 SHA512 a665a6d1e1ffe56e370da2d703e677436ef4e18e763bb3cadbbf55e01812454ce4b79e8a20eda23846fdbe5a441ec8c534c9394995b3441472ce8a74c9035279
DIST ii-2.0.tar.gz 11129 BLAKE2B ee8b4e1169f1f59a9f09fa2a96fc898b0c48a337708a19a208fd344453f620bb3a832e25c26a20f7d14e2e5a7924d8a1d97efabdbb269125c2117f453d5f737f SHA512 ab8102b5669495b7bc6a3311245f3eb49d2add1e387290e41deb51e121f4c7c98a09d117052c345d8b896149276a83790c0b78efe3ed19fc52bc00575bf8e44a
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild
deleted file mode 100644
index be2821b3f793..000000000000
--- a/net-irc/ii/ii-1.8.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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 '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
- -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' config.mk || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- PREFIX="${EPREFIX}"/usr \
- DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
- install
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
end of thread, other threads:[~2024-07-20 12:43 UTC | newest]
Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-27 17:06 [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-07-20 12:43 Petr Vaněk
2024-07-20 11:18 Arthur Zamarin
2024-07-20 11:14 Arthur Zamarin
2024-07-20 11:14 Arthur Zamarin
2022-10-28 13:35 Florian Schmaus
2022-09-25 13:17 Arthur Zamarin
2022-09-25 6:50 Joonas Niilola
2022-09-25 6:50 Joonas Niilola
2022-09-25 1:21 Sam James
2022-08-16 5:00 Jakov Smolić
2022-02-27 13:29 Joonas Niilola
2022-02-27 13:29 Joonas Niilola
2021-05-07 12:50 Joonas Niilola
2021-05-07 12:50 Joonas Niilola
2021-05-07 12:50 Joonas Niilola
2021-05-07 12:50 Joonas Niilola
2020-10-09 8:31 Agostino Sarubbo
2020-09-24 18:16 Sergei Trofimovich
2020-09-24 18:08 Sergei Trofimovich
2020-09-24 6:59 Agostino Sarubbo
2020-09-23 13:54 Sam James
2018-03-14 6:00 Markus Meier
2018-02-12 0:09 Jeroen Roovers
2017-09-10 21:47 Jeroen Roovers
2017-08-31 10:33 Jeroen Roovers
2017-08-31 10:33 Jeroen Roovers
2017-08-31 10:33 Jeroen Roovers
2017-08-31 10:33 Jeroen Roovers
2017-03-23 7:24 Jeroen Roovers
2017-03-23 7:24 Jeroen Roovers
2017-03-23 7:24 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox