Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
1.17.99.10
Baptiste Daroussin committed 3 years ago
commit 2c2bb2e82d1cdd4e60af2a26b0142c01ebda585d
parent 2a1d53a
2 files changed +17 -1
modified NEWS
@@ -3,6 +3,7 @@ Changes from 1.17.99.9 to 1.17.99.10
- many improvements in error handling for pkg fetch
- Remove the deprecated pkg_get() function from the API
- prevent @config files to be verified from pkg checksums checking
+
- Remove ftp(s):// support
- add tcp:// protocol support which allows to server packages form inetd
  and secure it via spiped for example
- triggers can now be trigger when empty directories are added/removed
@@ -10,6 +11,21 @@ Changes from 1.17.99.9 to 1.17.99.10
- speed up pkg which
- Reduce the possibility to have a temporary file during package extraction
  which exceed NAME_MAX (maxium file name length)
+
- If the pattern has a '/' in it, it now search origin and all other categories
+
  as well
+
  for example graphics/zathura and print/zathura will both match the zathura
+
  package
+
- If the pattern has a '/' in it and a @ it will also search for the flavor
+
  <category>/<portname>@<flavor>
+
  # pkg install "editors/vim@tiny" # will install the vim-tiny package
+
  $ pkg search -g "editors/vim@*"
+
  vim                            Improved version of the vi editor (console flavor)
+
  vim-gtk2                       Improved version of the vi editor (gtk2 flavor)
+
  vim-gtk3                       Improved version of the vi editor (gtk3 flavor)
+
  vim-motif                      Improved version of the vi editor (motif flavor)
+
  vim-tiny                       Improved version of the vi editor (tiny flavor)
+
  vim-x11                        Improved version of the vi editor (x11 flavor)
+
- portability: build and run on alpine (musl)

Changes from 1.17.99.8 to 1.17.99.9
- pkg add: only runs triggers at the end of the equivalent of a transaction
modified auto.def
@@ -6,7 +6,7 @@ use cc cc-lib cc-shared pkg-config
set maj_ver 1
set med_ver 17
set min_ver 99
-
set dev_ver 9
+
set dev_ver 10
define PKG_API [expr $maj_ver * 1000000 + $med_ver * 1000 + $min_ver]
define VERSION $maj_ver.$med_ver.$min_ver[expr {$dev_ver ? ".$dev_ver" : ""}]