Files
erlang-envy/erlang-envy.spec
Matwey Kornilov ad4eda1cf0 Accepting request 974458 from home:jubalh:branches:devel:languages:erlang
- Update to version 0.5.0+git20160408.0148fb4:
  * Allow undefined as the default value
  * add new proplist_get to validate values out of a proplist
  * fix envy:get in host_to_ip/3 to put default in the right place
  * Add envy:one_of helper method
  * Added travis.yml
  * Improved envy:get's -specs
  * Experimental code to add parsing support to envy.
  * Remove debugval output, fix copyright.
  * Centralize type constraint declaration
  * envy_type_validator is a type spec, not an atom
- Run spec-cleaner
- Update URL

OBS-URL: https://build.opensuse.org/request/show/974458
OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/erlang-envy?expand=0&rev=3
2022-05-02 18:36:50 +00:00

61 lines
1.8 KiB
RPMSpec

#
# spec file for package erlang-envy
#
# Copyright (c) 2022 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define app_name envy
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
Name: erlang-%{app_name}
Version: 0.5.0+git20160408.0148fb4
Release: 0
Summary: An enhancement for application:get_env
License: Apache-2.0
Group: Development/Libraries/Other
URL: https://github.com/markan/envy
Source: %{app_name}-%{version}.tar.bz2
BuildRequires: erlang
BuildRequires: erlang-rebar
Requires: erlang
%description
An enhancement for application:get_env to provide data validation and sensible error messages.
%prep
%setup -q -n %{app_name}-%{version}
%build
%{rebar_set_vsn_cache %{app_ver}}
%rebar compile
%install
for dir in ebin ; do
mkdir -p %{buildroot}%{erlang_libdir}/%{app_name}-%{app_ver}/${dir}
cp -r ${dir}/* %{buildroot}%{erlang_libdir}/%{app_name}-%{app_ver}/${dir}/
done
%check
%rebar eunit
%files
%license LICENSE
%doc README.md
%dir %{erlang_libdir}/%{app_name}-%{app_ver}
%dir %{erlang_libdir}/%{app_name}-%{app_ver}/ebin
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/%{app_name}.app
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/*.beam
%changelog