Accepting request 2261 from home:dimstar:branches:GNOME:Factory

Copy from IBS Devel:LLDC:SLE-10-SP3/ptpd based on submit request 2261 from user tsariounov

OBS-URL: https://build.opensuse.org/request/show/2261
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ptpd?expand=0&rev=7
This commit is contained in:
OBS User autobuild 2009-10-20 10:56:08 +00:00 committed by Git OBS Bridge
parent 9380858c0b
commit 92ea52eb1a
3 changed files with 5835 additions and 19 deletions

5794
ptpd-1.0.0-git599b03b.patch Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Oct 19 12:59:53 MDT 2009 - alext@suse.de
- Update to ptpd git snapshot of 599b03b post 1.0.0. release, includes
patches by Patrick Ohly from the ptpd git repo as follows:
599b03b... added basic compilation instructions
ef2a5cc... Linux HW time stamping: define fallbacks no longer in net_tstamp.h,
need them in user space to compile
f837c84... netShutdown(): check whether it is called during init and avoid
SIOCSHWTSTAMP with invalid eventSock
70181a1... Linux: use generic net_tstamp API for more accurate time stamping,
with and without HW support
e003660... Merge branch 'ptpd-1.0.0-cluster-clock'
c6eb9c8... timertest: ping-pong test which measures clock skew between nodes
9275c8d... adjtimex call: added error checking
03085e7... use ajdtimex() tick adjustment to increase range of total clock
adjustment
576ffbf... fixed and extended printing of statistics
dc61251... include time in initialization of random seed for delay requests:
otherwise different runs use the same intervals
c380fa7... allow much higher frequency adjustments
7523072... added implementation of E1000 NIC time control
96beda4... optionally set PTP_ASSIST in msgPackDelayReq()
7ad1b32... *always* set PTP_ASSIST in Sync message
3444e67... configuration file for doxygen
864a492... separated system time and time which is controlled/used by PTP
- added Doxygen-style comments
- time.c accesses PTP time (currently always uses system time)
- timer.c controls delays in the host's system time (as before)
- moved nanoSleep() to be consistent
3762491... added the possibility to log into system log: use -f syslog
b8e2d39... fix ubild on freebsd
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 12 14:07:27 CEST 2009 - coolo@novell.com Fri Jun 12 14:07:27 CEST 2009 - coolo@novell.com

View File

@ -21,14 +21,15 @@
Name: ptpd Name: ptpd
Summary: Implements the Precision Time protocol as defined by IEEE 1588 standard Summary: Implements the Precision Time protocol as defined by IEEE 1588 standard
Version: 1.0.0 Version: 1.0.0
Release: 2 Release: 3
License: BSD 3-Clause License: BSD 3-clause (or similar)
Group: System/Daemons Group: System/Daemons
Source0: %{name}-%{version}.tar.bz2 Source0: %{name}-%{version}.tar.bz2
Source1: conf.ptpd.init Source1: conf.ptpd.init
Source2: conf.sysconfig.ptpd Source2: conf.sysconfig.ptpd
Patch0: glibc210.patch Patch0: ptpd-1.0.0-git599b03b.patch
Patch1: append_to_cflags.patch Patch1: glibc210.patch
Patch2: append_to_cflags.patch
Url: http://ptpd.sourceforge.net/ Url: http://ptpd.sourceforge.net/
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -60,7 +61,8 @@ Authors:
%prep %prep
%setup -q %setup -q
%patch0 -p1 %patch0 -p1
%patch1 %patch1 -p1
%patch2
%build %build
cd src cd src
@ -107,17 +109,3 @@ rm -rf ${RPM_BUILD_ROOT}
%{insserv_cleanup} %{insserv_cleanup}
%changelog %changelog
* Fri Jun 12 2009 coolo@novell.com
- fix build with glibc 2.10
* Wed Nov 12 2008 dbahi@suse.de
- modified to use 1.0.0 release instead of rc
* Wed Nov 07 2007 dbahi@suse.de
- cleaned up init script and install process
* Fri Nov 02 2007 dbahi@suse.de
- patch makefile to allow env CFLAGS
- adjusted sysconfig to use %%fill_only
* Fri Nov 02 2007 dbahi@suse.de
- added system v init script and sysconfig file suitable
for use with yast /etc/sysconfig editor
* Tue Oct 23 2007 dbahi@suse.de
- initial package creation