summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-02-28 22:38:56 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2023-02-28 22:58:24 +0100
commit24e92e6a6e35ba2c97e0b86f6641cdf17057a53a (patch)
tree8e529a6b769389899f0db917c139577ab6285041
parentb82ecd11c1a0e33409c8118d2acd0961f0a6cfa7 (diff)
Spec: Remove
-rw-r--r--eduvpncommon.spec52
1 files changed, 0 insertions, 52 deletions
diff --git a/eduvpncommon.spec b/eduvpncommon.spec
deleted file mode 100644
index e711acb..0000000
--- a/eduvpncommon.spec
+++ /dev/null
@@ -1,52 +0,0 @@
-%global libname eduvpn-common
-%global modname eduvpn_common
-%global sum eduVPN common Go library
-
-Name: lib%{libname}
-Version: 0.3.0
-Release: 0.1%{?dist}
-Summary: %{sum}
-
-License: MIT
-URL: https://github.com/eduvpn/eduvpn-common
-Source0: %{name}.tar.gz
-BuildRequires: make
-BuildRequires: gcc
-BuildRequires: golang
-BuildRequires: python3-devel
-BuildRequires: python3-setuptools
-BuildRequires: python3-wheel
-
-%description
-The client side Go shared library to interact with eduVPN servers
-
-%build
-make
-pushd wrappers/python
-%py3_build
-popd
-
-%install
-mkdir -p ${RPM_BUILD_ROOT}%_libdir
-find exports/lib -name '*.so' -exec mv {} ${RPM_BUILD_ROOT}%_libdir/ \;
-pushd wrappers/python
-%py3_install
-popd
-
-%files
-%_libdir/*.so
-
-%prep
-%autosetup -n %{name}-%{version}
-
-%package -n python3-%{libname}
-BuildArch: noarch
-Requires: %{name} >= 0.3.0, %{name} < 0.4.0
-Summary: Python3 eduvpncommon wrapper
-
-%description -n python3-%{libname}
-The python wrapper for the eduVPN common Go shared library
-
-%files -n python3-%{libname}
-%{python3_sitelib}/%{modname}/
-%{python3_sitelib}/%{modname}-%{version}*