Đoàn Trần Công Danh
d218f45bf7
update_check: add pypi link, strip kf6- prefix
2024-04-29 13:41:59 +07:00
Luciogi
258304342d
common/shlib: add libaccounts-qt6, libpoppler-qt6
2024-04-29 13:32:49 +07:00
Gonzalo Tornaría
1746703145
singular: update to 4.4.0.
2024-04-25 18:34:03 +00:00
classabbyamp
58705ffcbf
common: support disabling python shebang rewriting
...
useful if there are special python-containing shebangs that should not
be rewritten, for example with Ghidra's embedded jython.
2024-04-23 23:51:01 -04:00
Đoàn Trần Công Danh
da20a0b55d
update-check: better pattern for Python 3
2024-04-24 06:56:20 +07:00
Đoàn Trần Công Danh
9f8be2d6ae
libopenshot: update to 0.3.2.
2024-04-24 06:56:04 +07:00
cinerea0
caf6e43267
wireplumber: update to 0.5.2
2024-04-22 16:16:39 +00:00
cinerea0
1582f4cc84
New package: libcamera-0.2.0
2024-04-22 14:58:20 +00:00
Jovan Lanik
67c72de2d6
New package: gtk-session-lock-0.2.0
2024-04-21 19:40:14 +00:00
Đoàn Trần Công Danh
71bbae2dfe
gssdp1.2: remove package
2024-04-21 16:20:01 +07:00
Đoàn Trần Công Danh
99d22ef9e7
gupnp1.2: remove package
2024-04-21 16:11:17 +07:00
Đoàn Trần Công Danh
77d59ae961
gupnp1.2-igd: remove
2024-04-21 16:11:17 +07:00
Đoàn Trần Công Danh
63a7a9c9a0
libdmapsharing: update to 3.9.13.
2024-04-21 11:19:44 +07:00
Đoàn Trần Công Danh
f114d82d00
libchamplain: update to 0.12.21.
2024-04-21 07:18:17 +07:00
oreo639
845470848a
gnome-pannel: update to 3.52.0
2024-04-20 13:29:16 -07:00
Leah Neukirchen
26882e2382
libabigail: update to 2.5.
2024-04-19 16:11:43 +02:00
oreo639
95f42230ae
glib: bump shlibs required version
2024-04-18 01:46:09 -07:00
classabbyamp
4e36d738e2
libgnome-keyring: remove package
...
deprecated, not used by any other library
closes #26333
2024-04-18 14:57:21 +07:00
oreo639
d12aff729e
glib: update to 2.80.0.
...
This merges part of gobject-introspection tools, but not all of it.
Unfortunately this creates a cyclic dependency between glib and gi.
This is supposed to be temporary.
https://discourse.gnome.org/t/dealing-with-glib-and-gobject-introspection-circular-dependency/18701
https://gitlab.gnome.org/GNOME/glib/-/issues/2616
https://docs.gtk.org/girepository/migrating-gi.html
2024-04-17 20:25:16 -07:00
oreo639
71c04b6e56
evolution-data-server: update to 3.52.0.
2024-04-17 17:14:52 -07:00
cinerea0
8412bf2d08
libfilezilla: update to 0.47.0
2024-04-17 01:33:10 +00:00
chrysos349
3b621d5272
New package: libgnome-games-support2-2.0.0
2024-04-16 02:22:19 -07:00
oreo639
37b2c0ed33
geocode-glib-libsoup2: remove package
2024-04-14 18:35:06 -07:00
oreo639
1d0ff13117
rest0: remove package
2024-04-14 18:34:57 -07:00
classabbyamp
b1f66a4f86
New package: qt6-languageserver-6.6.0
2024-04-14 11:03:27 -04:00
Arjan Mossel
7a15445bcc
libpdal: update to 2.7.1.
2024-04-13 21:53:52 +00:00
danoloan10
4d11e4a48f
wt: update to 4.10.4
2024-04-10 01:02:11 +00:00
Marcin Puc
7120ea88ee
libutf8proc: update to 2.9.0
2024-04-08 15:05:43 +00: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
Andrew Benson
8c431237b2
libxlsxwriter: update to 1.1.7.
2024-04-07 12:44:02 +02:00
Leah Neukirchen
4e6cd40edb
libtls: update to 3.9.1.
2024-04-06 16:13:19 +02:00
Gonzalo Tornaría
640fb9f606
New package: qtkeychain-qt6-0.14.2
2024-04-05 07:23:31 -04:00
Gonzalo Tornaría
10b86b1668
New package: KDSingleApplication-1.1.0
2024-04-05 07:23:31 -04:00
cinerea0
d65011054f
New package: msgraph-0.2.1
2024-04-03 01:35:48 +00:00
Đoàn Trần Công Danh
3571de8a06
apr: update to 1.7.4.
2024-03-31 06:21:20 +07:00
Marcin Puc
737173a42f
common/build-helper/rust.sh: force using system libgit2 library
2024-03-28 14:13:38 +00:00
Marcin Puc
4d40fd4f08
libgit2: update to 1.7.2
2024-03-28 14:13:38 +00:00
Đoàn Trần Công Danh
392b392518
New package: libnatpmp-20230423
2024-03-28 10:58:02 +07:00
lemmi
a82680769d
ddcutil: update to 2.1.4.
2024-03-27 23:02:35 +01:00
Gonzalo Tornaría
c7e27e41c3
flintlib: update to 3.1.2.
2024-03-23 18:57:54 +01:00
icp
5e795a9424
xbps-src: fix update-check pattern for gitlab
...
Closes : #49475 [via git-merge-pr]
2024-03-23 07:41:20 -04:00
Andrew J. Hesford
489e05e3f3
xbps-src: allow curl to request compressed responses in update-check
2024-03-23 07:35:43 -04:00
cinerea0
de3a4f2be5
gst-rtsp-server: update to 1.24.0
...
Split out development files into subpackage.
2024-03-21 19:58:54 +00:00
chrysos349
80d6c07fec
mutter: update to 45.5
2024-03-20 18:57:36 -07:00
chrysos349
eddfdb3b0b
gcr4: update to 4.2.1
2024-03-20 18:57:36 -07:00