Commit graph

5052 commits

Author SHA1 Message Date
John
795a039a11 libksysguard: update to 5.19.0
[ci skip]
2020-06-10 00:50:36 +02:00
John
49f7195dab kColorPicker: update to 0.1.3. 2020-06-08 01:11:04 +02:00
q66
43afc72bdd New package: libhugetlbfs-2.22 2020-06-04 21:36:25 +02:00
Andrew Benson
61a501a104 shutils/bulk.sh: remove newlines from package list 2020-06-04 13:21:42 -05:00
Randy McCaskill
d6e1b8b391 json-c: update to 0.14.
[ci skip]

This includes 3 patches from Gentoo.  One of them is a fix for CVE-2020-12762.
2020-06-03 20:32:05 +02:00
Cameron Nemo
db0c3bb356 frr: update to 7.3.1. 2020-06-01 11:19:44 +02:00
Érico Rolim
46ab04b8d1 common/build-helper/rust.sh: force native SSL lib
The OPENSSL_NO_VENDOR environment variable forces the openssl-sys crate
to use the system's SSL library instead of building its own.
2020-05-31 21:03:45 +02:00
mobinmob
ab0f15b20f mpg123: update to 1.26.0. 2020-05-31 14:04:08 +02:00
Randy McCaskill
6e050f9809 pciutils: update to 3.7.0. 2020-05-31 12:39:31 +02:00
Đoàn Trần Công Danh
d9c22b4d0a pre-pkg: use existing info to check empty package 2020-05-31 02:11:11 +00:00
Đoàn Trần Công Danh
91c0eaa5a7 xbps-src: pre-pkg: allow only white-listed directories. 2020-05-31 02:11:11 +00:00
Đoàn Trần Công Danh
d7f942b709 post-install: warn if cross wrapper not cleared 2020-05-31 02:10:51 +00:00
Đoàn Trần Công Danh
eef02a2b84 post-install: clean reference to $XBPS_CROSS_BASE in pkgconfig 2020-05-31 02:10:51 +00:00
Đoàn Trần Công Danh
b881f32687 travis/changed_templates: filter by git itself
- Use plumbing git-diff-tree(1) instead of porcelain git-diff(1)
- Disable rename detection, gains some speed up and fix missing template
  with name-status Renamed and Copied.
- Use "--diff-filter" to filter by Git itself.
- Tell Git to only check 'srcpkgs/*/template', this glob will only look
  into template file inside direct sub-directory of srcpkgs
- With all of those options, we don't need a grep and a pipe
2020-05-31 02:10:29 +00:00
Jürgen Buchmüller
2c293f2c88 kea: update to 1.7.8 2020-05-31 00:16:20 +02:00
Andrew J. Hesford
bc40351f83 avahi: restore 0.8 with split templates [ci skip]
closes #22406
2020-05-30 13:33:54 +02:00
John
6ce531b231 common: unser PKG_CONFIG before sourcing templates, set PKG_CONFIG also for native 2020-05-29 14:30:06 +02:00
Duncaen
6c2e984eb7
Revert "avahi: update to 0.8, unify with avahi-discover"
This reverts commit d625e25661.
2020-05-29 14:05:43 +02:00
Randy McCaskill
786205f5f3 icu: update to 67.1; Claim maintainer
[ci skip]
2020-05-29 13:04:30 +02:00
Jakob Rydhof
8e50c839b0 ncurses: add libtinfo.so
This change adds libtinfo.so as a symlink to libncurses.so.
And some other relevant changes around it.
This is used by some programs, which will rather look at libtinfo, than
libncurses.
libncurses provides the same library functions as libtinfo as it is
currently being built, so this way both programs looking for libncurses
will work the same, and programs looking for libtinfo will also work.
2020-05-27 16:29:55 +02:00
Jürgen Buchmüller
abdaf103fb netbsd-rumpkernel: fix build; xlint fixes; adopt 2020-05-27 16:10:50 +02:00
John
953f4b47a9
xbps-src/common: add option to disable generic pkg-config link
closes #21728
2020-05-26 21:21:23 +02:00
John
82734d940c
common/xbps-src: set PKG_CONFIG{,FOR_BUILD} env vars 2020-05-26 21:18:27 +02:00
m3tav3rse
1969a7b431 kid3: update to 3.8.3.
[ci skip]
2020-05-25 21:33:17 +02:00
m3tav3rse
25bd8061c5 chromaprint: update to 1.5.0.
[ci skip]
2020-05-25 21:33:17 +02:00
crater2150
2348a620f2 libopenshot: update to 0.2.5 2020-05-23 10:34:55 +02:00
crater2150
7b4ca026dc libopenshot-audio: update to 0.2.0 2020-05-23 10:34:55 +02:00
Đoàn Trần Công Danh
2af30cdd78 setup: compute gitrev from outside of chroot
Together with previous commit, `xbps-src` is able to support
git-worktree and shared repository by now.
2020-05-23 06:59:24 +00:00
Đoàn Trần Công Danh
2cd2b99e41 setup: export SOURCE_DATE_EPOCH from outside of chroot
git-worktree(1), and Git shared repository can use a plain text file
named `.git` at the root of working tree, containing `gitdir: <path>` to
point to the real directory that has repository.
See: gitrepository-layout(5).

