- Update to version 1.2.3
* Change all *LoadImage(..., size) APIs to always return a cursor with the requested size. * Remove unnecessary MIN calls * build-fix * fix compiler warnings * improve manpage formatting * trim redundant code from the resize-calls * add new property "resized" and environment "XCURSOR_RESIZED" * add getter/setter for "resized" property * restore behavior of image-loading, provide resizing via internal function * provide internal variants of existing functions to pass "resized" parameter * use resized-parameter where available when loading images * add/use _XcursorLibraryLoadImages to pass resized-parameter when loading * add debug-logging for file.c, to help with analysis * add traces for library.c and xlib.c, also another internal function for dpy * document the new XCURSOR_RESIZED environment variable and resource "resized" * document/tidy the new set/get functions * changes will suggest new release * ensure ncomment and nimage values are positive * add debug-trace for the configuration information * fix overlooked compiler-warning * reduce the message-check to ignore the over-long one * amend per merge_requests/22#note_2642034 * amend per merge_requests/22#note_2642042 * Ignore invalid cursor files OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libXcursor?expand=0&rev=25
This commit is contained in:
commit
fdb7326f05
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
4
baselibs.conf
Normal file
4
baselibs.conf
Normal file
@ -0,0 +1,4 @@
|
||||
libXcursor1
|
||||
libXcursor-devel
|
||||
requires -libXcursor-<targettype>
|
||||
requires "libXcursor1-<targettype> = <version>"
|
BIN
libXcursor-1.2.2.tar.xz
(Stored with Git LFS)
Normal file
BIN
libXcursor-1.2.2.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
3
libXcursor-1.2.3.tar.xz
Normal file
3
libXcursor-1.2.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fde9402dd4cfe79da71e2d96bb980afc5e6ff4f8a7d74c159e1966afb2b2c2c0
|
||||
size 292764
|
120
libXcursor.changes
Normal file
120
libXcursor.changes
Normal file
@ -0,0 +1,120 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 7 10:52:02 UTC 2024 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- Update to version 1.2.3
|
||||
* Change all *LoadImage(..., size) APIs to always return a cursor with the requested size.
|
||||
* Remove unnecessary MIN calls
|
||||
* build-fix
|
||||
* fix compiler warnings
|
||||
* improve manpage formatting
|
||||
* trim redundant code from the resize-calls
|
||||
* add new property "resized" and environment "XCURSOR_RESIZED"
|
||||
* add getter/setter for "resized" property
|
||||
* restore behavior of image-loading, provide resizing via internal function
|
||||
* provide internal variants of existing functions to pass "resized" parameter
|
||||
* use resized-parameter where available when loading images
|
||||
* add/use _XcursorLibraryLoadImages to pass resized-parameter when loading
|
||||
* add debug-logging for file.c, to help with analysis
|
||||
* add traces for library.c and xlib.c, also another internal function for dpy
|
||||
* document the new XCURSOR_RESIZED environment variable and resource "resized"
|
||||
* document/tidy the new set/get functions
|
||||
* changes will suggest new release
|
||||
* ensure ncomment and nimage values are positive
|
||||
* add debug-trace for the configuration information
|
||||
* fix overlooked compiler-warning
|
||||
* reduce the message-check to ignore the over-long one
|
||||
* amend per merge_requests/22#note_2642034
|
||||
* amend per merge_requests/22#note_2642042
|
||||
* Ignore invalid cursor files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 3 03:15:13 UTC 2024 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- Update to version 1.2.2
|
||||
* gitlab CI: stop requiring Signed-off-by in commits
|
||||
* configure: Use LT_INIT from libtool 2 instead of deprecated
|
||||
AC_PROG_LIBTOOL
|
||||
* If O_CLOEXEC is defined, add "e" to fopen modes
|
||||
* Add comment about keeping libxcb-cursor copy of code in sync
|
||||
* XcursorXcFileLoad: plug memory leak in error paths
|
||||
* Remove superfluous and unguarded config.h include
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 17:08:50 UTC 2022 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- Update to version 1.2.1
|
||||
* This release provides bug fixes, code cleanups, and some
|
||||
significant documentation improvements.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 11 13:56:20 UTC 2019 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- Update to version 1.2.0
|
||||
* This release adds ~/.local/share/icons to the front of the
|
||||
default cursor path in the library in support of the XDG user
|
||||
data dir. This default can still be overridden at at run time
|
||||
using the XCURSOR_PATH environment variable.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 7 17:26:32 UTC 2017 - tobias.johannes.klausmann@mni.thm.de
|
||||
|
||||
- Update to version 1.1.15:
|
||||
* configure: Drop AM_MAINTAINER_MODE
|
||||
* autogen.sh: Honor NOCONFIGURE=1
|
||||
* Use strdup() instead of malloc(strlen())+strcpy()
|
||||
* Fix some clang integer sign/size mismatch warnings
|
||||
* autogen.sh: use quoted string variables
|
||||
* autogen: add default patch prefix
|
||||
* autogen.sh: use exec instead of waiting for configure to finish
|
||||
* Fix heap overflows when parsing malicious files. (CVE-2017-16612)
|
||||
* Insufficient memory for terminating null of string in _XcursorThemeInherits
|
||||
- Drop U_Avoid-heap-overflows-due-to-integer-overflow-signedn.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 19:08:11 UTC 2017 - sndirsch@suse.com
|
||||
|
||||
- U_Avoid-heap-overflows-due-to-integer-overflow-signedn.patch
|
||||
* It is possible to trigger heap overflows due to an integer
|
||||
overflow while parsing images and a signedness issue while
|
||||
parsing comments. [CVE-2017-16612] (bsc#1065386)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 28 00:57:07 UTC 2014 - sndirsch@suse.com
|
||||
|
||||
- added missing pkgconfig(xextproto)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jun 1 19:37:40 UTC 2013 - tobias.johannes.klausmann@mni.thm.de
|
||||
|
||||
- Update to version 1.1.14:
|
||||
This release delivers the fix for security vulnerability CVE-2013-2003
|
||||
and makes the Makefile.am more compatible with future automake releases.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 17 17:21:53 UTC 2013 - jengelh@inai.de
|
||||
|
||||
- Use more robust make install call
|
||||
- Avoid calling fdupes outside of /usr
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 12 06:24:09 UTC 2012 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 1.1.13:
|
||||
+ Make the version number reported in Xcursor.h match the one
|
||||
reported in xcursor.pc
|
||||
+ Fix issues found by Parfait bug checking tool
|
||||
+ Build system improvements
|
||||
- Changes from version 1.1.12:
|
||||
+ Fix leaks
|
||||
+ Fix compiler warnings and issues found by clang
|
||||
+ Build system improvements
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 11 21:44:44 UTC 2012 - jengelh@medozas.de
|
||||
|
||||
- Provide package descriptions and update homepage URL
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 22:17:49 UTC 2012 - jengelh@medozas.de
|
||||
|
||||
- Split xorg-x11-libs into separate packages
|
100
libXcursor.spec
Normal file
100
libXcursor.spec
Normal file
@ -0,0 +1,100 @@
|
||||
#
|
||||
# spec file for package libXcursor
|
||||
#
|
||||
# Copyright (c) 2024 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: libXcursor
|
||||
%define lname libXcursor1
|
||||
Version: 1.2.3
|
||||
Release: 0
|
||||
Summary: X Window System Cursor management library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
URL: http://xorg.freedesktop.org/
|
||||
|
||||
#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXcursor
|
||||
#Git-Web: http://cgit.freedesktop.org/xorg/lib/libXcursor/
|
||||
Source: http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.xz
|
||||
Source1: baselibs.conf
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
#git#BuildRequires: autoconf >= 2.60, automake, libtool
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(fixesproto)
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xextproto)
|
||||
BuildRequires: pkgconfig(xfixes)
|
||||
BuildRequires: pkgconfig(xorg-macros) >= 1.8
|
||||
BuildRequires: pkgconfig(xrender) >= 0.8.2
|
||||
|
||||
%description
|
||||
Xcursor a library designed to help locate and load cursors. Cursors
|
||||
can be loaded from files or memory. A library of common cursors
|
||||
exists which map to the standard X cursor names.Cursors can exist in
|
||||
several sizes and the library automatically picks the best size.
|
||||
|
||||
%package -n %lname
|
||||
Summary: X Window System Cursor management library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %lname
|
||||
Xcursor a library designed to help locate and load cursors. Cursors
|
||||
can be loaded from files or memory. A library of common cursors
|
||||
exists which map to the standard X cursor names.Cursors can exist in
|
||||
several sizes and the library automatically picks the best size.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for the X Window System Cursor library
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %lname = %version
|
||||
|
||||
%description devel
|
||||
Xcursor a library designed to help locate and load cursors. Cursors
|
||||
can be loaded from files or memory. A library of common cursors
|
||||
exists which map to the standard X cursor names.Cursors can exist in
|
||||
several sizes and the library automatically picks the best size.
|
||||
|
||||
This package contains the development headers for the library found
|
||||
in %lname.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make install DESTDIR="%buildroot"
|
||||
rm -f "%buildroot/%_libdir"/*.la
|
||||
%fdupes %buildroot/%_prefix
|
||||
|
||||
%post -n %lname -p /sbin/ldconfig
|
||||
|
||||
%postun -n %lname -p /sbin/ldconfig
|
||||
|
||||
%files -n %lname
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libXcursor.so.1*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%_includedir/X11/*
|
||||
%_libdir/libXcursor.so
|
||||
%_libdir/pkgconfig/xcursor.pc
|
||||
%_mandir/man3/*
|
||||
|
||||
%changelog
|
Loading…
x
Reference in New Issue
Block a user