mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
app-editors/pulsar-bin: add 1.124.0
Signed-off-by: Pedro Arizmendi <dwosky@pm.me>
This commit is contained in:
parent
cc5e45f28f
commit
7c9325a1fc
@ -6,3 +6,5 @@ DIST pulsar-bin-1.120.0-amd64.tar.gz 224070958 BLAKE2B 33b91b4c4d36bff9564c5e154
|
||||
DIST pulsar-bin-1.120.0-arm64.tar.gz 218976256 BLAKE2B 39b4bc0ee83e02f65a40b457c6ae5583e1f43d807ce99c911f448e62427ffc7fead085afb0d5593f0c905b2557228d96f39c641a49afa79cd8bcfb171e0b30a0 SHA512 8dea8c099f1b39d49a2f5455fda875df11138b14e085e2c3833e67a723f352ff1b6d3b953a8626129f0e169a2f974015f8e9bcc837ee093c5bda464e0c680359
|
||||
DIST pulsar-bin-1.122.0-amd64.tar.gz 229076484 BLAKE2B 225ba5f14aad1ecd225b1f28f0f8197cf1ee2af63adbc2c913764089cc5035f12fe60f07b83145063c2a6bd31514303e6d870724e3efc286b16347ef60007953 SHA512 658ce21eaf1e0cd8f2d5534425dbdb69d217a68b0f413c6d647600fb43af1d641b06967b018f38af6d5ec0157e416552a5d3ebd42d754e78a0c86fa19d7301e9
|
||||
DIST pulsar-bin-1.122.0-arm64.tar.gz 223905653 BLAKE2B ba26a9889b4bddadd766b8eaa038024fd32b4318ad3a675106564d8870be920b9da1bb6b3e002e4fd86f0a373c92dd668b8b64165bec6abd26f04e51194f1eb0 SHA512 5250ba5a2ad200d558318733b7f9bdc733df3f6b9ba30cb9b727fedea7a7fa235aafe71280c27a8101472ff26dcf5b9aa27082497d7fe70e57efcb433aae4fc6
|
||||
DIST pulsar-bin-1.124.0-amd64.tar.gz 228937874 BLAKE2B 8d234e0369c4dc4db49a66a96c9fc31ca6f6f9906fdff32384162e521cd4bb4eb5439e3dd31e5db35b94c75b841d282dfba3fb579097a1aad02cf70222514bcb SHA512 dd03470db97f9bca0efdc74c1db9bc0ff9a2beb1d7b998c391abd226934b703cafc8c5f404d2f89742bcacc4880434206129f220e28fad3f6cffaa9267104269
|
||||
DIST pulsar-bin-1.124.0-arm64.tar.gz 223764919 BLAKE2B 9ba2388912002342c376022d609a70042f41e0a97210f4a6fbcab1e54db1247096914bc9925aaccb1490c3fa850e75e029cfb811cd33cf988aa6eed0afc2d95c SHA512 02e4b066d01020d424e12b7f9795a35d4e0ca861333fc018b8d69b0e9d288aebe70a1536f9a652f375731b54df636d20945838d36877089cac8a8890c4aa11c7
|
||||
|
113
app-editors/pulsar-bin/pulsar-bin-1.124.0.ebuild
Normal file
113
app-editors/pulsar-bin/pulsar-bin-1.124.0.ebuild
Normal file
@ -0,0 +1,113 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop xdg
|
||||
|
||||
DESCRIPTION="A Community-led Hyper-Hackable Text Editor"
|
||||
HOMEPAGE="https://pulsar-edit.dev/"
|
||||
|
||||
ur=https://github.com/pulsar-edit/pulsar/releases/download
|
||||
SRC_URI="
|
||||
amd64? ( ${ur}/v${PV}/Linux.pulsar-${PV}.tar.gz -> ${P}-amd64.tar.gz )
|
||||
arm64? ( ${ur}/v${PV}/ARM.Linux.pulsar-${PV}-arm64.tar.gz -> ${P}-arm64.tar.gz )
|
||||
"
|
||||
S="${WORKDIR}/pulsar-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64 ~arm64"
|
||||
|
||||
# binary package; no tests available
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core
|
||||
dev-libs/nspr
|
||||
app-crypt/libsecret
|
||||
dev-libs/expat
|
||||
dev-libs/glib
|
||||
dev-libs/nss
|
||||
dev-libs/openssl-compat
|
||||
dev-vcs/git
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-misc/curl
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
sys-libs/zlib
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf
|
||||
x11-libs/gtk+:3[X]
|
||||
x11-libs/libdrm
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/libxshmfence
|
||||
x11-libs/libXrandr
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
QA_PREBUILT="opt/Pulsar/*"
|
||||
QA_PRESTRIPPED="opt/Pulsar/resources/*" # Files are already stripped
|
||||
|
||||
src_unpack(){
|
||||
default
|
||||
|
||||
if use arm64; then
|
||||
mv "pulsar-${PV}-arm64" "pulsar-${PV}" || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare(){
|
||||
default
|
||||
|
||||
# We do not install licenses
|
||||
rm resources/LICENSE.md || die "Failed to remove LICENSE"
|
||||
}
|
||||
|
||||
src_install(){
|
||||
dodir /opt/Pulsar
|
||||
mv "${S}"/* "${ED}"/opt/Pulsar
|
||||
|
||||
dosym -r /opt/Pulsar/resources/pulsar.sh /usr/bin/pulsar
|
||||
|
||||
# Bug #906939
|
||||
if use amd64; then
|
||||
rm "${ED}"/opt/Pulsar/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins/python3 || die
|
||||
rmdir "${ED}"/opt/Pulsar/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins || die
|
||||
fi
|
||||
|
||||
doicon "${ED}"/opt/Pulsar/resources/pulsar.png
|
||||
make_desktop_entry "/usr/bin/pulsar %F" "Pulsar" "pulsar" \
|
||||
"GNOME;GTK;Utility;TextEditor;Development;" \
|
||||
"GenericName=Text Editor\nStartupNotify=true\nStartupWMClass=pulsar\n" \
|
||||
"MimeType=application/javascript;application/json;application/x-httpd-eruby;" \
|
||||
"application/x-httpd-php;application/x-httpd-php3;application/x-httpd-php4;" \
|
||||
"application/x-httpd-php5;application/x-ruby;application/x-bash;application/x-csh;" \
|
||||
"application/x-sh;application/x-zsh;application/x-shellscript;application/x-sql;" \
|
||||
"application/x-tcl;application/xhtml+xml;application/xml;application/xml-dtd;" \
|
||||
"application/xslt+xml;text/coffeescript;text/css;text/html;text/plain;text/xml;" \
|
||||
"text/xml-dtd;text/x-bash;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-c;text/x-chdr;" \
|
||||
"text/x-csh;text/x-csrc;text/x-dsrc;text/x-diff;text/x-go;text/x-java;text/x-java-source;" \
|
||||
"text/x-makefile;text/x-markdown;text/x-objc;text/x-perl;text/x-php;text/x-python;" \
|
||||
"text/x-ruby;text/x-sh;text/x-zsh;text/yaml;inode/directory"
|
||||
|
||||
einstalldocs
|
||||
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
pkg_postinst(){
|
||||
xdg_desktop_database_update
|
||||
|
||||
elog "To migrate configurations & saved state from Atom Editor, execute:"
|
||||
elog " cp -a \$HOME/.atom \$HOME/.pulsar"
|
||||
elog " cp -a \$HOME/.config/Atom \$HOME/.config/Pulsar"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user