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) combinatio for a given watch list. This is what FreshPorts will look for.

Port details
py-django-cms Content management system built with the Django framework
4.1.0 www on this many watch lists=1 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 3.9.0_1Version of this port present on the latest quarterly branch.
Maintainer: xenophon+fbsdports@irtnog.org search for ports maintained by this maintainer
Port Added: 2012-02-07 04:58:41
Last Update: 2024-02-09 05:30:39
Commit Hash: 019406c
People watching this port, also watch:: otrs, links, mupdf
Also Listed In: python
License: BSD3CLAUSE
WWW:
https://django-cms.org/
Description:
A free and open source content management system for publishing content on the World Wide Web and intranets. It is based on Django and written in Python.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

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}django-cms>0:www/py-django-cms@${PY_FLAVOR}
To install the port:
cd /usr/ports/www/py-django-cms/ && make install clean
To add the package, run one of these commands:
  • pkg install www/py-django-cms
  • pkg install py39-django-cms
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 py39-django-cms listed in the above command, you can pick from the names under the Packages section.
PKGNAME: py39-django-cms
Package flavors (<flavor>: <package>)
  • py39: py39-django-cms
distinfo:
TIMESTAMP = 1704566591 SHA256 (django-cms-4.1.0.tar.gz) = 860a7e4045cde2ec22c0090d437f0110630ef8d9959b9a3b7cee2039c76687fb SIZE (django-cms-4.1.0.tar.gz) = 5065953

Packages (timestamps in pop-ups are UTC):
py37-django-cms
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest--3.7.1-----
FreeBSD:13:quarterly--------
FreeBSD:14:latest--------
FreeBSD:14:quarterly--------
FreeBSD:15:latest--n/a-n/a---
FreeBSD:15:quarterly--n/a-n/a---
 

py39-django-cms
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest4.1.04.1.0-4.1.04.1.0---
FreeBSD:13:quarterly3.9.0_13.9.0_13.9.0_13.9.0_13.9.0_13.9.0_13.9.0_13.9.0_1
FreeBSD:14:latest4.1.04.1.03.9.0_14.1.04.1.03.9.0_1-3.9.0_1
FreeBSD:14:quarterly3.9.0_13.9.0_1-3.9.0_13.9.0_13.9.0_13.9.0_13.9.0_1
FreeBSD:15:latest4.1.04.1.0n/a4.1.0n/a3.9.0_13.9.0_14.1.0
FreeBSD:15:quarterly--n/a-n/a---
 

Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. py39-setuptools>=63.1.0 : devel/py-setuptools@py39
  2. python3.9 : lang/python39
Test dependencies:
  1. python3.9 : lang/python39
Runtime dependencies:
  1. py39-django32>=2.2 : www/py-django32@py39
  2. py39-djangocms-admin-style>=1.2 : www/py-djangocms-admin-style@py39
  3. py39-django-classy-tags>=0.7.2 : www/py-django-classy-tags@py39
  4. py39-django-formtools>=2.1 : www/py-django-formtools@py39
  5. py39-django-sekizai>=0.7 : www/py-django-sekizai@py39
  6. py39-django-treebeard>=4.3 : www/py-django-treebeard@py39
  7. py39-packaging>0 : devel/py-packaging@py39
  8. py39-sqlite3>0 : databases/py-sqlite3@py39
  9. py39-setuptools>=63.1.0 : devel/py-setuptools@py39
  10. python3.9 : lang/python39
There are no ports dependent upon this port

