Hello community, here is the log from the commit of package rstart for openSUSE:Factory checked in at 2014-07-16 16:19:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rstart (Old) and /work/SRC/openSUSE:Factory/.rstart.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rstart" Changes: -------- --- /work/SRC/openSUSE:Factory/rstart/rstart.changes 2012-05-08 12:00:30.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rstart.new/rstart.changes 2014-07-16 16:22:16.000000000 +0200 @@ -1,0 +2,9 @@ +Tue Jul 15 13:33:28 UTC 2014 - [email protected] + +- update to release 1.0.5 +- supersedes rstart.diff +- U_Fix-.-configure-error-sysconfdir-command-not-found.patch + * upstream fix +- specfile cleanup + +------------------------------------------------------------------- Old: ---- rstart-1.0.4.tar.bz2 rstart.diff New: ---- U_Fix-.-configure-error-sysconfdir-command-not-found.patch rstart-1.0.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rstart.spec ++++++ --- /var/tmp/diff_new_pack.WnfKlD/_old 2014-07-16 16:22:17.000000000 +0200 +++ /var/tmp/diff_new_pack.WnfKlD/_new 2014-07-16 16:22:17.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package rstart # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# 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 @@ -15,17 +15,16 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + Name: rstart -Version: 1.0.4 +Version: 1.0.5 Release: 0 -License: MIT Summary: Sample implementation of a Remote Start client -Url: http://xorg.freedesktop.org/ +License: MIT Group: System/X11/Utilities +Url: http://xorg.freedesktop.org/ Source0: http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2 -# rstart.diff -- Change path to config file -Patch0: rstart.diff -# needed for patch0 +Patch0: U_Fix-.-configure-error-sysconfdir-command-not-found.patch BuildRequires: libtool BuildRequires: pkg-config BuildRequires: pkgconfig(xorg-macros) >= 1.8 @@ -44,31 +43,24 @@ %prep %setup -q -%patch0 -p0 -# needed for patch0 -autoreconf -fi +%patch0 -p1 %build -%configure +autoreconf -fi +%configure --sysconfdir=/etc make %{?_smp_mflags} %install %make_install -# for FHS/FSSTND compliance (bnc#470983) -mv %{buildroot}%{_sysconfdir}/X11/rstart/rstartd.real %{buildroot}%{_bindir} -sed -i 's+%{_sysconfdir}/X11/rstart/rstartd.real+%{_bindir}/rstartd.real+' %{buildroot}%{_bindir}/rstartd -# fdo#35867 (closed INVALID, but because of above fix, we want it) -ln -s rstartd.1%{?ext_man} %{buildroot}%{_mandir}/man1/rstartd.real.1%{?ext_man} %files %defattr(-,root,root) %doc ChangeLog COPYING README -%config %{_sysconfdir}/X11/rstart/ %{_bindir}/rstart %{_bindir}/rstartd -%{_bindir}/rstartd.real +%dir %{_libdir}/X11 +%{_libdir}/X11/rstart/ %{_mandir}/man1/rstart.1%{?ext_man} %{_mandir}/man1/rstartd.1%{?ext_man} -%{_mandir}/man1/rstartd.real.1%{?ext_man} %changelog ++++++ U_Fix-.-configure-error-sysconfdir-command-not-found.patch ++++++ >From 960c6f4bf18a62c700a06d2171d9c2a94cdcd16c Mon Sep 17 00:00:00 2001 From: Gaetan Nadon <[email protected]> Date: Wed, 21 Aug 2013 15:45:06 -0400 Subject: [PATCH] Fix ./configure error: "sysconfdir: command not found" There should be not brackets around sysconfdir. Note that the value is "${prefix}/etc" and can only be used later in Makefile.am. Signed-off-by: Gaetan Nadon <[email protected]> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 52ffc01..0a8bede 100644 --- a/configure.ac +++ b/configure.ac @@ -47,7 +47,7 @@ AC_PROG_LN_S AC_SUBST([rstartdir],[$libdir/X11/rstart]) # Define the root directory for config -AC_SUBST([configdir],[$(sysconfdir)/X11/rstart]) +AC_SUBST([configdir],[$sysconfdir/X11/rstart]) # Obtain compiler options from depedencies PKG_CHECK_MODULES(RSTART, xproto) -- 1.8.4.5 ++++++ rstart-1.0.4.tar.bz2 -> rstart-1.0.5.tar.bz2 ++++++ ++++ 14624 lines of diff (skipped) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
