[arch-commits] Commit in jake/trunk (PKGBUILD jake.install)

2019-10-20 Thread Felix Yan via arch-commits
Date: Sunday, October 20, 2019 @ 07:14:04
  Author: felixonmars
Revision: 517644

remove old post_install

Modified:
  jake/trunk/PKGBUILD
Deleted:
  jake/trunk/jake.install

--+
 PKGBUILD |1 -
 jake.install |   11 ---
 2 files changed, 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-20 07:01:30 UTC (rev 517643)
+++ PKGBUILD2019-10-20 07:14:04 UTC (rev 517644)
@@ -9,7 +9,6 @@
 license=('Apache')
 depends=('nodejs')
 makedepends=('npm')
-install=${pkgname}.install
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
 noextract=($pkgname-$pkgver.tgz)
 
sha512sums=('9e5ed2ecaf2610a233ad74f3c7b547be6bba02fc7f719496f0fa008b3323753b6ff0e5e863e38f6f3b4efd59de2173ee798ef8da27805dad223dc1e6862de0c7')

Deleted: jake.install
===
--- jake.install2019-10-20 07:01:30 UTC (rev 517643)
+++ jake.install2019-10-20 07:14:04 UTC (rev 517644)
@@ -1,11 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules \
-/usr/lib/node_modules/jake/node_modules \
-/usr/lib/node_modules/jake/node_modules/.bin \
-/usr/lib/node_modules/jake/node_modules/filelist/node_modules
-}
-
-post_upgrade() {
-  post_install
-}


[arch-commits] Commit in jake/trunk (PKGBUILD jake.install)

2016-10-25 Thread Levente Polyak
Date: Wednesday, October 26, 2016 @ 01:34:07
  Author: anthraxx
Revision: 193390

8.0.15-2 directory permission fix

Added:
  jake/trunk/jake.install
Modified:
  jake/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 jake.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-26 01:31:59 UTC (rev 193389)
+++ PKGBUILD2016-10-26 01:34:07 UTC (rev 193390)
@@ -3,7 +3,7 @@
 
 pkgname=jake
 pkgver=8.0.15
-pkgrel=1
+pkgrel=2
 pkgdesc="JavaScript build tool, similar to Make or Rake"
 arch=('any')
 url="http://jakejs.com";
@@ -10,6 +10,7 @@
 license=('Apache')
 depends=('nodejs')
 makedepends=('npm')
+install=${pkgname}.install
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
 noextract=($pkgname-$pkgver.tgz)
 md5sums=('d20043b13d82ad0502571fbde8921bec')

Added: jake.install
===
--- jake.install(rev 0)
+++ jake.install2016-10-26 01:34:07 UTC (rev 193390)
@@ -0,0 +1,11 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules \
+/usr/lib/node_modules/jake/node_modules \
+/usr/lib/node_modules/jake/node_modules/.bin \
+/usr/lib/node_modules/jake/node_modules/filelist/node_modules
+}
+
+post_upgrade() {
+  post_install
+}