summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaphaël Doursenaud2018-06-15 12:17:59 +0200
committerRaphaël Doursenaud2018-06-15 12:18:30 +0200
commita8bde9410dbeb2d3b9b4a9eeab7372411cd3fc13 (patch)
treea65b6e58c21dadb46342abda6965b96cdf110a63
downloadaur-a8bde9410dbeb2d3b9b4a9eeab7372411cd3fc13.tar.gz
First package for v8.0.11
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD27
2 files changed, 43 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..69ad125f5599
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Fri Jun 15 10:18:30 UTC 2018
+pkgbase = mysql-shell
+ pkgdesc = An interactive Javascript, Python, or SQL interface supporting development and administration for the MySQL Server.
+ pkgver = 8.0.11
+ pkgrel = 1
+ url = https://dev.mysql.com/downloads/shell/
+ arch = x86_64
+ license = GPL
+ depends = python2
+ options = !emptydirs
+ source = https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-8.0.11-linux-glibc2.12-x86-64bit.tar.gz
+ md5sums = 3c28a8ee2f4fbcfc24e88d15cad4f2fc
+
+pkgname = mysql-shell
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d6ad22737075
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Raphaël Doursenaud <rdoursenaud@free.fr>
+pkgname=mysql-shell
+pkgver=8.0.11
+pkgrel=1
+pkgdesc="An interactive Javascript, Python, or SQL interface supporting development and administration for the MySQL Server."
+arch=('x86_64')
+url="https://dev.mysql.com/downloads/shell/"
+license=('GPL')
+groups=()
+depends=('python2')
+makedepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+options=(!emptydirs)
+install=
+source=(https://dev.mysql.com/get/Downloads/MySQL-Shell/${pkgname}-${pkgver}-linux-glibc2.12-x86-64bit.tar.gz)
+md5sums=('3c28a8ee2f4fbcfc24e88d15cad4f2fc')
+# mysql-build@oss.oracle.com
+validpgpkeys=('A4A9406876FCBD3C456770C88C718D3B5072E1F5')
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}-linux-glibc2.12-x86-64bit"
+ install -d "${pkgdir}/usr/"
+ cp -a * "${pkgdir}/usr/"
+}