Đoàn Trần Công Danh
e3ae070769
xfce4-time-out-plugin: update to 1.1.3.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
c6f6c71d82
xfce4-terminal: update to 1.1.3.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
171bc701c2
xfce4-taskmanager: update to 1.5.7.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
89b382bbf2
xfce4-systemload-plugin: update to 1.3.2.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
28897b5197
xfce4-screenshooter: update to 1.10.5.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
9a37b53221
xfce4-screensaver: update to 4.18.3.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
1a5f487259
xfce4-pulseaudio-plugin: update to 0.4.8.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
eb946947e4
xfce4-panel: update to 4.18.6.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
bb5c07a0a9
xfce4-notifyd: update to 0.9.4.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
840a139ab9
xfce4-netload-plugin: update to 1.4.1.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
02d6e74cf2
xfce4-mailwatch-plugin: update to 1.3.1.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
f9cdef1211
xfce4-i3-workspaces-plugin: update to 1.4.2.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
a3f6a0579f
xfce4-genmon-plugin: update to 4.2.0.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
c5ea2f1a92
xfce4-fsguard-plugin: update to 1.1.3.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
9713faf5b4
xfce4-docklike-plugin: update to 0.4.2.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
8b736e4f66
xfce4-dict: update to 0.8.6.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
5ef98e274d
xfce4-datetime-plugin: update to 0.8.3.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
899a9c632e
xfce4-cpugraph-plugin: update to 1.2.10.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
d24a0a45cf
xfce4-clipman-plugin: update to 1.6.6.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
c756bf8579
pragha: update to 1.3.4.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
ca16389402
orage: update to 4.18.0.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
424e54a0ee
libxfce4ui: update to 4.18.6.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
32601d81b1
garcon: update to 4.18.2.
2024-04-08 16:45:26 +07:00
Đoàn Trần Công Danh
e6af60b3b1
New package: libaccounts-qt-1.17
2024-04-08 16:45:11 +07:00
Đoàn Trần Công Danh
974b3f3803
build-style/qmake: build in build_wrksrc
2024-04-08 16:45:11 +07:00
Đoàn Trần Công Danh
cd723b285f
libaccounts-glib: update to 1.26.
2024-04-08 16:45:11 +07:00
Gonzalo Tornaría
d8c079c8df
common/scripts/xbps-cycles.py: add -Q and -K options for dependencies
2024-04-08 08:57:46 +07:00
Gonzalo Tornaría
f7a6688401
common/travis/build.sh: use $test for sort-dependencies
...
This ensures that checkdepends will be taken into account in the build
order whenever test is enabled.
2024-04-08 08:57:46 +07:00
Gonzalo Tornaría
7bd875c33f
./xbps-src show-build-deps: include checkdepends when using -Q or -K
...
Due to this change, `./xbps-src sort-dependencies` will take
checkdepends into account when using -Q or -K.
Before this commit, if `pkgA` checkdepends on `pkgB`, sort-dependencies
could still print `pkgA` before `pkgB`. This causes CI to build `pkgB`
twice: first when building `pkgA`, which forces implicit build of pkgB;
second when building `pkgB` (explicit, so it will ignore the package is
already built).
The implementation uses `skip_check_step()` from previous commit, for
consistency, so checkdepends are only taken into account if the check
step would be enabled.
In particular, nothing is changed unless -Q or -K flag is passed.
EXAMPLE:
Before:
```
$ ./xbps-src -Q sort-dependencies python3-process-tests python3-pytest-cov
python3-pytest-cov
python3-process-tests
```
After:
```
$ ./xbps-src -Q sort-dependencies python3-process-tests python3-pytest-cov
python3-process-tests
python3-pytest-cov
```
2024-04-08 08:57:46 +07:00
Gonzalo Tornaría
ebe26129ef
common/xbps-src/shutils/build_dependencies.sh: implement skip_check_step()
...
This function contains the logic that determines whether the check step
will be skipped for the current pkg, taking into account `make_check`.
Use this new function in `install_pkg_deps()` so that it uses a more
accurate condition to skip installing check dependencies.
For instance, check dependencies for a pkg with `make_check=extended`
will no longer be installed when using `-Q`. Similar for `make_check=ci-skip`.
Replaces: #46207
2024-04-08 08:57:46 +07:00
Duncaen
4adc8fc17d
poke: update to 4.0.
2024-04-07 21:59:40 +02:00
Andrew Benson
8bd691d70c
ghidra: update to 11.0.2.
2024-04-07 13:07:32 +02:00
Andrew Benson
0d98bf5e83
xlockmore: update to 5.77.
2024-04-07 12:58:58 +02:00
Andrew Benson
aa326a2a1c
python3-httpcore: update to 1.0.5.
2024-04-07 12:55:50 +02:00
Andrew Benson
0c6958cb1f
sc-im: rebuild for libxlsxwriter
2024-04-07 12:44:02 +02:00
Andrew Benson
8c431237b2
libxlsxwriter: update to 1.1.7.
2024-04-07 12:44:02 +02:00
Andrew Benson
bc8a069a67
fvwm3: update to 1.1.0.
2024-04-07 12:39:04 +02:00
Andrew Benson
d354571388
mongo-c-driver: update to 1.26.2.
2024-04-07 12:39:04 +02:00
Andrew Benson
59b68afc66
evtx: update to 0.8.2.
2024-04-07 12:36:41 +02:00
Andrew Benson
1d79a9c26d
QMPlay2: update to 24.04.02.
2024-04-07 12:30:37 +02:00
Luca Matei Pintilie
1979518ae1
newsboat: update to 2.35.
2024-04-07 04:03:54 +00:00
Joel Beckmeyer
f616cc594d
OpenRCT2: update to 0.4.10.
2024-04-07 03:55:44 +00:00
icp
66179fa924
git-absorb: update to 0.6.13.
2024-04-07 03:49:23 +00:00
Bnyro
6940e44cf9
bluetuith: update to 0.2.2.
2024-04-06 21:37:10 +00:00
Marcin Puc
4fddde3165
halloy: update to 2024.6
2024-04-06 21:37:03 +00:00
Joel Beckmeyer
cc9904d7ac
synapse: update to 1.104.0.
2024-04-06 21:06:23 +00:00
Marcin Puc
758755ab9f
curl: update to 8.7.1
2024-04-06 21:06:08 +00:00
iFoundSilentHouse
c9a3572d54
testdisk: update to 7.2.
2024-04-06 21:00:10 +00:00
Newchair2644
56e93ab54b
i3status-rust: update to 0.33.0.
2024-04-06 20:38:17 +00:00
Filip Rojek
f9df16d776
docker-compose: update to 2.26.1
2024-04-06 20:25:55 +00:00