commit perl-Gtk2-Unique for openSUSE:Factory

2019-01-28 Thread root
Hello community,

here is the log from the commit of package perl-Gtk2-Unique for 
openSUSE:Factory checked in at 2019-01-28 20:49:08

Comparing /work/SRC/openSUSE:Factory/perl-Gtk2-Unique (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Gtk2-Unique.new.28833 (New)


Package is "perl-Gtk2-Unique"

Mon Jan 28 20:49:08 2019 rev:3 rq:668938 version:0.05

Changes:

--- /work/SRC/openSUSE:Factory/perl-Gtk2-Unique/perl-Gtk2-Unique.changes
2018-07-28 12:39:51.392362829 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Gtk2-Unique.new.28833/perl-Gtk2-Unique.changes 
2019-01-28 20:49:58.901807936 +0100
@@ -1,0 +2,6 @@
+Sun Jan 27 16:52:14 UTC 2019 - to...@ledfan.be
+
+- Add Gtk2-Unique-Fix-crash.patch: Fix crash on starting
+  second instances
+
+---

New:

  Gtk2-Unique-Fix-crash.patch



Other differences:
--
++ perl-Gtk2-Unique.spec ++
--- /var/tmp/diff_new_pack.Lkz64x/_old  2019-01-28 20:49:59.417807392 +0100
+++ /var/tmp/diff_new_pack.Lkz64x/_new  2019-01-28 20:49:59.421807388 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Gtk2-Unique
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Sascha Manns 
 #
 # All modifications and additions to the file contributed by third parties
@@ -22,12 +22,14 @@
 Version:0.05
 Release:0
 Summary:Perl bindings for the C library "libunique"
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Gtk2-Unique/
 Source: 
http://mirrors.ibiblio.org/CPAN/modules/by-module/Gtk2/%{cpan_name}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM Gtk2-Unique-rt120115-Fix-crash.patch rt#120115 
dims...@opensuse.org -- Fix crash on starting second instance
 Patch0: Gtk2-Unique-rt120115-Fix-crash.patch
+# PATCH-FIX-UPSTREAM Gtk2-Unique-Fix-crash.patch see boo#1099774 -- upstream 
commit: 8ac892efdf480efbca75dc1729fc9aa45708618e
+Patch1: Gtk2-Unique-Fix-crash.patch
 # libnotify-devel seems to be missing this.  see BZ#216946
 BuildRequires:  gtk2-devel
 # non-perl
@@ -69,6 +71,7 @@
 %prep
 %setup -q -n %{cpan_name}-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS="vendor" OPTIMIZE="%{optflags}"

++ Gtk2-Unique-Fix-crash.patch ++
diff --git a/xs/UniqueMessageData.xs b/xs/UniqueMessageData.xs
index 7c58710..886 100644
--- a/xs/UniqueMessageData.xs
+++ b/xs/UniqueMessageData.xs
@@ -38,7 +38,7 @@ SV*
 unique_message_data_get (UniqueMessageData *message_data)
PREINIT:
const guchar *string = NULL;
-   gint length = 0;
+   gsize length = 0;

CODE:
string = unique_message_data_get(message_data, &length);



commit perl-Gtk2-Unique for openSUSE:Factory

2018-07-28 Thread root
Hello community,

here is the log from the commit of package perl-Gtk2-Unique for 
openSUSE:Factory checked in at 2018-07-28 12:39:48

Comparing /work/SRC/openSUSE:Factory/perl-Gtk2-Unique (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Gtk2-Unique.new (New)


Package is "perl-Gtk2-Unique"

Sat Jul 28 12:39:48 2018 rev:2 rq:623048 version:0.05

Changes:

--- /work/SRC/openSUSE:Factory/perl-Gtk2-Unique/perl-Gtk2-Unique.changes
2017-11-09 13:56:55.541020951 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Gtk2-Unique.new/perl-Gtk2-Unique.changes   
2018-07-28 12:39:51.392362829 +0200
@@ -1,0 +2,6 @@
+Mon Jul  2 08:15:52 UTC 2018 - dims...@opensuse.org
+
+- Add Gtk2-Unique-rt120115-Fix-crash.patch: Fix crash on starting
+  second instances (rt#120115, boo#1099774).
+
+---

New:

  Gtk2-Unique-rt120115-Fix-crash.patch



Other differences:
--
++ perl-Gtk2-Unique.spec ++
--- /var/tmp/diff_new_pack.CRLClM/_old  2018-07-28 12:39:51.896363798 +0200
+++ /var/tmp/diff_new_pack.CRLClM/_new  2018-07-28 12:39:51.896363798 +0200
@@ -26,6 +26,8 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Gtk2-Unique/
 Source: 
http://mirrors.ibiblio.org/CPAN/modules/by-module/Gtk2/%{cpan_name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM Gtk2-Unique-rt120115-Fix-crash.patch rt#120115 
dims...@opensuse.org -- Fix crash on starting second instance
+Patch0: Gtk2-Unique-rt120115-Fix-crash.patch
 # libnotify-devel seems to be missing this.  see BZ#216946
 BuildRequires:  gtk2-devel
 # non-perl
@@ -66,6 +68,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%patch0 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS="vendor" OPTIMIZE="%{optflags}"

++ Gtk2-Unique-rt120115-Fix-crash.patch ++
diff --git a/xs/UniqueApp.xs b/xs/UniqueApp.xs
index 
daba209d123d89b1c59a2c84e2ae254aaf895538..cd38bbc3a2e3830927bd74ab52fb2dbb9c7e1a4c
 100644
--- a/xs/UniqueApp.xs
+++ b/xs/UniqueApp.xs
@@ -1,6 +1,8 @@
 #include "unique-perl.h"
 #include 
 
+G_CONST_RETURN gchar * unique_command_to_string (UniqueApp *app, gint command);
+
 static void
 perl_unique_app_marshall_message_received (
GClosure *closure,




commit perl-Gtk2-Unique for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package perl-Gtk2-Unique for 
openSUSE:Factory checked in at 2011-12-06 18:42:15

Comparing /work/SRC/openSUSE:Factory/perl-Gtk2-Unique (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Gtk2-Unique.new (New)


Package is "perl-Gtk2-Unique", Maintainer is ""

Changes:




Other differences:
--
++ perl-Gtk2-Unique.spec ++
--- /var/tmp/diff_new_pack.d0f2UE/_old  2011-12-06 19:10:07.0 +0100
+++ /var/tmp/diff_new_pack.d0f2UE/_new  2011-12-06 19:10:07.0 +0100
@@ -22,7 +22,7 @@
 %definecpan_name Gtk2-Unique
 Version:0.05
 Release:1
-License:LGPLv2+
+License:LGPL-2.1+
 Summary:Perl bindings for the C library "libunique"
 Url:http://mirrors.ibiblio.org/CPAN/modules/by-module/Gtk2/
 Group:  Development/Libraries/Perl

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



commit perl-Gtk2-Unique for openSUSE:Factory

2011-06-10 Thread h_root

Hello community,

here is the log from the commit of package perl-Gtk2-Unique for openSUSE:Factory
checked in at Fri Jun 10 14:49:54 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Gtk2-Unique/perl-Gtk2-Unique.changes  
2011-06-10 09:12:38.0 +0200
@@ -0,0 +1,21 @@
+---
+Fri Jun 10 07:12:12 UTC 2011 - saigk...@opensuse.org
+
+- prepared for factory 
+
+---
+Mon May 23 12:18:33 UTC 2011 - saigk...@opensuse.org
+
+- fixed build for Factory through adding pkgconfig(unique-1.0) as BR 
+
+---
+Sun Mar  6 13:41:08 UTC 2011 - saigk...@opensuse.org
+
+- removed -devel Package and added Version Numbers in BuildRequires
+  and Requires. 
+
+---
+Sat Mar  5 20:06:22 UTC 2011 - saigk...@opensuse.org
+
+- first package for openSUSE 
+

calling whatdependson for head-i586


New:

  Gtk2-Unique-0.05.tar.gz
  perl-Gtk2-Unique.changes
  perl-Gtk2-Unique.spec



Other differences:
--
++ perl-Gtk2-Unique.spec ++
#
# spec file for package perl-Gtk2-Unique
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 Sascha Manns 
#
# 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/
#



Name:   perl-Gtk2-Unique
%define cpan_name Gtk2-Unique
Version:0.05
Release:1
License:LGPLv2+
Summary:Perl bindings for the C library "libunique"
Url:http://mirrors.ibiblio.org/CPAN/modules/by-module/Gtk2/
Group:  Development/Libraries/Perl
Source: %{cpan_name}-%{version}.tar.gz
# non-perl
BuildRequires:  libnotify-devel
BuildRequires:  perl(ExtUtils::Depends) >= 0.20
#BuildRequires: libunique-devel
BuildRequires:  pkgconfig(unique-1.0)
# core
BuildRequires:  perl(ExtUtils::MakeMaker)
BuildRequires:  perl(ExtUtils::PkgConfig) >= 1.03
BuildRequires:  perl
%if 0%{?suse_version} < 1120
BuildRequires:  perl-macros
%endif
BuildRequires:  perl(Test::More) perl(Test::Pod) perl(Test::Pod::Coverage)
# cpan
BuildRequires:  perl(Glib) >= 1.180
BuildRequires:  perl(Glib::MakeHelper)
BuildRequires:  perl(Gtk2) >= 1.00
BuildRequires:  perl(Test::More)
# libnotify-devel seems to be missing this.  see BZ#216946
BuildRequires:  gtk2-devel
Requires:   perl(ExtUtils::Depends) >= 0.20
Requires:   perl(ExtUtils::PkgConfig) >= 1.03
Requires:   perl(Glib) >= 1.180
Requires:   perl(Gtk2) >= 1.00
%if 0%{?suse_version} && 0%{?suse_version} < 1140
Requires:   perl = %{perl_version}
%else
%{perl_requires}
%endif
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Perl bindings for the C library "libunique" that provides a mechanism for
writing single instance applications. If you launch a single instance
application twice, the second instance will either just quit or will send a
message to the running instance.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS="vendor" OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

# make sure filelist grabs *all* shared libaries.
sed -i.orig -e 's/\.so[\.0-9]*$/\.so*/' %{name}.files

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(644,root,root,755)
%doc Changes README examples/ t/
%dir %{perl_vendorarch}/Gtk2/Unique
%dir %{perl_vendorarch}/Gtk2/Unique/Install

%changelog





Remember to have fun...

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