Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
13 Aug 2019 16:00:39
1.0.12

|
mat  |
Convert to UCL & cleanup pkg-message (categories a-c) |
28 Jun 2019 22:01:13
1.0.12

|
mat  |
Remove noflavors when it does not make sense. |
07 Jun 2019 23:11:56
1.0.12

|
swills  |
audio/lollypop: update to 1.0.12
PR: 238370
Submitted by: Greg V <greg@unrelenting.technology> (maintainer) |
03 May 2019 13:58:34
1.0.2

|
mat  |
Fix the a ports that were broken but did not know it.
Differential Revision: https://reviews.freebsd.org/D20140 |
13 Apr 2019 01:07:03
1.0.2

|
swills  |
audio/lollypop: update to 1.0.2
PR: 236793
Submitted by: Greg V <greg@unrelenting.technology> (maintainer) |
26 Dec 2018 21:48:42
0.9.907

|
swills  |
audio/lollypop: update to 0.9.907
PR: 234364
Submitted by: Greg V <greg@unrelenting.technology> (maintainer) |
22 Jul 2018 21:19:42
0.9.521

|
yuri  |
audio/lollypop: Update 0.9.15 -> 0.9.521
Port changes:
* greg@unrelenting.technology takes maintainership
* Build changed to meson
* MASTER_SITES replaced with gitlab GL_xx
* Add USE_PYTHON=noflavors
* Use DISTVERSION
* Change LICENSE_FILE
PR: 226836
Submitted by: Greg V <greg@unrelenting.technology> |
20 Mar 2018 06:39:08
0.9.15_2

|
yuri  |
audio/lollypop: Unbreak by fixing the shebang
Approved by: portmgr (port compliance, infrastructure) |
03 Jan 2018 13:22:32
0.9.15_2

|
mat  |
Cleanup Mk/Uses/gnome.mk.
- Remove the use of comp_DETECT.
- Remove all comp_DETECT variables.
- Remove a use of comp_DETECT outside of gnome.mk
- Remove py3gobject3.
- Have ports depending directly on devel/py-gobject3 use gnome to do it.
PR: 224618
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D13550 |
30 Nov 2017 15:50:34
0.9.15_2

|
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 ) |
22 Jul 2017 11:35:44
0.9.15_2

|
kwm  |
Update GStreamer1 ports to 1.12.2.
Rework the adding of dependancies in Mk/bsd.gstreamer.mk.
Previous when using USE_GSTREAMER[1] it would just add the request modules to
BUILD/RUN_DEPENDS. This caused the qa script to complain because the old code
didn't implicit depend on the gstreamer1 and gstreamer1-plugins[-bad] ports for
the libraries they carried, even if they where present via the plugins! The new
code adds implicit depends on these ports so USE_GSTREAMER[1] using ports have
all the libraries included.
* The mad mp3 plugin was removed, mpg123 plugin also provides mp3 decoding.
Switch over ports that used the gstreamer1 mad plugin.
* gtksink plugin renamed -> gtk
* Hook up the sndio plugin into the framework
* Add some indirect dependacies where needed
* Reorder the plugin list in bsd.gstreamer.mk so only one plugin per line. When
changing plugins it doesn't result in multiple lines being changed.
* Remove mentions in bsd.gstreamer.mk of plugins mentions that where removed.
* Depend on libunwind on i386/amd64, GStreamer links to it if it is present.
PR: 220753
Exp-run by: antoine@ |
04 Jun 2017 21:49:48
0.9.15_1

|
bdrewery  |
Allow these ports to build with PACKAGE_BUILDING_FLAVORS set.
Poudriere in particulr did not properly handle DEPENDS_ARGS which
made these ports not properly install dependencies. That bug
is being addressed along with adding FLAVORS support to it.
With hat: portmgr
MFH: 2017Q2 |
25 Apr 2017 08:20:31
0.9.15_1

|
riggs  |
Chase ffmpeg 3.3 update (ABI changes)
PR: 218658
Submitted by: riggs |
19 Mar 2017 14:02:24
0.9.15

|
rene  |
Take in olivierd@'s commit bit on his request.
Submitted by: olivierd@
With hat: portmgr-secretary |
19 May 2016 11:09:14
0.9.15

|
amdmi3  |
- Fix trailing whitespace in pkg-messages
Approved by: portmgr blanket |
25 Apr 2016 16:13:39
0.9.15

|
mat  |
Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.
While there replace USE_SQLITE=x by USES=sqlite:x.
PR: 208971
Submitted by: mat
Exp-run by: antoine
With hat: portmgr
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D5951 |
01 Apr 2016 13:29:17
0.9.15

|
mat  |
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat: portmgr
Sponsored by: Absolight |
19 Oct 2015 14:50:52
0.9.15

|
amdmi3  |
Improve shebangfix framework
- Support multiple values in *_OLD_CMD, i.e. we can now fix both
"/usr/bin/python" and "/usr/bin/env python" at the same time
- Default *_OLD_CMD values are now always appended, so you don't need to specify
them in individual ports
- Add lua support (depends on USES=lua)
- Add more default values, such as "/usr/bin/env foo" for python, perl, bash,
ruby and lua
- Shebangfix now matches whole words, e.g. we will no longer (erroneously)
replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is
still (correctly) replaced with "${perl_CMD} -tt")
Note that *_OLD_CMD items containing spaces must now be quoted (e.g.
perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl")
Update shebangfix usage according to new rules in many ports:
- Remove *_OLD_CMD for patterns now replaced by default
- Quote custom *_OLD_CMD which contain spaces
Fix shebangfix usage in many ports (irrelevant to infrastructure change):
- Remove redundant SHEBANG_LANG (no need to duplicate default langs)
- Remove redundant *_CMD (such as
python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present)
- Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for
exact string
Approved by: portmgr (bapt)
Differential Revision: D3756 |
29 Jul 2015 22:09:55
0.9.15

|
antoine  |
Switch default python_CMD used by shebangfix to ${PYTHON_CMD} for ports
using python
PR: 201077
Reviewed by: mat
With hat: portmgr
Differential Revision: https://reviews.freebsd.org/D2955 |
14 May 2015 10:15:09
0.9.15

|
mat  |
MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight |
30 Apr 2015 17:09:04
0.9.15

|
olivierd  |
Update to 0.9.15 |
18 Apr 2015 20:28:21
0.9.11

|
olivierd  |
Update to 0.9.11 |
24 Mar 2015 21:24:44
0.9.5

|
olivierd  |
Update to 0.9.5 |
15 Mar 2015 15:11:20
0.9.4

|
olivierd  |
Update to 0.9.4
ChangeLog: https://github.com/gnumdk/lollypop/releases/tag/0.9.4 |
09 Mar 2015 21:15:53
0.9.1

|
olivierd  |
Update to 0.9.1 (bugfix) |
08 Mar 2015 18:12:51
0.9.0

|
olivierd  |
Update to 0.9.0 |
08 Feb 2015 17:47:54
0.8.20

|
antoine  |
Ignore on the package builders |
07 Feb 2015 20:23:09
0.8.20

|
olivierd  |
Lollypop is music player. It provides:
* mp3/4, ogg and flac
* Genre/Cover browsing
* Genre/Artist/Cover browsing
* Search
* Main playlist
* Replay gain
WWW: http://gnumdk.github.io/lollypop/ |