diff --git a/adjtimex.changes b/adjtimex.changes new file mode 100644 index 0000000..4fda266 --- /dev/null +++ b/adjtimex.changes @@ -0,0 +1,59 @@ +------------------------------------------------------------------- +Wed May 28 16:45:26 CEST 2014 - sbrabec@suse.cz + +- Simplify spec file. +- Remove UsrMerge compatibility symlink. + +------------------------------------------------------------------- +Wed May 14 01:00:43 CEST 2014 - ro@suse.de + +- add COPYING and COPYRIGHT as doc files + +------------------------------------------------------------------- +Sun Jan 20 22:06:54 UTC 2013 - jengelh@inai.de + +- Split "adjtimex" off util-linux + +------------------------------------------------------------------- +Tue Mar 6 21:18:56 UTC 2012 - rschweikert@suse.com + +- keep binaries in /usr tree (UsrMerge project) + +------------------------------------------------------------------- +Tue Feb 21 13:46:25 UTC 2012 - puzel@suse.com + +- update to adjtimex-1.29 + +------------------------------------------------------------------- +Fri Jul 9 06:23:27 UTC 2010 - puzel@novell.com + +- update to adjtimex-1.28 +- drop adjtimex-1.20-nosyscall.diff (fixed upstream) + +------------------------------------------------------------------- +Thu Apr 16 14:55:22 CEST 2009 - werner@suse.de + +- Move /usr/sbin/adjtimex to /sbin/adjtimex to be able to check the + kernel time variables even without /usr mounted + +------------------------------------------------------------------- +Mon Jan 10 14:45:12 CET 2005 - mmj@suse.de + +- Update adjtimex to 1.20 + +------------------------------------------------------------------- +Mon Apr 14 15:12:27 CEST 2003 - pthomas@suse.de + +- Get rid of the syscall for adjtimex in selective cases and + just call the glibc wrapper. Fixes build on s390. + +------------------------------------------------------------------- +Tue Nov 19 20:12:02 CET 2002 - mmj@suse.de + +- Fix multistring assignment in adjtimex + +------------------------------------------------------------------- +Tue Dec 18 16:50:34 CET 2001 - bjacke@suse.de + +- add adjtimex + diff --git a/adjtimex.spec b/adjtimex.spec new file mode 100644 index 0000000..5f8ae96 --- /dev/null +++ b/adjtimex.spec @@ -0,0 +1,57 @@ +# +# spec file for package adjtimex +# +# Copyright (c) 2014 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: adjtimex +Version: 1.29 +Release: 0 +Summary: Kernel time variables configuration utility +License: GPL-2.0+ +Group: System/Base +Source: http://ftp.debian.org/debian/pool/main/a/adjtimex/%{name}_%{version}.orig.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Provides: util-linux:/usr/sbin/adjtimex + +%description +This program gives you raw access to the kernel time variables. For +a machine connected to the Internet, or equipped with a precision +oscillator or radio clock, the best way to keep the system clock +correct is with ntpd. However, for a standalone or intermittently +connected machine, you may use adjtimex instead to at least correct +for systematic drift. adjtimex can optionally adjust the system clock +using the CMOS clock as a reference, and can log times for long-term +estimation of drift rates. + +%prep +%setup -q + +%build +%configure +make %{?_smp_mflags} + +%install +install -d %{buildroot}%{_sbindir} %{buildroot}%{_mandir}/man8 +install adjtimex %{buildroot}%{_sbindir}/ +install -m0644 adjtimex.8 %{buildroot}%{_mandir}/man8/ + +%files +%defattr(-,root,root) +%doc COPYING COPYRIGHT +%{_sbindir}/adjtimex +%{_mandir}/man8/adjtimex.8* + +%changelog