* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2017-09-23 6:46 Jeroen Roovers
0 siblings, 0 replies; 17+ messages in thread
From: Jeroen Roovers @ 2017-09-23 6:46 UTC (permalink / raw
To: gentoo-commits
commit: 0050b9a141aba944407d649d7e5b3d85f87cdd44
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 23 06:36:53 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Sep 23 06:45:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0050b9a1
net-irc/scrollz: Use HTTPS.
Package-Manager: Portage-2.3.10, Repoman-2.3.3
net-irc/scrollz/scrollz-2.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/scrollz/scrollz-2.1.ebuild b/net-irc/scrollz/scrollz-2.1.ebuild
index f362f46f479..9316aa567d7 100644
--- a/net-irc/scrollz/scrollz-2.1.ebuild
+++ b/net-irc/scrollz/scrollz-2.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="Advanced IRC client based on ircII"
-HOMEPAGE="http://packages.qa.debian.org/s/scrollz.html"
+HOMEPAGE="https://packages.qa.debian.org/s/scrollz.html"
SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz"
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2018-05-20 13:40 Johannes Huber
0 siblings, 0 replies; 17+ messages in thread
From: Johannes Huber @ 2018-05-20 13:40 UTC (permalink / raw
To: gentoo-commits
commit: 5cdfcc9156f35b19f8d764868e8a312f3dbc78a7
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 13:40:01 2018 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 20 13:40:01 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cdfcc91
net-irc/scrollz: Remove 2.2
Uses deprecated EAPI 4 and overshadowed by 2.2.1.
Package-Manager: Portage-2.3.38, Repoman-2.3.9
net-irc/scrollz/Manifest | 1 -
net-irc/scrollz/scrollz-2.2.ebuild | 65 --------------------------------------
2 files changed, 66 deletions(-)
diff --git a/net-irc/scrollz/Manifest b/net-irc/scrollz/Manifest
index 79a2bcd24ad..552f1f35943 100644
--- a/net-irc/scrollz/Manifest
+++ b/net-irc/scrollz/Manifest
@@ -1,2 +1 @@
DIST ScrollZ-2.2.1.tar.gz 940738 BLAKE2B eaac2b2d990dade73f036a71534f624bf9b6fb6be04d6c19ad8d458f6a2aa035cbd97af305925db42586091ada6eb6ea3415b97819b57a68fa0dda07718122ee SHA512 38eac6a2ecf8789b2d5e042a6ff59463aecf65646c3b07ca1980f60dc47f153dd5f6e42f5a0c1edbef7d1b6743a368f9f4b25be57406353b8e34919e82c7bc21
-DIST ScrollZ-2.2.tar.gz 939999 BLAKE2B 8b8b3f35966e2db3e70a39e75f690005194158b83c35f7d9615d7ccc00e297ef397ac547d5d7d4d75174bf0fb70df8bbe59480367f3dcbc6629932baaaf4ff70 SHA512 0b77c5173f09d78f6f7594d8e43d842604d85fb21dcd83bce4507c578a8ce42e6f4f0e02e0b1ecc81564a6e5c01799e1628c664a11cf859eeb5f5535b77a6fab
diff --git a/net-irc/scrollz/scrollz-2.2.ebuild b/net-irc/scrollz/scrollz-2.2.ebuild
deleted file mode 100644
index 49f0c795b24..00000000000
--- a/net-irc/scrollz/scrollz-2.2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-MY_P=ScrollZ-${PV}
-
-DESCRIPTION="Advanced IRC client based on ircII"
-HOMEPAGE="http://scrollz.com/"
-SRC_URI="http://www.scrollz.com/download/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="gmp gnutls ipv6 socks5 ssl"
-
-REQUIRED_USE="gnutls? ( ssl )"
-
-RDEPEND="sys-libs/ncurses
- gmp? ( dev-libs/gmp )
- ssl? (
- gnutls? ( net-libs/gnutls )
- !gnutls? ( dev-libs/openssl )
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-cppflags.patch
- epatch "${FILESDIR}"/${P}-make-install.patch
-}
-
-src_configure() {
- local _myssl
-
- if use ssl; then
- if use gnutls; then
- _myssl="--with-ssl"
- else
- _myssl="--with-openssl"
- fi
- fi
-
- tc-export CC #397441, ancient autoconf
- econf \
- --with-default-server=irc.gentoo.org \
- $(use_enable socks5) \
- $(use_enable ipv6) \
- --enable-regexp \
- $(use_enable gmp fish) \
- ${_myssl}
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- mandir="${EPREFIX}/usr/share/man/man1" \
- install
-
- dodoc ChangeLog* NEWS README* todo
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2018-05-20 13:40 Johannes Huber
0 siblings, 0 replies; 17+ messages in thread
From: Johannes Huber @ 2018-05-20 13:40 UTC (permalink / raw
To: gentoo-commits
commit: f8170c3d1357765ade2bcb70e53502e4a27978bc
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 13:39:17 2018 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 20 13:39:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8170c3d
net-irc/scrollz: Remove 2.1
Uses deprecated EAPI 4 and overshadowed by 2.2.1.
Package-Manager: Portage-2.3.38, Repoman-2.3.9
net-irc/scrollz/Manifest | 1 -
net-irc/scrollz/scrollz-2.1.ebuild | 54 --------------------------------------
2 files changed, 55 deletions(-)
diff --git a/net-irc/scrollz/Manifest b/net-irc/scrollz/Manifest
index 2a7a4fc28d1..79a2bcd24ad 100644
--- a/net-irc/scrollz/Manifest
+++ b/net-irc/scrollz/Manifest
@@ -1,3 +1,2 @@
DIST ScrollZ-2.2.1.tar.gz 940738 BLAKE2B eaac2b2d990dade73f036a71534f624bf9b6fb6be04d6c19ad8d458f6a2aa035cbd97af305925db42586091ada6eb6ea3415b97819b57a68fa0dda07718122ee SHA512 38eac6a2ecf8789b2d5e042a6ff59463aecf65646c3b07ca1980f60dc47f153dd5f6e42f5a0c1edbef7d1b6743a368f9f4b25be57406353b8e34919e82c7bc21
DIST ScrollZ-2.2.tar.gz 939999 BLAKE2B 8b8b3f35966e2db3e70a39e75f690005194158b83c35f7d9615d7ccc00e297ef397ac547d5d7d4d75174bf0fb70df8bbe59480367f3dcbc6629932baaaf4ff70 SHA512 0b77c5173f09d78f6f7594d8e43d842604d85fb21dcd83bce4507c578a8ce42e6f4f0e02e0b1ecc81564a6e5c01799e1628c664a11cf859eeb5f5535b77a6fab
-DIST scrollz_2.1.orig.tar.gz 950734 BLAKE2B 358643c97d41e90d2a4ee2bf34306c220a11d7988e810b5e5d4428cf6d20db33980b645a088560a19b0ddc4468b96cef8285559313a4383fb38a164ed12802da SHA512 b26771368531fd53651c412bef87bb50d15b89a91fabbc0f393f1c6c560b76fd0fa62ef6b143d1bd023aaae3d077570ee0ad32df68f9d03cf29d64e7f5fe8570
diff --git a/net-irc/scrollz/scrollz-2.1.ebuild b/net-irc/scrollz/scrollz-2.1.ebuild
deleted file mode 100644
index 9316aa567d7..00000000000
--- a/net-irc/scrollz/scrollz-2.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Advanced IRC client based on ircII"
-HOMEPAGE="https://packages.qa.debian.org/s/scrollz.html"
-SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="gmp gnutls ipv6 socks5 ssl"
-
-REQUIRED_USE="gnutls? ( ssl )"
-
-RDEPEND="sys-libs/ncurses
- gmp? ( dev-libs/gmp )
- ssl? (
- gnutls? ( net-libs/gnutls )
- !gnutls? ( dev-libs/openssl )
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${P}.orig
-
-src_configure() {
- local _myssl
-
- if use ssl; then
- if use gnutls; then
- _myssl="--with-ssl"
- else
- _myssl="--with-openssl"
- fi
- fi
-
- econf \
- --with-default-server=irc.gentoo.org \
- $(use_enable socks5) \
- $(use_enable ipv6) \
- --enable-regexp \
- $(use_enable gmp fish) \
- ${_myssl}
-}
-
-src_install() {
- einstall \
- sharedir="${ED}/usr/share" \
- mandir="${ED}/usr/share/man/man1"
-
- dodoc ChangeLog* NEWS README* todo
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2019-01-20 12:06 Pacho Ramos
0 siblings, 0 replies; 17+ messages in thread
From: Pacho Ramos @ 2019-01-20 12:06 UTC (permalink / raw
To: gentoo-commits
commit: 67f042f14014c7b7507048f95d4b84181e850b3f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 20 11:58:27 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 20 12:06:09 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f042f1
net-irc/scrollz: Version bump
Closes: https://bugs.gentoo.org/675840
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-irc/scrollz/Manifest | 1 +
net-irc/scrollz/scrollz-2.3.ebuild | 62 ++++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/net-irc/scrollz/Manifest b/net-irc/scrollz/Manifest
index 552f1f35943..a9001decac7 100644
--- a/net-irc/scrollz/Manifest
+++ b/net-irc/scrollz/Manifest
@@ -1 +1,2 @@
DIST ScrollZ-2.2.1.tar.gz 940738 BLAKE2B eaac2b2d990dade73f036a71534f624bf9b6fb6be04d6c19ad8d458f6a2aa035cbd97af305925db42586091ada6eb6ea3415b97819b57a68fa0dda07718122ee SHA512 38eac6a2ecf8789b2d5e042a6ff59463aecf65646c3b07ca1980f60dc47f153dd5f6e42f5a0c1edbef7d1b6743a368f9f4b25be57406353b8e34919e82c7bc21
+DIST ScrollZ-2.3.tar.gz 981707 BLAKE2B ee7c1955dbd2515204d805052d091274c3c7e08257a798c357c5a195c12d7ebc85a160cd40ddf1b2aa87a1b628bebf630c3b7428bde1f230bf9b372f74cc74d2 SHA512 cb3dc2f462452c605c688805ed5128e0197eb4daae895c03f00631c4e9a0994f89a9c55b7e0591588f3f313dab66fcbeb1683b42ef75c3b714185b40703b1979
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3.ebuild
new file mode 100644
index 00000000000..91c290474e3
--- /dev/null
+++ b/net-irc/scrollz/scrollz-2.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+MY_P="ScrollZ-${PV}"
+
+DESCRIPTION="Advanced IRC client based on ircII"
+HOMEPAGE="http://www.scrollz.info/"
+SRC_URI="http://www.scrollz.info/download/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+
+IUSE="gmp gnutls ipv6 socks5 ssl"
+REQUIRED_USE="gnutls? ( ssl )"
+
+RDEPEND="
+ sys-libs/ncurses:0=
+ gmp? ( dev-libs/gmp:0= )
+ ssl? (
+ gnutls? ( net-libs/gnutls:0= )
+ !gnutls? ( dev-libs/openssl:0= )
+ )
+"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/ScrollZ-${MY_P}"
+
+src_configure() {
+ local _myssl
+
+ if use ssl; then
+ if use gnutls; then
+ _myssl="--with-ssl"
+ else
+ _myssl="--with-openssl"
+ fi
+ fi
+
+ tc-export CC #397441, ancient autoconf
+ econf \
+ --with-default-server="irc.gentoo.org" \
+ $(use_with socks5) \
+ $(use_enable ipv6) \
+ --enable-regexp \
+ $(use_enable gmp fish) \
+ ${_myssl}
+}
+
+src_install() {
+ emake \
+ DESTDIR="${D}" \
+ mandir="${EPREFIX}/usr/share/man/man1" \
+ install
+
+ dodoc ChangeLog* NEWS README* todo
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2019-04-29 20:09 Sergei Trofimovich
0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2019-04-29 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 5e02ad67712ee705f77302e3a380b9f9d2cfb0fa
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 29 20:08:53 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 20:08:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e02ad67
net-irc/scrollz: stable 2.3 for ppc, bug #684594
Package-Manager: Portage-2.3.65, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3.ebuild
index 91c290474e3..a7a4b03e80b 100644
--- a/net-irc/scrollz/scrollz-2.3.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.scrollz.info/download/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 socks5 ssl"
REQUIRED_USE="gnutls? ( ssl )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2019-05-19 15:48 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2019-05-19 15:48 UTC (permalink / raw
To: gentoo-commits
commit: dabe2a6efac55d5853a965ebb81954be081b0d27
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 15:16:39 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun May 19 15:16:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dabe2a6e
net-irc/scrollz: x86 stable (bug #684594)
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3.ebuild
index a7a4b03e80b..60429979d3f 100644
--- a/net-irc/scrollz/scrollz-2.3.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.scrollz.info/download/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 socks5 ssl"
REQUIRED_USE="gnutls? ( ssl )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2019-05-19 20:55 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-05-19 20:55 UTC (permalink / raw
To: gentoo-commits
commit: 64307e164cf904b68cb66b13e6918ed7bf5d16dc
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 20:55:16 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 19 20:55:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64307e16
net-irc/scrollz: amd64 stable wrt bug #684594
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
net-irc/scrollz/scrollz-2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3.ebuild
index 60429979d3f..706cb974e6f 100644
--- a/net-irc/scrollz/scrollz-2.3.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.scrollz.info/download/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 socks5 ssl"
REQUIRED_USE="gnutls? ( ssl )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2020-07-03 23:22 Aaron Bauman
0 siblings, 0 replies; 17+ messages in thread
From: Aaron Bauman @ 2020-07-03 23:22 UTC (permalink / raw
To: gentoo-commits
commit: 174440f5fafd463a4c97dc7791d951549c0bd5ab
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Jul 3 08:44:10 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Jul 3 23:21:37 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=174440f5
net-irc/scrollz: use HTTPS
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16563
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3.ebuild
index 706cb974e6f..b45a5957d95 100644
--- a/net-irc/scrollz/scrollz-2.3.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,8 +7,8 @@ inherit toolchain-funcs
MY_P="ScrollZ-${PV}"
DESCRIPTION="Advanced IRC client based on ircII"
-HOMEPAGE="http://www.scrollz.info/"
-SRC_URI="http://www.scrollz.info/download/${MY_P}.tar.gz"
+HOMEPAGE="https://www.scrollz.info/"
+SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2020-08-30 4:34 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2020-08-30 4:34 UTC (permalink / raw
To: gentoo-commits
commit: a93d30feb07273b94b32fc0b2ca014c6027611d4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 30 04:34:24 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 30 04:34:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a93d30fe
net-irc/scrollz: remove broken socks5 support
Closes: https://bugs.gentoo.org/698780
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3.ebuild
index 08015a0442d..a76e2d53cdc 100644
--- a/net-irc/scrollz/scrollz-2.3.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.ebuild
@@ -15,7 +15,7 @@ LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="gmp gnutls ipv6 socks5 ssl"
+IUSE="gmp gnutls ipv6 ssl"
REQUIRED_USE="gnutls? ( ssl )"
BDEPEND="virtual/pkgconfig"
@@ -49,7 +49,6 @@ src_configure() {
tc-export CC #397441, ancient autoconf
econf \
--with-default-server="irc.gentoo.org" \
- $(use_with socks5) \
$(use_enable ipv6) \
--enable-regexp \
$(use_enable gmp fish) \
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2021-06-30 18:40 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-06-30 18:40 UTC (permalink / raw
To: gentoo-commits
commit: 39141016c101fcc102b8120115dc6dab7e633c9d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 18:39:23 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 18:39:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39141016
net-irc/scrollz: add missing libcrypt dependency
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/{scrollz-2.3.ebuild => scrollz-2.3-r1.ebuild} | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3-r1.ebuild
similarity index 95%
rename from net-irc/scrollz/scrollz-2.3.ebuild
rename to net-irc/scrollz/scrollz-2.3-r1.ebuild
index a76e2d53cdc..2cb6e53ecd8 100644
--- a/net-irc/scrollz/scrollz-2.3.ebuild
+++ b/net-irc/scrollz/scrollz-2.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,17 +10,18 @@ MY_P="ScrollZ-${PV}"
DESCRIPTION="Advanced IRC client based on ircII"
HOMEPAGE="https://www.scrollz.info/"
SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
+S="${WORKDIR}/ScrollZ-${MY_P}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
IUSE="gmp gnutls ipv6 ssl"
REQUIRED_USE="gnutls? ( ssl )"
BDEPEND="virtual/pkgconfig"
DEPEND="
sys-libs/ncurses:0=
+ virtual/libcrypt:=
gmp? ( dev-libs/gmp:0= )
ssl? (
gnutls? ( net-libs/gnutls:0= )
@@ -29,8 +30,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-S="${WORKDIR}/ScrollZ-${MY_P}"
-
PATCHES=(
"${FILESDIR}/${PN}-2.3-fcommon.patch"
)
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2022-11-22 7:05 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-11-22 7:05 UTC (permalink / raw
To: gentoo-commits
commit: 55e4a023b11c654b43cc878ba3be7bc9ee4977e5
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Tue Nov 15 08:06:33 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 07:04:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55e4a023
net-irc/scrollz: version bump to 2.3.1, patch for clang16
Version bump also closes this vulnerability from bug 777987.
Bug: https://bugs.gentoo.org/777987
Closes: https://bugs.gentoo.org/731206
Closes: https://bugs.gentoo.org/861467
Closes: https://bugs.gentoo.org/870907
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
Closes: https://github.com/gentoo/gentoo/pull/28284
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/Manifest | 2 ++
net-irc/scrollz/scrollz-2.3.1.ebuild | 69 ++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/net-irc/scrollz/Manifest b/net-irc/scrollz/Manifest
index 8c876bc6f271..eb352197e3ed 100644
--- a/net-irc/scrollz/Manifest
+++ b/net-irc/scrollz/Manifest
@@ -1 +1,3 @@
+DIST ScrollZ-2.3.1.tar.gz 980735 BLAKE2B 39cd79a3c1a77bef730ecfadc8a9e78243e34781cc66cc068be698d18decc24e1001b21302e2069eb4cc21de41b4fd24a4e20a1e7a8e1d0a776ad02e1f215444 SHA512 3fc8386a16ec8ef3cce178465e04485b6dd2d5a4fc93099a8af5a6127ec66357ce7b12173c59b33eeaddf142d17d3e979821ab0f30087806545afe1ecfc168d3
DIST ScrollZ-2.3.tar.gz 981707 BLAKE2B ee7c1955dbd2515204d805052d091274c3c7e08257a798c357c5a195c12d7ebc85a160cd40ddf1b2aa87a1b628bebf630c3b7428bde1f230bf9b372f74cc74d2 SHA512 cb3dc2f462452c605c688805ed5128e0197eb4daae895c03f00631c4e9a0994f89a9c55b7e0591588f3f313dab66fcbeb1683b42ef75c3b714185b40703b1979
+DIST scrollz-2.3.1-patches.tar.xz 71696 BLAKE2B a0408017a23492f056bf464fb4ed9c20d59ca1f545bbd6b4f8f9b3097f82086a53b099558a18e72042126357f5f508d80a30eabb2a58368c198e2d077be3eb99 SHA512 37b035d838d215186b67621aecfe1d12869f7883d266a418227a2e768f569c2992598eaf93b4e0846c2e33d3e1325b3f0d39a285a0de4c78f4aedb190907bed5
diff --git a/net-irc/scrollz/scrollz-2.3.1.ebuild b/net-irc/scrollz/scrollz-2.3.1.ebuild
new file mode 100644
index 000000000000..52ce5f27eb02
--- /dev/null
+++ b/net-irc/scrollz/scrollz-2.3.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic toolchain-funcs
+
+MY_P="ScrollZ-${PV}"
+
+DESCRIPTION="Advanced IRC client based on ircII"
+HOMEPAGE="https://www.scrollz.info/"
+SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-patches.tar.xz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="gmp gnutls ipv6 ssl"
+REQUIRED_USE="gnutls? ( ssl )"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="
+ sys-libs/ncurses:=
+ virtual/libcrypt:=
+ gmp? ( dev-libs/gmp:= )
+ ssl? (
+ gnutls? ( net-libs/gnutls:= )
+ !gnutls? ( dev-libs/openssl:= )
+ )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+ # https://github.com/ScrollZ/ScrollZ/pull/30
+ "${WORKDIR}"/${P}-patches
+)
+
+src_configure() {
+ # Many -Wdeprecated-non-prototype warnings
+ append-cflags -std=gnu89
+
+ local _myssl
+
+ if use ssl; then
+ if use gnutls; then
+ _myssl="--with-ssl"
+ else
+ _myssl="--with-openssl"
+ fi
+ fi
+
+ tc-export CC #397441, ancient autoconf
+ econf \
+ --with-default-server="irc.gentoo.org" \
+ $(use_enable ipv6) \
+ --enable-regexp \
+ $(use_enable gmp fish) \
+ ${_myssl}
+}
+
+src_install() {
+ emake \
+ DESTDIR="${ED}" \
+ mandir="${EPREFIX}/usr/share/man/man1" \
+ install
+
+ dodoc ChangeLog* NEWS README* todo
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2023-01-06 21:51 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-01-06 21:51 UTC (permalink / raw
To: gentoo-commits
commit: 57ee5d4b1415572640f4b19676b175cef1ec620f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 21:51:09 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 21:51:09 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ee5d4b
net-irc/scrollz: Stabilize 2.3.1 x86, #889966
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/scrollz/scrollz-2.3.1.ebuild b/net-irc/scrollz/scrollz-2.3.1.ebuild
index b60e759cb3c9..9610e9aa1d83 100644
--- a/net-irc/scrollz/scrollz-2.3.1.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 ssl"
REQUIRED_USE="gnutls? ( ssl )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2023-01-06 21:51 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-01-06 21:51 UTC (permalink / raw
To: gentoo-commits
commit: 2acccb08279a7b7992fbdcb78090a4f60981e484
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 21:51:08 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 21:51:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2acccb08
net-irc/scrollz: Stabilize 2.3.1 ppc, #889966
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/scrollz/scrollz-2.3.1.ebuild b/net-irc/scrollz/scrollz-2.3.1.ebuild
index 52ce5f27eb02..b60e759cb3c9 100644
--- a/net-irc/scrollz/scrollz-2.3.1.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 ssl"
REQUIRED_USE="gnutls? ( ssl )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2023-01-06 21:51 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-01-06 21:51 UTC (permalink / raw
To: gentoo-commits
commit: d696fa753b20760cb8239938a2489898b421c3f3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 21:51:10 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 21:51:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d696fa75
net-irc/scrollz: Stabilize 2.3.1 amd64, #889966
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/scrollz/scrollz-2.3.1.ebuild b/net-irc/scrollz/scrollz-2.3.1.ebuild
index 9610e9aa1d83..e5324b205360 100644
--- a/net-irc/scrollz/scrollz-2.3.1.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 ssl"
REQUIRED_USE="gnutls? ( ssl )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2023-02-11 4:53 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-02-11 4:53 UTC (permalink / raw
To: gentoo-commits
commit: 366393b0617fdf26ca23b43cf4bb0dbcc1121eb6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 11 04:33:22 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 11 04:53:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366393b0
net-irc/scrollz: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-irc/scrollz/metadata.xml b/net-irc/scrollz/metadata.xml
index 85e4ed814fa2..a324b587c6fb 100644
--- a/net-irc/scrollz/metadata.xml
+++ b/net-irc/scrollz/metadata.xml
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<!-- maintainer-needed -->
+ <!-- maintainer-needed -->
+ <upstream>
+ <remote-id type="github">ScrollZ/ScrollZ</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2023-11-09 6:27 Hans de Graaff
0 siblings, 0 replies; 17+ messages in thread
From: Hans de Graaff @ 2023-11-09 6:27 UTC (permalink / raw
To: gentoo-commits
commit: 524c415744c035ae2cda5d83b52c892aa335a68a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 9 06:27:00 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Nov 9 06:27:24 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=524c4157
net-irc/scrollz: drop 2.3-r1
Bug: https://bugs.gentoo.org/777987
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
net-irc/scrollz/Manifest | 1 -
net-irc/scrollz/scrollz-2.3-r1.ebuild | 64 -----------------------------------
2 files changed, 65 deletions(-)
diff --git a/net-irc/scrollz/Manifest b/net-irc/scrollz/Manifest
index eb352197e3ed..1de1f0cea048 100644
--- a/net-irc/scrollz/Manifest
+++ b/net-irc/scrollz/Manifest
@@ -1,3 +1,2 @@
DIST ScrollZ-2.3.1.tar.gz 980735 BLAKE2B 39cd79a3c1a77bef730ecfadc8a9e78243e34781cc66cc068be698d18decc24e1001b21302e2069eb4cc21de41b4fd24a4e20a1e7a8e1d0a776ad02e1f215444 SHA512 3fc8386a16ec8ef3cce178465e04485b6dd2d5a4fc93099a8af5a6127ec66357ce7b12173c59b33eeaddf142d17d3e979821ab0f30087806545afe1ecfc168d3
-DIST ScrollZ-2.3.tar.gz 981707 BLAKE2B ee7c1955dbd2515204d805052d091274c3c7e08257a798c357c5a195c12d7ebc85a160cd40ddf1b2aa87a1b628bebf630c3b7428bde1f230bf9b372f74cc74d2 SHA512 cb3dc2f462452c605c688805ed5128e0197eb4daae895c03f00631c4e9a0994f89a9c55b7e0591588f3f313dab66fcbeb1683b42ef75c3b714185b40703b1979
DIST scrollz-2.3.1-patches.tar.xz 71696 BLAKE2B a0408017a23492f056bf464fb4ed9c20d59ca1f545bbd6b4f8f9b3097f82086a53b099558a18e72042126357f5f508d80a30eabb2a58368c198e2d077be3eb99 SHA512 37b035d838d215186b67621aecfe1d12869f7883d266a418227a2e768f569c2992598eaf93b4e0846c2e33d3e1325b3f0d39a285a0de4c78f4aedb190907bed5
diff --git a/net-irc/scrollz/scrollz-2.3-r1.ebuild b/net-irc/scrollz/scrollz-2.3-r1.ebuild
deleted file mode 100644
index cb6b357682e6..000000000000
--- a/net-irc/scrollz/scrollz-2.3-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_P="ScrollZ-${PV}"
-
-DESCRIPTION="Advanced IRC client based on ircII"
-HOMEPAGE="https://www.scrollz.info/"
-SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
-S="${WORKDIR}/ScrollZ-${MY_P}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="gmp gnutls ipv6 ssl"
-REQUIRED_USE="gnutls? ( ssl )"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="
- sys-libs/ncurses:0=
- virtual/libcrypt:=
- gmp? ( dev-libs/gmp:0= )
- ssl? (
- gnutls? ( net-libs/gnutls:0= )
- !gnutls? ( dev-libs/openssl:0= )
- )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.3-fcommon.patch"
-)
-
-src_configure() {
- local _myssl
-
- if use ssl; then
- if use gnutls; then
- _myssl="--with-ssl"
- else
- _myssl="--with-openssl"
- fi
- fi
-
- tc-export CC #397441, ancient autoconf
- econf \
- --with-default-server="irc.gentoo.org" \
- $(use_enable ipv6) \
- --enable-regexp \
- $(use_enable gmp fish) \
- ${_myssl}
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- mandir="${EPREFIX}/usr/share/man/man1" \
- install
-
- dodoc ChangeLog* NEWS README* todo
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/
@ 2024-01-08 9:56 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-01-08 9:56 UTC (permalink / raw
To: gentoo-commits
commit: d484ccab60a0b40bbfbd57493f5b561bd1a98d79
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 8 09:50:54 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 8 09:50:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d484ccab
net-irc/scrollz: fix UnusedInherits (autotools)
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/scrollz/scrollz-2.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/scrollz/scrollz-2.3.1.ebuild b/net-irc/scrollz/scrollz-2.3.1.ebuild
index e5324b205360..bdee35abb91b 100644
--- a/net-irc/scrollz/scrollz-2.3.1.ebuild
+++ b/net-irc/scrollz/scrollz-2.3.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-inherit autotools flag-o-matic toolchain-funcs
+inherit flag-o-matic toolchain-funcs
MY_P="ScrollZ-${PV}"
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-01-08 9:56 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-29 20:09 [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/ Sergei Trofimovich
-- strict thread matches above, loose matches on Subject: below --
2024-01-08 9:56 Sam James
2023-11-09 6:27 Hans de Graaff
2023-02-11 4:53 Sam James
2023-01-06 21:51 Sam James
2023-01-06 21:51 Sam James
2023-01-06 21:51 Sam James
2022-11-22 7:05 Sam James
2021-06-30 18:40 Sam James
2020-08-30 4:34 Sam James
2020-07-03 23:22 Aaron Bauman
2019-05-19 20:55 Mikle Kolyada
2019-05-19 15:48 Thomas Deutschmann
2019-01-20 12:06 Pacho Ramos
2018-05-20 13:40 Johannes Huber
2018-05-20 13:40 Johannes Huber
2017-09-23 6:46 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox