forked from pool/lua-macros
- Split out from main lua packages to keep just one version for all
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-macros?expand=0&rev=1
This commit is contained in:
commit
8c1c99eb64
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
4
lua-macros.changes
Normal file
4
lua-macros.changes
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 10 11:26:37 UTC 2017 - tchvatal@suse.com
|
||||||
|
|
||||||
|
- Split out from main lua packages to keep just one version for all
|
44
lua-macros.spec
Normal file
44
lua-macros.spec
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
#
|
||||||
|
# spec file for package lua-macors
|
||||||
|
#
|
||||||
|
# Copyright (c) 2017 SUSE LINUX 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: lua-macros
|
||||||
|
Version: 20170610
|
||||||
|
Release: 0
|
||||||
|
Summary: Macros for lua language
|
||||||
|
License: MIT
|
||||||
|
Group: Development/Languages/Other
|
||||||
|
Url: http://www.lua.org
|
||||||
|
Source0: macros.lua
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description
|
||||||
|
RPM macros for lua packaging
|
||||||
|
|
||||||
|
%prep
|
||||||
|
:
|
||||||
|
|
||||||
|
%build
|
||||||
|
:
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -D -m 644 %{SOURCE0} %{buildroot}%{_libexecdir}/rpm/macros.d/macros.lua
|
||||||
|
|
||||||
|
%files
|
||||||
|
%{_libexecdir}/rpm/macros.d/macros.lua
|
||||||
|
|
||||||
|
%changelog
|
10
macros.lua
Normal file
10
macros.lua
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# RPM macros for Lua
|
||||||
|
|
||||||
|
# The major.minor version of Lua
|
||||||
|
%lua_version %(lua -e 'print(_VERSION)' | cut -d ' ' -f 2)
|
||||||
|
|
||||||
|
# compiled modules should go here
|
||||||
|
%lua_archdir %{_libdir}/lua/%{lua_version}
|
||||||
|
|
||||||
|
# pure Lua modules should go here
|
||||||
|
%lua_noarchdir %{_datadir}/lua/%{lua_version}
|
Loading…
Reference in New Issue
Block a user