Compare commits
No commits in common. "c9s" and "c10s" have entirely different histories.
11
.gitignore
vendored
11
.gitignore
vendored
@ -1,7 +1,4 @@
|
||||
/gnome-shell-extension-dash-to-dock-*.tar.gz
|
||||
/5658b5c2217ab3b7a036d51b62b357ea99e8fedc.tar.gz
|
||||
/70f1db83cf6a4e83c26e6ec8b89f9a8477905406.tar.gz
|
||||
/77bc70783454f00fefc1e372ca2633ab27efedce.tar.gz
|
||||
/9c132034854e382e5fb2ecb72b3feb442975d027.tar.gz
|
||||
/e2cc4412ac4057a403722dd9af331aa43e86db8b.tar.gz
|
||||
/71abe800b2bc0bca60c63c8e646db2a8a9827ddf.tar.gz
|
||||
/gnome-shell-extension-dash-to-dock-92.tar.gz
|
||||
/gnome-shell-extension-dash-to-dock-94.tar.gz
|
||||
/gnome-shell-extension-dash-to-dock-96.tar.gz
|
||||
/gnome-shell-extension-dash-to-dock-99.tar.gz
|
||||
|
@ -1,3 +0,0 @@
|
||||
# gnome-shell-extension-dash-to-dock
|
||||
|
||||
The gnome-shell-extension-dash-to-dock package
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
@ -1,35 +1,40 @@
|
||||
%global extdir %{_datadir}/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com
|
||||
%global gschemadir %{_datadir}/glib-2.0/schemas
|
||||
%global giturl https://github.com/micheleg/dash-to-dock
|
||||
#%%global commit 71abe800b2bc0bca60c63c8e646db2a8a9827ddf
|
||||
#%%global commit_short 71abe80
|
||||
#%%global commit_date 20201004
|
||||
%global extdir %{_datadir}/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com
|
||||
%global gschemadir %{_datadir}/glib-2.0/schemas
|
||||
|
||||
%global giturl https://github.com/micheleg/dash-to-dock
|
||||
#%%global commit 506dd023215ee4be6a1c807af94bfd43303a2a3d
|
||||
#%%global commit_short %%(c=%%{commit}; echo ${c:0:7})
|
||||
#%%global commit_date 20240320
|
||||
|
||||
Name: gnome-shell-extension-dash-to-dock
|
||||
Version: 69
|
||||
Release: 4%{?dist}
|
||||
#Release: 2.%%{commit_date}git%%{commit_short}%%{?dist}
|
||||
Summary: Dock for the Gnome Shell by micxgx@gmail.com
|
||||
Name: gnome-shell-extension-dash-to-dock
|
||||
Version: 99
|
||||
Release: %autorelease
|
||||
#Release: %%autorelease -e %%{commit_date}git%%{commit_short}
|
||||
Summary: Dock for the Gnome Shell by micxgx@gmail.com
|
||||
|
||||
License: GPLv2+
|
||||
URL: https://micheleg.github.io/dash-to-dock
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://micheleg.github.io/dash-to-dock
|
||||
%if 0%{?commit:1}
|
||||
Source0: %{giturl}/archive/%{commit}.tar.gz
|
||||
Source0: %{giturl}/archive/%{commit}.tar.gz
|
||||
%else
|
||||
Source0: %{giturl}/archive/extensions.gnome.org-v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source0: %{giturl}/archive/extensions.gnome.org-v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
%endif
|
||||
Source1: stylesheet.css
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: gettext
|
||||
BuildRequires: make
|
||||
BuildRequires: %{_bindir}/glib-compile-schemas
|
||||
|
||||
%if 0%{?fedora}
|
||||
BuildRequires: sassc
|
||||
%endif
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: gettext
|
||||
BuildRequires: %{_bindir}/glib-compile-schemas
|
||||
BuildRequires: make
|
||||
|
||||
Requires: gnome-shell-extension-common
|
||||
Requires: gnome-shell-extension-common
|
||||
# libdbusmenu won't be part of RHEL 9, thus disable the dependency.
|
||||
%if 0%{?fedora}
|
||||
Requires: libdbusmenu-gtk3
|
||||
Requires: libdbusmenu-gtk3
|
||||
%endif
|
||||
|
||||
%description
|
||||
@ -46,6 +51,11 @@ to leave the desktop view.
|
||||
%autosetup -n dash-to-dock-extensions.gnome.org-v%{version} -p 1
|
||||
%endif
|
||||
|
||||
%if 0%{?rhel}
|
||||
# pre-generated stylesheet; use `make stylesheet.css` to update
|
||||
cp %{SOURCE1} .
|
||||
%endif
|
||||
|
||||
|
||||
%build
|
||||
%make_build
|
||||
@ -65,7 +75,7 @@ to leave the desktop view.
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
%{_bindir}/glib-compile-schemas %{gschemadir} &> /dev/null || :
|
||||
%{_bindir}/glib-compile-schemas %{gschemadir} &> /dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
@ -82,85 +92,4 @@ fi
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 69-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Dec 01 2020 Tomas Popela <tpopela@redhat.com> - 69-3
|
||||
- Disable the libdbusmenu-gtk3 dependency on ELN/RHEL 9 as it won't contain
|
||||
libdbusmenu
|
||||
|
||||
* Thu Nov 19 2020 Mike DePaulo <mikedep333@gmail.com> - 69-2
|
||||
- Merge PR from topherisswell (Christopher Morrow) to depend on libdbusmenu-gtk3
|
||||
- Either this or the previous change (or both) should resolve enabling the
|
||||
extension on recent / all installations of F33 (rhbz: #1884795)
|
||||
|
||||
* Thu Nov 19 2020 Nikolaos Perrakis <nikperrakis@gmail.com> - 69-1.20201004git71abe80
|
||||
- Upgrade to version 69, fixing GNOME 3.38 compatibility issues
|
||||
|
||||
* Mon Sep 14 2020 Mike DePaulo <mikedep333@gmail.com> - 68-3.20200911gite2cc441
|
||||
- Upgrade to PR/branch for GNOME 3.38 compatibility, latest as of 2020-09-11
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 68-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Apr 20 2020 Mike DePaulo <mikedep333@gmail.com> - 68-1
|
||||
- Update from nightlies (called v67, of v68) to v68 release (2020-04-19)
|
||||
|
||||
* Thu Apr 16 2020 Mike DePaulo <mikedep333@gmail.com> - 67-8.20200408git3ca96a2
|
||||
- Rebase to master branch as of 2020-04-15
|
||||
("Use new convenience function to open settings")
|
||||
- Use latest proposed patches (37 total) for GNOME 3.36 compatibility
|
||||
as of 2020-04-16
|
||||
("DnD shoud work properly also in horizontal mode")
|
||||
|
||||
* Thu Apr 09 2020 Mike DePaulo <mikedep333@gmail.com> - 67-7.20200408git77bc707
|
||||
- Rebase to master branch as of 2020-04-08
|
||||
- Use latest proposed patches (36 total) for GNOME 3.36 compatibility
|
||||
as of 2020-04-08
|
||||
https://github.com/micheleg/dash-to-dock/pull/1097#event-3216150535
|
||||
|
||||
* Mon Apr 06 2020 Mike DePaulo <mikedep333@gmail.com> - 67-6.20200323git70f1db8
|
||||
- Rebase to master branch as of 2020-03-23
|
||||
- Use latest proposed patches (36 total) for GNOME 3.36 compatibility
|
||||
(rhbz: #1794889)
|
||||
|
||||
* Tue Mar 03 2020 Mike DePaulo <mikedep333@gmail.com> - 67-5.20200224git5658b5c
|
||||
- Add 7 new addtl proposed patches for GNOME 3.36 compatibility (rhbz: #1794889)
|
||||
|
||||
* Thu Feb 27 2020 Mike DePaulo <mikedep333@gmail.com> - 67-4.20200224git5658b5c
|
||||
- Add new addtl proposed patch for GNOME 3.36 compatibility (rhbz: #1794889)
|
||||
|
||||
* Tue Feb 25 2020 Mike DePaulo <mikedep333@gmail.com> - 67-3
|
||||
- Upgrade to latest master branch
|
||||
- Add proposed PR/patches for GNOME 3.36 compatibility
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 67-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sun Oct 27 2019 Mike DePaulo <mikedep333@gmail.com> - 67-1
|
||||
- Upgrade to 67 for GNOME 3.34 (f31) compatibility (rhbz#1753665)
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 66-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Apr 21 2019 Björn Esser <besser82@fedoraproject.org> - 66-1
|
||||
- Upgrade to 66 for GNOME 3.32 (f30) compatibility (rhbz#1700690)
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 64-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Nov 15 2018 Mike DePaulo <mikedep333@gmail.com> - 64-1
|
||||
- Upgrade to 64 for GNOME 3.30 (f29) compatibility as well as formal
|
||||
GNOME 3.28 (f28 & EPEL 7.6) compatibility. (resolves #1634447)
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 61-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 61-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sun Dec 03 2017 Björn Esser <besser82@fedoraproject.org> - 61-1
|
||||
- Initial import (rhbz#1520149)
|
||||
|
||||
* Fri Dec 01 2017 Björn Esser <besser82@fedoraproject.org> - 61-0.1
|
||||
- Initial rpm release (rhbz#1520149)
|
||||
%autochangelog
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (gnome-shell-extension-dash-to-dock-69.tar.gz) = c643ec54375d09d63437ec0fd5cbc33ca39aa2358ad9a9eba8c12b77d4f3fb0e3c547bbe69b20db73ed2e425274b5a234c428c564d05055c9d7c019f41e890f0
|
||||
SHA512 (gnome-shell-extension-dash-to-dock-99.tar.gz) = 039e770a9e37bd7f45f88ccb1b77b0e89b33e00d8d62e9d10ca3fee140486496cf04701826f7e2f86154cc66771b0f5b98af81bdf446bf96b10f2fc03c96eee1
|
||||
|
1477
stylesheet.css
Normal file
1477
stylesheet.css
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user