commit:     28efa0d0e545b62d35f361670ea3c07d6ccdcd6e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 23 07:26:53 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 08:07:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28efa0d0

net-irc/anope: Improve USE flag naming

Kill meaningless 'anope_modules_' prefix from flags, and replace
underscores with hyphens.

Closes: https://bugs.gentoo.org/695170
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-irc/anope/anope-2.0.6.ebuild | 65 ++++++++++++++++++++--------------------
 net-irc/anope/metadata.xml       | 18 +++++------
 2 files changed, 41 insertions(+), 42 deletions(-)

diff --git a/net-irc/anope/anope-2.0.6.ebuild b/net-irc/anope/anope-2.0.6.ebuild
index aba8b1f9d11..1cf036e12d8 100644
--- a/net-irc/anope/anope-2.0.6.ebuild
+++ b/net-irc/anope/anope-2.0.6.ebuild
@@ -12,21 +12,20 @@ 
SRC_URI="https://github.com/anope/anope/releases/download/${PV}/${P}-source.tar.
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="mysql sqlite pcre posix gnutls ssl tre ldap anope_modules_sql_auth
-       anope_modules_sql_log anope_modules_sql_oper anope_modules_ldap_auth
-       anope_modules_ldap_oper anope_modules_irc2sql anope_modules_chanstats
-       anope_modules_cs_fantasy_stats anope_modules_cs_fantasy_top"
+IUSE="chanstats cs-fantasy-stats cs-fantasy-top gnutls irc2sql ldap
+       ldap-auth ldap-oper mysql pcre posix sql-auth sql-log sql-oper
+       sqlite ssl tre"
 
 REQUIRED_USE="
-       anope_modules_sql_auth? ( || ( mysql sqlite ) )
-       anope_modules_sql_oper? ( mysql )
-       anope_modules_sql_log? ( mysql )
-       anope_modules_cs_fantasy_stats? ( anope_modules_chanstats mysql )
-       anope_modules_cs_fantasy_top? ( anope_modules_chanstats mysql )
-       anope_modules_chanstats? ( mysql )
-       anope_modules_irc2sql? ( mysql )
-       anope_modules_ldap_auth? ( ldap )
-       anope_modules_ldap_oper? ( ldap )"
+       chanstats? ( mysql )
+       cs-fantasy-stats? ( chanstats mysql )
+       cs-fantasy-top? ( chanstats mysql )
+       irc2sql? ( mysql )
+       ldap-auth? ( ldap )
+       ldap-oper? ( ldap )
+       sql-auth? ( || ( mysql sqlite ) )
+       sql-log? ( mysql )
+       sql-oper? ( mysql )"
 
 BDEPEND="sys-devel/gettext"
 DEPEND="${BDEPEND}
@@ -75,26 +74,26 @@ src_prepare() {
                fi
        }
 
