From 8201245685b56f71e7c2f0143b9d0efa41d04cc244870df04f1c77de839f0c41 Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Fri, 14 Jun 2013 13:34:25 +0000 Subject: [PATCH] The TILDE command-line editor OBS-URL: https://build.opensuse.org/package/show/editors/libtranscript?expand=0&rev=1 --- .gitattributes | 23 +++++++++ .gitignore | 1 + libtranscript-0.3.0.tar.bz2 | 3 ++ libtranscript.changes | 4 ++ libtranscript.spec | 94 +++++++++++++++++++++++++++++++++++++ 5 files changed, 125 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 libtranscript-0.3.0.tar.bz2 create mode 100644 libtranscript.changes create mode 100644 libtranscript.spec 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/libtranscript-0.3.0.tar.bz2 b/libtranscript-0.3.0.tar.bz2 new file mode 100644 index 0000000..31b9f58 --- /dev/null +++ b/libtranscript-0.3.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a942d4570184c325a5315277f6dda01eed956305127e2012d2cffb2579a1e01b +size 2166258 diff --git a/libtranscript.changes b/libtranscript.changes new file mode 100644 index 0000000..091857a --- /dev/null +++ b/libtranscript.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Jun 10 13:11:26 UTC 2013 - jengelh@inai.de + +- Initial package (version 0.3.0) for build.opensuse.org diff --git a/libtranscript.spec b/libtranscript.spec new file mode 100644 index 0000000..ea1ac64 --- /dev/null +++ b/libtranscript.spec @@ -0,0 +1,94 @@ +# +# spec file for package libtranscript +# +# 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: libtranscript +%define lname libtranscript1 +Version: 0.3.0 +Release: 0 +Summary: A character set conversion library +License: GPL-3.0 +Group: Development/Libraries/C and C++ +Url: http://os.ghalkes.nl/t3/libtranscript.html + +#Git-Clone: git://github.com/gphalkes/transcript +Source: http://os.ghalkes.nl/dist/%name-%version.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: gettext-tools +BuildRequires: libtool +BuildRequires: pkgconfig +%if 0%{?suse_version} +BuildRequires: fdupes +%endif + +%description +libtranscript is a character set conversion library which allows +great control over the conversion. + +%package -n %lname +Summary: A character conversion library +Group: System/Libraries + +%description -n %lname +libtranscript is a character set conversion library which allows +great control over the conversion. + +%package devel +Summary: Development files for libtranscript, a character conversion library +Group: Development/Libraries/C and C++ +Requires: %lname = %version + +%description devel +libtranscript is a character set conversion library which allows +great control over the conversion. + +This subpackage contains libraries and header files for developing +applications that want to make use of libtranscript. + +%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/libtranscript.so.1* +%doc COPYING +%_libdir/transcript1/ + +%files devel +%defattr(-,root,root) +%_includedir/transcript/ +%_libdir/libtranscript.so +%_libdir/pkgconfig/libtranscript.pc +%_docdir/%name/ +%exclude %_docdir/%name/COPYING + +%changelog