*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
89786b8184
commit
300a1d104c
2135 changed files with 15961 additions and 7189 deletions
|
@ -9,6 +9,7 @@
|
|||
SUBDIR += feedbackd
|
||||
SUBDIR += gammastep
|
||||
SUBDIR += gammy
|
||||
SUBDIR += hyprsunset
|
||||
SUBDIR += kdeaccessibility
|
||||
SUBDIR += kmag
|
||||
SUBDIR += kmousetool
|
||||
|
|
|
@ -33,12 +33,12 @@ WAYLAND_DESC= Support Wayland (wlroots) for changing colors
|
|||
|
||||
GEO_BUILD_DEPENDS= geoclue>=0:net/geoclue
|
||||
GEO_RUN_DEPENDS= geoclue>=0:net/geoclue
|
||||
GEO_USE= GNOME=glib20
|
||||
GEO_USE= gnome=glib20
|
||||
GEO_CONFIGURE_ENABLE= geoclue2
|
||||
|
||||
GUI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gobject3>0:devel/py-gobject3@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR}
|
||||
GUI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR}
|
||||
GUI_USES= python
|
||||
GUI_USE= gnome=pygobject3:run
|
||||
GUI_CONFIGURE_ENABLE= gui
|
||||
|
||||
NLS_USES= gettext-runtime iconv
|
||||
|
|
24
accessibility/hyprsunset/Makefile
Normal file
24
accessibility/hyprsunset/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
PORTNAME= hyprsunset
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.1.0
|
||||
CATEGORIES= accessibility wayland
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
COMMENT= Blue light filter on Hyprland
|
||||
WWW= https://github.com/hyprwm/hyprsunset
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= hyprwayland-scanner>=0.4.0:devel/hyprwayland-scanner \
|
||||
wayland-protocols>0:graphics/wayland-protocols
|
||||
LIB_DEPENDS= libhyprutils.so:devel/hyprutils \
|
||||
libwayland-client.so:graphics/wayland
|
||||
|
||||
USES= cmake compiler:c++11-lib localbase:ldflags pkgconfig
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= hyprwm
|
||||
GH_TUPLE= hyprwm:hyprland-protocols:v0.4.0:hyprland_protocols/subprojects/hyprland-protocols
|
||||
PLIST_FILES= bin/${PORTNAME}
|
||||
|
||||
.include <bsd.port.mk>
|
5
accessibility/hyprsunset/distinfo
Normal file
5
accessibility/hyprsunset/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
TIMESTAMP = 1728415425
|
||||
SHA256 (hyprwm-hyprsunset-v0.1.0_GH0.tar.gz) = 88c9fb2c3efb3ccb398c66a90658765312faf818678a6a8e0e727cfba5f13a9b
|
||||
SIZE (hyprwm-hyprsunset-v0.1.0_GH0.tar.gz) = 8571
|
||||
SHA256 (hyprwm-hyprland-protocols-v0.4.0_GH0.tar.gz) = ab3525d8bad576db911d4ba1b586f303dd988660b3b8980022c1795fd574b165
|
||||
SIZE (hyprwm-hyprland-protocols-v0.4.0_GH0.tar.gz) = 8131
|
23
accessibility/hyprsunset/files/patch-CMakeLists.txt
Normal file
23
accessibility/hyprsunset/files/patch-CMakeLists.txt
Normal file
|
@ -0,0 +1,23 @@
|
|||
-- Checking for module 'hyprland-protocols>=0.4.0'
|
||||
-- Package 'hyprland-protocols' not found
|
||||
CMake Error at /usr/local/share/cmake/Modules/FindPkgConfig.cmake:645 (message):
|
||||
The following required packages were not found:
|
||||
|
||||
- hyprland-protocols>=0.4.0
|
||||
|
||||
--- CMakeLists.txt.orig 2024-10-08 19:23:45 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -98,8 +98,12 @@ protocolwayland()
|
||||
|
||||
protocolwayland()
|
||||
|
||||
-pkg_check_modules(hyprland_protocols_dep REQUIRED IMPORTED_TARGET hyprland-protocols>=0.4.0)
|
||||
+pkg_check_modules(hyprland_protocols_dep IMPORTED_TARGET hyprland-protocols>=0.4.0)
|
||||
+if(hyprland_protocols_dep_FOUND)
|
||||
pkg_get_variable(HYPRLAND_PROTOCOLS hyprland-protocols pkgdatadir)
|
||||
+else()
|
||||
+set(HYPRLAND_PROTOCOLS "${CMAKE_SOURCE_DIR}/subprojects/hyprland-protocols")
|
||||
+endif()
|
||||
message(STATUS "hyprland-protocols dependency set to ${HYPRLAND_PROTOCOLS}")
|
||||
|
||||
protocolnew("${HYPRLAND_PROTOCOLS}/protocols" "hyprland-ctm-control-v1" true)
|
5
accessibility/hyprsunset/pkg-descr
Normal file
5
accessibility/hyprsunset/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
hyprsunset is a small utility to provide a blue light filter for your
|
||||
system. This method is preferred to screen shaders as it will not be
|
||||
captured via recording / screenshots.
|
||||
|
||||
Requires hyprland >= 0.45.0 for hyprland-ctm-control-v1 protocol.
|
|
@ -57,9 +57,9 @@ WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland
|
|||
WAYLAND_CONFIGURE_ENABLE= wayland
|
||||
|
||||
GUI_USES= python
|
||||
GUI_USE= gnome=pygobject3:run
|
||||
GUI_CONFIGURE_ENABLE= gui
|
||||
GUI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gobject3>0:devel/py-gobject3@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR}
|
||||
GUI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR}
|
||||
|
||||
GEO_CONFIGURE_ON= --enable-geoclue2
|
||||
GEO_CONFIGURE_OFF= --disable-geoclue2
|
||||
|
|
|
@ -193,20 +193,27 @@
|
|||
SUBDIR += py-brotlipy
|
||||
SUBDIR += py-bup
|
||||
SUBDIR += py-bz2file
|
||||
SUBDIR += py-comicapi
|
||||
SUBDIR += py-compressed-rtf
|
||||
SUBDIR += py-cramjam
|
||||
SUBDIR += py-inflate64
|
||||
SUBDIR += py-laszip
|
||||
SUBDIR += py-libarchive-c
|
||||
SUBDIR += py-lz4
|
||||
SUBDIR += py-lzma
|
||||
SUBDIR += py-lzstring
|
||||
SUBDIR += py-multivolumefile
|
||||
SUBDIR += py-patool
|
||||
SUBDIR += py-py7zr
|
||||
SUBDIR += py-pybcj
|
||||
SUBDIR += py-pyminizip
|
||||
SUBDIR += py-pyppmd
|
||||
SUBDIR += py-python-lhafile
|
||||
SUBDIR += py-python-lzo
|
||||
SUBDIR += py-python-rpm-packaging
|
||||
SUBDIR += py-python-snappy
|
||||
SUBDIR += py-pyunpack
|
||||
SUBDIR += py-pyzstd
|
||||
SUBDIR += py-rarfile
|
||||
SUBDIR += py-rcssmin
|
||||
SUBDIR += py-rjsmin
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= peazip
|
||||
PORTVERSION= 9.9.1
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 10.1.0
|
||||
CATEGORIES= archivers
|
||||
MASTER_SITES= https://github.com/giorgiotani/PeaZip/releases/download/${PORTVERSION}/
|
||||
PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1726633881
|
||||
SHA256 (peazip-9.9.1.src.zip) = 98ee74127bfc8ff1a8920a05f9fe1a61c319d754fa67214464ea656b90ac574f
|
||||
SIZE (peazip-9.9.1.src.zip) = 5544104
|
||||
TIMESTAMP = 1732259602
|
||||
SHA256 (peazip-10.1.0.src.zip) = 96fa3fd661d8609379f3a8485be1dbee6dfa334810d6e662225de1b86f09f6af
|
||||
SIZE (peazip-10.1.0.src.zip) = 5614257
|
||||
|
|
|
@ -35,18 +35,27 @@ share/icons/hicolor/256x256/apps/peazip_zip.png
|
|||
%%UNACE%%%%DATADIR%%/res/bin/unace/unace
|
||||
%%ZPAQ%%%%DATADIR%%/res/bin/zpaq/zpaq
|
||||
%%DATADIR%%/res/pea
|
||||
%%DATADIR%%/res/share/icons/PeaZip.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_7z.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_7z.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_app.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_alt.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_alt.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_block.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_block.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_cd.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_cd.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_package.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_package.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_rar.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_rar.ico
|
||||
%%DATADIR%%/res/share/icons/PeaZip_zip.icns
|
||||
%%DATADIR%%/res/share/icons/PeaZip_zip.ico
|
||||
%%DATADIR%%/res/share/icons/peazip.png
|
||||
%%DATADIR%%/res/share/icons/peazip_7z.png
|
||||
%%DATADIR%%/res/share/icons/peazip_add.png
|
||||
%%DATADIR%%/res/share/icons/peazip_add_alt.png
|
||||
%%DATADIR%%/res/share/icons/peazip_alt.png
|
||||
%%DATADIR%%/res/share/icons/peazip_app.png
|
||||
%%DATADIR%%/res/share/icons/peazip_block.png
|
||||
%%DATADIR%%/res/share/icons/peazip_browse.png
|
||||
|
@ -58,6 +67,7 @@ share/icons/hicolor/256x256/apps/peazip_zip.png
|
|||
%%DATADIR%%/res/share/icons/peazip_rar.png
|
||||
%%DATADIR%%/res/share/icons/peazip_seven.icl
|
||||
%%DATADIR%%/res/share/icons/peazip_zip.png
|
||||
%%DATADIR%%/res/share/icons/peazipmac.icns
|
||||
%%DATADIR%%/res/share/icons/peazipmac.png
|
||||
%%DATADIR%%/res/share/icons/readme-icons.txt
|
||||
%%DATADIR%%/res/share/lang/ar.txt
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= zstd
|
||||
PORTVERSION= 0.13.3
|
||||
PORTVERSION= 0.14.0
|
||||
CATEGORIES= archivers
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722711119
|
||||
SHA256 (PECL/zstd-0.13.3.tgz) = e4dfa6e5501736f2f5dbfedd33b214c0c47fa98708f0a7d8c65baa95fd6d7e06
|
||||
SIZE (PECL/zstd-0.13.3.tgz) = 452523
|
||||
TIMESTAMP = 1731679206
|
||||
SHA256 (PECL/zstd-0.14.0.tgz) = 207a87de60e3a9eb7993d2fc1a2ce88f854330ef29d210f552a60eb4cf3db79c
|
||||
SIZE (PECL/zstd-0.14.0.tgz) = 479015
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= snappy
|
||||
PORTVERSION= 0.2.1
|
||||
PORTVERSION= 0.2.2
|
||||
CATEGORIES= archivers
|
||||
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1618654607
|
||||
SHA256 (kjdev-php-ext-snappy-0.2.1_GH0.tar.gz) = 61116156243b41fe3bb332838960c7bacb58821bf98f70b50667d58c3e8462df
|
||||
SIZE (kjdev-php-ext-snappy-0.2.1_GH0.tar.gz) = 14323
|
||||
TIMESTAMP = 1731679210
|
||||
SHA256 (kjdev-php-ext-snappy-0.2.2_GH0.tar.gz) = f8c13adbe0796a5be2fe16c3417ed10daeac247b51c8583bc4b85dda9714c47b
|
||||
SIZE (kjdev-php-ext-snappy-0.2.2_GH0.tar.gz) = 14387
|
||||
|
|
49
archivers/py-comicapi/Makefile
Normal file
49
archivers/py-comicapi/Makefile
Normal file
|
@ -0,0 +1,49 @@
|
|||
PORTNAME= comicapi
|
||||
PORTVERSION= 3.2.0
|
||||
CATEGORIES= archivers python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= Comic archive (cbr/cbz) and metadata utilities
|
||||
WWW= https://github.com/comictagger/comicapi
|
||||
|
||||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=0:devel/py-importlib-metadata@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}natsort>=0:devel/py-natsort@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pycountry>=0:textproc/py-pycountry@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}rapidfuzz>=0:devel/py-rapidfuzz@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}text2digits>=0:textproc/py-text2digits@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wordninja>=0:textproc/py-wordninja@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= comictagger
|
||||
GH_TAGNAME= 2bf8332
|
||||
USE_PYTHON= autoplist distutils pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
OPTIONS_DEFINE= 7Z CBR ICU
|
||||
OPTIONS_DEFAULT= ICU
|
||||
|
||||
7Z_DESC= 7-Zip
|
||||
CBR_DESC= CBR
|
||||
ICU_DESC= ICU
|
||||
|
||||
7Z_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py7zr>=0:archivers/py-py7zr@${PY_FLAVOR}
|
||||
CBR_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rarfile>=0:archivers/py-rarfile@${PY_FLAVOR} \
|
||||
unrar>=0:archivers/unrar
|
||||
ICU_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyicu>=0:devel/py-pyicu@${PY_FLAVOR}
|
||||
|
||||
# The two sorting tests may fail based on system locale
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-comicapi/distinfo
Normal file
3
archivers/py-comicapi/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (comictagger-comicapi-3.2.0-2bf8332_GH0.tar.gz) = a96a0cdca8f5efc3337fe194f59b86e369e23d12e0fcec81e3c34b9e652c1f18
|
||||
SIZE (comictagger-comicapi-3.2.0-2bf8332_GH0.tar.gz) = 17401837
|
2
archivers/py-comicapi/pkg-descr
Normal file
2
archivers/py-comicapi/pkg-descr
Normal file
|
@ -0,0 +1,2 @@
|
|||
Comic archive (cbr/cbz) and metadata utilities.
|
||||
Extracted from the comictagger project.
|
30
archivers/py-inflate64/Makefile
Normal file
30
archivers/py-inflate64/Makefile
Normal file
|
@ -0,0 +1,30 @@
|
|||
PORTNAME= inflate64
|
||||
PORTVERSION= 1.0.0
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= Deflate64 compression/decompression library
|
||||
WWW= https://codeberg.org/miurahr/inflate64
|
||||
|
||||
LICENSE= LGPL21+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist pep517 pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/inflate64/_inflate64*.so
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-inflate64/distinfo
Normal file
3
archivers/py-inflate64/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (inflate64-1.0.0.tar.gz) = 3278827b803cf006a1df251f3e13374c7d26db779e5a33329cc11789b804bc2d
|
||||
SIZE (inflate64-1.0.0.tar.gz) = 895853
|
3
archivers/py-inflate64/pkg-descr
Normal file
3
archivers/py-inflate64/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
The inflate64 is a python package to provide Deflater and
|
||||
Inflater class to compress and decompress with Enhanced
|
||||
Deflate compression algorithm.
|
29
archivers/py-multivolumefile/Makefile
Normal file
29
archivers/py-multivolumefile/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
PORTNAME= multivolumefile
|
||||
PORTVERSION= 0.2.3
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= Multi volume file wrapper library
|
||||
WWW= https://codeberg.org/miurahr/multivolume
|
||||
|
||||
LICENSE= LGPL21
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hypothesis>=0:devel/py-hypothesis@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist pep517 pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-multivolumefile/distinfo
Normal file
3
archivers/py-multivolumefile/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (multivolumefile-0.2.3.tar.gz) = a0648d0aafbc96e59198d5c17e9acad7eb531abea51035d08ce8060dcad709d6
|
||||
SIZE (multivolumefile-0.2.3.tar.gz) = 77984
|
3
archivers/py-multivolumefile/pkg-descr
Normal file
3
archivers/py-multivolumefile/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
MultiVolumefile is a python library to provide a file-object
|
||||
wrapping multiple files as virtually like as a single file.
|
||||
It inherits io.RawIOBase class and support some of its standard methods.
|
44
archivers/py-py7zr/Makefile
Normal file
44
archivers/py-py7zr/Makefile
Normal file
|
@ -0,0 +1,44 @@
|
|||
PORTNAME= py7zr
|
||||
PORTVERSION= 0.22.0
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= Pure python 7-zip library
|
||||
WWW= https://py7zr.readthedocs.io/
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}brotli>=0:archivers/py-brotli@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}brotlicffi>=0:archivers/py-brotlicffi@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}inflate64>=0:archivers/py-inflate64@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}multivolumefile>=0:archivers/py-multivolumefile@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pybcj>=0:archivers/py-pybcj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pycryptodomex>=0:security/py-pycryptodomex@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyppmd>=0:archivers/py-pyppmd@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyzstd>=0:archivers/py-pyzstd@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}texttable>=0:textproc/py-texttable@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py-cpuinfo>=0:sysutils/py-py-cpuinfo@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-benchmark>=0:devel/py-pytest-benchmark@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-remotedata>=0:devel/py-pytest-remotedata@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-timeout>=0:devel/py-pytest-timeout@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist pep517 pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-py7zr/distinfo
Normal file
3
archivers/py-py7zr/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (py7zr-0.22.0.tar.gz) = c6c7aea5913535184003b73938490f9a4d8418598e533f9ca991d3b8e45a139e
|
||||
SIZE (py7zr-0.22.0.tar.gz) = 4992926
|
3
archivers/py-py7zr/pkg-descr
Normal file
3
archivers/py-py7zr/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
py7zr is a library and utility to support 7zip archive
|
||||
compression, decompression, encryption and decryption
|
||||
written by Python programming language.
|
29
archivers/py-pybcj/Makefile
Normal file
29
archivers/py-pybcj/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
PORTNAME= pybcj
|
||||
PORTVERSION= 1.0.2
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= BCJ filter library
|
||||
WWW= https://codeberg.org/miurahr/pybcj
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hypothesis>=0:devel/py-hypothesis@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist pep517 pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-pybcj/distinfo
Normal file
3
archivers/py-pybcj/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (pybcj-1.0.2.tar.gz) = c7f5bef7f47723c53420e377bc64d2553843bee8bcac5f0ad076ab1524780018
|
||||
SIZE (pybcj-1.0.2.tar.gz) = 2111002
|
5
archivers/py-pybcj/pkg-descr
Normal file
5
archivers/py-pybcj/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
In data compression, BCJ, short for Branch-Call-Jump, refers
|
||||
to a technique that improves the compression of machine code of
|
||||
executable binaries by replacing relative branch addresses with
|
||||
absolute ones. This allows a LZMA compressor to identify duplicate
|
||||
targets and archive higher compression rate.
|
31
archivers/py-pyppmd/Makefile
Normal file
31
archivers/py-pyppmd/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
PORTNAME= pyppmd
|
||||
PORTVERSION= 1.1.0
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= PPMd compression/decompression library
|
||||
WWW= https://pyppmd.readthedocs.io/en/latest/
|
||||
|
||||
LICENSE= LGPL21
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hypothesis>=0:devel/py-hypothesis@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-benchmark>=0:devel/py-pytest-benchmark@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-timeout>=0:devel/py-pytest-timeout@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist pep517 pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-pyppmd/distinfo
Normal file
3
archivers/py-pyppmd/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (pyppmd-1.1.0.tar.gz) = 1d38ce2e4b7eb84b53bc8a52380b94f66ba6c39328b8800b30c2b5bf31693973
|
||||
SIZE (pyppmd-1.1.0.tar.gz) = 1348949
|
5
archivers/py-pyppmd/pkg-descr
Normal file
5
archivers/py-pyppmd/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
pyppmd module provides classes and functions for compressing
|
||||
and decompressing text data, using PPM (Prediction by partial
|
||||
matching) compression algorithm which has several variations
|
||||
of implementations. PPMd is the implementation by Dmitry
|
||||
Shkarin. PyPPMD use Igor Pavlov's range coder introduced in 7-zip.
|
29
archivers/py-pyzstd/Makefile
Normal file
29
archivers/py-pyzstd/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
PORTNAME= pyzstd
|
||||
PORTVERSION= 0.16.2
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= matthew@wener.org
|
||||
COMMENT= Python bindings to Zstandard (zstd) compression library
|
||||
WWW= https://github.com/Rogdham/pyzstd
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist pep517 pytest
|
||||
|
||||
TEST_ENV= ${MAKE_ENV} \
|
||||
PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyzstd/c/_zstd.cpython-311.so
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
|
||||
|
||||
.include <bsd.port.mk>
|
3
archivers/py-pyzstd/distinfo
Normal file
3
archivers/py-pyzstd/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1724809518
|
||||
SHA256 (pyzstd-0.16.2.tar.gz) = 179c1a2ea1565abf09c5f2fd72f9ce7c54b2764cf7369e05c0bfd8f1f67f63d2
|
||||
SIZE (pyzstd-0.16.2.tar.gz) = 789505
|
10
archivers/py-pyzstd/files/patch-pyproject.toml
Normal file
10
archivers/py-pyzstd/files/patch-pyproject.toml
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- pyproject.toml.orig 2024-11-21 04:16:04 UTC
|
||||
+++ pyproject.toml
|
||||
@@ -1,6 +1,6 @@
|
||||
[build-system]
|
||||
# setuptools 64+ support --build-option
|
||||
# setuptools 74+ drops distutils.msvc9compiler required for Python 3.9 under Windows
|
||||
-requires = ["setuptools>=64,<74"]
|
||||
+requires = ["setuptools"]
|
||||
backend-path = ["build_script"]
|
||||
build-backend = "pyzstd_pep517"
|
3
archivers/py-pyzstd/pkg-descr
Normal file
3
archivers/py-pyzstd/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
Pyzstd module provides classes and functions for compressing
|
||||
and decompressing data, using Facebook's Zstandard (or zstd
|
||||
as short name) algorithm.
|
|
@ -146,12 +146,10 @@ RECONFIGURE_MAKE_ARGS_OFF= reconfigure=no
|
|||
CPPBIND_MAKE_ARGS_OFF= libgpsmm=no
|
||||
PYSERIAL_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyserial>=0:comms/py-pyserial@${PY_FLAVOR}
|
||||
PYSERIAL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyserial>=0:comms/py-pyserial@${PY_FLAVOR}
|
||||
X11_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gobject3>=0:devel/py-gobject3@${PY_FLAVOR}
|
||||
X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gobject3>=0:devel/py-gobject3@${PY_FLAVOR}
|
||||
X11_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR}
|
||||
X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR}
|
||||
X11_USES= gnome
|
||||
X11_USE= GNOME=gtk30
|
||||
X11_USE= gnome=gtk30 pygobject3
|
||||
X11_MAKE_ARGS_OFF= xgps=no
|
||||
|
||||
# Build control
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= merkaartor
|
||||
PORTVERSION= 0.19.0
|
||||
PORTREVISION= 25
|
||||
PORTREVISION= 26
|
||||
CATEGORIES= astro
|
||||
|
||||
MAINTAINER= dev2@heesakkers.info
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= osmium-tool
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.16.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= astro geography
|
||||
|
||||
MAINTAINER= ianthetechie@gmail.com
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= pykep
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.6.2
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= astro python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= pykep
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.6.2
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= astro
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= qmapshack
|
||||
PORTVERSION= 1.17.1
|
||||
DISTVERSIONPREFIX= V_
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= astro
|
||||
|
||||
MAINTAINER= bofh@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= din
|
||||
PORTVERSION= 58.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://archive.org/download/dinisnoise_source_code/
|
||||
|
||||
|
|
|
@ -1,20 +1,22 @@
|
|||
PORTNAME= emms
|
||||
DISTVERSION= 20.1
|
||||
DISTVERSION= 20.2
|
||||
CATEGORIES= audio elisp
|
||||
MASTER_SITES= https://elpa.gnu.org/packages/
|
||||
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
||||
EXTRACT_SUFX= .tar
|
||||
|
||||
MAINTAINER= alster@vinterdalen.se
|
||||
COMMENT= Emacs Multi-Media System
|
||||
WWW= https://www.gnu.org/software/emms/index.html
|
||||
COMMENT= GNU/Emacs Multimedia System
|
||||
WWW= https://www.gnu.org/software/emms/ \
|
||||
https://elpa.gnu.org/packages/emms.html \
|
||||
https://git.savannah.gnu.org/cgit/emms.git/
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
# do not depend on base texinfo on 10
|
||||
BUILD_DEPENDS= texi2dvi:print/texinfo
|
||||
|
||||
USES= emacs gmake
|
||||
USES= emacs gmake tar
|
||||
|
||||
CONFLICTS_INSTALL= emms emms-emacs_* # share/emacs/site-lisp/emms/emms-auto.el
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722978562
|
||||
SHA256 (emms-20.1.tar) = 7df2df0278aa30f9d04e0f932f9f3bd71e356adccccea4d12c641e1c5c181b40
|
||||
SIZE (emms-20.1.tar) = 1280000
|
||||
TIMESTAMP = 1732250533
|
||||
SHA256 (emms-20.2.tar) = 468a7f4ce7e3246e749dbc4476d917f00acdc4b48761553095daf9aa4c49ac2a
|
||||
SIZE (emms-20.2.tar) = 1280000
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
Emms is the Emacs Multimedia System.
|
||||
GNU/Emms is the GNU/Emacs Multimedia System.
|
||||
|
||||
Emms displays and plays multimedia from within GNU/Emacs
|
||||
using a variety of external players and from different sources.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= guitarix
|
||||
DISTVERSIONPREFIX= V
|
||||
DISTVERSION= 0.44.1
|
||||
PORTREVISION= 11
|
||||
PORTREVISION= 12
|
||||
CATEGORIES= audio
|
||||
|
||||
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= musicpd
|
||||
PORTVERSION= 0.23.15
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/
|
||||
DISTNAME= mpd-${PORTVERSION}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= ncmpcpp
|
||||
DISTVERSION= 0.10.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= yamagi@yamagi.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= patchage
|
||||
DISTVERSION= 1.0.10
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.drobilla.net/
|
||||
|
||||
|
|
|
@ -26,8 +26,9 @@ GSTREAMER_DESC= Use gstreamer as backend
|
|||
PYMAD_DESC= Use pymad as backend
|
||||
|
||||
FFMPEG_RUN_DEPENDS= ffmpeg:multimedia/ffmpeg
|
||||
GSTREAMER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gobject3>=0:devel/py-gobject3@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gstreamer1>=1.0:multimedia/py-gstreamer1@${PY_FLAVOR}
|
||||
GSTREAMER_USES= gnome
|
||||
GSTREAMER_USE= gnome=pygobject3:run
|
||||
GSTREAMER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gstreamer1>=1.0:multimedia/py-gstreamer1@${PY_FLAVOR}
|
||||
PYMAD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymad>=0:audio/py-pymad@${PY_FLAVOR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= wavetral
|
||||
DISTVERSION= g20210517
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -11,6 +11,8 @@ WWW= https://www.nntb.no/~dreibh/hipercontracer/
|
|||
LICENSE= GPLv3+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
BROKEN= fails to build with boost-1.86+
|
||||
|
||||
LIB_DEPENDS= libboost_atomic.so:devel/boost-libs
|
||||
|
||||
USES= cmake compiler:c++14-lang python shebangfix tar:xz
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= iperf
|
||||
PORTVERSION= 2.2.0
|
||||
PORTVERSION= 2.2.1
|
||||
CATEGORIES= benchmarks
|
||||
MASTER_SITES= SF/iperf2 \
|
||||
LOCAL/sunpoet
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1712886404
|
||||
SHA256 (iperf-2.2.0.tar.gz) = 16810a9575e4c6dd65e4a18ab5df3cdac6730b3c832cf080a8990f132f68364a
|
||||
SIZE (iperf-2.2.0.tar.gz) = 477261
|
||||
TIMESTAMP = 1731679148
|
||||
SHA256 (iperf-2.2.1.tar.gz) = 754ab0a7e28033dbea81308ef424bc7df4d6e2fe31b60cc536b61b51fefbd8fb
|
||||
SIZE (iperf-2.2.1.tar.gz) = 509514
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= benchmark
|
||||
PORTVERSION= 0.3.0
|
||||
PORTVERSION= 0.4.0
|
||||
CATEGORIES= benchmarks rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
@ -9,7 +9,8 @@ WWW= https://github.com/ruby/benchmark
|
|||
|
||||
LICENSE= BSD2CLAUSE RUBY
|
||||
LICENSE_COMB= dual
|
||||
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt
|
||||
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
|
||||
LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
|
||||
|
||||
USES= gem
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1699774684
|
||||
SHA256 (rubygem/benchmark-0.3.0.gem) = 4ca7995224b9982efccee9b44a4464a73201c5779d78cb5a4d99ec2f39acf071
|
||||
SIZE (rubygem/benchmark-0.3.0.gem) = 12800
|
||||
TIMESTAMP = 1731679356
|
||||
SHA256 (rubygem/benchmark-0.4.0.gem) = 0f12f8c495545e3710c3e4f0480f63f06b4c842cc94cec7f33a956f5180e874a
|
||||
SIZE (rubygem/benchmark-0.4.0.gem) = 14336
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= augustus
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.5.0
|
||||
PORTREVISION= 10
|
||||
PORTREVISION= 11
|
||||
CATEGORIES= biology science
|
||||
PKGNAMESUFFIX= -gene-prediction
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= bolt-lmm
|
||||
DISTVERSION= 2.3.6
|
||||
PORTREVISION= 11
|
||||
PORTREVISION= 12
|
||||
CATEGORIES= biology
|
||||
MASTER_SITES= https://data.broadinstitute.org/alkesgroup/BOLT-LMM/downloads/
|
||||
DISTNAME= BOLT-LMM_v${PORTVERSION}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= canu
|
||||
DISTVERSION= 2.2
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= biology java perl5
|
||||
# Github auto-generated tarballs lack submodules
|
||||
MASTER_SITES= https://github.com/marbl/canu/releases/download/v${DISTVERSION}/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= cufflinks
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.2.1-89
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
DISTVERSIONSUFFIX= -gdc3b0cb
|
||||
CATEGORIES= biology
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= dsr-pdb
|
||||
DISTVERSION= 1.0.3
|
||||
PORTREVISION= 13
|
||||
PORTREVISION= 14
|
||||
CATEGORIES= biology
|
||||
MASTER_SITES= https://graphics.stanford.edu/~drussel/
|
||||
DISTNAME= ${PORTNAME}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= haplohseq
|
||||
DISTVERSION= 0.1.2
|
||||
PORTREVISION= 12
|
||||
PORTREVISION= 13
|
||||
CATEGORIES= biology
|
||||
|
||||
MAINTAINER= jwb@FreeBSD.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= iqtree
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION = 2.3.6
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= biology
|
||||
|
||||
MAINTAINER= jrm@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= ncbi-blast+
|
||||
DISTVERSION= 2.14.1
|
||||
PORTREVISION= 7
|
||||
PORTREVISION= 8
|
||||
CATEGORIES= biology perl5 python
|
||||
MASTER_SITES= https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ \
|
||||
https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${PORTVERSION}/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= pbbam
|
||||
DISTVERSION= 0.18.0 # Test with biology/unanimity before upgrading!
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= biology
|
||||
|
||||
# As of March 2018, unanimity is no longer open source.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= multiqc
|
||||
DISTVERSION= 1.25.1
|
||||
DISTVERSION= 1.25.2
|
||||
CATEGORIES= biology python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1731443994
|
||||
SHA256 (multiqc-1.25.1.tar.gz) = eaf6bb02659cbf9aa54399ee72ded143178be1a95ae84641fbe7a4555876551c
|
||||
SIZE (multiqc-1.25.1.tar.gz) = 4322149
|
||||
TIMESTAMP = 1732194535
|
||||
SHA256 (multiqc-1.25.2.tar.gz) = 06ee04a9747e9071bfa4c4ed96df9ad5bdfdb977755b6567053d4ede7e0f387a
|
||||
SIZE (multiqc-1.25.2.tar.gz) = 4326758
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= salmon
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.10.2
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= biology
|
||||
|
||||
MAINTAINER= jwb@FreeBSD.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= PrusaSlicer
|
||||
DISTVERSIONPREFIX=version_
|
||||
DISTVERSION= 2.8.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= cad
|
||||
DIST_SUBDIR= PrusaSlicer
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= csxcad
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.6.3
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= FreeCAD
|
||||
DISTVERSION= 1.0rc4
|
||||
DISTVERSION= 1.0.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= cmt@FreeBSD.org
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1731617306
|
||||
SHA256 (FreeCAD-FreeCAD-1.0rc4_GH0.tar.gz) = a83ccdb6d930f16b812d24e466e550496ad8a56465bf8bd5fed1cd9cb38c3acf
|
||||
SIZE (FreeCAD-FreeCAD-1.0rc4_GH0.tar.gz) = 91602965
|
||||
TIMESTAMP = 1731962480
|
||||
SHA256 (FreeCAD-FreeCAD-1.0.0_GH0.tar.gz) = 51115afd8e3b89f4bac343b986b0800d8e1c68fc1e322c3cd179cfe1033ef937
|
||||
SIZE (FreeCAD-FreeCAD-1.0.0_GH0.tar.gz) = 91599325
|
||||
SHA256 (Ondsel-Development-OndselSolver-91f70382beeb58b32432b5a82da3802e4c19199c_GH0.tar.gz) = 061f651f503f1ec5a9814e174cdb8a9ba84d511a3b8be3d94852e84976c6b158
|
||||
SIZE (Ondsel-Development-OndselSolver-91f70382beeb58b32432b5a82da3802e4c19199c_GH0.tar.gz) = 4667938
|
||||
|
|
|
@ -19,13 +19,11 @@ WWW= https://github.com/rubund/graywolf
|
|||
|
||||
LICENSE= GPLv2
|
||||
|
||||
BROKEN_aarch64= Fails to link: missing sbrk
|
||||
|
||||
LIB_DEPENDS= libgsl.so:math/gsl
|
||||
TEST_DEPENDS= bash:shells/bash \
|
||||
rsync:net/rsync
|
||||
|
||||
USES= cmake compiler:c11 pkgconfig shebangfix xorg
|
||||
USES= cmake compiler:c11 pkgconfig sbrk shebangfix xorg
|
||||
USE_XORG= ice sm x11 xext
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
|
|
|
@ -14,6 +14,8 @@ WWW= https://ifcopenshell.org/
|
|||
LICENSE= LGPL3+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
|
||||
|
||||
BROKEN= fails to build with boost-1.86+
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/include/CGAL/Cartesian.h:math/cgal \
|
||||
${LOCALBASE}/include/nlohmann/json.hpp:devel/nlohmann-json \
|
||||
${LOCALBASE}/include/svgpp/svgpp.hpp:graphics/svgpp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= kicad
|
||||
DISTVERSION= r${GIT_SRC_DATE}
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
#PORTREVISION= 1
|
||||
CATEGORIES= cad
|
||||
PKGNAMESUFFIX= -devel
|
||||
|
|
|
@ -11,6 +11,8 @@ WWW= https://kicad.org/
|
|||
|
||||
LICENSE= GPLv2
|
||||
|
||||
BROKEN= fails to build with boost-1.86+
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm \
|
||||
swig:devel/swig
|
||||
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= libbgcode
|
||||
DISTVERSION= 0.2.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= teodorsigaev@gmail.com
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= opencascade
|
||||
DISTVERSIONPREFIX= V
|
||||
DISTVERSION= 7_8_1
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= cad science
|
||||
DIST_SUBDIR= ${PORTNAME}-${DISTVERSION}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= openscad
|
||||
PORTVERSION= 2024.10.11
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= cad
|
||||
PKGNAMESUFFIX= -devel
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= openscad
|
||||
PORTVERSION= 2024.10.11
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= cad
|
||||
|
||||
#PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= openvsp
|
||||
DISTVERSIONPREFIX= ${GH_PROJECT}_
|
||||
DISTVERSION= 3.40.1
|
||||
DISTVERSION= 3.41.1
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= fernape@FreeBSD.org
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722013353
|
||||
SHA256 (OpenVSP-OpenVSP-OpenVSP_3.40.1_GH0.tar.gz) = 62ef7b4718ee795392ff2dda419f4dd92ddb8e12d6eb0636f6fc291aa5c25ced
|
||||
SIZE (OpenVSP-OpenVSP-OpenVSP_3.40.1_GH0.tar.gz) = 125662308
|
||||
TIMESTAMP = 1731866266
|
||||
SHA256 (OpenVSP-OpenVSP-OpenVSP_3.41.1_GH0.tar.gz) = a9e1a9e37903ae6f15baca9d1fc89fe49b4a0306d9594552ee28a55eb4517a8e
|
||||
SIZE (OpenVSP-OpenVSP-OpenVSP_3.41.1_GH0.tar.gz) = 125799268
|
||||
|
|
|
@ -8,8 +8,13 @@ bin/vsploads
|
|||
bin/vspscript
|
||||
bin/vspviewer
|
||||
help/AdvLink.html
|
||||
help/SetEdit.html
|
||||
help/github-pandoc.css
|
||||
help/images/AdvLink_example.png
|
||||
help/images/SetEditor_body.png
|
||||
help/images/SetEditor_footer.png
|
||||
help/images/SetEditor_header.png
|
||||
help/images/SetEditor_window.png
|
||||
help/index.html
|
||||
%%DATADIR%%/23015.af
|
||||
%%DATADIR%%/AirfoilExport.vspscript
|
||||
|
|
|
@ -20,9 +20,6 @@ WWW= http://bwrc.eecs.berkeley.edu/Classes/IcBook/SPICE/
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
||||
|
||||
BROKEN_aarch64= Fails to link: missing sbrk
|
||||
BROKEN_riscv64= Fails to link: missing sbrk
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}3f5
|
||||
MAKEFILE= ${FILESDIR}/Makefile
|
||||
CONFIGURE_ENV= CONFIGFILE="${CONFIGFILE}" \
|
||||
|
@ -38,6 +35,8 @@ PORTEXAMPLES= bjtnoise.cir bsim1tst.cir bsim2tst.cir diffpair.cir \
|
|||
process.pro pz2.cir pzt.cir rc.cir rca3040.cir resnoise.cir \
|
||||
rtlinv.cir schmitt.cir simplepz.cir
|
||||
|
||||
USES= sbrk
|
||||
|
||||
OPTIONS_DEFINE= DOCS EXAMPLES X11 DEV_BSIM3 DEV_BSIM4 DEV_HISIM2
|
||||
OPTIONS_DEFAULT=X11
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= sumo
|
||||
DISTVERSION= 1.2.0
|
||||
PORTREVISION= 18
|
||||
PORTREVISION= 19
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= http://www.dlr.de/ts/en/Portaldata/16/Resources/projekte/sumo/
|
||||
DISTFILES= ${PORTNAME}-src-${DISTVERSIONFULL}${EXTRACT_SUFX}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= fcitx5-chinese-addons
|
||||
DISTVERSION= 5.1.7
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= chinese textproc
|
||||
MASTER_SITES= https://download.fcitx-im.org/fcitx5/${PORTNAME}/ \
|
||||
https://download.fcitx-im.org/data/:py_stroke,py_table
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= libime-jyutping
|
||||
DISTVERSION= 1.0.12
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= chinese textproc
|
||||
MASTER_SITES= https://download.fcitx-im.org/fcitx5/${PORTNAME}/ \
|
||||
https://download.fcitx-im.org/data/:dict,model
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= libime
|
||||
DISTVERSION= 1.1.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= chinese textproc
|
||||
MASTER_SITES= https://download.fcitx-im.org/fcitx5/${PORTNAME}/ \
|
||||
https://download.fcitx-im.org/data/:opengram_lm,opengram_dict,table_dict
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= librime
|
||||
PORTVERSION= 1.11.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= chinese textproc
|
||||
|
||||
MAINTAINER= khng@FreeBSD.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= gnuradio
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.8.4.0
|
||||
PORTREVISION= 19
|
||||
PORTREVISION= 20
|
||||
CATEGORIES= comms astro hamradio
|
||||
|
||||
MAINTAINER= hamradio@FreeBSD.org
|
||||
|
@ -17,7 +17,6 @@ BUILD_DEPENDS= volk>0:devel/volk \
|
|||
${PYNUMPY} \
|
||||
${PYTHON_SITELIBDIR}/mako/__init__.py:textproc/py-mako@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyyaml>=3.11:devel/py-pyyaml@${PY_FLAVOR} \
|
||||
${PYTHON_SITELIBDIR}/gi/__init__.py:devel/py-gobject3@${PY_FLAVOR} \
|
||||
${PYTHON_SITELIBDIR}/cairo/__init__.py:graphics/py-cairo@${PY_FLAVOR} \
|
||||
${PYTHON_SITELIBDIR}/six.py:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_SITELIBDIR}/click/__init__.py:devel/py-click@${PY_FLAVOR} \
|
||||
|
@ -69,6 +68,7 @@ CMAKE_ARGS+= -DCMAKE_INSTALL_RPATH:STRING="${LOCALBASE}/lib/gcc${_GCC_VER}" \
|
|||
#CMAKE_ARGS+= --debug-output --trace
|
||||
USE_CXXSTD= c++11
|
||||
USE_GITHUB= yes
|
||||
USE_GNOME= pygobject3
|
||||
USE_PYQT= pyqt5
|
||||
USE_WX= 3.2
|
||||
USE_QT= buildtools core gui xml qmake widgets
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= gqrx
|
||||
PORTVERSION= 2.17.5
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= comms hamradio
|
||||
PKGNAMESUFFIX= -${FLAVOR}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= gr-osmosdr
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.2.3
|
||||
PORTREVISION= 11
|
||||
PORTREVISION= 12
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= comms hamradio
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= SoapyUHD
|
||||
DISTVERSIONPREFIX= soapy-uhd-
|
||||
DISTVERSION= 0.4.1
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= comms hamradio
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= uhd
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 4.6.0.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= comms hamradio
|
||||
DIST_SUBDIR= ${PORTNAME}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= wsjtx
|
||||
DISTVERSION= 2.5.4
|
||||
PORTREVISION= 11
|
||||
PORTREVISION= 12
|
||||
CATEGORIES= comms hamradio
|
||||
MASTER_SITES= SF/wsjt/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= wsjtz
|
||||
DISTVERSION= 2.5.4-1.22
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= comms hamradio
|
||||
MASTER_SITES= SF/wsjt-z/Source
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= osm2pgrouting
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.3.8
|
||||
PORTREVISION= 7
|
||||
PORTREVISION= 8
|
||||
CATEGORIES= converters databases geography
|
||||
|
||||
MAINTAINER= lbartoletti@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= zfec
|
||||
PORTVERSION= 1.5.7.4
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.6.0.0
|
||||
CATEGORIES= converters python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue