Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a525d3caf | ||
| efe557cc0a | |||
| 5aa309cf46 | |||
|
|
7c0737747e | ||
|
|
4292afc007 | ||
|
|
923a1344c0 | ||
|
|
1ba4e0b9d6 | ||
|
|
f8289d118a |
4 changed files with 42 additions and 23 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -1,6 +1 @@
|
|||
xcalc-1.0.3.tar.bz2
|
||||
/xcalc-1.0.5.tar.bz2
|
||||
/xcalc-1.0.6.tar.bz2
|
||||
/xcalc-1.1.0.tar.bz2
|
||||
/xcalc-1.1.1.tar.xz
|
||||
/xcalc-1.1.2.tar.xz
|
||||
/xcalc-*.tar.*
|
||||
|
|
|
|||
19
.packit.yaml
Normal file
19
.packit.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# See the documentation for more information:
|
||||
# https://packit.dev/docs/configuration/
|
||||
|
||||
specfile_path: xcalc.spec
|
||||
|
||||
copy_upstream_release_description: false
|
||||
|
||||
jobs:
|
||||
- job: pull_from_upstream
|
||||
trigger: release
|
||||
dist_git_branches:
|
||||
- fedora-rawhide
|
||||
|
||||
- job: koji_build
|
||||
trigger: commit
|
||||
allowed_committers: ['packit','all_admins']
|
||||
dist_git_branches:
|
||||
- fedora-rawhide
|
||||
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (xcalc-1.1.2.tar.xz) = 51da677dc88bcd7299ed8d678cb26b048fdb82a1983e1496a06253ee2dceefca4ac87d1a74432b4a76dcc11921a61339bb3d292607be46228164140b430bbad2
|
||||
SHA512 (xcalc-1.1.3.tar.xz) = 26236f5d6bd37df424e2f61b00362f4cd31a55b1decf03d98053765466af1393c762ae4127fd29256d635e28c10d7713ad12c5feb72c02272144b94453115afd
|
||||
|
|
|
|||
37
xcalc.spec
37
xcalc.spec
|
|
@ -1,46 +1,51 @@
|
|||
Name: xcalc
|
||||
Version: 1.1.2
|
||||
Version: 1.1.3
|
||||
Release: %autorelease
|
||||
Summary: Scientific Calculator X11 Client
|
||||
|
||||
License: MIT
|
||||
URL: http://xorg.freedesktop.org
|
||||
Source0: http://xorg.freedesktop.org/releases/individual/app/xcalc-%{version}.tar.xz
|
||||
URL: https://xorg.freedesktop.org
|
||||
Source0: https://xorg.freedesktop.org/releases/individual/app/xcalc-%{version}.tar.xz
|
||||
Source1: xcalc.desktop
|
||||
|
||||
BuildRequires: gcc make
|
||||
BuildRequires: xorg-x11-proto-devel
|
||||
BuildRequires: libXaw-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: xorg-x11-util-macros
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: libXmu-devel
|
||||
BuildRequires: libXaw-devel
|
||||
BuildRequires: libXext-devel
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: libXmu-devel
|
||||
BuildRequires: libXpm-devel
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: xorg-x11-proto-devel
|
||||
BuildRequires: xorg-x11-util-macros
|
||||
|
||||
Requires: xorg-x11-xbitmaps
|
||||
Requires: xorg-x11-fonts-75dpi
|
||||
Requires: xorg-x11-fonts-100dpi
|
||||
Requires: xorg-x11-fonts-75dpi
|
||||
Requires: xorg-x11-fonts-misc
|
||||
Requires: xorg-x11-xbitmaps
|
||||
|
||||
|
||||
%description
|
||||
xcalc is a scientific calculator X11 client.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup
|
||||
cp -p %{SOURCE1} .
|
||||
|
||||
%build
|
||||
%configure
|
||||
make V=1 %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
install -d ${RPM_BUILD_ROOT}%{_datadir}/applications
|
||||
install -p -m 644 xcalc.desktop ${RPM_BUILD_ROOT}%{_datadir}/applications
|
||||
desktop-file-validate ${RPM_BUILD_ROOT}%{_datadir}/applications/xcalc.desktop
|
||||
install -d %{buildroot}%{_datadir}/applications
|
||||
install -p -m 644 xcalc.desktop %{buildroot}%{_datadir}/applications
|
||||
desktop-file-validate %{buildroot}%{_datadir}/applications/xcalc.desktop
|
||||
|
||||
%check
|
||||
%make_build check
|
||||
|
||||
%files
|
||||
%{_bindir}/xcalc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue