parent
4ee5072c6d
commit
8d9fa13797
|
@ -1,7 +1,9 @@
|
|||
# Maintainer: Kim Silkebækken <kim.silkebaekken+aur@gmail.com>
|
||||
|
||||
pkgname=python-powerline-git
|
||||
pkgver=20130412
|
||||
_gitname=powerline
|
||||
_gitbranch=develop
|
||||
pkgname="python-${_gitname}-git"
|
||||
pkgver=793.4ee5072
|
||||
pkgrel=1
|
||||
pkgdesc='The ultimate statusline/prompt utility.'
|
||||
url='https://github.com/Lokaltog/powerline'
|
||||
|
@ -15,33 +17,19 @@ optdepends=('python-psutil: improved system information'
|
|||
'gvim: vim compiled with Python support')
|
||||
conflicts=('python2-powerline-git'
|
||||
'powerline-git')
|
||||
install='powerline.install'
|
||||
source=()
|
||||
install="${_gitname}.install"
|
||||
source=("${_gitname}::git://github.com/Lokaltog/${_gitname}.git#branch=${_gitbranch}"
|
||||
"${install}")
|
||||
sha256sums=('SKIP'
|
||||
'7b1257cdacce60e19280f7d918e5f3aa6f13b519dff16ecc6f732c881ef63ca1')
|
||||
|
||||
_gitroot="https://github.com/Lokaltog/powerline.git"
|
||||
_gitname="powerline"
|
||||
_gitbranch="develop"
|
||||
|
||||
build() {
|
||||
cd "${srcdir}"
|
||||
|
||||
msg "Connecting to GitHub..."
|
||||
|
||||
if [ -d "${srcdir}/${_gitname}" ]; then
|
||||
cd "${_gitname}"
|
||||
git pull origin "${_gitbranch}"
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone "${_gitroot}"
|
||||
cd "${_gitname}"
|
||||
git checkout "${_gitbranch}"
|
||||
fi
|
||||
|
||||
msg "Git checkout done or server timeout."
|
||||
pkgver() {
|
||||
cd "${_gitname}"
|
||||
echo "$(git rev-list --count ${_gitbranch}).$(git rev-parse --short ${_gitbranch})"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${_gitname}"
|
||||
cd "${_gitname}"
|
||||
python setup.py install --root="${pkgdir}" --optimize=1 || return 1
|
||||
|
||||
msg2 "Installing fonts..."
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
# Maintainer: Kim Silkebækken <kim.silkebaekken+aur@gmail.com>
|
||||
|
||||
pkgname=python2-powerline-git
|
||||
pkgver=20130412
|
||||
_gitname=powerline
|
||||
_gitbranch=develop
|
||||
pkgname="python2-${_gitname}-git"
|
||||
pkgver=793.4ee5072
|
||||
pkgrel=1
|
||||
pkgdesc='The ultimate statusline/prompt utility.'
|
||||
url='https://github.com/Lokaltog/powerline'
|
||||
|
@ -16,33 +18,19 @@ optdepends=('python2-psutil: improved system information'
|
|||
'gvim: vim compiled with Python support')
|
||||
conflicts=('python-powerline-git')
|
||||
replaces=('powerline-git')
|
||||
install='powerline.install'
|
||||
source=()
|
||||
install="${_gitname}.install"
|
||||
source=("${_gitname}::git://github.com/Lokaltog/${_gitname}.git#branch=${_gitbranch}"
|
||||
"${install}")
|
||||
sha256sums=('SKIP'
|
||||
'e8ab7fb51ac7244bfad973a999c9333ba4334fa391aa890489cf8c8f1211c94f')
|
||||
|
||||
_gitroot="https://github.com/Lokaltog/powerline.git"
|
||||
_gitname="powerline"
|
||||
_gitbranch="develop"
|
||||
|
||||
build() {
|
||||
cd "${srcdir}"
|
||||
|
||||
msg "Connecting to GitHub..."
|
||||
|
||||
if [ -d "${srcdir}/${_gitname}" ]; then
|
||||
cd "${_gitname}"
|
||||
git pull origin "${_gitbranch}"
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone "${_gitroot}"
|
||||
cd "${_gitname}"
|
||||
git checkout "${_gitbranch}"
|
||||
fi
|
||||
|
||||
msg "Git checkout done or server timeout."
|
||||
pkgver() {
|
||||
cd "${_gitname}"
|
||||
echo "$(git rev-list --count ${_gitbranch}).$(git rev-parse --short ${_gitbranch})"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${_gitname}"
|
||||
cd "${_gitname}"
|
||||
python2 setup.py install --root="${pkgdir}" --optimize=1 || return 1
|
||||
|
||||
msg2 "Installing fonts..."
|
||||
|
|
Loading…
Reference in New Issue