From f2eaffc672acb0301f6ae478fe4dd7971269ba51 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: May 08 2019 07:55:46 +0000 Subject: Initial import --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b9048ac --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/webtech-1.2.6.tar.gz diff --git a/sources b/sources new file mode 100644 index 0000000..87931f8 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (webtech-1.2.6.tar.gz) = 632c363f1756cedda254b22ad14109de9ed4365590c85dc0fc0959cab88ee9132afb968cee20652aec0613134059119703e2ef95f00fcc01c57bd7423593d930 diff --git a/webtech.spec b/webtech.spec new file mode 100644 index 0000000..6582fb1 --- /dev/null +++ b/webtech.spec @@ -0,0 +1,44 @@ +Name: webtech +Version: 1.2.6 +Release: 1%{?dist} +Summary: A tool to identify technologies used on websites + +License: GPLv3+ +URL: https://github.com/ShielderSec/webtech +Source0: https://github.com/ShielderSec/webtech/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3-setuptools + +Requires: %{py3_dist requests} + +%description +WebTech is a Python software that can identify web technologies by visiting +a given website, parsing a single response file or replaying a request +described in a text file. This way you can have reproducible results and +minimize the requests you need to make to a target website. + +%prep +%autosetup -n %{name}-%{version} +sed -i -e '/^#!\//, 1d' webtech/*.py + +%build +%py3_build + +%install +%py3_install + +%files +%doc README.md +%license LICENSE +%{_bindir}/%{name} +%{python3_sitelib}/%{name}-*.egg-info/ +%{python3_sitelib}/%{name}/ + +%changelog +* Sun Apr 28 2019 Fabian Affolter - 1.2.6-1 +- Update to latest upstream relase 1.2.6 + +* Thu Apr 11 2019 Fabian Affolter - 1.2.5-1 +- Initial package