public inbox for cygwin-apps@cygwin.com
 help / color / mirror / Atom feed
* [ITA] libjpeg-turbo-2.0.6
@ 2020-12-13  5:58 Lemures Lemniscati
  2020-12-13 14:32 ` Marco Atzeri
  0 siblings, 1 reply; 3+ messages in thread
From: Lemures Lemniscati @ 2020-12-13  5:58 UTC (permalink / raw)
  To: cygwin-apps

Hi!

ITA for libjpeg-turbo, which have been maintained by Yaakov [1].

Now, the latest stable upstream version of libjpeg-turbo is 2.0.6 [2].

A new candidate cygport file is placed at [3] (but it is not tested
on Cygwin AppVeyor CI, yet).

Generated package files are placed at [4] and [5]:

* jpeg-2.0.6-1.tar.xz
* libjpeg-devel-2.0.6-1.tar.xz
* libjpeg8-2.0.6-1.tar.xz
* libturbojpeg-devel-2.0.6-1.tar.xz
* libturbojpeg0-2.0.6-1.tar.xz

* libjpeg-turbo-2.0.6-1-src.tar.xz
* libjpeg-turbo-debuginfo-2.0.6-1.tar.xz

[1]: https://cygwin.com/git/?p=git/cygwin-packages/libjpeg-turbo.git
[2]: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/2.0.6
[3]: https://github.com/cygwin-lem/libjpeg-turbo-cygport/tree/n_2.0.6-1
[4]: https://cygwin-lem.github.io/libjpeg-turbo-cygport/
[5]: https://github.com/cygwin-lem/libjpeg-turbo-cygport/tree/n_2.0.6-1_gh-pages


Regards, 

Lem

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ITA] libjpeg-turbo-2.0.6
  2020-12-13  5:58 [ITA] libjpeg-turbo-2.0.6 Lemures Lemniscati
@ 2020-12-13 14:32 ` Marco Atzeri
  2020-12-13 22:00   ` Lemures Lemniscati
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Atzeri @ 2020-12-13 14:32 UTC (permalink / raw)
  To: cygwin-apps

On 13.12.2020 06:58, Lemures Lemniscati via Cygwin-apps wrote:
> Hi!
> 
> ITA for libjpeg-turbo, which have been maintained by Yaakov [1].
> 
> Now, the latest stable upstream version of libjpeg-turbo is 2.0.6 [2].
> 
> A new candidate cygport file is placed at [3] (but it is not tested
> on Cygwin AppVeyor CI, yet).
> 
> Generated package files are placed at [4] and [5]:
> 

it builds fine, but I would add a test section
at least as simple as

$  ./tjunittest.exe
RGB Top-Down  -> 4:4:4 Q100 ... Done.
   Result in test_enc_RGB_TD_444_Q100.jpg
JPEG -> RGB Top-Down  2/1 ... Passed.
JPEG -> RGB Top-Down  15/8 ... Passed.
JPEG -> RGB Top-Down  7/4 ... Passed.
...
JPEG -> ARGB Bottom-Up 3/8 ... Passed.
JPEG -> ARGB Bottom-Up 1/4 ... Passed.
JPEG -> ARGB Bottom-Up 1/8 ... Passed.

--------------------

Buffer size regression test
Done.

> Regards,
> 
> Lem

Changed maintainer, so when you want you can upload.

Thanks and Regards
Marco



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ITA] libjpeg-turbo-2.0.6
  2020-12-13 14:32 ` Marco Atzeri
@ 2020-12-13 22:00   ` Lemures Lemniscati
  0 siblings, 0 replies; 3+ messages in thread
From: Lemures Lemniscati @ 2020-12-13 22:00 UTC (permalink / raw)
  To: cygwin-apps

On Sun, 13 Dec 2020 15:32:23 +0100, Marco Atzeri via Cygwin-apps
> On 13.12.2020 06:58, Lemures Lemniscati via Cygwin-apps wrote:
> > Hi!
> >
> > ITA for libjpeg-turbo, which have been maintained by Yaakov [1].
> >
> > Now, the latest stable upstream version of libjpeg-turbo is 2.0.6 [2].
> >
> > A new candidate cygport file is placed at [3] (but it is not tested
> > on Cygwin AppVeyor CI, yet).
> >
> > Generated package files are placed at [4] and [5]:
> > 
> it builds fine, but I would add a test section
> at least as simple as
> 
> $  ./tjunittest.exe
> RGB Top-Down  -> 4:4:4 Q100 ... Done.
>    Result in test_enc_RGB_TD_444_Q100.jpg
> JPEG -> RGB Top-Down  2/1 ... Passed.
> JPEG -> RGB Top-Down  15/8 ... Passed.
> JPEG -> RGB Top-Down  7/4 ... Passed.
> ...
> JPEG -> ARGB Bottom-Up 3/8 ... Passed.
> JPEG -> ARGB Bottom-Up 1/4 ... Passed.
> JPEG -> ARGB Bottom-Up 1/8 ... Passed.
> 
> --------------------
> 
> Buffer size regression test
> Done.
> 
> > Regards,
> >
> > Lem
> 
> Changed maintainer, so when you want you can upload.
> 
> Thanks and Regards
> Marco
> 
Thank you for reviewing, Marco.

Now, I've added a test section as follows:
========
src_test() {
  cd ${B}
  ctest
}
========




And, I guess it would be useful if we add the following code
to usr/share/cygport/cygclass/cmake.cygclass .
(But this subject should be in another mail, later.)

=======
cygctest() {
	if (( ${#@} > 0 )); then
		ctest "$@"
	elif [ -f CTestTestfile.cmake ]; then
		ctest
	else
		inform "cygctest: No testsuite detected."
	fi
}
readonly -f cygctest


src_test() {
	cd ${B}
	cygctest
}

=======

Regards,

Lem



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-12-13 22:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-13  5:58 [ITA] libjpeg-turbo-2.0.6 Lemures Lemniscati
2020-12-13 14:32 ` Marco Atzeri
2020-12-13 22:00   ` Lemures Lemniscati

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).