This commit is contained in:
parent
e7777ace69
commit
6d1392a94b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:433f006044e0b03cd2a552706db0180b7678e8f9618841663fdd8e4235bb30bd
|
|
||||||
size 191992
|
|
3
Glib-1.220.tar.bz2
Normal file
3
Glib-1.220.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:93035c6c8f170d02e28216680438d2844ad8e60ba3e5fb93318bd3c81d984bbd
|
||||||
|
size 205143
|
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 18 16:24:55 CET 2009 - anicka@suse.cz
|
||||||
|
|
||||||
|
- update to 1.220
|
||||||
|
* GType.xs (gperl_fundamental_type_from_obj): Check the SV for
|
||||||
|
definedness before passing it to SvRV.
|
||||||
|
* GClosure.xs (gperl_closure_marshal): Synchronize the way signals
|
||||||
|
with no return value are handled with how it's done in
|
||||||
|
gperl_signal_class_closure_marshal. This means that Perl handlers
|
||||||
|
for these kinds of signals are now always called in void context,
|
||||||
|
as they should be.
|
||||||
|
* gperl.h: Provide gperl_register_boxed_alias,
|
||||||
|
gperl_register_fundamental_alias, and gperl_register_object_alias
|
||||||
|
to register aliases for other registered types. An alias is a
|
||||||
|
package name that will resolve to the specified type, while the
|
||||||
|
type will still resolve to its originally registered package when
|
||||||
|
going the other way.
|
||||||
|
* Glib.pm: Add constants Glib::SOURCE_CONTINUE and SOURCE_REMOVE
|
||||||
|
for use in source-type callbacks.
|
||||||
|
* test fixes, docs fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 6 14:32:31 CEST 2008 - anicka@suse.cz
|
Mon Oct 6 14:32:31 CEST 2008 - anicka@suse.cz
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Glib (Version 1.200)
|
# spec file for package perl-Glib (Version 1.220)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
Name: perl-Glib
|
Name: perl-Glib
|
||||||
BuildRequires: glib2-devel perl-ExtUtils-Depends perl-ExtUtils-PkgConfig
|
BuildRequires: glib2-devel perl-ExtUtils-Depends perl-ExtUtils-PkgConfig
|
||||||
Version: 1.200
|
Version: 1.220
|
||||||
Release: 1
|
Release: 1
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
@ -79,6 +79,24 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/var/adm/perl-modules/%{name}
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 18 2009 anicka@suse.cz
|
||||||
|
- update to 1.220
|
||||||
|
* GType.xs (gperl_fundamental_type_from_obj): Check the SV for
|
||||||
|
definedness before passing it to SvRV.
|
||||||
|
* GClosure.xs (gperl_closure_marshal): Synchronize the way signals
|
||||||
|
with no return value are handled with how it's done in
|
||||||
|
gperl_signal_class_closure_marshal. This means that Perl handlers
|
||||||
|
for these kinds of signals are now always called in void context,
|
||||||
|
as they should be.
|
||||||
|
* gperl.h: Provide gperl_register_boxed_alias,
|
||||||
|
gperl_register_fundamental_alias, and gperl_register_object_alias
|
||||||
|
to register aliases for other registered types. An alias is a
|
||||||
|
package name that will resolve to the specified type, while the
|
||||||
|
type will still resolve to its originally registered package when
|
||||||
|
going the other way.
|
||||||
|
* Glib.pm: Add constants Glib::SOURCE_CONTINUE and SOURCE_REMOVE
|
||||||
|
for use in source-type callbacks.
|
||||||
|
* test fixes, docs fixes
|
||||||
* Mon Oct 06 2008 anicka@suse.cz
|
* Mon Oct 06 2008 anicka@suse.cz
|
||||||
- update to 1.200
|
- update to 1.200
|
||||||
* GClosure.xs (gperl_callback_invoke): Instead of putting a mortal
|
* GClosure.xs (gperl_callback_invoke): Instead of putting a mortal
|
||||||
@ -225,7 +243,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* GType.xs: Add macros, PORTABLE_STRTOLL and PORTABLE_STRTOULL,
|
* GType.xs: Add macros, PORTABLE_STRTOLL and PORTABLE_STRTOULL,
|
||||||
to centralize the preprocessor madness for 64bit integer
|
to centralize the preprocessor madness for 64bit integer
|
||||||
support.
|
support.
|
||||||
* Fri Sep 08 2006 anicka@suse.cz
|
* Thu Sep 07 2006 anicka@suse.cz
|
||||||
- update to 1.140
|
- update to 1.140
|
||||||
* bugfixes and fixes in tests
|
* bugfixes and fixes in tests
|
||||||
* Fri Jul 21 2006 anicka@suse.cz
|
* Fri Jul 21 2006 anicka@suse.cz
|
||||||
|
Loading…
Reference in New Issue
Block a user