summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Bruckner2015-06-08 03:06:46 +0200
committerMax Bruckner2015-06-08 12:41:25 +0200
commitd2c47f156e4be34a0549a289f3bbb4bc5de78623 (patch)
treead3a3e620e003f0e68be55d61bb498176328d381
downloadaur-d2c47f156e4be34a0549a289f3bbb4bc5de78623.tar.gz
2.2.2-1
-rw-r--r--.SRCINFO17
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD23
3 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ed9a523725be
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = gentoo-mirrorselect
+ pkgdesc = Script for selecting Gentoo mirrors.
+ pkgver = 2.2.2
+ pkgrel = 1
+ url = http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-portage/mirrorselect/mirrorselect-9999.ebuild
+ arch = any
+ license = GPL2
+ makedepends = git
+ depends = python
+ depends = netselect
+ depends = dialog
+ depends = ssl-fetch>=0.2
+ source = git+git://anongit.gentoo.org/proj/mirrorselect.git#tag=2.2.2
+ md5sums = SKIP
+
+pkgname = gentoo-mirrorselect
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..a904a3cc8d42
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+pkg/
+src/
+*.tar.xz
+*.tar.gz
+mirrorselect/
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..8faa70c1b8fd
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer: Max Bruckner
+_basename=mirrorselect
+pkgname=gentoo-$_basename
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="Script for selecting Gentoo mirrors."
+arch=( 'any' )
+url="http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-portage/mirrorselect/mirrorselect-9999.ebuild"
+license=('GPL2')
+depends=('python' 'netselect' 'dialog' 'ssl-fetch>=0.2' )
+makedepends=('git')
+source=( "git+git://anongit.gentoo.org/proj/${_basename}.git#tag=$pkgver" )
+md5sums=( SKIP )
+
+build() {
+ cd "${srcdir}/${_basename}"
+ ./setup.py build
+}
+
+package() {
+ cd "${srcdir}/${_basename}"
+ ./setup.py install --prefix='/usr/' --root="$pkgdir"
+}