new upstream release

This commit is contained in:
Lennart Poettering 2010-11-19 00:04:45 +01:00
parent 619f0ccc1a
commit a425e1638c
5 changed files with 7 additions and 28 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ systemd-7.tar.bz2
/systemd-10.tar.bz2
/systemd-11.tar.bz2
/systemd-12.tar.bz2
/systemd-13.tar.bz2

View File

@ -1,13 +0,0 @@
diff -up systemd-11/src/ask-password-agent.vala.notify systemd-11/src/ask-password-agent.vala
--- systemd-11/src/ask-password-agent.vala.notify 2010-11-12 20:27:39.535719001 -0500
+++ systemd-11/src/ask-password-agent.vala 2010-11-12 20:27:52.233719001 -0500
@@ -181,8 +181,7 @@ public class MyStatusIcon : StatusIcon {
set_visible(true);
- Notification n = new Notification(title, message, icon, null);
- n.attach_to_status_icon(this);
+ Notification n = new Notification(title, message, icon);
n.set_timeout(5000);
n.show();

View File

@ -1 +1 @@
f63fdbd6b5ed93615def8aa39f1d5de3 systemd-12.tar.bz2
86e2909e025477ceda3fdd96b932f18a systemd-13.tar.bz2

View File

@ -1,8 +1,8 @@
Name: systemd
Url: http://www.freedesktop.org/wiki/Software/systemd
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Version: 12
Release: 3%{?dist}
Version: 13
Release: 1%{?dist}
License: GPLv2+
Group: System Environment/Base
Summary: A System and Service Manager
@ -229,6 +229,9 @@ fi
%{_mandir}/man1/systemadm.*
%changelog
* Fri Nov 19 2010 Lennart Poettering <lpoetter@redhat.com> - 13-1
- new upstream release
* Wed Nov 17 2010 Bill Nottingham <notting@redhat.com> 12-3
- Fix clash

View File

@ -1,12 +0,0 @@
diff -up systemd-11/src/ask-password-agent.vala.vala-build systemd-11/src/ask-password-agent.vala
--- systemd-11/src/ask-password-agent.vala.vala-build 2010-11-12 20:51:53.579719000 -0500
+++ systemd-11/src/ask-password-agent.vala 2010-11-12 20:52:06.288719002 -0500
@@ -225,7 +225,7 @@ public class MyStatusIcon : StatusIcon {
OutputStream stream = new UnixOutputStream(to_process, true);
- stream.write(password, password.length, null);
+ stream.write(password.data, null);
}
}