[arch-commits] Commit in apm/repos (6 files)

Nicola Squartini tensor5 at archlinux.org
Tue Mar 19 07:22:29 UTC 2019


    Date: Tuesday, March 19, 2019 @ 07:22:28
  Author: tensor5
Revision: 442598

archrelease: copy trunk to community-staging-x86_64

Added:
  apm/repos/community-staging-x86_64/
  apm/repos/community-staging-x86_64/PKGBUILD
    (from rev 442597, apm/trunk/PKGBUILD)
  apm/repos/community-staging-x86_64/apm.js
    (from rev 442597, apm/trunk/apm.js)
  apm/repos/community-staging-x86_64/no-scripts.patch
    (from rev 442597, apm/trunk/no-scripts.patch)
  apm/repos/community-staging-x86_64/python2.patch
    (from rev 442597, apm/trunk/python2.patch)
  apm/repos/community-staging-x86_64/use-system-npm.patch
    (from rev 442597, apm/trunk/use-system-npm.patch)

----------------------+
 PKGBUILD             |  102 +++++++++++++++++++++++++++++++++++++++++++++++++
 apm.js               |   13 ++++++
 no-scripts.patch     |   16 +++++++
 python2.patch        |   14 ++++++
 use-system-npm.patch |   11 +++++
 5 files changed, 156 insertions(+)

Copied: apm/repos/community-staging-x86_64/PKGBUILD (from rev 442597, apm/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-03-19 07:22:28 UTC (rev 442598)
@@ -0,0 +1,102 @@
+# Maintainer: Nicola Squartini <tensor5 at gmail.com>
+
+pkgname=apm
+pkgver=2.1.3
+pkgrel=3
+pkgdesc='Atom package manager'
+arch=('x86_64')
+url='https://github.com/atom/apm'
+license=('MIT')
+depends=('libsecret' 'nodejs>=10' 'npm' 'python2')
+makedepends=('git')
+provides=('nodejs-atom-package-manager')
+conflicts=('nodejs-atom-package-manager')
+replaces=('nodejs-atom-package-manager')
+options=(!emptydirs)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/apm/archive/v${pkgver}.tar.gz"
+        'apm.js'
+        'no-scripts.patch'
+        'python2.patch'
+        'use-system-npm.patch')
+sha512sums=('99881317cbcdc8b813c113208311932e28a227ecbb88844addca8aabd008d3b3fde7af667cd896ed12fddff0d539b521fc7f58bc72cedb522db65c41d4a4946a'
+            '2453d6e06e6e012baec1787b751e20be354daecf0799c97698491c00546483844532d1b3c02c9c1b6e0a800ccf16ee0f4fff0bfbd5210eca0ad296ed91002aea'
+            'da2e2c6b336b87371541ef159201f6942c606f7c8b212f1a610a8605bb08ddc97ed1ade7f1c02339c40c40f22d8a7d37b1686fb5c7105a775fa85ff6048162dc'
+            '2fedcfc04c03059429c231c5bbd3d5e4b32a30ea9d341c3e27dcbba0deee1e4c8d27d993c59ee96aebf0a0c930b7cc55177e3600c18349dd2b91ebac7bd96632'
+            '96449a53197e7b498561e8fb820f2d60aa4d77cd4364b97e7e595d49776e3ad7fb89b944174be55ad3b81b6b64d65c0f12c5b8cf3eeb1bad8ac18dfdf3c6b610')
+
+_apmdir='/usr/lib/node_modules/atom-package-manager'
+
+prepare() {
+  rm -rf "${srcdir}"/apm-build
+
+  cd apm-${pkgver}
+
+  # Use custom launcher
+  rm bin/apm{,.cmd} bin/npm{,.cmd}
+  rm src/cli.coffee
+  install -m755 "${srcdir}"/apm.js bin/apm
+
+  # Use system npm and node-gyp
+  patch -Np1 -i "${srcdir}"/use-system-npm.patch
+
+  # Don't download binary Node
+  patch -Np1 -i "${srcdir}"/no-scripts.patch
+  rm BUNDLED_NODE_VERSION script/*
+
+  # GYP needs Python2
+  patch -Np1 -i "${srcdir}"/python2.patch
+}
+
+build() {
+  cd apm-${pkgver}
+
+  npm install coffee-script
+  npx coffee -c --no-header -o lib src/*.coffee
+  rm -r node_modules
+  npm install --user root -g --prefix="${srcdir}"/apm-build/usr $(npm pack | tail -1)
+}
+
+package() {
+  cp -r "${srcdir}"/apm-build/usr "${pkgdir}"
+
+  cd "${pkgdir}"${_apmdir}
+  install -m644 "${srcdir}"/apm-${pkgver}/README.md ./
+
+  # Install license file
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/atom-package-manager/LICENSE.md \
+     "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  # Remove occurrences of ${srcdir}
+  find "${pkgdir}" -name "package.json" \
+       -exec sed -e "s|${srcdir}/apm-build||" \
+                 -e "s|${srcdir}/apm-${pkgver}|${_apmdir}|" \
+                 -i '{}' \;
+
+  # Remove useless stuff
+  find "${pkgdir}"/usr/lib \
+      -name ".*" -prune -exec rm -r '{}' \; \
+      -or -name "*.a" -exec rm '{}' \; \
+      -or -name "*.bat" -exec rm '{}' \; \
+      -or -name "*.mk" -exec rm '{}' \; \
+      -or -path "*/git-utils/binding.gyp" -exec rm '{}' \; \
+      -or -path "*/git-utils/src" -prune -exec rm -r '{}' \; \
+      -or -path "*/keytar/binding.gyp" -exec rm '{}' \; \
+      -or -path "*/keytar/src" -prune -exec rm -r '{}' \; \
+      -or -path "*/oniguruma/binding.gyp" -exec rm '{}' \; \
+      -or -path "*/oniguruma/src" -prune -exec rm -r '{}' \; \
+      -or -name "appveyor.yml" -exec rm '{}' \; \
+      -or -name "benchmark" -prune -exec rm -r '{}' \; \
+      -or -name "binding.Makefile" -exec rm '{}' \; \
+      -or -name "config.gypi" -exec rm '{}' \; \
+      -or -name "deps" -prune -exec rm -r '{}' \; \
+      -or -name "doc" -prune -exec rm -r '{}' \; \
+      -or -name "html" -prune -exec rm -r '{}' \; \
+      -or -name "Makefile" -exec rm '{}' \; \
+      -or -name "man" -prune -exec rm -r '{}' \; \
+      -or -name "obj.target" -prune -exec rm -r '{}' \; \
+      -or -name "samples" -prune -exec rm -r '{}' \; \
+      -or -name "scripts" -prune -exec rm -r '{}' \; \
+      -or -name "test" -prune -exec rm -r '{}' \; \
+      -or -name "tests" -prune -exec rm -r '{}' \;
+}

