* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2017-12-03 12:00 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2017-12-03 12:00 UTC (permalink / raw
To: gentoo-commits
commit: 6dfacbff69f246fe9a3f737cf98f04c9be3b82c3
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 3 11:58:49 2017 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 3 11:59:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dfacbff
net-irc/iroffer-dinoex: version bump
Package-Manager: Portage-2.3.13, Repoman-2.3.3
net-irc/iroffer-dinoex/Manifest | 1 +
net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild | 119 ++++++++++++++++++++++
2 files changed, 120 insertions(+)
diff --git a/net-irc/iroffer-dinoex/Manifest b/net-irc/iroffer-dinoex/Manifest
index a3359d299fe..7f78722a9df 100644
--- a/net-irc/iroffer-dinoex/Manifest
+++ b/net-irc/iroffer-dinoex/Manifest
@@ -1 +1,2 @@
DIST iroffer-dinoex-3.29.tar.gz 537027 SHA256 d96c307062552878d7594e280eef3a8669b4af955f1efe1d6e3e7ad660f9a6fb SHA512 bac4feaa0db11de3faed0beb7302cb090d3a6629a6c299bd1b4ee136bce7290f1a9fa998aab909f1fafe54f5577bed90f487d4b2592521a87d5d9ae7512eecb0 WHIRLPOOL 2917244bfc2c0d05f5660b767dfa39da6099e5388dedea5c2578a483fc52747959c296f65a71cd3a8a24740afca1c3fab8e7825052fec4ac5eadce558917fcd7
+DIST iroffer-dinoex-3.30.tar.gz 541131 BLAKE2B ea61113dffcd14b162153aa03c55a203d8ccd99e8f81de53a9ab8543bd91e948509281f753a8f332445eec102b6bd2b51972ff8bedb8b574b55b9325f6969269 SHA512 e45dc3dd901cbb73a9d59cd5a672834c7b6527864eb3385121856af562680a0f91e8846e8690fc60a6349dc4c4fc1cf190d3ac01813c6c045ef18147d61b7d4d
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
new file mode 100644
index 00000000000..1c2432e193f
--- /dev/null
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PLOCALES="de en fr it"
+PLOCALE_BACKUP="en"
+
+inherit eutils l10n toolchain-funcs user
+
+DESCRIPTION="IRC fileserver using DCC"
+HOMEPAGE="http://iroffer.dinoex.net/"
+SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
+ http://iroffer.dinoex.net/HISTORY/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
+
+REQUIRED_USE="
+ admin? ( http )
+ gnutls? ( ssl )
+"
+
+RDEPEND="chroot? ( dev-libs/nss )
+ curl? (
+ net-misc/curl[ssl?]
+ gnutls? ( net-misc/curl[curl_ssl_gnutls] )
+ !gnutls? ( ssl? ( net-misc/curl[curl_ssl_openssl] ) )
+ )
+ geoip? ( dev-libs/geoip )
+ gnutls? ( net-libs/gnutls )
+ ruby? ( dev-lang/ruby )
+ ssl? ( !gnutls? ( dev-libs/openssl ) )"
+
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ enewgroup iroffer
+ enewuser iroffer -1 -1 -1 iroffer
+}
+
+src_prepare() {
+ epatch "${FILESDIR}/${P}-config.patch"\
+ "${FILESDIR}/${PN}-Werror.patch"
+ epatch_user
+ l10n_find_plocales_changes "" 'help-admin-' '.txt'
+}
+
+do_configure() {
+ echo ./Configure $*
+ ./Configure $* || die "configure phase failed"
+}
+
+src_configure() {
+ do_configure \
+ PREFIX="${EPREFIX}/usr"\
+ $(usex debug '-profiling' '' '' '')\
+ $(usex debug '-debug' '' '' '')\
+ $(usex geoip '-geoip' '' '' '')\
+ $(usex chroot '' '-no-chroot' '' '')\
+ $(usex curl '-curl' '' '' '' )\
+ $(usex gnutls '-tls' '' '' '' '')\
+ $(usex upnp '-upnp' '' '' '')\
+ $(usex ruby '-ruby' '' '' '')\
+ $(usex kqueue '-kqueue' '' '' '')\
+ $(usex blowfish '' '-no-blowfish' '' '')\
+ $(usex ssl '' '-no-openssl' '' '')\
+ $(usex http '' '-no-http' '' '')\
+ $(usex admin '' '-no-admin' '' '')\
+ $(usex telnet '' '-no-telnet' '' '')\
+ $(usex memsave '' '-no-memsave' '' '')
+}
+
+src_compile() {
+ # TODO: default compile targets always include chrooted target, which is not good
+ emake CC="$(tc-getCC)" $(l10n_get_locales)
+}
+
+myloc() {
+ emake DESTDIR="${D}" install-${1}
+
+ dodoc help-admin-${1}.txt
+ use http && dohtml doc/INSTALL-linux-${1}.html
+
+ insinto /etc/${PN}
+ case ${1} in
+ "de")
+ doins beispiel.config;;
+ "fr")
+ doins exemple.config;;
+ *)
+ doins sample.config;;
+ esac
+}
+
+src_install() {
+ l10n_for_each_locale_do myloc
+
+ dodoc README* THANKS TODO
+ doman iroffer.1 xdcc.7
+
+ newinitd "${FILESDIR}/${PN}.init" ${PN}
+ newconfd "${FILESDIR}/${PN}.conf" ${PN}
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+ if use ruby; then
+ insinto /usr/share/${PN}
+ doins ruby-sample.rb
+ fi
+
+ if use http; then
+ insinto /usr/share/${PN}/htdocs
+ doins htdocs/*
+ fi
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2017-12-03 18:34 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2017-12-03 18:34 UTC (permalink / raw
To: gentoo-commits
commit: 085245c8af0d546e4f9f707a89b81929a9677d77
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 3 18:33:40 2017 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 3 18:34:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=085245c8
net-irc/iroffer-dinoex: make config patch version independent
Package-Manager: Portage-2.3.13, Repoman-2.3.3
net-irc/iroffer-dinoex/Manifest | 2 +-
net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/iroffer-dinoex/Manifest b/net-irc/iroffer-dinoex/Manifest
index 7f78722a9df..19717b991a6 100644
--- a/net-irc/iroffer-dinoex/Manifest
+++ b/net-irc/iroffer-dinoex/Manifest
@@ -1,2 +1,2 @@
-DIST iroffer-dinoex-3.29.tar.gz 537027 SHA256 d96c307062552878d7594e280eef3a8669b4af955f1efe1d6e3e7ad660f9a6fb SHA512 bac4feaa0db11de3faed0beb7302cb090d3a6629a6c299bd1b4ee136bce7290f1a9fa998aab909f1fafe54f5577bed90f487d4b2592521a87d5d9ae7512eecb0 WHIRLPOOL 2917244bfc2c0d05f5660b767dfa39da6099e5388dedea5c2578a483fc52747959c296f65a71cd3a8a24740afca1c3fab8e7825052fec4ac5eadce558917fcd7
+DIST iroffer-dinoex-3.29.tar.gz 537027 BLAKE2B f6dddd60b5e4e837cfb56c450ee32249607375a386f9215a9a4eb34e7696c066b6c817ae956c044bbc208f69a73967df5aee9835b2a94ca70a849045ff11f37d SHA512 bac4feaa0db11de3faed0beb7302cb090d3a6629a6c299bd1b4ee136bce7290f1a9fa998aab909f1fafe54f5577bed90f487d4b2592521a87d5d9ae7512eecb0
DIST iroffer-dinoex-3.30.tar.gz 541131 BLAKE2B ea61113dffcd14b162153aa03c55a203d8ccd99e8f81de53a9ab8543bd91e948509281f753a8f332445eec102b6bd2b51972ff8bedb8b574b55b9325f6969269 SHA512 e45dc3dd901cbb73a9d59cd5a672834c7b6527864eb3385121856af562680a0f91e8846e8690fc60a6349dc4c4fc1cf190d3ac01813c6c045ef18147d61b7d4d
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
index 1c2432e193f..f9ffa93b367 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
@@ -42,7 +42,7 @@ pkg_setup() {
}
src_prepare() {
- epatch "${FILESDIR}/${P}-config.patch"\
+ epatch "${FILESDIR}/${PN}-3.29-config.patch"\
"${FILESDIR}/${PN}-Werror.patch"
epatch_user
l10n_find_plocales_changes "" 'help-admin-' '.txt'
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2018-01-25 17:35 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2018-01-25 17:35 UTC (permalink / raw
To: gentoo-commits
commit: 039cf5e08d341d6dea980a7cefcc1cc62f8e2b9b
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 17:34:12 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 17:34:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=039cf5e0
net-irc/iroffer-dinoex: EAPI bump
Package-Manager: Portage-2.3.19, Repoman-2.3.6
.../iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild | 121 +++++++++++++++++++++
1 file changed, 121 insertions(+)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
new file mode 100644
index 00000000000..1776b3620bb
--- /dev/null
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="de en fr it"
+PLOCALE_BACKUP="en"
+
+inherit l10n toolchain-funcs user
+
+DESCRIPTION="IRC fileserver using DCC"
+HOMEPAGE="http://iroffer.dinoex.net/"
+SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
+ http://iroffer.dinoex.net/HISTORY/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
+
+REQUIRED_USE="
+ admin? ( http )
+ gnutls? ( ssl )
+"
+
+RDEPEND="chroot? ( dev-libs/nss )
+ curl? (
+ net-misc/curl[ssl?]
+ gnutls? ( net-misc/curl[curl_ssl_gnutls] )
+ !gnutls? ( ssl? ( net-misc/curl[curl_ssl_openssl] ) )
+ )
+ geoip? ( dev-libs/geoip )
+ gnutls? ( net-libs/gnutls )
+ ruby? ( dev-lang/ruby:* )
+ ssl? ( !gnutls? ( dev-libs/openssl:0= ) )"
+
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ enewgroup iroffer
+ enewuser iroffer -1 -1 -1 iroffer
+}
+
+src_prepare() {
+ eapply "${FILESDIR}/${PN}-3.29-config.patch"
+ eapply -p0 "${FILESDIR}/${PN}-Werror.patch"
+
+ eapply_user
+
+ l10n_find_plocales_changes "" 'help-admin-' '.txt'
+}
+
+do_configure() {
+ echo ./Configure $*
+ ./Configure $* || die "configure phase failed"
+}
+
+src_configure() {
+ do_configure \
+ PREFIX="${EPREFIX}/usr"\
+ $(usex debug '-profiling' '' '' '')\
+ $(usex debug '-debug' '' '' '')\
+ $(usex geoip '-geoip' '' '' '')\
+ $(usex chroot '' '-no-chroot' '' '')\
+ $(usex curl '-curl' '' '' '' )\
+ $(usex gnutls '-tls' '' '' '' '')\
+ $(usex upnp '-upnp' '' '' '')\
+ $(usex ruby '-ruby' '' '' '')\
+ $(usex kqueue '-kqueue' '' '' '')\
+ $(usex blowfish '' '-no-blowfish' '' '')\
+ $(usex ssl '' '-no-openssl' '' '')\
+ $(usex http '' '-no-http' '' '')\
+ $(usex admin '' '-no-admin' '' '')\
+ $(usex telnet '' '-no-telnet' '' '')\
+ $(usex memsave '' '-no-memsave' '' '')
+}
+
+src_compile() {
+ # TODO: default compile targets always include chrooted target, which is not good
+ emake CC="$(tc-getCC)" $(l10n_get_locales)
+}
+
+myloc() {
+ emake DESTDIR="${D}" install-${1}
+
+ dodoc help-admin-${1}.txt
+ use http && dodoc doc/INSTALL-linux-${1}.html
+
+ insinto /etc/${PN}
+ case ${1} in
+ "de")
+ doins beispiel.config;;
+ "fr")
+ doins exemple.config;;
+ *)
+ doins sample.config;;
+ esac
+}
+
+src_install() {
+ l10n_for_each_locale_do myloc
+
+ dodoc README* THANKS TODO
+ doman iroffer.1 xdcc.7
+
+ newinitd "${FILESDIR}/${PN}.init" ${PN}
+ newconfd "${FILESDIR}/${PN}.conf" ${PN}
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+ if use ruby; then
+ insinto /usr/share/${PN}
+ doins ruby-sample.rb
+ fi
+
+ if use http; then
+ insinto /usr/share/${PN}/htdocs
+ doins htdocs/*
+ fi
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2018-01-25 17:37 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2018-01-25 17:37 UTC (permalink / raw
To: gentoo-commits
commit: ef38b08f1d23f6a9a22f78269ac66faffd5eb258
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 17:36:55 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 17:36:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef38b08f
net-irc/iroffer-dinoex: Drop old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild | 119 ----------------------
1 file changed, 119 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
deleted file mode 100644
index f9ffa93b367..00000000000
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PLOCALES="de en fr it"
-PLOCALE_BACKUP="en"
-
-inherit eutils l10n toolchain-funcs user
-
-DESCRIPTION="IRC fileserver using DCC"
-HOMEPAGE="http://iroffer.dinoex.net/"
-SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
- http://iroffer.dinoex.net/HISTORY/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
-
-REQUIRED_USE="
- admin? ( http )
- gnutls? ( ssl )
-"
-
-RDEPEND="chroot? ( dev-libs/nss )
- curl? (
- net-misc/curl[ssl?]
- gnutls? ( net-misc/curl[curl_ssl_gnutls] )
- !gnutls? ( ssl? ( net-misc/curl[curl_ssl_openssl] ) )
- )
- geoip? ( dev-libs/geoip )
- gnutls? ( net-libs/gnutls )
- ruby? ( dev-lang/ruby )
- ssl? ( !gnutls? ( dev-libs/openssl ) )"
-
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- enewgroup iroffer
- enewuser iroffer -1 -1 -1 iroffer
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-3.29-config.patch"\
- "${FILESDIR}/${PN}-Werror.patch"
- epatch_user
- l10n_find_plocales_changes "" 'help-admin-' '.txt'
-}
-
-do_configure() {
- echo ./Configure $*
- ./Configure $* || die "configure phase failed"
-}
-
-src_configure() {
- do_configure \
- PREFIX="${EPREFIX}/usr"\
- $(usex debug '-profiling' '' '' '')\
- $(usex debug '-debug' '' '' '')\
- $(usex geoip '-geoip' '' '' '')\
- $(usex chroot '' '-no-chroot' '' '')\
- $(usex curl '-curl' '' '' '' )\
- $(usex gnutls '-tls' '' '' '' '')\
- $(usex upnp '-upnp' '' '' '')\
- $(usex ruby '-ruby' '' '' '')\
- $(usex kqueue '-kqueue' '' '' '')\
- $(usex blowfish '' '-no-blowfish' '' '')\
- $(usex ssl '' '-no-openssl' '' '')\
- $(usex http '' '-no-http' '' '')\
- $(usex admin '' '-no-admin' '' '')\
- $(usex telnet '' '-no-telnet' '' '')\
- $(usex memsave '' '-no-memsave' '' '')
-}
-
-src_compile() {
- # TODO: default compile targets always include chrooted target, which is not good
- emake CC="$(tc-getCC)" $(l10n_get_locales)
-}
-
-myloc() {
- emake DESTDIR="${D}" install-${1}
-
- dodoc help-admin-${1}.txt
- use http && dohtml doc/INSTALL-linux-${1}.html
-
- insinto /etc/${PN}
- case ${1} in
- "de")
- doins beispiel.config;;
- "fr")
- doins exemple.config;;
- *)
- doins sample.config;;
- esac
-}
-
-src_install() {
- l10n_for_each_locale_do myloc
-
- dodoc README* THANKS TODO
- doman iroffer.1 xdcc.7
-
- newinitd "${FILESDIR}/${PN}.init" ${PN}
- newconfd "${FILESDIR}/${PN}.conf" ${PN}
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}/${PN}.logrotate" ${PN}
-
- if use ruby; then
- insinto /usr/share/${PN}
- doins ruby-sample.rb
- fi
-
- if use http; then
- insinto /usr/share/${PN}/htdocs
- doins htdocs/*
- fi
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2019-01-25 8:59 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-01-25 8:59 UTC (permalink / raw
To: gentoo-commits
commit: 2331cc28e06eb5a11e51091ab04fb231c62c1c82
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 25 08:58:54 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Jan 25 08:58:54 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2331cc28
net-irc/iroffer-dinoex: mark stable
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
index d6533d41c96..b5ef681e382 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -15,7 +15,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2019-01-25 8:59 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-01-25 8:59 UTC (permalink / raw
To: gentoo-commits
commit: 925e72f7f73741313137f62fab1fabbd7e6c9b28
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 25 08:59:30 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Jan 25 08:59:30 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=925e72f7
net-irc/iroffer-dinoex: Drop old
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
net-irc/iroffer-dinoex/Manifest | 1 -
net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild | 119 ----------------------
2 files changed, 120 deletions(-)
diff --git a/net-irc/iroffer-dinoex/Manifest b/net-irc/iroffer-dinoex/Manifest
index 7fb0e2de1c5..c2972b6816e 100644
--- a/net-irc/iroffer-dinoex/Manifest
+++ b/net-irc/iroffer-dinoex/Manifest
@@ -1,3 +1,2 @@
-DIST iroffer-dinoex-3.29.tar.gz 537027 BLAKE2B f6dddd60b5e4e837cfb56c450ee32249607375a386f9215a9a4eb34e7696c066b6c817ae956c044bbc208f69a73967df5aee9835b2a94ca70a849045ff11f37d SHA512 bac4feaa0db11de3faed0beb7302cb090d3a6629a6c299bd1b4ee136bce7290f1a9fa998aab909f1fafe54f5577bed90f487d4b2592521a87d5d9ae7512eecb0
DIST iroffer-dinoex-3.30.tar.gz 541131 BLAKE2B ea61113dffcd14b162153aa03c55a203d8ccd99e8f81de53a9ab8543bd91e948509281f753a8f332445eec102b6bd2b51972ff8bedb8b574b55b9325f6969269 SHA512 e45dc3dd901cbb73a9d59cd5a672834c7b6527864eb3385121856af562680a0f91e8846e8690fc60a6349dc4c4fc1cf190d3ac01813c6c045ef18147d61b7d4d
DIST iroffer-dinoex-3.31.tar.gz 527712 BLAKE2B 8e57058af9aad9537d29a15140ab59c921d2549eb9e7a2ce9145fc1c27a4307bea882927012b04fc9f0737a8853d927c79cc0f3156dfa311072c59589fe0221f SHA512 677aa03a33b99d8062db077bba47fb18b2e9279243691981bbd09cb2859fcb4792e1383225b9698edb23370ce0f60667a09480644d31171e9a8234d80052dd80
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild
deleted file mode 100644
index e07c9359c4a..00000000000
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PLOCALES="de en fr it"
-PLOCALE_BACKUP="en"
-
-inherit eutils l10n toolchain-funcs user
-
-DESCRIPTION="IRC fileserver using DCC"
-HOMEPAGE="http://iroffer.dinoex.net/"
-SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
- http://iroffer.dinoex.net/HISTORY/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
-
-REQUIRED_USE="
- admin? ( http )
- gnutls? ( ssl )
-"
-
-RDEPEND="chroot? ( dev-libs/nss )
- curl? (
- net-misc/curl[ssl?]
- gnutls? ( net-misc/curl[curl_ssl_gnutls] )
- !gnutls? ( ssl? ( net-misc/curl[curl_ssl_openssl] ) )
- )
- geoip? ( dev-libs/geoip )
- gnutls? ( net-libs/gnutls )
- ruby? ( dev-lang/ruby )
- ssl? ( !gnutls? ( dev-libs/openssl ) )"
-
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- enewgroup iroffer
- enewuser iroffer -1 -1 -1 iroffer
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-config.patch"\
- "${FILESDIR}/${PN}-Werror.patch"
- epatch_user
- l10n_find_plocales_changes "" 'help-admin-' '.txt'
-}
-
-do_configure() {
- echo ./Configure $*
- ./Configure $* || die "configure phase failed"
-}
-
-src_configure() {
- do_configure \
- PREFIX="${EPREFIX}/usr"\
- $(usex debug '-profiling' '' '' '')\
- $(usex debug '-debug' '' '' '')\
- $(usex geoip '-geoip' '' '' '')\
- $(usex chroot '' '-no-chroot' '' '')\
- $(usex curl '-curl' '' '' '' )\
- $(usex gnutls '-tls' '' '' '' '')\
- $(usex upnp '-upnp' '' '' '')\
- $(usex ruby '-ruby' '' '' '')\
- $(usex kqueue '-kqueue' '' '' '')\
- $(usex blowfish '' '-no-blowfish' '' '')\
- $(usex ssl '' '-no-openssl' '' '')\
- $(usex http '' '-no-http' '' '')\
- $(usex admin '' '-no-admin' '' '')\
- $(usex telnet '' '-no-telnet' '' '')\
- $(usex memsave '' '-no-memsave' '' '')
-}
-
-src_compile() {
- # TODO: default compile targets always include chrooted target, which is not good
- emake CC="$(tc-getCC)" $(l10n_get_locales)
-}
-
-myloc() {
- emake DESTDIR="${D}" install-${1}
-
- dodoc help-admin-${1}.txt
- use http && dohtml doc/INSTALL-linux-${1}.html
-
- insinto /etc/${PN}
- case ${1} in
- "de")
- doins beispiel.config;;
- "fr")
- doins exemple.config;;
- *)
- doins sample.config;;
- esac
-}
-
-src_install() {
- l10n_for_each_locale_do myloc
-
- dodoc README* THANKS TODO
- doman iroffer.1 xdcc.7
-
- newinitd "${FILESDIR}/${PN}.init" ${PN}
- newconfd "${FILESDIR}/${PN}.conf" ${PN}
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}/${PN}.logrotate" ${PN}
-
- if use ruby; then
- insinto /usr/share/${PN}
- doins ruby-sample.rb
- fi
-
- if use http; then
- insinto /usr/share/${PN}/htdocs
- doins htdocs/*
- fi
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2019-03-02 7:31 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-03-02 7:31 UTC (permalink / raw
To: gentoo-commits
commit: 4adb96255818872b65a9c22e9ab3c58e7de1d121
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 1 19:02:59 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 07:31:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4adb9625
net-irc/iroffer-dinoex: x86 stable wrt bug #675354
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"
net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
index b26d946201e..2adfa45a9d8 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2019-03-28 6:36 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-03-28 6:36 UTC (permalink / raw
To: gentoo-commits
commit: 827f0e57fa14073bb469700f639a4526d3da8d6a
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 28 06:35:54 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Mar 28 06:35:54 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=827f0e57
net-irc/iroffer-dinoex: Version bump (v3.32)
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
net-irc/iroffer-dinoex/Manifest | 1 +
net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild | 121 ++++++++++++++++++++++
2 files changed, 122 insertions(+)
diff --git a/net-irc/iroffer-dinoex/Manifest b/net-irc/iroffer-dinoex/Manifest
index c2972b6816e..a414aafd6c0 100644
--- a/net-irc/iroffer-dinoex/Manifest
+++ b/net-irc/iroffer-dinoex/Manifest
@@ -1,2 +1,3 @@
DIST iroffer-dinoex-3.30.tar.gz 541131 BLAKE2B ea61113dffcd14b162153aa03c55a203d8ccd99e8f81de53a9ab8543bd91e948509281f753a8f332445eec102b6bd2b51972ff8bedb8b574b55b9325f6969269 SHA512 e45dc3dd901cbb73a9d59cd5a672834c7b6527864eb3385121856af562680a0f91e8846e8690fc60a6349dc4c4fc1cf190d3ac01813c6c045ef18147d61b7d4d
DIST iroffer-dinoex-3.31.tar.gz 527712 BLAKE2B 8e57058af9aad9537d29a15140ab59c921d2549eb9e7a2ce9145fc1c27a4307bea882927012b04fc9f0737a8853d927c79cc0f3156dfa311072c59589fe0221f SHA512 677aa03a33b99d8062db077bba47fb18b2e9279243691981bbd09cb2859fcb4792e1383225b9698edb23370ce0f60667a09480644d31171e9a8234d80052dd80
+DIST iroffer-dinoex-3.32.tar.gz 1321125 BLAKE2B 3a124d16911d97d0ec937b86c9e0ad513ebdcea5e09e4cb1a53753c03d5e13347d0bf1116bf9abe0137fb7a05bbc7a8e31c2c0da5c15cc4e0b55e067d62b1461 SHA512 03d662cf7eb3093b1f050eda8777011d6e7a833dc2fcf65d29ef0294a0d6ce4e2cea273e2d4e6ee6ba2364c088890ac6338a3aa8e6477d5e2a1a990a6e4e9603
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild
new file mode 100644
index 00000000000..2f525ffe3ff
--- /dev/null
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="de en fr it"
+PLOCALE_BACKUP="en"
+
+inherit l10n toolchain-funcs user
+
+DESCRIPTION="IRC fileserver using DCC"
+HOMEPAGE="http://iroffer.dinoex.net/"
+SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
+ http://iroffer.dinoex.net/HISTORY/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
+
+REQUIRED_USE="
+ admin? ( http )
+ gnutls? ( ssl )
+"
+
+RDEPEND="chroot? ( dev-libs/nss )
+ curl? (
+ net-misc/curl[ssl?]
+ gnutls? ( net-misc/curl[curl_ssl_gnutls] )
+ !gnutls? ( ssl? ( net-misc/curl[curl_ssl_openssl] ) )
+ )
+ geoip? ( dev-libs/geoip )
+ gnutls? ( net-libs/gnutls )
+ ruby? ( dev-lang/ruby:* )
+ ssl? ( !gnutls? ( dev-libs/openssl:0= ) )"
+
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ enewgroup iroffer
+ enewuser iroffer -1 -1 -1 iroffer
+}
+
+src_prepare() {
+ eapply "${FILESDIR}/${PN}-3.31-config.patch"
+ eapply "${FILESDIR}/${PN}-Werror.patch"
+
+ eapply_user
+
+ l10n_find_plocales_changes "" 'help-admin-' '.txt'
+}
+
+do_configure() {
+ echo ./Configure $*
+ ./Configure $* || die "configure phase failed"
+}
+
+src_configure() {
+ do_configure \
+ PREFIX="${EPREFIX}/usr"\
+ $(usex debug '-profiling' '' '' '')\
+ $(usex debug '-debug' '' '' '')\
+ $(usex geoip '-geoip' '' '' '')\
+ $(usex chroot '' '-no-chroot' '' '')\
+ $(usex curl '-curl' '' '' '' )\
+ $(usex gnutls '-tls' '' '' '' '')\
+ $(usex upnp '-upnp' '' '' '')\
+ $(usex ruby '-ruby' '' '' '')\
+ $(usex kqueue '-kqueue' '' '' '')\
+ $(usex blowfish '' '-no-blowfish' '' '')\
+ $(usex ssl '' '-no-openssl' '' '')\
+ $(usex http '' '-no-http' '' '')\
+ $(usex admin '' '-no-admin' '' '')\
+ $(usex telnet '' '-no-telnet' '' '')\
+ $(usex memsave '' '-no-memsave' '' '')
+}
+
+src_compile() {
+ # TODO: default compile targets always include chrooted target, which is not good
+ emake CC="$(tc-getCC)" $(l10n_get_locales)
+}
+
+myloc() {
+ emake DESTDIR="${D}" install-${1}
+
+ dodoc help-admin-${1}.txt
+ use http && dodoc doc/INSTALL-linux-${1}.html
+
+ insinto /etc/${PN}
+ case ${1} in
+ "de")
+ doins beispiel.config;;
+ "fr")
+ doins exemple.config;;
+ *)
+ doins sample.config;;
+ esac
+}
+
+src_install() {
+ l10n_for_each_locale_do myloc
+
+ dodoc README* THANKS TODO
+ doman iroffer.1 xdcc.7
+
+ newinitd "${FILESDIR}/${PN}.init" ${PN}
+ newconfd "${FILESDIR}/${PN}.conf" ${PN}
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+ if use ruby; then
+ insinto /usr/share/${PN}
+ doins ruby-sample.rb
+ fi
+
+ if use http; then
+ insinto /usr/share/${PN}/htdocs
+ doins htdocs/*
+ fi
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2020-05-24 9:31 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2020-05-24 9:31 UTC (permalink / raw
To: gentoo-commits
commit: c32effab9e41d89e9137a6b5b797eed65c4119a2
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 24 09:30:50 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 24 09:31:14 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32effab
net-irc/iroffer-dinoex: respect CC
Closes: https://bugs.gentoo.org/724966
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild | 3 ++-
net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild | 3 ++-
net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild | 5 +++--
3 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
index b5ef681e382..4779e79651e 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.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=6
@@ -58,6 +58,7 @@ do_configure() {
src_configure() {
do_configure \
PREFIX="${EPREFIX}/usr"\
+ CC="$(tc-getCC)"\
$(usex debug '-profiling' '' '' '')\
$(usex debug '-debug' '' '' '')\
$(usex geoip '-geoip' '' '' '')\
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
index 2adfa45a9d8..deadec3b9cc 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.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=6
@@ -57,6 +57,7 @@ do_configure() {
src_configure() {
do_configure \
+ CC="$(tc-getCC)"
PREFIX="${EPREFIX}/usr"\
$(usex debug '-profiling' '' '' '')\
$(usex debug '-debug' '' '' '')\
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild
index 2f525ffe3ff..a1293eaa5bb 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.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=6
@@ -57,7 +57,8 @@ do_configure() {
src_configure() {
do_configure \
- PREFIX="${EPREFIX}/usr"\
+ PREFIX="${EPREFIX}/usr" \
+ CC="$(tc-getCC)" \
$(usex debug '-profiling' '' '' '')\
$(usex debug '-debug' '' '' '')\
$(usex geoip '-geoip' '' '' '')\
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2021-02-27 19:33 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-02-27 19:33 UTC (permalink / raw
To: gentoo-commits
commit: 57dba151ac05efe102fcc817469e73006fc02032
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 27 19:33:29 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 19:33:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57dba151
net-irc/iroffer-dinoex: Stabilize 3.31 amd64, #773163
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
index deadec3b9cc..1fb0085c0a0 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.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=6
@@ -15,7 +15,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2021-05-19 13:43 Sergey Popov
0 siblings, 0 replies; 17+ messages in thread
From: Sergey Popov @ 2021-05-19 13:43 UTC (permalink / raw
To: gentoo-commits
commit: 185c49ba6c1ee3ffa79ccb4a4f8f6894eab8608f
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Wed May 19 13:41:20 2021 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Wed May 19 13:43:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185c49ba
net-irc/iroffer-dinoex-3.32-r1: revision bump
Bump EAPI to 7, migrate away from user eclass
Drop old revision
Closes: https://bugs.gentoo.org/781392
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
...er-dinoex-3.32.ebuild => iroffer-dinoex-3.32-r1.ebuild} | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r1.ebuild
similarity index 93%
rename from net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild
rename to net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r1.ebuild
index a1293eaa5bb..8de5d34ef91 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r1.ebuild
@@ -1,12 +1,12 @@
-# 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
PLOCALES="de en fr it"
PLOCALE_BACKUP="en"
-inherit l10n toolchain-funcs user
+inherit l10n toolchain-funcs
DESCRIPTION="IRC fileserver using DCC"
HOMEPAGE="http://iroffer.dinoex.net/"
@@ -23,7 +23,8 @@ REQUIRED_USE="
gnutls? ( ssl )
"
-RDEPEND="chroot? ( dev-libs/nss )
+RDEPEND="acct-user/iroffer
+ chroot? ( dev-libs/nss )
curl? (
net-misc/curl[ssl?]
gnutls? ( net-misc/curl[curl_ssl_gnutls] )
@@ -36,11 +37,6 @@ RDEPEND="chroot? ( dev-libs/nss )
DEPEND="${RDEPEND}"
-pkg_setup() {
- enewgroup iroffer
- enewuser iroffer -1 -1 -1 iroffer
-}
-
src_prepare() {
eapply "${FILESDIR}/${PN}-3.31-config.patch"
eapply "${FILESDIR}/${PN}-Werror.patch"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 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: 7ad5f1a656e8e8ead1f73b2e43170a6745a5c2da
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 18:39:29 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 18:39:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad5f1a6
net-irc/iroffer-dinoex: add missing libcrypt dependency
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../{iroffer-dinoex-3.30-r1.ebuild => iroffer-dinoex-3.30-r2.ebuild} | 5 +++--
.../{iroffer-dinoex-3.31.ebuild => iroffer-dinoex-3.31-r1.ebuild} | 3 ++-
.../{iroffer-dinoex-3.32-r1.ebuild => iroffer-dinoex-3.32-r2.ebuild} | 3 ++-
3 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild
similarity index 96%
rename from net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
rename to net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild
index 4779e79651e..621370b736b 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.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=6
@@ -23,7 +23,8 @@ REQUIRED_USE="
gnutls? ( ssl )
"
-RDEPEND="chroot? ( dev-libs/nss )
+RDEPEND="virtual/libcrypt:=
+ chroot? ( dev-libs/nss )
curl? (
net-misc/curl[ssl?]
gnutls? ( net-misc/curl[curl_ssl_gnutls] )
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild
similarity index 97%
rename from net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
rename to net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild
index 1fb0085c0a0..d61e239ecef 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild
@@ -23,7 +23,8 @@ REQUIRED_USE="
gnutls? ( ssl )
"
-RDEPEND="chroot? ( dev-libs/nss )
+RDEPEND="virtual/libcrypt:=
+ chroot? ( dev-libs/nss )
curl? (
net-misc/curl[ssl?]
gnutls? ( net-misc/curl[curl_ssl_gnutls] )
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
similarity index 98%
rename from net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r1.ebuild
rename to net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
index 8de5d34ef91..2a9bb01ec15 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r1.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
@@ -23,7 +23,8 @@ REQUIRED_USE="
gnutls? ( ssl )
"
-RDEPEND="acct-user/iroffer
+RDEPEND="virtual/libcrypt:=
+ acct-user/iroffer
chroot? ( dev-libs/nss )
curl? (
net-misc/curl[ssl?]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2021-07-04 14:03 Ulrich Müller
0 siblings, 0 replies; 17+ messages in thread
From: Ulrich Müller @ 2021-07-04 14:03 UTC (permalink / raw
To: gentoo-commits
commit: df99260b76379db614cde4ccf77f86590c39ff63
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 3 15:46:17 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jul 4 14:02:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df99260b
net-irc/iroffer-dinoex: Update from l10n.eclass to plocale.eclass
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild | 8 ++++----
net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild | 8 ++++----
net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild | 8 ++++----
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild
index 621370b736b..e384c6cea29 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
PLOCALES="de en fr it"
PLOCALE_BACKUP="en"
-inherit l10n toolchain-funcs user
+inherit plocale toolchain-funcs user
DESCRIPTION="IRC fileserver using DCC"
HOMEPAGE="http://iroffer.dinoex.net/"
@@ -48,7 +48,7 @@ src_prepare() {
eapply_user
- l10n_find_plocales_changes "" 'help-admin-' '.txt'
+ plocale_find_changes "" 'help-admin-' '.txt'
}
do_configure() {
@@ -79,7 +79,7 @@ src_configure() {
src_compile() {
# TODO: default compile targets always include chrooted target, which is not good
- emake CC="$(tc-getCC)" $(l10n_get_locales)
+ emake CC="$(tc-getCC)" $(plocale_get_locales)
}
myloc() {
@@ -100,7 +100,7 @@ myloc() {
}
src_install() {
- l10n_for_each_locale_do myloc
+ plocale_for_each_locale myloc
dodoc README* THANKS TODO
doman iroffer.1 xdcc.7
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild
index d61e239ecef..8d04b757221 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.31-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
PLOCALES="de en fr it"
PLOCALE_BACKUP="en"
-inherit l10n toolchain-funcs user
+inherit plocale toolchain-funcs user
DESCRIPTION="IRC fileserver using DCC"
HOMEPAGE="http://iroffer.dinoex.net/"
@@ -48,7 +48,7 @@ src_prepare() {
eapply_user
- l10n_find_plocales_changes "" 'help-admin-' '.txt'
+ plocale_find_changes "" 'help-admin-' '.txt'
}
do_configure() {
@@ -79,7 +79,7 @@ src_configure() {
src_compile() {
# TODO: default compile targets always include chrooted target, which is not good
- emake CC="$(tc-getCC)" $(l10n_get_locales)
+ emake CC="$(tc-getCC)" $(plocale_get_locales)
}
myloc() {
@@ -100,7 +100,7 @@ myloc() {
}
src_install() {
- l10n_for_each_locale_do myloc
+ plocale_for_each_locale myloc
dodoc README* THANKS TODO
doman iroffer.1 xdcc.7
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
index 2a9bb01ec15..748af554e35 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
@@ -6,7 +6,7 @@ EAPI=7
PLOCALES="de en fr it"
PLOCALE_BACKUP="en"
-inherit l10n toolchain-funcs
+inherit plocale toolchain-funcs
DESCRIPTION="IRC fileserver using DCC"
HOMEPAGE="http://iroffer.dinoex.net/"
@@ -44,7 +44,7 @@ src_prepare() {
eapply_user
- l10n_find_plocales_changes "" 'help-admin-' '.txt'
+ plocale_find_changes "" 'help-admin-' '.txt'
}
do_configure() {
@@ -75,7 +75,7 @@ src_configure() {
src_compile() {
# TODO: default compile targets always include chrooted target, which is not good
- emake CC="$(tc-getCC)" $(l10n_get_locales)
+ emake CC="$(tc-getCC)" $(plocale_get_locales)
}
myloc() {
@@ -96,7 +96,7 @@ myloc() {
}
src_install() {
- l10n_for_each_locale_do myloc
+ plocale_for_each_locale myloc
dodoc README* THANKS TODO
doman iroffer.1 xdcc.7
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2021-07-15 21:33 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-07-15 21:33 UTC (permalink / raw
To: gentoo-commits
commit: dc68b16b442c615c766c03b5f1994eb8902e5d8b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 15 21:33:01 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 15 21:33:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc68b16b
net-irc/iroffer-dinoex: Stabilize 3.32-r2 x86, #802327
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
index 748af554e35..371a83deb81 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2021-07-15 21:39 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-07-15 21:39 UTC (permalink / raw
To: gentoo-commits
commit: 0119133f8b8aa990c36f81fb5a1995b2419a1a44
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 15 21:36:24 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 15 21:38:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0119133f
net-irc/iroffer-dinoex: Stabilize 3.32-r2 amd64, #802327
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
index 371a83deb81..ce098c68332 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2022-01-04 9:15 David Seifert
0 siblings, 0 replies; 17+ messages in thread
From: David Seifert @ 2022-01-04 9:15 UTC (permalink / raw
To: gentoo-commits
commit: 31b743299bfaeef5a44b92cda84d6bdb296b92f5
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 4 09:15:38 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jan 4 09:15:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b74329
net-irc/iroffer-dinoex: remove USE=kqueue
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild | 5 ++---
net-irc/iroffer-dinoex/metadata.xml | 1 -
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
index ce098c683324..ebb55a32a0b1 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.32-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -16,7 +16,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave ruby ssl +telnet upnp"
+IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http +memsave ruby ssl +telnet upnp"
REQUIRED_USE="
admin? ( http )
@@ -64,7 +64,6 @@ src_configure() {
$(usex gnutls '-tls' '' '' '' '')\
$(usex upnp '-upnp' '' '' '')\
$(usex ruby '-ruby' '' '' '')\
- $(usex kqueue '-kqueue' '' '' '')\
$(usex blowfish '' '-no-blowfish' '' '')\
$(usex ssl '' '-no-openssl' '' '')\
$(usex http '' '-no-http' '' '')\
diff --git a/net-irc/iroffer-dinoex/metadata.xml b/net-irc/iroffer-dinoex/metadata.xml
index a5cf892924b0..7126c1b73ad6 100644
--- a/net-irc/iroffer-dinoex/metadata.xml
+++ b/net-irc/iroffer-dinoex/metadata.xml
@@ -14,7 +14,6 @@
<flag name="blowfish">Compile with blowfish encryption support</flag>
<flag name="chroot">Compile with chroot support</flag>
<flag name="http">Compile with HTTP server support</flag>
- <flag name="kqueue">Compile with kqueue() support</flag>
<flag name="memsave">Compile with memory protection</flag>
<flag name="telnet">Compile with Telnet server support</flag>
</use>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/
@ 2023-02-14 11:19 Sergey Popov
0 siblings, 0 replies; 17+ messages in thread
From: Sergey Popov @ 2023-02-14 11:19 UTC (permalink / raw
To: gentoo-commits
commit: 15a352a05d918eeb1f665fd4daedcee583dddf76
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 11:15:12 2023 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 11:15:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a352a0
net-irc/iroffer-dinoex: remove myself from maintainers
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
net-irc/iroffer-dinoex/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/net-irc/iroffer-dinoex/metadata.xml b/net-irc/iroffer-dinoex/metadata.xml
index be98bd32712e..99fb03dc3bd0 100644
--- a/net-irc/iroffer-dinoex/metadata.xml
+++ b/net-irc/iroffer-dinoex/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>pinkbyte@gentoo.org</email>
- <name>Sergey Popov</name>
- </maintainer>
+ <!-- maintainer-needed -->
<use>
<flag name="admin">Compile with HTTP Admin</flag>
<flag name="blowfish">Compile with blowfish encryption support</flag>
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2023-02-14 11:19 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-30 18:40 [gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-02-14 11:19 Sergey Popov
2022-01-04 9:15 David Seifert
2021-07-15 21:39 Sam James
2021-07-15 21:33 Sam James
2021-07-04 14:03 Ulrich Müller
2021-05-19 13:43 Sergey Popov
2021-02-27 19:33 Sam James
2020-05-24 9:31 Mikle Kolyada
2019-03-28 6:36 Mikle Kolyada
2019-03-02 7:31 Mikle Kolyada
2019-01-25 8:59 Mikle Kolyada
2019-01-25 8:59 Mikle Kolyada
2018-01-25 17:37 Mikle Kolyada
2018-01-25 17:35 Mikle Kolyada
2017-12-03 18:34 Mikle Kolyada
2017-12-03 12:00 Mikle Kolyada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox