notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: devel/Makefile

Number of commits found: 11073 (showing only 100 on this page)

[First Page]  «  1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11  »  [Last Page]

Sunday, 9 Jul 2023
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-referencing: Add py-referencing 0.29.0

referencing is an implementation-agnostic implementation of JSON reference
resolution.

In other words, a way for e.g. JSON Schema tooling to resolve the $ref keyword
across all drafts without needing to implement support themselves.
commit hash: d40e9759a6fdd93d2aaaac603d6e6188de72c6ef commit hash: d40e9759a6fdd93d2aaaac603d6e6188de72c6ef commit hash: d40e9759a6fdd93d2aaaac603d6e6188de72c6ef commit hash: d40e9759a6fdd93d2aaaac603d6e6188de72c6ef d40e975
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pydantic2: Add py-pydantic2 2.0

Pydantic provides data validation using Python type hints.

Fast and extensible, Pydantic plays nicely with your linters/IDE/brain. Define
how data should be in pure, canonical Python 3.7+; validate it with Pydantic.
commit hash: 0ee2c865f335be11730ea5e4645059cf844518a3 commit hash: 0ee2c865f335be11730ea5e4645059cf844518a3 commit hash: 0ee2c865f335be11730ea5e4645059cf844518a3 commit hash: 0ee2c865f335be11730ea5e4645059cf844518a3 0ee2c86
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-py-serializable: Add py-py-serializable 0.11.1

This Pythonic library provides a framework for serializing/deserializing Python
classes to and from JSON and XML.

It relies upon the use of Python Properties in your Python classes.
commit hash: a2740617001e81cfd4d231f1758ad7b8b860a76f commit hash: a2740617001e81cfd4d231f1758ad7b8b860a76f commit hash: a2740617001e81cfd4d231f1758ad7b8b860a76f commit hash: a2740617001e81cfd4d231f1758ad7b8b860a76f a274061
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pip-audit: Add py-pip-audit 2.5.6

