This commit is contained in:
parent
64054abbaa
commit
d1616777b1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:46e49469cb3b594af1d33176cd7565def2be3fa8be4371d62271fabb5eae50e9
|
|
||||||
size 297412
|
|
BIN
xcb-util-0.4.1.tar.xz
(Stored with Git LFS)
Normal file
BIN
xcb-util-0.4.1.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 23 17:02:15 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.4.1:
|
||||||
|
* Add standard X.Org package changes to autogen.sh
|
||||||
|
* Build xz tarballs instead of bzip2
|
||||||
|
* Clean up some compiler warnings from clang
|
||||||
|
* Do updates for migration to gitlab
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 16 08:59:44 UTC 2014 - sndirsch@suse.com
|
Thu Oct 16 08:59:44 UTC 2014 - sndirsch@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package xcb-util
|
# spec file for package xcb-util
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -12,24 +12,22 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# 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/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: xcb-util
|
|
||||||
%define lname libxcb-util1
|
%define lname libxcb-util1
|
||||||
Version: 0.4.0
|
Name: xcb-util
|
||||||
|
Version: 0.4.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: XCB utility modules
|
Summary: XCB utility modules
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://xcb.freedesktop.org/
|
URL: https://xcb.freedesktop.org/
|
||||||
|
|
||||||
#Git-Clone: git://anongit.freedesktop.org/xcb/util
|
#Git-Clone: git://anongit.freedesktop.org/xcb/util
|
||||||
#Git-Web: http://cgit.freedesktop.org/xcb/util/
|
#Git-Web: http://cgit.freedesktop.org/xcb/util/
|
||||||
Source: http://xcb.freedesktop.org/dist/%name-%version.tar.bz2
|
Source: https://xcb.freedesktop.org/dist/%{name}-%{version}.tar.xz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
#git#BuildRequires: autoconf >= 2.62, automake, libtool
|
#git#BuildRequires: autoconf >= 2.62, automake, libtool
|
||||||
BuildRequires: gperf
|
BuildRequires: gperf
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
@ -50,11 +48,11 @@ Included in this package are:
|
|||||||
- aux: Convenient access to connection setup and some core requests.
|
- aux: Convenient access to connection setup and some core requests.
|
||||||
- event: Callback X event handling.
|
- event: Callback X event handling.
|
||||||
|
|
||||||
%package -n %lname
|
%package -n %{lname}
|
||||||
Summary: XCB utility modules
|
Summary: XCB utility modules
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n %lname
|
%description -n %{lname}
|
||||||
The XCB util modules provide a number of libraries which sit on top
|
The XCB util modules provide a number of libraries which sit on top
|
||||||
of libxcb, the core X protocol library, and some of the extension
|
of libxcb, the core X protocol library, and some of the extension
|
||||||
libraries. These experimental libraries provide convenience functions
|
libraries. These experimental libraries provide convenience functions
|
||||||
@ -71,7 +69,7 @@ Included in this package are:
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for the XCB utility modules
|
Summary: Development files for the XCB utility modules
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %lname = %version
|
Requires: %{lname} = %{version}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The XCB util modules provide a number of libraries which sit on top
|
The XCB util modules provide a number of libraries which sit on top
|
||||||
@ -82,31 +80,30 @@ libraries also provide client-side code which is not strictly part of
|
|||||||
the X protocol but which have traditionally been provided by Xlib.
|
the X protocol but which have traditionally been provided by Xlib.
|
||||||
|
|
||||||
This package contains the development headers for the library found
|
This package contains the development headers for the library found
|
||||||
in %lname.
|
in %{lname}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR="%buildroot"
|
%make_install
|
||||||
rm -f "%buildroot/%_libdir"/*.la
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n %lname -p /sbin/ldconfig
|
%post -n %{lname} -p /sbin/ldconfig
|
||||||
|
%postun -n %{lname} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %lname -p /sbin/ldconfig
|
%files -n %{lname}
|
||||||
|
%{_libdir}/libxcb-util.so.1*
|
||||||
%files -n %lname
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libxcb-util.so.1*
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%license COPYING
|
||||||
%_includedir/xcb
|
%doc README.md
|
||||||
%_libdir/libxcb-util.so
|
%{_includedir}/xcb
|
||||||
%_libdir/pkgconfig/xcb-*.pc
|
%{_libdir}/libxcb-util.so
|
||||||
|
%{_libdir}/pkgconfig/xcb-*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user