1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
Commit Graph

27986 Commits

Author SHA1 Message Date
Lewis Cook
a36be24437 MFH: r568565
sysutils/glow: Update to 1.4.0

Changes:	https://github.com/charmbracelet/glow/releases/tag/v1.4.0
2021-03-16 13:30:03 +00:00
Kirill Ponomarev
209f7068ca MFH: r568440
Update to 13.0.2

Changes: https://github.com/cbsd/cbsd/releases/tag/v13.0.2

Submitted by:	maintainer
2021-03-15 08:17:57 +00:00
Piotr Kubaj
d0ffeba14e MFH: r567926
sysutils/lcdproc: fix build on powerpc64 elfv2

Use GCC:
In file included from serialVFD_io.c:45:
./port.h:344:32: error: invalid output constraint '=a' in asm
        __asm__ volatile ("inb %1,%0":"=a" (value)
2021-03-09 13:13:30 +00:00
Emmanuel Vadot
ba1adfe814 MFH: r567376
sysutils/rpi-firmware: Update to 20210303

Fix USB on RPI4

PR:	252971, 253981, 253983
2021-03-05 10:33:53 +00:00
Kirill Ponomarev
1dd91bc4e8 MFH: r566611
Update to 3002.5

Approved by:	maintainer
2021-02-26 16:24:44 +00:00
Piotr Kubaj
2c78b9754c MFH: r560298 r560302 r561371 r562151 r562559 r563142 r563143 r563149 r565356 r565465 r566011 r566182
finance/quickfix: fix build on non-x86

Code uses x86 assembly, but makes it possible to use Boost atomic.

multimedia/zoneminder: enable on powerpc64

net/mpich: fix build on powerpc64

Neither __BYTE_ORDER nor __BIG_ENDIAN are defined:
In file included from src/mpi/datatype/typerep/dataloop/looputil.c:10:
./src/mpi/datatype/typerep/dataloop/looputil.h:57:2: error: This code assumes that __BYTE_ORDER and __BIG_ENDIAN are defined
#error This code assumes that __BYTE_ORDER and __BIG_ENDIAN are defined

editors/libreoffice: fix build on powerpc64 elfv2

This set of patches is applied only on powerpc* architectures.

Submitted by:	afsilva
Approved by:	tier 2 blanket

security/openconnect-gui: fix checksum

emulators/riscv-isa-sim: enable on powerpc64

sysutils/linuxfdisk: enable on powerpc64

graphics/openfx-arena: enable on powerpc64

multimedia/arcan: enable LUAJIT on powerpc64

It builds fine with luajit-openresty.

games/libretro-desmume2015: fix build on non-x86 / ARM

JIT is only for x86 and ARM.

astro/opencpn: fix build on powerpc64*

Use GCC unconditionally on powerpc64*:
In file included from /usr/lib/clang/11.0.1/include/xmmintrin.h:13:
/usr/lib/clang/11.0.1/include/mmintrin.h:33:5: error: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'?
    __builtin_ia32_emms();

editors/libreoffice6: backport powerpc* patches to libreoffice6

Approved by:	tier 2 blanket
2021-02-25 18:32:27 +00:00
Kirill Ponomarev
3751508086 MFH: r566425
Update to 13.0.1

Submitted by:	maintainer
2021-02-23 20:07:56 +00:00
Juraj Lutter
327a2e636f MFH: r566225
sysutils/bpytop: Upgrade to 1.0.62

Reviewed by:	lwhsu, osa
Approved by:	lwhsu, osa
Differential Revision:	https://reviews.freebsd.org/D28730
2021-02-21 12:56:08 +00:00
Jan Beich
83af031ce0 MFH: r565827
Unbreak fetch from git.sr.ht

GZIP compression ratio and Git footer have changed e.g.,

 method  crc     date  time    compressed uncompressed  ratio uncompressed_name
-defla 944caee6 Dec  7 21:15        12482        71680  82.5% scdoc-1.11.1.tar
+defla 944caee6 Feb 17 23:20        12510        71680  82.5% scdoc-1.11.1.tar

 ---
-2.26.2
+2.30.0
2021-02-17 23:40:57 +00:00
Kyle Evans
e9b428a70b MFH: r565472
sysutils/memtest86+: remove dependency on gcc48

This is one of three ports still explicitly dependent on lang/gcc48. The
problems that were preventing the upgrade were as follows:

- The __OUT*/__IN* macros in io.h were declaring the produced functions as
  extern, yielding multiple "definitions." They're inline asm, so just give
  them static linkage.

- reboot was declared inline with non-static linkage, thus leaving it in a
  weird state where it wasn't visible within the same CU or another CU.
  Drop the inline for now; if it really needs to be inlined, it can be
  moved into a header and declared `static inline`.

I made these changes, then discovered there's a 5.31b that's still in
testing. I checked the archive for that and was delighted to discover these
changes had already actually been made there, too, so let's consider this a
backport.

PR:		253303
Approved by:	avg (maintainer)
2021-02-17 01:37:57 +00:00
Antoine Brodin
9d5fa73b4b MFH: r565432
Mark BROKEN on FreeBSD 13 and 14

ld: error: duplicate symbol: admin_passwd
>>> defined at main.c
>>>            main.o:(admin_passwd)
>>> defined at interface.c
>>>            interface.o:(.bss+0x60)

Reported by:	pkg-fallout
2021-02-16 17:48:20 +00:00
Antoine Brodin
e574271e81 MFH: r565429
Mark BROKEN on FreeBSD 13 and 14

g_raid5.c:1567:2: error: too few arguments to function call, expected at least 3, have 1
        G_RAID5_LOGREQ(bp, "[done err:%d dat:%02x adr:%p]",
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./g_raid5.h:72:18: note: expanded from macro 'G_RAID5_LOGREQ'
                        g_print_bio(bp);                \
                        ~~~~~~~~~~~   ^
/usr/src/sys/geom/geom.h:347:6: note: 'g_print_bio' declared here
void g_print_bio(const char *prefix, const struct bio *bp, const char *fmtsuffix, ...) __printflike(3, 4);
     ^

Reported by:	pkg-fallout
2021-02-16 17:45:19 +00:00
Ryan Moeller
ee139cf191 MFH: r564796
sysutils/openzfs*: Bump to fix mode issue in zfs_write

See https://github.com/openzfs/zfs/pull/11576 for details.

Approved by:	portmgr (blanket, security/stability)
Sponsored by:	iXsystems, Inc.
Differential Revision:	https://reviews.freebsd.org/D28554
2021-02-09 17:22:11 +00:00
Mateusz Piotrowski
78537a124b MFH: r560702 r564693
Update to 2.3.10

PR:		251897
Submitted by:	nc
Differential Revision:	https://reviews.freebsd.org/D27996

Fix a runtime issue causing Nix to die when it builds packages

Related upstream PR:
https://github.com/NixOS/nix/pull/4530

PR:		253322
Submitted by:	hi@alyssa.is
2021-02-08 17:54:36 +00:00
Emmanuel Vadot
33d4a69192 MFH: r564719
sysutils/rpi-firmware: Update to 1.20210111

While here also:
Replace the deprecated arm_control by arm_64bit for 64bits configuration
Add hdmi_safe for rpi4, recent updates of rpi-firmware break something related
to hdmi. Version 1.20201201 will reset if hdmi monitor is connected while later
version will only work if an hdmi monitor is connected. [1]

PR:		252971 [1]
2021-02-08 16:35:34 +00:00
Matthias Andree
0bd053c0e5 MFH: r563985
e2fsprogs: make build more robust

Depending on external circumstances and options that I have not fully
investigated, several build-time failures occurred that were one of:
- missing symbols in liblzma (static build missed libmd)
  on some versions with LIBUNWIND enabled
- sometimes /bin/csh being pulled up for scripting, breaking in
  various places, reason unclear, possibly artifact of next one:
- questionable BASHTESTS handling cleaned up

As these are fixes for a potentially broken build,
no PORTREVISION bump necessary.
2021-02-04 01:51:41 +00:00
Kirill Ponomarev
ef8140548d MFH: r563872
Update to 13.0.0

Changes: https://github.com/cbsd/cbsd/releases/tag/v13.0.0

Submitted by:	maintainer
2021-02-03 15:27:35 +00:00
Ryan Moeller
d6b0cf2b80 sysutils/openzfs*: Bump to fix build
Reported by:	pkg-fallout
Approved by:	portmgr (blanket, build fix)
Sponsored by:	iXsystems, Inc.
2021-02-03 15:16:27 +00:00
Matthias Andree
2de69f8574 MFH: r563848
sysutils/e2fsprogs: update to new 1.45.7 upstream release

Changelog:
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/plain/doc/RelNotes/v1.45.7.txt?h=v1.45.7
2021-02-02 23:24:03 +00:00
Jan Beich
d8724258fa MFH: r563446
Drop illusion of maintenance

Gift important ports (reset if undesired):
- multimedia/libmtp -> desktop@
- x11-drivers/xf86-input-wacom -> x11@
2021-01-31 01:56:31 +00:00
Kurt Jaeger
d7947026f8 MFH: r560735
sysutils/beats7: Unbreak build after upgrade to 7.10.1

- Remove duplicate containerd/fifo Go module source
- Regenerate distinfo

Reported by:	dvl, pkg-fallout
Reviewed by:	osa (mentor), dvl
Approved by:	osa (mentor), dvl
Differential Revision:	https://reviews.freebsd.org/D28000
2021-01-25 10:15:52 +00:00
Antoine Brodin
0e3ebcbc50 MFH: r562536
Mark BROKEN on FreeBSD 14

Reported by:	pkg-fallout
2021-01-25 07:13:44 +00:00
Antoine Brodin
6c4495dc1d MFH: r562532
Mark BROKEN on FreeBSD 14

Reported by:	pkg-fallout
2021-01-25 07:11:09 +00:00
Emmanuel Vadot
15aab9e21b MFH: r561841
sysutils/rpi-firmware: Update to g20210111

Fixes booting on RPI4-8GB
2021-01-24 16:09:06 +00:00
Kirill Ponomarev
25abd7d7a1 MFH: r561871
Update to 0.8.20210115

Release notes: https://github.com/BastilleBSD/bastille/releases/tag/0.8.20210101
		https://github.com/BastilleBSD/bastille/releases/tag/0.8.20210115

PR:		252745
Submitted by:	maintainer
2021-01-17 21:34:05 +00:00
Piotr Kubaj
860e552374 MFH: r561463
sysutils/lcdproc: fix packaging on non-x86

Approved by:	tier 2 blanket
2021-01-13 13:17:01 +00:00
Piotr Kubaj
879ad2d48d MFH: r561434
sysutils/htop: fix build on GCC architectures

freebsd/FreeBSDProcessList.c: In function 'FreeBSDProcessList_readJailName':
freebsd/FreeBSDProcessList.c:422: error: #pragma GCC diagnostic not allowed inside functions
freebsd/FreeBSDProcessList.c:422: error: #pragma GCC diagnostic not allowed inside functions
freebsd/FreeBSDProcessList.c:425: warning: cast discards qualifiers from pointer target type
freebsd/FreeBSDProcessList.c:435: error: #pragma GCC diagnostic not allowed inside functions
2021-01-13 03:28:58 +00:00
Piotr Kubaj
4dbf82ac21 MFH: r561420
sysutils/gdisk: enable on powerpc64
2021-01-13 02:17:27 +00:00
Piotr Kubaj
87bb753363 MFH: r561354
sysutils/cinnamon-settings-daemon: fix build on GCC architectures

../plugins/power/csd-power-manager.c:3490: error: 'for' loop initial declaration used outside C99 mode

USE_CSTD=c99 also fixes it, but dependencies already mandate installing gcc9
2021-01-12 17:37:54 +00:00
Piotr Kubaj
794398d985 MFH: r561294
sysutils/packmule: enable for other powerpc architectures
2021-01-12 01:21:22 +00:00
Guido Falsi
21caab2dfe MFH: r561081
- Fix script used to extract themes to fallback to /tmp when both
  TMPDIR and XDG_CACHE_HOME environment variables are not defined [1]
- Fix crash caused by null terminated list missing the terminating
  null element due to no allocating enough elements [2]

Reported by:		Andrea Venturoli <ml@netfence.it> [1] [2]
Patch submitted by:	Andrea Venturoli <ml@netfence.it> [2]
2021-01-10 15:36:23 +00:00
Guido Falsi
1a4268af58 MFH: r560858
Update catfish to 4.16.0
2021-01-09 17:06:20 +00:00
Guido Falsi
20b93088b7 MFH: r560876
Fix conky build on head after commit a21def4d568f which removed the
wi driver.

The code actually depending on this include is already disabled by
#if 0, so there is no functional change.
2021-01-09 16:44:27 +00:00
Kirill Ponomarev
0ce9186eb1 MFH: r560728
Update to 12.2.5

Changes: https://github.com/cbsd/cbsd/releases/tag/v12.2.5
2021-01-07 19:40:18 +00:00
Guido Falsi
dd622f759f MFH: r560384
Mark broken and deprecate, This was forgotten in the XFCE 4.16 update.

Reported by:	Andrea Venturoli <ml@andreaventuroli.it>
2021-01-05 12:13:44 +00:00
Guido Falsi
f1bfcaade9 MFH: r560269
Correctly wrap Gobject Introspection support in an option for garcon.

PR:		252355
Submitted by:	rozhuk.im@gmail.com
2021-01-04 08:57:54 +00:00
Yuri Victorovich
fdd1658fe5 sysutils/synergy-1: Update 1.12.0 -> 1.13.0
Reported by:	portscout
2021-01-03 05:45:29 +00:00
Richard Gallamore
10db900e06 Updated to 173
Changes: https://github.com/andikleen/mcelog/compare/v172...v173
2021-01-03 03:08:34 +00:00
Danilo G. Baio
c959e5408f sysutils/py-azure-cli: Update to 2.17.0
Changelog:	https://pypi.org/project/azure-cli/2.17.0/
2021-01-02 21:24:47 +00:00
Danilo G. Baio
0c76580a24 sysutils/py-azure-cli-core: Update to 2.17.0
Changelog:	https://pypi.org/project/azure-cli-core/2.17.0/
2021-01-02 21:24:29 +00:00
Danilo G. Baio
0066f69356 sysutils/py-salt-2019: Fix build (extract) with static bsdtar(1)
===>  Extracting for py37-salt-2019-2019.2.8
=> SHA256 Checksum OK for salt-2019.2.8.tar.gz.
tar: Pathname can't be converted from UTF-8 to current locale.
tar: Pathname can't be converted from UTF-8 to current locale.
tar: Pathname can't be converted from UTF-8 to current locale.
tar: Pathname can't be converted from UTF-8 to current locale.
tar: Pathname can't be converted from UTF-8 to current locale.
tar: Error exit delayed from previous errors.
===>  Failed to extract "/portdistfiles//salt-2019.2.8.tar.gz".
*** Error code 1

See more details for the same issue in bug 246618.

Reported by:	pkg-fallout
Approved by:	portmgr blanket
2021-01-02 21:20:35 +00:00
Matthias Fechner
b10aefc1e3 Mark the port not only as deprecated but also as broken. 2021-01-02 19:39:05 +00:00
Guido Falsi
b2f2269daf Welcome XFCE 4.16 to the FreeBSD ports tree!
Upstream announce: https://xfce.org/about/news/?post=1608595200

This XFCE release dropped support for GTK2 plugins and also dropped
GTK2 from all components.

WARNING: please check UPDATING before upgrading your packages. In
case of problems also read the libexo pkg-message.

Due to this some panel plugins and libraries will be removed since
they cannot compile anymore:

- print/xfce4-print
- x11/xfce4-quicklauncher-plugin
- x11/xfce4-wmdock-plugin
- x11-toolkits/libxfce4gui

These further components also fail to build or work and are being
marked BROKEN, deprecated and marked for removal:

- science/xfce4-equake-plugin
- x11/xfce4-embed-plugin
- deskutils/orage
- deskutils/xfce4-volumed [1]

deskutils/xfce4-notes-plugin will be also marked BROKEN, but there
is active development in it's upstream repository and a fixed release
is expected soon.

deskutils/xfce4-generic-slider will also be marked broken, since
it fails to compile. [2]

Thanks also to riggs, Olivier Duchateau <duchateau.olivier@gmail.com>
and the people in Approved and Reviewed lines below for help and
contributions.

Reviewed by:		woodsb02
Approved by:		sergey.dyatko@gmail.com (maintainer) [1],
			ehaupt [2]
Differential Revision:	https://reviews.freebsd.org/D27846
2021-01-02 16:36:33 +00:00
Rene Ladan
55a9ef3391 Remove expired ports:
lang/julia: metaport, useless without any consumers
2020-12-31 lang/julia10: Uses Python 2.7 which is EOLed upstream
2020-12-31 lang/spidermonkey24: Uses Python 2.7 which is EOLed upstream
2020-12-31 mail/getmail: Uses deprecated version of python
2020-12-31 security/broccoli: Depends lang/python27 which is EOLed upstream
2020-12-31 security/orthrus: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream
2020-12-31 sysutils/ori: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream
2020-12-31 sysutils/osquery: Uses Python 2.7 which is EOLed upstream
2020-12-31 www/cliqz: Uses deprecated version of python
2020-12-31 www/trac: Uses Python 2.7 which is EOLed upstream
2020-12-31 www/trac-accountmanager: Uses Python 2.7 which is EOLed upstream
2021-01-02 14:52:12 +00:00
Rene Ladan
474895cdb6 Upgrade the Cinnamon desktop environment to version 4.8
This version uses Python 3 instead of the expired Python 2.7

From the main PR (249856):

" There are a couple known issues:
  * x11-fm/nemo crashes upon closing a window or tab.
  * x11/cinnamon-screensaver unlocking doesn't work, most likely due to a missing PAM (Linux-PAM?) integration.
  Both of these issues are being worked on.

  I've been dogfooding since Cinnamon 4.0, and apart from those issues, everything works."

PR:		249771
PR:		249851
PR:		249855
PR:		249856
PR:		249857
PR:		249858
Submitted by:	Charlie Li
2021-01-02 11:21:30 +00:00
Romain Tartière
5a2eb7ba14 Update to 2.23.0
Release notes:
https://github.com/choria-io/mcorpc-ruby-support/releases/tag/2.23.0

With hat:	puppet
2021-01-02 04:26:25 +00:00
Mark Linimon
f2fbf5a1ed For ports on riscv64 that fail the same (or similar ways) to aarch64, mark
them BROKEN.

While here, pet portlint (Makevar order).

Approved by:	portmgr (tier-2 blanket)
2021-01-02 01:46:08 +00:00
Li-Wen Hsu
bb8c820157 sysutils/bpytop: Update to 1.0.54 2021-01-02 01:35:45 +00:00
Mark Linimon
553b088a05 Mark ports that are BROKEN due to sbrk on aarch64, also BROKEN on riscv64
where appropriate.

While here, pet portlint (Makevar order; whitespace).

Approved by:	portmgr (tier-2 blanket)
2021-01-01 23:51:48 +00:00
Mark Linimon
177f25e27d Extend use of files/extrapatch-no-sbrk to riscv64 to fix build there.
Approved by:	portmgr (tier-2 blanket)
2021-01-01 23:03:53 +00:00