Port details |
- py-pystemmer Snowball Stemming Algorithms for Information Retrieval
- 2.0.1_1 textproc
=17 2.0.1Version of this port present on the latest quarterly branch. - Maintainer: dbaio@FreeBSD.org
 - Port Added: 2015-08-06 06:25:43
- Last Update: 2025-03-08 04:05:21
- Commit Hash: 06a08e6
- People watching this port, also watch:: py311-Babel, indexinfo, autoconf, py311-six, libxml2
- Also Listed In: python
- License: MIT BSD3CLAUSE
- WWW:
- https://pypi.org/project/PyStemmer/
- Description:
- PyStemmer provides access to efficient algorithms for calculating a
"stemmed" form of a word. This is a form with most of the common
morphological endings removed; hopefully representing a common
linguistic base form. This is most useful in building search engines
and information retrieval software; for example, a search with stemming
enabled should be able to find a document containing "cycling" given the
query "cycles".
PyStemmer provides algorithms for several (mainly european) languages,
by wrapping the libstemmer library from the Snowball project in a Python
module. It also provides access to the classic Porter stemming algorithm
for english: although this has been superceded by an improved algorithm,
the original algorithm may be of interest to information retrieval
researchers wishing to reproduce results of earlier experiments.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}pystemmer>0:textproc/py-pystemmer@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/textproc/py-pystemmer/ && make install clean
- To add the package, run one of these commands:
- pkg install textproc/py-pystemmer
- pkg install py311-pystemmer
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py311-pystemmer listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py311-pystemmer
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1617964201
SHA256 (PyStemmer-2.0.1.tar.gz) = 9b81c35302f1d2a5ad9465b85986db246990db93d97d3e8f129269ed7102788e
SIZE (PyStemmer-2.0.1.tar.gz) = 559329
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cython-3.11 : lang/cython@py311
- py311-setuptools>=63.1.0 : devel/py-setuptools@py311
- python3.11 : lang/python311
- Test dependencies:
-
- python3.11 : lang/python311
- Runtime dependencies:
-
- python3.11 : lang/python311
- This port is required by:
- for Run
-
- textproc/py-snowballstemmer
Configuration Options:
- No options to configure
- Options name:
- textproc_py-pystemmer
- USES:
- python
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
2.0.1_1 08 Mar 2025 04:05:21
    |
Charlie Li (vishwin)  |
python: bump all USE_PYTHON=distutils consumers after RUN_DEPENDS removal
Any missed ports, feel free to bump.
Any ports that need setuptools at runtime can have the devel/py-setuptools
manually added back to RUN_DEPENDS, but understand that this practice
is deprecated; see CHANGES for details. |
2.0.1 27 Jun 2023 19:34: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> |
2.0.1 11 Jan 2023 15:58:34
    |
Dmitry Marakasov (amdmi3)  |
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
2.0.1 07 Sep 2022 21:10:59
    |
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.
(Only the first 15 lines of the commit message are shown above ) |
2.0.1 20 Jul 2022 14:23:14
    |
Tobias C. Berner (tcberner)  |
textproc: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Choe, Cheng-Dae" whitekid
* -
* <glewis@FreeBSD.org>
* <koshy@india.hp.com>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron Straup Cope
* Aaron Straup Cope <ascope@cpan.org>
* Ache
* Adam Herzog <adam@herzogdesigns.com>
* Adam Weinberger <adamw@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
2.0.1 17 Nov 2021 20:47:25
    |
Dmitry Marakasov (amdmi3)  |
textproc/py-pystemmer: fix build with cython 3.x
The port builds fine with cython 3.x (upcoming cython-devel), which
is currently the only option with (upcoming) python 3.11. Remove the
needless version limitation which breaks the build.
PR: 259899
Approved by: dbaio (maintainer) |
2.0.1 01 Jun 2021 17:34:51
    |
Dmitry Marakasov (amdmi3)  |
textproc/py-pystemmer: update to 2.0.1
PR: 256225
Approved by: dbaio (maintainer) |
2.0.0.1 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
2.0.0.1 09 Jan 2021 16:34:07
  |
antoine  |
Remove python 2.7 support from a few ports |
2.0.0.1 24 Dec 2020 13:46:02
  |
kai  |
Relax hardcoded paths to fix build with Python 3.8.7
Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme. This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".
The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.
Remedy the issue by adding wildcards to these paths. This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.
[1] https://bugs.python.org/issue42604
PR: 252057
Reported by: John Kennedy
Reviewed by: fluffy, koobs
Approved by: koobs (python) |
2.0.0.1 23 Mar 2020 18:33:55
  |
dbaio  |
textproc/py-pystemmer: Update to 2.0.0.1 |
1.3.0_2 11 Jul 2018 19:15:15
  |
dbaio  |
textproc/py-pystemmer: Fix build with Python 3.7
setup.py contains a conditional checking if it can import cython. If not, the
included (but stale) src/Stemmer.c is used. Add in cython as a build dependency
to force regeneration of the C file from the actual source src/Stemmer.pyx.
Also bump PORTREVISION to reflect possible differences between included and
regenerated src/Stemmer.c.
https://github.com/snowballstem/pystemmer/issues/18
PR: 229629
Submitted by: Charlie Li <ml+freebsd@vishwin.info>
Reported by: Pascal Christen <pascal.christen@hostpoint.ch> |
1.3.0_1 25 Apr 2018 16:42:38
  |
amdmi3  |
Switch all pypi.python.org WWWs to a new PyPi home pypi.org where
they now redirect to anyway. All new urls checked to return 200,
I've fixed a couple of them in the process.
Approved by: portmgr blanket, mat |
1.3.0_1 08 Feb 2018 20:18:09
  |
amdmi3  |
Canonicalize PyPi WWWs:
- Switch to https://
- Remove trailing slashes
Approved by: portmgr blanket |
1.3.0_1 30 Nov 2017 15:50:34
  |
mat  |
Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the (Only the first 15 lines of the commit message are shown above ) |
1.3.0_1 08 May 2017 17:21:49
  |
dbaio  |
Update my email address
Approved by: garga (mentor)
Differential Revision: https://reviews.freebsd.org/D10648 |
1.3.0_1 06 Mar 2017 14:46:04
  |
skreuzer  |
Create py3- variant
Assign maintainership to dbaio@bsd.com.br
PR: 217466
Submitted by: Danilo G. Baio <dbaio@bsd.com.br> |
1.3.0_1 06 Aug 2015 06:25:35
  |
lwhsu  |
- Rename to match upstream (PyPi) name
- Add license |