Compare commits

..

7 Commits

Author SHA1 Message Date
Jesse Keating 6b3e222d2f - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-25 23:28:22 +00:00
Miloslav Trmac a38230d01c - Fix problems pointed out in merge review:
- Drop Conflicts: SysVinit < very-old
- Remove very old version requirements from Requires and BuildRequires
- Make /etc/security/console.apps/* %%config(noreplace)
- Update BuildRoot
2009-01-14 11:54:06 +00:00
Miloslav Trmac d0938219d3 - Update to usermode-1.99 Resolves: #470834 2008-11-11 11:58:27 +00:00
Miloslav Trmac 7978757f83 - Hide usermount from GNOME and KDE menus Resolves: #440029
- Only hide userinfo and userpasswd in GNOME and KDE
2008-11-06 09:31:22 +00:00
Miloslav Trmac a801c45a23 - Update to usermode-1.98.1-1 2008-10-28 22:12:45 +00:00
Miloslav Trmac 042c0f3fb6 - Support dialogs with no text entries
- Preserve timestamps of some installed files Resolves: #456749
- Remove /usr/X11R6/bin from the default path. Resolves: #446849
- Left-justify messages
- Preserve file timestamps where possible.
2008-08-03 06:52:45 +00:00
Miloslav Trmac b2e118ac49 - Fix display of '_' in prompts Resolves: #444545 2008-05-01 12:57:05 +00:00
5 changed files with 54 additions and 15 deletions
+1
View File
@@ -0,0 +1 @@
usermode-1.99.tar.bz2
-1
View File
@@ -1 +0,0 @@
usermode-1.98.tar.bz2
+21
View File
@@ -0,0 +1,21 @@
# Makefile for source rpm: usermode
# $Id: Makefile,v 1.1 2004/09/09 13:52:40 cvsdist Exp $
NAME := usermode
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attempt a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)
+1 -1
View File
@@ -1 +1 @@
b1c03b4ecc3eb1287139318f1f71800e usermode-1.98.tar.bz2
c02557e127ebf469e481e61b2be5fc7d usermode-1.99.tar.bz2
+31 -13
View File
@@ -1,18 +1,17 @@
Summary: Tools for certain user account management tasks
Name: usermode
Version: 1.98
Release: 1%{?dist}
Version: 1.99
Release: 3
License: GPLv2+
Group: Applications/System
URL: https://fedorahosted.org/usermode/
Source: https://fedorahosted.org/releases/u/s/usermode/usermode-%{version}.tar.bz2
Requires: util-linux, pam >= 0.75-37, /etc/pam.d/system-auth, passwd
Conflicts: SysVinit < 2.74-14
Requires: pam, passwd, util-linux
BuildRequires: desktop-file-utils, e2fsprogs-devel, glib2-devel, gtk2-devel
BuildRequires: libglade2-devel, libuser-devel, pam-devel, util-linux
BuildRequires: perl-XML-Parser, libSM-devel, startup-notification-devel, gettext
BuildRequires: libselinux-devel >= 1.17.13-2
BuildRoot: %{_tmppath}/%{name}-root
BuildRequires: libselinux-devel
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%package gtk
Summary: Graphical tools for certain user account management tasks
@@ -60,12 +59,9 @@ for wrappedapp in halt reboot poweroff ; do
done
echo 'USER=root' > $RPM_BUILD_ROOT/etc/security/console.apps/config-util
for i in redhat-userinfo.desktop redhat-userpasswd.desktop; do
echo 'NoDisplay=true' >>$RPM_BUILD_ROOT%{_datadir}/applications/$i
done
for i in redhat-userinfo.desktop redhat-userpasswd.desktop \
redhat-usermount.desktop; do
echo 'NotShowIn=GNOME;KDE;' >>$RPM_BUILD_ROOT%{_datadir}/applications/$i
desktop-file-install --vendor redhat --delete-original \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
$RPM_BUILD_ROOT%{_datadir}/applications/$i
@@ -92,9 +88,9 @@ rm -rf $RPM_BUILD_ROOT
%config(noreplace) /etc/pam.d/reboot
%config(noreplace) /etc/pam.d/poweroff
%config(noreplace) /etc/security/console.apps/config-util
%config /etc/security/console.apps/halt
%config /etc/security/console.apps/reboot
%config /etc/security/console.apps/poweroff
%config(noreplace) /etc/security/console.apps/halt
%config(noreplace) /etc/security/console.apps/reboot
%config(noreplace) /etc/security/console.apps/poweroff
%files gtk
%defattr(-,root,root)
@@ -112,6 +108,28 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/applications/*
%changelog
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.99-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Jan 14 2009 Miloslav Trmač <mitr@redhat.com> - 1.99-2
- Fix problems pointed out in merge review:
- Drop Conflicts: SysVinit < very-old
- Remove very old version requirements from Requires and BuildRequires
- Make /etc/security/console.apps/* %%config(noreplace)
- Update BuildRoot
* Tue Nov 11 2008 Miloslav Trmač <mitr@redhat.com> - 1.99-1
- Update to usermode-1.99
Resolves: #470834
* Thu Nov 6 2008 Miloslav Trmač <mitr@redhat.com> - 1.98.1-2
- Hide usermount from GNOME and KDE menus
Resolves: #440029
- Only hide userinfo and userpasswd in GNOME and KDE
* Tue Oct 28 2008 Miloslav Trmač <mitr@redhat.com> - 1.98.1-1
- Update to usermode-1.98.1-1
* Sun Aug 3 2008 Miloslav Trmač <mitr@redhat.com> - 1.98-1
- Support dialogs with no text entries
- Preserve timestamps of some installed files