Commit d42dc255 authored by Punn, Kamal's avatar Punn, Kamal
Browse files

Merge branch '9kp-pysen-to-nesplot' into 'main'

modified pysen to nesplot

See merge request !49
parents 4295b0b8 ec8698ba
Loading
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
Name:           nsd-app-wrap
Version:        1.56
Version:        1.57
Release:        1%{?dist}
Summary:        Wrapper scripts to launch python applications installed via anaconda
Vendor:         Peter F. Peterson
@@ -49,7 +49,7 @@ install -m 755 licorne %{buildroot}%{_bindir}/
install -m 755 quicknxs                               %{buildroot}%{_bindir}/
install -m 755 crystalplan                            %{buildroot}%{_bindir}/
install -m 755 paraview                               %{buildroot}%{_bindir}/
install -m 755 pysen                                  %{buildroot}%{_bindir}/
install -m 755 nseplot                                %{buildroot}%{_bindir}/

# put icons in the right place
mkdir -p %{buildroot}/%{_datadir}/pixmaps/
@@ -74,7 +74,6 @@ install -m 644 desktop/jupyter.local.desktop %{buildroot}%{_datadir}/a
install -m 644 desktop/quicknxs.desktop                %{buildroot}%{_datadir}/applications/
install -m 644 desktop/crystalplan.desktop             %{buildroot}%{_datadir}/applications/
install -m 644 desktop/paraview.desktop                %{buildroot}%{_datadir}/applications/
install -m 644 desktop/pysen.desktop                   %{buildroot}%{_datadir}/applications/

%files
%{_bindir}/*
@@ -82,6 +81,9 @@ install -m 644 desktop/pysen.desktop %{buildroot}%{_datadir}/a
%{_prefix}/share/applications/*

%changelog
* Tue Feb 27 2024 Kamal Punn
- modify pysen to nseplot for RHEL9

* Fri Feb 23 2024 Kamal Punn
- added quicknxs-v1 for RHEL9

src/desktop/pysen.desktop

deleted100755 → 0
+0 −9
Original line number Diff line number Diff line
#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Name=pysen
Comment=pysen aims to provide a unified platform to configure and run day-to-day development tools
Exec=/usr/bin/pysen
TryExec=pysen
Icon=pysen
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ if [ -v CONDA_ENVIRON ]; then
    source "$(dirname "$(realpath "$0")")/nsd-app-wrap.sh"

    # put together arguments - conda_env, application, argv
    args=("${CONDA_ENVIRON}" "pysen" "$@")
    args=("${CONDA_ENVIRON}" "nseplot" "$@")

    # start the application
    activate_and_launch "${args[@]}"