Configuration Options:
===> The following configuration options are available for py39-django-cms-4.1.0: ====> Options available for the multi DATABASE: you have to choose at least one of them MYSQL=off: MySQL database support PGSQL=off: PostgreSQL database support SQLITE=on: SQLite database support ===> Use 'make config' to modify these settings
Options name:
www_py-django-cms
USES:
python
pkg-message:
For install:
IMPORTANT / If you're upgrading from a older version of py-django-cms please read the upgrade instructions at: http://docs.django-cms.org/en/latest/upgrade/index.html The described steps further down are a distilled version of "How to install django CMS by hand" which is available at: http://docs.django-cms.org/en/latest/how_to/install.html The manual gives enough information how to setup py-django-cms for development use. For production environments please consider to read the full documentation available at: http://docs.django-cms.org/en/latest/index.html 1. Create a new Django project $ django-admin.py startproject myproject 2. Edit settings.py --- Set a SITE_ID by adding the following line: SITE_ID = 1 # 1 will suffice in most cases --- Add the next lines to INSTALLED_APPS: 'djangocms_admin_style' # must come BEFORE django.contrib.admin 'django.contrib.sites' 'cms' 'menus' 'sekizai' 'treebeard' --- Configure the LANGUAGES and LANGUAGE_CODE, e.g.: LANGUAGES = [ ('en', 'English'), ('de', 'German'), ] LANGUAGE_CODE = 'en' # For simplicity's sake at this stage it is worth # changing the default en-us in that you'll find in # the LANGUAGE_CODE setting to en. --- Add the following lines to MIDDLEWARE_CLASSES: 'cms.middleware.utils.ApphookReloadMiddleware' # Optional, but useful 'cms.middleware.user.CurrentUserMiddleware' 'cms.middleware.page.CurrentPageMiddleware' 'cms.middleware.toolbar.ToolbarMiddleware' 'cms.middleware.language.LanguageCookieMiddleware' 'django.middleware.locale.LocaleMiddleware' --- Add MEDIA_URL (where media files will be served) and MEDIA_ROOT (where they --- will be stored): MEDIA_URL = "/media/" MEDIA_ROOT = os.path.join(BASE_DIR, "media") --- See the Django documentation for guidance on serving media files in --- production. --- Add a CMS_TEMPLATES section that will be the project's default template: CMS_TEMPLATES = [ ('home.html', 'Home page template'), ] --- Add the next lines to TEMPLATES['OPTIONS']['context_processors']: 'sekizai.context_processors.sekizai' 'cms.context_processors.cms_settings' --- Django needs to be know where to look for its templates, so add following --- line (the appropriate directory will be created in the next step) to the ----TEMPLATES['DIRS'] list: ['templates'] --- In the root of the project, create a templates directory, and in that, --- home.html, a minimal django CMS template: {% load cms_tags sekizai_tags %} <html> <head> <title>{% page_attribute "page_title" %}</title> {% render_block "css" %} </head> <body> {% cms_toolbar %} {% placeholder "content" %} {% render_block "js" %} </body> </html> --- Note: See Django's template language documentation for more on how template --- inheritance works. 3. Edit urls.py --- Edit urls.py and add url(r'^', include('cms.urls')) to the urlpatterns --- list. It should come after other patterns, so that specific URLs for other --- applications can be detected first. --- You'll also need to have an import for django.conf.urls.include and --- configure a media file serving for development purposes: from django.conf import settings from django.conf.urls import url, include from django.conf.urls.static import static urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^', include('cms.urls')), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) 4. Setup the relational database backend --- For testing purpose SQLite can be used and it is configured by default --- in a new Django project's DATABASES. --- Refer to Django's DATABASES setting documentation for the appropriate --- configuration when PostgreSQL or MySQL are used as database backends. 5. Run migrations to create database tables --- When a database backend has been choosen and set up properly, run the --- following command: $ python manage.py migrate 6. Create an admin superuser --- For maintenance purposes it is necessary to create a admin user: $ python manage.py createsuperuser 7. Check CMS installation --- This will check your configuration, your applications, your database and --- report on any problems: $ python manage.py cms check --- When there are no errors continue with the last step. 8. Start the CMS --- The django CMS project will now run by issuing: $ python manage.py runserver --- The CMS can now be reached http://localhost:8000/ and the admin interface --- at http://localhost:8000/admin/
Master Sites:
Expand this list (2 items)
Collapse this list.
  1. https://files.pythonhosted.org/packages/source/d/django-cms/
  2. https://pypi.org/packages/source/d/django-cms/
Collapse this list.

Number of commits found: 29

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
4.1.0
09 Feb 2024 05:30:39
commit hash: 019406c9a8314ed484ab29a3989e3ad4f1f7acf6commit hash: 019406c9a8314ed484ab29a3989e3ad4f1f7acf6commit hash: 019406c9a8314ed484ab29a3989e3ad4f1f7acf6commit hash: 019406c9a8314ed484ab29a3989e3ad4f1f7acf6 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
www/py-django-cms: Update to 4.1.0

Changelog since 3.9.0:

https://github.com/django-cms/django-cms/blob/4.1.0/CHANGELOG.rst

