mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
update to 3.8.0
* add signature file for verification * package cleanup
This commit is contained in:
parent
b01b1e8b70
commit
b85a4fffe7
3 changed files with 1784 additions and 38 deletions
14
.SRCINFO
14
.SRCINFO
|
|
@ -1,14 +1,12 @@
|
|||
pkgbase = s3ql
|
||||
pkgdesc = A full-featured file system for online data storage.
|
||||
pkgver = 3.7.1
|
||||
pkgver = 3.8.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/s3ql/s3ql/
|
||||
install = s3ql.install
|
||||
arch = i686
|
||||
changelog = CHANGELOG
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
makedepends = gcc
|
||||
depends = python
|
||||
depends = python-cryptography
|
||||
depends = python-defusedxml
|
||||
depends = python-apsw
|
||||
|
|
@ -19,8 +17,10 @@ pkgbase = s3ql
|
|||
depends = python-requests
|
||||
depends = python-google-auth
|
||||
depends = python-google-auth-oauthlib
|
||||
source = https://github.com/s3ql/s3ql/releases/download/release-3.7.1/s3ql-3.7.1.tar.bz2
|
||||
md5sums = ef7062f834dd8ee0614b78cb6382e9a0
|
||||
source = s3ql-3.8.0.tar.gz::https://github.com/s3ql/s3ql//releases/download/release-3.8.0/s3ql-3.8.0.tar.gz
|
||||
source = s3ql-3.8.0.tar.gz.asc::https://github.com/s3ql/s3ql//releases/download/release-3.8.0/s3ql-3.8.0.tar.gz.asc
|
||||
validpgpkeys = ED31791B2C5C1613AF388B8AD113FCAC3C4E599F
|
||||
sha256sums = bc5e05b6d929c0cde12b9966f426d7eae20d6f6137aa9291dec8873154b49631
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = s3ql
|
||||
|
||||
|
|
|
|||
61
PKGBUILD
61
PKGBUILD
|
|
@ -1,43 +1,42 @@
|
|||
# Maintainer: Kazuki Sawada <kazuki@6715.jp>
|
||||
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
|
||||
# Contributor: Kazuki Sawada <kazuki@6715.jp>
|
||||
# Contributor: Lalit Maganti <laitmaganti@gmail.com>
|
||||
# Contributor: Brendan MacDonell <macdonellba at gmail dot com>
|
||||
|
||||
pkgname=s3ql
|
||||
pkgver=3.7.1
|
||||
pkgver=3.8.0
|
||||
pkgrel=1
|
||||
pkgdesc="A full-featured file system for online data storage."
|
||||
arch=('i686' 'x86_64')
|
||||
arch=('x86_64')
|
||||
url="https://github.com/s3ql/s3ql/"
|
||||
license=('GPL3')
|
||||
depends=(
|
||||
'python'
|
||||
'python-cryptography'
|
||||
'python-defusedxml'
|
||||
'python-apsw'
|
||||
'python-trio'
|
||||
'python-pyfuse3'
|
||||
'python-dugong'
|
||||
'python-systemd'
|
||||
'python-requests'
|
||||
'python-google-auth'
|
||||
'python-google-auth-oauthlib'
|
||||
)
|
||||
makedepends=('gcc')
|
||||
install="s3ql.install"
|
||||
source=(https://github.com/s3ql/s3ql/releases/download/release-$pkgver/s3ql-$pkgver.tar.bz2)
|
||||
md5sums=('ef7062f834dd8ee0614b78cb6382e9a0')
|
||||
'python-cryptography'
|
||||
'python-defusedxml'
|
||||
'python-apsw'
|
||||
'python-trio'
|
||||
'python-pyfuse3'
|
||||
'python-dugong'
|
||||
'python-systemd'
|
||||
'python-requests'
|
||||
'python-google-auth'
|
||||
'python-google-auth-oauthlib')
|
||||
install=s3ql.install
|
||||
changelog=CHANGELOG
|
||||
source=(
|
||||
"$pkgname-$pkgver.tar.gz::$url/releases/download/release-$pkgver/$pkgname-$pkgver.tar.gz"
|
||||
"$pkgname-$pkgver.tar.gz.asc::$url/releases/download/release-$pkgver/$pkgname-$pkgver.tar.gz.asc")
|
||||
sha256sums=('bc5e05b6d929c0cde12b9966f426d7eae20d6f6137aa9291dec8873154b49631'
|
||||
'SKIP')
|
||||
validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
python setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
python setup.py install --root="$pkgdir" --optimize=1
|
||||
|
||||
install -d -m 755 "$pkgdir/usr/share/doc/$pkgname"
|
||||
install -m 744 doc/manual.pdf "$pkgdir/usr/share/doc/$pkgname/manual.pdf"
|
||||
|
||||
# Install the text versions of the docs and contrib. These can be recursive, so
|
||||
# `install' isn't particularly useful.
|
||||
cp -r contrib rst "$pkgdir/usr/share/doc/$pkgname/"
|
||||
chown -R root:root "$pkgdir/usr/share/doc/$pkgname/"
|
||||
find "$pkgdir/usr/share/doc/$pkgname" -type f -exec chmod 'g-w,g+r,o-w,o+r' '{}' ';'
|
||||
export PYTHONHASHSEED=0
|
||||
cd "$pkgname-$pkgver"
|
||||
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue