Accepting request 284781 from home:deadpoint

realmd is an on demand system DBus service, which allows callers to configure network authentication and domain membership in a standard way. realmd discovers information about the domain or realm automatically and does not require complicated configuration in order to join a domain or realm.

OBS-URL: https://build.opensuse.org/request/show/284781
OBS-URL: https://build.opensuse.org/package/show/network/realmd?expand=0&rev=1
This commit is contained in:
Stanislav Brabec 2015-02-16 17:25:59 +00:00 committed by Git OBS Bridge
commit 82724f8657
6 changed files with 134 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
realmd-0.15.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dbe872ea290d093e9c99d4db9b56e63083a2d24775f0be71d86109d51eb8f7bc
size 459401

4
realmd-rpmlintrc Normal file
View File

@ -0,0 +1,4 @@
#
setBadness("polkit-unauthorized-privilege", 100);
setBadness("suse-dbus-unauthorized-service", 100);

24
realmd.changes Normal file
View File

@ -0,0 +1,24 @@
-------------------------------------------------------------------
Sun Feb 8 19:30:36 UTC 2015 - darin@darins.net
- update to 0.15.2
-------------------------------------------------------------------
Fri Jan 16 19:50:35 UTC 2015 - darin@darins.net
- Add realmd-rpmlintrc
- Install %doc to correct location
- Clean up with spec-cleaner
- Set appropriate summary, group, and description
- use %find_lang for languages
-------------------------------------------------------------------
Thu May 16 14:00:11 UTC 2013 - jmcdonough@suse.com
- Add docs and cleanup some build warnings
-------------------------------------------------------------------
Wed May 15 16:36:24 UTC 2013 - jmcdonough@suse.com
- Check in 0.14.1

79
realmd.spec Normal file
View File

@ -0,0 +1,79 @@
#
# spec file for package realmd
#
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: realmd
Version: 0.15.2
Release: 0
Summary: Kerberos realm enrollment service
License: LGPL-2.1+
Group: Productivity/Networking/Security
Url: http://www.freedesktop.org/software/realmd
Source: http://www.freedesktop.org/software/realmd/releases/%{name}-%{version}.tar.gz
Source1: realmd-rpmlintrc
BuildRequires: intltool
BuildRequires: krb5-devel
BuildRequires: libpackagekit-glib2-devel
BuildRequires: openldap2-devel
BuildRequires: pkgconfig
BuildRequires: polkit-devel
BuildRequires: systemd-devel
BuildRequires: xmlto
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
realmd is an on demand system DBus service, which allows callers to configure
network authentication and domain membership in a standard way. realmd
discovers information about the domain or realm automatically and does not
require complicated configuration in order to join a domain or realm.
%lang_package
%prep
%setup -q
%build
%configure \
--with-distro=suse \
--with-systemd-unit-dir=%{_unitdir} \
--with-systemd-journal=no \
--docdir=%{_defaultdocdir}/%{name}
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
%find_lang realmd
%check
make check
%files -f realmd.lang
%defattr(-,root,root)
%{_sbindir}/realm
%{_unitdir}/realmd.service
%{_libdir}/realmd
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.realmd.conf
%{_datadir}/dbus-1/system-services/org.freedesktop.realmd.service
%{_datadir}/polkit-1/actions/org.freedesktop.realmd.policy
%{_mandir}/man5/realmd.conf.5.gz
%{_mandir}/man8/realm.8.gz
%{_localstatedir}/cache/%{name}
%doc %{_defaultdocdir}/%{name}
%changelog