Skip to content

Instantly share code, notes, and snippets.

Created April 2, 2016 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e9be62e0d31fe4d332dbb52105b9df2a to your computer and use it in GitHub Desktop.
Save anonymous/e9be62e0d31fe4d332dbb52105b9df2a to your computer and use it in GitHub Desktop.
diff --git a/.SRCINFO b/.SRCINFO
index e14896f..1bbb3e1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,22 +1,23 @@
# Generated by mksrcinfo v8
-# Sun Mar 13 21:01:32 UTC 2016
+# Sat Apr 2 19:02:59 UTC 2016
pkgbase = python-cookiecutter
pkgdesc = A command-line utility that creates projects from project templates
- pkgver = 1.3.0
+ pkgver = 1.4.0
pkgrel = 1
url = https://github.com/audreyr/cookiecutter
arch = any
groups = devel
license = BSD
depends = python-jinja>=2.7
- depends = python-ruamel.yaml>=0.10.12
+ depends = python-jinja-time
+ depends = python-poyo
depends = python-binaryornot>=0.2.0
depends = python-click>=5.0
depends = python-future>=0.15.2
depends = python-whichcraft>=0.1.1
options = !emptydirs
- source = https://github.com/audreyr/cookiecutter/archive/1.3.0.tar.gz
- md5sums = e5aed760232a2563b528d53a0070e2a6
+ source = https://github.com/audreyr/cookiecutter/archive/1.4.0.tar.gz
+ md5sums = def59c6bac5b663259b7054e1f71fbfe
pkgname = python-cookiecutter
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a8319a2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+pkg/
+src/
+*.tar.gz
+python-cookiecutter-*.pkg.tar.xz
+.AURINFO
diff --git a/PKGBUILD b/PKGBUILD
index d80cfdf..aa0a23a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=python-cookiecutter
_pkgname=cookiecutter
-pkgver=1.3.0
+pkgver=1.4.0
pkgrel=1
pkgdesc="A command-line utility that creates projects from project templates"
arch=('any')
@@ -11,7 +11,8 @@ url="https://github.com/audreyr/cookiecutter"
license=('BSD')
groups=('devel')
depends=('python-jinja>=2.7'
- 'python-ruamel.yaml>=0.10.12'
+ 'python-jinja-time'
+ 'python-poyo'
'python-binaryornot>=0.2.0'
'python-click>=5.0'
'python-future>=0.15.2'
@@ -23,7 +24,7 @@ replaces=()
backup=()
options=(!emptydirs)
source=("https://github.com/audreyr/${_pkgname}/archive/${pkgver}.tar.gz")
-md5sums=('e5aed760232a2563b528d53a0070e2a6')
+md5sums=('def59c6bac5b663259b7054e1f71fbfe')
package() {
cd "$srcdir/${_pkgname}-${pkgver}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment