From 31d147b20c67d95a9e306d0749200bf964ac42af Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Fri, 29 Oct 2021 01:30:24 +0300 Subject: Use actual files instead of submodules --- httpx-bin | 1 - httpx-bin/.SRCINFO | 20 ++++++++++++++++++++ httpx-bin/.gitignore | 5 +++++ httpx-bin/PKGBUILD | 28 ++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 1 deletion(-) delete mode 160000 httpx-bin create mode 100644 httpx-bin/.SRCINFO create mode 100644 httpx-bin/.gitignore create mode 100644 httpx-bin/PKGBUILD (limited to 'httpx-bin') diff --git a/httpx-bin b/httpx-bin deleted file mode 160000 index 1ddd046..0000000 --- a/httpx-bin +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1ddd046adc0bf514884a0b991deb5337716f6335 diff --git a/httpx-bin/.SRCINFO b/httpx-bin/.SRCINFO new file mode 100644 index 0000000..e621a1c --- /dev/null +++ b/httpx-bin/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = httpx-bin + pkgdesc = Fast and multi-purpose HTTP toolkit + pkgver = 1.1.3 + pkgrel = 1 + url = https://github.com/projectdiscovery/httpx + arch = x86_64 + arch = armv6h + arch = aarch64 + license = MIT + provides = httpx + conflicts = httpx + options = !strip + source_x86_64 = httpx-1.1.3-x86_64.zip::https://github.com/projectdiscovery/httpx/releases/download/v1.1.3/httpx_1.1.3_linux_amd64.zip + sha256sums_x86_64 = eadd0031b57b4caf29d59740a6d4a25dc86140e8303566849371e749345a9e82 + source_armv6h = httpx-1.1.3-armv6.zip::https://github.com/projectdiscovery/httpx/releases/download/v1.1.3/httpx_1.1.3_linux_armv6.zip + sha256sums_armv6h = 7d693eb41669be2723ef35442c67133ebdb108e319f0cf4c0f7bf659cdad9b70 + source_aarch64 = httpx-1.1.3-aarch64.zip::https://github.com/projectdiscovery/httpx/releases/download/v1.1.3/httpx_1.1.3_linux_arm64.zip + sha256sums_aarch64 = f0e80a29799b6d28f1f28878976825bd079376aea141b41bb8af8e6f3ac18da6 + +pkgname = httpx-bin diff --git a/httpx-bin/.gitignore b/httpx-bin/.gitignore new file mode 100644 index 0000000..623d0e7 --- /dev/null +++ b/httpx-bin/.gitignore @@ -0,0 +1,5 @@ +* +!.gitignore +!.SRCINFO +!PKGBUILD + diff --git a/httpx-bin/PKGBUILD b/httpx-bin/PKGBUILD new file mode 100644 index 0000000..9f7eefb --- /dev/null +++ b/httpx-bin/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Yigit Sever +# Contributor: Caltlgin Stsodaat + +_pkgname='httpx' +pkgname="${_pkgname}-bin" +pkgver=1.1.3 +pkgrel=1 +pkgdesc='Fast and multi-purpose HTTP toolkit' +arch=('x86_64' 'armv6h' 'aarch64') +url='https://github.com/projectdiscovery/httpx' +license=('MIT') +provides=("${_pkgname}") +conflicts=("${_pkgname}") +options=('!strip') + +source_x86_64=("${_pkgname}-${pkgver}-x86_64.zip::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_linux_amd64.zip") +source_armv6h=("${_pkgname}-${pkgver}-armv6.zip::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_linux_armv6.zip") +source_aarch64=("${_pkgname}-${pkgver}-aarch64.zip::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_linux_arm64.zip") + +sha256sums_x86_64=('eadd0031b57b4caf29d59740a6d4a25dc86140e8303566849371e749345a9e82') +sha256sums_armv6h=('7d693eb41669be2723ef35442c67133ebdb108e319f0cf4c0f7bf659cdad9b70') +sha256sums_aarch64=('f0e80a29799b6d28f1f28878976825bd079376aea141b41bb8af8e6f3ac18da6') + +package() { + install -Dvm755 "${_pkgname}" -t "${pkgdir}/usr/bin" + install -Dvm644 'README.md' -t "${pkgdir}/usr/share/doc/${_pkgname}" + install -Dvm644 'LICENSE.md' "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" +} -- cgit v1.2.3-70-g09d2