forked from pool/par_text
Switch from dead upstream to the current soft fork at
https://git.sr.ht/~mcepl/par, which includes all patches available for the program collected from all other distributions. Update to version 1.53.0+git.1721308378.56c5d7a: * test: we currently do not support non-UTF8 wide characters * fix: use swprintf(3) for wchar_t string. * chore: don't ignore existing environmental variables * feat: add README.md and LICENSE * Add another test case. Karel Hynek Mácha: Cikáni * Make tests working even with Latin-1 and UTF-8 texts. * add a Makefile that sets up variables for the protoMakefile from upstream * fix cross compilation * print error messages * Add multibyte characters support in par(1)
This commit is contained in:
parent
fdc7b93404
commit
21b7105dee
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
.osc
|
.osc
|
||||||
_scmsync.obsinfo
|
_scmsync.obsinfo
|
||||||
|
par/
|
||||||
|
11
_service
11
_service
@ -1,13 +1,14 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="manual">
|
<service name="obs_scm" mode="manual">
|
||||||
<param name="versionprefix">1.53.0+git</param>
|
|
||||||
<param name="url">https://bitbucket.org/amc-nicemice/par.git</param>
|
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="exclude">.git*</param>
|
<param name="url">https://git.sr.ht/~mcepl/par</param>
|
||||||
|
<param name="versionprefix">1.53.0+git</param>
|
||||||
|
<param name="revision">devel</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
<param name="changesauthor">mcepl@cepl.eu</param>
|
<param name="changesauthor">mcepl@cepl.eu</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="manual">
|
<service name="tar" mode="buildtime"/>
|
||||||
|
<service name="recompress" mode="buildtime">
|
||||||
<param name="compression">gz</param>
|
<param name="compression">gz</param>
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
</service>
|
</service>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://bitbucket.org/amc-nicemice/par.git</param>
|
<param name="url">https://git.sr.ht/~mcepl/par</param>
|
||||||
<param name="changesrevision">eb0590f6bafc4f9e44a5ad7e0baadc29c69e79e7</param></service></servicedata>
|
<param name="changesrevision">56c5d7aa2bce3a257b16e99bfa2173b5c551b06b</param></service></servicedata>
|
File diff suppressed because it is too large
Load Diff
BIN
par-1.53.0+git.1584347654.eb0590f.tar.gz
(Stored with Git LFS)
BIN
par-1.53.0+git.1584347654.eb0590f.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
par-1.53.0+git.1721308378.56c5d7a.obscpio
(Stored with Git LFS)
Normal file
BIN
par-1.53.0+git.1721308378.56c5d7a.obscpio
(Stored with Git LFS)
Normal file
Binary file not shown.
4
par.obsinfo
Normal file
4
par.obsinfo
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
name: par
|
||||||
|
version: 1.53.0+git.1721308378.56c5d7a
|
||||||
|
mtime: 1721308378
|
||||||
|
commit: 56c5d7aa2bce3a257b16e99bfa2173b5c551b06b
|
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 18 13:14:46 UTC 2024 - mcepl@cepl.eu
|
||||||
|
|
||||||
|
- Switch from dead upstream to the current soft fork at
|
||||||
|
https://git.sr.ht/~mcepl/par, which includes all patches
|
||||||
|
available for the program collected from all other
|
||||||
|
distributions.
|
||||||
|
- Update to version 1.53.0+git.1721308378.56c5d7a:
|
||||||
|
* test: we currently do not support non-UTF8 wide characters
|
||||||
|
* fix: use swprintf(3) for wchar_t string.
|
||||||
|
* chore: don't ignore existing environmental variables
|
||||||
|
* feat: add README.md and LICENSE
|
||||||
|
* Add another test case. Karel Hynek Mácha: Cikáni
|
||||||
|
* Make tests working even with Latin-1 and UTF-8 texts.
|
||||||
|
* add a Makefile that sets up variables for the protoMakefile from upstream
|
||||||
|
* fix cross compilation
|
||||||
|
* print error messages
|
||||||
|
* Add multibyte characters support in par(1)
|
||||||
|
- Removed patch (included in upstream fork):
|
||||||
|
- par-1.53-i18n.1.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 31 16:03:50 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
Mon Jul 31 16:03:50 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package par_text
|
# spec file for package par_text
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 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
|
||||||
@ -18,20 +18,13 @@
|
|||||||
|
|
||||||
%define upname par
|
%define upname par
|
||||||
Name: par_text
|
Name: par_text
|
||||||
Version: 1.53.0+git.1584347654.eb0590f
|
Version: 1.53.0+git.1721308378.56c5d7a
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Paragraph reformatter
|
Summary: Paragraph reformatter
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Productivity/Text/Convertors
|
Group: Productivity/Text/Convertors
|
||||||
URL: http://www.nicemice.net/par/
|
URL: http://www.nicemice.net/par/
|
||||||
Source0: par-%{version}.tar.gz
|
Source0: par-%{version}.tar.gz
|
||||||
# PATCH-FEATURE-UPSTREAM par-1.53-i18n.1.patch bt#amc-nicemice/par#6 mcepl@suse.com
|
|
||||||
# Adds support for multibyte characters
|
|
||||||
# Originally from http://sysmic.org/dl/par/par-1.52-i18n.4.patch, but
|
|
||||||
# the site is inaccessible, so this is from
|
|
||||||
# https://web.archive.org/web/20211124085854/http://sysmic.org/dl/par/par-1.52-i18n.4.patch
|
|
||||||
# and adjusted to the current code.
|
|
||||||
Patch0: par-1.53-i18n.1.patch
|
|
||||||
# I hope that these two packages are so specialised, they
|
# I hope that these two packages are so specialised, they
|
||||||
# shouldn't be on one system.
|
# shouldn't be on one system.
|
||||||
Conflicts: par
|
Conflicts: par
|
||||||
|
Loading…
Reference in New Issue
Block a user