summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Lambiris2019-12-18 02:45:26 -0500
committerTony Lambiris2019-12-18 02:45:26 -0500
commit451245b2e4cf06e4b0ceb30a18433bfbfc390586 (patch)
treeb8669ed7f2457d646eca682956aed3f645cc1427
parent1106ef44b23f399c4ca3c9cfec259df9f425e4db (diff)
downloadaur-451245b2e4cf06e4b0ceb30a18433bfbfc390586.tar.gz
Version bump
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD12
2 files changed, 7 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fc32942f6dd4..b08a4a8a6f0b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = rocksdb-static
pkgdesc = Embedded key-value store for fast storage (static library)
- pkgver = 6.2.2
+ pkgver = 6.5.2
pkgrel = 1
url = http://rocksdb.org
arch = i686
@@ -13,10 +13,8 @@ pkgbase = rocksdb-static
depends = lz4
depends = snappy
depends = gcc-libs
- source = https://github.com/facebook/rocksdb/archive/v6.2.2.tar.gz
- source = fix-compile-warnings-treated-as-errors-for-gcc9.patch
- sha256sums = 3e7365cb2a35982e95e5e5dd0b3352dc78573193dafca02788572318c38483fb
- sha256sums = 775b1099346843f0598168aff8d6621857012155234a2d50f87ed4bcad363c2d
+ source = https://github.com/facebook/rocksdb/archive/v6.5.2.tar.gz
+ sha256sums = a923e36aa1cdd1429ae93a0b26baf477c714060ce7dd1c52e873754e1468d7ff
pkgname = rocksdb-static
diff --git a/PKGBUILD b/PKGBUILD
index 50ff68d9a3a9..bba2546f91ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
-# Maintainer: Tony <tony@criticalstack.com>
+# Maintainer: Tony <tony@libpcap.net>
pkgname=rocksdb-static
-pkgver=6.2.2
+pkgver=6.5.2
pkgrel=1
pkgdesc='Embedded key-value store for fast storage (static library)'
arch=(i686 x86_64)
@@ -9,10 +9,8 @@ url='http://rocksdb.org'
license=('Apache')
depends=('gperftools' 'zlib' 'bzip2' 'lz4' 'snappy' 'gcc-libs')
checkdepends=('python2')
-source=("https://github.com/facebook/rocksdb/archive/v${pkgver}.tar.gz"
- "fix-compile-warnings-treated-as-errors-for-gcc9.patch")
-sha256sums=('3e7365cb2a35982e95e5e5dd0b3352dc78573193dafca02788572318c38483fb'
- '775b1099346843f0598168aff8d6621857012155234a2d50f87ed4bcad363c2d')
+source=("https://github.com/facebook/rocksdb/archive/v${pkgver}.tar.gz")
+sha256sums=('a923e36aa1cdd1429ae93a0b26baf477c714060ce7dd1c52e873754e1468d7ff')
prepare() {
cd "${srcdir}/rocksdb-${pkgver}"
@@ -21,8 +19,6 @@ prepare() {
if [ "$CARCH" == "armv6h" ]; then
sed -e 's/-momit-leaf-frame-pointer//' -i Makefile
fi
-
- patch -F3 -p1 -i "${srcdir}/fix-compile-warnings-treated-as-errors-for-gcc9.patch"
}
build() {