Date: Sunday, March 26, 2023 @ 11:32:28
Author: dvzrv
Revision: 1428966
archrelease: copy trunk to community-x86_64
Added:
maturin/repos/community-x86_64/PKGBUILD
(from rev 1428965, maturin/trunk/PKGBUILD)
Deleted:
maturin/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 75 +++++++++++++++++++++++++++++++++----------------------------
1 file changed, 41 insertions(+), 34 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-26 11:32:13 UTC (rev 1428965)
+++ PKGBUILD 2023-03-26 11:32:28 UTC (rev 1428966)
@@ -1,34 +0,0 @@
-# Maintainer: David Runge <[email protected]>
-
-pkgname=maturin
-pkgver=0.14.15
-pkgrel=1
-pkgdesc="Build and publish crates with pyo3, rust-cpython and cffi bindings"
-url="https://github.com/PyO3/maturin"
-arch=(x86_64)
-license=(Apache)
-depends=(gcc-libs glibc rust)
-makedepends=(bzip2 git)
-# disable LTO until ring can be built with it:
https://github.com/briansmith/ring/issues/1444
-options=(!lto)
-source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)
-sha512sums=('1ab6a20d1681df32e7e540500e8632887c27f89cf405ef62f188f8509ddab6f88ef32d3018bd56ed3c420e8736db264b01df75942503cbbbe3d613e94e9d3fc8')
-b2sums=('2463c0da03556a78e18b8f37c77ba7ed82bb7bcbe5976cb73c27bea741f348defd1cd1ea6944c1f2994853819dc9bb83d29883076aa2e9ac2a66b62fba4ee304')
-
-prepare() {
- cd $pkgname-$pkgver
- cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
- cd $pkgname-$pkgver
- cargo build --frozen --release --all-features
-}
-
-package() {
- depends+=(libbz2.so)
-
- cd $pkgname-$pkgver
- install -vDm 755 target/release/maturin -t "$pkgdir/usr/bin/"
- install -vDm 644 {Changelog,README}.md -t "$pkgdir/usr/share/doc/$pkgname/"
-}
Copied: maturin/repos/community-x86_64/PKGBUILD (from rev 1428965,
maturin/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-26 11:32:28 UTC (rev 1428966)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge <[email protected]>
+
+pkgname=maturin
+pkgver=0.14.16
+pkgrel=1
+pkgdesc="Build and publish crates with pyo3, rust-cpython and cffi bindings"
+url="https://github.com/PyO3/maturin"
+arch=(x86_64)
+license=(Apache)
+depends=(
+ gcc-libs
+ glibc
+ rust
+)
+makedepends=(
+ bzip2
+ git
+)
+# disable LTO until ring can be built with it:
https://github.com/briansmith/ring/issues/1444
+options=(!lto)
+source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)
+sha512sums=('8e7e5739b9ff46989011035634c29aa390c60dd5b109f41dcd47bdf6ffb7081bf5ebc160cbae6647baeaa4d3f209167f48ea52ea9b3b676e978617d28bb9c121')
+b2sums=('8731fa1ef7ebb6d1645f25ab431cc53d66748a8a54f6d9ea690a09bd753ca15063eeba90296aeac1fd2360feef168c9e64f9ec1b5224e72063c4949a58f876a8')
+
+prepare() {
+ cd $pkgname-$pkgver
+ cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+ cd $pkgname-$pkgver
+ cargo build --frozen --release --all-features
+}
+
+package() {
+ depends+=(libbz2.so)
+
+ cd $pkgname-$pkgver
+ install -vDm 755 target/release/maturin -t "$pkgdir/usr/bin/"
+ install -vDm 644 {Changelog,README}.md -t "$pkgdir/usr/share/doc/$pkgname/"
+}