But, that directory is usually inaccessible inside chroot.

In order to support git-worktree(1) and Git shared repository, compute
SOURCE_DATE_EPOCH from outside of chroot, and the chroot will carry it
over to inside chroot.

I've only tested again xbps-uunshare(1).
2020-05-23 06:59:24 +00:00
Đoàn Trần Công Danh
fd61886616 setup/git.sh: prefer git plumbing command
git-ls-files(1) is plumbing command, its output will never change
regardless of configuration, version.

git-status(1) output will be changed depends on configuration.
At least, 986d4dbc7d (common/environment/setup/git.sh: ensure untracked
files are checked., 2017-11-24) was added to address a different output
on `status.showUntrackedFiles`.

By doing this, also reduce a pipe, and a fork-exec.

Technically, git-log(1) is also a porcelain, but I _think_ `%ct` is
stable enough to stay there. If the day has come, that `git-log(1)` can
be replaced with:

    git cat-file commit HEAD |
    sed -ne '/^committer/{s/.* \([0-9]*\) [-+][0-9][0-9][0-9][0-9]$/\1/p;q}'
2020-05-23 06:59:24 +00:00
Đoàn Trần Công Danh
20f9bedefb xbps-src: use $XBPS_GIT_CMD for git 2020-05-23 06:59:24 +00:00
Andrew J. Hesford
2fbd6420b7 protobuf: upgrade to 3.12.1, move to meta-package 2020-05-23 05:53:31 +02:00
Andrew J. Hesford
9d6e82b72a New package: protobuf23-3.12.1 2020-05-23 05:53:31 +02:00
Andrew J. Hesford
22e59a9f86 protobuf18: remove package 2020-05-23 05:53:31 +02:00
Anjandev Momi
9d16a1342b New package: libsepol-3.0
Closes: #22121
2020-05-22 11:59:22 +07:00
Helmut Pozimski
12e76adfa6 libfilezilla: update to 0.22.0. 2020-05-20 20:52:30 +02:00
Đoàn Trần Công Danh
653892828d xmlsec1: remove $XBPS_CROSS_BASE reference from pkg-config
See-also: #19642
2020-05-20 21:28:15 +07:00
Leah Neukirchen
daa80b8d69 bind: update to 9.16.3. 2020-05-19 21:17:28 +02:00
Lon Willett
101d36b9fd gpsd: update to 3.20 (soname bump) 2020-05-19 15:43:57 +02:00
mobinmob
17b5ae8dba common/environment/setup/misc.sh: use https where possible,
remove XORG_HOME variable.
2020-05-18 08:01:34 -07:00
Andy Weidenbaum
d4bf579cde build_style/raku-dist.sh: RAKULIB=lib 2020-05-18 13:42:00 +02:00
Đoàn Trần Công Danh
368a1e571d build-style: scons: add lowercase compiler variable 2020-05-18 00:32:13 +02:00
Jürgen Buchmüller
6dba4d53ee leatherman: update to 1.12.0; switch to shlibs 2020-05-17 18:43:17 +02:00
Isaac Freund
0d36ffad29 New package: libvips-8.9.2 2020-05-14 22:43:40 +02:00
Isaac Freund
344b52ae9c matio: add to common/shlibs 2020-05-14 22:12:34 +02:00
Lorem
d82251f5f5 gjs: update to 1.65.2.
Closes: #21716
2020-05-14 21:47:33 +07:00
Lorem
f10e5b83c9 New package: mozjs68-68.8.0
Closes: #21716
2020-05-14 21:47:32 +07:00
Andrew J. Hesford
d625e25661 avahi: update to 0.8, unify with avahi-discover 2020-05-14 15:06:08 +02:00
Duncaen
959f0a1aa4
ldc: fix libphobos2-ldc-shared.so.91 again... 2020-05-13 01:08:54 +02:00
Duncaen
a688162f93
ldc: fix libphobos2-ldc-shared.so.91 in common/shlibs 2020-05-13 01:07:38 +02:00