* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-06-28 0:36 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-06-28 0:36 UTC (permalink / raw
To: gentoo-commits
commit: 3f75baba8c8ebf77c2db88f5c10b522c0a27c839
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 28 00:35:25 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Jun 28 00:35:25 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=3f75baba
[net-im/prosody-modules] Ebuild taken from lua-overlay by Vadim A. Misbakh-Soloviov. Update modules, fix libdir, drop redundant directory change.
Package-Manager: portage-2.2.20
net-im/prosody-modules/metadata.xml | 13 ++
net-im/prosody-modules/prosody-modules-9999.ebuild | 182 +++++++++++++++++++++
2 files changed, 195 insertions(+)
diff --git a/net-im/prosody-modules/metadata.xml b/net-im/prosody-modules/metadata.xml
new file mode 100644
index 0000000..fc852c2
--- /dev/null
+++ b/net-im/prosody-modules/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+ <email>mrueg@gentoo.org</email>
+ <name>Manuel Rüger</name>
+</maintainer>
+<longdescription>Community-writen modules for Prosody IM Server</longdescription>
+<use>
+ <flag name='luajit'>Use dev-lang/luajit instead of dev-lang/lua</flag>
+ <flag name='misc'>Install misc files.</flag>
+</use>
+</pkgmetadata>
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
new file mode 100644
index 0000000..914f2dd
--- /dev/null
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -0,0 +1,182 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils multilib mercurial
+
+DESCRIPTION="Add-on modules for Prosody IM Server written in Lua"
+HOMEPAGE="https://prosody-modules.googlecode.com/"
+EHG_REPO_URI="https://hg.prosody.im/prosody-modules"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+
+IUSE="misc luajit"
+
+PROSODY_MODULES="
+ addressing adhoc_account_management adhoc_blacklist admin_blocklist
+ admin_message admin_probe admin_web auth_any auth_ccert
+ auth_custom_http auth_dovecot auth_ha1 auth_http_async auth_imap
+ auth_internal_yubikey auth_joomla auth_ldap auth_ldap2 auth_pam
+ auth_phpbb3 auth_sql auth_wordpress auto_accept_subscriptions
+ auto_activate_hosts benchmark_storage bidi blocking
+ block_registrations block_s2s_subscriptions block_strangers
+ block_subscribes block_subscriptions broadcast c2s_conn_throttle
+ c2s_limit_sessions candy captcha_registration carbons carbons_adhoc
+ carbons_copies checkcerts client_certs compact_resource compat_bind
+ compat_muc_admin compat_vcard component_client component_roundrobin
+ conformance_restricted couchdb csi csi_compat data_access
+ default_bookmarks default_vcard delegation disable_tls discoitems
+ dwd email_pass extdisco filter_chatstates firewall flash_policy
+ group_bookmarks host_blacklist host_guard http_altconnect
+ http_dir_listing http_favicon http_index http_muc_log
+ http_user_count idlecompat incidents_handling ipcheck isolate_host
+ jid_prep json_streams lastlog latex lib_ldap limit_auth limits
+ list_inactive listusers log_auth log_events log_messages_sql
+ log_rate log_sasl_mech log_slow_events mam mam_adhoc mam_archive
+ mam_muc mam_muc_sql mam_sql mamsub manifesto measure_cpu
+ measure_memory message_logging motd_sequential muc_ban_ip
+ muc_config_restrict muc_intercom muc_limits muc_log muc_log_http
+ muc_restrict_rooms munin net_dovecotauth offline_email onhold onions
+ openid password_policy pastebin pep_vcard_avatar post_msg
+ privacy_lists private_adhoc profile proxy65_whitelist
+ pubsub_eventsource pubsub_feeds pubsub_github pubsub_googlecode
+ pubsub_hub pubsub_mqtt pubsub_pivotaltracker pubsub_post
+ pubsub_twitter privilege query_client_ver rawdebug
+ readonly register_json register_redirect register_web reload_modules
+ remote_roster require_otr roster_allinall roster_command
+ s2s_auth_compat s2s_auth_dane s2s_auth_fingerprint
+ s2s_auth_monkeysphere s2s_blacklist s2s_idle_timeout s2s_keepalive
+ s2s_keysize_policy s2s_log_certs s2s_never_encrypt_blacklist
+ s2soutinjection s2s_reload_newcomponent s2s_whitelist saslauth_muc
+ saslname seclabels secure_interfaces server_contact_info
+ server_status service_directories sift smacks sms_clickatell
+ srvinjection sslv3_warn stanza_counter statistics statistics_auth
+ statistics_cputotal statistics_mem statistics_statsd statsd
+ storage_gdbm storage_ldap storage_memory storage_mongodb
+ storage_muc_log storage_multi storage_xmlarchive streamstats
+ strict_https support_contact swedishchef tcpproxy telnet_tlsinfo
+ throttle_presence tls_policy turncredentials twitter uptime_presence
+ vjud watchuntrusted webpresence
+ "
+# Missing modules because of missing deps:
+# auth_internal_yubikey auth_external inotify_reload statistics
+# storage_mongodb proctitle storage_lmdb
+
+for x in ${PROSODY_MODULES}; do
+ IUSE="${IUSE} ${x//[^+]/}prosody_modules_${x/+}"
+done
+
+DEPEND=">=net-im/prosody-0.9"
+RDEPEND="
+ ${DEPEND}
+ prosody_modules_auth_joomla? (
+ dev-lua/luadbi
+ )
+ prosody_modules_lib_ldap? (
+ dev-lua/lualdap
+ )
+ prosody_modules_client_certs? (
+ dev-lua/luasec
+ )
+ prosody_modules_listusers? (
+ dev-lua/luasocket
+ dev-lua/luafilesystem
+ )
+ prosody_modules_pubsub_pivotaltracker? (
+ dev-lua/luaexpat
+ )
+ prosody_modules_auth_phpbb3? (
+ dev-lua/luadbi
+ )
+ prosody_modules_log_messages_sql? (
+ dev-lua/luadbi
+ )
+ prosody_modules_message_logging? (
+ dev-lua/luafilesystem
+ )
+ prosody_modules_onions? (
+ virtual/lua[bit]
+ )
+ prosody_modules_couchdb? (
+ dev-lua/luasocket
+ )
+ prosody_modules_auth_custom_http? (
+ dev-lua/luasocket
+ )
+ prosody_modules_mam_muc_sql? (
+ dev-lua/luasocket
+ dev-lua/luadbi
+ )
+ prosody_modules_checkcerts? (
+ dev-lua/luasec
+ )
+ prosody_modules_auth_dovecot? (
+ dev-lua/luasocket
+ )
+ prosody_modules_storage_ldap? (
+ dev-lua/luasocket
+ )
+ prosody_modules_http_dir_listing? (
+ dev-lua/luasocket
+ dev-lua/luafilesystem
+ )
+ prosody_modules_mam_sql? (
+ dev-lua/luasocket
+ dev-lua/luadbi
+ )
+ prosody_modules_offline_email? (
+ dev-lua/luasocket
+ )
+ prosody_modules_auth_wordpress? (
+ dev-lua/luadbi
+ )
+ prosody_modules_muc_log_http? (
+ dev-lua/luafilesystem
+ dev-lua/luaexpat
+ )
+ prosody_modules_component_client? (
+ dev-lua/luasocket
+ )
+ prosody_modules_auth_sql? (
+ dev-lua/luadbi
+ )
+"
+# prosody_modules_auth_internal_yubikey? (
+# virtual/lua[bit,luajit=]
+# dev-lua/yubikey-lua
+# )
+# prosody_modules_auth_external? (
+# dev-lua/lpc
+# )
+# prosody_modules_inotify_reload? (
+# dev-lua/linotify
+# )
+# prosody_modules_statistics? (
+# dev-lua/luaposix[ncurses
+# )
+# prosody_modules_storage_mongodb? (
+# dev-lua/luamongo
+# )
+# proctitle https://github.com/hoelzro/lua-proctitle
+# storage_lmdb https://github.com/shmul/lightningdbm
+REQUIRED_USE="
+ prosody_modules_auth_ldap? ( prosody_modules_lib_ldap )
+ prosody_modules_auth_ldap2? ( prosody_modules_lib_ldap )
+"
+
+src_install() {
+ for m in ${PROSODY_MODULES}; do
+ if use prosody_modules_${m}; then
+ insinto /usr/$(get_libdir)/prosody/modules;
+ doins -r "mod_${m}"
+ fi
+ done
+ use misc && (
+ insinto /usr/$(get_libdir)/prosody/modules
+ doins -r misc
+ )
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-06-28 0:48 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-06-28 0:48 UTC (permalink / raw
To: gentoo-commits
commit: 778051381beaae624c713151bbc322d269c35255
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 28 00:48:45 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Jun 28 00:48:45 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=77805138
[net-im/prosody-modules] Fix metadata. Update homepage.
Package-Manager: portage-2.2.20
net-im/prosody-modules/metadata.xml | 2 +-
net-im/prosody-modules/prosody-modules-9999.ebuild | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/net-im/prosody-modules/metadata.xml b/net-im/prosody-modules/metadata.xml
index fc852c2..7361b40 100644
--- a/net-im/prosody-modules/metadata.xml
+++ b/net-im/prosody-modules/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mrueg@gentoo.org</email>
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 914f2dd..9eebe9b 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -7,7 +7,7 @@ EAPI=5
inherit eutils multilib mercurial
DESCRIPTION="Add-on modules for Prosody IM Server written in Lua"
-HOMEPAGE="https://prosody-modules.googlecode.com/"
+HOMEPAGE="https://prosody-modules.googlecode.com/ http://hg.prosody.im/prosody-modules/"
EHG_REPO_URI="https://hg.prosody.im/prosody-modules"
LICENSE="MIT"
@@ -23,13 +23,13 @@ PROSODY_MODULES="
auth_internal_yubikey auth_joomla auth_ldap auth_ldap2 auth_pam
auth_phpbb3 auth_sql auth_wordpress auto_accept_subscriptions
auto_activate_hosts benchmark_storage bidi blocking
- block_registrations block_s2s_subscriptions block_strangers
+ block_registrations block_s2s_subscriptions block_strangers
block_subscribes block_subscriptions broadcast c2s_conn_throttle
c2s_limit_sessions candy captcha_registration carbons carbons_adhoc
carbons_copies checkcerts client_certs compact_resource compat_bind
compat_muc_admin compat_vcard component_client component_roundrobin
conformance_restricted couchdb csi csi_compat data_access
- default_bookmarks default_vcard delegation disable_tls discoitems
+ default_bookmarks default_vcard delegation disable_tls discoitems
dwd email_pass extdisco filter_chatstates firewall flash_policy
group_bookmarks host_blacklist host_guard http_altconnect
http_dir_listing http_favicon http_index http_muc_log
@@ -49,7 +49,7 @@ PROSODY_MODULES="
readonly register_json register_redirect register_web reload_modules
remote_roster require_otr roster_allinall roster_command
s2s_auth_compat s2s_auth_dane s2s_auth_fingerprint
- s2s_auth_monkeysphere s2s_blacklist s2s_idle_timeout s2s_keepalive
+ s2s_auth_monkeysphere s2s_blacklist s2s_idle_timeout s2s_keepalive
s2s_keysize_policy s2s_log_certs s2s_never_encrypt_blacklist
s2soutinjection s2s_reload_newcomponent s2s_whitelist saslauth_muc
saslname seclabels secure_interfaces server_contact_info
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-08-30 16:06 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-08-30 16:06 UTC (permalink / raw
To: gentoo-commits
commit: f44682b67be15906a38b8a58a73bae5a0b127156
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 30 16:06:37 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Aug 30 16:06:37 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=f44682b6
net-im/prosody-modules: Update modules
Package-Manager: portage-2.2.20.1
net-im/prosody-modules/prosody-modules-9999.ebuild | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 3152ca7..e6aa9c8 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -22,17 +22,17 @@ PROSODY_MODULES="
auth_custom_http auth_dovecot auth_ha1 auth_http_async auth_imap
auth_internal_yubikey auth_joomla auth_ldap auth_ldap2 auth_pam
auth_phpbb3 auth_sql auth_wordpress auto_accept_subscriptions
- auto_activate_hosts benchmark_storage bidi blocking
- block_registrations block_s2s_subscriptions block_strangers
- block_subscribes block_subscriptions broadcast c2s_conn_throttle
+ auto_activate_hosts benchmark_storage bidi block_registrations
+ block_s2s_subscriptions block_strangers block_subscribes
+ block_subscriptions blocking broadcast c2s_conn_throttle
c2s_limit_sessions candy captcha_registration carbons carbons_adhoc
- carbons_copies checkcerts client_certs cloud_notify compact_resource
- compat_bind compat_muc_admin compat_vcard component_client
- component_roundrobin conformance_restricted couchdb csi csi_compat
- data_access default_bookmarks default_vcard delegation disable_tls
+ carbons_copies checkcerts client_certs cloud_notify compact_resource
+ compat_bind compat_muc_admin compat_vcard component_client
+ component_roundrobin conformance_restricted couchdb csi csi_compat
+ data_access default_bookmarks default_vcard delegation disable_tls
discoitems dwd email_pass extdisco filter_chatstates firewall flash_policy
group_bookmarks host_blacklist host_guard http_altconnect
- http_dir_listing http_favicon http_index http_muc_log
+ http_dir_listing http_favicon http_index http_muc_log http_upload
http_user_count idlecompat incidents_handling ipcheck isolate_host
jid_prep json_streams lastlog latex lib_ldap limit_auth limits
list_inactive listusers log_auth log_events log_messages_sql
@@ -42,10 +42,10 @@ PROSODY_MODULES="
muc_config_restrict muc_intercom muc_limits muc_log muc_log_http
muc_restrict_rooms munin net_dovecotauth offline_email onhold onions
openid password_policy pastebin pep_vcard_avatar post_msg
- privacy_lists private_adhoc profile proxy65_whitelist
+ privacy_lists private_adhoc privilege profile proxy65_whitelist
pubsub_eventsource pubsub_feeds pubsub_github pubsub_googlecode
pubsub_hub pubsub_mqtt pubsub_pivotaltracker pubsub_post
- pubsub_twitter privilege query_client_ver rawdebug
+ pubsub_twitter query_client_ver rawdebug
readonly register_json register_redirect register_web reload_modules
remote_roster require_otr roster_allinall roster_command
s2s_auth_compat s2s_auth_dane s2s_auth_fingerprint
@@ -53,7 +53,7 @@ PROSODY_MODULES="
s2s_keysize_policy s2s_log_certs s2s_never_encrypt_blacklist
s2soutinjection s2s_reload_newcomponent s2s_whitelist saslauth_muc
saslname seclabels secure_interfaces server_contact_info
- server_status service_directories sift smacks sms_clickatell
+ server_status service_directories sift smacks smacks_offline sms_clickatell
srvinjection sslv3_warn stanza_counter statistics statistics_auth
statistics_cputotal statistics_mem statistics_statsd statsd
storage_gdbm storage_ldap storage_memory storage_mongodb
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-08-31 11:08 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-08-31 11:08 UTC (permalink / raw
To: gentoo-commits
commit: 028126468407dc176d611aa9aea800b4778e4841
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 11:08:41 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 11:08:41 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=02812646
net-im/prosody-modules: Install markdown docs
Package-Manager: portage-2.2.20.1
net-im/prosody-modules/prosody-modules-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index e6aa9c8..597b226 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -173,8 +173,8 @@ src_install() {
for m in ${PROSODY_MODULES}; do
if use prosody_modules_${m}; then
if [[ -e mod_${m}/README.wiki ]]; then
- newdoc mod_${m}/README.wiki mod_${m}_README.wiki
- rm mod_${m}/README.wiki || die
+ newdoc mod_${m}/README.markdown mod_${m}_README.markdown
+ rm mod_${m}/README.markdown || die
fi
insinto /usr/$(get_libdir)/prosody/modules;
doins -r "mod_${m}"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-08-31 11:30 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-08-31 11:30 UTC (permalink / raw
To: gentoo-commits
commit: f636c53015df5eb18bbd5fc1f9b689788b916eef
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 11:30:35 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 11:30:35 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=f636c530
net-im/prosody-modules: Fix docs install
Package-Manager: portage-2.2.20.1
net-im/prosody-modules/prosody-modules-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 597b226..9281051 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -172,7 +172,7 @@ REQUIRED_USE="
src_install() {
for m in ${PROSODY_MODULES}; do
if use prosody_modules_${m}; then
- if [[ -e mod_${m}/README.wiki ]]; then
+ if [[ -e mod_${m}/README.markdown ]]; then
newdoc mod_${m}/README.markdown mod_${m}_README.markdown
rm mod_${m}/README.markdown || die
fi
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-09-11 14:21 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-09-11 14:21 UTC (permalink / raw
To: gentoo-commits
commit: a4986fd545ef40f9f0ecfdc37713d9aab0054375
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 14:20:25 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 14:20:25 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=a4986fd5
net-im/prosody-modules: Remove dropped modules
Package-Manager: portage-2.2.20.1
net-im/prosody-modules/prosody-modules-9999.ebuild | 25 +++++++---------------
1 file changed, 8 insertions(+), 17 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 9281051..eaed4a2 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -37,15 +37,14 @@ PROSODY_MODULES="
jid_prep json_streams lastlog latex lib_ldap limit_auth limits
list_inactive listusers log_auth log_events log_messages_sql
log_rate log_sasl_mech log_slow_events mam mam_adhoc mam_archive
- mam_muc mam_muc_sql mam_sql mamsub manifesto measure_cpu
- measure_memory message_logging migrate motd_sequential muc_ban_ip
- muc_config_restrict muc_intercom muc_limits muc_log muc_log_http
- muc_restrict_rooms munin net_dovecotauth offline_email onhold onions
- openid password_policy pastebin pep_vcard_avatar post_msg
- privacy_lists private_adhoc privilege profile proxy65_whitelist
- pubsub_eventsource pubsub_feeds pubsub_github pubsub_googlecode
- pubsub_hub pubsub_mqtt pubsub_pivotaltracker pubsub_post
- pubsub_twitter query_client_ver rawdebug
+ mam_muc mamsub manifesto measure_cpu measure_memory message_logging
+ migrate motd_sequential muc_ban_ip muc_config_restrict muc_intercom
+ muc_limits muc_log muc_log_http muc_restrict_rooms munin
+ net_dovecotauth offline_email onhold onions openid password_policy
+ pastebin pep_vcard_avatar post_msg privacy_lists private_adhoc
+ privilege profile proxy65_whitelist pubsub_eventsource pubsub_feeds
+ pubsub_github pubsub_googlecode pubsub_hub pubsub_mqtt
+ pubsub_pivotaltracker pubsub_post pubsub_twitter query_client_ver rawdebug
readonly register_json register_redirect register_web reload_modules
remote_roster require_otr roster_allinall roster_command
s2s_auth_compat s2s_auth_dane s2s_auth_fingerprint
@@ -108,10 +107,6 @@ RDEPEND="
prosody_modules_auth_custom_http? (
dev-lua/luasocket
)
- prosody_modules_mam_muc_sql? (
- dev-lua/luasocket
- dev-lua/luadbi
- )
prosody_modules_checkcerts? (
dev-lua/luasec
)
@@ -125,10 +120,6 @@ RDEPEND="
dev-lua/luasocket
dev-lua/luafilesystem
)
- prosody_modules_mam_sql? (
- dev-lua/luasocket
- dev-lua/luadbi
- )
prosody_modules_offline_email? (
dev-lua/luasocket
)
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-10-01 22:07 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-10-01 22:07 UTC (permalink / raw
To: gentoo-commits
commit: 247f1ec49907a768d986588a488ed0be2364c956
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 1 22:07:30 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Oct 1 22:07:30 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=247f1ec4
net-im/prosody-modules: Add new prosody module.
Package-Manager: portage-2.2.22
net-im/prosody-modules/prosody-modules-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index eaed4a2..7249ccb 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -32,7 +32,7 @@ PROSODY_MODULES="
data_access default_bookmarks default_vcard delegation disable_tls
discoitems dwd email_pass extdisco filter_chatstates firewall flash_policy
group_bookmarks host_blacklist host_guard http_altconnect
- http_dir_listing http_favicon http_index http_muc_log http_upload
+ http_dir_listing http_favicon http_index http_logging http_muc_log http_upload
http_user_count idlecompat incidents_handling ipcheck isolate_host
jid_prep json_streams lastlog latex lib_ldap limit_auth limits
list_inactive listusers log_auth log_events log_messages_sql
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-10-11 12:58 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-10-11 12:58 UTC (permalink / raw
To: gentoo-commits
commit: e548433dc2a93912d1b8bada101fda9f36c13cce
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 12:58:12 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 12:58:12 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=e548433d
net-im/prosody-modules: Add new prosody module
Package-Manager: portage-2.2.23
net-im/prosody-modules/prosody-modules-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 7249ccb..713802d 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -30,8 +30,8 @@ PROSODY_MODULES="
compat_bind compat_muc_admin compat_vcard component_client
component_roundrobin conformance_restricted couchdb csi csi_compat
data_access default_bookmarks default_vcard delegation disable_tls
- discoitems dwd email_pass extdisco filter_chatstates firewall flash_policy
- group_bookmarks host_blacklist host_guard http_altconnect
+ discoitems dwd email_pass extdisco fallback_vcard filter_chatstates firewall
+ flash_policy group_bookmarks host_blacklist host_guard http_altconnect
http_dir_listing http_favicon http_index http_logging http_muc_log http_upload
http_user_count idlecompat incidents_handling ipcheck isolate_host
jid_prep json_streams lastlog latex lib_ldap limit_auth limits
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2015-12-26 23:52 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2015-12-26 23:52 UTC (permalink / raw
To: gentoo-commits
commit: 0fcde45826b75deb692c8a7f9858e83a95c5f3b7
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 26 23:51:45 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Dec 26 23:51:45 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=0fcde458
net-im/prosody-modules: Drop removed module
Package-Manager: portage-2.2.26
net-im/prosody-modules/prosody-modules-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index c839229..0728f9b 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -43,7 +43,7 @@ PROSODY_MODULES="
net_dovecotauth offline_email onhold onions openid password_policy
pastebin pep_vcard_avatar post_msg privacy_lists private_adhoc
privilege profile proxy65_whitelist pubsub_eventsource pubsub_feeds
- pubsub_github pubsub_googlecode pubsub_hub pubsub_mqtt
+ pubsub_github pubsub_hub pubsub_mqtt
pubsub_pivotaltracker pubsub_post pubsub_twitter query_client_ver rawdebug
readonly register_json register_redirect register_web reload_modules
remote_roster require_otr roster_allinall roster_command
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2016-01-13 20:51 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2016-01-13 20:51 UTC (permalink / raw
To: gentoo-commits
commit: 4d1df53c9ac9c75c66bcf748992b2cbb0a17951e
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 13 20:50:50 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jan 13 20:50:50 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=4d1df53c
net-im/prosody-modules: Add block_outgoing module
Package-Manager: portage-2.2.26
net-im/prosody-modules/prosody-modules-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 0728f9b..973418c 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -22,7 +22,7 @@ PROSODY_MODULES="
auth_custom_http auth_dovecot auth_ha1 auth_http_async auth_imap
auth_internal_yubikey auth_joomla auth_ldap auth_ldap2 auth_pam
auth_phpbb3 auth_sql auth_wordpress auto_accept_subscriptions
- auto_activate_hosts benchmark_storage bidi block_registrations
+ auto_activate_hosts benchmark_storage bidi block_outgoing block_registrations
block_s2s_subscriptions block_strangers block_subscribes
block_subscriptions blocking broadcast c2s_conn_throttle
c2s_limit_sessions candy captcha_registration carbons carbons_adhoc
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2016-02-02 18:25 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2016-02-02 18:25 UTC (permalink / raw
To: gentoo-commits
commit: 1c852325ff51536b7af9787bcfbb9001b824786a
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 2 18:24:58 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Feb 2 18:24:58 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=1c852325
net-im/prosody-modules: Add mod_pinger
Package-Manager: portage-2.2.27
net-im/prosody-modules/prosody-modules-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 973418c..2a6141f 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -41,7 +41,7 @@ PROSODY_MODULES="
migrate motd_sequential muc_ban_ip muc_config_restrict muc_intercom
muc_limits muc_log muc_log_http muc_restrict_rooms munin
net_dovecotauth offline_email onhold onions openid password_policy
- pastebin pep_vcard_avatar post_msg privacy_lists private_adhoc
+ pastebin pep_vcard_avatar pinger post_msg privacy_lists private_adhoc
privilege profile proxy65_whitelist pubsub_eventsource pubsub_feeds
pubsub_github pubsub_hub pubsub_mqtt
pubsub_pivotaltracker pubsub_post pubsub_twitter query_client_ver rawdebug
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2016-03-02 22:20 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2016-03-02 22:20 UTC (permalink / raw
To: gentoo-commits
commit: b4067881ebae1714a1dc10e09ba25f90cd59d258
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 2 22:20:28 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 22:20:28 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=b4067881
net-im/prosody-modules: Add new module
Package-Manager: portage-2.2.27
net-im/prosody-modules/prosody-modules-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 2a6141f..a31ffc3 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -33,7 +33,7 @@ PROSODY_MODULES="
discoitems dwd email_pass extdisco fallback_vcard filter_chatstates firewall
flash_policy group_bookmarks host_blacklist host_guard http_altconnect
http_dir_listing http_favicon http_index http_logging http_muc_log http_upload
- http_user_count idlecompat incidents_handling ipcheck isolate_host
+ http_user_count idlecompat incidents_handling invite ipcheck isolate_host
jid_prep json_streams lastlog latex lib_ldap limit_auth limits
list_inactive listusers log_auth log_events log_messages_sql
log_rate log_sasl_mech log_slow_events mam mam_adhoc mam_archive
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2016-03-06 20:22 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2016-03-06 20:22 UTC (permalink / raw
To: gentoo-commits
commit: fc5df92f171bfd0d9f39d00c485b31176a8cab54
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 6 20:22:27 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 6 20:22:27 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=fc5df92f
net-im/prosody-modules: Add storage_appendmap module
Package-Manager: portage-2.2.27
net-im/prosody-modules/prosody-modules-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index a31ffc3..f1c3808 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -55,7 +55,7 @@ PROSODY_MODULES="
server_status service_directories sift smacks smacks_offline sms_clickatell
srvinjection sslv3_warn stanza_counter statistics statistics_auth
statistics_cputotal statistics_mem statistics_statsd statsd
- storage_gdbm storage_ldap storage_memory storage_mongodb
+ storage_appendmap storage_gdbm storage_ldap storage_memory storage_mongodb
storage_muc_log storage_multi storage_xmlarchive streamstats
strict_https support_contact swedishchef tcpproxy telnet_tlsinfo
throttle_presence tls_policy turncredentials twitter uptime_presence
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2016-03-16 23:48 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2016-03-16 23:48 UTC (permalink / raw
To: gentoo-commits
commit: 65781d9728fe8003baaa02c7b6fc8c84e5687394
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 23:47:50 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 23:47:50 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=65781d97
net-im/prosody-modules: Add modules
Package-Manager: portage-2.2.28
net-im/prosody-modules/prosody-modules-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index f1c3808..56f3fdd 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -58,8 +58,8 @@ PROSODY_MODULES="
storage_appendmap storage_gdbm storage_ldap storage_memory storage_mongodb
storage_muc_log storage_multi storage_xmlarchive streamstats
strict_https support_contact swedishchef tcpproxy telnet_tlsinfo
- throttle_presence tls_policy turncredentials twitter uptime_presence
- vjud watchuntrusted webpresence
+ throttle_presence throttle_unsolicited tls_policy track_muc_joins
+ turncredentials twitter uptime_presence vjud watchuntrusted webpresence
"
# Missing modules because of missing deps:
# auth_internal_yubikey auth_external inotify_reload statistics
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/
@ 2016-04-03 21:24 Manuel Rüger
0 siblings, 0 replies; 15+ messages in thread
From: Manuel Rüger @ 2016-04-03 21:24 UTC (permalink / raw
To: gentoo-commits
commit: 94006f49b8aef6f00bb18cd4af6e4fb477373062
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 3 21:23:51 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Apr 3 21:23:51 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=94006f49
net-im/prosody-modules: Add presence_dedup module
Package-Manager: portage-2.2.28
net-im/prosody-modules/prosody-modules-9999.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 56f3fdd..c4e1401 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -41,9 +41,9 @@ PROSODY_MODULES="
migrate motd_sequential muc_ban_ip muc_config_restrict muc_intercom
muc_limits muc_log muc_log_http muc_restrict_rooms munin
net_dovecotauth offline_email onhold onions openid password_policy
- pastebin pep_vcard_avatar pinger post_msg privacy_lists private_adhoc
- privilege profile proxy65_whitelist pubsub_eventsource pubsub_feeds
- pubsub_github pubsub_hub pubsub_mqtt
+ pastebin pep_vcard_avatar pinger post_msg presence_dedup
+ privacy_lists private_adhoc privilege profile proxy65_whitelist
+ pubsub_eventsource pubsub_feeds pubsub_github pubsub_hub pubsub_mqtt
pubsub_pivotaltracker pubsub_post pubsub_twitter query_client_ver rawdebug
readonly register_json register_redirect register_web reload_modules
remote_roster require_otr roster_allinall roster_command
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2016-04-03 21:24 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 20:22 [gentoo-commits] dev/mrueg:master commit in: net-im/prosody-modules/ Manuel Rüger
-- strict thread matches above, loose matches on Subject: below --
2016-04-03 21:24 Manuel Rüger
2016-03-16 23:48 Manuel Rüger
2016-03-02 22:20 Manuel Rüger
2016-02-02 18:25 Manuel Rüger
2016-01-13 20:51 Manuel Rüger
2015-12-26 23:52 Manuel Rüger
2015-10-11 12:58 Manuel Rüger
2015-10-01 22:07 Manuel Rüger
2015-09-11 14:21 Manuel Rüger
2015-08-31 11:30 Manuel Rüger
2015-08-31 11:08 Manuel Rüger
2015-08-30 16:06 Manuel Rüger
2015-06-28 0:48 Manuel Rüger
2015-06-28 0:36 Manuel Rüger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox