summaryrefslogtreecommitdiffstats
path: root/httpx-bin
diff options
context:
space:
mode:
authorYigit Sever2024-07-05 16:36:22 +0300
committerYigit Sever2024-07-05 16:36:22 +0300
commit50c3510b93bffe68b153e70d465e0e7b570739ca (patch)
tree5228ad7ed3812b5151864270396ddca1e6c28b46 /httpx-bin
parente616862c7bef33812ea84f809a00e83fe24078c3 (diff)
downloadpackages-50c3510b93bffe68b153e70d465e0e7b570739ca.tar.gz
packages-50c3510b93bffe68b153e70d465e0e7b570739ca.tar.bz2
packages-50c3510b93bffe68b153e70d465e0e7b570739ca.zip
Deleted package: httpx-bin
Diffstat (limited to 'httpx-bin')
-rw-r--r--httpx-bin/.SRCINFO21
-rw-r--r--httpx-bin/.gitignore5
-rw-r--r--httpx-bin/PKGBUILD29
-rw-r--r--httpx-bin/httpx-bin.install9
4 files changed, 0 insertions, 64 deletions
diff --git a/httpx-bin/.SRCINFO b/httpx-bin/.SRCINFO
deleted file mode 100644
index 877ff55..0000000
--- a/httpx-bin/.SRCINFO
+++ /dev/null
@@ -1,21 +0,0 @@
1pkgbase = httpx-bin
2 pkgdesc = Fast and multi-purpose HTTP toolkit
3 pkgver = 1.6.5
4 pkgrel = 1
5 url = https://github.com/projectdiscovery/httpx
6 install = httpx-bin.install
7 arch = x86_64
8 arch = armv6h
9 arch = aarch64
10 license = MIT
11 provides = httpx
12 conflicts = httpx
13 options = !strip
14 source_x86_64 = httpx-1.6.5-x86_64.zip::https://github.com/projectdiscovery/httpx/releases/download/v1.6.5/httpx_1.6.5_linux_amd64.zip
15 sha256sums_x86_64 = b5099ec8e849cd8bc5e1136d08956b0de6f5566b3df728cc487552bd05cedf7e
16 source_armv6h = httpx-1.6.5-armv6.zip::https://github.com/projectdiscovery/httpx/releases/download/v1.6.5/httpx_1.6.5_linux_arm.zip
17 sha256sums_armv6h = 20419a5278140e00e05b1ebbf73166ebc3f886a83b2735ee8d7e9b0d793a0b31
18 source_aarch64 = httpx-1.6.5-aarch64.zip::https://github.com/projectdiscovery/httpx/releases/download/v1.6.5/httpx_1.6.5_linux_arm64.zip
19 sha256sums_aarch64 = 2fb192d24a8cbdbfb0a348baf22ffe0e8af0dc2afee04506213c6f0941d89f27
20
21pkgname = httpx-bin
diff --git a/httpx-bin/.gitignore b/httpx-bin/.gitignore
deleted file mode 100644
index 623d0e7..0000000
--- a/httpx-bin/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
1*
2!.gitignore
3!.SRCINFO
4!PKGBUILD
5
diff --git a/httpx-bin/PKGBUILD b/httpx-bin/PKGBUILD
deleted file mode 100644
index 0b1a2e7..0000000
--- a/httpx-bin/PKGBUILD
+++ /dev/null
@@ -1,29 +0,0 @@
1# Maintainer: Yigit Sever <yigit at yigitsever dot com>
2# Contributor: Caltlgin Stsodaat <contact@fossdaily.xyz>
3
4_pkgname='httpx'
5pkgname="${_pkgname}-bin"
6pkgver=1.6.5
7pkgrel=1
8pkgdesc='Fast and multi-purpose HTTP toolkit'
9arch=('x86_64' 'armv6h' 'aarch64')
10url='https://github.com/projectdiscovery/httpx'
11license=('MIT')
12provides=("${_pkgname}")
13conflicts=("${_pkgname}")
14options=('!strip')
15install="${pkgname}.install"
16
17source_x86_64=("${_pkgname}-${pkgver}-x86_64.zip::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_linux_amd64.zip")
18source_armv6h=("${_pkgname}-${pkgver}-armv6.zip::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_linux_arm.zip")
19source_aarch64=("${_pkgname}-${pkgver}-aarch64.zip::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_linux_arm64.zip")
20
21sha256sums_x86_64=('b5099ec8e849cd8bc5e1136d08956b0de6f5566b3df728cc487552bd05cedf7e')
22sha256sums_armv6h=('20419a5278140e00e05b1ebbf73166ebc3f886a83b2735ee8d7e9b0d793a0b31')
23sha256sums_aarch64=('2fb192d24a8cbdbfb0a348baf22ffe0e8af0dc2afee04506213c6f0941d89f27')
24
25package() {
26 install -Dvm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}-toolkit"
27 install -Dvm644 'README.md' -t "${pkgdir}/usr/share/doc/${_pkgname}"
28 install -Dvm644 'LICENSE.md' "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
29}
diff --git a/httpx-bin/httpx-bin.install b/httpx-bin/httpx-bin.install
deleted file mode 100644
index 0a0a1ef..0000000
--- a/httpx-bin/httpx-bin.install
+++ /dev/null
@@ -1,9 +0,0 @@
1post_upgrade() {
2 cat <<- 'EOF'
3
4The httpx binary has been installed as httpx-toolkit
5Please adjust your workflow accordingly
6This has been done to prevent a name clash with:
7https://archlinux.org/packages/extra/any/python-httpx/
8EOF
9}