Commit Graph

27 Commits

Author SHA1 Message Date
Alexey Pavlov
e66d4f5f4d libarchive: Rebuild for openssl 1.1 2018-09-21 10:44:29 +03:00
Andrew Sun
c6e218281a libarchive: update to 3.3.3 (#4368) 2018-09-05 11:29:13 +03:00
Viktor Szakats
7f6257d62d switch to HTTPS where available (#2904)
* switch to HTTPS where available

* use canonical readthedocs URLs
2017-09-16 09:12:45 +03:00
J. Peter Mugaas
a717206b71 Update to cmake 3.9 - latest version (should be used with libuv and expat from previous PR requests) (#2716)
mingw-w64-ncurses -  6.0  20170715 - Update to latest version
mingw-w64-libarchive - 3.3.2 - Update to latest version and update patch for bcrypt.  The logic is a little better than what was in the source-code
mingw-w64-cmake - 3.9.0 - Update to latest version
2017-08-13 19:35:11 +03:00
Christoph Reiter
5dcde95e85 libarchive: Update to 3.3.1 (#2491) 2017-05-22 11:25:25 +03:00
Alexey Pavlov
a0e0a57cdd libarchive: Fix detect bcrypt library. 2016-11-30 15:30:56 +03:00
J. Peter Mugaas
9e7228b7fc mingw-w64-libarchive - 3.2.2 - Note it requires libxml-2. Reported a… (#1992)
* mingw-w64-libarchive - 3.2.2 - Note it requires libxml-2.  Reported as https://github.com/Alexpux/MINGW-packages/issues/1991 .

* mingw-w64-libarchive - 3.2.2 - replace libxml2 with expat
mingw-w64-expat - 2.2.0 - Add expat-2.2.0-CVE-2016-0718-regression.patch from Archlinux
Tag names were cut off in some cases; reported by Andy Wang
2016-11-30 09:54:42 +03:00
J. Peter Mugaas
6f39a40fe2 Libarchive (#1936)
* mbedtls: Updated to 2.4.0 (#1868)

* mingw-w64-clang 3.9.0 - rev 2 delete files created by patch (#1867)

Delete files created by patches in case we are not deleting from srource
directory.

* jemalloc: Update to 4.2.1 (#1866)

* lua sqlite3 wrapper (#1861)

* Adds a TUI in GNU debugger, GDB. (#1869)

* nghttp2 - 1.16.0 Update to latest version (#1871)

Do not use --enable-lib-only for featureproofing.

* Readline (#1872)

* readline - 7.0 - Update to latest veersion - NOTE:  Will probably break stuff - rebuild what depends upon it

Rekeyed patch for new version and ifdef'ed out chown calls if not
available

* Rebuild some packages that depend upon readline for good measure

* libssh2 - 1.8.0 - Upgrade to latest version (#1876)

* Adding library: flickcurl (#1875)

* Adding library:flickcurl

* Flickcurl: fixing dependency on gtk-doc

* Libarchive (#1878)

* libarchive : 3.2.2

Update to altest version

* libarchive: 3.2.2 - add back dependency on lz4

* Nsis (#1879)

* nsis 3.0 update to release version

* mingw-w64-nsis: 33.

Download should point to main to main site, not mirror
Use https when possible

* g-i-parser: fix race condition (#1881)

* Remove rmtree debugging patch

It is shadowing exceptions thrown from the main "try" block of
GDumpParser._execute_binary_get_tree().

There does seem to be a race condition, but it seems to be related to
subprocess.check_call() and what it does on Windows. At the point
xml.[blah].parse() is called, "dump.xml" is often absent!

* More tolerant rmtreeing

If shutil.rmtree() is failing due to some funky race condition that results
in files the walk doesn't know about being left, then don't worry about it
and continue.

This may leave uniquely named junk lying around in the build tree, but that
is by design not a problem with g-i-scanner. Just don't install the
tmp-introspectXXXXXX folder by accident.

* giscanner debugging: asserts and waits

Make absence of dump.xml or functions.txt fatal, but only after giving them
plenty of time time to appear.

Yes, this is horrible code. But it fixes broken builds almost completely on
my 64-bit Win7 with NTFS.

* Wait for XML to be parsed completely

It's possible that dump.xml might exist but be incompletely written. This
nasty sleep-till-it-parses loop covers that case.

Plus the usual logging so we can see if it's really needed ☺

* gobject-introspection: bump pkgrel

* Updated to stable release 190600_20161030 (#1880)

A fresh new stable release since January 30, 2014!

* go: update to 1.7.3 (#1882)

* mingw-w64-libarchive - 3.2.2 - rev 3

Remove warning about a "cygpath -m /" reference pkg-config file.

* fix for bad formatting
2016-11-16 08:26:41 +03:00
Alexey Pavlov
be0a79aed4 libarchive: Revert building with cmake 2016-11-14 09:30:44 +03:00
J. Peter Mugaas
b4b191b2c0 Cmake and deps (#1931)
* mbedtls: Updated to 2.4.0 (#1868)

* mingw-w64-clang 3.9.0 - rev 2 delete files created by patch (#1867)

Delete files created by patches in case we are not deleting from srource
directory.

* jemalloc: Update to 4.2.1 (#1866)

* lua sqlite3 wrapper (#1861)

* Adds a TUI in GNU debugger, GDB. (#1869)

* nghttp2 - 1.16.0 Update to latest version (#1871)

Do not use --enable-lib-only for featureproofing.

* Readline (#1872)

* readline - 7.0 - Update to latest veersion - NOTE:  Will probably break stuff - rebuild what depends upon it

Rekeyed patch for new version and ifdef'ed out chown calls if not
available

* Rebuild some packages that depend upon readline for good measure

* libssh2 - 1.8.0 - Upgrade to latest version (#1876)

* Adding library: flickcurl (#1875)

* Adding library:flickcurl

* Flickcurl: fixing dependency on gtk-doc

* Libarchive (#1878)

* libarchive : 3.2.2

Update to altest version

* libarchive: 3.2.2 - add back dependency on lz4

* Nsis (#1879)

* nsis 3.0 update to release version

* mingw-w64-nsis: 33.

Download should point to main to main site, not mirror
Use https when possible

* g-i-parser: fix race condition (#1881)

* Remove rmtree debugging patch

It is shadowing exceptions thrown from the main "try" block of
GDumpParser._execute_binary_get_tree().

There does seem to be a race condition, but it seems to be related to
subprocess.check_call() and what it does on Windows. At the point
xml.[blah].parse() is called, "dump.xml" is often absent!

* More tolerant rmtreeing

If shutil.rmtree() is failing due to some funky race condition that results
in files the walk doesn't know about being left, then don't worry about it
and continue.

This may leave uniquely named junk lying around in the build tree, but that
is by design not a problem with g-i-scanner. Just don't install the
tmp-introspectXXXXXX folder by accident.

* giscanner debugging: asserts and waits

Make absence of dump.xml or functions.txt fatal, but only after giving them
plenty of time time to appear.

Yes, this is horrible code. But it fixes broken builds almost completely on
my 64-bit Win7 with NTFS.

* Wait for XML to be parsed completely

It's possible that dump.xml might exist but be incompletely written. This
nasty sleep-till-it-parses loop covers that case.

Plus the usual logging so we can see if it's really needed ☺

* gobject-introspection: bump pkgrel

* Updated to stable release 190600_20161030 (#1880)

A fresh new stable release since January 30, 2014!

* go: update to 1.7.3 (#1882)

* Cmake and some prerequisits

mingw-w64-cmake - 3.7.0 - Update to latest version, note dependency upon
libuv
mingw-w64-jsoncpp - 1.7.1 - Update to latest version
mingw-w64-libarchive - 3.2.2 - Changed build to cmake and made patch to
enable Crypto-Next-Generation using bcrypt
mingw-w64-libuv - 1.10.0 - Update to latest version and include two
checkins for bug-fixes.
2016-11-14 08:46:45 +03:00
J. Peter Mugaas
33e6fe52b0 Libarchive (#1878)
* libarchive : 3.2.2

Update to altest version

* libarchive: 3.2.2 - add back dependency on lz4
2016-11-01 07:42:23 +03:00
Alexey Pavlov
620d140843 Rebuild packages with nettle-3.3 2016-10-13 11:43:08 +03:00
Abdo Roig-Maranges
c17134d1b0 libarchive: it depends on lz4 since 3.2.1
See https://bugs.archlinux.org/task/49888

This broke at least cmake.
2016-08-25 20:40:16 +02:00
J. Peter Mugaas
14f7b3d114 libarchive - 3.2.1 - Update to latest version 2016-08-06 00:04:10 -04:00
J. Peter Mugaas
e5236fe7c0 mingw-w64-libarchive: 3.2.0 - Update to latest version and del old patches
Update to latest version and remove patches that are now in source-code:
http://libarchive.org/downloads/${_realname}-${pkgver}.tar.gz
0001-mtree-fix-line-filename-length-calculation.patch
2016-05-17 05:44:28 -04:00
Yusuke Sasaki
7c803d2668 add pkgbase entry 2016-03-07 00:33:13 +09:00
Viktor Szakats
e32a40cc92 switch to sha256 checksums
* upgrade some broken packages
* correct some broken urls/checksums
* use secure urls where possible
* update PKGBUILD templates
* remove line-ending whitespace
* minor typos/fixes

Remaining md5sums either didn't download or
didn't pass checksum tests.
2016-02-25 20:55:26 +01:00
U-warlock\alexx
13c9aa2b19 === Rebuild with GCC-5.1.0. Part I === 2015-06-30 16:32:00 +03:00
Alexpux
38ffef2076 Rebuild packages with nettle-3.1.1 2015-06-10 09:36:29 +03:00
Alexpux
d8e1f072b5 libarchive: Rebuild with nettle-3.1 2015-04-09 15:34:23 +03:00
Alexpux
c6c4bd6bc2 libarchive: Rebuild with libsystre 2015-01-14 11:35:51 +03:00
Alexpux
d92815a652 Fix scripts to use new global MINGW_PACKAGE_PREFIX variable instead locally defined 2014-06-11 07:11:51 +04:00
Alexpux
228bb23d40 Fix formatting. Replace TAB with two spaces 2014-04-22 16:46:15 +04:00
Alexpux
955fb300aa libarchive: Fix release 2014-02-10 20:46:53 +04:00
Alexpux
02f45119c6 libarchive: Add CVE patch 2014-02-10 19:13:41 +04:00
Alexpux
46c699accf libarchive: build with expat instead of libxml2 2013-12-06 07:56:57 +04:00
Alexpux
e1b895ffe2 Add libarchive package. 2013-12-02 10:24:31 +04:00