File asar.spec of Package asar
#
# spec file for package asar
#
# Copyright (c) 2023 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define THISMONTHSHORT %(LC_TIME='en_US.UTF-8' date +%%b)
%define THISMONTHLONG %(LC_TIME='en_US.UTF-8' date +%%B)
%define THISYEAR %(date +%%Y)
%define DAYNUMBER %(LC_TIME='en_US.UTF-8' date +%%d)
%define DAYNAMESHORT %(LC_TIME='en_US.UTF-8' date +%%a)
#today format: Mon Jan 1 2024
%define today %{DAYNAMESHORT} %{THISMONTHSHORT} %{DAYNUMBER} %{THISYEAR}
%define packager Kimi
%define packager_lowercase %(echo %{packager} | tr '[:upper:]' '[:lower:]')
%define packagerEmail noreply@nodomain.org
Name: asar
Version: 3.2.8
Release: 0
Summary: Creating atom-shell (electron) app packages
License: MIT and ISC
Group: Development/Languages/NodeJS
Url: https://github.com/electron/asar
#
# Original sources:
#
# Source0: https://github.com/electron/asar/archive/refs/tags/v%%{version}.tar.gz
# Created by prepare-vendor.sh
# Source1: vendor.tar.xz
# Source2: prepare_vendor.sh
#
# New sources:
#
# For Debian, Ubuntu, a combined sources.tar.xz is easier to handle
# It combines v%%{version}.tar.gz and vendor.tar.xz
Source0: asar-%{version}.tar.xz
BuildArch: noarch
BuildRequires: fdupes
BuildRequires: jq
BuildRequires: nodejs-packaging
%if 0%{?fedora} >= 37
BuildRequires: nodejs-npm
%else
BuildRequires: npm
%endif
BuildRequires: zstd
%global __requires_exclude ^npm(.*)$
Provides: nodejs-asar = %{version}
%description
Asar is a simple extensive archive format, it works like tar
that concatenates all files together without compression, while
having random access support.
%prep
#%%autosetup -p1 -a 1
%autosetup -p1 -a 0
%build
npm rebuild --verbose --foreground-scripts
%install
mkdir -pv %{buildroot}%{nodejs_sitelib}/@electron
mkdir -pv %{buildroot}%{_bindir}
ls -al
pwd
cp -vlr . %{buildroot}%{nodejs_sitelib}/@electron/asar
ln -srv %{buildroot}%{nodejs_sitelib}/@electron/asar/bin/asar.js %{buildroot}%{_bindir}/asar
# symlink old package name
ln -srv %{buildroot}%{nodejs_sitelib}/{@electron/,}asar
#fix shebang
sed -i '1s/env //' %{buildroot}%{nodejs_sitelib}/@electron/asar/bin/asar.js
cd %{buildroot}%{nodejs_sitelib}/asar
# Correct bogus version in package.json
jq -cj '.version="%{version}"' package.json > new
mv new package.json
#Remove development garbage
find -name example -print0 |xargs -r0 -- rm -rvf
find -name test -print0 |xargs -r0 -- rm -rvf
find -name typings -print0 |xargs -r0 -- rm -rvf
find -name @types -print0 |xargs -r0 -- rm -rvf
find -name .github -print0 |xargs -r0 -- rm -rvf
find -name .circleci -print0 |xargs -r0 -- rm -rvf
find -name '*.md' -type f -print -delete
find -name '*.markdown' -type f -print -delete
find -name '*.ts' -type f -print -delete
find -name '.*.yml' -type f -print -delete
find -name '.*ignore' -type f -print -delete
find -name 'snapcraft*' -type f -print -delete
find -name '.git*' -type f -print -delete
find -name yarn.lock -type f -print -delete
find -name '.yarn*' -type f -print -delete
find -name '.releaserc*' -type f -print -delete
%fdupes %{buildroot}
echo
echo "--- Show what was installed ---"
find %{buildroot}
echo "--- End show what was installed ---"
echo
#ls -al %{buildroot}/usr/lib/node_modules/@electron/asar/bin
#ls -al %{buildroot}/usr/bin
#%%check
#We can't run tests, we don't have mocha available.
%files
%defattr(-,root,root)
%doc CHANGELOG.md README.md
%license LICENSE.md
%{_bindir}/asar
%{nodejs_sitelib}
%changelog
* %{today} %{packager} <%{packagerEmail}> - %{version}
- New release.