From a05183b10953178e5f9c97a958d76d993a95d2576e68ae93e3eea282bc3b8f83 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 13 Oct 2016 08:02:54 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + _service | 14 ++++++++ ell-0~1278.tar.xz | 3 ++ ell.changes | 4 +++ ell.spec | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 134 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _service create mode 100644 ell-0~1278.tar.xz create mode 100644 ell.changes create mode 100644 ell.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/_service b/_service new file mode 100644 index 0000000..bd015cb --- /dev/null +++ b/_service @@ -0,0 +1,14 @@ + + + git + git://git.kernel.org/pub/scm/libs/ell/ell + master + 67801d2476b0db0884a3139ff0c8ba6a6f56c066 + 0~@TAG_OFFSET@ + + + *.tar + xz + + + diff --git a/ell-0~1278.tar.xz b/ell-0~1278.tar.xz new file mode 100644 index 0000000..198cc26 --- /dev/null +++ b/ell-0~1278.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40693b90df66aa5ad855c242db1c759dc1bd7912e18aadbcaa5a564acc020ad +size 172236 diff --git a/ell.changes b/ell.changes new file mode 100644 index 0000000..5493df2 --- /dev/null +++ b/ell.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Sep 30 13:52:24 UTC 2016 - jengelh@inai.de + +- Initial package (version 0~1278) for build.opensuse.org diff --git a/ell.spec b/ell.spec new file mode 100644 index 0000000..c3aea92 --- /dev/null +++ b/ell.spec @@ -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