From 2563dd9d29ddcaf9c85fef16be3fd3fc6067a117 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 12 Sep 2018 10:51:41 +0200 Subject: [PATCH] examples: drop chrony.spec The example spec file was too limited to be recommended for use in any rpm-based distribution, e.g. it didn't configure chronyd to drop the root privileges. Users that want to build a package from the latest source code should start with the official package of their distribution. --- examples/chrony.spec | 46 -------------------------------------------- make_release | 2 -- 2 files changed, 48 deletions(-) delete mode 100644 examples/chrony.spec diff --git a/examples/chrony.spec b/examples/chrony.spec deleted file mode 100644 index 6e72929..0000000 --- a/examples/chrony.spec +++ /dev/null @@ -1,46 +0,0 @@ -%global chrony_version @@VERSION@@ -%if 0%(echo %{chrony_version} | grep -q pre && echo 1) -%global prerelease %(echo %{chrony_version} | sed 's/.*-//') -%endif -Summary: An NTP client/server -Name: chrony -Version: %(echo %{chrony_version} | sed 's/-.*//') -Release: %{!?prerelease:1}%{?prerelease:0.1.%{prerelease}} -Source: chrony-%{version}%{?prerelease:-%{prerelease}}.tar.gz -License: GPLv2 -Group: Applications/Utilities -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(id -u -n) - -%description -chrony is a client and server for the Network Time Protocol (NTP). -This program keeps your computer's clock accurate. It was specially -designed to support systems with intermittent Internet connections, -but it also works well in permanently connected environments. It can -also use hardware reference clocks, the system real-time clock, or -manual input as time references. - -%prep -%setup -q -n %{name}-%{version}%{?prerelease:-%{prerelease}} - -%build -./configure \ - --prefix=%{_prefix} \ - --bindir=%{_bindir} \ - --sbindir=%{_sbindir} \ - --mandir=%{_mandir} -make - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT - -%files -%{_sbindir}/chronyd -%{_bindir}/chronyc -%{_mandir}/man1/chronyc.1.gz -%{_mandir}/man5/chrony.conf.5.gz -%{_mandir}/man8/chronyd.8.gz -%doc README FAQ NEWS COPYING -%doc examples/chrony.conf.example* -%doc examples/chrony.keys.example - diff --git a/make_release b/make_release index 2f6b445..8c41c6c 100755 --- a/make_release +++ b/make_release @@ -36,8 +36,6 @@ cd RELEASES/$subdir || exit 1 echo $version > version.txt -sed -i -e "s%@@VERSION@@%${version}%" examples/chrony.spec - ./configure && make -C doc man txt || exit 1 iconv -f utf-8 -t ascii//TRANSLIT < doc/installation.txt > INSTALL