commit libbraille for openSUSE:Factory

2020-05-07 Thread root
Hello community,

here is the log from the commit of package libbraille for openSUSE:Factory 
checked in at 2020-05-07 15:06:24

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


Package is "libbraille"

Thu May  7 15:06:24 2020 rev:16 rq:800330 version:0.19.0

Changes:

--- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes2020-03-19 
19:49:07.252143295 +0100
+++ /work/SRC/openSUSE:Factory/.libbraille.new.2738/libbraille.changes  
2020-05-07 15:06:27.271831873 +0200
@@ -1,0 +2,7 @@
+Tue May  5 10:51:25 UTC 2020 - Dominique Leuenberger 
+
+- Let the distro decide if it wants to disable python2 bindings
+  (bcond_without python2). Enabled by default, unless overwritten
+  by the builder.
+
+---



Other differences:
--
++ libbraille.spec ++
--- /var/tmp/diff_new_pack.LQyt2n/_old  2020-05-07 15:06:28.103833713 +0200
+++ /var/tmp/diff_new_pack.LQyt2n/_new  2020-05-07 15:06:28.103833713 +0200
@@ -16,6 +16,9 @@
 #
 
 
+# Python2 is  EOL; let the distro decide if they will want to build py2 
support. TW does not
+%bcond_without python2
+
 Name:   libbraille
 Version:0.19.0
 Release:0
@@ -32,7 +35,9 @@
 BuildRequires:  swig
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
+%if %{with python2}
 BuildRequires:  pkgconfig(python2)
+%endif
 
 %description
 Libbraille is a computer shared library which makes it possible to
@@ -91,7 +96,10 @@
   --enable-hidden-symbols \
   --enable-fake \
   --enable-usb \
-  --enable-python
+%if %{with python2}
+  --enable-python \
+%endif
+  %nil
 %make_build
 
 %install
@@ -115,9 +123,11 @@
 %files fake
 %{_libdir}/libbraille/fake-0.so.*
 
+%if %{with python2}
 %files -n python2-braille
 %{python2_sitearch}/_braille.so*
 %{python2_sitelib}/braille.py*
