non port: audio/qsampler/Makefile |
SVNWeb
|
Number of commits found: 43 |
Tue, 27 Dec 2022
|
[ 23:01 Yuri Victorovich (yuri) ] 4326d82
audio/qsampler: Update 0.9.7 -> 0.9.8
Reported by: portscout
|
Mon, 3 Oct 2022
|
[ 16:59 Yuri Victorovich (yuri) ] 0a8654d
audio/qsampler: Update 0.9.6 -> 0.9.7
Reported by: portscout
|
Sun, 11 Sep 2022
|
[ 10:20 Felix Palmen (zirias) ] ddae4e9 (Only the first 10 of 1105 ports in this commit are shown above. )
Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
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 )
|
Wed, 20 Jul 2022
|
[ 14:20 Tobias C. Berner (tcberner) ] 213b0b7 (Only the first 10 of 561 ports in this commit are shown above. )
audio: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <dmagda+libsamplerate@ee.ryerson.ca>
* <trasz@FreeBSD.org>
* Adam Weinberger
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Aleksander Fafula <alex@bsdguru.org>
* Alex Allan <alex@kamaz.org.uk>
* Alexander Botero-Lowry <alex@foxybanana.com>
* Alexander Kojevnikov <alexander@kojevnikov.com>
* Alexander Nedotsukov <bland@FreeBSD.org>
* Alexander Vereeken <Alexander88207@protonmail.com> (Only the first 15 lines of the commit message are shown above )
|
Thu, 14 Apr 2022
|
[ 05:33 Yuri Victorovich (yuri) ] 5adf5db
audio/qsampler: Update 0.9.5 -> 0.9.6
|
Sun, 9 Jan 2022
|
[ 20:21 Yuri Victorovich (yuri) ] 3b09f81
audio/qsampler: Update 0.9.4 -> 0.9.5
|
Sun, 4 Jul 2021
|
[ 20:32 Yuri Victorovich (yuri) ] f13be78
audio/qsampler: Remove unnecessary targets
|
[ 20:26 Yuri Victorovich (yuri) ] 1cee258
audio/qsampler: Change to cmake.
|
[ 19:26 Yuri Victorovich (yuri) ] 4e7e1df
audio/qsampler: Update 0.6.1 -> 0.9.4
Take maintainership.
|
Tue, 22 Jun 2021
|
[ 18:53 Kevin Bowling (kbowling) ] da3162c (Only the first 10 of 914 ports in this commit are shown above. )
graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.
PR: 246767
Reviewed by: manu, bapt
Approved by: x11
Differential Revision: https://reviews.freebsd.org/D30824
|
Mon, 10 May 2021
|
[ 04:54 Yuri Victorovich (yuri) ] 1c30a3e
audio/linuxsampler: Update 2.1.1 -> 2.2.0
|
[ 00:23 Yuri Victorovich (yuri) ] e66e263
audio/libgig: Update 4.2.0 -> 4.3.0
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Mon, 23 Dec 2019
|
[ 19:06 tcberner ]
audio/qsampler: update to 0.6.1
- Custom color (palette) theme editor introduced; color (palette) theme changes
are now effective immediately, except on default.
- Second attempt to fix the yet non-official though CMake build configuration.
- When using autotools and ./configure --with-qt=..., it is also necessary to
adjust the PKG_CONFIG_PATH environment variable
|
Fri, 18 Oct 2019
|
[ 07:38 tcberner ]
audio/qsampler: update to 0.6.0
* Added alternate yet non-official CMake build option.
* Fix HiDPI display screen effective support (Qt >= 5.6).
* Make sure compiler flags comply to c++11 as standard.
|
Fri, 2 Aug 2019
|
[ 05:57 yuri ]
audio/libgig: Update 4.1.0 -> 4.2.0
Reported by: portscout
|
Sat, 16 Mar 2019
|
[ 15:09 tcberner ]
audio/qsampler: remove QT4/QT5 Options (Qt4 deprecation)
Approved by: portmgr (implicit)
|
Wed, 16 Jan 2019
|
[ 11:13 tijl ] (Only the first 10 of 1089 ports in this commit are shown above. )
Fix Qt5 symbol version scripts to put the catch-all clause first. When
a symbol matches multiple clauses the last one takes precedence. If the
catch-all is last it captures everything. In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the
catch-all lowest priority.
Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium. Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3] The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one. If there's no such non-weak symbol the call (Only the first 15 lines of the commit message are shown above )
|
Sun, 2 Dec 2018
|
[ 15:41 rene ] (Only the first 10 of 464 ports in this commit are shown above. )
Mark QT4 ports/functionality for removal on 2019-03-15
While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.
Submitted by: tcberner
Reviewed by: adridg, jhale, rene, tcberner
Approved by: portmgr (implicit, flavor hook)
Differential Revision: https://reviews.freebsd.org/D17741
|
Thu, 28 Jun 2018
|
[ 17:39 tcberner ] (Only the first 10 of 1416 ports in this commit are shown above. )
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
USES= qt:4
USE_QT= foo bar
ports depending on Qt5 will use
USES= qt:5
USE_QT= foo bar
PR: 229225
Exp-run by: antoine
Reviewed by: mat
Approved by: portmgr (antoine)
Differential Revision: -https://reviews.freebsd.org/D15540
|
Sat, 13 Jan 2018
|
[ 01:01 swills ]
update to version 0.5.0
Submitted by: Le Baron d'Merde <lbdm@privacychain.ch>
Differential Revision: https://reviews.FreeBSD.org/D13876
|
Thu, 21 Dec 2017
|
[ 18:41 yuri ]
audio/libgig: Update to 4.1.0
Reported by: portscout
Approved by: adamw (mentor)
Differential Revision: https://reviews.freebsd.org/D13569
|
Wed, 22 Nov 2017
|
[ 17:39 yuri ] (Only the first 10 of 17 ports in this commit are shown above. )
audio/libgig: Update to 4.0.0; audio/linuxsampler: Update to 2.0.0; Bumped
PORTREVISIONs of audio/gigedit, audio/qsampler
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D13162
|
Fri, 8 Apr 2016
|
[ 12:37 mat ]
Update to 0.4.0.
PR: 208609
Submitted by: tkato432 yahoo com
Sponsored by: Absolight
|
Fri, 1 Apr 2016
|
[ 13:29 mat ] (Only the first 10 of 1009 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat: portmgr
Sponsored by: Absolight
|
Tue, 12 Jan 2016
|
[ 16:20 amdmi3 ] (Only the first 10 of 791 ports in this commit are shown above. )
Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by: portmgr blanket
|
Fri, 9 Oct 2015
|
[ 23:03 marino ]
audio/qsampler: Upgrade version 0.3.0 => 0.3.1
PR: 199218
submitted by: ports fury
|
Thu, 2 Apr 2015
|
[ 22:56 pawel ]
Update to version 0.3.0
|
Thu, 26 Feb 2015
|
[ 12:50 amdmi3 ]
- Switch to linguisttools_build
|
Mon, 16 Jun 2014
|
[ 14:18 amdmi3 ]
- Convert audio/libgig to USES=libtool, drop .la files, strip library
- Bump dependent ports as .so version has changed
|
Tue, 11 Mar 2014
|
[ 02:40 miwi ]
- Update to 0.2.3
PR: 187293
Submitted by: Ports Fury
|
Sat, 28 Dec 2013
|
[ 21:52 antoine ]
Stage support
|
Thu, 21 Nov 2013
|
[ 15:55 makc ]
- Get rid of QMAKEFLAGS
- Use options helpers
- Use globally provided LRELEASE/LUPDATE
- Convert LIB_DEPENDS to new style
|
Fri, 20 Sep 2013
|
[ 14:36 bapt ] (Only the first 10 of 879 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio)
|
Fri, 30 Aug 2013
|
[ 23:01 bapt ] (Only the first 10 of 222 ports in this commit are shown above. )
Convert audio from USE_GMAKE to USES=gmake
While here:
- Trim headers
- Convert some USE_GNOME=pkgconfig to USES=pkgconfig
- Add some missing pkgconf dependencies
- Convert some USE_GNOME=gnomehack to USES=pathfix
|
Wed, 14 Aug 2013
|
[ 22:35 ak ] (Only the first 10 of 1725 ports in this commit are shown above. )
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery)
|
Wed, 6 Jun 2012
|
[ 06:44 miwi ] (Only the first 10 of 587 ports in this commit are shown above. )
- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4
Review by: bapt, David Naylor (kde team)
|
Fri, 1 Jun 2012
|
[ 05:26 dinoex ] (Only the first 10 of 4371 ports in this commit are shown above. )
- update png to 1.5.10
|
Tue, 18 Oct 2011
|
[ 13:04 ehaupt ]
- Update MASTER_SITES and WWW: line
- Add LICENSE
- Rearrange QT_COMPONENTS
- Respect CFLAGS
- Add MAKE_JOBS_SAFE
- Strip binaries
PR: 161645
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
|
Mon, 25 Oct 2010
|
[ 20:09 trasz ] (Only the first 10 of 53 ports in this commit are shown above. )
Drop maintainership for ports I can't maintain anymore.
|
Sun, 28 Mar 2010
|
[ 06:47 dinoex ] (Only the first 10 of 4470 ports in this commit are shown above. )
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi
|
Mon, 24 Aug 2009
|
[ 15:35 trasz ]
Qt-based front end to LinuxSampler.
WWW: http://www.linuxsampler.org/
|
Number of commits found: 43 |