Port details |
- p5-CSS-Tiny Read/Write .css files with as little code as possible
- 1.20 textproc =2 1.20Version of this port present on the latest quarterly branch.
- Maintainer: perl@FreeBSD.org
- Port Added: 2003-11-15 09:33:22
- Last Update: 2022-09-08 15:46:38
- Commit Hash: ade2a04
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- Also Listed In: perl5
- License: ARTPERL10
- WWW:
- https://metacpan.org/release/CSS-Tiny
- Description:
- CSS::Tiny is a perl class to read and write .css stylesheets with as
little code as possible, reducing load time and memory overhead.
This module is primarily for reading and writing simple files, and
anything we write shouldn't need to have documentation/comments. If you
need something with more power, move up to CSS.pm.
Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- p5-CSS-Tiny>0:textproc/p5-CSS-Tiny
- To install the port:
- cd /usr/ports/textproc/p5-CSS-Tiny/ && make install clean
- To add the package, run one of these commands:
- pkg install textproc/p5-CSS-Tiny
- pkg install p5-CSS-Tiny
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: p5-CSS-Tiny
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (CSS-Tiny-1.20.tar.gz) = 68f49de6a41c153ddc735da81c6b4dd5dd26e15c2b3f7968286d6c1429b152fa
SIZE (CSS-Tiny-1.20.tar.gz) = 8706
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:
-
- p5-Clone>=0 : devel/p5-Clone
- perl5>=5.32.r0<5.33 : lang/perl5.32
- perl5>=5.32.r0<5.33 : lang/perl5.32
- Runtime dependencies:
-
- p5-Clone>=0 : devel/p5-Clone
- perl5>=5.32.r0<5.33 : lang/perl5.32
- This port is required by:
- for Build
-
- textproc/p5-PPI-HTML
- for Run
-
- textproc/denature
- textproc/p5-PPI-HTML
Configuration Options:
- No options to configure
- Options name:
- textproc_p5-CSS-Tiny
- USES:
- perl5
- 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 |
1.20 08 Sep 2022 15:46:38 |
Stefan Eßer (se) |
Remove WWW lines that have been moved into Makefiles
Approved by: portmgr (implicit) |
1.20 08 Sep 2022 15:43:21 |
Stefan Eßer (se) |
Move more WWW entries from pkg-descr files into Makefiles
The WWW: lines in the pkg-descr files of these ports where not at the
end of those files and have been missed in prior conversion runs.
Approved by: portmgr (implicit) |
1.20 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 ) |
1.20 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.20 09 Jul 2018 08:40:18 |
mat |
Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight |
1.20 27 May 2018 20:15:20 |
sunpoet |
Update WWW
search.cpan.org is shutting down.
It will redirect to metacpan.org after June 25, 2018.
With hat: perl |
1.20 01 Apr 2016 14:25:18 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight |
1.20 11 Mar 2016 08:31:06 |
jadawin |
- Update to 1.20 |
1.19_1 26 Nov 2014 13:08:38 |
mat |
Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:
site_perl : lib/perl5/site_perl/5.18
site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
perl_man3 : lib/perl5/5.18/man/man3
Now we have:
site_perl : lib/perl5/site_perl
site_arch : lib/perl5/site_perl/mach/5.18
perl_man3 : lib/perl5/site_perl/man/man3
Modules without any .so will be installed at the same place regardless of the (Only the first 15 lines of the commit message are shown above ) |
1.19 07 Nov 2013 03:52:42 |
vanilla |
Support STAGEDIR. |
1.19 20 Sep 2013 23:17:32 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
textproc) |
1.19 02 Aug 2013 18:52:11 |
mat |
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
1.19 10 Jun 2012 18:42:48 |
swills |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi) |
1.19 05 Jun 2012 07:02:36 |
culot |
- Remove SITE_PERL from *_DEPENDS
Submitted by: az@ |
1.19 17 May 2011 11:13:00 |
jadawin |
- Cleaning MD5 in perl@'s ports
Approved by: erwin@ (portmgr) |
1.19 24 Sep 2010 02:03:44 |
pgollucci |
- only 13% of the p5- ports embed @comment $FreeBSD$:
so standarize and remove it
With Hat: perl@ |
1.19 03 Sep 2010 07:18:49 |
wen |
- Update to 1.19 |
1.17 05 Jul 2010 01:47:03 |
wen |
- Update to 1.17
- Reset maintainer to perl@
Feature safe: yes |
1.15 19 Aug 2008 10:10:51 |
linimon |
Reset hansjoerg.pehofer@uibk.ac.at at his request.
Hat: portmgr |
1.15 10 Mar 2008 22:58:10 |
lippe |
- Update to 1.15.
PR: ports/121007
Submitted by: lippe (myself)
Approved by: araujo (mentor), maintainer timeout (> 2 weeks) |
1.14 08 Sep 2007 01:06:22 |
linimon |
Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.
Drop support for antique perl.
Work done by: gabor
Sponsored by: Google Summer of Code 2007
Hat: portmgr |
1.14 12 Sep 2006 04:52:01 |
rafan |
- Update to 1.14
PR: ports/102880
Submitted by: Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw>
Approved by: Hansjoerg Pehofer <hansjoerg.pehofer at uibk.ac.at> (maintainer) |
1.11 22 Jan 2006 02:55:05 |
edwin |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
1.11 15 Nov 2005 09:52:03 |
tobez |
Update to 1.11.
PR: 89055
Submitted by: maintainer |
1.08_1 21 Sep 2005 19:31:43 |
fenner |
search.cpan.org redirect reduction canonicalization project, pass 1:
URLs automatically rewritten from /search?dist=Foo or /dist/Foo
to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization,
this is the preferred way to refer to modules on search.cpan.org.
This pass brought to you by http://people.freebsd.org/~fenner/fix-search |
1.08_1 11 Jun 2005 16:13:12 |
skv |
* reflect renaming on CPAN File-Spec to PathTools
+ add devel/p5-PathTools, remove devel/p5-File-Spec
+ update dependencies for all affected ports (make them unconditional),
bump PORTREVISION for these ports
module was renamed
* reflect renaming on CPAN PodParser to Pod-Parser
+ add textproc/p5-Pod-Parser, remove textproc/p5-PodParser
+ update dependencies for all affected ports (make them unconditional),
bump PORTREVISION for these ports
* for all changed ports make dependencies on File::Temp, Digest::MD5,
Storable unconditional
* remove 'CONFIGURE_ARGS= INSTALLDIRS=site' from Makefile's
(this variable is forced by bsd.port.mk now)
* update Class-Autouse to 1.17
* update POE-API-Hooks to 1.05
* make portlint happy (clean IGNORE, convert spaces to tabs and so on) |
1.08 29 Apr 2005 16:46:24 |
leeym |
- remove *.orig and unbreak this port on 4.x |
1.08 02 Apr 2005 10:41:56 |
lth |
Update to 1.08
PR: ports/79176
Submitted by: lth
Approved by: maintainer |
1.05_1 22 Dec 2004 12:37:27 |
erwin |
fixed typos in pkg-plist, set PORTREVISION
PR: 75370
Submitted by: maintainer |
1.05 16 Oct 2004 08:51:18 |
clsung |
- update to 1.05
PR: ports/72755
Submitted by: maintainer (Hansjoerg Pehofer)
Approved by: co-mentor (vanilla) |
1.04 23 Mar 2004 13:35:51 |
krion |
- Update to 1.04
PR: ports/64615
Submitted by: maintainer |
1.02 15 Nov 2003 09:31:16 |
vanilla |
Add p5-CSS-Tiny 1.02,
read/Write .css files with as little code as
possible.
PR: 58780
Submitted by: Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at> |