Accepting request 431557 from home:jengelh:dev
add changes file OBS-URL: https://build.opensuse.org/request/show/431557 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/ell?expand=0&rev=1
This commit is contained in:
commit
a05183b109
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
|
14
_service
Normal file
14
_service
Normal file
@ -0,0 +1,14 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="localonly">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">git://git.kernel.org/pub/scm/libs/ell/ell</param>
|
||||
<param name="revision">master</param>
|
||||
<param name="parent-tag">67801d2476b0db0884a3139ff0c8ba6a6f56c066</param>
|
||||
<param name="versionformat">0~@TAG_OFFSET@</param>
|
||||
</service>
|
||||
<service name="recompress" mode="localonly">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="localonly"/>
|
||||
</services>
|
3
ell-0~1278.tar.xz
Normal file
3
ell-0~1278.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e40693b90df66aa5ad855c242db1c759dc1bd7912e18aadbcaa5a564acc020ad
|
||||
size 172236
|
4
ell.changes
Normal file
4
ell.changes
Normal file
@ -0,0 +1,4 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 30 13:52:24 UTC 2016 - jengelh@inai.de
|
||||
|
||||
- Initial package (version 0~1278) for build.opensuse.org
|
89
ell.spec
Normal file
89
ell.spec
Normal file
@ -0,0 +1,89 @@
|
||||
#
|
||||
# spec file for package ell
|
||||
#
|
||||
# Copyright (c) 2016 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/
|
||||
#
|
||||
|
||||
|
||||
%define version_unconverted 0~1278
|
||||
|
||||
Name: ell
|
||||
%define lname libell0
|
||||
Summary: Wireless setup and cryptography library
|
||||
License: LGPL-2.1+
|
||||
Group: Development/Libraries/C and C++
|
||||
Version: 0~1278
|
||||
Release: 0
|
||||
|
||||
#Git-Clone: git://git.kernel.org/pub/scm/libs/ell/ell.git
|
||||
Source: ell-%version.tar.xz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libtool >= 2.2
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: xz
|
||||
|
||||
%description
|
||||
The "Embedded Linux Library" implements an API for wireless
|
||||
cryptography actions by using the kernel crypto API.
|
||||
|
||||
%package -n %lname
|
||||
Summary: Wireless setup and cryptography library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %lname
|
||||
The "Embedded Linux Library" implements an API for wireless
|
||||
cryptography actions by using the kernel crypto API.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for the ELL wireless setup/crypto library
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %lname = %version
|
||||
|
||||
%description devel
|
||||
The "Embedded Linux Library" implements an API for wireless
|
||||
cryptography actions by using the kernel crypto API.
|
||||
|
||||
This subpackage contains libraries and header files for developing
|
||||
applications that want to make use of ell.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
./bootstrap
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
rm -f "%buildroot/%_libdir"/*.la
|
||||
|
||||
%check
|
||||
make check || :
|
||||
|
||||
%post -n %lname -p /sbin/ldconfig
|
||||
%postun -n %lname -p /sbin/ldconfig
|
||||
|
||||
%files -n %lname
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libell.so.0*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libell.so
|
||||
%_libdir/pkgconfig/*.pc
|
||||
%_includedir/ell/
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user