@@ -0,0 +1,19 @@ | |||
230d5a67e801b3486463bf526cbaa1849302705d not-for-merge branch 'master' of git://github.com/jawerty/AlienFeed | |||
85ee2697964c86912b60c02567fcebaad5cda791 not-for-merge branch 'temp' of git://github.com/jawerty/AlienFeed | |||
7267f9ed6e34199e44d9384712463f5e0b454ade not-for-merge 'refs/pull/10/head' of git://github.com/jawerty/AlienFeed | |||
3ada0fedc99bccb9cef7387ff53f31b49da2b605 not-for-merge 'refs/pull/12/head' of git://github.com/jawerty/AlienFeed | |||
58330dae26e6e9c091fa65c611ec76dbf2bf6097 not-for-merge 'refs/pull/14/head' of git://github.com/jawerty/AlienFeed | |||
aec442dc2e5fae1e0490cc27cd275c30c86b6a68 not-for-merge 'refs/pull/15/head' of git://github.com/jawerty/AlienFeed | |||
93460d7c1bbf2aa062d6202c2d205c5912bd8c28 not-for-merge 'refs/pull/18/head' of git://github.com/jawerty/AlienFeed | |||
5a5b9d97451ffb1346a6cd59ef8c4b34d04a0ebf not-for-merge 'refs/pull/2/head' of git://github.com/jawerty/AlienFeed | |||
37a07188801b785514d613eb741d02d4fa46966b not-for-merge 'refs/pull/20/head' of git://github.com/jawerty/AlienFeed | |||
d9c770af94edc8e04525e975e45e0391acb03c59 not-for-merge 'refs/pull/22/head' of git://github.com/jawerty/AlienFeed | |||
26ae7ec6d2ea90ff3c74f41ee2f30eb975a2caa4 not-for-merge 'refs/pull/23/head' of git://github.com/jawerty/AlienFeed | |||
95afdf98ed08af8afc660d37dfdd9419ce24f782 not-for-merge 'refs/pull/23/merge' of git://github.com/jawerty/AlienFeed | |||
5c439c3ece6cfcf51ad3c79a1f0ec81e8b4f9d2d not-for-merge 'refs/pull/24/head' of git://github.com/jawerty/AlienFeed | |||
3c2b4045e1bbc8bbda3b64ff809e051e3f1244f1 not-for-merge 'refs/pull/24/merge' of git://github.com/jawerty/AlienFeed | |||
9b6fd838cf3b65bbb5ef79e7e824f0edee7646f1 not-for-merge 'refs/pull/25/head' of git://github.com/jawerty/AlienFeed | |||
b0495500b69d3dcd8c72b6feea58cc2f934296fe not-for-merge 'refs/pull/4/head' of git://github.com/jawerty/AlienFeed | |||
5cf0ccfbcad324a76729fc12711cafc47b79e62a not-for-merge 'refs/pull/6/head' of git://github.com/jawerty/AlienFeed | |||
d1d412e12f220c5d83a7bd9b6b082f9394f40331 not-for-merge 'refs/pull/8/head' of git://github.com/jawerty/AlienFeed | |||
d5e2980d1f5e77246df65b9f6bf0ee80fc5a2598 not-for-merge 'refs/pull/9/head' of git://github.com/jawerty/AlienFeed |
@@ -21,15 +21,13 @@ pkgver() { | |||
build(){ | |||
cd $_pkgname | |||
cd $_pkgname | |||
sed -i "s|env python|env python2|" $srcdir/$_pkgname/alienfeed/alien.py | |||
} | |||
package() { | |||
cd $_pkgname | |||
python2 setup.py install --root="$pkgdir" --optimize=1 | |||
python2 setup.py install --root="$pkgdir" --optimize=1 | |||
install -vDm644 alienfeed.bash-completion "$pkgdir/usr/share/bash-completion/completions/alienfeed" | |||
install -vDm644 alienfeed.1 "$pkgdir/usr/man/man1/alienfeed.1" | |||
} |
@@ -1,13 +1,13 @@ | |||
# Generated by makepkg 4.2.0 | |||
# using fakeroot version 1.20.2 | |||
# Thu Jan 15 06:36:49 UTC 2015 | |||
# Thu Jan 15 07:06:44 UTC 2015 | |||
pkgname = alienfeed-git | |||
pkgver = 230d5a6-1 | |||
pkgdesc = Reddit command-line client. Follow the latest submissions from your terminal. | |||
url = http://github.com/jawerty/AlienFeed | |||
builddate = 1421303809 | |||
builddate = 1421305604 | |||
packager = Unknown Packager | |||
size = 41984 | |||
size = 63488 | |||
arch = any | |||
license = MIT | |||
depend = python2-praw-git |
@@ -0,0 +1,27 @@ | |||
#bash completion for alienfeed | |||
_alienfeed() | |||
{ | |||
#defining local vars | |||
local cur prev words cword | |||
#_init_completion || return #requires bash-completion >= 2.0 | |||
COMPREPLY=() #clean out last completions | |||
cur="${COMP_WORDS[COMP_CWORD]}" | |||
prev="${COMP_WORDS[COMP_CWORD-1]}" | |||
COMMANDS="subreddit" | |||
OPTS="-h --help -l --limit -r --random" | |||
case "${cur}" in | |||
-*) | |||
completions="$OPTS" | |||
;; | |||
*) | |||
completions="$COMMANDS" | |||
;; | |||
esac | |||
COMPREPLY=( $( compgen -W "$completions" -- $cur )) | |||
} && | |||
complete -F _alienfeed alienfeed |
@@ -0,0 +1,20 @@ | |||
pkgbase = debtap | |||
pkgdesc = A script to convert .deb packages to Arch Linux packages, focused on accuracy. Do not use it to convert packages that already exist on official repositories or can be built from AUR! | |||
pkgver = 1.3 | |||
pkgrel = 1 | |||
url = https://github.com/helixarch/debtap | |||
install = readme.install | |||
arch = any | |||
license = GPLv2 | |||
depends = bash | |||
depends = binutils | |||
depends = pkgfile | |||
depends = package-query | |||
depends = fakeroot | |||
source = https://github.com/helixarch/debtap/archive/1.3.tar.gz | |||
source = readme.install | |||
sha512sums = 536ed19fc9a23507b0b3ea1ef5cd78952b5f15606918efdf15de23eb9f5cbe77f140d8097b58cc7e9507fa60cedcf4a6e5d85a50572c144ff059e7d0a9396868 | |||
sha512sums = 7ac4bcaa12390a619028d1ed1e767890673aca81bf799403368e9c2de7b74f58f1f1d922ca34a56eb62a38f30b8b1b00309ff3addd26c571f787ce078a3faf7e | |||
pkgname = debtap | |||
@@ -0,0 +1,21 @@ | |||
# Maintainer: helix <stargr@gmail.com> | |||
pkgname=debtap | |||
pkgver=1.3 | |||
pkgrel=1 | |||
pkgdesc='A script to convert .deb packages to Arch Linux packages, focused on accuracy. Do not use it to convert packages that already exist on official repositories or can be built from AUR!' | |||
arch=('any') | |||
license=('GPLv2') | |||
depends=('bash' 'binutils' 'pkgfile' 'package-query' 'fakeroot') | |||
url="https://github.com/helixarch/debtap" | |||
source=("https://github.com/helixarch/debtap/archive/$pkgver.tar.gz" | |||
"readme.install") | |||
sha512sums=('536ed19fc9a23507b0b3ea1ef5cd78952b5f15606918efdf15de23eb9f5cbe77f140d8097b58cc7e9507fa60cedcf4a6e5d85a50572c144ff059e7d0a9396868' | |||
'7ac4bcaa12390a619028d1ed1e767890673aca81bf799403368e9c2de7b74f58f1f1d922ca34a56eb62a38f30b8b1b00309ff3addd26c571f787ce078a3faf7e') | |||
install=readme.install | |||
package() { | |||
cd "$srcdir/$pkgname-$pkgver" | |||
install -Dm755 debtap "$pkgdir/usr/bin/debtap" | |||
} |
@@ -0,0 +1,12 @@ | |||
post_install() { | |||
echo "You need an active internet connection, which" | |||
echo "is necessary for this script to work" | |||
echo | |||
echo "You must run at least once \"pkgfile -u\"" | |||
echo "with root privileges (preferably recently)," | |||
echo "before running this script" | |||
echo | |||
echo "Syntax: debtap [option] package_filename" | |||
echo | |||
echo "Run \"debtap -h\" for help" | |||
} |
@@ -0,0 +1,26 @@ | |||
# Generated by makepkg 4.2.0 | |||
# using fakeroot version 1.20.2 | |||
# Thu Jan 15 07:42:35 UTC 2015 | |||
pkgname = debtap | |||
pkgver = 1.3-1 | |||
pkgdesc = A script to convert .deb packages to Arch Linux packages, focused on accuracy. Do not use it to convert packages that already exist on official repositories or can be built from AUR! | |||
url = https://github.com/helixarch/debtap | |||
builddate = 1421307755 | |||
packager = Unknown Packager | |||
size = 273408 | |||
arch = any | |||
license = GPLv2 | |||
depend = bash | |||
depend = binutils | |||
depend = pkgfile | |||
depend = package-query | |||
depend = fakeroot | |||
makepkgopt = strip | |||
makepkgopt = docs | |||
makepkgopt = !libtool | |||
makepkgopt = !staticlibs | |||
makepkgopt = emptydirs | |||
makepkgopt = zipman | |||
makepkgopt = purge | |||
makepkgopt = !upx | |||
makepkgopt = !debug |
@@ -0,0 +1,12 @@ | |||
post_install() { | |||
echo "You need an active internet connection, which" | |||
echo "is necessary for this script to work" | |||
echo | |||
echo "You must run at least once \"pkgfile -u\"" | |||
echo "with root privileges (preferably recently)," | |||
echo "before running this script" | |||
echo | |||
echo "Syntax: debtap [option] package_filename" | |||
echo | |||
echo "Run \"debtap -h\" for help" | |||
} |
@@ -1,7 +1,7 @@ | |||
# Maintainer: John Jenkins <twodopeshaggy@gmail.com> | |||
pkgname=drive | |||
pkgver=0.0.5 | |||
pkgver=0.0.6 | |||
pkgrel=1 | |||
pkgdesc="Pull or push Google Drive files" | |||
arch=('x86_64' 'i686') | |||
@@ -10,7 +10,7 @@ license=('Apache') | |||
makedepends=('go' 'git' 'mercurial') | |||
options=('!strip' '!emptydirs') | |||
source=("https://github.com/odeke-em/$pkgname/archive/v$pkgver.tar.gz") | |||
sha256sums=('2645994e29bd128b19ea5296742f4c5c0468b4c4d76bda93cc547c7acd8180c6') | |||
sha256sums=('32f936dc7982c0613af86e065a82543353b81d65b8bae5b4f543e58a8545ed11') | |||
prepare() { | |||
mkdir -p "$srcdir/go" |
@@ -1,13 +1,13 @@ | |||
# Generated by makepkg 4.2.0 | |||
# using fakeroot version 1.20.2 | |||
# Tue Jan 13 03:03:51 UTC 2015 | |||
# Sun Jan 18 13:59:20 UTC 2015 | |||
pkgname = drive | |||
pkgver = 0.0.5-1 | |||
pkgver = 0.0.6-1 | |||
pkgdesc = Pull or push Google Drive files | |||
url = http://github.com/odeke-em/drive | |||
builddate = 1421118231 | |||
builddate = 1421589560 | |||
packager = Unknown Packager | |||
size = 8283136 | |||
size = 8342528 | |||
arch = x86_64 | |||
license = Apache | |||
makedepend = go |