Sync from SUSE:SLFO:Main xclip revision e35633ff7442e2b8117d7edf804967fb
This commit is contained in:
parent
da80ea599b
commit
213e22a31d
BIN
xclip-0.13.tar.gz
(Stored with Git LFS)
BIN
xclip-0.13.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
xclip-b372f73579d30f9ba998ffd0a73694e7abe2c313.tar.gz
(Stored with Git LFS)
Normal file
BIN
xclip-b372f73579d30f9ba998ffd0a73694e7abe2c313.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 21 14:30:07 UTC 2024 - Manfred Schwarb <manfred99@gmx.ch>
|
||||||
|
|
||||||
|
- use git hash in download URL, not branch name.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 18 23:07:13 UTC 2024 - Manfred Schwarb <manfred99@gmx.ch>
|
||||||
|
|
||||||
|
- Update to master checkout b372f73:
|
||||||
|
* add -sensitive option
|
||||||
|
* works reliably for large data streams
|
||||||
|
* improved debug and checking facilities
|
||||||
|
* when pasting, don't clear selection unless -sensitive is given
|
||||||
|
* if stdin is a tty, choose appropriate -i or -o option as default mode
|
||||||
|
* numerous bug fixes (segfaults, resource leaks, null pointer dereference)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 12 22:37:21 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
Fri Mar 12 22:37:21 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
26
xclip.spec
26
xclip.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package xclip
|
# spec file for package xclip
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,20 +16,24 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define rversion 0.13
|
||||||
|
%define gitdate 20220129
|
||||||
|
%define githash b372f73579d30f9ba998ffd0a73694e7abe2c313
|
||||||
|
|
||||||
Name: xclip
|
Name: xclip
|
||||||
Version: 0.13
|
Version: %{rversion}+git%{gitdate}
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Command Line Interface to the X11 Clipboard
|
Summary: Command Line Interface to the X11 Clipboard
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/X11/Utilities
|
Group: System/X11/Utilities
|
||||||
URL: https://github.com/astrand/xclip
|
URL: https://github.com/astrand/xclip
|
||||||
Source: https://github.com/astrand/%{name}/archive/%{version}.tar.gz#./%{name}-%{version}.tar.gz
|
Source: https://github.com/astrand/xclip/archive/%{githash}.tar.gz#/%{name}-%{githash}.tar.gz
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: xorg-x11-libICE-devel
|
BuildRequires: pkgconfig(ice)
|
||||||
BuildRequires: xorg-x11-libX11-devel
|
BuildRequires: pkgconfig(x11)
|
||||||
BuildRequires: xorg-x11-libXext-devel
|
BuildRequires: pkgconfig(xext)
|
||||||
BuildRequires: xorg-x11-libXmu-devel
|
BuildRequires: pkgconfig(xmu)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
xclip is a command line interface to the X11 clipboard. It can also be used
|
xclip is a command line interface to the X11 clipboard. It can also be used
|
||||||
@ -37,7 +41,7 @@ for copying files, as an alternative to sftp/scp, thus avoiding password
|
|||||||
prompts when X11 forwarding has already been setup.
|
prompts when X11 forwarding has already been setup.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %{name}-%{githash}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
bash ./bootstrap
|
bash ./bootstrap
|
||||||
@ -50,6 +54,8 @@ bash ./bootstrap
|
|||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
|
|
||||||
|
%check
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc ChangeLog README
|
%doc ChangeLog README
|
||||||
@ -57,7 +63,7 @@ bash ./bootstrap
|
|||||||
%{_bindir}/xclip-copyfile
|
%{_bindir}/xclip-copyfile
|
||||||
%{_bindir}/xclip-cutfile
|
%{_bindir}/xclip-cutfile
|
||||||
%{_bindir}/xclip-pastefile
|
%{_bindir}/xclip-pastefile
|
||||||
%{_mandir}/man1/xclip.1%{?ext_man}
|
%{_mandir}/man1/xclip.1%{?ext_man}*
|
||||||
%{_mandir}/man1/xclip-copyfile.1%{?ext_man}
|
%{_mandir}/man1/xclip-copyfile.1%{?ext_man}*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user