+%endif
 
 %files devel
 %{_includedir}/*.h




commit libbraille for openSUSE:Factory

2020-03-19 Thread root
Hello community,

here is the log from the commit of package libbraille for openSUSE:Factory 
checked in at 2020-03-19 19:45:18

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


Package is "libbraille"

Thu Mar 19 19:45:18 2020 rev:15 rq:785865 version:0.19.0

Changes:

--- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes2018-04-22 
14:29:27.523074586 +0200
+++ /work/SRC/openSUSE:Factory/.libbraille.new.3160/libbraille.changes  
2020-03-19 19:49:07.252143295 +0100
@@ -1,0 +2,6 @@
+Tue Mar 17 09:48:54 UTC 2020 - Tomáš Chvátal 
+
+- Fix building with py2 directly only
+- Convert to pkgconf style dependencies
+
+---



Other differences:
--
++ libbraille.spec ++
--- /var/tmp/diff_new_pack.8M1LF7/_old  2020-03-19 19:49:07.944143696 +0100
+++ /var/tmp/diff_new_pack.8M1LF7/_new  2020-03-19 19:49:07.952143700 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libbraille
 #
-# Copyright (c) 2018 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
@@ -12,7 +12,7 @@
 # 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/
 #
 
 
@@ -21,18 +21,18 @@
 Release:0
 Summary:Access to Braille displays and terminals
 License:LGPL-2.1-only
-Group:  Development/Libraries/C and C++
 URL:https://sourceforge.net/projects/libbraille/files/libbraille/
 Source: 
http://downloads.sourceforge.net/project/libbraille/libbraille/libbraille-%{version}/libbraille-%{version}.tar.gz
 # PATCH-MISSING-TAG -- See http://en.opensuse.org/Packaging/Patches
 Patch0: libbraille-0.19.0-visibility.patch
 BuildRequires:  gcc-c++
-BuildRequires:  glib2-devel
-BuildRequires:  gtk2-devel
 BuildRequires:  libtool
 BuildRequires:  libusb-devel
-BuildRequires:  python-devel
+BuildRequires:  pkgconfig
 BuildRequires:  swig
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(python2)
 
 %description
 Libbraille is a computer shared library which makes it possible to
@@ -42,9 +42,8 @@
 
 %package fake
 Summary:Fake graphical display for libbraille
-Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
-Supplements:packageand(%{name}:gtk2)
+Supplements:(%{name} and gtk2)
 
 %description fake
 Libbraille is a computer shared library which makes it possible to
@@ -56,7 +55,6 @@
 
 %package devel
 Summary:Development files for libbraille
-Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
 
 %description devel
@@ -65,13 +63,14 @@
 write text on the display, directly draw dots, or get the value of
 keys pressed on the Braille keyboard.
 
-%package -n python-braille
+%package -n python2-braille
 Summary:Python bindings for libbraille
-Group:  Development/Libraries/Python
 Provides:   %{name}-python = %{version}
 Obsoletes:  %{name}-python < %{version}
+Provides:   python-braille = %{version}-%{release}
+Obsoletes:  python-braille < %{version}-%{release}
 
-%description -n python-braille
+%description -n python2-braille
 Libbraille is a computer shared library which makes it possible to
 develop for Braille displays. It provides an API to
 write text on the display, directly draw dots, or get the value of
@@ -79,38 +78,30 @@
 
 %prep
 %setup -q
-%patch0 -p0
+%patch0
 
 %build
 autoreconf -fi
 (cd libltdl; autoreconf -fi)
-CFLAGS="%{optflags} -fno-strict-aliasing"
-CXXFLAGS="%{optflags} -fno-strict-aliasing"
-%if 0%{?suse_version} > 1000
-CFLAGS="$CFLAGS -fstack-protector"
-CXXFLAGS="$CXXFLAGS -fstack-protector"
-%endif
-
-export CFLAGS
-export CXXFLAGS
-
-%configure --disable-static --disable-rpath \
+export CFLAGS="%{optflags} -fno-strict-aliasing "
+export CXXFLAGS="%{optflags} -fno-strict-aliasing"
+%configure \
+  --disable-static \
+  --disable-rpath \
 --enable-hidden-symbols \
 --enable-fake \
 --enable-usb \
 --enable-python
-make %{?_smp_mflags}
+%make_build
 
 %install
-%makeinstall
+%make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(-, root, root, 0755)
 %license COPYING
 %doc AUTHORS ChangeLog README TODO
 %config(noreplace) %{_sysconfdir}/libbraille.conf
@@ 

commit libbraille for openSUSE:Factory

2018-04-22 Thread root
Hello community,

here is the log from the commit of package libbraille for openSUSE:Factory 
checked in at 2018-04-22 14:29:22

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


Package is "libbraille"

Sun Apr 22 14:29:22 2018 rev:14 rq:596239 version:0.19.0

Changes:

--- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes2018-03-31 
15:36:27.430624758 +0200
+++ /work/SRC/openSUSE:Factory/.libbraille.new/libbraille.changes   
2018-04-22 14:29:27.523074586 +0200
@@ -1,0 +2,6 @@
+Tue Apr 10 23:10:18 UTC 2018 - jeng...@inai.de
+
+- Ensure neutrality of descriptions. Update summaries.
+- Remove pointless --with-pic (static libs only).
+
+---



Other differences:
--
++ libbraille.spec ++
--- /var/tmp/diff_new_pack.YZuNhC/_old  2018-04-22 14:29:29.047019426 +0200
+++ /var/tmp/diff_new_pack.YZuNhC/_new  2018-04-22 14:29:29.051019281 +0200
@@ -19,7 +19,7 @@
 Name:   libbraille
 Version:0.19.0
 Release:0
-Summary:Easy access to Braille displays and terminals
+Summary:Access to Braille displays and terminals
 License:LGPL-2.1-only
 Group:  Development/Libraries/C and C++
 URL:https://sourceforge.net/projects/libbraille/files/libbraille/
@@ -36,44 +36,44 @@
 
 %description
 Libbraille is a computer shared library which makes it possible to
-easily develop for Braille displays. It provides a simple API to
+develop for Braille displays. It provides an API to
 write text on the display, directly draw dots, or get the value of
 keys pressed on the Braille keyboard.
 
 %package fake
-Summary:Easy access to Braille displays and terminals -- Fake 
Graphical Display
+Summary:Fake graphical display for libbraille
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
 Supplements:packageand(%{name}:gtk2)
 
 %description fake
 Libbraille is a computer shared library which makes it possible to
-easily develop for Braille displays. It provides a simple API to
+develop for Braille displays. It provides an API to
 write text on the display, directly draw dots, or get the value of
 keys pressed on the Braille keyboard.
 
 This package contains a fake graphical virtual display.
 
 %package devel
-Summary:Easy access to Braille displays and terminals -- Development 
Files
+Summary:Development files for libbraille
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
 
 %description devel
 Libbraille is a computer shared library which makes it possible to
-easily develop for Braille displays. It provides a simple API to
+develop for Braille displays. It provides an API to
 write text on the display, directly draw dots, or get the value of
 keys pressed on the Braille keyboard.
 
 %package -n python-braille
-Summary:Easy access to Braille displays and terminals -- Python 
Bindings
+Summary:Python bindings for libbraille
 Group:  Development/Libraries/Python
 Provides:   %{name}-python = %{version}
 Obsoletes:  %{name}-python < %{version}
 
 %description -n python-braille
 Libbraille is a computer shared library which makes it possible to
-easily develop for Braille displays. It provides a simple API to
+develop for Braille displays. It provides an API to
 write text on the display, directly draw dots, or get the value of
 keys pressed on the Braille keyboard.
 
@@ -94,7 +94,7 @@
 export CFLAGS
 export CXXFLAGS
 
-%configure --disable-static --with-pic --disable-rpath \
+%configure --disable-static --disable-rpath \
 --enable-hidden-symbols \
 --enable-fake \
 --enable-usb \




commit libbraille for openSUSE:Factory

2018-03-31 Thread root
Hello community,

here is the log from the commit of package libbraille for openSUSE:Factory 
checked in at 2018-03-31 15:36:19

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


Package is "libbraille"

Sat Mar 31 15:36:19 2018 rev:13 rq:592145 version:0.19.0

Changes:

--- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes2012-02-14 
11:24:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbraille.new/libbraille.changes   
2018-03-31 15:36:27.430624758 +0200
@@ -1,0 +2,11 @@
+Wed Mar 28 16:10:46 UTC 2018 - dims...@opensuse.org
+
+- Explicitly call autoreconf in libltdl: Fix build with automake
+  1.16.
+
+---
+Tue Nov 22 08:48:48 UTC 2016 - pgaj...@suse.com
+
+- fix links in spec file, use *.gz
+
+---

Old:

  libbraille-0.19.0.tar.bz2

New:

  libbraille-0.19.0.tar.gz



Other differences:
--
++ libbraille.spec ++
--- /var/tmp/diff_new_pack.AyBd3u/_old  2018-03-31 15:36:28.142598943 +0200
+++ /var/tmp/diff_new_pack.AyBd3u/_new  2018-03-31 15:36:28.142598943 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libbraille
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -15,14 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   libbraille
 Version:0.19.0
 Release:0
 Summary:Easy access to Braille displays and terminals
-License:LGPL-2.1
+License:LGPL-2.1-only
 Group:  Development/Libraries/C and C++
-Url:http://libbraille.sourceforge.net/
-Source: http://dl.sf.net/libbraille/libbraille-%{version}.tar.bz2
+URL:https://sourceforge.net/projects/libbraille/files/libbraille/
+Source: 
http://downloads.sourceforge.net/project/libbraille/libbraille/libbraille-%{version}/libbraille-%{version}.tar.gz
 # PATCH-MISSING-TAG -- See http://en.opensuse.org/Packaging/Patches
 Patch0: libbraille-0.19.0-visibility.patch
 BuildRequires:  gcc-c++
@@ -32,7 +33,6 @@
 BuildRequires:  libusb-devel
 BuildRequires:  python-devel
 BuildRequires:  swig
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Libbraille is a computer shared library which makes it possible to
@@ -70,7 +70,6 @@
 Group:  Development/Libraries/Python
 Provides:   %{name}-python = %{version}
 Obsoletes:  %{name}-python < %{version}
-%py_requires
 
 %description -n python-braille
 Libbraille is a computer shared library which makes it possible to
@@ -84,6 +83,7 @@
 
 %build
 autoreconf -fi
+(cd libltdl; autoreconf -fi)
 CFLAGS="%{optflags} -fno-strict-aliasing"
 CXXFLAGS="%{optflags} -fno-strict-aliasing"
 %if 0%{?suse_version} > 1000
@@ -111,7 +111,8 @@
 
 %files
 %defattr(-, root, root, 0755)
-%doc AUTHORS ChangeLog COPYING README TODO
+%license COPYING
+%doc AUTHORS ChangeLog README TODO
 %config(noreplace) %{_sysconfdir}/libbraille.conf
 %{_bindir}/*
 %{_libdir}/*.so.*




commit libbraille for openSUSE:Factory

2012-02-14 Thread h_root
Hello community,

here is the log from the commit of package libbraille for openSUSE:Factory 
checked in at 2012-02-14 11:24:52

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


Package is libbraille, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes2011-11-14 
11:59:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbraille.new/libbraille.changes   
2012-02-14 11:24:53.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb  9 01:33:49 UTC 2012 - jeng...@medozas.de
+
+- Simply regeneration of autotools-generated files
+
+---



Other differences:
--
++ libbraille.spec ++
--- /var/tmp/diff_new_pack.D78pF3/_old  2012-02-14 11:24:54.0 +0100
+++ /var/tmp/diff_new_pack.D78pF3/_new  2012-02-14 11:24:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libbraille
 #
-# 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
@@ -15,23 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   libbraille
 Version:0.19.0
-Release:1
-License:LGPL-2.1
+Release:0
 Summary:Easy access to Braille displays and terminals
-URL:http://libbraille.sourceforge.net/
+License:LGPL-2.1
 Group:  Development/Libraries/C and C++
+Url:http://libbraille.sourceforge.net/
 Source: http://dl.sf.net/libbraille/libbraille-%{version}.tar.bz2
 # PATCH-MISSING-TAG -- See http://en.opensuse.org/Packaging/Patches
 Patch0: libbraille-0.19.0-visibility.patch
 BuildRequires:  gcc-c++
 BuildRequires:  glib2-devel
 BuildRequires:  gtk2-devel
-BuildRequires:  libusb-devel
 BuildRequires:  libtool
+BuildRequires:  libusb-devel
 BuildRequires:  python-devel
 BuildRequires:  swig
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -85,22 +83,7 @@
 %patch0 -p0
 
 %build
-
-rm -rf libltdl
-libtoolize --force --copy --ltdl
-
-cd libltdl
-aclocal --force
-autoheader --force
-automake --copy
-autoconf --force
-
-cd ..
-aclocal --force
-autoheader --force
-automake --force --include-deps --add-missing --copy
-autoconf --force
-
+autoreconf -fi
 CFLAGS=%{optflags} -fno-strict-aliasing
 CXXFLAGS=%{optflags} -fno-strict-aliasing
 %if 0%{?suse_version}  1000

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



commit libbraille for openSUSE:Factory

2011-11-14 Thread h_root
Hello community,

here is the log from the commit of package libbraille for openSUSE:Factory 
checked in at 2011-11-14 11:59:12

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


Package is libbraille, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libbraille/libbraille.changes2011-09-23 
02:07:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.libbraille.new/libbraille.changes   
2011-11-14 11:59:19.0 +0100
@@ -1,0 +2,11 @@
+Sun Nov 13 14:19:07 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Use %_smp_mflags for parallel building
+
+---
+Sun Nov 13 09:13:56 UTC 2011 - co...@suse.com
+
+- add libtool as explicit buildrequire to avoid implicit dependency from 
prjconf
+
+---



Other differences:
--
++ libbraille.spec ++
--- /var/tmp/diff_new_pack.DYoZZ1/_old  2011-11-14 11:59:20.0 +0100
+++ /var/tmp/diff_new_pack.DYoZZ1/_new  2011-11-14 11:59:20.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libbraille (Version 0.19.0)
+# spec file for package libbraille
 #
-# Copyright (c) 2010 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
@@ -22,7 +22,7 @@
 Release:1
 License:LGPLv2.1
 Summary:Easy access to Braille displays and terminals
-Url:http://libbraille.sourceforge.net/
+URL:http://libbraille.sourceforge.net/
 Group:  Development/Libraries/C and C++
 Source: http://dl.sf.net/libbraille/libbraille-%{version}.tar.bz2
 # PATCH-MISSING-TAG -- See http://en.opensuse.org/Packaging/Patches
@@ -31,6 +31,7 @@
 BuildRequires:  glib2-devel
 BuildRequires:  gtk2-devel
 BuildRequires:  libusb-devel
+BuildRequires:  libtool
 BuildRequires:  python-devel
 BuildRequires:  swig
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -42,7 +43,6 @@
 keys pressed on the Braille keyboard.
 
 %package fake
-License:LGPLv2.1
 Summary:Easy access to Braille displays and terminals -- Fake 
Graphical Display
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -57,7 +57,6 @@
 This package contains a fake graphical virtual display.
 
 %package devel
-License:LGPLv2.1
 Summary:Easy access to Braille displays and terminals -- Development 
Files
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -69,7 +68,6 @@
 keys pressed on the Braille keyboard.
 
 %package -n python-braille
-License:LGPLv2.1
 Summary:Easy access to Braille displays and terminals -- Python 
Bindings
 Group:  Development/Libraries/Python
 Provides:   %{name}-python = %{version}
@@ -118,7 +116,7 @@
 --enable-fake \
 --enable-usb \
 --enable-python
-%{__make}
+make %{?_smp_mflags}
 
 %install
 %makeinstall
@@ -128,9 +126,6 @@
 
 %postun -p /sbin/ldconfig
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files
 %defattr(-, root, root, 0755)
 %doc AUTHORS ChangeLog COPYING README TODO

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