commit a8100150523d15915ee1a9296d90fe64b39ce8c6a373672bc934b6f7d59de318 Author: Dr. Werner Fink Date: Fri Jun 14 13:34:19 2013 +0000 The TILDE command-line editor OBS-URL: https://build.opensuse.org/package/show/editors/libt3key?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/libt3key-0.2.5.tar.bz2 b/libt3key-0.2.5.tar.bz2 new file mode 100644 index 0000000..0ea4275 --- /dev/null +++ b/libt3key-0.2.5.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37389b10b3799aa8b3083b4de77da79fd8e3f4aae6ad24b044b218bd512cfe2 +size 131675 diff --git a/libt3key.changes b/libt3key.changes new file mode 100644 index 0000000..591e689 --- /dev/null +++ b/libt3key.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Jun 10 12:46:54 UTC 2013 - jengelh@inai.de + +- Initial package (version 0.2.5) for build.opensuse.org diff --git a/libt3key.spec b/libt3key.spec new file mode 100644 index 0000000..e38cd2a --- /dev/null +++ b/libt3key.spec @@ -0,0 +1,117 @@ +# +# spec file for package libt3key +# +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# 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: libt3key +%define lname libt3key1 +Version: 0.2.5 +Release: 0 +Summary: The Tilde Toolkit's terminal key sequence database library +License: GPL-3.0 +Group: Development/Libraries/C and C++ +Url: http://os.ghalkes.nl/t3/libt3key.html + +#Git-Clone: git://github.com/gphalkes/t3key +Source: http://os.ghalkes.nl/dist/%name-%version.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: gettext-tools +BuildRequires: libtool +BuildRequires: ncurses-devel +BuildRequires: pkgconfig +BuildRequires: pkgconfig(libt3config) >= 0.2.5 +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xcb) +%if 0%{?suse_version} +BuildRequires: fdupes +%endif + +%description +libt3key is library that provides a database of mappings from escape +sequences as generated by different consoles and terminals or +emulators, to key symbols. + +%package -n %lname +Summary: The Tilde Toolkit's terminal key sequence database library +Group: System/Libraries + +%description -n %lname +libt3key is library that provides a database of mappings from escape +sequences as generated by different consoles and terminals or +emulators, to key symbols. + +%package devel +Summary: Development files for libt3key, a terminal key sequence db library +Group: Development/Libraries/C and C++ +Requires: %lname = %version + +%description devel +libt3key is library that provides a database of mappings from escape +sequences as generated by different consoles and terminals or +emulators, to key symbols. + +This subpackage contains libraries and header files for developing +applications that want to make use of libt3key. + +%package utils +Summary: Utilities for working with libt3key terminal descriptions +Group: System/Base + +%description utils +libt3key is library that provides a database of mappings from escape +sequences as generated by different consoles and terminals or +emulators, to key symbols. + +This subpackage contains the t3learnkeys and t3keyc programs. + +%prep +%setup -q + +%build +%configure --docdir="%_docdir/%name" +make %{?_smp_mflags} + +%install +b="%buildroot" +make install DESTDIR="$b" +rm -f "$b/%_libdir"/*.la +%if 0%{?fdupes:1} +%fdupes %buildroot/%_prefix +%endif + +%post -p /sbin/ldconfig -n %lname +%postun -p /sbin/ldconfig -n %lname + +%files -n %lname +%defattr(-,root,root) +%_libdir/libt3key.so.1* +%doc COPYING +%_datadir/%lname/ + +%files devel +%defattr(-,root,root) +%_includedir/t3/ +%_libdir/libt3key.so +%_libdir/pkgconfig/libt3key.pc +%_docdir/%name/ +%exclude %_docdir/%name/COPYING + +%files utils +%defattr(-,root,root) +%_bindir/t3* +%_mandir/man1/t3*.1* + +%changelog