summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO8
-rw-r--r--.gitignore8
-rw-r--r--PKGBUILD8
3 files changed, 12 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index afe0211f17ba..3f81edb3b56d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-mcipc-git
pkgdesc = Python 3 library and scripts for the RCON and Query protocol
- pkgver = r145.fbb3c3e
- pkgrel = 1
+ pkgver = latest
+ pkgrel = 2
url = https://github.com/coNQP/mcipc
arch = any
license = GPLv3
@@ -10,8 +10,8 @@ pkgbase = python-mcipc-git
depends = python
depends = python-pyzmq
optdepends = python-docopt: for scripts
- provides = mcipc-git
- replaces = mcipc-git
+ provides = python-mcipc
+ conflicts = python-mcipc
source = mcipc::git+https://github.com/coNQP/mcipc.git
md5sums = SKIP
diff --git a/.gitignore b/.gitignore
index e9fdfe5144ef..018a3de08144 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-src
-pkg
-*.tar.xz*
-mcipc
+*
+!PKGBUILD
+!.SRCINFO
+!.gitignore
diff --git a/PKGBUILD b/PKGBUILD
index 8472b17cb1e5..7d29db9e6c6d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,8 @@
_pkgbase='mcipc'
pkgname="python-${_pkgbase}-git"
-pkgver=r145.fbb3c3e
-pkgrel=1
+pkgver=latest
+pkgrel=2
pkgdesc='Python 3 library and scripts for the RCON and Query protocol'
arch=('any')
url="https://github.com/coNQP/${_pkgbase}"
@@ -11,8 +11,8 @@ license=('GPLv3')
depends=('python' 'python-pyzmq')
optdepends=('python-docopt: for scripts')
makedepends=('git' 'python')
-provides=('mcipc-git')
-replaces=('mcipc-git')
+provides=("python-${_pkgbase}")
+conflicts=("python-${_pkgbase}")
source=("${_pkgbase}::git+${url}.git")
md5sums=('SKIP')
pkgdir='pkg'