PR:		276503
Approved by:	maintainer timeout (2+ weeks)
3.9.0_1
27 Jun 2023 19:34:34
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacbcommit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacbcommit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacbcommit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb files touched by this commit
Rene Ladan (rene) search for other commits by this committer
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>
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
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)
3.9.0_1
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
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 View all of this commit message)
3.9.0_1
20 Jul 2022 14:23:26
commit hash: e915e756715f12e5e0e46993b1265f44690b4a90commit hash: e915e756715f12e5e0e46993b1265f44690b4a90commit hash: e915e756715f12e5e0e46993b1265f44690b4a90commit hash: e915e756715f12e5e0e46993b1265f44690b4a90 files touched by this commit
Tobias C. Berner (tcberner) search for other commits by this committer
www: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *
  *  <hvo.pm@xs4all.nl>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Aaron Dalton <aaron@daltons.ca>
  *  Aaron LI <aly@aaronly.me>
  *  Aaron Zauner <az_mail@gmx.at>
  *  Abel Chow <achow@transoft.net>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Adrian Steinmann <ast@marabu.ch>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
3.9.0_1
28 Apr 2022 10:02:15
commit hash: 0cf5531fcd38982e6667fb2b8561eae80c4902c3commit hash: 0cf5531fcd38982e6667fb2b8561eae80c4902c3commit hash: 0cf5531fcd38982e6667fb2b8561eae80c4902c3commit hash: 0cf5531fcd38982e6667fb2b8561eae80c4902c3 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
www/py-django32: Switch consumers over to Django 3.2

Django 2.2 became End-of-Life on 11th April 2022 and Django 3.2 is the
new LTS (= Long Term Support) release which will be supported until
April 2024.

* Switch the most ports that use www/py-django22 to www/py-django32

* Switch www/seahub over to www/py-djangorestframework

* Ports that are not yet ready for Django 3.2 (only three so far) or
  those that have already been set with an expiration date were not
  taken into account.

* Bump PORTREVISION due dependency change where necessary.

PR:		261313
Reviewed by:	bofh, dvl, koobs, ultima
Approved by:	bofh, dvl, koobs, ultima, sunpoet, Kevin Golding, Ivan Rozhuk,
		Alexander Sieg (maintainers)
		maintainer timeout (remaining maintainers)
Differential Revision:	https://reviews.freebsd.org/D34859
3.9.0
12 Feb 2022 17:12:26
commit hash: 6700256b00e3d37e2dd7808daa1df9c2933848f7commit hash: 6700256b00e3d37e2dd7808daa1df9c2933848f7commit hash: 6700256b00e3d37e2dd7808daa1df9c2933848f7commit hash: 6700256b00e3d37e2dd7808daa1df9c2933848f7 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
www/py-django-cms: Update to 3.9.0

* Switch to GitHub for a while because no sdists at PyPI are available.

Changelog:

https://github.com/django-cms/django-cms/compare/3.7.1...3.9.0

PR:		261479
Approved by:	maintainer timeout (2+ weeks)
3.7.1
06 Apr 2021 14:31:07
commit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344eb files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
3.7.1
19 Apr 2020 09:15:56
Revision:532093Original commit files touched by this commit
kai search for other commits by this committer
www/py-django-cms: Update to 3.7.1

* Also assign the port to Django 2.2 because Django 1.11 is End-of-Life
  since April. [1]

* Do the same for its dependencies (including www/py-django-classy-tags [2])
  and bump PORTREVISION accordingly.

Changelog:

https://github.com/divio/django-cms/blob/3.7.1/CHANGELOG.rst

PR:		245361 [1] 245360 [2]
Approved by:	maintainer timeout (14 days) [1] [2]
3.5.2
14 Aug 2019 12:25:09
Revision:508913Original commit files touched by this commit
mat search for other commits by this committer
Convert to UCL & cleanup pkg-message (categories w)
3.5.2
21 May 2018 15:52:35
Revision:470557Original commit files touched by this commit
miwi search for other commits by this committer
- Update to 3.5.2
- Switch to py-django111

PR:	228092
Submitted by:	freebsd_ports@k-worx.org
Approved by:	maintainer
Sponsored by:	iXsystems Inc.
2.4.1_3
19 Feb 2018 11:10:43
Revision:462307Original commit files touched by this commit
antoine search for other commits by this committer
Reduce dependency on the python2 metaport