Copied: apm/repos/community-staging-x86_64/apm.js (from rev 442597, apm/trunk/apm.js)
===================================================================
--- community-staging-x86_64/apm.js	                        (rev 0)
+++ community-staging-x86_64/apm.js	2019-03-19 07:22:28 UTC (rev 442598)
@@ -0,0 +1,13 @@
+#!/usr/bin/node
+
+"use strict";
+
+process.env.ATOM_RESOURCE_PATH = process.env.ATOM_RESOURCE_PATH || "/usr/lib/atom";
+
+process.env.ATOM_ELECTRON_VERSION = process.env.ATOM_ELECTRON_VERSION || require("fs").readFileSync("/usr/lib/electron/version", "utf8");
+
+process.env.npm_config_python = __dirname + "/python-interceptor.sh";
+
+require("../lib/apm-cli.js").run(process.argv.slice(2), function (error) {
+    process.exitCode = Number(Boolean(error));
+});

Copied: apm/repos/community-staging-x86_64/no-scripts.patch (from rev 442597, apm/trunk/no-scripts.patch)
===================================================================
--- community-staging-x86_64/no-scripts.patch	                        (rev 0)
+++ community-staging-x86_64/no-scripts.patch	2019-03-19 07:22:28 UTC (rev 442598)
@@ -0,0 +1,16 @@
+--- a/package.json
++++ b/package.json
+@@ -14,13 +14,6 @@
+   "bin": {
+     "apm": "./bin/apm"
+   },
+-  "scripts": {
+-    "build": "node script/check-version.js && grunt",
+-    "prepublish": "grunt prepublish",
+-    "install": "node script/postinstall.js",
+-    "test": "node script/check-version.js && grunt test",
+-    "check-version": "node version.js"
+-  },
+   "dependencies": {
+     "asar-require": "0.3.0",
+     "async": "~0.2.8",

Copied: apm/repos/community-staging-x86_64/python2.patch (from rev 442597, apm/trunk/python2.patch)
===================================================================
--- community-staging-x86_64/python2.patch	                        (rev 0)
+++ community-staging-x86_64/python2.patch	2019-03-19 07:22:28 UTC (rev 442598)
@@ -0,0 +1,14 @@
+--- a/bin/python-interceptor.sh
++++ b/bin/python-interceptor.sh
+@@ -34,9 +34,9 @@
+       ARGS+=("--format=safemake.py")
+     fi
+ 
+-    exec python "${ARGS[@]}"
++    exec python2 "${ARGS[@]}"
+     ;;
+   *)
+-    exec python "$@"
++    exec python2 "$@"
+     ;;
+ esac

Copied: apm/repos/community-staging-x86_64/use-system-npm.patch (from rev 442597, apm/trunk/use-system-npm.patch)
===================================================================
--- community-staging-x86_64/use-system-npm.patch	                        (rev 0)
+++ community-staging-x86_64/use-system-npm.patch	2019-03-19 07:22:28 UTC (rev 442598)
@@ -0,0 +1,11 @@
+--- a/package.json
++++ b/package.json
+@@ -32,8 +32,6 @@
+     "keytar": "^4.0",
+     "mv": "2.0.0",
+     "ncp": "~0.5.1",
+-    "node-gyp": "3.4.0",
+-    "npm": "6.2.0",
+     "open": "0.0.5",
+     "plist": "git+https://github.com/nathansobo/node-plist.git",
+     "q": "~0.9.7",



More information about the arch-commits mailing list