Accepting request 173407 from home:matwey:branches:REQUEST_173403
Resubmit 173403 with license fix. OBS-URL: https://build.opensuse.org/request/show/173407 OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/erlang-oauth?expand=0&rev=1
This commit is contained in:
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
|
17
_service
Normal file
17
_service
Normal file
@@ -0,0 +1,17 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="url">git://github.com/opscode/erlang-oauth.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="versionformat">0.0.0+git.%ct.%h</param>
|
||||
</service>
|
||||
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">erlang-oauth-*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
|
||||
<service name="set_version" mode="disabled">
|
||||
<param name="basename">erlang-oauth</param>
|
||||
</service>
|
||||
</services>
|
||||
|
3
erlang-oauth-0.0.0+git.1293882491.2b796ea.tar.gz
Normal file
3
erlang-oauth-0.0.0+git.1293882491.2b796ea.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fbd15ce2837df6e83c82d1b93cdb1842c7cb883b26f315c1ce1281d379efbb1a
|
||||
size 6096
|
10
erlang-oauth.changes
Normal file
10
erlang-oauth.changes
Normal file
@@ -0,0 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 25 15:15:55 UTC 2013 - nkrinner@suse.com
|
||||
|
||||
- Specfile cleanup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 17 15:33:12 UTC 2013 - nkrinner@suse.com
|
||||
|
||||
- Initial package
|
||||
|
50
erlang-oauth.spec
Normal file
50
erlang-oauth.spec
Normal file
@@ -0,0 +1,50 @@
|
||||
#
|
||||
# spec file for package erlang-oauth
|
||||
#
|
||||
# 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: erlang-oauth
|
||||
Version: 0.0.0+git.1293882491.2b796ea
|
||||
%define mod_ver %(echo "%{version}" | cut -d "+" -f1)
|
||||
Release: 0
|
||||
License: MIT
|
||||
Summary: Erlang OAuth implementation
|
||||
Url: http://github.com/opscode/erlang-oauth/
|
||||
Group: Development/Libraries/Other
|
||||
Source: erlang-oauth-%{version}.tar.gz
|
||||
BuildRequires: erlang-rebar
|
||||
Requires: erlang
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
An Erlang OAuth implementation.
|
||||
|
||||
%prep
|
||||
%setup -n erlang-oauth-%{version}
|
||||
|
||||
%build
|
||||
%rebar compile escriptize
|
||||
|
||||
%install
|
||||
for dir in ebin ; do
|
||||
install -d %{buildroot}%{erlang_libdir}/oauth-%{mod_ver}/${dir}
|
||||
cp -r ${dir}/* %{buildroot}%{erlang_libdir}/oauth-%{mod_ver}/${dir}/
|
||||
done
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%dir %{erlang_libdir}/oauth-%{mod_ver}
|
||||
%{erlang_libdir}/oauth-%{mod_ver}/ebin
|
||||
|
Reference in New Issue
Block a user