Hello community,

here is the log from the commit of package guile-newt for openSUSE:Leap:15.2 
checked in at 2020-02-21 23:51:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/guile-newt (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.guile-newt.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "guile-newt"

Fri Feb 21 23:51:05 2020 rev:1 rq:775681 version:0.0.1

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

--- /dev/null   2019-12-19 10:12:34.003146842 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.guile-newt.new.26092/guile-newt.changes       
2020-02-21 23:51:05.316773576 +0100
@@ -0,0 +1,18 @@
+-------------------------------------------------------------------
+Mon Jan 13 22:37:09 UTC 2020 - Jonathan Brielmaier <[email protected]>
+
+- Add patch:
+  * support-guile-3.0.patch: Add support for Guile 3.0. Proposed to
+    upstream.
+- Remove unrecognized configure flag.
+- Adapt guile-newt-rpmlintrc to Guile 3.0
+
+-------------------------------------------------------------------
+Fri Apr 26 12:48:15 UTC 2019 - Jonathan Brielmaier <[email protected]>
+
+- add missing guile-newt-rpmlintrc as source file 
+
+-------------------------------------------------------------------
+Thu Apr 18 12:24:19 UTC 2019 - Jonathan Brielmaier <[email protected]>
+
+- let there be guile-newt 

New:
----
  guile-newt-0.0.1.tar.gz
  guile-newt-rpmlintrc
  guile-newt.changes
  guile-newt.spec
  support-guile-3.0.patch

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

Other differences:
------------------
++++++ guile-newt.spec ++++++
#
# spec file for package guile-newt
#
# 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
# 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 https://bugs.opensuse.org/
#


Name:           guile-newt
Version:        0.0.1
Release:        0
Summary:        Guile bindings to Newt
License:        GPL-3.0-or-later
Group:          System/Libraries
URL:            https://gitlab.com/mothacehe/guile-newt
Source0:        
https://gitlab.com/mothacehe/%{name}/-/archive/%{version}/%{name}-%{version}.tar.gz
Source1:        guile-newt-rpmlintrc
# Support Guile 3.0. Patch proposed upstream in 
https://gitlab.com/mothacehe/guile-newt/merge_requests/1
Patch0:         support-guile-3.0.patch
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  guile-devel
BuildRequires:  newt-devel
BuildRequires:  pkg-config
Requires:       guile
Requires:       newt-devel

%description
This package provides Guile bindings to Newt, a library for text based user
interfaces.

%prep
%setup -q
%patch0 -p1

%build
./bootstrap
%configure
make %{?_smp_mflags}

%install
%make_install

%files
%{_datadir}/guile/*
%{_libdir}/guile/*

%changelog
++++++ guile-newt-rpmlintrc ++++++
# guile .go files are "special"
# no shared libraries
addFilter("W: shared-lib-without-dependency-information /usr/lib64/guile/*/.*")

# maybe a wrong linker
addFilter("W: missing-PT_GNU_STACK-section /usr/lib64/guile/*/.*")

# They can't be stripped
addFilter("W: unstripped-binary-or-object /usr/lib64/guile/*/site-ccache/newt*")
++++++ support-guile-3.0.patch ++++++
commit ee02ff6b76cca76d77b8664b4d0d376e2c13e644 (HEAD -> master)
Author: Jonathan Brielmaier <[email protected]>
Date:   Mon Jan 13 23:23:01 2020 +0100

    Add support for Guile 3.0.
    
    * configure.ac (GUILE_PKG): Add Guile 3.0.

diff --git a/configure.ac b/configure.ac
index 473c517..a77351e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ AM_INIT_AUTOMAKE([-Wall -Werror foreign color-tests])
 dnl Enable silent rules by default.
 AM_SILENT_RULES([yes])
 
-GUILE_PKG([2.2 2.0])
+GUILE_PKG([3.0 2.2 2.0])
 GUILE_PROGS
 
 dnl (srfi srfi-64) appeared in Guile 2.0.11.

Reply via email to