diff --git a/0008-set-exit_idle_time-to-0-when-we-detect-a-session.patch b/0008-set-exit_idle_time-to-0-when-we-detect-a-session.patch
deleted file mode 100644
index 045ab5567d8d60819bdf537b899dde405beaac63..0000000000000000000000000000000000000000
--- a/0008-set-exit_idle_time-to-0-when-we-detect-a-session.patch
+++ /dev/null
@@ -1,181 +0,0 @@
-From de705a0eeaa27a8ac1abdc2625e639340323595a Mon Sep 17 00:00:00 2001
-From: Tanu Kaskinen
-Date: Tue, 6 Mar 2018 15:09:06 +0200
-Subject: [PATCH 08/77] set exit_idle_time to 0 when we detect a session
-
-As the comments explain, this fixes relogin problems on some systems
-that remove our sockets on logout without terminating the daemon.
----
- man/pulse-daemon.conf.5.xml.in | 15 ++++++++++++---
- man/pulseaudio.1.xml.in | 17 +++++++++++++++--
- src/modules/module-console-kit.c | 13 +++++++++++++
- src/modules/module-systemd-login.c | 14 ++++++++++++++
- src/modules/x11/module-x11-xsmp.c | 13 +++++++++++++
- src/pulsecore/core.c | 10 ++++++++++
- src/pulsecore/core.h | 2 ++
- 7 files changed, 79 insertions(+), 5 deletions(-)
-
-diff --git a/man/pulse-daemon.conf.5.xml.in b/man/pulse-daemon.conf.5.xml.in
-index f0550f3b..f49fa9b0 100644
---- a/man/pulse-daemon.conf.5.xml.in
-+++ b/man/pulse-daemon.conf.5.xml.in
-@@ -292,9 +292,18 @@ License along with PulseAudio; if not, see .
-
- exit-idle-time= Terminate the daemon after the
- last client quit and this time in seconds passed. Use a negative value to
-- disable this feature. Defaults to 20. The
-- --exit-idle-time command line option takes
-- precedence.
-+ disable this feature. Defaults to 20. The --exit-idle-time
-+ command line option takes precedence.
-+
-+ When PulseAudio runs in the per-user mode and detects a login
-+ session, then any positive value will be reset to 0 so that PulseAudio
-+ will terminate immediately on logout. A positive value therefore has
-+ effect only in environments where there's no support for login session
-+ tracking. A negative value can still be used to disable any automatic
-+ exit.
-+
-+ When PulseAudio runs in the system mode, automatic exit is always
-+ disabled, so this option does nothing.
-
-
-
-diff --git a/man/pulseaudio.1.xml.in b/man/pulseaudio.1.xml.in
-index f732b8ae..824eddb4 100644
---- a/man/pulseaudio.1.xml.in
-+++ b/man/pulseaudio.1.xml.in
-@@ -189,8 +189,21 @@ License along with PulseAudio; if not, see .
-
- --exit-idle-time =SECS
-
-- Terminate the daemon when idle and the specified
-- number of seconds passed.
-+
-+ Terminate the daemon after the last client quit and this time in
-+ seconds passed. Use a negative value to disable this feature. Defaults
-+ to 20.
-+
-+ When PulseAudio runs in the per-user mode and detects a login
-+ session, then any positive value will be reset to 0 so that PulseAudio
-+ will terminate immediately on logout. A positive value therefore has
-+ effect only in environments where there's no support for login session
-+ tracking. A negative value can still be used to disable any automatic
-+ exit.
-+
-+ When PulseAudio runs in the system mode, automatic exit is always
-+ disabled, so this option does nothing.
-+
-
-
-
-diff --git a/src/modules/module-console-kit.c b/src/modules/module-console-kit.c
-index c7938849..c8fe2ed2 100644
---- a/src/modules/module-console-kit.c
-+++ b/src/modules/module-console-kit.c
-@@ -118,6 +118,19 @@ static void add_session(struct userdata *u, const char *id) {
-
- pa_log_debug("Added new session %s", id);
-
-+ /* Positive exit_idle_time is only useful when we have no session tracking
-+ * capability, so we can set it to 0 now that we have detected a session.
-+ * The benefit of setting exit_idle_time to 0 is that pulseaudio will exit
-+ * immediately when the session ends. That in turn is useful, because some
-+ * systems (those that use pam_systemd but don't use systemd for managing
-+ * pulseaudio) clean $XDG_RUNTIME_DIR on logout, but fail to terminate all
-+ * services that depend on the files in $XDG_RUNTIME_DIR. The directory
-+ * contains our sockets, and if the sockets are removed without terminating
-+ * pulseaudio, a quick relogin will likely cause trouble, because a new
-+ * instance will be spawned while the old instance is still running. */
-+ if (u->core->exit_idle_time > 0)
-+ pa_core_set_exit_idle_time(u->core, 0);
-+
- fail:
-
- if (m)
-diff --git a/src/modules/module-systemd-login.c b/src/modules/module-systemd-login.c
-index 87981592..51401575 100644
---- a/src/modules/module-systemd-login.c
-+++ b/src/modules/module-systemd-login.c
-@@ -84,6 +84,20 @@ static int add_session(struct userdata *u, const char *id) {
- pa_hashmap_put(u->sessions, session->id, session);
-
- pa_log_debug("Added new session %s", id);
-+
-+ /* Positive exit_idle_time is only useful when we have no session tracking
-+ * capability, so we can set it to 0 now that we have detected a session.
-+ * The benefit of setting exit_idle_time to 0 is that pulseaudio will exit
-+ * immediately when the session ends. That in turn is useful, because some
-+ * systems (those that use pam_systemd but don't use systemd for managing
-+ * pulseaudio) clean $XDG_RUNTIME_DIR on logout, but fail to terminate all
-+ * services that depend on the files in $XDG_RUNTIME_DIR. The directory
-+ * contains our sockets, and if the sockets are removed without terminating
-+ * pulseaudio, a quick relogin will likely cause trouble, because a new
-+ * instance will be spawned while the old instance is still running. */
-+ if (u->core->exit_idle_time > 0)
-+ pa_core_set_exit_idle_time(u->core, 0);
-+
- return 0;
- }
-
-diff --git a/src/modules/x11/module-x11-xsmp.c b/src/modules/x11/module-x11-xsmp.c
-index 0238e516..6f801237 100644
---- a/src/modules/x11/module-x11-xsmp.c
-+++ b/src/modules/x11/module-x11-xsmp.c
-@@ -206,6 +206,19 @@ int pa__init(pa_module*m) {
- if (!u->client)
- goto fail;
-
-+ /* Positive exit_idle_time is only useful when we have no session tracking
-+ * capability, so we can set it to 0 now that we have detected a session.
-+ * The benefit of setting exit_idle_time to 0 is that pulseaudio will exit
-+ * immediately when the session ends. That in turn is useful, because some
-+ * systems (those that use pam_systemd but don't use systemd for managing
-+ * pulseaudio) clean $XDG_RUNTIME_DIR on logout, but fail to terminate all
-+ * services that depend on the files in $XDG_RUNTIME_DIR. The directory
-+ * contains our sockets, and if the sockets are removed without terminating
-+ * pulseaudio, a quick relogin will likely cause trouble, because a new
-+ * instance will be spawned while the old instance is still running. */
-+ if (u->core->exit_idle_time > 0)
-+ pa_core_set_exit_idle_time(u->core, 0);
-+
- pa_modargs_free(ma);
-
- return 0;
-diff --git a/src/pulsecore/core.c b/src/pulsecore/core.c
-index 79abbc04..da42a13e 100644
---- a/src/pulsecore/core.c
-+++ b/src/pulsecore/core.c
-@@ -426,6 +426,16 @@ void pa_core_update_default_source(pa_core *core) {
- pa_hook_fire(&core->hooks[PA_CORE_HOOK_DEFAULT_SOURCE_CHANGED], core->default_source);
- }
-
-+void pa_core_set_exit_idle_time(pa_core *core, int time) {
-+ pa_assert(core);
-+
-+ if (time == core->exit_idle_time)
-+ return;
-+
-+ pa_log_info("exit_idle_time: %i -> %i", core->exit_idle_time, time);
-+ core->exit_idle_time = time;
-+}
-+
- static void exit_callback(pa_mainloop_api *m, pa_time_event *e, const struct timeval *t, void *userdata) {
- pa_core *c = userdata;
- pa_assert(c->exit_event == e);
-diff --git a/src/pulsecore/core.h b/src/pulsecore/core.h
-index 213964ce..38622f61 100644
---- a/src/pulsecore/core.h
-+++ b/src/pulsecore/core.h
-@@ -258,6 +258,8 @@ void pa_core_set_configured_default_source(pa_core *core, const char *source);
- void pa_core_update_default_sink(pa_core *core);
- void pa_core_update_default_source(pa_core *core);
-
-+void pa_core_set_exit_idle_time(pa_core *core, int time);
-+
- /* Check whether no one is connected to this core */
- void pa_core_check_idle(pa_core *c);
-
---
-2.17.1
-
diff --git a/pulseaudio-12.2.tar.xz b/pulseaudio-12.2.tar.xz
deleted file mode 100644
index 63fd6e547dbd157e2da1078129dd3f78426a8eaf..0000000000000000000000000000000000000000
Binary files a/pulseaudio-12.2.tar.xz and /dev/null differ
diff --git a/pulseaudio-12.2.tar.xz.sha256 b/pulseaudio-12.2.tar.xz.sha256
deleted file mode 100644
index 6d94ecad6749e97777d70abf67827798ac9a8fe5..0000000000000000000000000000000000000000
--- a/pulseaudio-12.2.tar.xz.sha256
+++ /dev/null
@@ -1 +0,0 @@
-809668ffc296043779c984f53461c2b3987a45b7a25eb2f0a1d11d9f23ba4055 pulseaudio-12.2.tar.xz
diff --git a/pulseaudio-13.0.tar.xz b/pulseaudio-13.0.tar.xz
new file mode 100644
index 0000000000000000000000000000000000000000..ad9c21492044dfbac7d2b6af7ff002c893958b69
Binary files /dev/null and b/pulseaudio-13.0.tar.xz differ
diff --git a/pulseaudio-13.0.tar.xz.sha256 b/pulseaudio-13.0.tar.xz.sha256
new file mode 100644
index 0000000000000000000000000000000000000000..866010f433770663360fa7686f3ff40390f031cf
--- /dev/null
+++ b/pulseaudio-13.0.tar.xz.sha256
@@ -0,0 +1 @@
+961b23ca1acfd28f2bc87414c27bb40e12436efcf2158d29721b1e89f3f28057 pulseaudio-13.0.tar.xz
diff --git a/pulseaudio.spec b/pulseaudio.spec
index c863b37a2db1e2e10ca5d2f01f826306cae2730c..1bbb27f04a77ea7e4f7b9edfc6ab97427f3dc10c 100644
--- a/pulseaudio.spec
+++ b/pulseaudio.spec
@@ -5,8 +5,8 @@
Name: pulseaudio
Summary: Improved Linux Sound Server
-Version: 12.2
-Release: 3
+Version: 13.0
+Release: 1
License: LGPLv2+
URL: https://www.freedesktop.org/wiki/Software/PulseAudio
Source0: https://freedesktop.org/software/pulseaudio/releases/pulseaudio-%{version}.tar.xz
@@ -15,8 +15,6 @@ Source5: default.pa-for-gdm
Patch201: pulseaudio-autostart.patch
Patch202: pulseaudio-9.0-disable_flat_volumes.patch
-#From: Tanu Kaskinen
-Patch8: 0008-set-exit_idle_time-to-0-when-we-detect-a-session.patch
BuildRequires: automake libtool gcc-c++ bash-completion
BuildRequires: m4 libtool-ltdl-devel intltool pkgconfig doxygen xmltoman libsndfile-devel
@@ -161,6 +159,7 @@ exit 0
%{_bindir}/pax11publish
%{_bindir}/padsp
%{_bindir}/pasuspender
+%{_bindir}/pa-info
%ifarch %{multilib_archs}
%{_bindir}/padsp-32
%endif
@@ -200,6 +199,9 @@ exit 0
%{_datadir}/glib-2.0/schemas/org.freedesktop.pulseaudio.gschema.xml
%changelog
+* Fri Apr 24 2020 Chunsheng Luo - 13.0-1
+- update to version 13.0
+
* Fri Oct 18 2019 shenyangyang - 12.2-3
- Type:enhancement
- ID:NA