f277e6d551
Accepting request 1267513 from devel:libraries:c_c++
...
- Drop pcre module, it hasn't been ported to pcre2 yet. (forwarded request 1267491 from anag_factory)
OBS-URL: https://build.opensuse.org/request/show/1267513
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=40
2025-04-08 15:50:14 +00:00
406232873f
Accepting request 1267491 from home:anag_factory:branches:devel:libraries:c_c++
...
- Drop pcre module, it hasn't been ported to pcre2 yet.
OBS-URL: https://build.opensuse.org/request/show/1267491
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=59
2025-04-07 08:34:58 +00:00
3ebbf55c15
Accepting request 1235698 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1235698
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=39
2025-01-09 14:05:15 +00:00
846bcadb66
Accepting request 1235682 from home:kwk:branches:devel:libraries:c_c++
...
- Update to version 2.3.3+git16.89d32bb:
* pre2.3.4-16: Removed unnecessary chack for a NULL string in keymap.c:find_the_key, and corrected a potential memory leak in the sltoken.c:compile_byte_compiled_multistring function
* pre2.3.4-15: Added UTF-16 surrogate handling to the expand_escaped_string function and json module
* pre2.3.4-14: Added fcntl_getpipe_sz and fcntl_setpipe_sz functions to the fcntl module to get and set the buffer size for pipes
* pre2.3.4-13: Initialize the variables provided by the %g operator to zero to not leak uninitialized data from the stack if not set by %P. (Miroslav Lichvar)
* pre2.3.4-12: modules/chksum_sha2.c: Use memcpy to avoid type-punning warning
* pre2.3.4-11: lib/timestamp.sl: Fixed a bug involving leap years
* pre2.3.4-10: Updated the Unicode tables to v15 from v10
* pre2.3.4-9: src/slang.ver: Removed the undefined symbol SLang_Rline_Quit, which was causing a link error on Gentoo Linux (Michal Rostecki)
* pre2.3.4-8: check for NULL return value from the ctime function
* pre2.3.4-7: mkfiles/makefile.m32: Added install1 target to work with versions of mingw make that cannot process the install target. Previously this required editing the makefile (windows-specific)
- download from git://git.jedsoft.org/git/slang.git
* drop slang-2.3.3.tar.bz2.asc and slang.keyring
- rename patches
* slang.patch to 0001-Use-termcap.patch
* slang-autoconf.patch to 0002-Fix-CFLAGS-and-generate-sl-config.h.patch
* slang-fsuid.patch to 0003-Enforce-use-of-setfsuid.patch
OBS-URL: https://build.opensuse.org/request/show/1235682
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=57
2025-01-07 18:06:44 +00:00
16cfeb120c
Accepting request 1153811 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1153811
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=38
2024-03-01 22:35:42 +00:00
941d0a7f74
Accepting request 1153803 from home:dimstar:Factory
...
- Drop slsh/lib/test/test_timestamp.sl: Do not test timestamps but
trust on upstream (calculations in leap years are off in the
test).
OBS-URL: https://build.opensuse.org/request/show/1153803
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=55
2024-03-01 09:29:52 +00:00
9509b51a3a
Accepting request 1152444 from devel:libraries:c_c++
...
- Use %autosetup macro. Allows to eliminate the usage of deprecated
PatchN.
OBS-URL: https://build.opensuse.org/request/show/1152444
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=37
2024-02-28 18:44:25 +00:00
02157b4806
Accepting request 1151527 from home:dimstar:rpm4.20:s
...
Prepare for RPM 4.20
OBS-URL: https://build.opensuse.org/request/show/1151527
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=53
2024-02-27 15:09:05 +00:00
7eca7a8a27
Accepting request 1042088 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1042088
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=36
2022-12-12 16:37:12 +00:00
88a0daccee
Accepting request 1041962 from home:AndreasStieger:branches:devel:libraries:c_c++
...
fix Factory submission
OBS-URL: https://build.opensuse.org/request/show/1041962
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=51
2022-12-11 11:12:04 +00:00
b294fc820d
Accepting request 1006092 from home:coolo:branches:openSUSE:Factory
...
- slang 2.3.3:
* This version includes a number of backward-compatible enhancements to
the interpreter and its modules, as well as support for so-called
user-defined terminfo extensions. It is also binary compatible with
prior 2.x.y versions of the library.
* See changes.txt
- obsolete overflow.patch and rebase autoconf.patch
OBS-URL: https://build.opensuse.org/request/show/1006092
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=50
2022-09-26 11:04:20 +00:00
dd4a262685
Accepting request 791795 from devel:libraries:c_c++
...
- slang 2.3.2:
* It is now possible to use reserved words as struct
field names without quoting them. For example, it is now possible
to write
s = struct { public = value };
Previously, this required the field name to be quoted:
s = struct { "public" = value };
- drop static library and its LTO workaround
- git-6dd5ade9a97b52ace4ac033779a6d3c1c51db4d1.patch: upstreamed
- slang-fsuid.patch: refreshed
OBS-URL: https://build.opensuse.org/request/show/791795
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=35
2020-04-09 21:14:17 +00:00
6d1bd83a47
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=48
2020-04-06 14:30:25 +00:00
2caff2be95
- drop static library and its LTO workaround
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=47
2020-04-06 13:50:38 +00:00
b16eb34aa2
- slang 2.3.2:
...
* It is now possible to use reserved words as struct
field names without quoting them. For example, it is now possible
to write
s = struct { public = value };
Previously, this required the field name to be quoted:
s = struct { "public" = value };
- git-6dd5ade9a97b52ace4ac033779a6d3c1c51db4d1.patch: upstreamed
- slang-fsuid.patch: refreshed
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=46
2020-04-06 12:46:16 +00:00
77e67a03df
Accepting request 720516 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/720516
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=34
2019-09-05 10:02:24 +00:00
95b83bd036
Accepting request 720514 from home:marxin:static
...
Use FAT LTO objects in order to provide proper static library.
OBS-URL: https://build.opensuse.org/request/show/720514
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=44
2019-08-02 08:25:13 +00:00
6d95affbab
Accepting request 637425 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/637425
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=33
2018-10-01 07:06:14 +00:00
Ismail Dönmez
5390d5ef0f
Accepting request 637422 from home:Andreas_Schwab:Factory
...
- overflow.patch: fix overflow checks not to depend on undefined behaviour
OBS-URL: https://build.opensuse.org/request/show/637422
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=42
2018-09-24 11:11:40 +00:00
1acc3f5eb8
Accepting request 587519 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/587519
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=32
2018-03-16 09:35:37 +00:00
b7907ceeec
Accepting request 587488 from home:oertel:branches:devel:libraries:c_c++
...
- handle s390 like s390x
OBS-URL: https://build.opensuse.org/request/show/587488
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=40
2018-03-15 13:40:34 +00:00
a5ec6102e4
Accepting request 582541 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/582541
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=31
2018-03-07 09:30:45 +00:00
1f3ed42f5c
Accepting request 582053 from home:elvigia:branches:devel:libraries:c_c++
...
- BuildRequire default libpng on the system, builds and test
pass fine. (drops slang-libpng12-linker-flag.patch)
OBS-URL: https://build.opensuse.org/request/show/582053
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=38
2018-03-05 08:51:29 +00:00
fe863e86f4
Accepting request 574532 from devel:libraries:c_c++
...
- Add upstream commit 6dd5ade9a97b52ace4ac033779a6d3c1c51db4d1 as
patch git-6dd5ade9a97b52ace4ac033779a6d3c1c51db4d1.patch (boo#1079543)
* Added support for the new ncurses 32-bit terminfo database entries
OBS-URL: https://build.opensuse.org/request/show/574532
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=30
2018-02-12 09:11:47 +00:00
577a3d866f
Add bug number as well
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=36
2018-02-09 08:52:42 +00:00
a7eaa21e8e
Support 32bit ncurses format
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=35
2018-02-09 08:48:22 +00:00
358b2f3e21
Accepting request 503684 from devel:libraries:c_c++
...
1
OBS-URL: https://build.opensuse.org/request/show/503684
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=29
2017-06-20 08:58:03 +00:00
Ismail Dönmez
95a4e652a4
Accepting request 503406 from home:jengelh:branches:devel:libraries:c_c++
...
- Rectify RPM groups. Trim filler wording from description.
OBS-URL: https://build.opensuse.org/request/show/503406
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=33
2017-06-14 12:09:59 +00:00
80bf9ab6fe
Accepting request 499648 from devel:libraries:c_c++
...
1
OBS-URL: https://build.opensuse.org/request/show/499648
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=28
2017-06-07 07:51:24 +00:00
2ac94f240b
Accepting request 498856 from home:AndreasStieger:branches:devel:libraries:c_c++
...
slang 2.3.1a
OBS-URL: https://build.opensuse.org/request/show/498856
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=31
2017-05-30 10:01:14 +00:00
b5b5c248f5
Accepting request 492723 from home:AndreasStieger:branches:devel:libraries:c_c++
...
slang 2.3.1a
OBS-URL: https://build.opensuse.org/request/show/492723
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=30
2017-05-07 16:31:40 +00:00
a2a31c28bd
Accepting request 288288 from devel:libraries:c_c++
...
- Cleanup spec file with spec-cleaner
- Add gpg signature
- Remove upstreamed patch
* sprintf-bug-concerning-c-for-8-bit-character-in-non-.patch
- Update to 2.3.0
* numerous changes, see included changes.txt for a detailed
list
OBS-URL: https://build.opensuse.org/request/show/288288
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=27
2015-03-03 10:12:42 +00:00
646447e728
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=28
2015-03-01 10:35:30 +00:00
9e9d1a5dd2
Accepting request 288248 from home:pluskalm:branches:devel:libraries:c_c++
...
- Cleanup spec file with spec-cleaner
- Add gpg signature
- Remove upstreamed patch
* sprintf-bug-concerning-c-for-8-bit-character-in-non-.patch
- Update to 2.3.0
* numerous changes, see included changes.txt for a detailed
list
OBS-URL: https://build.opensuse.org/request/show/288248
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=27
2015-03-01 09:40:44 +00:00
Stephan Kulow
f67964980e
Accepting request 246528 from devel:libraries:c_c++
...
1
OBS-URL: https://build.opensuse.org/request/show/246528
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=25
2014-08-28 19:05:11 +00:00
0a6a4492f1
Accepting request 246500 from home:fcrozat:branches:devel:libraries:c_c++
...
- Add obsoletes/provides to baselibs.conf.
OBS-URL: https://build.opensuse.org/request/show/246500
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=25
2014-08-26 13:59:42 +00:00
Stephan Kulow
fdf5bf52fd
Accepting request 239602 from devel:libraries:c_c++
...
1
OBS-URL: https://build.opensuse.org/request/show/239602
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=24
2014-07-15 14:25:44 +00:00
Ismail Dönmez
a77aaf111d
Accepting request 239524 from home:kwk
...
- fix for running in non-utf-8 environments (bnc#885624)
add sprintf-bug-concerning-c-for-8-bit-character-in-non-.patch
- drop slang-2.2.2-makefile.patch, obsolete
OBS-URL: https://build.opensuse.org/request/show/239524
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=23
2014-07-04 13:28:14 +00:00
Stephan Kulow
c4b811e95d
Accepting request 122072 from devel:libraries:c_c++
...
- update to version 2.2.4
- numerous changes, see the included changes.txt for a detailed
list
- rebased slang-2.2.2.dif and renamed to slang.patch
- rebased slang-2.2.2-autoconf.dif and renamed to
slang-autoconf.patch
- rebased slang-2.2.2-libpng12-linker-flag.patch and renamed to
slang-libpng12-linker-flag.patch
- rebased slang-2.2.2-fsuid.dif and renamed to slang-fsuid.patch
- build oniguruma module on >= 12.1 (forwarded request 122071 from gberh)
OBS-URL: https://build.opensuse.org/request/show/122072
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=20
2012-05-26 11:06:16 +00:00
Ismail Dönmez
0327b0910d
Accepting request 122071 from home:gberh:branches:devel:libraries:c_c++
...
- update to version 2.2.4
- numerous changes, see the included changes.txt for a detailed
list
- rebased slang-2.2.2.dif and renamed to slang.patch
- rebased slang-2.2.2-autoconf.dif and renamed to
slang-autoconf.patch
- rebased slang-2.2.2-libpng12-linker-flag.patch and renamed to
slang-libpng12-linker-flag.patch
- rebased slang-2.2.2-fsuid.dif and renamed to slang-fsuid.patch
- build oniguruma module on >= 12.1
OBS-URL: https://build.opensuse.org/request/show/122071
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=21
2012-05-24 14:18:21 +00:00
Stephan Kulow
b2395f7663
Accepting request 104014 from devel:libraries:c_c++
...
Automatic submission by obs-autosubmit
OBS-URL: https://build.opensuse.org/request/show/104014
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=19
2012-02-14 18:08:29 +00:00
b9e017d459
Add explicit pkgconfig BR, so that pkgconfig provides are guaranteed to exist
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=18
2012-01-29 11:55:11 +00:00
Stephan Kulow
bce34beb40
Accepting request 95185 from devel:libraries:c_c++
...
add automake to buildrequires (forwarded request 95137 from coolo)
OBS-URL: https://build.opensuse.org/request/show/95185
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=18
2012-01-04 07:01:31 +00:00
6c20d6f6b7
Remove redundant/unwanted tags/section (cf. specfile guidelines)
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=15
2011-12-02 19:41:14 +00:00
e5c597810b
Accepting request 95137 from home:coolo:removeautomake
...
add automake to buildrequires
OBS-URL: https://build.opensuse.org/request/show/95137
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=14
2011-12-02 19:08:45 +00:00
OBS User autobuild
2773d57e1e
Accepting request 47988 from devel:libraries:c_c++
...
Copy from devel:libraries:c_c++/slang based on submit request 47988 from user coolo
OBS-URL: https://build.opensuse.org/request/show/47988
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=15
2010-09-13 11:47:49 +00:00
OBS User autobuild
97c09cce7c
Accepting request 47988 from devel:libraries:c_c++
...
checked in (request 47988)
OBS-URL: https://build.opensuse.org/request/show/47988
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=13
2010-09-13 11:47:48 +00:00
Stephan Kulow
ef3cf53ade
Accepting request 47975 from home:coolo:branches:openSUSE:Factory
...
OBS-URL: https://build.opensuse.org/request/show/47975
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=12
2010-09-13 11:02:50 +00:00
OBS User autobuild
71d48b572f
Accepting request 46177 from devel:libraries:c_c++
...
Copy from devel:libraries:c_c++/slang based on submit request 46177 from user coolo
OBS-URL: https://build.opensuse.org/request/show/46177
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/slang?expand=0&rev=14
2010-09-03 12:18:16 +00:00
OBS User buildservice-autocommit
19f5489a76
Updating link to change in openSUSE:Factory/slang revision 14.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/slang?expand=0&rev=719f2b51834aaf13332a4afd4f04c91f
2010-09-03 12:18:16 +00:00