upg python-zipp
add subspace
This commit is contained in:
parent
f95454c0e1
commit
64dca26386
8 changed files with 98 additions and 11 deletions
|
@ -6,15 +6,16 @@
|
|||
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
||||
|
||||
pkgname=python-zipp
|
||||
pkgver=3.14.0
|
||||
_commit=44bf8757105b6687db196feae8090c24f367cc7f
|
||||
pkgver=3.15.0
|
||||
_commit=63bdf88e27717fea6924664f1cb3c30b7875f0ea
|
||||
pkgrel=01
|
||||
pkgdesc="Pathlib-compatible object wrapper for zip files"
|
||||
url="https://github.com/jaraco/zipp"
|
||||
arch=('any')
|
||||
depends=('python')
|
||||
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 'python-toml' 'python-wheel')
|
||||
checkdepends=('python-jaraco.itertools' 'python-func-timeout' 'python-more-itertools')
|
||||
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 'python-wheel')
|
||||
#3.14.0 checkdepends=('python-jaraco.itertools' 'python-func-timeout' 'python-more-itertools')
|
||||
checkdepends=('python-jaraco.itertools' 'python-more-itertools' 'python-big-o')
|
||||
#source=("https://github.com/jaraco/zipp/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
|
||||
source=("git+https://github.com/jaraco/zipp.git#commit=$_commit")
|
||||
#export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
|
||||
|
@ -41,6 +42,6 @@ license=('MIT')
|
|||
|
||||
sha256sums=(SKIP)
|
||||
|
||||
## 1e679d1d3b1ab036c4331810847f28f82709550588ee86e8fe334030c1bcafd7 python-zipp-3.14.0-01-any.pkg.tar.lz
|
||||
## 0f826bb85ab16d1b275aa3eef51552bbee604736cdd4d768c646d86a5e200db7 python-zipp-3.15.0-01-any.pkg.tar.lz
|
||||
|
||||
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
||||
|
||||
pkgname=python-zipp
|
||||
pkgver=3.14.0
|
||||
_commit=44bf8757105b6687db196feae8090c24f367cc7f
|
||||
pkgver=3.15.0
|
||||
_commit=63bdf88e27717fea6924664f1cb3c30b7875f0ea
|
||||
pkgrel=1
|
||||
pkgdesc="Pathlib-compatible object wrapper for zip files"
|
||||
url="https://github.com/jaraco/zipp"
|
||||
license=('MIT')
|
||||
arch=('any')
|
||||
depends=('python')
|
||||
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 'python-toml' 'python-wheel')
|
||||
checkdepends=('python-jaraco.itertools' 'python-func-timeout' 'python-more-itertools')
|
||||
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 'python-wheel')
|
||||
checkdepends=('python-jaraco.itertools' 'python-more-itertools' 'python-big-o')
|
||||
source=("git+https://github.com/jaraco/zipp.git#commit=$_commit")
|
||||
sha512sums=('SKIP')
|
||||
|
||||
|
|
|
@ -2,10 +2,9 @@ python
|
|||
python-build
|
||||
python-installer
|
||||
python-setuptools-scm
|
||||
python-toml
|
||||
python-wheel
|
||||
python-jaraco.itertools
|
||||
python-func-timeout
|
||||
python-big-o
|
||||
libnsl
|
||||
git
|
||||
|
||||
|
|
45
subspace/PKGBUILD
Normal file
45
subspace/PKGBUILD
Normal file
|
@ -0,0 +1,45 @@
|
|||
#!/usr/bin/bash
|
||||
# JOBoRun : Jwm OpenBox Obarun RUNit
|
||||
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
||||
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcomm/$pkgname"
|
||||
# Website : https://pozol.eu
|
||||
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
||||
|
||||
pkgname=subspace
|
||||
pkgver=1.5.0
|
||||
pkgrel=03
|
||||
#epoch=
|
||||
pkgdesc="A Wireguard management interface"
|
||||
url="https://github.com/subspacecommunity/subspace"
|
||||
depends=()
|
||||
makedepends=('go-bindata' 'go')
|
||||
provides=($pkgname=$pkgver)
|
||||
conflicts=(subspace-git)
|
||||
replaces=(subspace-git)
|
||||
#backup=()
|
||||
#options=()
|
||||
#install=
|
||||
#changelog=
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/subspacecommunity/subspace/archive/refs/tags/v${pkgver}.tar.gz")
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
install -Dm755 subspace ${pkgdir}/usr/bin/subspace
|
||||
}
|
||||
|
||||
#---- arch license gpg-key and sha256sums ----
|
||||
|
||||
arch=(x86_64)
|
||||
|
||||
license=('GPL')
|
||||
|
||||
#validpgpkeys=()
|
||||
|
||||
sha256sums=('1f521e3aad02f02bcc9f018a5ff671bf4a6b9c8613476f7f5b8e3b149c97a0aa')
|
||||
|
||||
## be39a8be47e36dfc32acf9b454dbb1d2a77a59872ac3856d1ed8e9ba6a9244c0 subspace-1.5.0-03-x86_64.pkg.tar.lz
|
31
subspace/PKGBUILD-aur
Normal file
31
subspace/PKGBUILD-aur
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: 4censord <mail@business-insulting.de>
|
||||
pkgname=subspace
|
||||
pkgver=1.5.0
|
||||
pkgrel=2
|
||||
epoch=
|
||||
pkgdesc="A Wireguard management interface"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/subspacecommunity/subspace"
|
||||
license=('GPL')
|
||||
depends=()
|
||||
makedepends=('go-bindata' 'go')
|
||||
provides=($pkgname=$pkgver)
|
||||
conflicts=()
|
||||
replaces=()
|
||||
backup=()
|
||||
options=()
|
||||
install=
|
||||
changelog=
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/subspacecommunity/subspace/archive/refs/tags/v${pkgver}.tar.gz")
|
||||
sha256sums=('1f521e3aad02f02bcc9f018a5ff671bf4a6b9c8613476f7f5b8e3b149c97a0aa')
|
||||
validpgpkeys=()
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
install -Dm755 subspace ${pkgdir}/usr/bin/subspace
|
||||
}
|
1
subspace/clean
Normal file
1
subspace/clean
Normal file
|
@ -0,0 +1 @@
|
|||
rm -rf {src,pkg,subsp*tar.gz}
|
4
subspace/deps
Normal file
4
subspace/deps
Normal file
|
@ -0,0 +1,4 @@
|
|||
go
|
||||
go-bindata
|
||||
|
||||
|
6
subspace/time
Normal file
6
subspace/time
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
|
||||
real 0m43.263s
|
||||
user 0m53.969s
|
||||
sys 0m4.809s
|
||||
|
Loading…
Reference in a new issue