pip-audit is a tool for scanning Python environments for packages with known
vulnerabilities. It uses the Python Packaging Advisory Database
(https://github.com/pypa/advisory-database) via the PyPI JSON API as a source of
vulnerability reports.
commit hash: 6bf8c06271cd19c0ee2b10f7a932c3d2e1103db6 commit hash: 6bf8c06271cd19c0ee2b10f7a932c3d2e1103db6 commit hash: 6bf8c06271cd19c0ee2b10f7a932c3d2e1103db6 commit hash: 6bf8c06271cd19c0ee2b10f7a932c3d2e1103db6 6bf8c06
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pip-requirements-parser: Add py-pip-requirements-parser 32.0.1

pip-requirements-parser is a mostly correct pip requirements parsing library ...
because it uses pip's own code!
commit hash: 32515454502ca7fd7e09c3549228a0b624ab4e21 commit hash: 32515454502ca7fd7e09c3549228a0b624ab4e21 commit hash: 32515454502ca7fd7e09c3549228a0b624ab4e21 commit hash: 32515454502ca7fd7e09c3549228a0b624ab4e21 3251545
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pdm-autoexport: Add py-pdm-autoexport 0.2.0

pdm-autoexport is a PDM plugin to sync the exported files with the project file.
commit hash: 4c01d9dc6d55e52a94421b3de4655718b793eec9 commit hash: 4c01d9dc6d55e52a94421b3de4655718b793eec9 commit hash: 4c01d9dc6d55e52a94421b3de4655718b793eec9 commit hash: 4c01d9dc6d55e52a94421b3de4655718b793eec9 4c01d9d
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-jsonschema-specifications: Add py-jsonschema-specifications 2023.6.1

JSON support files from the JSON Schema Specifications (metaschemas,
vocabularies, etc.), packaged for runtime access from Python as a
referencing-based Schema Registry.
commit hash: 223919130a0864e6ccfc1b5cdcd57b71b7578066 commit hash: 223919130a0864e6ccfc1b5cdcd57b71b7578066 commit hash: 223919130a0864e6ccfc1b5cdcd57b71b7578066 commit hash: 223919130a0864e6ccfc1b5cdcd57b71b7578066 2239191
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-aiorwlock: Add py-aiorwlock 1.3.0

aiorwlock provides read write lock for asyncio . A RWLock maintains a pair of
associated locks, one for read-only operations and one for writing. The read
lock may be held simultaneously by multiple reader tasks, so long as there are
no writers. The write lock is exclusive.

Whether or not a read-write lock will improve performance over the use of a
mutual exclusion lock depends on the frequency that the data is read compared to
being modified. For example, a collection that is initially populated with data
and thereafter infrequently modified, while being frequently searched is an
ideal candidate for the use of a read-write lock. However, if updates become
frequent then the data spends most of its time being exclusively locked and
there is little, if any increase in concurrency.
commit hash: c6a13c6a8342ee029b240ece46013d5792d78d9a commit hash: c6a13c6a8342ee029b240ece46013d5792d78d9a commit hash: c6a13c6a8342ee029b240ece46013d5792d78d9a commit hash: c6a13c6a8342ee029b240ece46013d5792d78d9a c6a13c6
10:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-annotated-types: Add py-annotated-types 0.5.0

PEP-593 added typing.Annotated as a way of adding context-specific metadata to
existing types, and specifies that Annotated[T, x] should be treated as T by any
tool or library without special logic for x.

annotated-types provides metadata objects which can be used to represent common
constraints such as upper and lower bounds on scalar values and collection
sizes, a Predicate marker for runtime checks, and descriptions of how we intend
these metadata to be interpreted. In some cases, we also note alternative
representations which do not require this package.
commit hash: faa87a12d4820f18a97af9de9feb19624bf21665 commit hash: faa87a12d4820f18a97af9de9feb19624bf21665 commit hash: faa87a12d4820f18a97af9de9feb19624bf21665 commit hash: faa87a12d4820f18a97af9de9feb19624bf21665 faa87a1
Saturday, 8 Jul 2023
15:30 Rene Ladan (rene) search for other commits by this committer
devel/godot2-tools: Remove expired port

2023-07-08 devel/godot2-tools: Requires legacy OpenSSL 1.1.1 so use devel/godot
commit hash: b6dbf6d88e08626f8485b73945d467922e5e0ed1 commit hash: b6dbf6d88e08626f8485b73945d467922e5e0ed1 commit hash: b6dbf6d88e08626f8485b73945d467922e5e0ed1 commit hash: b6dbf6d88e08626f8485b73945d467922e5e0ed1 b6dbf6d
Thursday, 6 Jul 2023
11:32 Matthias Fechner (mfechner) search for other commits by this committer
www/gitlab-ce: new ports required for 16.1
commit hash: e424584a336e76b739216982d38db175d5987995 commit hash: e424584a336e76b739216982d38db175d5987995 commit hash: e424584a336e76b739216982d38db175d5987995 commit hash: e424584a336e76b739216982d38db175d5987995 e424584
08:53 Nuno Teixeira (eduardo) search for other commits by this committer
devel/R-cran-decor: New port: Retrieve Code Decorations

Retrieves code comment decorations for C++ languages of the form
'\\ [[xyz]]', which are used for automated wrapping of C++ functions.

WWW: https://cran.r-project.org/web/packages/decor/
commit hash: d8fa5b7a8bcbbc6f1963133571b861e8bae6d084 commit hash: d8fa5b7a8bcbbc6f1963133571b861e8bae6d084 commit hash: d8fa5b7a8bcbbc6f1963133571b861e8bae6d084 commit hash: d8fa5b7a8bcbbc6f1963133571b861e8bae6d084 d8fa5b7
Wednesday, 5 Jul 2023
09:55 Guido Falsi (madpilot) search for other commits by this committer
lang/ocaml: Update to 4.08.1

This update allows (and for some requires) to also update dependencies
to newer versions. Where possible I updated to the latest version.

The ocaml port now is MAKE_JOBS safe.

Changes to dependent ports included in this commit:

- devel/ocaml-sexplib: Rename to devel/ocaml-sexplib0 adapting to
  upstream. Update to 0.16.0
- devel/coccinelle: Update to 1.1.1, moved to github
- devel/ocaml-camlp4: Update to 4.08+1
- devel/ocaml-camomile: Use dune for build, adapt port
- devel/ocaml-cppo: Fix lib files installation [1]
- devel/ocaml-dune: Update to 3.7.1 [2]
- devel/ocaml-findlib: Update to 1.9.6 [3]
- devel/ocaml-ipaddr: Update to 3.1.0
- devel/ocaml-parmap: Update to 1.2.4, use dune for build [4]
- devel/ocaml-ppx-tools: Update to 6.6, use dune for build
- graphics/ocaml-cairo: Update to 0.6.4
- net-p2p/mldonkey: Update to 3.1.7-2 [2]
- net/unison: Remove ocaml 4.07 compatibility patches
- net/unison232: Mark broken, fails to build with newer ocaml [5]
- security/ocaml-ssl: Update to 0.5.13 [2]
- x11-toolkits/ocaml-labltk: Update to 8.06.7 [2]

Dune now requires full path as argument to --libdir, so various
ports have been patched accordingly.

Bumping PORTREVISION for all dependent ports that were not updated.

PR:			272067
Approved by:		michipili@gmail.com (maintainer timeout),
			eduardo (maintainer timeout) [1],
			danfe [2],
			hrs (maintainer timeout) [3],
			dumbbell (maintainer timeout) [4],
			mandree (implicit) [5]
Differential Revision:	https://reviews.freebsd.org/D40599
commit hash: 2b40e4609399858e2bfbddcf961bd7c947f6ed2c commit hash: 2b40e4609399858e2bfbddcf961bd7c947f6ed2c commit hash: 2b40e4609399858e2bfbddcf961bd7c947f6ed2c commit hash: 2b40e4609399858e2bfbddcf961bd7c947f6ed2c 2b40e46
05:30 Yuri Victorovich (yuri) search for other commits by this committer
devel/qtutilities: New port: Common Qt related C++ classes such as dialogs,
widgets, models
commit hash: 9d73f0602b527712a141db4596572a3f49755f25 commit hash: 9d73f0602b527712a141db4596572a3f49755f25 commit hash: 9d73f0602b527712a141db4596572a3f49755f25 commit hash: 9d73f0602b527712a141db4596572a3f49755f25 9d73f06
Tuesday, 4 Jul 2023
20:23 Yuri Victorovich (yuri) search for other commits by this committer
devel/cpp-utilities: New port: Common C++ classes such as argument parser, IO,
conversion utilities
commit hash: 00a882b78f0fdd7f8dcaed36df6778631a3f6e61 commit hash: 00a882b78f0fdd7f8dcaed36df6778631a3f6e61 commit hash: 00a882b78f0fdd7f8dcaed36df6778631a3f6e61 commit hash: 00a882b78f0fdd7f8dcaed36df6778631a3f6e61 00a882b
Sunday, 2 Jul 2023
20:48 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-flatten-dict: New port: Utility for flattening and unflattening
dict-like objects in Python
commit hash: 7b56eeb7853ea875c93c10e77af3cb7e2b11799a commit hash: 7b56eeb7853ea875c93c10e77af3cb7e2b11799a commit hash: 7b56eeb7853ea875c93c10e77af3cb7e2b11799a commit hash: 7b56eeb7853ea875c93c10e77af3cb7e2b11799a 7b56eeb
16:39 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-custodian: New port: Simple JIT job management framework in Python
commit hash: bb0fabfc7b47dafa38e4a7b4a9df74c380c401b3 commit hash: bb0fabfc7b47dafa38e4a7b4a9df74c380c401b3 commit hash: bb0fabfc7b47dafa38e4a7b4a9df74c380c401b3 commit hash: bb0fabfc7b47dafa38e4a7b4a9df74c380c401b3 bb0fabf
10:19 Gleb Popov (arrowd) search for other commits by this committer
linux-c7: Merge dbus-glib into dbus-libs to ease maintenance.

Reviewed by: tijl

Differential Revision: https://reviews.freebsd.org/D40827
commit hash: a0c9796c46e20838fd4b366a8b5ae5d696853e09 commit hash: a0c9796c46e20838fd4b366a8b5ae5d696853e09 commit hash: a0c9796c46e20838fd4b366a8b5ae5d696853e09 commit hash: a0c9796c46e20838fd4b366a8b5ae5d696853e09 a0c9796
Saturday, 1 Jul 2023
09:37 Rene Ladan (rene) search for other commits by this committer
devel/google-cloud-cpp117: Remove expired port

2023-07-01 devel/google-cloud-cpp117: Newer version is in the tree
commit hash: 2d00bd1a70ba11b01c81939739b92173730da458 commit hash: 2d00bd1a70ba11b01c81939739b92173730da458 commit hash: 2d00bd1a70ba11b01c81939739b92173730da458 commit hash: 2d00bd1a70ba11b01c81939739b92173730da458 2d00bd1
Friday, 30 Jun 2023
21:24 Rene Ladan (rene) search for other commits by this committer
devel/libdlna: Remove expired port

2023-06-30 devel/libdlna: Abandonware, development discontinued
commit hash: 0252dfa72157febffcfc64f0dd9f81de226a9804 commit hash: 0252dfa72157febffcfc64f0dd9f81de226a9804 commit hash: 0252dfa72157febffcfc64f0dd9f81de226a9804 commit hash: 0252dfa72157febffcfc64f0dd9f81de226a9804 0252dfa
21:22 Rene Ladan (rene) search for other commits by this committer
cleanup: Remove expired ccache-memcached ports:

2023-06-30 devel/ccache-memcached: Unmaintained fork that targets a very old
version of ccache
2023-06-30 devel/ccache-memcached-static: Unmaintained fork that targets a very
old version of ccache
commit hash: 35b00cf315541a12c849994e8969383939a967e7 commit hash: 35b00cf315541a12c849994e8969383939a967e7 commit hash: 35b00cf315541a12c849994e8969383939a967e7 commit hash: 35b00cf315541a12c849994e8969383939a967e7 35b00cf
21:21 Rene Ladan (rene) search for other commits by this committer
devel/electron21: Remove expired port

2023-06-30 devel/electron21: EOLed upstream, switch to newer version
commit hash: a794e0369534a1684ba939b0d486ea136420f2b8 commit hash: a794e0369534a1684ba939b0d486ea136420f2b8 commit hash: a794e0369534a1684ba939b0d486ea136420f2b8 commit hash: a794e0369534a1684ba939b0d486ea136420f2b8 a794e03
21:18 Rene Ladan (rene) search for other commits by this committer
devel/electron19: Remove expired port

2023-06-30 devel/electron19: EOLed upstream, switch to newer version
commit hash: f4efb4dcbe373e749191f9a3bacdd4a6c669c9a6 commit hash: f4efb4dcbe373e749191f9a3bacdd4a6c669c9a6 commit hash: f4efb4dcbe373e749191f9a3bacdd4a6c669c9a6 commit hash: f4efb4dcbe373e749191f9a3bacdd4a6c669c9a6 f4efb4d
16:21 Yuri Victorovich (yuri) search for other commits by this committer
devel/nano-signal-slot: New port: Pure C++17 signals and slots
commit hash: 982b02abd5baf0de1c8ce6d2a8a142896c05f124 commit hash: 982b02abd5baf0de1c8ce6d2a8a142896c05f124 commit hash: 982b02abd5baf0de1c8ce6d2a8a142896c05f124 commit hash: 982b02abd5baf0de1c8ce6d2a8a142896c05f124 982b02a
06:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-paymentcryptographydata: Add
rubygem-aws-sdk-paymentcryptographydata 1.0.0

Official AWS Ruby gem for Payment Cryptography Data Plane data.
commit hash: f5dda817afd53b3d2d792e42b0cb3e49b7ae9795 commit hash: f5dda817afd53b3d2d792e42b0cb3e49b7ae9795 commit hash: f5dda817afd53b3d2d792e42b0cb3e49b7ae9795 commit hash: f5dda817afd53b3d2d792e42b0cb3e49b7ae9795 f5dda81
06:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-fiber-annotation: Add rubygem-fiber-annotation 0.2.0

Fiber::Annotation provides a simple way to annotate what a fiber is currently
doing, useful for debugging, logging and tracing.
commit hash: e49d227c08c6072982c583855bd21a5bf8b81ed3 commit hash: e49d227c08c6072982c583855bd21a5bf8b81ed3 commit hash: e49d227c08c6072982c583855bd21a5bf8b81ed3 commit hash: e49d227c08c6072982c583855bd21a5bf8b81ed3 e49d227
06:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-paymentcryptography: Add
rubygem-aws-sdk-paymentcryptography 1.0.0

Official AWS Ruby gem for Payment Cryptography Control Plane.
commit hash: f6f60846b47bb3f28eade570b77860b68db2d84f commit hash: f6f60846b47bb3f28eade570b77860b68db2d84f commit hash: f6f60846b47bb3f28eade570b77860b68db2d84f commit hash: f6f60846b47bb3f28eade570b77860b68db2d84f f6f6084
06:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-nose3: Add py-nose3 1.3.8

nose3 is a drop-in fork of nose v1 that is compatible with Python 2.7 and Python
3.3-3.10 without using lib2to3 or other compatibility layer. It does not yet
support Python 3.11.

nose extends the test loading and running features of unittest, making it easier
to write, find and run tests.

By default, nose will run tests in files or directories under the current
working directory whose names include "test" or "Test" at a word boundary (like
"test_this" or "functional_test" or "TestClass" but not "libtest"). Test output
is similar to that of unittest, but also includes captured stdout output from
failing tests, for easy print-style debugging.

These features, and many more, are customizable through the use of plugins.
Plugins included with nose provide support for doctest, code coverage and
profiling, flexible attribute-based test selection, output capture and more.
More information about writing plugins may be found on in the nose API
documentation.
commit hash: 4acceff265bad172974982252a5fbf23a36f52ab commit hash: 4acceff265bad172974982252a5fbf23a36f52ab commit hash: 4acceff265bad172974982252a5fbf23a36f52ab commit hash: 4acceff265bad172974982252a5fbf23a36f52ab 4acceff
06:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-check-sdist: Add py-check-sdist 0.1.2

Have you ever shipped broken sdists with missing files or possibly dirty sdists
with files that shouldn't have been there? Have you noticed that standards
compliant tools aren't making the same sdist that flit build is? Is hatchling
adding .DSStore files when you ship from your macOS? No matter what
build-backend you use, check-sdist can help!

Check-sdist builds an sdist and compares the contents with your Git repository
contents. It can even temporarily inject common junk files (like pycache files
or OS specific files) and help verify that those aren't getting bundled into
your sdist. If you are getting files you didn't expect or missing files you did
expect, consult your build backend's docs to see how to include or exclude
files.
commit hash: cfa9bd9252aa1c8c8278c93f58b8ea87be3116c3 commit hash: cfa9bd9252aa1c8c8278c93f58b8ea87be3116c3 commit hash: cfa9bd9252aa1c8c8278c93f58b8ea87be3116c3 commit hash: cfa9bd9252aa1c8c8278c93f58b8ea87be3116c3 cfa9bd9
05:27 Yuri Victorovich (yuri) search for other commits by this committer
devel/quickcpplib: New port: Eliminate hassle when making state-of-the-art
C++14-23 libraries
commit hash: f568157f229c785ee32f1b13c4ebfb3658390d2b commit hash: f568157f229c785ee32f1b13c4ebfb3658390d2b commit hash: f568157f229c785ee32f1b13c4ebfb3658390d2b commit hash: f568157f229c785ee32f1b13c4ebfb3658390d2b f568157
02:35 Yuri Victorovich (yuri) search for other commits by this committer
devel/mdspan: New port: Reference implementation of mdspan targeting C++23
commit hash: c503a78e9e563266eb4de2ff84e201f2c2a28066 commit hash: c503a78e9e563266eb4de2ff84e201f2c2a28066 commit hash: c503a78e9e563266eb4de2ff84e201f2c2a28066 commit hash: c503a78e9e563266eb4de2ff84e201f2c2a28066 c503a78
Wednesday, 28 Jun 2023
12:11 Stefan Eßer (se) search for other commits by this committer
devel/cpu_rec_rs: new port: determine CPU architecture of a binary
commit hash: 14127c04002b1ce43339055d638829861e9d9a48 commit hash: 14127c04002b1ce43339055d638829861e9d9a48 commit hash: 14127c04002b1ce43339055d638829861e9d9a48 commit hash: 14127c04002b1ce43339055d638829861e9d9a48 14127c0
Tuesday, 27 Jun 2023
07:12 Hiroki Tagato (tagattie) search for other commits by this committer
devel/electron25: add port: Build cross-platform desktop apps with JavaScript,
HTML, and CSS

Build cross platform desktop apps with JavaScript, HTML, and CSS.

It's easier than you think.

If you can build a website, you can build a desktop app. Electron is a
framework for creating native applications with web technologies like
JavaScript, HTML, and CSS. It takes care of the hard parts so you can
focus on the core of your application.

WWW: https://electronjs.org/
commit hash: 611c0053ff78261f7100c5843a5a9f73289679ee commit hash: 611c0053ff78261f7100c5843a5a9f73289679ee commit hash: 611c0053ff78261f7100c5843a5a9f73289679ee commit hash: 611c0053ff78261f7100c5843a5a9f73289679ee 611c005
Saturday, 24 Jun 2023
02:54 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-pytest-subprocess: New port: Pytest plugin to fake subprocess for
pytest
commit hash: 1e03bffb9cf25614cae79b2ae0d60a8a8a47b1ea commit hash: 1e03bffb9cf25614cae79b2ae0d60a8a8a47b1ea commit hash: 1e03bffb9cf25614cae79b2ae0d60a8a8a47b1ea commit hash: 1e03bffb9cf25614cae79b2ae0d60a8a8a47b1ea 1e03bff
Wednesday, 21 Jun 2023
03:47 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-miniKanren: New port: Logic/relational programming in Python
commit hash: b9245821167d9128b634aa50c854487ba073c3fb commit hash: b9245821167d9128b634aa50c854487ba073c3fb commit hash: b9245821167d9128b634aa50c854487ba073c3fb commit hash: b9245821167d9128b634aa50c854487ba073c3fb b924582
01:34 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-etuples: New port: Python S-expression emulation using tuple-like
objects
commit hash: 9237f9b5b91067d056482dfe00bf98501be4bc47 commit hash: 9237f9b5b91067d056482dfe00bf98501be4bc47 commit hash: 9237f9b5b91067d056482dfe00bf98501be4bc47 commit hash: 9237f9b5b91067d056482dfe00bf98501be4bc47 9237f9b
01:34 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-cons: New port: Implementation of Lisp/Scheme-like cons in Python
commit hash: 6b96fc465e9426ded06720791d80844430e1a5ab commit hash: 6b96fc465e9426ded06720791d80844430e1a5ab commit hash: 6b96fc465e9426ded06720791d80844430e1a5ab commit hash: 6b96fc465e9426ded06720791d80844430e1a5ab 6b96fc4
Tuesday, 20 Jun 2023
06:31 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-archspec: New port: Library to query system architecture
commit hash: 6eede898b9367403fa70f3891972680eee8d3f34 commit hash: 6eede898b9367403fa70f3891972680eee8d3f34 commit hash: 6eede898b9367403fa70f3891972680eee8d3f34 commit hash: 6eede898b9367403fa70f3891972680eee8d3f34 6eede89
Monday, 19 Jun 2023
18:49 Loïc Bartoletti (lbartoletti) search for other commits by this committer
PySide6: Python biding for Qt6

Add devel/pyside6* and devel/shiboken6

PySide6 is the official Python module from the Qt for Python project, which
provides access to the complete Qt 6.0+ framework.
commit hash: d5d32f2cdef10465226814f34e12e3e5e4a1b2ca commit hash: d5d32f2cdef10465226814f34e12e3e5e4a1b2ca commit hash: d5d32f2cdef10465226814f34e12e3e5e4a1b2ca commit hash: d5d32f2cdef10465226814f34e12e3e5e4a1b2ca d5d32f2
Sunday, 18 Jun 2023
17:10 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-aspectlib: New port: Aspect-oriented programming, monkey-patch and
decorators library
commit hash: a95d728afd1ac6ccb6826009a8df00459d856d6e commit hash: a95d728afd1ac6ccb6826009a8df00459d856d6e commit hash: a95d728afd1ac6ccb6826009a8df00459d856d6e commit hash: a95d728afd1ac6ccb6826009a8df00459d856d6e a95d728
Saturday, 17 Jun 2023
08:19 Nicola Vitale (nivit) search for other commits by this committer
devel/py-time-machine: Add new port

time-machine, is intended to combine the advantages of freezegun and
libfaketime Python modules. It works without LD_PRELOAD but still mocks
the standard library functions everywhere they may be referenced.
It does so by modifying the built-in functions at the C level, to point
them through wrappers that return different values when mocking.
Normally in Python, built-in functions are immutable, but
time-machine overcomes this by using C code to replace their function
pointers.

https://github.com/adamchainz/time-machine
commit hash: aadc486bfec59c7d720d107f6758a4684c834236 commit hash: aadc486bfec59c7d720d107f6758a4684c834236 commit hash: aadc486bfec59c7d720d107f6758a4684c834236 commit hash: aadc486bfec59c7d720d107f6758a4684c834236 aadc486
Friday, 16 Jun 2023
20:47 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-types-retry: New port: Typing stubs for retry
commit hash: eab89e762af2a37a167247aa54ad0024f94bc238 commit hash: eab89e762af2a37a167247aa54ad0024f94bc238 commit hash: eab89e762af2a37a167247aa54ad0024f94bc238 commit hash: eab89e762af2a37a167247aa54ad0024f94bc238 eab89e7
20:47 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-types-python-dateutil: New port: Typing stubs for python-dateutil
commit hash: 5276af733e349243082abec23591fd0b55da3176 commit hash: 5276af733e349243082abec23591fd0b55da3176 commit hash: 5276af733e349243082abec23591fd0b55da3176 commit hash: 5276af733e349243082abec23591fd0b55da3176 5276af7
16:21 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-diff-cover: New port: Run coverage and linting reports on diffs
commit hash: c9ec356ad9739be0f7950229c362e26157d01b18 commit hash: c9ec356ad9739be0f7950229c362e26157d01b18 commit hash: c9ec356ad9739be0f7950229c362e26157d01b18 commit hash: c9ec356ad9739be0f7950229c362e26157d01b18 c9ec356
Wednesday, 14 Jun 2023
12:30 Nicola Vitale (nivit) search for other commits by this committer
devel/py-jaraco.collections: Add new port

Python models and classes to supplement the stdlib 'collections' module.

https://github.com/jaraco/jaraco.collections
commit hash: 8f711d52639ed7c63335d501a9ac08f3d0b05f3d commit hash: 8f711d52639ed7c63335d501a9ac08f3d0b05f3d commit hash: 8f711d52639ed7c63335d501a9ac08f3d0b05f3d commit hash: 8f711d52639ed7c63335d501a9ac08f3d0b05f3d 8f711d5
10:01 Nicola Vitale (nivit) search for other commits by this committer
devel/py-pytest-services: Add new port

Collection of fixtures and utility functions to run service processes
for your tests with pytest.

https://github.com/pytest-dev/pytest-services
commit hash: ab0153d899bdf5e9f129971a864eff7e94177a28 commit hash: ab0153d899bdf5e9f129971a864eff7e94177a28 commit hash: ab0153d899bdf5e9f129971a864eff7e94177a28 commit hash: ab0153d899bdf5e9f129971a864eff7e94177a28 ab0153d
Monday, 12 Jun 2023
22:58 Muhammad Moinur Rahman (bofh) search for other commits by this committer
devel/Makefile: Fix INDEX build

Fixes: 74535ec devel/{kiwix-lib,libkiwix}: Update version 9.4.1=>12.0.0
Reported by:	junchoon@dec.sakura.ne.jp
commit hash: be274641fa6816bc9020960b41c392b86b93110e commit hash: be274641fa6816bc9020960b41c392b86b93110e commit hash: be274641fa6816bc9020960b41c392b86b93110e commit hash: be274641fa6816bc9020960b41c392b86b93110e be27464
19:45 Muhammad Moinur Rahman (bofh) search for other commits by this committer Author: Olivier Certner
devel/{kiwix-lib,libkiwix}: Update version 9.4.1=>12.0.0

- Rename port to match upstream renaming
- Pet portclippy
- Update is done without MAINTAINER approval as currently this is BROKEN
  on 14 and this version fixes the build on 14.

Changelog: https://github.com/kiwix/libkiwix/releases
PR:		271649
Approved by:	portmgr (blanket)
commit hash: 74535ecc140ff3ed89f831d13e4a26d9a0c78182 commit hash: 74535ecc140ff3ed89f831d13e4a26d9a0c78182 commit hash: 74535ecc140ff3ed89f831d13e4a26d9a0c78182 commit hash: 74535ecc140ff3ed89f831d13e4a26d9a0c78182 74535ec
Saturday, 10 Jun 2023
14:57 Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*php83*: Sunrise

Please DO NOT use this version in production, it is an early test
version.

For upgrade notes please visit:
https://github.com/php/php-src/blob/php-8.3.0alpha1/UPGRADING

Changelog: https://github.com/php/php-src/blob/php-8.3.0alpha1/NEWS
Sponsored by:	Bounce Experts
commit hash: 95967c2077762985235e47db1fe9949bed5cbe8f commit hash: 95967c2077762985235e47db1fe9949bed5cbe8f commit hash: 95967c2077762985235e47db1fe9949bed5cbe8f commit hash: 95967c2077762985235e47db1fe9949bed5cbe8f 95967c2
Friday, 9 Jun 2023
08:12 Alexey Dokuchaev (danfe) search for other commits by this committer
devel/tclap12: new port had been copied from `devel/tclap'

Development version of TCLAP (1.4) had broken the API against current
stable version 1.2, particularly, the CmdLine::getOutput() method had
been removed.
commit hash: ee3f98fccaf66f631e1f733a0f7b63f9aadbfc8e commit hash: ee3f98fccaf66f631e1f733a0f7b63f9aadbfc8e commit hash: ee3f98fccaf66f631e1f733a0f7b63f9aadbfc8e commit hash: ee3f98fccaf66f631e1f733a0f7b63f9aadbfc8e ee3f98f
Wednesday, 7 Jun 2023
12:10 Kirill Ponomarev (krion) search for other commits by this committer
devel/py-looseversion: add new port

Python extension for comparing version strings.
commit hash: fe2e9dee1f4a8abcb2bbe7b2d141124310b0b6b7 commit hash: fe2e9dee1f4a8abcb2bbe7b2d141124310b0b6b7 commit hash: fe2e9dee1f4a8abcb2bbe7b2d141124310b0b6b7 commit hash: fe2e9dee1f4a8abcb2bbe7b2d141124310b0b6b7 fe2e9de
Monday, 5 Jun 2023
21:07 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-fast_gettext1: Remove obsoleted port

Use devel/rubygem-fast_gettext instead.
commit hash: f3cc0aed4c694926b359c184cfbcbdff0cb45c70 commit hash: f3cc0aed4c694926b359c184cfbcbdff0cb45c70 commit hash: f3cc0aed4c694926b359c184cfbcbdff0cb45c70 commit hash: f3cc0aed4c694926b359c184cfbcbdff0cb45c70 f3cc0ae
21:07 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-gettext-setup0: Remove obsoleted port

Use devel/rubygem-gettext-setup instead.
commit hash: e1c54ec755eb3f30676167ec6c674204aa95ba08 commit hash: e1c54ec755eb3f30676167ec6c674204aa95ba08 commit hash: e1c54ec755eb3f30676167ec6c674204aa95ba08 commit hash: e1c54ec755eb3f30676167ec6c674204aa95ba08 e1c54ec
18:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/poetry: Remove obsoleted port

Use devel/py-poetry instead.
commit hash: cc007305988fc4817c9877a72ca262efe36b4764 commit hash: cc007305988fc4817c9877a72ca262efe36b4764 commit hash: cc007305988fc4817c9877a72ca262efe36b4764 commit hash: cc007305988fc4817c9877a72ca262efe36b4764 cc00730
18:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-dulwich020: Remove obsoleted port

Use devel/py-dulwich instead.
commit hash: 17f29a5e17eae37677778a2ad101152670886148 commit hash: 17f29a5e17eae37677778a2ad101152670886148 commit hash: 17f29a5e17eae37677778a2ad101152670886148 commit hash: 17f29a5e17eae37677778a2ad101152670886148 17f29a5
18:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-core3171: Remove obsoleted port

Use devel/rubygem-aws-sdk-core instead.
commit hash: 7dc850ccb721de18404a074dc0414542403ae3e8 commit hash: 7dc850ccb721de18404a074dc0414542403ae3e8 commit hash: 7dc850ccb721de18404a074dc0414542403ae3e8 commit hash: 7dc850ccb721de18404a074dc0414542403ae3e8 7dc850c
18:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-jaraco.env: Add py-jaraco.env 1.0.0

This library facilitates handling of environment variables.
commit hash: f349f5ccd92e32c11493010c2d863080fe55a1cc commit hash: f349f5ccd92e32c11493010c2d863080fe55a1cc commit hash: f349f5ccd92e32c11493010c2d863080fe55a1cc commit hash: f349f5ccd92e32c11493010c2d863080fe55a1cc f349f5c
18:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-s31122: Add rubygem-aws-sdk-s31122 1.122.0 (copied from
rubygem-aws-sdk-s3)

- Add PORTSCOUT
commit hash: 504dc283296ce36cbad3a865f047d349c8e2552d commit hash: 504dc283296ce36cbad3a865f047d349c8e2552d commit hash: 504dc283296ce36cbad3a865f047d349c8e2552d commit hash: 504dc283296ce36cbad3a865f047d349c8e2552d 504dc28
18:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-cacheyou: Add py-cacheyou 23.3

CacheYou is a fork of CacheControl which is a port of the caching algorithms in
httplib2 for use with requests session object.
commit hash: 98c3757ea2fee8a6686ceccf4fbcba1c7571658d commit hash: 98c3757ea2fee8a6686ceccf4fbcba1c7571658d commit hash: 98c3757ea2fee8a6686ceccf4fbcba1c7571658d commit hash: 98c3757ea2fee8a6686ceccf4fbcba1c7571658d 98c3757
16:53 Robert Clausecker (fuz) search for other commits by this committer Author: Matthew D. Fuller
devel/py-setuptools-gettext: new port

A setuptools plugin to compile .po files into .mo files.

WWW: https://github.com/breezy-team/setuptools-gettext

PR:		267680
commit hash: ecef70f9940fcb7de674c9bd8aea694432c11226 commit hash: ecef70f9940fcb7de674c9bd8aea694432c11226 commit hash: ecef70f9940fcb7de674c9bd8aea694432c11226 commit hash: ecef70f9940fcb7de674c9bd8aea694432c11226 ecef70f
15:24 Yuri Victorovich (yuri) search for other commits by this committer
devel/klib: New port: Standalone and lightweight C library
commit hash: cd66237c76553835394d95501abc1dbdef795f90 commit hash: cd66237c76553835394d95501abc1dbdef795f90 commit hash: cd66237c76553835394d95501abc1dbdef795f90 commit hash: cd66237c76553835394d95501abc1dbdef795f90 cd66237
11:31 Alexey Dokuchaev (danfe) search for other commits by this committer
devel/libevent-devel: new port had been copied from `devel/libevent'

Current stable release is nearly three years old and lacks a number
of new features and performance improvements.

A fortnight ago, upstream had tagged pre-release 2.2.1-alpha, which
this port offers to early adopters.
commit hash: ae7f77bb682a91c1f6930a88c9773e86667e5f9f commit hash: ae7f77bb682a91c1f6930a88c9773e86667e5f9f commit hash: ae7f77bb682a91c1f6930a88c9773e86667e5f9f commit hash: ae7f77bb682a91c1f6930a88c9773e86667e5f9f ae7f77b
Sunday, 4 Jun 2023
21:57 Yuri Victorovich (yuri) search for other commits by this committer
devel/gradle761: New port: Project automation tool
commit hash: 16dbb9b423fc2cc1228bbb115650bd246e679a0b commit hash: 16dbb9b423fc2cc1228bbb115650bd246e679a0b commit hash: 16dbb9b423fc2cc1228bbb115650bd246e679a0b commit hash: 16dbb9b423fc2cc1228bbb115650bd246e679a0b 16dbb9b
Friday, 2 Jun 2023
18:23 Felix Palmen (zirias) search for other commits by this committer
devel/poser: Add new port

poser is a C framework for POSIX services. It is required for the new
version of security/tlsc.

Approved by:	tcberner (mentor, implicit)
commit hash: 2a680d55e5c78cc555c5a701fe39992e475257e7 commit hash: 2a680d55e5c78cc555c5a701fe39992e475257e7 commit hash: 2a680d55e5c78cc555c5a701fe39992e475257e7 commit hash: 2a680d55e5c78cc555c5a701fe39992e475257e7 2a680d5
Wednesday, 31 May 2023
20:57 Rene Ladan (rene) search for other commits by this committer
devel/arm-none-eabi-gcc492: Remove expired port:

2023-05-31 devel/arm-none-eabi-gcc492: Long time unsupported upstream
commit hash: 2d570b70788e6648e5e4abd68b031377a15ff06f commit hash: 2d570b70788e6648e5e4abd68b031377a15ff06f commit hash: 2d570b70788e6648e5e4abd68b031377a15ff06f commit hash: 2d570b70788e6648e5e4abd68b031377a15ff06f 2d570b7
20:55 Rene Ladan (rene) search for other commits by this committer
devel/py-pyxb: Remove expired port:

2023-05-31 devel/py-pyxb: Upstream issued End-of-Life notice. Use
devel/py-pyxb-x instead
commit hash: dcfd8d35b73aabf8c626c1fa12ea2b19b6927c13 commit hash: dcfd8d35b73aabf8c626c1fa12ea2b19b6927c13 commit hash: dcfd8d35b73aabf8c626c1fa12ea2b19b6927c13 commit hash: dcfd8d35b73aabf8c626c1fa12ea2b19b6927c13 dcfd8d3
Sunday, 28 May 2023
18:56 Yuri Victorovich (yuri) search for other commits by this committer
devel/py-ewah-bool-utils: New port: EWAH Bool Array utils for yt
commit hash: eec1acb2b72dc21b240f3178fc65d561e6935195 commit hash: eec1acb2b72dc21b240f3178fc65d561e6935195 commit hash: eec1acb2b72dc21b240f3178fc65d561e6935195 commit hash: eec1acb2b72dc21b240f3178fc65d561e6935195 eec1acb
Saturday, 27 May 2023
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-s31119: Remove obsoleted port

Use devel/rubygem-aws-sdk-s3 instead.
commit hash: 4f97f52a0a1dd8a3585d02281ca88c3f70082c66 commit hash: 4f97f52a0a1dd8a3585d02281ca88c3f70082c66 commit hash: 4f97f52a0a1dd8a3585d02281ca88c3f70082c66 commit hash: 4f97f52a0a1dd8a3585d02281ca88c3f70082c66 4f97f52
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-clamp11: Remove obsoleted port

Use devel/rubygem-clamp instead.
commit hash: e59b440c9853a4876c59c5568a22051366179903 commit hash: e59b440c9853a4876c59c5568a22051366179903 commit hash: e59b440c9853a4876c59c5568a22051366179903 commit hash: e59b440c9853a4876c59c5568a22051366179903 e59b440
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-core3170: Remove obsoleted port

Use devel/rubygem-aws-sdk-core instead.
commit hash: 059b709daf6b70e7b92350574e664a5fd1c80e87 commit hash: 059b709daf6b70e7b92350574e664a5fd1c80e87 commit hash: 059b709daf6b70e7b92350574e664a5fd1c80e87 commit hash: 059b709daf6b70e7b92350574e664a5fd1c80e87 059b709
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-py3nvml: Add py-py3nvml 0.2.7

Python 3 compatible bindings to the NVIDIA Management Library. Can be used to
query the state of the GPUs on your system. This was ported from the NVIDIA
provided python bindings nvidia-ml-py, which only supported python 2.
commit hash: 2a1380e0bb519dc9447b3a9052efb416c797f692 commit hash: 2a1380e0bb519dc9447b3a9052efb416c797f692 commit hash: 2a1380e0bb519dc9447b3a9052efb416c797f692 commit hash: 2a1380e0bb519dc9447b3a9052efb416c797f692 2a1380e
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-core3172: Add rubygem-aws-sdk-core3172 3.172.0 (copied
from rubygem-aws-sdk-core)

- Add PORTSCOUT
commit hash: 7d1d4a7712867e6a1a3063e67ac8c390ca1e0403 commit hash: 7d1d4a7712867e6a1a3063e67ac8c390ca1e0403 commit hash: 7d1d4a7712867e6a1a3063e67ac8c390ca1e0403 commit hash: 7d1d4a7712867e6a1a3063e67ac8c390ca1e0403 7d1d4a7
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-mediapackagev2: Add rubygem-aws-sdk-mediapackagev2 1.0.0

Official AWS Ruby gem for AWS Elemental MediaPackage v2 (mediapackagev2).
commit hash: 1b3ba5d0e0471ec118e46818f1405e4aeec3df20 commit hash: 1b3ba5d0e0471ec118e46818f1405e4aeec3df20 commit hash: 1b3ba5d0e0471ec118e46818f1405e4aeec3df20 commit hash: 1b3ba5d0e0471ec118e46818f1405e4aeec3df20 1b3ba5d
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-opentelemetry-sdk: Add py-opentelemetry-sdk 1.18.0

This library provides Python SDK for OpenTelemetry project.
commit hash: 1cc5e9d945b37b73272d7679cf377f1f02984647 commit hash: 1cc5e9d945b37b73272d7679cf377f1f02984647 commit hash: 1cc5e9d945b37b73272d7679cf377f1f02984647 commit hash: 1cc5e9d945b37b73272d7679cf377f1f02984647 1cc5e9d
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-opentelemetry-semantic-conventions: Add
py-opentelemetry-semantic-conventions 0.39b0

This library contains generated code for the semantic conventions defined by the
OpenTelemetry specification.
commit hash: c9f50b5724256f3089fb2aff49e553c8a42652bc commit hash: c9f50b5724256f3089fb2aff49e553c8a42652bc commit hash: c9f50b5724256f3089fb2aff49e553c8a42652bc commit hash: c9f50b5724256f3089fb2aff49e553c8a42652bc c9f50b5
23:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-overrides: Add py-overrides 7.3.1

A decorator @override that verifies that a method that should override an
inherited method actually does it.

Copies the docstring of the inherited method to the overridden method.

Since signature validation and docstring inheritance are performed on class
creation and not on class instantiation, this library significantly improves the
safety and experience of creating class hierarchies in Python without
significantly impacting performance. See https://stackoverflow.com/q/1167617 for
the initial inspiration for this library.
commit hash: f272d12c8ebc92f75a1f64829b5deee144554991 commit hash: f272d12c8ebc92f75a1f64829b5deee144554991 commit hash: f272d12c8ebc92f75a1f64829b5deee144554991 commit hash: f272d12c8ebc92f75a1f64829b5deee144554991 f272d12
04:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-oj313: Add rubygem-oj313 3.13.23 (copied from rubygem-oj)

- Add PORTSCOUT
commit hash: ca59435a1990e09cbf0c9ba71524764ed16563c4 commit hash: ca59435a1990e09cbf0c9ba71524764ed16563c4 commit hash: ca59435a1990e09cbf0c9ba71524764ed16563c4 commit hash: ca59435a1990e09cbf0c9ba71524764ed16563c4 ca59435
04:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-aws-sdk-core3171: Add rubygem-aws-sdk-core3171 3.171.1 (copied
from rubygem-aws-sdk-core)

- Add PORTSCOUT
commit hash: d529cdfb55c50999dcfc8248fa4cfcf0f8fe4d62 commit hash: d529cdfb55c50999dcfc8248fa4cfcf0f8fe4d62 commit hash: d529cdfb55c50999dcfc8248fa4cfcf0f8fe4d62 commit hash: d529cdfb55c50999dcfc8248fa4cfcf0f8fe4d62 d529cdf
04:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-google-protobuf322: Add rubygem-google-protobuf322 3.22.3 (copied
from rubygem-google-protobuf)

- Add PORTSCOUT
commit hash: dea963cecfe0de05429a7baf39a363af1feb9eac commit hash: dea963cecfe0de05429a7baf39a363af1feb9eac commit hash: dea963cecfe0de05429a7baf39a363af1feb9eac commit hash: dea963cecfe0de05429a7baf39a363af1feb9eac dea963ce
04:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-hatch-autorun: Add py-hatch-autorun 1.1.0

hatch-autorun provides a build hook plugin for Hatch that injects code into an
installation that will automatically run before the first import.
commit hash: c9fc03a86b66b91af8eb6985b6bd1a60f2fe2e34 commit hash: c9fc03a86b66b91af8eb6985b6bd1a60f2fe2e34 commit hash: c9fc03a86b66b91af8eb6985b6bd1a60f2fe2e34 commit hash: c9fc03a86b66b91af8eb6985b6bd1a60f2fe2e34 c9fc03a8
04:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pytest-jupyter: Add py-pytest-jupyter 0.7.0

pytest-jupyter provides a set of pytest plugins for Jupyter libraries and
extensions.
commit hash: 6f35a7bf121af695812797c5715c25ab174646d9 commit hash: 6f35a7bf121af695812797c5715c25ab174646d9 commit hash: 6f35a7bf121af695812797c5715c25ab174646d9 commit hash: 6f35a7bf121af695812797c5715c25ab174646d9 6f35a7b
04:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-crontab: Add py-crontab 1.0.1

This package intends to offer a method of parsing crontab schedule entries and
determining when an item should next be run. More specifically, it calculates a
delay in seconds from when the .next() method is called to when the item should
next be executed.
commit hash: 692a158177bd5202ba3e56a8b3e56fcb63d3fdab commit hash: 692a158177bd5202ba3e56a8b3e56fcb63d3fdab commit hash: 692a158177bd5202ba3e56a8b3e56fcb63d3fdab commit hash: 692a158177bd5202ba3e56a8b3e56fcb63d3fdab 692a158
04:05 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
*/Makefile: Sort SUBDIRs
commit hash: 9641077692cf2d442a889fe74c573e59435bc8d0 commit hash: 9641077692cf2d442a889fe74c573e59435bc8d0 commit hash: 9641077692cf2d442a889fe74c573e59435bc8d0 commit hash: 9641077692cf2d442a889fe74c573e59435bc8d0 9641077
Friday, 26 May 2023
00:52 Charlie Li (vishwin) search for other commits by this committer
devel/bazel5: split from devel/bazel

Major versions harbour some incompatibilities. Main port to be
updated to 6.

Event: Kitchener-Waterloo Hackathon 202305
commit hash: abc5ed39ba226d707e7496c8a326309bf02a82ef commit hash: abc5ed39ba226d707e7496c8a326309bf02a82ef commit hash: abc5ed39ba226d707e7496c8a326309bf02a82ef commit hash: abc5ed39ba226d707e7496c8a326309bf02a82ef abc5ed3
Saturday, 20 May 2023
22:12 Danilo G. Baio (dbaio) search for other commits by this committer
devel: Fix index after 7436596

The recent port added was py-azure-mgmt-appcontainers and not
py-azure-appcontainers.

Reported by:	Bob Vesterman
commit hash: 9b42e25d7e23221c9e5cc10ce4218928f2c87544 commit hash: 9b42e25d7e23221c9e5cc10ce4218928f2c87544 commit hash: 9b42e25d7e23221c9e5cc10ce4218928f2c87544 commit hash: 9b42e25d7e23221c9e5cc10ce4218928f2c87544 9b42e25
18:30 Danilo G. Baio (dbaio) search for other commits by this committer
Add port: devel/py-azure-mgmt-appcontainers

This is the Microsoft Azure Appcontainers Management Client Library.

Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).

