Sync from SUSE:SLFO:Main xclip revision d18f830f848bc8e7563d517edf60c84f

This commit is contained in:
Adrian Schröter 2024-05-04 02:01:28 +02:00
commit da80ea599b
4 changed files with 154 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
xclip-0.13.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

65
xclip.changes Normal file
View File

@ -0,0 +1,65 @@
-------------------------------------------------------------------
Fri Mar 12 22:37:21 UTC 2021 - Dirk Müller <dmueller@suse.com>
- modernise spec-file (move license to licensedir)
-------------------------------------------------------------------
Sat Apr 22 19:31:26 UTC 2017 - mimi.vx@gmail.com
- change homepage and download url to github
-------------------------------------------------------------------
Thu Apr 13 15:26:46 UTC 2017 - hpj@urpla.net
- Update to 0.13:
* Add the remove-last-newline option
* Fix the compile warning & build steps, and add .gitignore
* An new option "-rmlastnl" is added to remove the last newline
character if present.
* Before running ./configure, autoreconf is required to generate
configuration files.
* Add .gitignore
* Changing Sourceforge URLs to GitHub.
* don't treat TARGETS request as contents request
* Document the -noutf8 option.
* Minor lang corrections.
* Avoid warnings about unused variable; only define html if
HAVE_ICONV.
* Applied 2924602 - 0005-Added-a-target-command-line-option.patch
* Applied 2924602 - 0004-Improved-xclip-s-error-handling.patch
* Applied 2924602 - 0003-Added-support-for-printing-more-data-types.patch
* Applied 2924602 - 0002-Added-support-in-xcout-for-receiving-16-and-32-bit-d.patch
* Applied 2924602 - 0001-Added-a-parameter-to-xcout-which-receives-the-type-o.patch
-------------------------------------------------------------------
Thu Sep 10 19:34:44 UTC 2015 - mpluskal@suse.com
- Update to 0.12
* Build fixes: Check for Xmu and Xt
* The version number has been corrected.
* Man pages are now available. Contributed by Maximilian Gass.
- Cleanup spec file with spec-cleaner
-------------------------------------------------------------------
Mon Dec 12 15:41:00 UTC 2011 - coolo@suse.com
- fix license to be in spdx.org format
-------------------------------------------------------------------
Thu Aug 27 15:16:48 CEST 2009 - coolo@novell.com
- update to 0.11 from build service
xclip-copyfile is now compatible with recent tar versions.
The performance has been greatly enhanced, especially over
slow networks. Two helper scripts, xclip-copyfile and
xclip-pastefile, has been added. Taken together, xclip can now
be used as an alternative to sftp/scp, thus avoiding password
prompt when X11 forwarding has already been setup.
Autoconf is now used instead of Imake.
-------------------------------------------------------------------
Thu Aug 7 02:51:41 CEST 2008 - bphilips@suse.de
- Initial commit 0.08

63
xclip.spec Normal file
View File

@ -0,0 +1,63 @@
#
# spec file for package xclip
#
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: xclip
Version: 0.13
Release: 0
Summary: Command Line Interface to the X11 Clipboard
License: GPL-2.0-or-later
Group: System/X11/Utilities
URL: https://github.com/astrand/xclip
Source: https://github.com/astrand/%{name}/archive/%{version}.tar.gz#./%{name}-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: xorg-x11-libICE-devel
BuildRequires: xorg-x11-libX11-devel
BuildRequires: xorg-x11-libXext-devel
BuildRequires: xorg-x11-libXmu-devel
%description
xclip is a command line interface to the X11 clipboard. It can also be used
for copying files, as an alternative to sftp/scp, thus avoiding password
prompts when X11 forwarding has already been setup.
%prep
%setup -q
%build
bash ./bootstrap
%configure \
--x-includes="%{_usr}/include" \
--x-libraries="%{_usr}/%{_lib}" \
--with-x
%make_build
%install
%make_install
%files
%license COPYING
%doc ChangeLog README
%{_bindir}/xclip
%{_bindir}/xclip-copyfile
%{_bindir}/xclip-cutfile
%{_bindir}/xclip-pastefile
%{_mandir}/man1/xclip.1%{?ext_man}
%{_mandir}/man1/xclip-copyfile.1%{?ext_man}
%changelog