Package Details: gist-git 5.1.0.r1.gab14e27-1

Git Clone URL: https://aur.archlinux.org/gist-git.git (read-only, click to copy)
Package Base: gist-git
Description: Potentially the best command line gister
Upstream URL: http://github.com/defunkt/gist
Keywords: gist github
Licenses: MIT
Conflicts: gist
Provides: gist
Submitter: daenyth
Maintainer: TrialnError
Last Packager: TrialnError
Votes: 20
Popularity: 0.000000
First Submitted: 2008-12-01 00:33 (UTC)
Last Updated: 2022-02-27 21:52 (UTC)

Dependencies (4)

Required by (6)

Sources (1)

Latest Comments

1 2 Next › Last »

MarsSeed commented on 2022-02-25 23:01 (UTC)

GitHub is discontinuing git:// protocol access by mid-March.

Please kindly update source array to use git+https:// as protocol.

klesky commented on 2014-02-12 13:38 (UTC)

updated PKGBUILD version 20140212 https://gist.github.com/anonymous/8955650/raw

canton7 commented on 2012-07-17 12:14 (UTC)

Oops! It turned out that a bug in aurploader (which I was using to uploading the .src.tar.gz) was causing the uploads to, well, not happen. Fixed!

Gently commented on 2012-07-15 20:22 (UTC)

Ok. I've learned about the nature of github get used by many. The other forks I discovered were created to test/build add-ons or fixes so that they can be sent back to the original as a pull request. My bad. This program hasn't been updated in a bit as why I requested this and is currently broken because of certificate test: https://github.com/defunkt/gist/issues/98 For now, the only reliable way I've discovered to fix this is to disable the cert test is by disabling it: sudo sed -i 's/http.ca_file = ca_cert/#http.ca_file = ca_cert/' /usr/bin/gist Thanks for the patience in understanding.

Gently commented on 2012-06-29 19:59 (UTC)

PKGBUILD still using defunkt's fork.

canton7 commented on 2012-06-18 15:12 (UTC)

Thanks! I've updated the PKGBUILD. The license wording is identical to the MIT wording, which is why I put it down as the MIT license.

Gently commented on 2012-06-18 14:34 (UTC)

avances123's fork appears to be pretty well maintained, still having trouble SSL with defunkt's fork. PKGBUILD for avances123's: # Maintainer: Antony Male <antony dot male at gmail dot com> # Contributor: Daenyth <Daenyth+Arch AT gmail DOT com> pkgname=gist-git _pkgname=gist pkgver=20120618 pkgrel=1 pkgdesc="Command line gist uploader" arch=(any) url="https://github.com/avances123/gist" license=('MIT') # is this MIT? depends=('git' 'ruby' 'rubygems') optdepends=('xclip: to paste gist URL into Xorg clipboard automatically') provides=('gist') conflicts=('gist') # Original coder is indirect, defunkt fork followed, now avances fork appears # to be most up-to-date _gitfork="defunkt" _gitfork="avances123" _gitroot="git://github.com/${_gitfork}/gist.git" _gitname="gist" build() { cd "$srcdir" msg "Connecting to GIT server...." if [ -d $_gitname-$_gitfork ] ; then cd $_gitname-$_gitfork && git pull origin msg "The local files are updated." else git clone $_gitroot "$_gitname-$_gitfork" fi msg "GIT checkout done or server timeout" } package() { cd "$srcdir/$_gitname-$_gitfork" install -Dm755 ${_pkgname} "${pkgdir}/usr/bin/${_pkgname}" install -Dm644 man/${_pkgname}.1 "${pkgdir}/usr/share/man/man1/${_pkgname}.1" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" }

canton7 commented on 2011-04-11 13:01 (UTC)

Version 2.0.2 released. pkgver bumped

canton7 commented on 2011-01-26 14:41 (UTC)

Thanks for letting this go daenyth, I'll do my best with it :) I've updated to quigybo's PKGBUILD, but switched the fork to rduplain's [1], as it contains a patch without which gist refuses to work on my system (issue [2]). I've asked indirect [3] (who seems to be the most active fork of all the gist forks) to pull from rduplain, and I'll switch this package to his branch when he does, which will give us features such as uploading multiple files. Let me know if you find any issues! [1]: https://github.com/rduplain/gist [2]: https://github.com/defunkt/gist/issues#issue/23 [3]: https://github.com/indirect/gist

daenyth commented on 2011-01-26 14:02 (UTC)

Woops, I missed that update. Thanks for your interest in it. Orphaned to get it to a good home :)