I made a 1.0.0 tag since I didn't see any version numbers elsewhere.
Search Criteria
Package Details: telescope-git 7.ad59c3d-1
Package Actions
| Package Base: | telescope-git |
|---|---|
| Description: | A simple window/task switcher |
| Upstream URL: | https://bitbucket.org/IlyaSkriblovsky/telescope |
| Category: | x11 |
| Licenses: | |
| Submitter: | None |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 2 |
| First Submitted: | 2013-04-03 07:12 |
| Last Updated: | 2013-06-22 16:37 |
Dependencies (7)
Required by (0)
Sources
Latest Comments
Anonymous comment
Comment by Diego
If you release a stable version on github (tag) I could update telescope PKGBUILD to provide a stable and patched version.
Anonymous comment
Hi! I started this package because I saw that Ilya Skriblovsky had not updated the original package for many months and I had some modifications to make: https://bbs.archlinux.org/viewtopic.php?id=144720 From what I understand, the telescope and telescope-hg packages are still the same code that I applied my fixes to.
If you would like, you can take the fixes I made, get them applied upstream and just have one package for this software rather than three (get rid of the -git and -hg packages). The reason I did not do this was I didn't know how active the upstream was.
In the meantime, thank you for the PKGBUILD; I'll submit it now.
Comment by Diego
PS... new PKGBUILD with new syntax and automatic pkgver function
********************************************************************
# See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
# for more information on packaging from GIT sources.
# Maintainer: Adam Dunlap <dunlapadam@gmail.com>
# Contributor: Diego Principe <cdprincipe@at@gmail@dot@com>
_pkgname=telescope
pkgname=telescope-git
pkgver=7.ad59c3d
pkgrel=1
pkgdesc="A simple window/task switcher"
arch=('i686' 'x86_64')
url="https://bitbucket.org/IlyaSkriblovsky/telescope"
license=('GPL')
depends=('libxcomposite' 'libxdamage' 'libxrender' 'imlib2' 'libxft' 'dbus' 'glib')
makedepends=('git')
provides=('telescope')
conflicts=('telescope')
backup=('etc/telescope.conf' 'etc/telescope.keys')
source=('git://github.com/AdamCDunlap/telescope.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir"/"$_pkgname"
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd "$srcdir"/"$_pkgname"
make
}
package() {
cd "$srcdir/$_pkgname"
make DESTDIR="$pkgdir/" install
}
Comment by Diego
hi Adam! i'm the mantainer of telescope and telescope-hg...
What is the most updated repository? What is the stable release?