forked from pool/schily
- Update to new upstream release 2018.11.22
OBS-URL: https://build.opensuse.org/package/show/utilities/schily?expand=0&rev=45
This commit is contained in:
parent
c66327d7e7
commit
e0d111cb75
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:71e3d6176272df882e0b0c5527b8538931024fabbcec44eef873e512df558966
|
|
||||||
size 4311065
|
|
3
schily-2018-11-22.tar.bz2
Normal file
3
schily-2018-11-22.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:13cb5d9075474f0944c317fb56b3d46578f9653b64fb56815f6afa1830286d19
|
||||||
|
size 4309542
|
@ -1,18 +0,0 @@
|
|||||||
Work around GNU ld shortcoming that version entities must always come in ascending order.
|
|
||||||
---
|
|
||||||
RULES/i586-linux-gcc.rul | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
Index: schily-2018-10-30/RULES/i586-linux-gcc.rul
|
|
||||||
===================================================================
|
|
||||||
--- schily-2018-10-30.orig/RULES/i586-linux-gcc.rul
|
|
||||||
+++ schily-2018-10-30/RULES/i586-linux-gcc.rul
|
|
||||||
@@ -50,7 +50,7 @@ MAPVERS= $(_MAPVERS) # This enables to u
|
|
||||||
# files for symbol versioning. The following command reverses the order of
|
|
||||||
# the version names in the linker map file.
|
|
||||||
#
|
|
||||||
-MAPFILE_POST= | sed 's/^SCHILY/+SCHILY/' | tr '\012' '@' | tr '+' '\012' | sort -t. -k1,1 -k2,2n -k3,3n | tr '@' '\012'
|
|
||||||
+MAPFILE_POST= | sed 's/^SCHILY/+SCHILY/' | tr '\012' '@' | tr '+' '\012' | sort -V | tr '@' '\012'
|
|
||||||
|
|
||||||
#LDOPTS= $(LIBS_PATH) $(LDPATH) $(RUNPATH:-R%=-Wl,-R%)
|
|
||||||
#
|
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 23 19:09:47 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 2018.11.22
|
||||||
|
* include/schily/getopt.h: A new include file has been created
|
||||||
|
for our libgetopt that includes an enhanced getopt()
|
||||||
|
implementation.
|
||||||
|
* libschily: resolvenpath() did not work as expected when some
|
||||||
|
path names do not exist. A stat() call that should check
|
||||||
|
whether we already reached the "/" directory caused a return
|
||||||
|
(-1) even with (flags & RSPF_EXIST) == 0. This bug caused
|
||||||
|
star to classify more symlinks as dangerous than needed.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 8 09:32:40 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
Thu Nov 8 09:32:40 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
16
schily.spec
16
schily.spec
@ -16,16 +16,17 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
# See schily-%rver/AN-%rver for changelog and when subprogram versions might change
|
# grep -r define.VERSION (sometimes also noted down in schily-%rver/AN-%rver)
|
||||||
%global box_version 2018.10.30
|
%global box_version 2018.11.22
|
||||||
%global cdr_version 3.02~a10
|
%global cdr_version 3.02~a10
|
||||||
%global smake_version 1.3
|
%global smake_version 1.3
|
||||||
%global star_version 1.5.4
|
%global star_version 1.5.4
|
||||||
%global libfind_version 1.7
|
%global libfind_version 1.7
|
||||||
%define rver 2018-10-30
|
%global ved_version 1.7
|
||||||
|
%define rver 2018-11-22
|
||||||
|
|
||||||
Name: schily
|
Name: schily
|
||||||
Version: 2018.10.30
|
Version: 2018.11.22
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A collection of command-line utilities maintained by J.Schilling
|
Summary: A collection of command-line utilities maintained by J.Schilling
|
||||||
License: CDDL-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND BSD-2-Clause AND BSD-3-Clause AND HPND AND ISC
|
License: CDDL-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND BSD-2-Clause AND BSD-3-Clause AND HPND AND ISC
|
||||||
@ -37,7 +38,6 @@ Source: https://downloads.sf.net/schilytools/%name-%rver.tar.bz2
|
|||||||
Source1: README-FIRST
|
Source1: README-FIRST
|
||||||
Patch1: iconv-name.diff
|
Patch1: iconv-name.diff
|
||||||
Patch2: schily-2018-05-25_star_configuration.patch
|
Patch2: schily-2018-05-25_star_configuration.patch
|
||||||
Patch3: schily-linker.diff
|
|
||||||
# Honor https://en.opensuse.org/openSUSE:Packaging_Patches_guidelines#Upstream_policy
|
# Honor https://en.opensuse.org/openSUSE:Packaging_Patches_guidelines#Upstream_policy
|
||||||
# and submit patches upstream FIRST (cc to the bspkg maintainer perhaps).
|
# and submit patches upstream FIRST (cc to the bspkg maintainer perhaps).
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -422,6 +422,8 @@ Features:
|
|||||||
Summary: The Visual Editor
|
Summary: The Visual Editor
|
||||||
License: CDDL-1.0
|
License: CDDL-1.0
|
||||||
Group: Productivity/Editors/Other
|
Group: Productivity/Editors/Other
|
||||||
|
Version: %ved_version
|
||||||
|
Release: 0
|
||||||
|
|
||||||
%description -n ved
|
%description -n ved
|
||||||
Ved (visual editor) is a screen-oriented editor that implements a
|
Ved (visual editor) is a screen-oriented editor that implements a
|
||||||
@ -431,7 +433,7 @@ GB).
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -qn %name-%rver
|
%setup -qn %name-%rver
|
||||||
%patch -P 1 -P 2 -P 3 -p1
|
%patch -P 1 -P 2 -p1
|
||||||
find . "(" -type d -o -type f ")" -exec chmod u+w "{}" "+"
|
find . "(" -type d -o -type f ")" -exec chmod u+w "{}" "+"
|
||||||
|
|
||||||
cp %{SOURCE1} .
|
cp %{SOURCE1} .
|
||||||
@ -516,6 +518,7 @@ ls -l "$b/%_mandir"/man*/*mt*
|
|||||||
find "$b/usr/share/doc" -type f -name "*big*" -print -delete
|
find "$b/usr/share/doc" -type f -name "*big*" -print -delete
|
||||||
|
|
||||||
# deal with this another time
|
# deal with this another time
|
||||||
|
find "$b"
|
||||||
rm -Rfv "$b/usr/ccs" "$b/usr/xpg4" "$b/%_bindir/sccs"
|
rm -Rfv "$b/usr/ccs" "$b/usr/xpg4" "$b/%_bindir/sccs"
|
||||||
rm -f \
|
rm -f \
|
||||||
$b/etc/sformat.dat \
|
$b/etc/sformat.dat \
|
||||||
@ -652,6 +655,7 @@ rm -f \
|
|||||||
$b/usr/share/man/man1/val.1 \
|
$b/usr/share/man/man1/val.1 \
|
||||||
$b/usr/share/man/man1/vc.1 \
|
$b/usr/share/man/man1/vc.1 \
|
||||||
$b/usr/share/man/man1/what.1 \
|
$b/usr/share/man/man1/what.1 \
|
||||||
|
$b/usr/share/man/man3/getopt.3 \
|
||||||
$b/usr/share/man/man5/changeset.5 \
|
$b/usr/share/man/man5/changeset.5 \
|
||||||
$b/usr/share/man/man5/makefiles.5 \
|
$b/usr/share/man/man5/makefiles.5 \
|
||||||
$b/usr/share/man/man5/makerules.5 \
|
$b/usr/share/man/man5/makerules.5 \
|
||||||
|
Loading…
Reference in New Issue
Block a user