commit lifelines for openSUSE:Factory

2020-06-12 Thread root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2020-06-12 21:43:58

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new.3606 (New)


Package is "lifelines"

Fri Jun 12 21:43:58 2020 rev:32 rq:814102 version:3.1.1+3ad4571

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2020-04-08 
19:55:44.317081971 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new.3606/lifelines.changes
2020-06-12 21:45:17.448473594 +0200
@@ -1,0 +2,5 @@
+Tue Jun  9 12:14:29 UTC 2020 - Bernhard Wiedemann 
+
+- Add reproducible.patch to override build date (boo#1047218)
+
+---

New:

  reproducible.patch



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.BMJ3LR/_old  2020-06-12 21:45:19.776479058 +0200
+++ /var/tmp/diff_new_pack.BMJ3LR/_new  2020-06-12 21:45:19.780479067 +0200
@@ -31,6 +31,8 @@
 Patch0: lifelines-%{commit}.dif
 # PATCH-FIX-SUSE avoid memory leak as well as no initialized array
 Patch1: lifelines-%{commit}-array.dif
+# PATCH-FIX-UPSTREAM https://github.com/lifelines/lifelines/pull/389
+Patch2: reproducible.patch
 BuildRequires:  automake
 BuildRequires:  bison
 BuildRequires:  dblatex
@@ -73,6 +75,7 @@
 tar -x  --strip-components=1 -z -f %{SOURCE0} 
 %patch0 -p0 -b .p0
 %patch1 -p0 -b .p1
+%patch2 -p1 -b .p2
 
 %build
 if test $(getconf LONG_BIT) -gt 32

++ reproducible.patch ++
https://github.com/lifelines/lifelines/pull/389

>From 68666c90ba645c08ed3ee7a565ee3951ac43539c Mon Sep 17 00:00:00 2001
From: "Bernhard M. Wiedemann" 
Date: Fri, 6 Dec 2019 18:48:40 +0100
Subject: [PATCH] Allow to override build date with SOURCE_DATE_EPOCH

in order to make builds reproducible.
See https://reproducible-builds.org/ for why this is good
and https://reproducible-builds.org/specs/source-date-epoch/
for the definition of this variable.

Also switch to UTC to be independent of timezone.
Also use ISO 8601 date format to be easier to parse.
This also avoids use of %b that can vary from locales.

This PR was done while working on reproducible builds for openSUSE.
---
 reports/gen_index | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/reports/gen_index b/reports/gen_index
index 0343f87b..2ae4fe84 100644
--- a/reports/gen_index
+++ b/reports/gen_index
@@ -5,6 +5,7 @@
 # January 2003 
 
 use strict;
+use POSIX qw(strftime);
 
 my $debug = 0; #non-zero to enable debug output
 my $viewoutput = 0;#non-zero to enable printing output information
@@ -93,7 +94,7 @@ have text identifying the person who generated the report.
 EOF
 }
 sub print_trailer {
-my $today = `date "+%d %b %Y"`;
+my $today = strftime("%Y-%m-%d", gmtime($ENV{SOURCE_DATE_EPOCH} || time));
 print OUT  <
 



commit lifelines for openSUSE:Factory

2020-04-08 Thread root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2020-04-08 19:55:41

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new.3248 (New)


Package is "lifelines"

Wed Apr  8 19:55:41 2020 rev:31 rq:791951 version:3.1.1+3ad4571

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2019-08-27 
10:24:56.527925357 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new.3248/lifelines.changes
2020-04-08 19:55:44.317081971 +0200
@@ -1,0 +2,5 @@
+Tue Apr  7 10:01:06 UTC 2020 - Dr. Werner Fink 
+
+- Avoid -m64 on aarch64 (and also -m32 on arm) as gcc does not know about
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.TNFaME/_old  2020-04-08 19:55:45.193082611 +0200
+++ /var/tmp/diff_new_pack.TNFaME/_new  2020-04-08 19:55:45.197082614 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 Summary:The Lifelines Genealogy Program
 License:MIT
 Group:  Productivity/Scientific/Other
-Url:https://github.com/lifelines/lifelines
+URL:https://github.com/lifelines/lifelines
 Source0:
https://github.com/%{name}/%{name}/archive/%{commit}.tar.gz#/%{name}-%{commit}.tar.gz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-SUSE mainly to get paths correct if installed as system package
@@ -87,6 +87,10 @@
 CC=gcc
 export CC CFLAGS CPPFLAGS LIBS
 autoreconf -fi
+%ifarch aarch64 %arm
+# gcc on aarch64 does not know about -m64 ...
+sed -ri 's/[[:space:]]*-m(64|32)//' configure
+%endif
 %configure  --disable-rpath\
--with-gnu-ld   \
--with-docs \




commit lifelines for openSUSE:Factory

2019-08-27 Thread root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2019-08-27 10:24:52

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new.7948 (New)


Package is "lifelines"

Tue Aug 27 10:24:52 2019 rev:30 rq:726098 version:3.1.1+3ad4571

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2017-02-14 
00:41:56.544944909 +0100
+++ /work/SRC/openSUSE:Factory/.lifelines.new.7948/lifelines.changes
2019-08-27 10:24:56.527925357 +0200
@@ -1,0 +2,17 @@
+Fri Aug 23 12:55:47 UTC 2019 - Dr. Werner Fink 
+
+- Switch from LDFLAGS to LIBS to let configure find has_key() in libtinfo 
+
+---
+Fri Aug 23 11:23:21 UTC 2019 - Dr. Werner Fink 
+
+- Update to lifelines git version 3ad4571, which is the follower
+  of lifelines version 3.1.1 (bug boo#1146704)
+  * Removep patches
+lifelines-3.0.59-funcptr.dif now upstream solved
+lifelines-decl.patch now superfluous
+  * Port patches
+lifelines-3.0.60-array.dif which becomes lifelines-3ad4571-array.dif
+lifelines-3.0.62.dif which becomes lifelines-3ad4571.dif
+
+---

Old:

  lifelines-3.0.59-funcptr.dif
  lifelines-3.0.60-array.dif
  lifelines-3.0.62.dif
  lifelines-3.0.62.tar.bz2
  lifelines-decl.patch
  sh.rellink

New:

  lifelines-3ad4571-array.dif
  lifelines-3ad4571.dif
  lifelines-3ad4571.tar.gz
  lifelines-rpmlintrc



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.e8wXqX/_old  2019-08-27 10:24:57.055925321 +0200
+++ /var/tmp/diff_new_pack.e8wXqX/_new  2019-08-27 10:24:57.059925321 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,13 +12,28 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   lifelines
+%global commit  3ad4571
+%global longcommit  3ad457132c47fde69545d6647d5804c573764631
+Version:3.1.1+%{commit}
+Release:0
+Summary:The Lifelines Genealogy Program
+License:MIT
+Group:  Productivity/Scientific/Other
+Url:https://github.com/lifelines/lifelines
+Source0:
https://github.com/%{name}/%{name}/archive/%{commit}.tar.gz#/%{name}-%{commit}.tar.gz
+Source1:%{name}-rpmlintrc
+# PATCH-FIX-SUSE mainly to get paths correct if installed as system package
+Patch0: lifelines-%{commit}.dif
+# PATCH-FIX-SUSE avoid memory leak as well as no initialized array
+Patch1: lifelines-%{commit}-array.dif
 BuildRequires:  automake
 BuildRequires:  bison
+BuildRequires:  dblatex
 BuildRequires:  docbook-utils
 BuildRequires:  dos2unix
 BuildRequires:  libjpeg-devel
@@ -30,36 +45,23 @@
 BuildRequires:  perl-XML-SAX
 BuildRequires:  perl-libwww-perl
 BuildRequires:  texlive
-BuildRequires:  texlive-jadetex
-BuildRequires:  texlive-latex
-BuildRequires:  texlive-xmltex
-%if 0%{?suse_version} > 1220
+BuildRequires:  texlive-babel
+BuildRequires:  texlive-babel-swedish
+BuildRequires:  texlive-cmap
 BuildRequires:  texlive-courier
 BuildRequires:  texlive-dvips
 BuildRequires:  texlive-ec
+BuildRequires:  texlive-fancybox
 BuildRequires:  texlive-helvetic
+BuildRequires:  texlive-jadetex
+BuildRequires:  texlive-jknapltx
+BuildRequires:  texlive-latex
 BuildRequires:  texlive-times
-%endif
-Version:3.0.62
-Release:0
-Summary:The Lifelines Genealogy Program
-License:MIT
-Group:  Productivity/Scientific/Other
-Url:http://lifelines.sourceforge.net/
-Source: 
http://download.sourceforge.net/lifelines/lifelines-3.0.62.tar.bz2
-Source1:sh.rellink
-# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
-Patch0: lifelines-3.0.62.dif
-# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
-Patch1: lifelines-3.0.59-funcptr.dif
-# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
-Patch2: lifelines-3.0.60-array.dif
-# PATCH-FIX-UPSTREAM Fix conflicting declaration
-Patch3: lifelines-decl.patch
+BuildRequires:  texlive-xmltex
 BuildRequires:  tidy
+BuildRequires:  

commit lifelines for openSUSE:Factory

2017-02-13 Thread root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2017-02-14 00:41:55

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is "lifelines"

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2015-10-20 
00:05:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2017-02-14 
00:41:56.544944909 +0100
@@ -1,0 +2,6 @@
+Mon Feb  6 18:16:48 UTC 2017 - dims...@opensuse.org
+
+- Favor newer ncurses versions over older ones (e.g.
+  ncurses6-config > ncurses5-config).
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.VLcrnD/_old  2017-02-14 00:41:57.652788508 +0100
+++ /var/tmp/diff_new_pack.VLcrnD/_new  2017-02-14 00:41:57.656787944 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -59,7 +59,7 @@
 BuildRequires:  tidy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
-%global ncursesw_config %(set -- %{_bindir}/ncursesw*-config; echo 
${1})
+%global ncursesw_config %(set -- %{_bindir}/ncursesw*-config; echo 
${@:$#})
 
 %description
 Lifelines is terminal-based program that allows the tracking of




commit lifelines for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2015-10-19 22:51:05

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is "lifelines"

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2014-02-26 
06:58:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2015-10-20 
00:05:00.0 +0200
@@ -1,0 +2,5 @@
+Tue Oct  6 13:32:57 UTC 2015 - wer...@suse.de
+
+- Make it build with latest ncurses 
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.P6nab7/_old  2015-10-20 00:05:01.0 +0200
+++ /var/tmp/diff_new_pack.P6nab7/_new  2015-10-20 00:05:01.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -76,8 +76,9 @@
 %build
 CFLAGS="%{optflags} -fno-strict-aliasing -pipe $(%{ncursesw_config} --cflags)"
 CPPFLAGS="-D_GNU_SOURCE -D_XOPEN_CURSES"
+LDFLAGS="$(%{ncursesw_config} --libs)"
 CC=gcc
-export CC CFLAGS CPPFLAGS
+export CC CFLAGS CPPFLAGS LDFLAGS
 autoreconf -fi
 ./configure --prefix=%{_prefix} -exec-prefix=%{_prefix}\
--libexecdir=%{_libdir} \




commit lifelines for openSUSE:Factory

2014-02-25 Thread h_root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2014-02-26 06:58:36

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is lifelines

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2013-05-16 
16:13:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2014-02-26 
06:58:36.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 24 10:29:29 UTC 2014 - sch...@suse.de
+
+- lifelines-decl.patch: fix conflicting declaration
+
+---

New:

  lifelines-decl.patch



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.ULCmXE/_old  2014-02-26 06:58:38.0 +0100
+++ /var/tmp/diff_new_pack.ULCmXE/_new  2014-02-26 06:58:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2013 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
@@ -54,6 +54,8 @@
 Patch1: lifelines-3.0.59-funcptr.dif
 # PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch2: lifelines-3.0.60-array.dif
+# PATCH-FIX-UPSTREAM Fix conflicting declaration
+Patch3: lifelines-decl.patch
 BuildRequires:  tidy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
@@ -69,6 +71,7 @@
 %patch0  -p 0
 %patch1 -p 0
 %patch2 -p 0
+%patch3 -p1
 
 %build
 CFLAGS=%{optflags} -fno-strict-aliasing -pipe $(%{ncursesw_config} --cflags)

++ lifelines-decl.patch ++
Index: lifelines-3.0.62/src/gedlib/init.c
===
--- lifelines-3.0.62.orig/src/gedlib/init.c
+++ lifelines-3.0.62/src/gedlib/init.c
@@ -65,7 +65,7 @@ STRING editfile=NULL; /* file used for e
 extern BOOLEAN writeable;
 extern STRING readpath,readpath_file;
 extern STRING illegal_char;
-extern INT opt_finnish, opt_mychar;
+extern BOOLEAN opt_finnish, opt_mychar;
 
 /*
  * local function prototypes
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lifelines for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2013-05-16 16:13:50

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is lifelines

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2012-07-24 
17:22:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2013-05-16 
16:13:52.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr  3 09:42:41 UTC 2013 - joop.boo...@opensuse.org
+
+- Cleaned the spec file up 
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.ItbLon/_old  2013-05-16 16:13:53.0 +0200
+++ /var/tmp/diff_new_pack.ItbLon/_new  2013-05-16 16:13:53.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -33,26 +33,29 @@
 BuildRequires:  texlive-jadetex
 BuildRequires:  texlive-latex
 BuildRequires:  texlive-xmltex
-%if %suse_version  1220
+%if 0%{?suse_version}  1220
 BuildRequires:  texlive-courier
 BuildRequires:  texlive-dvips
 BuildRequires:  texlive-ec
 BuildRequires:  texlive-helvetic
 BuildRequires:  texlive-times
 %endif
-BuildRequires:  tidy
-Url:http://lifelines.sourceforge.net/
 Version:3.0.62
 Release:0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:The Lifelines Genealogy Program
 License:MIT
 Group:  Productivity/Scientific/Other
+Url:http://lifelines.sourceforge.net/
 Source: 
http://download.sourceforge.net/lifelines/lifelines-3.0.62.tar.bz2
 Source1:sh.rellink
-Patch:  lifelines-3.0.62.dif
+# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
+Patch0: lifelines-3.0.62.dif
+# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch1: lifelines-3.0.59-funcptr.dif
+# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch2: lifelines-3.0.60-array.dif
+BuildRequires:  tidy
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global ncursesw_config %(set -- %{_bindir}/ncursesw*-config; echo 
${1})
 
@@ -61,26 +64,14 @@
 genealogical information.  The lifelines reports are the power of the
 system but requires knowledge in the ll format.
 
-
-
-Authors:
-
-Tom Wetmore t...@shore.net
-Matt Emmerton m...@gsicomp.on.ca
-Rob Fugina r...@geekthing.com
-Paul B. McBride pbmcbr...@rcn.com
-Marc Nozell m...@nozell.com
-Perry Rapp pr...@erols.com
-Petter Reinholdtsen p...@hungry.com
-
 %prep 
-%setup
-%patch  -p 0
+%setup -q
+%patch0  -p 0
 %patch1 -p 0
 %patch2 -p 0
 
 %build
-CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing -pipe $(%{ncursesw_config} 
--cflags)
+CFLAGS=%{optflags} -fno-strict-aliasing -pipe $(%{ncursesw_config} --cflags)
 CPPFLAGS=-D_GNU_SOURCE -D_XOPEN_CURSES
 CC=gcc
 export CC CFLAGS CPPFLAGS
@@ -103,7 +94,7 @@
 make -C docs/
 
 %install
-. %{S:1}
+. %{SOURCE1}
 make DESTDIR=%{buildroot}  \
  docdir=%{_defaultdocdir}/lifelines/doc\
  pkgdatadir=%{_defaultdocdir}/lifelines/doc\
@@ -141,12 +132,12 @@
 %{buildroot}%{_defaultdocdir}/lifelines/doc/lines.cfg
 rm -f %{buildroot}%{_defaultdocdir}/lifelines/doc/lines.cfg.tmp
 fi
-%find_lang %name
+%find_lang %{name}
 
 %files -f %{name}.lang
 %defattr(-,root,root)
 %doc %{_defaultdocdir}/lifelines
-%{_prefix}/bin/*
+%{_bindir}/*
 %{_datadir}/lifelines
 %doc %{_mandir}/man1/*.gz
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lifelines for openSUSE:Factory

2012-07-24 Thread h_root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2012-07-24 16:10:22

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is lifelines, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2012-07-12 
10:48:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2012-07-24 
17:22:21.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 24 08:33:10 UTC 2012 - wer...@suse.de
+
+- Add missing font 
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.ZXccuy/_old  2012-07-24 17:22:23.0 +0200
+++ /var/tmp/diff_new_pack.ZXccuy/_new  2012-07-24 17:22:23.0 +0200
@@ -36,6 +36,7 @@
 %if %suse_version  1220
 BuildRequires:  texlive-courier
 BuildRequires:  texlive-dvips
+BuildRequires:  texlive-ec
 BuildRequires:  texlive-helvetic
 BuildRequires:  texlive-times
 %endif

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lifelines for openSUSE:Factory

2012-07-12 Thread h_root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2012-07-12 10:48:22

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is lifelines, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2012-01-25 
11:08:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2012-07-12 
10:48:25.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 10 09:55:05 UTC 2012 - wer...@suse.de
+
+- Make it build with latest TeXLive 2012 with new package layout 
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.ySIsq0/_old  2012-07-12 10:48:27.0 +0200
+++ /var/tmp/diff_new_pack.ySIsq0/_new  2012-07-12 10:48:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lifelines
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -33,6 +33,12 @@
 BuildRequires:  texlive-jadetex
 BuildRequires:  texlive-latex
 BuildRequires:  texlive-xmltex
+%if %suse_version  1220
+BuildRequires:  texlive-courier
+BuildRequires:  texlive-dvips
+BuildRequires:  texlive-helvetic
+BuildRequires:  texlive-times
+%endif
 BuildRequires:  tidy
 Url:http://lifelines.sourceforge.net/
 Version:3.0.62

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lifelines for openSUSE:Factory

2012-01-25 Thread h_root
Hello community,

here is the log from the commit of package lifelines for openSUSE:Factory 
checked in at 2012-01-25 11:08:22

Comparing /work/SRC/openSUSE:Factory/lifelines (Old)
 and  /work/SRC/openSUSE:Factory/.lifelines.new (New)


Package is lifelines, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lifelines/lifelines.changes  2011-09-23 
02:11:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.lifelines.new/lifelines.changes 2012-01-25 
11:08:24.0 +0100
@@ -1,0 +2,10 @@
+Wed Dec 21 10:31:40 UTC 2011 - co...@suse.com
+
+- remove call to suse_update_config (very old work around)
+
+---
+Fri Dec  2 15:54:29 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ lifelines.spec ++
--- /var/tmp/diff_new_pack.vHMIqr/_old  2012-01-25 11:08:25.0 +0100
+++ /var/tmp/diff_new_pack.vHMIqr/_new  2012-01-25 11:08:25.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package lifelines (Version 3.0.62)
+# spec file for package lifelines
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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,19 +15,32 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   lifelines
-BuildRequires:  bison docbook-utils dos2unix libjpeg-devel libpng 
libxslt-devel ncurses-devel perl-XML-DOM perl-XML-Parser perl-XML-SAX 
perl-libwww-perl texlive texlive-jadetex texlive-latex texlive-xmltex tidy
+BuildRequires:  automake
+BuildRequires:  bison
+BuildRequires:  docbook-utils
+BuildRequires:  dos2unix
+BuildRequires:  libjpeg-devel
+BuildRequires:  libpng
+BuildRequires:  libxslt-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  perl-XML-DOM
+BuildRequires:  perl-XML-Parser
+BuildRequires:  perl-XML-SAX
+BuildRequires:  perl-libwww-perl
+BuildRequires:  texlive
+BuildRequires:  texlive-jadetex
+BuildRequires:  texlive-latex
+BuildRequires:  texlive-xmltex
+BuildRequires:  tidy
 Url:http://lifelines.sourceforge.net/
-License:MIT License (or similar)
-Group:  Productivity/Scientific/Other
-AutoReqProv:on
 Version:3.0.62
-Release:111
+Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:The Lifelines Genealogy Program
+License:MIT
+Group:  Productivity/Scientific/Other
 Source: 
http://download.sourceforge.net/lifelines/lifelines-3.0.62.tar.bz2
 Source1:sh.rellink
 Patch:  lifelines-3.0.62.dif
@@ -64,9 +77,6 @@
 CPPFLAGS=-D_GNU_SOURCE -D_XOPEN_CURSES
 CC=gcc
 export CC CFLAGS CPPFLAGS
-%{?suse_update_config build/autotools/}
-%{?suse_update_config build/gettext/}
-%{?suse_update_config}
 autoreconf -fi
 ./configure --prefix=%{_prefix} -exec-prefix=%{_prefix}\
--libexecdir=%{_libdir} \

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org