-       anope_use_extra mysql                                   "m_mysql.cpp"
-       anope_use_extra sqlite                                  "m_sqlite.cpp"
-       anope_use_extra ssl                                     
"m_ssl_openssl.cpp"
-       anope_use_extra gnutls                                  
"m_ssl_gnutls.cpp"
-       anope_use_extra posix                                   
"m_regex_posix.cpp"
-       anope_use_extra pcre                                    
"m_regex_pcre.cpp"
-       anope_use_extra tre                                     
"m_regex_tre.cpp"
-       anope_use_extra ldap                                    "m_ldap.cpp"
-       anope_use_extra anope_modules_sql_auth                  
"m_sql_authentication.cpp"
-       anope_use_extra anope_modules_sql_log                   "m_sql_log.cpp"
-       anope_use_extra anope_modules_sql_oper                  "m_sql_oper.cpp"
-       anope_use_extra anope_modules_ldap_auth                 
"m_ldap_authentication.cpp"
-       anope_use_extra anope_modules_ldap_oper                 
"m_ldap_oper.cpp"
-       anope_use_extra anope_modules_chanstats                 
"stats/m_chanstats.cpp"
-       anope_use_extra anope_modules_cs_fantasy_top            
"stats/cs_fantasy_top.cpp"
-       anope_use_extra anope_modules_cs_fantasy_stats          
"stats/cs_fantasy_stats.cpp"
-       anope_use_extra anope_modules_irc2sql                   
"stats/irc2sql/irc2sql.cpp"
-       anope_use_extra anope_modules_irc2sql                   
"stats/irc2sql/irc2sql.h"
-       anope_use_extra anope_modules_irc2sql                   
"stats/irc2sql/tables.cpp"
-       anope_use_extra anope_modules_irc2sql                   
"stats/irc2sql/utils.cpp"
+       anope_use_extra mysql                   "m_mysql.cpp"
+       anope_use_extra sqlite                  "m_sqlite.cpp"
+       anope_use_extra ssl                     "m_ssl_openssl.cpp"
+       anope_use_extra gnutls                  "m_ssl_gnutls.cpp"
+       anope_use_extra posix                   "m_regex_posix.cpp"
+       anope_use_extra pcre                    "m_regex_pcre.cpp"
+       anope_use_extra tre                     "m_regex_tre.cpp"
+       anope_use_extra ldap                    "m_ldap.cpp"
+       anope_use_extra sql-auth                "m_sql_authentication.cpp"
+       anope_use_extra sql-log                 "m_sql_log.cpp"
+       anope_use_extra sql-oper                "m_sql_oper.cpp"
+       anope_use_extra ldap-auth               "m_ldap_authentication.cpp"
+       anope_use_extra ldap-oper               "m_ldap_oper.cpp"
+       anope_use_extra chanstats               "stats/m_chanstats.cpp"
+       anope_use_extra cs-fantasy-top          "stats/cs_fantasy_top.cpp"
+       anope_use_extra cs-fantasy-stats        "stats/cs_fantasy_stats.cpp"
+       anope_use_extra irc2sql                 "stats/irc2sql/irc2sql.cpp"
+       anope_use_extra irc2sql                 "stats/irc2sql/irc2sql.h"
+       anope_use_extra irc2sql                 "stats/irc2sql/tables.cpp"
+       anope_use_extra irc2sql                 "stats/irc2sql/utils.cpp"
 
        # Avoid a silly sandbox error - tries to delete /usr/lib/modules
        sed -i '/install.*REMOVE_RECURSE.*/d' CMakeLists.txt || die

diff --git a/net-irc/anope/metadata.xml b/net-irc/anope/metadata.xml
index 078496567f2..ddb7e3c5b20 100644
--- a/net-irc/anope/metadata.xml
+++ b/net-irc/anope/metadata.xml
@@ -8,16 +8,16 @@
                <remote-id type="github">anope/anope</remote-id>
        </upstream>
        <use>
-               <flag name="anope_modules_sql_auth">Authorize through SQL</flag>
-               <flag name="anope_modules_sql_log">Additional log target in 
SQL</flag>
-               <flag name="anope_modules_sql_oper">Allows granting users 
services operator privileges from SQL</flag>
-               <flag name="anope_modules_ldap_auth">Authorize through 
LDAP</flag>
-               <flag name="anope_modules_ldap_oper">Dynamically ties users to 
Anope opertypes via LDAP</flag>
-               <flag name="anope_modules_irc2sql">Stores channel statistics in 
a mysql database</flag>
-               <flag name="anope_modules_chanstats">Channel Statistics</flag>
-               <flag name="anope_modules_cs_fantasy_stats">Enables the STATS 
and GSTATS commands</flag>
-               <flag name="anope_modules_cs_fantasy_top">Enables the (G)TOP 
and  (G)TOP10 commands</flag>
+               <flag name="chanstats">Channel Statistics</flag>
+               <flag name="cs-fantasy-stats">Enables the STATS and GSTATS 
commands</flag>
+               <flag name="cs-fantasy-top">Enables the (G)TOP and  (G)TOP10 
commands</flag>
+               <flag name="irc2sql">Stores channel statistics in a mysql 
database</flag>
+               <flag name="ldap-auth">Authorize through LDAP</flag>
+               <flag name="ldap-oper">Dynamically ties users to Anope 
opertypes via LDAP</flag>
                <flag name="posix">Add support for POSIX Compatible Regular 
Expressions</flag>
+               <flag name="sql-auth">Authorize through SQL</flag>
+               <flag name="sql-log">Additional log target in SQL</flag>
+               <flag name="sql-oper">Allows granting users services operator 
privileges from SQL</flag>
                <flag name="ssl">Provide SSL services using OpenSSL</flag>
                <flag name="tre">Use <pkg>dev-libs/tre</pkg> for regular 
expressions</flag>
        </use>

Reply via email to