https://pypi.org/project/azure-mgmt-appcontainers/
commit hash: 7436596e328c39f3f8dbd9d00027160f37223d96 commit hash: 7436596e328c39f3f8dbd9d00027160f37223d96 commit hash: 7436596e328c39f3f8dbd9d00027160f37223d96 commit hash: 7436596e328c39f3f8dbd9d00027160f37223d96 7436596
10:15 Rene Ladan (rene) search for other commits by this committer
devel/py-dj40-graphene-django: Remove expired port:

2023-05-20 devel/py-dj40-graphene-django: Extended support of Django 4.0 ends
April 2023, upgrade to the Django 4.1+ version of this port. See
https://www.djangoproject.com/download/
commit hash: f210518b1299d3ef774ea5e0c7113909c0def497 commit hash: f210518b1299d3ef774ea5e0c7113909c0def497 commit hash: f210518b1299d3ef774ea5e0c7113909c0def497 commit hash: f210518b1299d3ef774ea5e0c7113909c0def497 f210518
09:58 Rene Ladan (rene) search for other commits by this committer
devel/py-dj40-django-rq: Remove expired port:

2023-05-20 devel/py-dj40-django-rq: Extended support of Django 4.0 ends April
2023, upgrade to the Django 4.1+ version of this port. See
https://www.djangoproject.com/download/
commit hash: 9ef398f1eaad73b2d8dec6db3e8671ce68c23bdc commit hash: 9ef398f1eaad73b2d8dec6db3e8671ce68c23bdc commit hash: 9ef398f1eaad73b2d8dec6db3e8671ce68c23bdc commit hash: 9ef398f1eaad73b2d8dec6db3e8671ce68c23bdc 9ef398f
Wednesday, 17 May 2023
18:21 Jan Beich (jbeich) search for other commits by this committer
devel/py-strenum: add new port

