2024-11-14 23:22:33 by Thomas Klausner | Files touched by this commit (2429) |
Log message:
*: recursive bump for icu 76 shlib major version bump
|
2024-11-01 13:55:19 by Thomas Klausner | Files touched by this commit (2426) |
Log message:
*: revbump for icu downgrade
|
2024-11-01 01:54:33 by Thomas Klausner | Files touched by this commit (2427) |
Log message:
*: recursive bump for icu 76.1 shlib bump
|
2024-05-28 01:27:10 by Taylor R Campbell | Files touched by this commit (3) |
Log message:
pkgtools/pkgin: Fix header file checks in configure.
https://github.com/NetBSDfr/pkgin/issues/133
configure.ac wrongly checks for header files in build environment
When configuring with --with-libarchive=/usr/pkg, pkgin's configure
script tests whether /usr/pkg and /usr/pkg/include/archive.h exist.
This is wrong -- it doesn't matter whether
/usr/pkg/include/archive.h exists; what matters is whether the
compiler can resolve #include <archive.h>, which it might be doing
relative to a sysroot like
/home/riastradh/netbsd/current/obj.evbarm64/destdir.evbarm.
configure.ac should use AC_CHECK_HEADER instead to check whether
#include <archive.h> works, and AC_CHECK_LIB to check whether
linking with -larchive works; similarly for libfetch, openssl, and
sqlite3. It should also provide a way to specify other arguments
than just CPPFLAGS=-I/prefix/include LDFLAGS=-L/prefix/lib
LIBS=-lwhatever, e.g. in principle some environments may need
LDFLAGS=-L/sdk/prefix/lib\ -Wl,-R/opt/prefix/lib or LIBS=-lfetch
-lssl -lcrypto.
The result of the status quo is that pkgin can't currently be
reasonably cross-compiled.
|
2024-01-03 13:32:59 by Greg Troxel | Files touched by this commit (4) |
Log message:
pkgtools/*: revbump for libfetch
libfetch's recent behavior change can be viewed as a bugfix or as an
ABI change. pkg_install vendors libfetch from the sources, for
bootstrapping reasons and thus needs a revbump. For consistency and
to reduce confusion, also bump the other two packages that depend on
it.
|
2023-11-08 14:21:43 by Thomas Klausner | Files touched by this commit (2377) |
Log message:
*: recursive bump for icu 74.1
|
2023-10-25 00:11:51 by Thomas Klausner | Files touched by this commit (2298) |
Log message:
*: bump for openssl 3
|
2023-08-22 09:14:18 by Jonathan Perkin | Files touched by this commit (2) |
Log message:
pkgin: Update to 23.8.1.
## Version 23.8.1 (2023-08-22)
* Fix regression introduced in 23.8.0 where only the first argument to
"keep" and "unkeep" commands was processed. Reported by gdt.
|
2023-08-16 19:19:55 by Jonathan Perkin | Files touched by this commit (2) |
Log message:
pkgin: Update to 23.8.0.
## Version 23.8.0 (2023-08-16)
This is the biggest overhaul of pkgin yet! As well as fixing many bugs, pkgin
23.8.0 runs "pkgin -n upgrade" over 2,000x faster on a test system \
with 12,663
packages installed compared to 22.10.0 (1.4 seconds vs over 54 minutes).
* Large overhaul of dependency resolution code, fixing many upgrade issues,
providing significant performance improvements, and improving code and
logic readability.
* Add support for SUPERSEDES.
* Fix install and removal ordering.
* Improve and fix handling of "keep" packages, using "pkg_add \
-A" to
correctly install automatic packages rather than applying keep or unkeep
flags afterwards.
* Output improvements, sorting packages alphabetically and providing a
simple progress counter. Fix unwanted output that could end up mixed
with package paths in "pkgin export".
* Correct handling of +REQUIRED_BY for reverse dependencies, fixing
DEPENDS that use alternate matches.
* Many internal code improvements, memory leaks plugged, and compiler
warnings eradicated.
Fixes at least the following issues:
* NetBSDfr/pkgin#10
* NetBSDfr/pkgin#44
* NetBSDfr/pkgin#79
* NetBSDfr/pkgin#95
* NetBSDfr/pkgin#97
* NetBSDfr/pkgin#110
* NetBSDfr/pkgin#113
* NetBSDfr/pkgin#128
* NetBSD PR#51465
* NetBSD PR#56683
|
2023-04-19 10:12:01 by Adam Ciarcinski | Files touched by this commit (2359) | |
Log message:
revbump after textproc/icu update
|