Re: [ITA] pv

2021-04-08 Thread Marco Atzeri via Cygwin-apps

On 09.04.2021 01:36, Andrew Schulman via Cygwin-apps wrote:

I want to maintain pv, since it's being orphaned. I lightly updated the old
cygport script, and checked that the latest version, 1.6.6, builds OOTB.
Will upload the new release as soon as it's approved. Thanks, Andrew



updated cygwin-pkg-maint

Regards
Marco


[ITA] pv

2021-04-08 Thread Andrew Schulman via Cygwin-apps
I want to maintain pv, since it's being orphaned. I lightly updated the old
cygport script, and checked that the latest version, 1.6.6, builds OOTB.
Will upload the new release as soon as it's approved. Thanks, Andrew



Re: [PATCH cygport] Update xorg.cygclass URLs [GOLDSTAR]

2021-04-08 Thread Andrew Schulman via Cygwin-apps
> On Tue, 2021-01-05 at 15:06 +0100, Achim Gratz wrote:
> > Yaakov Selkowitz via Cygwin-apps writes:
> > > In fact, there are probably a bunch of other http: which could be
> > > converted to https: at this point.  I would suggest anyone who does
> > > that (in separate commit(s)) should get a gold star.
> > 
> > The patch series from Lem plus another handful of cleanups is available
> > at:
> > 
> > https://repo.or.cz/cygport/rpm-style.git/shortlog/refs/heads/URL-updates
> 
> Thank you Lem for the patches, and Achim for gathering them together on a
> branch.  It was surely tedious work, but necessary and much appreciated. 
> These are (finally!) merged, can we get some gold stars please?

Awarded!

https://cygwin.com/goldstars/#LM
https://cygwin.com/goldstars/#AG



Updating pngcheck

2021-04-08 Thread Lemures Lemniscati via Cygwin-apps
https://sourceware.org/pipermail/cygwin/2021-March/248073.html
On Sat, 13 Mar 2021 22:33:27 +0900, Lemures Lemniscati
> Hi!
> 
> Is there any plan to update pngcheck?
> 
> Currently, we have pngcheck 2.3.0-1.
> https://www.cygwin.com/packages/summary/pngcheck-src.html
> 
> And, recently, some vulnerabilities have been fixed in its upstream.
> http://www.libpng.org/pub/png/apps/pngcheck.html

Hi, Jari Aalto.

Here is a cygport file, which could be a candidate for pngcheck-3.0.2.

Regards,

Lem


NAME="pngcheck"
VERSION=3.0.2
RELEASE=1
CATEGORY="Graphics"
SUMMARY="PNG file format checker"
DESCRIPTION="\
pngcheck verifies the integrity of PNG, JNG and MNG files (by checking
the internal 32-bit CRCs, a.k.a. checksums, and decompressing the image
data); it can optionally dump almost all of the chunk-level information
in the image in human-readable form. For example, it can be used to
print the basic statistics about an image (dimensions, bit depth, etc.);
to list the color and transparency info in its palette (assuming it has
one); or to extract the embedded text annotations.
This is a command-line program with batch capabilities.
"
HOMEPAGE="http://www.libpng.org/pub/png/apps/pngcheck.html;
SRC_URI="http://www.libpng.org/pub/png/src/pngcheck-${VERSION}.tar.gz;


BUILD_REQUIRES="\
  zlib-devel\
"


_CYGPORT_RESTRICT_postinst_doc_=1

src_compile () {
  cd ${B}
  lndirs
  cygmake -f Makefile.unx CC=${CC} CFLAGS="${CFLAGS}"
}

src_install () {
  cd ${B}
  dobin *.exe

  doman *.1
  dodoc CHANGELOG* LICENSE* README*

  doman gpl/*.1
  docinto gpl
  dodoc gpl/COPYING*
}