StrEnum is a Python enum.Enum that inherits from str to complement
enum.IntEnum in the standard library.

https://pypi.org/project/StrEnum/
commit hash: f6c8fb6feb635f9368fa1b6fc70119d2fbe5d237 commit hash: f6c8fb6feb635f9368fa1b6fc70119d2fbe5d237 commit hash: f6c8fb6feb635f9368fa1b6fc70119d2fbe5d237 commit hash: f6c8fb6feb635f9368fa1b6fc70119d2fbe5d237 f6c8fb6
10:45 Tobias C. Berner (tcberner) search for other commits by this committer
devel/kommit: update to 1.0.2 (moved from devel/gitklient)

Announcement:	https://jriddell.org/2023/05/04/kommit-1-0-2-released/
commit hash: d7463550c864bfc11c3b5e3410996c54d8c69f17 commit hash: d7463550c864bfc11c3b5e3410996c54d8c69f17 commit hash: d7463550c864bfc11c3b5e3410996c54d8c69f17 commit hash: d7463550c864bfc11c3b5e3410996c54d8c69f17 d746355
Tuesday, 16 May 2023
04:30 Matthias Fechner (mfechner) search for other commits by this committer
www/rubygem-ruby-openai37: moved to match location of www/rubygem-ruby-openai

Reported by:	antoine@
commit hash: 705ef4fa0778134fe6dda55585356ca3505818f9 commit hash: 705ef4fa0778134fe6dda55585356ca3505818f9 commit hash: 705ef4fa0778134fe6dda55585356ca3505818f9 commit hash: 705ef4fa0778134fe6dda55585356ca3505818f9 705ef4f
Sunday, 14 May 2023
17:25 Matthias Fechner (mfechner) search for other commits by this committer
www/gitlab-ce: add required ports for 15.11 upgrade
commit hash: 5e2ec2115753206785b22b2f58e20de2fc0ffc17 commit hash: 5e2ec2115753206785b22b2f58e20de2fc0ffc17 commit hash: 5e2ec2115753206785b22b2f58e20de2fc0ffc17 commit hash: 5e2ec2115753206785b22b2f58e20de2fc0ffc17 5e2ec21
Friday, 12 May 2023
12:55 Jason W. Bacon (jwb) search for other commits by this committer
devel/py-rich-click: Format click help output nicely with rich

