Compare commits
25 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7fd366d9f7 | ||
|
|
a1b3306638 | ||
|
|
346f2db97f | ||
|
|
71ed39b7d3 | ||
|
|
391a317573 | ||
|
|
acc044a4f1 | ||
|
|
e5a068d970 | ||
|
|
919f1c7876 | ||
|
|
326133b894 | ||
|
|
5211abfd7c | ||
|
|
37a31e5185 | ||
|
|
e19fd73764 | ||
|
|
3a027e0eeb | ||
|
|
6a0622ed61 | ||
|
|
53507aa511 | ||
|
|
55e22601cc | ||
|
|
433903ea13 | ||
|
|
794c8c9ec9 | ||
|
|
73ac8aff31 | ||
|
|
f497a2fee6 | ||
|
|
c4a5212433 | ||
|
|
c1128127ff | ||
|
|
64dec0e0da | ||
|
|
19c6c9cd1d | ||
|
|
ea9b5950ea |
4 changed files with 172 additions and 61 deletions
21
.gitignore
vendored
21
.gitignore
vendored
|
|
@ -1,19 +1,2 @@
|
||||||
menu-cache-0.3.2.tar.gz
|
/menu-cache-*.tar.xz
|
||||||
/menu-cache-0.3.3.tar.gz
|
/menu-cache-*.tar.gz
|
||||||
/menu-cache-0.4.1.tar.gz
|
|
||||||
/menu-cache-0.5.1.tar.gz
|
|
||||||
/menu-cache-1.0.0.tar.xz
|
|
||||||
/menu-cache-1.0.0-D20151117git2d65876eb6948f122b35241d6611cf0f009b6f79.tar.gz
|
|
||||||
/menu-cache-1.0.0-D20151126git7e63ae3f66c30a4516bf04139fd98a3856e6a065.tar.gz
|
|
||||||
/menu-cache-1.0.0-D20151128git0b1e85c263f571f61384c7eb81c7edc2a69335dc.tar.gz
|
|
||||||
/menu-cache-1.0.1.tar.xz
|
|
||||||
/menu-cache-1.0.1-D20160506git2932d67f305d4fd45a29c35c233ecd2925c2ecab.tar.gz
|
|
||||||
/menu-cache-1.0.1-D20161021git441f0ca9a1b3a8e06dc4b440af28aaa5f4e2e37a.tar.gz
|
|
||||||
/menu-cache-1.0.2.tar.xz
|
|
||||||
/menu-cache-1.0.2-D20170417git54ab9e45764435634cdf5de360b295ee3a22817a.tar.gz
|
|
||||||
/menu-cache-1.0.2-D20170419gitdffb1314ec1b7212bbee5dfa9a021a069b826cbb.tar.gz
|
|
||||||
/menu-cache-1.0.2-D20170514git56f66684592abf257c4004e6e1fff041c64a12ce.tar.gz
|
|
||||||
/menu-cache-1.0.2-D20170905git2ef9df036ccc68eaae1eb2ebbffe29a6e2856b97.tar.gz
|
|
||||||
/menu-cache-1.0.2-D20170913gitfd52af607c6f4bc8db99877d71f802f1afdd7c06.tar.gz
|
|
||||||
/menu-cache-1.0.2-D20170914git8c8534159d4898935b47f9103cf32cd9b21b3df5.tar.gz
|
|
||||||
/menu-cache-1.1.0.tar.xz
|
|
||||||
|
|
|
||||||
27
create-menu-cache-git-bare-tarball.sh
Normal file
27
create-menu-cache-git-bare-tarball.sh
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -x
|
||||||
|
set -e
|
||||||
|
|
||||||
|
REPONAME=menu-cache
|
||||||
|
GITURL=https://github.com/lxde/${REPONAME}.git
|
||||||
|
|
||||||
|
DATE=$(date '+%Y%m%d')
|
||||||
|
TIME=$(date '+%H%M')
|
||||||
|
|
||||||
|
TARNAME=${REPONAME}-${DATE}T${TIME}.tar.gz
|
||||||
|
|
||||||
|
PWDDIR=$(pwd)
|
||||||
|
TMPDIR=$(mktemp -d /var/tmp/libfm-XXXXXX)
|
||||||
|
pushd $TMPDIR
|
||||||
|
|
||||||
|
git clone --mirror $GITURL
|
||||||
|
tar czf ${TARNAME} ${REPONAME}.git/
|
||||||
|
|
||||||
|
pushd ${REPONAME}.git/
|
||||||
|
git log --format=fuller | head -n 12
|
||||||
|
popd
|
||||||
|
|
||||||
|
cp -p ${TARNAME} $PWDDIR
|
||||||
|
popd
|
||||||
|
rm -rf $TMPDIR
|
||||||
183
menu-cache.spec
183
menu-cache.spec
|
|
@ -1,40 +1,61 @@
|
||||||
%global usegit 0
|
%global use_release 1
|
||||||
%global mainrel 1
|
%global use_git 0
|
||||||
|
%global use_gitbare 0
|
||||||
|
|
||||||
%global githash 8c8534159d4898935b47f9103cf32cd9b21b3df5
|
%if 0%{?use_git} < 1
|
||||||
%global shorthash %(TMP=%githash ; echo ${TMP:0:10})
|
%if 0%{?use_gitbare} < 1
|
||||||
%global gitdate Thu, 14 Sep 2017 00:32:14 +0300
|
# force
|
||||||
%global gitdate_num 20170914
|
%global use_release 1
|
||||||
|
|
||||||
%if 0%{?usegit} >= 1
|
|
||||||
%global fedorarel %{mainrel}.D%{gitdate_num}git%{shorthash}
|
|
||||||
%else
|
|
||||||
%global fedorarel %{?prever:0.}%{mainrel}%{?prever:.%{prerpmver}}
|
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%global git_version %{nil}
|
||||||
|
%global git_ver_rpm %{nil}
|
||||||
|
%global git_builddir %{nil}
|
||||||
|
|
||||||
|
%if 0%{?use_gitbare}
|
||||||
|
%global gittardate 20250209
|
||||||
|
%global gittartime 1612
|
||||||
|
|
||||||
|
%global gitbaredate 20250128
|
||||||
|
%global git_rev 18bad9324b9e8990c73a67cee9b87d551d34be91
|
||||||
|
%global git_short %(echo %{git_rev} | cut -c-8)
|
||||||
|
%global git_version %{gitbaredate}git%{git_short}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?use_git} || 0%{?use_gitbare}
|
||||||
|
%global git_ver_rpm ^%{git_version}
|
||||||
|
%global git_builddir -%{git_version}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%global main_version 1.1.1
|
||||||
|
|
||||||
|
|
||||||
Name: menu-cache
|
Name: menu-cache
|
||||||
Version: 1.1.0
|
Version: %{main_version}%{git_ver_rpm}
|
||||||
Release: %{fedorarel}%{?dist}.2
|
Release: 2%{?dist}
|
||||||
Summary: Caching mechanism for freedesktop.org compliant menus
|
Summary: Caching mechanism for freedesktop.org compliant menus
|
||||||
|
|
||||||
Group: System Environment/Libraries
|
# SPDX confirmed
|
||||||
License: LGPLv2+ and GPLv2+
|
License: LGPL-2.0-or-later
|
||||||
URL: http://lxde.org
|
URL: http://lxde.org
|
||||||
#VCS: git:git://lxde.git.sourceforge.net/gitroot/lxde/menu-cache
|
%if 0%{?use_gitbare}
|
||||||
%if 0%{?usegit} >= 1
|
Source0: %{name}-%{gittardate}T%{gittartime}.tar.gz
|
||||||
Source0: https://github.com/lxde/menu-cache/archive/%{githash}/%{name}-%{version}-D%{gitdate_num}git%{githash}.tar.gz
|
|
||||||
%else
|
|
||||||
Source0: http://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz
|
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?use_release}
|
||||||
|
Source0: https://github.com/lxde/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||||
|
%endif
|
||||||
|
Source1: create-menu-cache-git-bare-tarball.sh
|
||||||
|
|
||||||
|
BuildRequires: make
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: pkgconfig(glib-2.0)
|
BuildRequires: pkgconfig(glib-2.0)
|
||||||
BuildRequires: pkgconfig(libfm-extra)
|
BuildRequires: pkgconfig(libfm-extra)
|
||||||
%if 0%{?usegit} >= 1
|
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
%endif
|
BuildRequires: /usr/bin/git
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Menu-cache is a caching mechanism for freedesktop.org compliant menus to
|
Menu-cache is a caching mechanism for freedesktop.org compliant menus to
|
||||||
|
|
@ -43,7 +64,6 @@ components of the LXDE desktop environment such as LXPanel or LXLauncher.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
|
|
@ -52,41 +72,55 @@ developing applications that use %{name}.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%if 0%{?usegit} >= 1
|
%if 0%{?use_release}
|
||||||
%setup -q -n %{name}-%{githash}
|
%setup -q -n %{name}-%{main_version}%{git_builddir}
|
||||||
%else
|
|
||||||
%setup -q
|
git init
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?usegit} >= 1
|
%if 0%{?use_gitbare}
|
||||||
sh autogen.sh
|
%setup -q -c -T -n %{name}-%{main_version}%{git_builddir} -a 0
|
||||||
|
git clone ./%{name}.git/
|
||||||
|
cd %{name}
|
||||||
|
|
||||||
|
git checkout -b %{main_version}-fedora %{git_rev}
|
||||||
|
cp -a [A-Z]* ..
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
git config user.name "%{name} Fedora maintainer"
|
||||||
|
git config user.email "%{name}-maintainers@fedoraproject.org"
|
||||||
|
|
||||||
|
%if 0%{?use_release}
|
||||||
|
git add .
|
||||||
|
git commit -m "base" -q
|
||||||
|
%endif
|
||||||
|
|
||||||
|
sh autogen.sh
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%if 0%{?use_gitbare}
|
||||||
|
cd %{name}
|
||||||
|
%endif
|
||||||
|
|
||||||
%configure --disable-static --disable-silent-rules
|
%configure --disable-static --disable-silent-rules
|
||||||
# remove rpath in menu-cache-gen
|
%make_build
|
||||||
#sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
||||||
#sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=%{buildroot}
|
%if 0%{?use_gitbare}
|
||||||
|
cd %{name}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%make_install
|
||||||
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
#FIXME: add ChangeLog and NEWS if there is content
|
#FIXME: add ChangeLog and NEWS if there is content
|
||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%if 0%{?usegit} < 1
|
|
||||||
%doc NEWS
|
%doc NEWS
|
||||||
%endif
|
|
||||||
%doc README
|
%doc README
|
||||||
%{_libexecdir}/%{name}/menu-cache-gen
|
%{_libexecdir}/%{name}/menu-cache-gen
|
||||||
%{_libexecdir}/%{name}/menu-cached
|
%{_libexecdir}/%{name}/menu-cached
|
||||||
|
|
@ -102,6 +136,73 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 16 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.1-1
|
||||||
|
- 1.1.1
|
||||||
|
|
||||||
|
* Sun Feb 09 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.0^20250128git18bad932-1
|
||||||
|
- Update to the latest git
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0^20240821git83d90343-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Aug 25 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.0^20240821git83d90343-1
|
||||||
|
- Update to the latest git
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0^20230724git4a82095c-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0^20230724git4a82095c-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0^20230724git4a82095c-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 21 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.0^20230724git4a82095c-1
|
||||||
|
- Update to the latest git
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 12 2023 Than Ngo <than@redhat.com> - 1.1.0-2.8
|
||||||
|
- migrated to SPDX license
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2.1
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 23 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.0-2
|
||||||
|
- Fix compilation with gcc10 -fno-common
|
||||||
|
|
||||||
|
* Fri Sep 20 2019 Zamir SUN <sztsian@gmail.com> - 1.1.0-1.5
|
||||||
|
- Improve compatibility for epel7
|
||||||
|
- Remove changelog that is out-of-order
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-1.4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-1.3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-1.2
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-1.2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (menu-cache-1.1.0.tar.xz) = e4c6619ade7b9a1b97c1366bb94dffb9975be5664b193cf0c69cf9470ef7ae19bda3390d04d98ee9a5b1658ec48aa5c83508c26c347af689161ee67c076b3c9e
|
SHA512 (menu-cache-1.1.1.tar.gz) = a2ede5663946d13a2992196a8547319ffa252cf5e37ba76dad559deb18450797ac6d5910415226ab996eab2131a2aa715b091a023a8a1eb39c83ea47043976e1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue