Hello community,

here is the log from the commit of package dvdisaster for openSUSE:Factory 
checked in at 2017-12-19 10:50:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dvdisaster (Old)
 and      /work/SRC/openSUSE:Factory/.dvdisaster.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dvdisaster"

Tue Dec 19 10:50:16 2017 rev:1 rq:546341 version:0.79.5

Changes:
--------
New Changes file:

--- /dev/null   2017-12-07 07:54:48.054861471 +0100
+++ /work/SRC/openSUSE:Factory/.dvdisaster.new/dvdisaster.changes       
2017-12-19 10:50:23.628793301 +0100
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Sun Oct 23 19:03:46 UTC 2016 - davejpla...@gmail.com
+
+- Created initial package, version 0.79.5
+

New:
----
  dvdisaster-0.79.5.tar.bz2
  dvdisaster-findmake.patch
  dvdisaster.changes
  dvdisaster.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ dvdisaster.spec ++++++
#
# spec file for package dvdisaster
#
# Copyright (c) 2017 SUSE LINUX 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/
#


# See also http://en.opensuse.org/openSUSE:Specfile_guidelines

Name:           dvdisaster
Version:        0.79.5
Release:        0
Summary:        Additional error protection for CD/DVD media

License:        GPL-3.0
Group:          Productivity/Multimedia/Other
Url:            http://dvdisaster.net/en/index.html
Source0:        %{name}-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM davejpla...@gmail.com Fix scripts/bash-based-configure to 
work in Tumbleweed.
Patch0:         dvdisaster-findmake.patch
BuildRequires:  pkgconfig(gtk+-2.0)
BuildRequires:  gettext
BuildRequires:  desktop-file-utils
BuildRequires:  pkgconfig(libpng16)
Requires:       dvdisaster-docs = %{version}
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
%{name} provides a margin of safety against data loss on CD and DVD media
caused by scratches or aging. It creates error correction data,
which is used to recover unreadable sectors if the disc becomes damaged
at a later time.

%description -l cs
%{name} poskytuje dodatečnou ochranu proti ztrátě dat na médiích CD a DVD
způsobených poškrábáním nebo stárnutím. Vytváří data oprav chyb, která
jsou použita pro obnovu nečitelných sektorů, pokud se disk později
poškodí.

%description -l de
%{name} erzeugt einen Sicherheitspuffer gegen Datenverluste, die auf
CD- und DVD-Datenträgern durch Alterung oder Kratzer entstehen. Es erzeugt
Fehlerkorrekturdaten, um bei nachfolgenden Datenträger-Problemen unlesbare
Sektoren zu rekonstruieren.

%description -l it
%{name} offre un margine di sicurezza contro la perdita di dati dei supporti
CD e DVD causata dall'invecchiamento e dai graffi. Crea dei dati di correzione
degli errori che saranno poi utilizzati per recuperare i settori illeggibili
se il supporto dovesse danneggiarsi col tempo.

%package docs
Summary:        PDF Documentation for dvdisaster
Group:          Documentation/Other
Summary:        Additional error protection for CD/DVD media
BuildArch:      noarch

%description docs
Documentation package for using dvdisaster in PDF format.

%prep
%setup -q
%patch0
gmake -v | grep "GNU Make" && echo $# || echo $#

%build
%configure --with-nls=yes \
           --docdir=%{_docdir} \
           --docsubdir=%{name} \
           --localedir=%{_datadir}/locale \
           --buildroot=%{buildroot}
make V=1
# Parallel make breaks translations sometimes.
#%%{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
rm -f %{buildroot}%{_bindir}/dvdisaster-uninstall.sh
%find_lang dvdisaster

%files -f dvdisaster.lang
%defattr(-,root,root,-)
%{_bindir}/dvdisaster
%doc README CHANGELOG COPYING CREDITS.de CREDITS.en README.MODIFYING TODO
%{_mandir}/de/man1/dvdisaster.1.gz
%{_mandir}/man1/dvdisaster.1.gz
%exclude %{_docdir}/%{name}/manual.pdf

%files docs
%defattr(-,root,root,-)
%doc %{_docdir}/%{name}/manual.pdf

%changelog

++++++ dvdisaster-findmake.patch ++++++
Index: scripts/bash-based-configure
===================================================================
--- scripts/bash-based-configure.orig   2015-12-07 22:06:50.000000000 +0200
+++ scripts/bash-based-configure        2017-01-06 08:33:06.361854198 +0200
@@ -1,3 +1,4 @@
+#!/bin/bash
 #  Bash based configure - library of test functions
 #  Copyright (C) 2004-2015 Carsten Gn�rlich
 #
@@ -313,13 +314,13 @@ function REQUIRE_GMAKE()
 
    echo -n "Checking for gmake: "
 
-   if (gmake -v | grep "GNU Make") > /dev/null 2>&1 ;
+   if gmake -v > /dev/null ;
      then echo "yes"
          echo "MAKE = `which gmake`" >>Makefile.config
          return 0
    fi;
 
-   if (make -v | grep "GNU Make") > /dev/null 2>&1 ;
+   if make -v > /dev/null ;
      then echo "yes"
          echo "MAKE = `which make`" >>Makefile.config
          return 0

Reply via email to