The intention of rich-click is to provide attractive help output from
click, formatted with rich, with minimal customisation required.
commit hash: 472806ae8c27386da5f431fdd6ae4bd1761cbc77 commit hash: 472806ae8c27386da5f431fdd6ae4bd1761cbc77 commit hash: 472806ae8c27386da5f431fdd6ae4bd1761cbc77 commit hash: 472806ae8c27386da5f431fdd6ae4bd1761cbc77 472806a
Wednesday, 10 May 2023
14:58 Dan Langille (dvl) search for other commits by this committer
devel/py-celery-singleton: New port

Prevent duplicate celery tasks.
commit hash: e1fbe719d4258ee0106c22dc5a4189cf050148c4 commit hash: e1fbe719d4258ee0106c22dc5a4189cf050148c4 commit hash: e1fbe719d4258ee0106c22dc5a4189cf050148c4 commit hash: e1fbe719d4258ee0106c22dc5a4189cf050148c4 e1fbe71
02:37 TAKATSU Tomonari (tota) search for other commits by this committer
devel/R-cran-clock: Add new port

Provides a comprehensive library for date-time manipulations using
a new family of orthogonal date-time classes (durations, time points,
zoned-times, and calendars) that partition responsibilities so that
the complexities of time zones are only considered when they are
really needed. Capabilities include: date-time parsing, formatting,
arithmetic, extraction and updating of components, and rounding.
commit hash: f755e9cc8c39928b666170815b19943e34dd9fb3 commit hash: f755e9cc8c39928b666170815b19943e34dd9fb3 commit hash: f755e9cc8c39928b666170815b19943e34dd9fb3 commit hash: f755e9cc8c39928b666170815b19943e34dd9fb3 f755e9c
Tuesday, 9 May 2023
13:31 Matthew Seaman (matthew) search for other commits by this committer
devel/py-types-jsonschema: New port

This is a PEP 561 type stub package for the jsonschema package. It can
be used by type-checking tools like mypy, pyright, pytype, PyCharm,
etc. to check code that uses jsonschema.
commit hash: 69cad9173580cb0da2f2120a83bc8aeebda70359 commit hash: 69cad9173580cb0da2f2120a83bc8aeebda70359 commit hash: 69cad9173580cb0da2f2120a83bc8aeebda70359 commit hash: 69cad9173580cb0da2f2120a83bc8aeebda70359 69cad91
Sunday, 7 May 2023
23:20 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-rubocop-factory_bot: Add rubygem-rubocop-factory_bot 2.22.0

RuboCop factory_bot is a factory_bot-specific analysis for your projects, as an
extension to RuboCop.
commit hash: b06b1c8ad001afc511fe6fb5eb12a30501eaecfa commit hash: b06b1c8ad001afc511fe6fb5eb12a30501eaecfa commit hash: b06b1c8ad001afc511fe6fb5eb12a30501eaecfa commit hash: b06b1c8ad001afc511fe6fb5eb12a30501eaecfa b06b1c8
16:03 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/py-pydantic-core: Add py-pydantic-core 0.28.0

pydantic-core provides the core functionality for pydantic. The package is
currently a work in progress and subject to significant change. There is, as
yet, no integration with pydantic, so schemas can only be defined via
dictionaries.
commit hash: a8cef7f5cb4dcafb974e2beab4e72b185d0909e0 commit hash: a8cef7f5cb4dcafb974e2beab4e72b185d0909e0 commit hash: a8cef7f5cb4dcafb974e2beab4e72b185d0909e0 commit hash: a8cef7f5cb4dcafb974e2beab4e72b185d0909e0 a8cef7f
Saturday, 6 May 2023
02:39 TAKATSU Tomonari (tota) search for other commits by this committer
devel/R-cran-timechange: Add new port

