Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 2055238 Details for
Bug 2323149
Review Request: nwg-dock-hyprland - A GTK3-based Dock for Hyprland
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh109 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
Migrated Products
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
The .spec file difference from Copr build 8199061 to 8204005
spec-from-8199061-to-8204005.diff (text/plain), 4.04 KB, created by
Fedora Review Service
on 2024-11-03 01:21:46 UTC
(
hide
)
Description:
The .spec file difference from Copr build 8199061 to 8204005
Filename:
MIME Type:
Creator:
Fedora Review Service
Created:
2024-11-03 01:21:46 UTC
Size:
4.04 KB
patch
obsolete
>--- https://copr.fedorainfracloud.org/coprs/build/8199061 >+++ https://copr.fedorainfracloud.org/coprs/build/8204005 >@@ -1,6 +1,6 @@ > ## START: Set by rpmautospec > ## (rpmautospec version 0.7.3) >-## RPMAUTOSPEC: autorelease >+## RPMAUTOSPEC: autorelease, autochangelog > %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: > release_number = 1; > base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); >@@ -8,84 +8,82 @@ > }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} > ## END: Set by rpmautospec > >+# Generated by go2rpm 1.14.0 >+%bcond check 1 >+%bcond bootstrap 0 >+ >+%if %{with bootstrap} >+%global debug_package %{nil} >+%endif >+ >+%if %{with bootstrap} >+%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^golang\\(.*\\)$ >+%endif >+ >+# https://github.com/nwg-piotr/nwg-dock-hyprland >+%global goipath github.com/nwg-piotr/nwg-dock-hyprland >+Version: 0.3.2 >+ >+%gometa -L -f >+ >+%global common_description %{expand: >+GTK3-based dock for Hyprland.} >+ >+%global golicenses LICENSE >+%global godocs README.md >+ > Name: nwg-dock-hyprland >-Version: 0.3.1 > Release: %autorelease >-Summary: A GTK3 dock for the Hyprland window manager >+Summary: GTK3-based dock for Hyprland > > License: MIT >-URL: https://github.com/nwg-piotr/nwg-dock-hyprland >-Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz >-# Including Go 1.23.2 for build-time only >-# This is not bundled in the final binary, only used during compilation >-Source1: https://go.dev/dl/go1.23.2.linux-amd64.tar.gz >-Source2: https://go.dev/dl/go1.23.2.linux-arm64.tar.gz >-Source3: https://go.dev/dl/go1.23.2.linux-386.tar.gz >+URL: %{gourl} >+Source: %{gosource} > >-# No Go 1.23.2 builds available for these architectures >-ExcludeArch: ppc64le s390x >+%description %{common_description} > >-%global debug_package %{nil} >- >-BuildRequires: gcc-c++ >-BuildRequires: git >-BuildRequires: make >-BuildRequires: pkgconfig(gtk+-3.0) >-BuildRequires: gtk-layer-shell-devel >-BuildRequires: desktop-file-utils >- >-Requires: gtk3%{?_isa} >-Requires: gtk-layer-shell%{?_isa} >- >-%description >-A GTK3-based Dock for the Hyprland window manager. This package is part of the >-nwg-shell project (https://nwg-piotr.github.io/nwg-shell/). >- >-For a better experience, install nwg-drawer alongside this package. >+%gopkg > > %prep >-%autosetup -p1 >+%goprep -A >+%autopatch -p1 > >-# Set up Go 1.23.2 for build process >-%ifarch x86_64 >-tar xf %{SOURCE1} -C %{_builddir} >-%endif >-%ifarch aarch64 >-tar xf %{SOURCE2} -C %{_builddir} >-%endif >-%ifarch i686 >-tar xf %{SOURCE3} -C %{_builddir} >+%if %{without bootstrap} >+%generate_buildrequires >+%go_generate_buildrequires > %endif > >+%if %{without bootstrap} > %build >-# Using Go 1.23.2 for build process only >-# This does not affect the final binary >-export PATH=%{_builddir}/go/bin:$PATH >-export GOROOT=%{_builddir}/go >-export GOPATH=%{_builddir}/gopath >-export GOCACHE=%{_builddir}/gocache >-export GOFLAGS="-mod=vendor -trimpath" >-export GO111MODULE=on >- >-make build >+%gobuild -o %{gobuilddir}/bin/nwg-dock-hyprland %{goipath} >+%endif > > %install >-# Create necessary directories >-mkdir -p %{buildroot}%{_bindir} >-mkdir -p %{buildroot}%{_datadir}/%{name} >+%gopkginstall >+%if %{without bootstrap} >+install -m 0755 -vd %{buildroot}%{_bindir} >+install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/ >+%endif > >-# Install files >-cp -r images %{buildroot}%{_datadir}/%{name}/ >-cp config/* %{buildroot}%{_datadir}/%{name}/ >-install -Dm755 bin/%{name} %{buildroot}%{_bindir}/%{name} >+%if %{without bootstrap} >+%if %{with check} >+%check >+%gocheck >+%endif >+%endif > >+%if %{without bootstrap} > %files > %license LICENSE > %doc README.md >-%{_bindir}/%{name} >-%{_datadir}/%{name}/ >+%{_bindir}/nwg-dock-hyprland >+%endif >+ >+%gopkgfiles > > %changelog >-* Thu Oct 31 2024 Jannik <email@example.com> - 0.3.1-1 >-- Initial package >+## START: Generated by rpmautospec >+* Sun Nov 03 2024 John Doe <packager@example.com> - 0.3.2-1 >+- Uncommitted changes >+## END: Generated by rpmautospec >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 2323149
: 2055238 |
2055375