non port: databases/py-sqlalchemy14/Makefile |
Number of commits found: 58 |
Tuesday, 28 Jan 2025
|
17:04 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.54
- Update WWW
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
16e2934 |
Sunday, 4 Aug 2024
|
17:14 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.53
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
4b38d52 |
Saturday, 23 Mar 2024
|
14:31 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.52
- Convert to USE_PYTHON=pep517
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
3d846c5 |
Wednesday, 21 Feb 2024
|
15:07 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.51
- Add PORTSCOUT
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
9bcc96d |
Thursday, 2 Nov 2023
|
07:37 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.50
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
dded693 |
Sunday, 9 Jul 2023
|
21:34 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.49
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
c947373 |
Friday, 30 Jun 2023
|
07:03 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Remove outdated PYTHON_REL check after lang/python37
removal
861d0a21 |
Tuesday, 27 Jun 2023
|
19:34 Rene Ladan (rene)
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568>
3d9a815 |
Tuesday, 2 May 2023
|
19:58 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.48
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
785dd35 |
Wednesday, 5 Apr 2023
|
17:30 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.47
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
a0f6964 |
Tuesday, 21 Mar 2023
|
19:20 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update WWW
55d993e |
Monday, 30 Jan 2023
|
12:59 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.46
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
401ff1d |
Wednesday, 11 Jan 2023
|
15:58 Dmitry Marakasov (amdmi3)
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt
77d6847 |
Friday, 30 Dec 2022
|
09:04 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.44
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
0f5a151 |
Saturday, 19 Nov 2022
|
08:11 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update version requirement of TEST_DEPENDS
e481e25 |
Saturday, 10 Sep 2022
|
13:02 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.41
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
821fff7 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
b7f0544 |
Wednesday, 31 Aug 2022
|
11:41 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.40
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
4a8910a |
Wednesday, 29 Jun 2022
|
21:49 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.39
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
5e0153e |
16:32 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.38
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
190a7b0 |
15:57 Stefan Eßer (se)
Fix CONFLICTS_INSTALL in the databases category
Approved by: portmgr (implicit)
da00957 |
Friday, 3 Jun 2022
|
23:36 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.37
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
3bb1751 |
Saturday, 30 Apr 2022
|
15:58 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.36
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
3bb91cc |
Sunday, 17 Apr 2022
|
23:58 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.35
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
bb75bf6 |
Saturday, 16 Apr 2022
|
04:19 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.34
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
277d929 |
Friday, 25 Mar 2022
|
13:36 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.32
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
2f069ca |
Tuesday, 25 Jan 2022
|
19:50 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.31
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
e004380 |
Sunday, 23 Jan 2022
|
18:19 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.29
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
effda8f |
Tuesday, 11 Jan 2022
|
18:44 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.28
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
44ee9fb |
Sunday, 21 Nov 2021
|
18:20 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.27
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
b624740 |
Monday, 25 Oct 2021
|
21:46 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.26
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
1e7f548 |
Monday, 27 Sep 2021
|
15:55 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.25
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
3c9ff3a |
Tuesday, 21 Sep 2021
|
03:44 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.23
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
6639006 |
Sunday, 19 Sep 2021
|
06:00 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Convert PORTDOCS and PORTEXAMPLES to PLIST entries
59f5b3a |
Tuesday, 31 Aug 2021
|
19:50 Bernhard Froehlich (decke)
databases/py-sqlalchemy14: Add CPE information
Approved by: portmgr (blanket)
1617d07 |
Saturday, 24 Jul 2021
|
20:21 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.22
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
f726b0c |
Thursday, 15 Jul 2021
|
23:52 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.21
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
6825005 |
Tuesday, 6 Jul 2021
|
14:56 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.20
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
e0d6b00 |
Wednesday, 30 Jun 2021
|
20:43 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.19
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
83137dd |
Sunday, 20 Jun 2021
|
16:15 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.18
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
0f471a4 |
Monday, 14 Jun 2021
|
17:39 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.17
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
6776729 |
Thursday, 10 Jun 2021
|
14:46 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.16
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
66ac782 |
Tuesday, 25 May 2021
|
13:55 Dmitry Marakasov (amdmi3)
Mk: switch PYTHON_REL to 5 digits to support python 3.10.x
PR: 255013
Differential Revision: https://reviews.freebsd.org/D29418
Exp-run by: antoine
Approved by: wen@, no objection from python@ or portmgr@
0729af4 |
Tuesday, 18 May 2021
|
19:28 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.15
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
61eb173 |
Sunday, 16 May 2021
|
15:24 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.14
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
f650ace |
Tuesday, 11 May 2021
|
21:47 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.13
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
7a61a5f |
Friday, 7 May 2021
|
09:39 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.12
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
a1e26aa |
Sunday, 2 May 2021
|
19:44 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.11
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
0fd96c8 |
Saturday, 1 May 2021
|
22:19 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.10
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
0a84cae |
Thursday, 29 Apr 2021
|
14:23 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.9
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
644d1bc |
Sunday, 25 Apr 2021
|
20:35 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.8
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
f6ce173 |
Sunday, 18 Apr 2021
|
05:43 Po-Chuan Hsieh (sunpoet)
databases/py-sqlalchemy14: Update to 1.4.4
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
268ab3a |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Wednesday, 17 Feb 2021
|
18:05 sunpoet
Update to 1.4.0b3
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
 |
Saturday, 6 Feb 2021
|
20:45 sunpoet
Update to 1.4.0b2
- Update CONFLICTS_INSTALL
Changes: https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html
 |
Monday, 28 Dec 2020
|
23:02 antoine
Drop python 2.7 support from a few ports
With hat: portmgr
 |
Sunday, 15 Nov 2020
|
17:55 sunpoet
Add py-sqlalchemy14 1.4.0b1 (copied from py-sqlalchemy13)
 |
Number of commits found: 58 |