Efficient routines for manipulation of date-time objects while
accounting for time-zones and daylight saving times. The package
includes utilities for updating of date-time components (year,
month, day etc.), modification of time-zones, rounding of date-times,
period addition and subtraction etc. Parts of the 'CCTZ' source
code, released under the Apache 2.0 License, are included in this
package.
commit hash: c296b40ce66c1edae04c4467537d7b68b3f66b1a commit hash: c296b40ce66c1edae04c4467537d7b68b3f66b1a commit hash: c296b40ce66c1edae04c4467537d7b68b3f66b1a commit hash: c296b40ce66c1edae04c4467537d7b68b3f66b1a c296b40
Thursday, 4 May 2023
02:13 Hiroki Tagato (tagattie) search for other commits by this committer
devel/electron24: add port: Build cross-platform desktop apps with JavaScript,
HTML, and CSS

Build cross platform desktop apps with JavaScript, HTML, and CSS.

It's easier than you think.

If you can build a website, you can build a desktop app. Electron is a
framework for creating native applications with web technologies like
JavaScript, HTML, and CSS. It takes care of the hard parts so you can
focus on the core of your application.

WWW: https://electronjs.org/
commit hash: d9fe290c65297b48a8f0f85560f1ad85d41783c4 commit hash: d9fe290c65297b48a8f0f85560f1ad85d41783c4 commit hash: d9fe290c65297b48a8f0f85560f1ad85d41783c4 commit hash: d9fe290c65297b48a8f0f85560f1ad85d41783c4 d9fe290

Number of commits found: 11073 (showing only 100 on this page)

[First Page]  «  1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11  »  [Last Page]