PR:		225752
Submitted by:	Yasuhiro KIMURA
2.4.1_2
30 Nov 2017 15:50:34
Revision:455210Original commit files touched by this commit Sanity Test Failure
mat search for other commits by this committer
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 View all of this commit message)
2.4.1_2
01 Apr 2016 14:33:58
Revision:412351Original commit files touched by this commit
mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.

With hat:	portmgr
Sponsored by:	Absolight
2.4.1_2
16 Jan 2016 11:19:09
Revision:406208Original commit files touched by this commit
miwi search for other commits by this committer
- Switch forgotten ports over to py-django18
- Fix PYTHON_PKGNAMEPREFIX

Reported by:    antoinebot
2.4.1_2
16 Jan 2016 09:52:37
Revision:406203Original commit files touched by this commit Sanity Test Failure
miwi search for other commits by this committer
- Switch all ports to www/py-django18
- Bump PORTREVISION
2.4.1_1
17 Aug 2015 14:20:41
Revision:394508Original commit files touched by this commit
mat search for other commits by this committer
Remove UNIQUENAME and LATEST_LINK.

UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.

Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.

Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)

Reviewed by:	antoine, bapt
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3336
2.4.1_1
21 Dec 2014 16:09:05
Revision:375166Original commit files touched by this commit
feld search for other commits by this committer
Update "BSD" license in www category
2.4.1_1
18 Oct 2014 19:08:30
Revision:371157Original commit files touched by this commit
rm search for other commits by this committer
www/py-django-cms: convert to USES=python

Approved by:	portmgr (blanket)
2.4.1_1
20 Jun 2014 07:44:23
Revision:358521Original commit files touched by this commit
adamw search for other commits by this committer
Use OPTIONS helpers, and change NOPORTDOCS reference to DOCS.
2.4.1_1
16 Feb 2014 14:41:05
Revision:344572Original commit files touched by this commit
miwi search for other commits by this committer
- Stage support
2.4.1_1
29 Jan 2014 15:27:52
Revision:341750Original commit files touched by this commit
miwi search for other commits by this committer
- Convert to PYDISTUTILS_AUTOPLIST
- Stage support
- Bump PORTREVISION
2.4.1
13 Jan 2014 21:00:04
Revision:339634Original commit files touched by this commit
rene search for other commits by this committer
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by:	python (mva, rm)
Approved by:	portmgr-lurkers (mat)
2.4.1
20 Sep 2013 23:36:54
Revision:327776Original commit files touched by this commit
bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
www)
2.4.1
10 Jun 2013 14:25:07
Revision:320478Original commit files touched by this commit
wg search for other commits by this committer
- Update to 2.4.1 [1]
- Update pkg-message

Changes: http://docs.django-cms.org/en/2.4.0/upgrade/2.4.html

PR:		ports/178988 [1]
Submitted by:	Melvyn Sopacua <melvyn@magemana.nl>
Approved by:	culot / jpaetzel (mentors, implicit), maintainer (timeout)
2.3_1
29 May 2013 08:08:55
Revision:319354Original commit files touched by this commit
miwi search for other commits by this committer
- Mark BROKEN fails to build
2.3_1
17 Oct 2012 19:46:39
Revision:306037Original commit files touched by this commit
rm search for other commits by this committer
- let user to change database backend via options (default is sqlite)
- bump PORTREVISION
- trim Makefile header while here

PR:		169248
Submitted by:	Matthew X. Economou <xenophon+freebsd at irtnog dot org>
(maintainer)
Feature safe:	yes
2.3
13 Aug 2012 19:07:13
Original commit files touched by this commit
rm search for other commits by this committer
- update to version 2.3
- update dependency upon www/py-django-sekizai (at least 0.6.1 is needed)
- fix directories at pkg-message
- use @dirrm (not @dirrmtry) for the port's own directories
- don't try to use @dirrmtry to other ports directories

while here:
- use CHEESESHOP shortcut
- remove unnecessary MASTER_SITE_SUBDIR
- strict python version to 2.x only

PR:		169599
Submitted by:	bsam
Approved by:	maintainer timeout (6 weeks)
2.2
07 Feb 2012 04:28:08
Original commit files touched by this commit
miwi search for other commits by this committer
A free and open source content management system for publishing
content on the World Wide Web and intranets.  It is based on Django
and written in Python.

WWW: http://django-cms.org/

PR:             ports/164624
Submitted by:   Matthew X. Economou <xenophon+fbsdports@irtnog.org>

Number of commits found: 29