forked from pool/libt3key
Compare commits
6 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
d3f119f62d | ||
|
bade7cc3b1 | ||
|
ca92a983ec | ||
|
8cc5998713 | ||
|
eb2731d138 | ||
6cedaadd30 |
4
_scmsync.obsinfo
Normal file
4
_scmsync.obsinfo
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
mtime: 1732495289
|
||||||
|
commit: 8ac28958cf6c7be823f1a1760a93140cbf6b96eac5504143718b3698fcb4ec6e
|
||||||
|
url: https://src.opensuse.org/jengelh/libt3key
|
||||||
|
revision: master
|
3
build.specials.obscpio
Normal file
3
build.specials.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f662d17a47f27367ef9854bd947218352e1554f51a205f9a4e809147b36f866d
|
||||||
|
size 256
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b3f63c8a5bdf4efc10a293e5124a4a1095af6149af96b0a10b3ce7da7400f8c1
|
|
||||||
size 87863
|
|
Binary file not shown.
BIN
libt3key-0.2.11.tar.bz2
(Stored with Git LFS)
Normal file
BIN
libt3key-0.2.11.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
libt3key-0.2.11.tar.bz2.sig
Normal file
BIN
libt3key-0.2.11.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 25 00:29:31 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 0.2.11
|
||||||
|
* GCC 14 support
|
||||||
|
- Delete ncurses.patch (merged)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 2 15:11:49 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Add ncurses.patch to fix FTBFS with gcc-14
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 19 23:50:58 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
Thu Dec 19 23:50:58 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libt3key
|
# spec file for package libt3key
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LLC
|
# Copyright (c) 2024 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
|
||||||
@ -18,13 +18,12 @@
|
|||||||
|
|
||||||
Name: libt3key
|
Name: libt3key
|
||||||
%define lname libt3key1
|
%define lname libt3key1
|
||||||
Version: 0.2.10
|
Version: 0.2.11
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Tilde Toolkit's terminal key sequence database library
|
Summary: The Tilde Toolkit's terminal key sequence database library
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: https://os.ghalkes.nl/t3/libt3key.html
|
URL: https://os.ghalkes.nl/t3/libt3key.html
|
||||||
|
|
||||||
#Git-Clone: https://github.com/gphalkes/t3key
|
#Git-Clone: https://github.com/gphalkes/t3key
|
||||||
Source: https://os.ghalkes.nl/dist/%name-%version.tar.bz2
|
Source: https://os.ghalkes.nl/dist/%name-%version.tar.bz2
|
||||||
Source2: https://os.ghalkes.nl/dist/%name-%version.tar.bz2.sig
|
Source2: https://os.ghalkes.nl/dist/%name-%version.tar.bz2.sig
|
||||||
@ -77,29 +76,29 @@ emulators, to key symbols.
|
|||||||
This subpackage contains the t3learnkeys and t3keyc programs.
|
This subpackage contains the t3learnkeys and t3keyc programs.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CC=gcc
|
export CC=gcc
|
||||||
%configure --docdir="%_docdir/%name"
|
# not autoconf :-/
|
||||||
make %{?_smp_mflags}
|
./configure --prefix="%_prefix" --includedir="%_includedir/t3/key" \
|
||||||
|
--libdir="%_libdir" --docdir="%_docdir/%name"
|
||||||
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
rm -f "%buildroot/%_libdir"/*.la
|
rm -f "%buildroot/%_libdir"/*.la
|
||||||
|
chmod a+x "%buildroot/%_libdir"/*.so*
|
||||||
%fdupes %buildroot/%_prefix
|
%fdupes %buildroot/%_prefix
|
||||||
|
|
||||||
%post -p /sbin/ldconfig -n %lname
|
%ldconfig_scriptlets -n %lname
|
||||||
%postun -p /sbin/ldconfig -n %lname
|
|
||||||
|
|
||||||
%files -n %lname
|
%files -n %lname
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libt3key.so.1*
|
%_libdir/libt3key.so.1*
|
||||||
%doc COPYING
|
|
||||||
%_datadir/%lname/
|
%_datadir/%lname/
|
||||||
|
%license COPYING
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%_includedir/t3/
|
%_includedir/t3/
|
||||||
%_libdir/libt3key.so
|
%_libdir/libt3key.so
|
||||||
%_libdir/pkgconfig/libt3key.pc
|
%_libdir/pkgconfig/libt3key.pc
|
||||||
@ -107,7 +106,6 @@ rm -f "%buildroot/%_libdir"/*.la
|
|||||||
%exclude %_docdir/%name/COPYING
|
%exclude %_docdir/%name/COPYING
|
||||||
|
|
||||||
%files utils
|
%files utils
|
||||||
%defattr(-,root,root)
|
|
||||||
%_bindir/t3*
|
%_bindir/t3*
|
||||||
%_mandir/man1/t3*.1*
|
%_mandir/man1/t3*.1*
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user