SHA256
10
0
forked from pool/lua-luaterm

Accepting request 435770 from home:eeich:branches:devel:languages:lua

Initial import.

OBS-URL: https://build.opensuse.org/request/show/435770
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luaterm?expand=0&rev=1
This commit is contained in:
Matthias Mailänder
2016-10-23 05:38:57 +00:00
committed by Git OBS Bridge
commit 0430124120
6 changed files with 97 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@@ -0,0 +1 @@
.osc

5
_service Normal file
View File

@@ -0,0 +1,5 @@
<services>
<service name="download_files" mode="localonly">
<param name="enforceupstream">yes</param>
</service>
</services>

BIN
lua-luaterm-0.07.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

11
lua-luaterm.changes Normal file
View File

@@ -0,0 +1,11 @@
-------------------------------------------------------------------
Mon Oct 17 13:32:19 UTC 2016 - eich@suse.com
- Setting 'download_files' service to mode='localonly'
and adding source tarball. (Required for Factory).
-------------------------------------------------------------------
Wed Oct 12 18:21:45 UTC 2016 - eich@suse.com
- Initial import of lua-term version 0.07

54
lua-luaterm.spec Normal file
View File

@@ -0,0 +1,54 @@
#
# spec file for package lua-luaterm
#
# 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/
#
%define trans() ( echo %{1} | sed -e "s#_#\\.#g" )
%define vers_f() %(%trans)
%define mod_name lua-term
Name: lua-luaterm
Version: 0.07
Release: 0
License: MIT
Summary: Terminal operations for Lua
Url: http://github.com/hoelzro/lua-term
Group: Development/Libraries/Other
Source: https://github.com/hoelzro/lua-term/archive/%{version}.tar.gz#$/%{name}-%{version}.tar.gz
BuildRequires: lua-devel >= %{lua_version}
Requires: lua >= %{lua_version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This package provides terminal operations for Lua
%prep
%setup -q -n %{mod_name}-%{version}
%build
export OPTFLAGS="%{optflags} -fPIC"
make %{_smp_mflags}
%install
%makeinstall LUA_LIBDIR='$(DESTDIR)/%{lua_archdir}/term/' LUA_SHARE='$(DESTDIR)/%{lua_noarchdir}/term/'
%files
%defattr(-,root,root,-)
%dir %{lua_archdir}/term
%{lua_archdir}/term/core.so*
%dir %{lua_noarchdir}/term
%{lua_noarchdir}/term
%changelog