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

Caleb Maclennan alerque at gemini.archlinux.org
Thu Apr 7 17:44:41 UTC 2022


    Date: Thursday, April 7, 2022 @ 17:44:41
  Author: alerque
Revision: 1182820

archrelease: copy trunk to community-staging-x86_64

Added:
  apm/repos/community-staging-x86_64/
  apm/repos/community-staging-x86_64/PKGBUILD
    (from rev 1182819, apm/trunk/PKGBUILD)
  apm/repos/community-staging-x86_64/apm.js
    (from rev 1182819, apm/trunk/apm.js)
  apm/repos/community-staging-x86_64/git-utils.patch
    (from rev 1182819, apm/trunk/git-utils.patch)
  apm/repos/community-staging-x86_64/no-scripts.patch
    (from rev 1182819, apm/trunk/no-scripts.patch)

------------------+
 PKGBUILD         |  113 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 apm.js           |   11 +++++
 git-utils.patch  |   10 ++++
 no-scripts.patch |   21 +++++++++
 4 files changed, 155 insertions(+)

Copied: apm/repos/community-staging-x86_64/PKGBUILD (from rev 1182819, apm/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-04-07 17:44:41 UTC (rev 1182820)
@@ -0,0 +1,113 @@
+# Maintainer: Caleb Maclennan <caleb at alerque.com>
+# Contributor: Nicola Squartini <tensor5 at gmail.com>
+
+pkgname=apm
+pkgver=2.6.5
+_sha=ade8fbe124b18f5949a6b20b8e02a551d5405d67
+pkgrel=3
+pkgdesc='Atom package manager'
+arch=(x86_64)
+url="https://github.com/atom/$pkgname"
+license=(MIT)
+_electron=electron11 # must match atom package
+depends=(# libgit2{,.so} # see https://bugs.archlinux.org/task/74164
+         libsecret
+         nodejs)
+makedepends=(git
+             npm)
+provides=(nodejs-atom-package-manager)
+conflicts=(nodejs-atom-package-manager)
+replaces=(nodejs-atom-package-manager)
+options=(!emptydirs)
+_archive="$pkgname-$_sha"
+source=("$url/archive/$_sha/$_archive.tar.gz"
+        apm.js
+        no-scripts.patch)
+        # git-utils.patch)
+sha512sums=('3788ccc2f6b2fe63792463c282ebb1710aaf2dccb595c3177494cd8800fc5e5df3f3b49481f6342fcff770882c50c2d171d9d53a985184e84b875f386c5a2039'
+            'dd6786d44278f1edbfb87d4a4a639da4fd4b8ab9aca85ae430e113256befd3850b1fb375353afb5f1f4b99ad3dc2666b37d6d6c31c7563d992d8c034d0d2750a'
+            'a962ecc1557bcfe92c8d771a44c3bbbd72d0bf9c81285662ef26a1f99f3604efcca0307e7edb59eb99c2cbc83db4ab844f0db0532ca990581eff28e50c42acd6')
+
+_apmdir='/usr/lib/node_modules/atom-package-manager'
+
+prepare() {
+  ! test -d "$srcdir"/apm-build
+  cd "$_archive"
+
+  # Use custom launcher
+  rm bin/apm{,.cmd} bin/npm{,.cmd}
+  rm src/cli.coffee
+  install -m0755 "$srcdir/apm.js" bin/apm
+  sed -i -e "s/@ELECTRON@/$_electron/" bin/apm
+
+  # Don't download binary Node
+  patch -Np1 -i "$srcdir/no-scripts.patch"
+  rm BUNDLED_NODE_VERSION script/*
+
+  sed -i -e '/git-utils/s/5.7.2/5.7.3/' package.json
+
+  npm install --cache "$srcdir/npm-cache"
+  # pushd node_modules/git-utils
+  # patch -Np1 -i "$srcdir/git-utils.patch"
+}
+
+build() {
+  cd "$_archive"
+
+  npx coffee --compile --output lib src
+  npm uninstall coffee-script coffeelint express jasmine-focused shx node-gyp
+
+  # pushd node_modules/git-utils
+  # node-gyp rebuild
+  # popd
+
+  npm pack
+}
+
+package() {
+  cd "$_archive"
+  install -d -m755 "$pkgdir$_apmdir"
+  tar -xf atom-package-manager-*.tgz --strip-components 1 \
+      -C "$pkgdir$_apmdir"
+  cp -r node_modules "$pkgdir$_apmdir"
+
+  install -d -m755 "$pkgdir/usr/bin"
+  ln -s \
+      "$(realpath --relative-to="$pkgdir/usr/bin" "$pkgdir$_apmdir/bin/apm")" \
+      "$pkgdir/usr/bin"
+
+  install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE.md
+
+  # Remove occurrences of ${srcdir}
+  find "$pkgdir" -name "package.json" \
+       -exec sed -e "s|$srcdir/$_archive|$_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/*.cc' -exec rm '{}' \; \
+      -or -path '*/git-utils/src/*.h' -exec rm '{}' \; \
+      -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 1182819, apm/trunk/apm.js)
===================================================================
--- community-staging-x86_64/apm.js	                        (rev 0)
+++ community-staging-x86_64/apm.js	2022-04-07 17:44:41 UTC (rev 1182820)
@@ -0,0 +1,11 @@
+#!/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");
+
+require("../lib/apm-cli.js").run(process.argv.slice(2), function (error) {
+    process.exitCode = Number(Boolean(error));
+});

Copied: apm/repos/community-staging-x86_64/git-utils.patch (from rev 1182819, apm/trunk/git-utils.patch)
===================================================================
--- community-staging-x86_64/git-utils.patch	                        (rev 0)
+++ community-staging-x86_64/git-utils.patch	2022-04-07 17:44:41 UTC (rev 1182820)
@@ -0,0 +1,10 @@
+--- a/binding.gyp
++++ b/binding.gyp
+@@ -162,6 +162,7 @@
+         'deps/libgit2/src/message.h',
+         'deps/libgit2/src/mwindow.c',
+         'deps/libgit2/src/mwindow.h',
++        'deps/libgit2/src/net.c',
+         'deps/libgit2/src/netops.c',
+         'deps/libgit2/src/netops.h',
+         'deps/libgit2/src/notes.c',

Copied: apm/repos/community-staging-x86_64/no-scripts.patch (from rev 1182819, apm/trunk/no-scripts.patch)
===================================================================
--- community-staging-x86_64/no-scripts.patch	                        (rev 0)
+++ community-staging-x86_64/no-scripts.patch	2022-04-07 17:44:41 UTC (rev 1182820)
@@ -0,0 +1,21 @@
+--- a/package.json
++++ b/package.json
+@@ -14,18 +14,6 @@
+   "bin": {
+     "apm": "bin/apm"
+   },
+-  "scripts": {
+-    "check-version": "node script/check-version.js",
+-    "clean:bin": "shx rm -rf bin/node_darwin_x64 bin/node.exe bin/node",
+-    "clean:lib": "shx rm -rf lib && shx mkdir -p lib",
+-    "clean": "npm run clean:lib && npm run clean:bin",
+-    "lint": "coffeelint src spec",
+-    "coffee": "coffee --compile --output lib src",
+-    "build": "npm run clean:lib && npm run coffee",
+-    "prepare": "npm run build",
+-    "postinstall": "node script/postinstall.js",
+-    "test": "npm run check-version && npm run lint && jasmine-focused --captureExceptions --coffee spec"
+-  },
+   "dependencies": {
+     "@atom/plist": "0.4.4",
+     "asar-require": "0.3.0",



More information about the arch-commits mailing list