Compare commits
35 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b86b3c332f | ||
|
|
610be78fbf | ||
|
|
4b5c0b8e49 | ||
|
|
08b687ea1d | ||
|
|
d0e3255ce5 | ||
|
|
e27a7e968f | ||
|
|
758c986f06 | ||
|
|
7ae0e189f0 | ||
|
|
0f606a6ad2 | ||
|
|
308e9b182c | ||
|
|
df056b18c3 | ||
|
|
a1788fbf03 | ||
|
|
5e49769c83 | ||
|
|
cd71c63f4e | ||
|
|
2ae9e27c80 | ||
|
|
3f73ff65f4 | ||
|
|
9b01277120 | ||
|
|
ccae0b6d3c | ||
|
|
989998b38c | ||
|
|
6bfe6f43b6 | ||
|
|
525c795d04 | ||
|
|
186daf673d | ||
|
|
b9f7546adf | ||
|
|
e962272745 | ||
|
|
51ced4bccb | ||
|
|
33327f8145 | ||
|
|
7807d0f022 | ||
|
|
35f820665f | ||
|
|
35ce0d27a7 | ||
|
|
a3671fa6dd | ||
|
|
ca53ba88e2 | ||
|
|
8e5302a396 | ||
|
|
15641ecf77 | ||
|
|
1e0e3e9e75 | ||
|
|
b60bda514c |
6 changed files with 1 additions and 85 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +0,0 @@
|
|||
/zezere-0.1.tar.gz
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
From 934bc584b58885e9e80fde65fbe0795ddb024c70 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Robinson <pbrobinson@gmail.com>
|
||||
Date: Thu, 5 Dec 2019 19:06:16 +0000
|
||||
Subject: [PATCH] add setup.py
|
||||
|
||||
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
|
||||
---
|
||||
setup.py | 23 +++++++++++++++++++++++
|
||||
1 file changed, 23 insertions(+)
|
||||
create mode 100644 setup.py
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
new file mode 100644
|
||||
index 0000000..d5e495b
|
||||
--- /dev/null
|
||||
+++ b/setup.py
|
||||
@@ -0,0 +1,23 @@
|
||||
+from setuptools import setup, find_packages
|
||||
+
|
||||
+setup(
|
||||
+ name = "zezere",
|
||||
+ version = "0.1",
|
||||
+ author = "Patrick Uiterwijk",
|
||||
+ author_email = "patrick@puiterwijk.org",
|
||||
+ description = "A provisioning server for Fedora IoT.",
|
||||
+ long_description = "README.rst",
|
||||
+ license = "MPL",
|
||||
+ keywords = "provisioning IoT Linux",
|
||||
+ url = "https://github.com/fedora-iot/zezere",
|
||||
+ packages = find_packages(),
|
||||
+ include_package_data = True,
|
||||
+ platforms = "any",
|
||||
+ install_requires = list(val.strip() for val in open("requirements.txt")),
|
||||
+ classifiers=[
|
||||
+ "License :: OSI Approved :: MIT License",
|
||||
+ "Programming Language :: Python",
|
||||
+ "Programming Language :: Python :: 3",
|
||||
+ ],
|
||||
+
|
||||
+)
|
||||
--
|
||||
2.23.0
|
||||
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# zezere
|
||||
|
||||
The zezere package
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
No longer used by IoT
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
SHA512 (zezere-0.1.tar.gz) = d475770a7651342ef230df671d7052258355fbd9b7914df0fc2d98213cf4efe4c439dd7c3639e412a98956ec5ff8904a9fdcbcf7e30bf03db61b730552e6f882
|
||||
37
zezere.spec
37
zezere.spec
|
|
@ -1,37 +0,0 @@
|
|||
Name: zezere
|
||||
Version: 0.1
|
||||
Release: 2%{?dist}
|
||||
Summary: A provisioning service for Fedora IoT
|
||||
License: MIT
|
||||
URL: https://github.com/fedora-iot/zezere
|
||||
Source0: https://github.com/fedora-iot/zezere/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Patch0: 0001-add-setup.py.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
%description
|
||||
Zezere is a provisioning service for Fedora IoT. It can be used for deploying
|
||||
Fedora IoT to devices without needing a physical console.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%{python3_sitelib}/zezere/
|
||||
%{python3_sitelib}/zezere-*
|
||||
|
||||
%changelog
|
||||
* Thu Dec 5 2019 Peter Robinson <pbrobinson@fedoraproject.org> 0.1-2
|
||||
- Review fixes and updates
|
||||
|
||||
* Thu Dec 5 2019 Peter Robinson <pbrobinson@fedoraproject.org> 0.1-1
|
||||
- Initial package
|
||||
Loading…
Add table
Add a link
Reference in a new issue