2013-10-19 18:01:41 +00:00
|
|
|
# Version
|
2014-08-28 18:32:01 +00:00
|
|
|
%global majornumber 2
|
|
|
|
%global minornumber 0
|
2015-02-27 05:04:26 +00:00
|
|
|
%global releasenumber 9
|
2013-10-19 18:10:18 +00:00
|
|
|
|
2013-10-19 18:01:41 +00:00
|
|
|
# Documentation sources:
|
2015-02-27 05:04:26 +00:00
|
|
|
%global commit bc49905603e3f188e4e47692942a7bbeaee990c6
|
2013-10-06 06:23:09 +00:00
|
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
|
|
%global docrepo uwsgi-docs
|
2013-10-07 18:45:42 +00:00
|
|
|
%{!?_httpd_apxs: %{expand: %%global _httpd_apxs %%{_sbindir}/apxs}}
|
|
|
|
%{!?_httpd_moddir: %{expand: %%global _httpd_moddir %%{_libdir}/httpd/modules}}
|
2013-10-06 06:23:09 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
# This is primarily built for fedora, make it easy right now
|
|
|
|
%if 0%{?fedora}
|
2014-09-16 16:06:03 +00:00
|
|
|
%bcond_without systemd
|
2015-03-06 17:25:42 +00:00
|
|
|
%bcond_without go
|
|
|
|
%bcond_without python3
|
|
|
|
%bcond_without ruby19
|
2015-03-11 04:28:59 +00:00
|
|
|
%bcond_without gridfs
|
2015-03-06 17:25:42 +00:00
|
|
|
%bcond_without tuntap
|
2015-03-11 04:28:59 +00:00
|
|
|
%bcond_without zeromq
|
|
|
|
%bcond_without greenlet
|
|
|
|
%bcond_without perlcoro
|
|
|
|
%bcond_without glusterfs
|
|
|
|
%bcond_without mongodblibs
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Conditionally disable some things in epel6
|
|
|
|
%if 0%{?rhel} == 6
|
|
|
|
# el6 doesn't ship with systemd
|
2014-09-16 16:06:03 +00:00
|
|
|
%bcond_with systemd
|
2015-03-06 17:25:42 +00:00
|
|
|
# el6 doesn't have go
|
|
|
|
%bcond_with go
|
|
|
|
# el6 doesn't have python3
|
|
|
|
%bcond_with python3
|
|
|
|
# el6 ships with ruby 1.8 but fiberloop/rbthreads needs 1.9
|
|
|
|
%bcond_with ruby19
|
2015-03-11 04:28:59 +00:00
|
|
|
# this fails in el not sure why
|
|
|
|
%bcond_with gridfs
|
2015-03-06 17:25:42 +00:00
|
|
|
%bcond_with tuntap
|
2015-03-11 04:28:59 +00:00
|
|
|
%bcond_with mongodblibs
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Conditionally disable some things in epel7
|
|
|
|
%if 0%{?rhel} == 7
|
|
|
|
# el7 doesn't ship with systemd
|
|
|
|
%bcond_with systemd
|
|
|
|
# el7 doesn't have python3
|
|
|
|
%bcond_with python3
|
|
|
|
# el7 doesn't have zeromq
|
|
|
|
%bcond_with zeromq
|
|
|
|
# el7 doesn't have greenlet
|
|
|
|
%bcond_with greenlet
|
|
|
|
# el7 doesn't have perl-Coro
|
|
|
|
%bcond_with perlcoro
|
|
|
|
# this fails in el not sure why
|
|
|
|
%bcond_with glusterfs
|
|
|
|
%bcond_with gridfs
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
Name: uwsgi
|
2015-02-27 05:04:26 +00:00
|
|
|
Version: 2.0.9
|
2015-04-14 06:39:23 +00:00
|
|
|
Release: 4%{?dist}
|
2012-02-23 05:50:45 +00:00
|
|
|
Summary: Fast, self-healing, application container server
|
|
|
|
Group: System Environment/Daemons
|
2013-10-20 06:00:57 +00:00
|
|
|
License: GPLv2 with exceptions
|
2013-10-03 05:25:54 +00:00
|
|
|
URL: https://github.com/unbit/uwsgi
|
2015-03-12 06:27:55 +00:00
|
|
|
ExclusiveArch: %{ix86} x86_64 %{arm}
|
2013-10-06 06:23:09 +00:00
|
|
|
Source0: http://projects.unbit.it/downloads/%{name}-%{version}.tar.gz
|
2012-02-23 05:50:45 +00:00
|
|
|
Source1: fedora.ini
|
2013-04-24 05:17:02 +00:00
|
|
|
Source2: uwsgi.service
|
|
|
|
Source3: emperor.ini
|
2013-10-06 06:23:09 +00:00
|
|
|
Source4: https://github.com/unbit/%{docrepo}/archive/%{commit}/%{docrepo}-%{shortcommit}.tar.gz
|
2014-08-27 21:18:24 +00:00
|
|
|
Source5: README.Fedora
|
2015-02-27 16:34:13 +00:00
|
|
|
Source6: uwsgi.init
|
2012-06-27 07:03:47 +00:00
|
|
|
Patch0: uwsgi_trick_chroot_rpmbuild.patch
|
|
|
|
Patch1: uwsgi_fix_rpath.patch
|
2013-04-02 12:45:42 +00:00
|
|
|
Patch2: uwsgi_ruby20_compatibility.patch
|
2013-04-24 05:17:02 +00:00
|
|
|
Patch3: uwsgi_fix_lua.patch
|
2015-04-14 06:39:23 +00:00
|
|
|
# https://github.com/unbit/uwsgi/issues/883
|
|
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=17523
|
|
|
|
Patch4: uwsgi_fix_glibc_compatibility.patch
|
|
|
|
# https://github.com/unbit/uwsgi/issues/882
|
|
|
|
Patch5: uwsgi_fix_mongodb.patch
|
2012-02-23 05:50:45 +00:00
|
|
|
BuildRequires: curl, python2-devel, libxml2-devel, libuuid-devel, jansson-devel
|
|
|
|
BuildRequires: libyaml-devel, perl-devel, ruby-devel, perl-ExtUtils-Embed
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with python3}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
%endif
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with greenlet}
|
|
|
|
BuildRequires: python-greenlet-devel
|
|
|
|
%endif
|
|
|
|
%if %{with glusterfs}
|
|
|
|
BuildRequires: glusterfs-devel, glusterfs-api-devel
|
|
|
|
%endif
|
|
|
|
BuildRequires: lua-devel, ruby, pcre-devel
|
2012-06-27 07:03:47 +00:00
|
|
|
BuildRequires: php-devel, php-embedded, libedit-devel, openssl-devel
|
2014-09-16 16:06:03 +00:00
|
|
|
BuildRequires: bzip2-devel, gmp-devel, pam-devel
|
|
|
|
BuildRequires: java-devel, sqlite-devel, libcap-devel
|
2015-03-11 04:28:59 +00:00
|
|
|
BuildRequires: httpd-devel, tcp_wrappers-devel, libcurl-devel
|
|
|
|
BuildRequires: gloox-devel, libstdc++-devel
|
|
|
|
%if %{with perlcoro}
|
|
|
|
BuildRequires: perl-Coro
|
|
|
|
%endif
|
|
|
|
%if %{with zeromq}
|
|
|
|
BuildRequires: zeromq-devel
|
|
|
|
%endif
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with go}
|
|
|
|
BuildRequires: libgo-devel, gcc-go
|
|
|
|
%endif
|
2015-03-11 04:28:59 +00:00
|
|
|
BuildRequires: GeoIP-devel, libevent-devel, zlib-devel
|
2015-03-06 17:25:42 +00:00
|
|
|
BuildRequires: mono-devel, mono-web, openldap-devel, v8-devel
|
|
|
|
BuildRequires: libmongodb-devel, boost-devel
|
2014-09-07 21:03:36 +00:00
|
|
|
BuildRequires: libattr-devel, libxslt-devel
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
|
|
|
BuildRequires: systemd-devel, systemd-units
|
|
|
|
%endif
|
2013-10-04 16:20:46 +00:00
|
|
|
Obsoletes: %{name}-loggers <= 1.9.8-1
|
2014-08-29 20:06:11 +00:00
|
|
|
Obsoletes: %{name}-routers <= 2.0.6
|
2014-08-23 22:17:07 +00:00
|
|
|
Obsoletes: %{name}-plugin-erlang <= 1.9.20-1
|
2014-08-28 18:17:20 +00:00
|
|
|
Obsoletes: %{name}-plugin-admin <= 2.0.6
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2012-07-29 22:47:35 +00:00
|
|
|
Requires(pre): shadow-utils
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2012-07-29 22:47:35 +00:00
|
|
|
Requires(post): systemd-units
|
|
|
|
Requires(preun): systemd-units
|
|
|
|
Requires(postun): systemd-units
|
2015-02-27 16:34:13 +00:00
|
|
|
%else
|
|
|
|
Requires(post): chkconfig
|
|
|
|
Requires(preun): chkconfig
|
|
|
|
Requires(preun): initscripts
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2012-07-29 22:47:35 +00:00
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
%description
|
|
|
|
uWSGI is a fast (pure C), self-healing, developer/sysadmin-friendly
|
|
|
|
application container server. Born as a WSGI-only server, over time it has
|
|
|
|
evolved in a complete stack for networked/clustered web applications,
|
|
|
|
implementing message/object passing, caching, RPC and process management.
|
|
|
|
It uses the uwsgi (all lowercase, already included by default in the Nginx
|
|
|
|
and Cherokee releases) protocol for all the networking/interprocess
|
|
|
|
communications. Can be run in preforking mode, threaded,
|
|
|
|
asynchronous/evented and supports various form of green threads/co-routine
|
|
|
|
(like uGreen and Fiber). Sysadmin will love it as it can be configured via
|
|
|
|
command line, environment variables, xml, .ini and yaml files and via LDAP.
|
|
|
|
Being fully modular can use tons of different technology on top of the same
|
|
|
|
core.
|
|
|
|
|
|
|
|
%package -n %{name}-devel
|
|
|
|
Summary: uWSGI - Development header files and libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}
|
|
|
|
|
|
|
|
%description -n %{name}-devel
|
|
|
|
This package contains the development header files and libraries
|
|
|
|
for uWSGI extensions
|
|
|
|
|
2014-08-29 04:12:01 +00:00
|
|
|
%package -n %{name}-docs
|
|
|
|
Summary: uWSGI - Documentation
|
|
|
|
Group: Documentation
|
|
|
|
Requires: %{name}
|
|
|
|
|
2014-08-29 04:13:20 +00:00
|
|
|
%description -n %{name}-docs
|
|
|
|
This package contains the documentation files for uWSGI
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
%package -n %{name}-plugin-common
|
|
|
|
Summary: uWSGI - Common plugins for uWSGI
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-common
|
|
|
|
This package contains the most common plugins used with uWSGI. The
|
|
|
|
plugins included in this package are: cache, CGI, RPC, uGreen
|
|
|
|
|
2014-09-06 02:39:35 +00:00
|
|
|
# Stats pushers
|
|
|
|
|
|
|
|
%package -n %{name}-stats-pusher-file
|
|
|
|
Summary: uWSGI - File Stats Pusher for uWSGI
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2014-09-06 02:39:35 +00:00
|
|
|
|
|
|
|
%description -n %{name}-stats-pusher-file
|
|
|
|
This package contains the stats_pusher_file plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-stats-pusher-mongodb
|
|
|
|
Summary: uWSGI - MongoDB Stats Pusher for uWSGI
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2014-09-06 02:39:35 +00:00
|
|
|
|
|
|
|
%description -n %{name}-stats-pusher-mongodb
|
|
|
|
This package contains the stats_pusher_mongodb plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-stats-pusher-socket
|
|
|
|
Summary: uWSGI - Socket Stats Pusher for uWSGI
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2014-09-06 02:39:35 +00:00
|
|
|
|
|
|
|
%description -n %{name}-stats-pusher-socket
|
|
|
|
This package contains the stats_pusher_socket plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-stats-pusher-statsd
|
|
|
|
Summary: uWSGI - StatsD Stats Pusher for uWSGI
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2014-09-06 02:39:35 +00:00
|
|
|
|
|
|
|
%description -n %{name}-stats-pusher-statsd
|
|
|
|
This package contains the stats_pusher_statsd plugin for uWSGI
|
|
|
|
|
2014-09-07 21:11:33 +00:00
|
|
|
%package -n %{name}-stats-pusher-zabbix
|
|
|
|
Summary: uWSGI - Zabbix Stats Pusher for uWSGI
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2014-09-07 21:11:33 +00:00
|
|
|
|
|
|
|
%description -n %{name}-stats-pusher-zabbix
|
|
|
|
This package contains the zabbix plugin for uWSGI
|
|
|
|
|
2014-08-29 23:28:56 +00:00
|
|
|
# Alarms
|
2014-08-29 23:31:53 +00:00
|
|
|
|
2014-08-29 23:28:56 +00:00
|
|
|
%package -n %{name}-alarm-curl
|
|
|
|
Summary: uWSGI - Curl alarm plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libcurl
|
|
|
|
|
|
|
|
%description -n %{name}-alarm-curl
|
|
|
|
This package contains the alarm_curl alarm plugin for uWSGI
|
|
|
|
|
2014-08-29 23:31:53 +00:00
|
|
|
%package -n %{name}-alarm-xmpp
|
|
|
|
Summary: uWSGI - Curl alarm plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, gloox
|
|
|
|
|
|
|
|
%description -n %{name}-alarm-xmpp
|
|
|
|
This package contains the alarm_xmpp alarm plugin for uWSGI
|
|
|
|
|
2014-09-07 20:21:02 +00:00
|
|
|
# Transformations
|
|
|
|
|
|
|
|
%package -n %{name}-transformation-chunked
|
|
|
|
Summary: uWSGI - Chunked Transformation plugin
|
|
|
|
Group: System Environment/Daemons
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common, %{name}-router-uwsgi
|
2014-09-07 20:21:02 +00:00
|
|
|
|
|
|
|
%description -n %{name}-transformation-chunked
|
|
|
|
This package contains the transformation_chunked plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-transformation-gzip
|
|
|
|
Summary: uWSGI - GZip Transformation plugin
|
|
|
|
Group: System Environment/Daemons
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common, %{name}-router-uwsgi
|
2014-09-07 20:21:02 +00:00
|
|
|
|
|
|
|
%description -n %{name}-transformation-gzip
|
|
|
|
This package contains the transformation_gzip plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-transformation-offload
|
|
|
|
Summary: uWSGI - Off-Load Transformation plugin
|
|
|
|
Group: System Environment/Daemons
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common, %{name}-router-uwsgi
|
2014-09-07 20:21:02 +00:00
|
|
|
|
|
|
|
%description -n %{name}-transformation-offload
|
|
|
|
This package contains the transformation_offload plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-transformation-template
|
|
|
|
Summary: uWSGI - Template Transformation plugin
|
|
|
|
Group: System Environment/Daemons
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common, %{name}-router-uwsgi
|
2014-09-07 20:21:02 +00:00
|
|
|
|
|
|
|
%description -n %{name}-transformation-template
|
|
|
|
This package contains the transformation_template plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-transformation-tofile
|
|
|
|
Summary: uWSGI - ToFile Transformation plugin
|
|
|
|
Group: System Environment/Daemons
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common, %{name}-router-uwsgi
|
2014-09-07 20:21:02 +00:00
|
|
|
|
|
|
|
%description -n %{name}-transformation-tofile
|
|
|
|
This package contains the transformation_tofile plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-transformation-toupper
|
|
|
|
Summary: uWSGI - ToUpper Transformation plugin
|
|
|
|
Group: System Environment/Daemons
|
2014-09-18 14:43:46 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2014-09-07 20:21:02 +00:00
|
|
|
|
|
|
|
%description -n %{name}-transformation-toupper
|
|
|
|
This package contains the transformation_toupper plugin for uWSGI
|
|
|
|
|
2014-08-28 18:17:20 +00:00
|
|
|
# Loggers
|
|
|
|
|
2014-09-02 17:16:25 +00:00
|
|
|
%package -n %{name}-log-encoder-msgpack
|
|
|
|
Summary: uWSGI - msgpack log encoder plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-log-encoder-msgpack
|
|
|
|
This package contains the msgpack log encoder plugin for uWSGI
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%package -n %{name}-logger-crypto
|
2014-08-28 18:53:11 +00:00
|
|
|
Summary: uWSGI - logcrypto logger plugin
|
2014-08-28 18:43:09 +00:00
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%description -n %{name}-logger-crypto
|
2014-08-28 18:53:11 +00:00
|
|
|
This package contains the logcrypto logger plugin for uWSGI
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%package -n %{name}-logger-file
|
2014-08-28 19:02:52 +00:00
|
|
|
Summary: uWSGI - logfile logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-loggers <= 1.9.8-1
|
|
|
|
Provides: %{name}-loggers = %{version}-%{release}
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%description -n %{name}-logger-file
|
2014-08-28 19:02:52 +00:00
|
|
|
This package contains the logfile logger plugin for uWSGI
|
|
|
|
|
2014-08-30 03:27:55 +00:00
|
|
|
%package -n %{name}-logger-graylog2
|
|
|
|
Summary: uWSGI - Graylog2 logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, zlib
|
|
|
|
|
|
|
|
%description -n %{name}-logger-graylog2
|
|
|
|
This package contains the graylog2 logger plugin for uWSGI
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%package -n %{name}-logger-mongodb
|
|
|
|
Summary: uWSGI - mongodblog logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-loggers <= 1.9.8-1
|
|
|
|
Provides: %{name}-loggers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-logger-mongodb
|
|
|
|
This package contains the mongodblog logger plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-logger-pipe
|
2014-08-28 18:53:11 +00:00
|
|
|
Summary: uWSGI - logpipe logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%description -n %{name}-logger-pipe
|
2014-08-28 18:53:11 +00:00
|
|
|
This package contains the logcrypto logger plugin for uWSGI
|
2014-08-28 18:43:09 +00:00
|
|
|
|
2014-08-28 19:17:22 +00:00
|
|
|
%package -n %{name}-logger-redis
|
|
|
|
Summary: uWSGI - redislog logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-loggers <= 1.9.8-1
|
|
|
|
Provides: %{name}-loggers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-logger-redis
|
|
|
|
This package contains the redislog logger plugin for uWSGI
|
|
|
|
|
2014-08-28 21:58:25 +00:00
|
|
|
%package -n %{name}-logger-rsyslog
|
|
|
|
Summary: uWSGI - rsyslog logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-plugin-rsyslog <= 1.9.8-1
|
|
|
|
Provides: %{name}-plugin-rsyslog = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-logger-rsyslog
|
|
|
|
This package contains the rsyslog logger plugin for uWSGI
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%package -n %{name}-logger-socket
|
2014-08-28 19:05:27 +00:00
|
|
|
Summary: uWSGI - logsocket logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-loggers <= 1.9.8-1
|
|
|
|
Provides: %{name}-loggers = %{version}-%{release}
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%description -n %{name}-logger-socket
|
2014-08-28 19:05:27 +00:00
|
|
|
This package contains the logsocket logger plugin for uWSGI
|
|
|
|
|
2014-08-29 03:41:38 +00:00
|
|
|
%package -n %{name}-logger-syslog
|
|
|
|
Summary: uWSGI - syslog logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-plugin-syslog <= 1.9.8-1
|
|
|
|
Provides: %{name}-plugin-syslog = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-logger-syslog
|
|
|
|
This package contains the syslog logger plugin for uWSGI
|
|
|
|
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2014-08-28 18:17:20 +00:00
|
|
|
%package -n %{name}-logger-systemd
|
|
|
|
Summary: uWSGI - SystemD Journal logger plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-logger-systemd
|
|
|
|
This package contains the SystemD Journal logger plugin for uWSGI
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2014-08-28 18:17:20 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with zeromq}
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-logger-zeromq
|
|
|
|
Summary: uWSGI - ZeroMQ logger plugin
|
2012-02-23 05:50:45 +00:00
|
|
|
Group: System Environment/Daemons
|
2014-08-28 18:27:25 +00:00
|
|
|
Requires: %{name}-plugin-common, zeromq
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%description -n %{name}-logger-zeromq
|
|
|
|
This package contains the ZeroMQ logger plugin for uWSGI
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
# Plugins
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-08-29 22:37:46 +00:00
|
|
|
%package -n %{name}-plugin-airbrake
|
|
|
|
Summary: uWSGI - Plugin for AirBrake support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libcurl
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-airbrake
|
|
|
|
This package contains the airbrake plugin for uWSGI
|
|
|
|
|
2014-08-29 04:02:14 +00:00
|
|
|
%package -n %{name}-plugin-cache
|
|
|
|
Summary: uWSGI - Plugin for cache support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-cache
|
|
|
|
This package contains the cache plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-plugin-carbon
|
|
|
|
Summary: uWSGI - Plugin for Carbon/Graphite support
|
2012-02-23 05:50:45 +00:00
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%description -n %{name}-plugin-carbon
|
|
|
|
This package contains the Carbon plugin for uWSGI (to use in graphite)
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with perlcoro}
|
2014-08-29 23:44:26 +00:00
|
|
|
%package -n %{name}-plugin-coroae
|
|
|
|
Summary: uWSGI - Plugin for PERL Coro support
|
|
|
|
Group: System Environment/Daemons
|
2014-08-29 23:51:31 +00:00
|
|
|
Requires: %{name}-plugin-common, %{name}-plugin-psgi, perl-Coro
|
2014-08-29 23:44:26 +00:00
|
|
|
|
2014-08-29 23:45:10 +00:00
|
|
|
%description -n %{name}-plugin-coroae
|
2014-08-29 23:57:37 +00:00
|
|
|
This package contains the coroae plugin for uWSGI
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-29 23:57:37 +00:00
|
|
|
|
|
|
|
%package -n %{name}-plugin-cplusplus
|
|
|
|
Summary: uWSGI - Plugin for C++ support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libstdc++
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-cplusplus
|
|
|
|
This package contains the cplusplus plugin for uWSGI
|
2014-08-29 23:44:26 +00:00
|
|
|
|
2014-08-30 00:04:37 +00:00
|
|
|
%package -n %{name}-plugin-curl-cron
|
|
|
|
Summary: uWSGI - Plugin for CURL Cron support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libcurl
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-curl-cron
|
|
|
|
This package contains the curl_cron plugin for uWSGI
|
|
|
|
|
2014-08-30 00:13:42 +00:00
|
|
|
%package -n %{name}-plugin-dumbloop
|
|
|
|
Summary: uWSGI - Plugin for Dumb Loop support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-dumbloop
|
|
|
|
This package contains the dumbloop plugin for uWSGI
|
|
|
|
|
2014-08-30 00:23:41 +00:00
|
|
|
%package -n %{name}-plugin-fiber
|
|
|
|
Summary: uWSGI - Plugin for Ruby Fiber support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, %{name}-plugin-rack
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-fiber
|
|
|
|
This package contains the fiber plugin for uWSGI
|
|
|
|
|
2014-08-30 00:31:45 +00:00
|
|
|
%package -n %{name}-plugin-gccgo
|
|
|
|
Summary: uWSGI - Plugin for GoLang support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libgo
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-gccgo
|
|
|
|
This package contains the gccgo plugin for uWSGI
|
|
|
|
|
2014-08-30 00:55:48 +00:00
|
|
|
%package -n %{name}-plugin-geoip
|
|
|
|
Summary: uWSGI - Plugin for GeoIP support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, GeoIP
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-geoip
|
|
|
|
This package contains the geoip plugin for uWSGI
|
|
|
|
|
2014-08-30 03:05:45 +00:00
|
|
|
%package -n %{name}-plugin-gevent
|
|
|
|
Summary: uWSGI - Plugin for GEvent support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libevent
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-gevent
|
|
|
|
This package contains the gevent plugin for uWSGI
|
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with glusterfs}
|
2014-08-30 03:15:53 +00:00
|
|
|
%package -n %{name}-plugin-glusterfs
|
|
|
|
Summary: uWSGI - Plugin for GlusterFS support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, glusterfs-api
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-glusterfs
|
|
|
|
This package contains the glusterfs plugin for uWSGI
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-30 03:15:53 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with greenlet}
|
2012-02-23 05:50:45 +00:00
|
|
|
%package -n %{name}-plugin-greenlet
|
|
|
|
Summary: uWSGI - Plugin for Python Greenlet support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: python-greenlet, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-greenlet
|
|
|
|
This package contains the python greenlet plugin for uWSGI
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-08-30 03:36:48 +00:00
|
|
|
%package -n %{name}-plugin-gridfs
|
|
|
|
Summary: uWSGI - Plugin for GridFS support
|
|
|
|
Group: System Environment/Daemons
|
2014-08-30 03:47:15 +00:00
|
|
|
Requires: %{name}-plugin-common, libmongodb
|
2014-08-30 03:36:48 +00:00
|
|
|
|
|
|
|
%description -n %{name}-plugin-gridfs
|
|
|
|
This package contains the gridfs plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-plugin-jvm
|
|
|
|
Summary: uWSGI - Plugin for JVM support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, java-headless, jpackage-utils
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-jvm
|
|
|
|
This package contains the JVM plugin for uWSGI
|
|
|
|
|
2014-09-04 17:42:50 +00:00
|
|
|
%package -n %{name}-plugin-jwsgi
|
|
|
|
Summary: uWSGI - Plugin for JWSGI support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, %{name}-plugin-jvm
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-jwsgi
|
|
|
|
This package contains the jwsgi plugin for uWSGI
|
|
|
|
|
2014-09-05 17:43:23 +00:00
|
|
|
%package -n %{name}-plugin-ldap
|
|
|
|
Summary: uWSGI - Plugin for LDAP support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, openldap
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-ldap
|
|
|
|
This package contains the ldap plugin for uWSGI
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
%package -n %{name}-plugin-lua
|
|
|
|
Summary: uWSGI - Plugin for LUA support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: lua, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-lua
|
|
|
|
This package contains the lua plugin for uWSGI
|
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with zeromq}
|
2014-08-30 04:12:39 +00:00
|
|
|
%package -n %{name}-plugin-mongrel2
|
|
|
|
Summary: uWSGI - Plugin for Mongrel2 support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, zeromq
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-mongrel2
|
|
|
|
This package contains the mongrel2 plugin for uWSGI
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-30 04:12:39 +00:00
|
|
|
|
2014-09-02 16:45:39 +00:00
|
|
|
%package -n %{name}-plugin-mono
|
|
|
|
Summary: uWSGI - Plugin for Mono / .NET support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, mono-web
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-mono
|
|
|
|
This package contains the mono plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-plugin-nagios
|
|
|
|
Summary: uWSGI - Plugin for Nagios support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-nagios
|
|
|
|
This package contains the nagios plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-pam
|
|
|
|
Summary: uWSGI - Plugin for PAM support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, pam
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-pam
|
|
|
|
This package contains the PAM plugin for uWSGI
|
|
|
|
|
2012-06-27 07:03:47 +00:00
|
|
|
%package -n %{name}-plugin-php
|
|
|
|
Summary: uWSGI - Plugin for PHP support
|
|
|
|
Group: System Environment/Daemons
|
2012-09-19 14:30:24 +00:00
|
|
|
Requires: %{name}-plugin-common
|
2012-06-27 07:03:47 +00:00
|
|
|
|
|
|
|
%description -n %{name}-plugin-php
|
|
|
|
This package contains the PHP plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-plugin-psgi
|
|
|
|
Summary: uWSGI - Plugin for PSGI support
|
2012-06-27 07:03:47 +00:00
|
|
|
Group: System Environment/Daemons
|
2014-08-28 18:27:25 +00:00
|
|
|
Requires: perl-PSGI, %{name}-plugin-common
|
2012-06-27 07:03:47 +00:00
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%description -n %{name}-plugin-psgi
|
|
|
|
This package contains the PSGI plugin for uWSGI
|
|
|
|
|
2014-09-02 20:09:42 +00:00
|
|
|
%package -n %{name}-plugin-pty
|
|
|
|
Summary: uWSGI - Plugin for PTY support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: python, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-pty
|
|
|
|
This package contains the pty plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-plugin-python
|
|
|
|
Summary: uWSGI - Plugin for Python support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: python, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-python
|
|
|
|
This package contains the python plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-python3
|
|
|
|
Summary: uWSGI - Plugin for Python 3.2 support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: python3, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-python3
|
|
|
|
This package contains the Python 3.2 plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-rack
|
|
|
|
Summary: uWSGI - Ruby rack plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: rubygem-rack, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-rack
|
|
|
|
This package contains the rack plugin for uWSGI
|
2012-06-27 07:03:47 +00:00
|
|
|
|
2014-09-02 22:40:31 +00:00
|
|
|
%package -n %{name}-plugin-rbthreads
|
|
|
|
Summary: uWSGI - Ruby native threads support plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, ruby
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-rbthreads
|
|
|
|
This package contains the rbthreads plugin for uWSGI
|
|
|
|
|
2014-09-02 22:51:33 +00:00
|
|
|
%package -n %{name}-plugin-ring
|
|
|
|
Summary: uWSGI - Clojure/Ring request handler support plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, %{name}-plugin-jvm, clojure
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-ring
|
|
|
|
This package contains the ring plugin for uWSGI
|
|
|
|
|
2014-08-29 04:02:14 +00:00
|
|
|
%package -n %{name}-plugin-rpc
|
|
|
|
Summary: uWSGI - Plugin for RPC support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: rrdtool, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-rpc
|
|
|
|
This package contains the RPC plugin for uWSGI
|
|
|
|
|
2012-06-27 07:03:47 +00:00
|
|
|
%package -n %{name}-plugin-rrdtool
|
|
|
|
Summary: uWSGI - Plugin for RRDTool support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: rrdtool, %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-rrdtool
|
|
|
|
This package contains the RRD Tool plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%package -n %{name}-plugin-ruby
|
|
|
|
Summary: uWSGI - Plugin for Ruby support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: ruby, %{name}-plugin-common
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%description -n %{name}-plugin-ruby
|
2014-09-05 16:52:24 +00:00
|
|
|
This package contains the ruby19 plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-spooler
|
|
|
|
Summary: uWSGI - Plugin for Remote Spooling support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-spooler
|
|
|
|
This package contains the spooler plugin for uWSGI
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2014-09-05 17:08:44 +00:00
|
|
|
%package -n %{name}-plugin-sqlite3
|
|
|
|
Summary: uWSGI - SQLite3 plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, sqlite
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-sqlite3
|
|
|
|
This package contains the sqlite3 plugin for uWSGI
|
|
|
|
|
2014-09-05 21:01:51 +00:00
|
|
|
%package -n %{name}-plugin-ssi
|
|
|
|
Summary: uWSGI - Server Side Includes plugin
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-ssi
|
|
|
|
This package contains the ssi plugin for uWSGI
|
|
|
|
|
2014-09-06 02:53:12 +00:00
|
|
|
%package -n %{name}-plugin-tornado
|
|
|
|
Summary: uWSGI - Plugin for Tornado support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, python-tornado
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-tornado
|
|
|
|
This package contains the tornado plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-tornado3
|
|
|
|
Summary: uWSGI - Plugin for Tornado/Python3 support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, python3-tornado
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-tornado3
|
|
|
|
This package contains the tornado (python v3) plugin for uWSGI
|
|
|
|
|
2014-09-07 20:45:36 +00:00
|
|
|
%package -n %{name}-plugin-ugreen
|
|
|
|
Summary: uWSGI - Plugin for uGreen support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-ugreen
|
|
|
|
This package contains the uGreen plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-v8
|
|
|
|
Summary: uWSGI - Plugin for v8 support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, v8
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-v8
|
|
|
|
This package contains the v8 plugin for uWSGI
|
|
|
|
|
2014-09-07 20:57:29 +00:00
|
|
|
%package -n %{name}-plugin-webdav
|
|
|
|
Summary: uWSGI - Plugin for WebDAV support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libattr
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-webdav
|
|
|
|
This package contains the webdav plugin for uWSGI
|
|
|
|
|
2014-09-07 21:03:36 +00:00
|
|
|
%package -n %{name}-plugin-xattr
|
|
|
|
Summary: uWSGI - Plugin for Extra Attributes support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libattr
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-xattr
|
|
|
|
This package contains the xattr plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-plugin-xslt
|
|
|
|
Summary: uWSGI - Plugin for XSLT transformation support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common, libxslt
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-xslt
|
|
|
|
This package contains the xslt plugin for uWSGI
|
|
|
|
|
2013-04-24 05:17:02 +00:00
|
|
|
%package -n %{name}-plugin-zergpool
|
|
|
|
Summary: uWSGI - Plugin for zergpool support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-plugin-zergpool
|
|
|
|
This package contains the zergpool plugin for uWSGI
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
# Routers
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%package -n %{name}-router-access
|
|
|
|
Summary: uWSGI - Plugin for router_access router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-access
|
|
|
|
This package contains the router_access plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-basicauth
|
|
|
|
Summary: uWSGI - Plugin for Basic Auth router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-basicauth
|
|
|
|
This package contains the basicauth plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-cache
|
|
|
|
Summary: uWSGI - Plugin for Cache router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-cache
|
|
|
|
This package contains the cache router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-expires
|
|
|
|
Summary: uWSGI - Plugin for Expires router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-expires
|
|
|
|
This package contains the expires router plugin for uWSGI
|
|
|
|
|
2014-08-29 20:06:11 +00:00
|
|
|
%package -n %{name}-router-fast
|
|
|
|
Summary: uWSGI - Plugin for FastRouter support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-plugin-fastrouter <= 2.0.6
|
|
|
|
Provides: %{name}-plugin-fastrouter = %{version}-%{release}
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2014-08-29 20:06:11 +00:00
|
|
|
%description -n %{name}-router-fast
|
|
|
|
This package contains the fastrouter (proxy) plugin for uWSGI
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%package -n %{name}-router-forkpty
|
|
|
|
Summary: uWSGI - Plugin for ForkPTY router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-router-forkpty
|
|
|
|
This package contains the ForkPTY router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-hash
|
|
|
|
Summary: uWSGI - Plugin for Hash router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-hash
|
|
|
|
This package contains the hash router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-http
|
|
|
|
Summary: uWSGI - Plugin for HTTP router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-http
|
|
|
|
This package contains the http router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-memcached
|
|
|
|
Summary: uWSGI - Plugin for Memcached router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-memcached
|
|
|
|
This package contains the memcached router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-metrics
|
|
|
|
Summary: uWSGI - Plugin for Metrics router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-router-metrics
|
|
|
|
This package contains the metrics router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-radius
|
|
|
|
Summary: uWSGI - Plugin for Radius router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-router-radius
|
|
|
|
This package contains the metrics router plugin for uWSGI
|
|
|
|
|
2014-08-29 04:31:50 +00:00
|
|
|
%package -n %{name}-router-raw
|
2014-08-29 22:24:29 +00:00
|
|
|
Summary: uWSGI - Plugin for Raw Router support
|
2014-08-29 04:31:50 +00:00
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Obsoletes: %{name}-plugin-rawrouter <= 2.0.6
|
|
|
|
Provides: %{name}-plugin-rawrouter = %{version}-%{release}
|
2014-08-29 20:06:11 +00:00
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2014-08-29 04:31:50 +00:00
|
|
|
%description -n %{name}-router-raw
|
2013-04-24 05:17:02 +00:00
|
|
|
This package contains the Raw router plugin for uWSGI
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%package -n %{name}-router-redirect
|
|
|
|
Summary: uWSGI - Plugin for Redirect router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-redirect
|
|
|
|
This package contains the redirect router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-redis
|
|
|
|
Summary: uWSGI - Plugin for Redis router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-redis
|
|
|
|
This package contains the redis router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-rewrite
|
|
|
|
Summary: uWSGI - Plugin for Rewrite router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-rewrite
|
|
|
|
This package contains the rewrite router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-spnego
|
|
|
|
Summary: uWSGI - Plugin for SPNEgo router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-router-spnego
|
|
|
|
This package contains the spnego router plugin for uWSGI
|
|
|
|
|
2014-08-29 20:06:11 +00:00
|
|
|
%package -n %{name}-router-ssl
|
2014-08-29 22:24:29 +00:00
|
|
|
Summary: uWSGI - Plugin for SSL router support
|
2014-08-28 18:17:20 +00:00
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
2014-08-29 20:06:11 +00:00
|
|
|
Obsoletes: %{name}-plugin-sslrouter <= 2.0.6
|
|
|
|
Provides: %{name}-plugin-sslrouter = %{version}-%{release}
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
2014-08-26 21:37:57 +00:00
|
|
|
|
2014-08-29 20:06:11 +00:00
|
|
|
%description -n %{name}-router-ssl
|
|
|
|
This package contains the SSL router plugin for uWSGI
|
2014-08-26 22:32:52 +00:00
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%package -n %{name}-router-static
|
|
|
|
Summary: uWSGI - Plugin for Static router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-static
|
|
|
|
This package contains the Static router plugin for uWSGI
|
|
|
|
|
2014-09-07 20:32:41 +00:00
|
|
|
%package -n %{name}-router-tuntap
|
|
|
|
Summary: uWSGI - Plugin for TUN/TAP router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
|
|
|
|
%description -n %{name}-router-tuntap
|
|
|
|
This package contains the tuntap router plugin for uWSGI
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%package -n %{name}-router-uwsgi
|
|
|
|
Summary: uWSGI - Plugin for uWSGI router support
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-uwsgi
|
|
|
|
This package contains the uwsgi router plugin for uWSGI
|
|
|
|
|
|
|
|
%package -n %{name}-router-xmldir
|
|
|
|
Summary: uWSGI - Plugin for XMLDir router rupport
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}-plugin-common
|
|
|
|
Provides: %{name}-routers = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n %{name}-router-xmldir
|
|
|
|
This package contains the xmldir router plugin for uWSGI
|
|
|
|
|
2014-08-28 18:17:20 +00:00
|
|
|
# The rest
|
2014-08-26 22:32:52 +00:00
|
|
|
|
2013-10-07 18:45:42 +00:00
|
|
|
%package -n mod_proxy_%{name}
|
|
|
|
Summary: uWSGI - Apache2 proxy module
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %{name}, httpd
|
|
|
|
|
|
|
|
%description -n mod_proxy_%{name}
|
|
|
|
Fully Apache API compliant proxy module
|
|
|
|
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
cp -p %{SOURCE1} buildconf/
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2013-04-24 05:17:02 +00:00
|
|
|
cp -p %{SOURCE2} %{name}.service
|
2015-02-27 16:34:13 +00:00
|
|
|
%else
|
|
|
|
cp -p %{SOURCE6} %{name}.init
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2013-04-24 05:17:02 +00:00
|
|
|
cp -p %{SOURCE3} %{name}.ini
|
2013-10-03 05:25:54 +00:00
|
|
|
cp -p %{SOURCE4} uwsgi-docs.tar.gz
|
2014-08-27 21:18:24 +00:00
|
|
|
cp -p %{SOURCE5} README.Fedora
|
2012-02-23 05:50:45 +00:00
|
|
|
echo "plugin_dir = %{_libdir}/%{name}" >> buildconf/$(basename %{SOURCE1})
|
|
|
|
%patch0 -p1
|
|
|
|
%patch1 -p1
|
2013-04-02 12:45:42 +00:00
|
|
|
%patch2 -p1
|
2013-04-24 05:17:02 +00:00
|
|
|
%patch3 -p1
|
2015-04-14 06:39:23 +00:00
|
|
|
%patch4 -p1
|
|
|
|
%patch5 -p1
|
2012-02-23 05:50:45 +00:00
|
|
|
|
|
|
|
%build
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with mongodblibs}
|
|
|
|
CFLAGS="%{optflags} -Wno-error -Wno-unused-but-set-variable" python uwsgiconfig.py --build fedora.ini
|
|
|
|
%else
|
|
|
|
UWSGI_MONGODB_NOLIB=1 CFLAGS="%{optflags} -Wno-error -Wno-unused-but-set-variable" python uwsgiconfig.py --build fedora.ini
|
|
|
|
%endif
|
|
|
|
%if %{with python3}
|
2013-10-03 05:25:54 +00:00
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python3 uwsgiconfig.py --plugin plugins/python fedora python3
|
2014-09-06 02:53:12 +00:00
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python3 uwsgiconfig.py --plugin plugins/tornado fedora tornado3
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
|
|
|
%if %{with go}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/gccgo fedora
|
|
|
|
%endif
|
|
|
|
%if %{with ruby19}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/fiber fedora
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/rbthreads fedora
|
|
|
|
%endif
|
|
|
|
%if %{with systemd}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/systemd_logger fedora
|
|
|
|
%endif
|
|
|
|
%if %{with tuntap}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/tuntap fedora
|
|
|
|
%endif
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with perlcoro}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/coroae fedora
|
|
|
|
%endif
|
|
|
|
%if %{with zeromq}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/logzmq fedora
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/mongrel2 fedora
|
|
|
|
%endif
|
|
|
|
%if %{with greenlet}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/greenlet fedora
|
|
|
|
%endif
|
|
|
|
%if %{with glusterfs}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/glusterfs fedora
|
|
|
|
%endif
|
|
|
|
%if %{with gridfs}
|
|
|
|
CFLAGS="%{optflags} -Wno-unused-but-set-variable" python uwsgiconfig.py --plugin plugins/gridfs fedora
|
|
|
|
%endif
|
2013-10-07 18:45:42 +00:00
|
|
|
%{_httpd_apxs} -Wc,-Wall -Wl -c apache2/mod_proxy_uwsgi.c
|
2012-02-23 05:50:45 +00:00
|
|
|
|
|
|
|
%install
|
2012-07-29 22:47:35 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}.d
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with systemd}
|
2012-07-29 22:47:35 +00:00
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
2015-03-06 17:25:42 +00:00
|
|
|
%else
|
|
|
|
mkdir -p %{buildroot}%{_initddir}
|
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
|
|
mkdir -p %{buildroot}%{_includedir}/%{name}
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/%{name}
|
2013-04-24 05:17:02 +00:00
|
|
|
mkdir -p %{buildroot}%{_javadir}
|
2012-07-29 22:47:35 +00:00
|
|
|
mkdir -p %{buildroot}/run/%{name}
|
2013-10-07 18:45:42 +00:00
|
|
|
mkdir -p %{buildroot}%{_httpd_moddir}
|
2014-09-02 16:45:39 +00:00
|
|
|
mkdir -p %{buildroot}/usr/lib/mono/gac/
|
2013-10-03 05:25:54 +00:00
|
|
|
mkdir docs
|
|
|
|
tar -C docs/ --strip-components=1 -xvzf uwsgi-docs.tar.gz
|
2014-08-28 18:32:01 +00:00
|
|
|
cp docs/Changelog-%{majornumber}.%{minornumber}.%{releasenumber}.rst CHANGELOG
|
2014-08-29 04:27:24 +00:00
|
|
|
echo "%{commit}, i.e. this:" >> README.Fedora
|
2013-10-06 06:23:09 +00:00
|
|
|
echo "https://github.com/unbit/%{docrepo}/tree/%{commit}" >> README.Fedora
|
2012-07-29 22:47:35 +00:00
|
|
|
%{__install} -p -m 0755 %{name} %{buildroot}%{_sbindir}
|
2012-02-23 05:50:45 +00:00
|
|
|
%{__install} -p -m 0644 *.h %{buildroot}%{_includedir}/%{name}
|
|
|
|
%{__install} -p -m 0755 *_plugin.so %{buildroot}%{_libdir}/%{name}
|
2013-04-24 05:17:02 +00:00
|
|
|
%{__install} -p -m 0644 plugins/jvm/%{name}.jar %{buildroot}%{_javadir}
|
2014-09-02 16:45:39 +00:00
|
|
|
gacutil -i plugins/mono/uwsgi.dll -f -package %{name} -root %{buildroot}/usr/lib
|
2012-07-29 22:47:35 +00:00
|
|
|
%{__install} -p -m 0644 %{name}.ini %{buildroot}%{_sysconfdir}/%{name}.ini
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2012-07-29 22:47:35 +00:00
|
|
|
%{__install} -p -m 0644 %{name}.service %{buildroot}%{_unitdir}/%{name}.service
|
2015-02-27 16:34:13 +00:00
|
|
|
%else
|
|
|
|
%{__install} -p -m 0755 %{name}.init %{buildroot}%{_initddir}/%{name}
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2013-10-07 18:45:42 +00:00
|
|
|
%{__install} -p -m 0755 apache2/.libs/mod_proxy_%{name}.so %{buildroot}%{_httpd_moddir}/mod_proxy_%{name}.so
|
2012-07-29 22:47:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%pre
|
|
|
|
getent group uwsgi >/dev/null || groupadd -r uwsgi
|
|
|
|
getent passwd uwsgi >/dev/null || \
|
|
|
|
useradd -r -g uwsgi -d /run/uwsgi -s /sbin/nologin \
|
|
|
|
-c "uWSGI daemon user" uwsgi
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%post
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2015-02-27 16:34:13 +00:00
|
|
|
echo "Executing systemd post-install tasks"
|
2012-09-15 17:45:24 +00:00
|
|
|
%if 0%{?systemd_post:1}
|
|
|
|
%systemd_post uwsgi.service
|
|
|
|
%else
|
|
|
|
if [ $1 -eq 1 ] ; then
|
|
|
|
# Initial installation
|
|
|
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
2014-09-16 16:06:03 +00:00
|
|
|
%else
|
2015-02-27 16:34:13 +00:00
|
|
|
echo "Executing System V post-install tasks"
|
|
|
|
/sbin/chkconfig --add %{name}
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2012-07-29 22:47:35 +00:00
|
|
|
|
|
|
|
%preun
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2015-02-27 16:34:13 +00:00
|
|
|
echo "Executing systemd pre-uninstall tasks"
|
2012-09-15 17:45:24 +00:00
|
|
|
%if 0%{?systemd_preun:1}
|
|
|
|
%systemd_preun uwsgi.service
|
|
|
|
%else
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
# Package removal, not upgrade
|
|
|
|
/bin/systemctl --no-reload disable uwsgi.service > /dev/null 2>&1 || :
|
|
|
|
/bin/systemctl stop uwsgi.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
2014-09-16 16:06:03 +00:00
|
|
|
%else
|
2015-02-27 16:34:13 +00:00
|
|
|
echo "Executing System V pre-uninstall tasks"
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
/sbin/service %{name} stop >/dev/null 2>&1
|
|
|
|
/sbin/chkconfig --del %{name}
|
|
|
|
fi
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2012-07-29 22:47:35 +00:00
|
|
|
|
|
|
|
%postun
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2015-02-27 16:34:13 +00:00
|
|
|
echo "Executing systemd post-uninstall tasks"
|
2012-09-15 17:45:24 +00:00
|
|
|
%if 0%{?systemd_postun:1}
|
|
|
|
%systemd_postun uwsgi.service
|
|
|
|
%else
|
|
|
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
|
|
if [ $1 -ge 1 ] ; then
|
|
|
|
# Package upgrade, not uninstall
|
|
|
|
/bin/systemctl try-restart uwsgi.service >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
2014-09-16 16:06:03 +00:00
|
|
|
%else
|
2015-02-27 16:34:13 +00:00
|
|
|
echo "Executing System V post-uninstall tasks"
|
|
|
|
if [ "$1" -ge "1" ] ; then
|
|
|
|
/sbin/service %{name} condrestart >/dev/null 2>&1 || :
|
|
|
|
fi
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%{_sbindir}/%{name}
|
2012-07-29 22:47:35 +00:00
|
|
|
%{_sysconfdir}/%{name}.ini
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with systemd}
|
2012-07-29 22:47:35 +00:00
|
|
|
%{_unitdir}/%{name}.service
|
2015-03-06 17:25:42 +00:00
|
|
|
%else
|
|
|
|
%{_initddir}/%{name}
|
|
|
|
%endif
|
2012-07-29 22:47:35 +00:00
|
|
|
%dir %{_sysconfdir}/%{name}.d
|
|
|
|
%dir /run/%{name}
|
2014-08-29 04:12:01 +00:00
|
|
|
%doc LICENSE README README.Fedora CHANGELOG
|
2012-02-23 05:50:45 +00:00
|
|
|
|
|
|
|
%files -n %{name}-devel
|
|
|
|
%{_includedir}/%{name}
|
|
|
|
|
2014-08-29 04:12:01 +00:00
|
|
|
%files -n %{name}-docs
|
|
|
|
%doc docs
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
%files -n %{name}-plugin-common
|
|
|
|
%dir %{_libdir}/%{name}
|
2014-08-29 04:02:14 +00:00
|
|
|
%{_libdir}/%{name}/http_plugin.so
|
2012-02-23 05:50:45 +00:00
|
|
|
%{_libdir}/%{name}/cgi_plugin.so
|
|
|
|
|
2014-09-06 02:39:35 +00:00
|
|
|
# Stats pushers
|
|
|
|
|
|
|
|
%files -n %{name}-stats-pusher-file
|
|
|
|
%{_libdir}/%{name}/stats_pusher_file_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-stats-pusher-mongodb
|
|
|
|
%{_libdir}/%{name}/stats_pusher_mongodb_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-stats-pusher-socket
|
|
|
|
%{_libdir}/%{name}/stats_pusher_socket_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-stats-pusher-statsd
|
|
|
|
%{_libdir}/%{name}/stats_pusher_statsd_plugin.so
|
|
|
|
|
2014-09-07 21:11:33 +00:00
|
|
|
%files -n %{name}-stats-pusher-zabbix
|
|
|
|
%{_libdir}/%{name}/zabbix_plugin.so
|
|
|
|
|
2014-08-29 23:28:56 +00:00
|
|
|
# Alarms
|
|
|
|
|
|
|
|
%files -n %{name}-alarm-curl
|
|
|
|
%{_libdir}/%{name}/alarm_curl_plugin.so
|
|
|
|
|
2014-08-29 23:31:53 +00:00
|
|
|
%files -n %{name}-alarm-xmpp
|
|
|
|
%{_libdir}/%{name}/alarm_xmpp_plugin.so
|
|
|
|
|
2014-09-07 20:21:02 +00:00
|
|
|
# Transformations
|
|
|
|
|
|
|
|
%files -n %{name}-transformation-chunked
|
|
|
|
%{_libdir}/%{name}/transformation_chunked_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-transformation-gzip
|
|
|
|
%{_libdir}/%{name}/transformation_gzip_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-transformation-offload
|
|
|
|
%{_libdir}/%{name}/transformation_offload_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-transformation-template
|
|
|
|
%{_libdir}/%{name}/transformation_template_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-transformation-tofile
|
|
|
|
%{_libdir}/%{name}/transformation_tofile_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-transformation-toupper
|
|
|
|
%{_libdir}/%{name}/transformation_toupper_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
# Loggers
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-09-02 17:16:25 +00:00
|
|
|
%files -n %{name}-log-encoder-msgpack
|
|
|
|
%{_libdir}/%{name}/msgpack_plugin.so
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%files -n %{name}-logger-crypto
|
2014-08-28 18:43:09 +00:00
|
|
|
%{_libdir}/%{name}/logcrypto_plugin.so
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%files -n %{name}-logger-file
|
2014-08-28 19:02:52 +00:00
|
|
|
%{_libdir}/%{name}/logfile_plugin.so
|
|
|
|
|
2014-08-30 03:27:55 +00:00
|
|
|
%files -n %{name}-logger-graylog2
|
|
|
|
%{_libdir}/%{name}/graylog2_plugin.so
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%files -n %{name}-logger-mongodb
|
2014-08-28 20:13:27 +00:00
|
|
|
%{_libdir}/%{name}/mongodblog_plugin.so
|
2014-08-28 19:05:27 +00:00
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%files -n %{name}-logger-pipe
|
|
|
|
%{_libdir}/%{name}/logpipe_plugin.so
|
|
|
|
|
2014-08-28 19:17:22 +00:00
|
|
|
%files -n %{name}-logger-redis
|
2014-08-28 20:13:27 +00:00
|
|
|
%{_libdir}/%{name}/redislog_plugin.so
|
2014-08-28 19:17:22 +00:00
|
|
|
|
2014-08-28 21:58:25 +00:00
|
|
|
%files -n %{name}-logger-rsyslog
|
|
|
|
%{_libdir}/%{name}/rsyslog_plugin.so
|
|
|
|
|
2014-08-28 19:08:42 +00:00
|
|
|
%files -n %{name}-logger-socket
|
2014-08-28 19:07:10 +00:00
|
|
|
%{_libdir}/%{name}/logsocket_plugin.so
|
|
|
|
|
2014-08-29 03:41:38 +00:00
|
|
|
%files -n %{name}-logger-syslog
|
|
|
|
%{_libdir}/%{name}/syslog_plugin.so
|
|
|
|
|
2014-09-16 16:06:03 +00:00
|
|
|
%if %{with systemd}
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-logger-systemd
|
|
|
|
%{_libdir}/%{name}/systemd_logger_plugin.so
|
2014-09-16 16:06:03 +00:00
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with zeromq}
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-logger-zeromq
|
|
|
|
%{_libdir}/%{name}/logzmq_plugin.so
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
# Plugins
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2014-08-29 22:37:46 +00:00
|
|
|
%files -n %{name}-plugin-airbrake
|
|
|
|
%{_libdir}/%{name}/airbrake_plugin.so
|
|
|
|
|
2014-08-29 04:02:14 +00:00
|
|
|
%files -n %{name}-plugin-cache
|
|
|
|
%{_libdir}/%{name}/cache_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-carbon
|
|
|
|
%{_libdir}/%{name}/carbon_plugin.so
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with perlcoro}
|
2014-08-29 23:44:26 +00:00
|
|
|
%files -n %{name}-plugin-coroae
|
|
|
|
%{_libdir}/%{name}/coroae_plugin.so
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-29 23:44:26 +00:00
|
|
|
|
2014-08-29 23:57:37 +00:00
|
|
|
%files -n %{name}-plugin-cplusplus
|
|
|
|
%{_libdir}/%{name}/cplusplus_plugin.so
|
|
|
|
|
2014-08-30 00:04:37 +00:00
|
|
|
%files -n %{name}-plugin-curl-cron
|
|
|
|
%{_libdir}/%{name}/curl_cron_plugin.so
|
|
|
|
|
2014-08-30 00:13:42 +00:00
|
|
|
%files -n %{name}-plugin-dumbloop
|
|
|
|
%{_libdir}/%{name}/dumbloop_plugin.so
|
|
|
|
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with ruby19}
|
2014-08-30 00:23:41 +00:00
|
|
|
%files -n %{name}-plugin-fiber
|
|
|
|
%{_libdir}/%{name}/fiber_plugin.so
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
2014-08-30 00:23:41 +00:00
|
|
|
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with go}
|
2014-08-30 00:31:45 +00:00
|
|
|
%files -n %{name}-plugin-gccgo
|
|
|
|
%{_libdir}/%{name}/gccgo_plugin.so
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
2014-08-30 00:31:45 +00:00
|
|
|
|
2014-08-30 00:55:48 +00:00
|
|
|
%files -n %{name}-plugin-geoip
|
|
|
|
%{_libdir}/%{name}/geoip_plugin.so
|
|
|
|
|
2014-08-30 03:05:45 +00:00
|
|
|
%files -n %{name}-plugin-gevent
|
|
|
|
%{_libdir}/%{name}/gevent_plugin.so
|
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with glusterfs}
|
2014-08-30 03:15:53 +00:00
|
|
|
%files -n %{name}-plugin-glusterfs
|
|
|
|
%{_libdir}/%{name}/glusterfs_plugin.so
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-30 03:15:53 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with greenlet}
|
2012-02-23 05:50:45 +00:00
|
|
|
%files -n %{name}-plugin-greenlet
|
|
|
|
%{_libdir}/%{name}/greenlet_plugin.so
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2012-02-23 05:50:45 +00:00
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with gridfs}
|
2014-08-30 03:36:48 +00:00
|
|
|
%files -n %{name}-plugin-gridfs
|
|
|
|
%{_libdir}/%{name}/gridfs_plugin.so
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-30 03:36:48 +00:00
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-jvm
|
|
|
|
%{_libdir}/%{name}/jvm_plugin.so
|
|
|
|
%{_javadir}/uwsgi.jar
|
|
|
|
|
2014-09-04 17:42:50 +00:00
|
|
|
%files -n %{name}-plugin-jwsgi
|
|
|
|
%{_libdir}/%{name}/jwsgi_plugin.so
|
|
|
|
|
2014-09-05 17:43:23 +00:00
|
|
|
%files -n %{name}-plugin-ldap
|
|
|
|
%{_libdir}/%{name}/ldap_plugin.so
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
%files -n %{name}-plugin-lua
|
|
|
|
%{_libdir}/%{name}/lua_plugin.so
|
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
%if %{with zeromq}
|
2014-08-30 04:12:39 +00:00
|
|
|
%files -n %{name}-plugin-mongrel2
|
|
|
|
%{_libdir}/%{name}/mongrel2_plugin.so
|
2015-03-11 04:28:59 +00:00
|
|
|
%endif
|
2014-08-30 04:12:39 +00:00
|
|
|
|
2014-09-02 16:45:39 +00:00
|
|
|
%files -n %{name}-plugin-mono
|
|
|
|
%dir /usr/lib/mono/%{name}/
|
|
|
|
%dir /usr/lib/mono/gac/%{name}/
|
|
|
|
%{_libdir}/%{name}/mono_plugin.so
|
|
|
|
/usr/lib/mono/%{name}/*.dll
|
|
|
|
/usr/lib/mono/gac/%{name}/*/*.dll
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-nagios
|
|
|
|
%{_libdir}/%{name}/nagios_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-plugin-pam
|
|
|
|
%{_libdir}/%{name}/pam_plugin.so
|
|
|
|
|
2012-06-27 07:03:47 +00:00
|
|
|
%files -n %{name}-plugin-php
|
|
|
|
%{_libdir}/%{name}/php_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-psgi
|
|
|
|
%{_libdir}/%{name}/psgi_plugin.so
|
|
|
|
|
2014-09-02 20:09:42 +00:00
|
|
|
%files -n %{name}-plugin-pty
|
|
|
|
%{_libdir}/%{name}/pty_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-python
|
|
|
|
%{_libdir}/%{name}/python_plugin.so
|
|
|
|
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with python3}
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-python3
|
|
|
|
%{_libdir}/%{name}/python3_plugin.so
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
2014-08-28 18:27:25 +00:00
|
|
|
|
|
|
|
%files -n %{name}-plugin-rack
|
|
|
|
%{_libdir}/%{name}/rack_plugin.so
|
2012-06-27 07:03:47 +00:00
|
|
|
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with ruby19}
|
2014-09-02 22:40:31 +00:00
|
|
|
%files -n %{name}-plugin-rbthreads
|
|
|
|
%{_libdir}/%{name}/rbthreads_plugin.so
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
2014-09-02 22:40:31 +00:00
|
|
|
|
2014-09-02 22:51:33 +00:00
|
|
|
%files -n %{name}-plugin-ring
|
|
|
|
%{_libdir}/%{name}/ring_plugin.so
|
|
|
|
|
2012-06-27 07:03:47 +00:00
|
|
|
%files -n %{name}-plugin-rrdtool
|
|
|
|
%{_libdir}/%{name}/rrdtool_plugin.so
|
|
|
|
|
2014-08-29 04:02:14 +00:00
|
|
|
%files -n %{name}-plugin-rpc
|
|
|
|
%{_libdir}/%{name}/rpc_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
%files -n %{name}-plugin-ruby
|
|
|
|
%{_libdir}/%{name}/ruby19_plugin.so
|
2013-04-24 05:17:02 +00:00
|
|
|
|
2014-09-05 16:52:24 +00:00
|
|
|
%files -n %{name}-plugin-spooler
|
|
|
|
%{_libdir}/%{name}/spooler_plugin.so
|
|
|
|
|
2014-09-05 17:08:44 +00:00
|
|
|
%files -n %{name}-plugin-sqlite3
|
|
|
|
%{_libdir}/%{name}/sqlite3_plugin.so
|
|
|
|
|
2014-09-05 21:01:51 +00:00
|
|
|
%files -n %{name}-plugin-ssi
|
|
|
|
%{_libdir}/%{name}/ssi_plugin.so
|
|
|
|
|
2014-09-06 02:53:12 +00:00
|
|
|
%files -n %{name}-plugin-tornado
|
|
|
|
%{_libdir}/%{name}/tornado_plugin.so
|
|
|
|
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with python3}
|
2014-09-06 02:53:12 +00:00
|
|
|
%files -n %{name}-plugin-tornado3
|
|
|
|
%{_libdir}/%{name}/tornado3_plugin.so
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
2014-09-06 02:53:12 +00:00
|
|
|
|
2014-09-07 20:45:36 +00:00
|
|
|
%files -n %{name}-plugin-ugreen
|
|
|
|
%{_libdir}/%{name}/ugreen_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-plugin-v8
|
|
|
|
%{_libdir}/%{name}/v8_plugin.so
|
|
|
|
|
2014-09-07 20:57:29 +00:00
|
|
|
%files -n %{name}-plugin-webdav
|
|
|
|
%{_libdir}/%{name}/webdav_plugin.so
|
|
|
|
|
2014-09-07 21:03:36 +00:00
|
|
|
%files -n %{name}-plugin-xattr
|
|
|
|
%{_libdir}/%{name}/xattr_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-plugin-xslt
|
|
|
|
%{_libdir}/%{name}/xslt_plugin.so
|
|
|
|
|
2013-04-24 05:17:02 +00:00
|
|
|
%files -n %{name}-plugin-zergpool
|
|
|
|
%{_libdir}/%{name}/zergpool_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
# Routers
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%files -n %{name}-router-access
|
|
|
|
%{_libdir}/%{name}/router_access_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-basicauth
|
|
|
|
%{_libdir}/%{name}/router_basicauth_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-cache
|
|
|
|
%{_libdir}/%{name}/router_cache_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-expires
|
|
|
|
%{_libdir}/%{name}/router_expires_plugin.so
|
|
|
|
|
2014-08-29 04:31:50 +00:00
|
|
|
%files -n %{name}-router-fast
|
2014-08-28 18:27:25 +00:00
|
|
|
%{_libdir}/%{name}/fastrouter_plugin.so
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%files -n %{name}-router-forkpty
|
|
|
|
%{_libdir}/%{name}/forkptyrouter_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-hash
|
|
|
|
%{_libdir}/%{name}/router_hash_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-http
|
|
|
|
%{_libdir}/%{name}/router_http_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-memcached
|
|
|
|
%{_libdir}/%{name}/router_memcached_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-metrics
|
|
|
|
%{_libdir}/%{name}/router_metrics_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-radius
|
|
|
|
%{_libdir}/%{name}/router_radius_plugin.so
|
|
|
|
|
2014-08-29 04:31:50 +00:00
|
|
|
%files -n %{name}-router-raw
|
|
|
|
%{_libdir}/%{name}/rawrouter_plugin.so
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%files -n %{name}-router-redirect
|
|
|
|
%{_libdir}/%{name}/router_redirect_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-redis
|
|
|
|
%{_libdir}/%{name}/router_redis_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-rewrite
|
|
|
|
%{_libdir}/%{name}/router_rewrite_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-spnego
|
|
|
|
%{_libdir}/%{name}/router_spnego_plugin.so
|
|
|
|
|
2014-08-29 20:06:11 +00:00
|
|
|
%files -n %{name}-router-ssl
|
2013-04-24 05:17:02 +00:00
|
|
|
%{_libdir}/%{name}/sslrouter_plugin.so
|
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%files -n %{name}-router-static
|
|
|
|
%{_libdir}/%{name}/router_static_plugin.so
|
|
|
|
|
2015-03-06 17:25:42 +00:00
|
|
|
%if %{with tuntap}
|
2014-09-07 20:32:41 +00:00
|
|
|
%files -n %{name}-router-tuntap
|
|
|
|
%{_libdir}/%{name}/tuntap_plugin.so
|
2015-03-06 17:25:42 +00:00
|
|
|
%endif
|
2014-09-07 20:32:41 +00:00
|
|
|
|
2014-08-29 22:24:29 +00:00
|
|
|
%files -n %{name}-router-uwsgi
|
|
|
|
%{_libdir}/%{name}/router_uwsgi_plugin.so
|
|
|
|
|
|
|
|
%files -n %{name}-router-xmldir
|
|
|
|
%{_libdir}/%{name}/router_xmldir_plugin.so
|
|
|
|
|
2014-08-28 18:27:25 +00:00
|
|
|
# The rest
|
2014-08-26 22:32:52 +00:00
|
|
|
|
2013-10-07 18:45:42 +00:00
|
|
|
%files -n mod_proxy_%{name}
|
|
|
|
%{_httpd_moddir}/mod_proxy_%{name}.so
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
|
|
|
|
%changelog
|
2015-04-14 06:39:23 +00:00
|
|
|
* Tue Apr 14 2015 Vít Ondruch <vondruch@redhat.com> - 2.0.9-4
|
|
|
|
- Fix glibc and MongoDB compatibility.
|
|
|
|
|
2015-03-13 16:51:17 +00:00
|
|
|
* Fri Mar 13 2015 Jorge A Gallegos <kad@blegh.net> - 2.0.9-3
|
|
|
|
- Adding missing dist tag, have no clue at what point this got dropped :(
|
|
|
|
|
2015-03-12 06:27:55 +00:00
|
|
|
* Thu Mar 12 2015 Jorge A Gallegos <kad@blegh.net> - 2.0.9-2
|
|
|
|
- Making it arch specific due to missing dependencies in PPC (as per
|
|
|
|
https://fedoraproject.org/wiki/Packaging:Guidelines#BuildRequires)
|
|
|
|
|
2015-03-11 04:28:59 +00:00
|
|
|
* Wed Mar 11 2015 Jorge A Gallegos <kad@blegh.net> - 2.0.9-1
|
|
|
|
- EPEL 6 and EPEL 7 compatible
|
|
|
|
- Plugins not compatible with epel 6 are systemd, go, python3 based, ruby19 based, gridfs and tuntap
|
|
|
|
- Plugins not compatible with epel 7 are python3 based, zeromq, greenlet, coroae, glusterfs and gridfs
|
|
|
|
|
2015-02-27 05:04:26 +00:00
|
|
|
* Fri Feb 27 2015 Jorge A Gallegos <kad@blegh.net> - 2.0.9-0
|
|
|
|
- New version
|
|
|
|
|
2015-01-16 10:34:42 +00:00
|
|
|
* Fri Jan 16 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.7-3
|
|
|
|
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_2.2
|
|
|
|
|
2014-09-18 14:46:18 +00:00
|
|
|
* Thu Sep 18 2014 Jorge A Gallegos <kad@blegh.net> - 2.0.7-2
|
|
|
|
- -plugin-http doesn't exist, is in -plugin-common (Jorge Gallegos)
|
|
|
|
|
2014-09-08 16:40:20 +00:00
|
|
|
* Mon Sep 08 2014 Jorge A Gallegos <kad@blegh.net> - 2.0.7-1
|
|
|
|
- I am just done now, and there's a new version out already. Go figure.
|
|
|
|
|
2014-09-07 21:54:47 +00:00
|
|
|
* Sun Sep 07 2014 Jorge A Gallegos <kad@blegh.net> - 2.0.6-1
|
|
|
|
- Adding -stats-pusher-zabbix (Jorge Gallegos)
|
|
|
|
- Adding -plugin-xslt (Jorge Gallegos)
|
|
|
|
- Adding -plugin-webdav (Jorge Gallegos)
|
|
|
|
- Adding -plugin-v8 (Jorge Gallegos)
|
|
|
|
- Adding -router-tuntap (Jorge Gallegos)
|
|
|
|
- Adding http transformation plugins (Jorge Gallegos)
|
|
|
|
- Adding -plugin-tornado and -plugin-tornado3 (Jorge Gallegos)
|
|
|
|
- Adding all -stats-pusher-* plugins (Jorge Gallegos)
|
|
|
|
- Adding -plugin-ssi (Jorge Gallegos)
|
|
|
|
- Adding -plugin-ldap (Jorge Gallegos)
|
|
|
|
- Adding -plugin-sqlite3 (Jorge Gallegos)
|
|
|
|
- Adding -plugin-spooler (Jorge Gallegos)
|
|
|
|
- Adding -plugin-jwsgi (Jorge Gallegos)
|
|
|
|
- Adding -plugin-ring (Jorge Gallegos)
|
|
|
|
- Adding -plugin-rbthreads (Jorge Gallegos)
|
|
|
|
- Adding -plugin-pty (Jorge Gallegos)
|
|
|
|
- Adding -log-encoder-msgpack (Jorge Gallegos)
|
|
|
|
- Adding -plugin-mono (Jorge Gallegos)
|
|
|
|
- Adding -plugin-mongrel2 (Jorge Gallegos)
|
|
|
|
- Adding -plugin-gridfs (Jorge Gallegos)
|
|
|
|
- Adding -logger-graylog2 (Jorge Gallegos)
|
|
|
|
- Adding -plugin-glusterfs (Jorge Gallegos)
|
|
|
|
- Adding -plugin-gevent (Jorge Gallegos)
|
|
|
|
- Adding -plugin-geoip (Jorge Gallegos)
|
|
|
|
- Adding -plugin-gccgo (Jorge Gallegos)
|
|
|
|
- Adding -plugin-fiber (Jorge Gallegos)
|
|
|
|
- Adding -plugin-dumbloop (Jorge Gallegos)
|
|
|
|
- Adding -plugin-curl-cron (Jorge Gallegos)
|
|
|
|
- Adding -plugin-cplusplus (Jorge Gallegos)
|
|
|
|
- Adding -plugin-coroae (Jorge Gallegos)
|
|
|
|
- Adding -alarm-xmpp (Jorge Gallegos)
|
|
|
|
- Adding -alarm-curl (Jorge Gallegos)
|
|
|
|
- Packaging -plugin-airbrake (Jorge Gallegos)
|
|
|
|
- Broke up -routers into its individual -router-* (Jorge Gallegos)
|
|
|
|
- Renaming -plugin-sslrouter to -router-ssl (Jorge Gallegos)
|
|
|
|
- Renaming -plugin-rawrouter to -router-raw (Jorge Gallegos)
|
|
|
|
- Splitting off the documentation to its subpackage (Jorge Gallegos)
|
|
|
|
- Splitting off some non-essential embedded plugins: (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-syslog (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-rsyslog (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-redis (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-mongodb (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-socket (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-file (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-pipe (Jorge Gallegos)
|
|
|
|
- Splitting off -logger-crypto instead (Jorge Gallegos)
|
|
|
|
- Break out the major/minor/release numbers properly (Jorge Gallegos)
|
|
|
|
- Reorganized spec, alphabetical and type (Jorge Gallegos)
|
|
|
|
- Splitting -router-fastrouter out of -common (Jorge Gallegos)
|
|
|
|
- Splitting out the README, I will be putting more stuff in here (Jorge Gallegos)
|
|
|
|
- Adding -logger-systemd plugin (Jorge Gallegos)
|
|
|
|
- Adding -logger-zeromq plugin (Jorge Gallegos)
|
|
|
|
- Adding new sources for newest stable (Jorge Gallegos)
|
|
|
|
|
2014-08-18 07:22:41 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.19-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-22 10:44:10 +00:00
|
|
|
* Thu Jun 19 2014 Remi Collet <rcollet@redhat.com> - 1.9.19-5
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Changes/Php56
|
|
|
|
|
2014-06-08 03:10:37 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.19-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-28 13:31:01 +00:00
|
|
|
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1.9.19-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-04-29 10:51:53 +00:00
|
|
|
* Tue Apr 29 2014 Vít Ondruch <vondruch@redhat.com> - 1.9.19-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
|
|
|
|
2013-11-12 17:42:49 +00:00
|
|
|
* Tue Nov 12 2013 Jorge A Gallegos <kad@blegh.net> - 1.9.19-1
|
|
|
|
- Updating to latest stable, uploading new sources (Jorge Gallegos)
|
|
|
|
- Forgot to delete the jvm arm patch file (Jorge Gallegos)
|
|
|
|
|
2013-10-20 06:11:25 +00:00
|
|
|
* Sun Oct 20 2013 Jorge A Gallegos <kad@blegh.net> - 1.9.18.2-1
|
|
|
|
- The changelog entry must match major + minor (Jorge Gallegos)
|
|
|
|
- Adding more ignore entries (Jorge Gallegos)
|
|
|
|
- The jvm arm patch has been merged upstream (Jorge Gallegos)
|
|
|
|
- Updated license to 'GPLv2 with exceptions' (Jorge Gallegos)
|
|
|
|
- Ugh messed up the doc sha (Jorge Gallegos)
|
|
|
|
- Adding new sources, bumping up spec to 1.9.18.2 (Jorge Gallegos)
|
|
|
|
|
2013-10-20 06:00:57 +00:00
|
|
|
* Sat Oct 19 2013 Jorge A Gallegos <kad@fedoraproject.org> - 1.9.18.2-0
|
2013-10-19 18:07:11 +00:00
|
|
|
- Breaking up full version in 3 parts (Jorge Gallegos)
|
|
|
|
- Update to latest stable 1.9.18.2 (Jorge Gallegos)
|
|
|
|
- Forgot to disable debug mode (Jorge Gallegos)
|
|
|
|
|
2013-10-09 04:30:11 +00:00
|
|
|
* Wed Oct 09 2013 Jorge A Gallegos <kad@blegh.net> - 1.9.17-2
|
|
|
|
- Uploaded new sources per spec rework (Jorge Gallegos)
|
|
|
|
- Adding more router plugins (Jorge Gallegos)
|
|
|
|
- Adding mod_proxy_uwsgi apache module (Jorge Gallegos)
|
|
|
|
- Complying with the guidelines for source urls (Jorge Gallegos)
|
|
|
|
- The settings in the service file were right before (Jorge Gallegos)
|
|
|
|
- Enabling stats log socket, and capabilities (Jorge Gallegos)
|
|
|
|
|
2013-10-04 16:20:46 +00:00
|
|
|
* Thu Oct 03 2013 Jorge A Gallegos <kad@blegh.net> - 1.9.17-1
|
|
|
|
- Copying the version changelog to top-level doc
|
|
|
|
- Compile with POSIX capabilities
|
2013-10-04 16:57:31 +00:00
|
|
|
- Embed the loggers into the binary itself, no need for an extra package
|
2013-10-04 22:43:08 +00:00
|
|
|
- Patching jvm plugin to support arm
|
2013-10-04 16:20:46 +00:00
|
|
|
|
2013-10-03 05:25:54 +00:00
|
|
|
* Wed Oct 02 2013 Jorge A Gallegos <kad@fedoraproject.org> - 1.9.17-0
|
|
|
|
- Rebuilt for version 1.9.17
|
|
|
|
- Pulling in new documentation from https://github.com/unbit/uwsgi-docs
|
|
|
|
|
2013-08-04 05:51:54 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.8-1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-10-03 05:25:54 +00:00
|
|
|
* Tue Apr 23 2013 Jorge A Gallegos <kad@blegh.net> - 1.9.8-0
|
2013-04-24 05:17:02 +00:00
|
|
|
- Rebuilt with latest stable version from upstream
|
|
|
|
|
|
|
|
* Thu Apr 11 2013 Jorge A Gallegos <kad@blegh.net> - 1.9.5-0
|
|
|
|
- Rebuilt with latest stable version from upstream
|
|
|
|
- Added Erlang, PAM and JVM plugins
|
|
|
|
- Added router-related plugins
|
|
|
|
- Added logger plugins
|
|
|
|
|
2013-04-02 12:45:42 +00:00
|
|
|
* Tue Apr 02 2013 Vít Ondruch <vondruch@redhat.com> - 1.2.6-10
|
|
|
|
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
|
|
|
|
2013-03-23 14:23:53 +00:00
|
|
|
* Sat Mar 23 2013 Remi Collet <rcollet@redhat.com> - 1.2.6-9
|
|
|
|
- rebuild for http://fedoraproject.org/wiki/Features/Php55
|
|
|
|
|
2013-02-15 02:36:17 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.6-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-02-14 18:13:53 +00:00
|
|
|
* Thu Feb 14 2013 Jorge A Gallegos <kad@blegh.net> - 1.2.6-7
|
|
|
|
- Tyrant mode shouldn't be used here, tyrant mode is root-only
|
|
|
|
|
2012-12-27 02:27:53 +00:00
|
|
|
* Thu Dec 27 2012 Jorge A Gallegos <kad@blegh.net> - 1.2.6-6
|
|
|
|
- Systemd now supports an exit status directive, fixing bugz 873382
|
|
|
|
|
2012-11-09 10:08:47 +00:00
|
|
|
* Fri Nov 9 2012 Remi Collet <rcollet@redhat.com> - 1.2.6-5
|
|
|
|
- rebuild against new php embedded library soname (5.4)
|
|
|
|
|
2012-10-18 12:58:13 +00:00
|
|
|
* Thu Oct 18 2012 Remi Collet <remi@fedoraproject.org> - 1.2.6-4
|
|
|
|
- rebuild for new PHP 5.4.8
|
|
|
|
|
2012-09-19 14:30:24 +00:00
|
|
|
* Wed Sep 19 2012 Jorge A Gallegos <kad@blegh.net> - 1.2.6-3
|
|
|
|
- Dropped requirement on PHP for the PHP plugin
|
|
|
|
|
2012-09-15 17:45:24 +00:00
|
|
|
* Sat Sep 15 2012 Jorge A Gallegos <kad@blegh.net> - 1.2.6-2
|
|
|
|
- Rebuilt with new systemd macros
|
|
|
|
|
2012-09-09 20:59:35 +00:00
|
|
|
* Sun Sep 09 2012 Jorge A Gallegos <kad@blegh.net> - 1.2.6-1
|
|
|
|
- Updated to latest stable from upstream
|
|
|
|
|
2012-08-04 06:16:12 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.2.4-4
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-07-22 02:18:38 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-08 21:01:00 +00:00
|
|
|
* Sun Jul 08 2012 Jorge A Gallegos <kad@blegh.net> - 1.2.4-1
|
|
|
|
- Updated to latest stable from upstream
|
|
|
|
|
2012-06-27 07:03:47 +00:00
|
|
|
* Tue Jun 26 2012 Jorge A Gallegos <kad@blegh.net> - 1.2.3-1
|
|
|
|
- Updated to latest stable upstream
|
|
|
|
- Building the pytho3 plugin is a bit trickier now, but still possible
|
|
|
|
- Added PHP plugin
|
|
|
|
- Added Carbon plugin
|
|
|
|
- Added RRDTool plugin
|
|
|
|
- Added rsyslog plugin
|
|
|
|
- Added syslog plugin
|
|
|
|
|
2012-02-23 05:50:45 +00:00
|
|
|
* Sun Feb 19 2012 Jorge A Gallegos <kad@blegh.net> - 1.0.4-1
|
|
|
|
- Addressing issues from package review feedback
|
|
|
|
- s/python-devel/python2-devel
|
|
|
|
- Make the libdir subdir owned by -plugins-common
|
|
|
|
- Upgraded to latest stable upstream version
|
|
|
|
|
|
|
|
* Mon Feb 06 2012 Jorge A Gallegos <kad@blegh.net> - 1.0.2.1-2
|
|
|
|
- Fixing 'unstripped-binary-or-object'
|
|
|
|
|
|
|
|
* Thu Jan 19 2012 Jorge A Gallegos <kad@blegh.net> - 1.0.2.1-1
|
|
|
|
- New upstream version
|
|
|
|
|
|
|
|
* Thu Dec 08 2011 Jorge A Gallegos <kad@blegh.net> - 0.9.9.3-1
|
|
|
|
- New upstream version
|
|
|
|
|
|
|
|
* Sun Oct 09 2011 Jorge A Gallegos <kad@blegh.net> - 0.9.9.2-2
|
|
|
|
- Don't download the wiki page at build time
|
|
|
|
|
|
|
|
* Sun Oct 09 2011 Jorge A Gallegos <kad@blegh.net> - 0.9.9.2-1
|
|
|
|
- Updated to latest stable version
|
|
|
|
- Correctly linking plugin_dir
|
|
|
|
- Patches 1 and 2 were addressed upstream
|
|
|
|
|
|
|
|
* Sun Aug 21 2011 Jorge A Gallegos <kad@blegh.net> - 0.9.8.3-3
|
|
|
|
- Got rid of BuildRoot
|
|
|
|
- Got rid of defattr()
|
|
|
|
|
|
|
|
* Sun Aug 14 2011 Jorge Gallegos <kad@blegh.net> - 0.9.8.3-2
|
|
|
|
- Added uwsgi_fix_rpath.patch
|
|
|
|
- Backported json_loads patch to work with jansson 1.x and 2.x
|
|
|
|
- Deleted clean steps since they are not needed in fedora
|
|
|
|
|
|
|
|
* Sun Jul 24 2011 Jorge Gallegos <kad@blegh.net> - 0.9.8.3-1
|
|
|
|
- rebuilt
|
|
|
|
- Upgraded to latest stable version 0.9.8.3
|
|
|
|
- Split packages
|
|
|
|
|
|
|
|
* Sun Jul 17 2011 Jorge Gallegos <kad@blegh.net> - 0.9.6.8-2
|
|
|
|
- Heavily modified based on Oskari's work
|
|
|
|
|
|
|
|
* Mon Feb 28 2011 Oskari Saarenmaa <os@taisia.fi> - 0.9.6.8-1
|
|
|
|
- Initial.
|