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.

non port: graphics/py-ming/Makefile

Number of commits found: 63

Friday, 30 Jun 2023
07:04 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/py-ming: Fix build with Clang 15 and remove the workaround

- Update WWW

./ming_wrap.c:2427:18: error: incompatible integer to pointer conversion
assigning to 'void *' from 'int' [-Wint-conversion]
    type_pointer = PyCObject_Import((char*)"swig_runtime_data"
SWIG_RUNTIME_VERSION,
                 ^
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:2497:13: error: incompatible integer to pointer conversion
initializing 'PyObject *' (aka 'struct _object *') with an expression of type
'int' [-Wint-conversion]
  PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module,
SWIG_Python_DestroyModule);
            ^        
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:2525:11: error: incompatible integer to pointer conversion
assigning to 'PyObject *' (aka 'struct _object *') from 'int' [-Wint-conversion]
      obj = PyCObject_FromVoidPtr(descriptor, NULL);
          ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:3886:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:3908:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:4302:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:4352:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:4404:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:4411:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg2 = PyFile_AsFile(obj1);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:7255:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:7398:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
./ming_wrap.c:8855:10: error: incompatible integer to pointer conversion
assigning to 'FILE *' (aka 'struct __sFILE *') from 'int' [-Wint-conversion]
    arg1 = PyFile_AsFile(obj0);
         ^ ~~~~~~~~~~~~~~~~~~~
23 warnings and 12 errors generated.
commit hash: 9b6337dcf5c6d77c50cef7972d180cff06c2cac6 commit hash: 9b6337dcf5c6d77c50cef7972d180cff06c2cac6 commit hash: 9b6337dcf5c6d77c50cef7972d180cff06c2cac6 commit hash: 9b6337dcf5c6d77c50cef7972d180cff06c2cac6 9b6337d
Tuesday, 27 Jun 2023
19:34 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>
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb 3d9a815
Monday, 5 Jun 2023
21:07 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/py-ming: Convert REINPLACE_CMD to patch file
commit hash: 4bb09c68982fc6c2289a0425c16012ea37f8fddd commit hash: 4bb09c68982fc6c2289a0425c16012ea37f8fddd commit hash: 4bb09c68982fc6c2289a0425c16012ea37f8fddd commit hash: 4bb09c68982fc6c2289a0425c16012ea37f8fddd 4bb09c6
18:09 Muhammad Moinur Rahman (bofh) search for other commits by this committer
graphics/py-ming: Fix build with llvm15

Approved by:	portmgr (blanket)
commit hash: 365553bf46d1d4de026b4fbe2ebff8628707b285 commit hash: 365553bf46d1d4de026b4fbe2ebff8628707b285 commit hash: 365553bf46d1d4de026b4fbe2ebff8628707b285 commit hash: 365553bf46d1d4de026b4fbe2ebff8628707b285 365553b
Wednesday, 7 Sep 2022
21:10 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.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:22 Tobias C. Berner (tcberner) search for other commits by this committer
graphics: remove 'Created by' lines

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

  *  "Waitman Gobble" <uzimac@da3m0n8t3r.com>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Abel Chow <ozsanh45vds001@sneakemail.com>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Ade Lovett <ade@lovett.com>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Aldis Berjoza <aldis@bsdroot.lv>
  *  Alex Hayward <xelah@xelah.com>
  *  Alex Ivasyuv <siegerstein@pochta.ru>
  *  Alex Samorukov <samm@os2.kiev.ua>
  *  Alexander Gromnitsky
  *  Alexander Kojevnikov <alexander@kojevnikov.com>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Nedotsukov <bland@FreeBSD.org>
  *  Alexander Nedotsukov <bland@mail.ru>
  *  Alexander Y. Grigoryev <alexander.4mail@gmail.com>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Alonso Cardenas Marquez <acm@FreeBSD.org>
  *  Anatoliy Dmytriyev <tolid@plab.ku.dk>
  *  Anatoly Borodin <anatoly.borodin@gmail.com>
  *  Anders Nordby <anders@fix.no>
  *  Andras Horvath <han@log69.com>
  *  Andreas Daehn <ad001@uni-rostock.de>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrey Slusar <anray@FreeBSD.org>
  *  Andrey Zakhvatov
  *  Anes Mukhametov <anes@anes.su>
  *  Anonymous <swell.k@gmail.com>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
  *  Arjan van Leeuwen <avleeuwen@piwebs.com>
  *  Ashish SHUKLA <ashish@FreeBSD.org>
  *  Bill Fumerola <billf@chc-chimes.com>
  *  Björn König <bkoenig@alpha-tierchen.de>
  *  Brad Hendrickse <bradh@iafrica.com>
  *  Bruce M Simpson <bms@FreeBSD.org>
  *  Carlos Eduardo G. Carvalho <cartola@openit.com.br>
  *  Charlie Kester <corky1951@comcast.net>
  *  Choe, Cheng-Dae
  *  Choe, Cheng-Dae <whitekid@gmail.com>
  *  Chris D. Faulhaber <jedgar@FreeBSD.org>
  *  Chris D. Faulhaber <jedgar@fxp.org>
  *  Chris Piazza <cpiazza@FreeBSD.org>
  *  Christopher Key <cjk32@cam.ac.uk>
  *  Chuck Robey <chuckr@FreeBSD.org>
  *  Corey Smith <corsmith@gmail.com>
  *  Dan Langille <dvl@FreeBSD.org>
  *  Daniel O'Connor <darius@dons.net.au>
  *  Daniel Roethlisberger <daniel@roe.ch>
  *  Danilo Egea Gondolfo <danilo@FreeBSD.org>
  *  Dave Cottlehuber <dch@skunkwerks.at>
  *  David Bremner <bremner@unb.ca>
  *  David Gilbert <dgilbert@velocet.ca>
  *  David Naylor <dbn@FreeBSD.org>
  *  David Yeske <dyeske@gmail.com>
  *  Denis Barov <dindin@dindin.ru>
  *  Denis Podolskiy <bytestore@yandex.ru>
  *  Dennis Herrmann <adox@mcx2.org>
  *  Devaux Fabien <fab@gcu.info>
  *  Dmitry Sivachenko <dima@Chg.RU>
  *  Dominik Brettnacher <domi@nonsensss.de>
  *  Donn Miller <dmmiller@cvzoom.net>
  *  Douglas Carmichael <dcarmich@mcs.com>
  *  Douglas K. Rand <rand@meridian-enviro.com>
  *  Edwin Groothuis <edwin@mavetju.org>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Emanuel Haupt <ehaupt@critical.ch>
  *  Emil J.V. Björsell (Jev)
  *  Emmanuel Vadot <manu@FreeBSD.org>
  *  Eric Anholt <anholt@FreeBSD.org>
  *  Eric Freeman <freebsdports@chillibear.com>
  *  Eric P. Scott <eps+pbug0703@ana.com>
  *  Erwin Lansing <erwin@FreeBSD.org>
  *  Eugene Mychlo <myc@barev.net>
  *  Fernan Aguero <fernan@iib.unsam.edu.ar>
  *  Franz Klammer <klammer@webonaut.com>
  *  FreeBSD GNOME Team <gnome@FreeBSD.org>
  *  G. Adam Stanislav <adam@whizkidtech.net>
  *  Garrett Wollman <wollman@lcs.mit.edu>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  Gerrit Beine (<gerrit.beine@gmx.de>)
  *  Gerrit Beine (<tux@pinguru.net>)
  *  Glenn Johnson
  *  Greg Lewis <glewis@FreeBSD.org>
  *  Gustau Perez <gustau.perez@gmail.com>
  *  Gustau Pérez i Querol <gustau.perez@gmail.com>
  *  Gvozdikov Veniamin <g.veniamin@googlemail.com>
  *  Hernan Di Pietro <hernan.di.pietro@gmail.com>
  *  Hiroto Kagotani <hiroto.kagotani@gmail.com>
  *  Horia Racoviceanu <horia@racoviceanu.com>
  *  Hye-Shik Chang <perky@fallin.lv>
  *  Hye-Shik Chang <perky@python.or.kr>
  *  Igor Pokrovsky <ip@doom.homeunix.org>
  *  Igor Pokrovsky <tiamat@comset.net>
  *  James FitzGibbon <jfitz@FreeBSD.org>
  *  Jamie Hermans <jamie@hermans.ca>
  *  Jan Henrik Sylvester <me@janh.de>
  *  Janni
  *  Janos Mohacsi <janos.mohacsi@bsd.hu>
  *  Jason Helfman <jgh@FreeBSD.org>
  *  Jean-Marc Zucconi <jmz@FreeBSD.org>
  *  Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
  *  Jean-Yves Lefort <jylefort@FreeBSD.org>
  *  Jean-Yves Lefort <jylefort@brutele.be>
  *  Jeff Molofee
  *  Jeremy Norris <ishmael127@home.com>
  *  Jeremy Norris <ishmael27@home.com>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Johannes Dieterich <jmd@FreeBSD.org>
  *  Johannes Jost Meixner <johannes@perceivon.net>
  *  Johannes Meixner <johannes@perceivon.net>
  *  John Hay
  *  John McAree <john@mcaree.org>
  *  John Prather
  *  John Reynolds <johnjen@reynoldsnet.org>
  *  Joris Dedieu <joris.dedieu@gmail.com>
  *  Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
  *  Jose Jachuf <jjachuf@gmail.com>
  *  Joseph Koshy <koshy@india.hp.com>
  *  Juergen Unger <j.unger@choin.net>
  *  KANOU Hiroki <kanou@mil.allnet.ne.jp>
  *  KIRIYAMA Kazuhiko
  *  Kay Lehmann
  *  Kevin Golding <ports@caomhin.org>
  *  Kimura Fuyuki <fuyuki@hadaly.org>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Kris Kennaway <kris@FreeBSD.org>
  *  Kris Moore <kmoore@FreeBSD.org>
  *  Kubilay Kocak <koobs@FreeBSD.org>
  *  Kurt Kanzenbach <kurt@kmk-computers.de>
  *  Kyle Martin <mkm@ieee.org>
  *  Laurent Courty
  *  Leonardo Martins <lmartins@nepe.eee.ufg.br>
  *  Lev Serebryakov <lev@FreeBSD.org>
  *  Malte Lance <malte.lance@gmx.net>
  *  Marc Fonvieille <blackend@FreeBSD.org>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> et al.
  *  Mark Atkinson <atkin901@gmail.com>
  *  Mark Murray <markm@FreeBSD.org>
  *  Mark Pulford <mark@kyne.com.au>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Martin Dieringer <martin.dieringe@gmx.de>
  *  Martin Dieringer <martin.dieringer@gmx.de>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Neubauer <m.ne@gmx.net>
  *  Martin Sugioarto <martin.sugioarto@udo.edu>
  *  Martin Tournoij <carpetsmoker@rwxrwxrwx.net>
  *  Martin Tournoij <carpetsmoker@xs4all.nl>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Mateusz Piotrowski <0mp@FreeBSD.org>
  *  Mathieu Arnold
  *  Matthew Luckie <mjl@luckie.org.nz>
  *  Matthew X. Economou <xenophon+fbsdports@irtnog.org>
  *  Matthias Fechner <mfechner@FreeBSD.org>
  *  Matthieu Volat <mazhe@alkumuna.eu>
  *  Maurice Castro <maurice@serc.rmit.edu.au>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Michael Gmelin <freebsd@grem.de>
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Michael Johnson <ahze@ahze.net>
  *  Michael Nottebrock <lofi@FreeBSD.org>
  *  Michael Reifenberger <mr@FreeBSD.org>
  *  Mike Krutov <neko@takino.org>
  *  Mikhail T. <mi@aldan.algebra.com>
  *  Mikhail Teterin <mi@aldan.algebra.com>
  *  Muhammad Moinur Rahman <5u623l20@gmail.com>
  *  NAKATA Maho <maho@FreeBSD.org>
  *  Naram Qashat <cyberbotx@cyberbotx.com>
  *  Nick Hilliard <nick@foobar.org>
  *  Nicola Vitale <nivit@FreeBSD.org>
  *  Nicola Vitale <nivit@email.it>
  *  Nikolay Korotkiy <sikmir@gmail.com>
  *  Norio Suzuki <nosuzuki@e-mail.ne.jp>
  *  Oliver Heesakkers <dev2@heesakkers.info>
  *  Oliver Lehmann <oliver@FreeBSD.org>
  *  Olivier Duchateau
  *  Paul Everlund
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Pedro F. Giffuni
  *  Pedro Garcia Freitas <sawp@sawp.com.br>
  *  Pedro Giffuni
  *  Pedro Giffuni <pfg@FreeBSD.org>
  *  Pete Fritchman <petef@FreeBSD.org>
  *  Pete Fritchman <petef@databits.net>
  *  Peter Ankerstal <peter@pean.org>
  *  Peter Jeremy <peterjeremy@optushome.com.au>
  *  Peter Schmiedeskamp <pschmied@qwest.net>
  *  Phil Phillips <pphillips@experts-exchange.com>
  *  Pietro Cerutti <gahr@FreeBSD.org>
  *  Pietro Cerutti <gahr@gahr.ch>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Piotr Smyrak <smyru@heron.pl>
  *  Piotr Smyrak, piotr.smyrak@heron.pl
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Quentin Stievenart <acieroid@awesom.eu>
  *  R Joseph Wright <rjoseph@mammalia.org>
  *  Radim Kolar
  *  Rainer Hurling <rhurlin@gwdg.de>
  *  Randall Hopper
  *  Randall Hopper <aa8vb@ipass.net>
  *  Randall Hopper <aa8vb@nc.rr.com>
  *  Reinier de Blois <rddeblois@gmail.com>
  *  Richard Hwang <rhwang@bigpanda.com>, Mikhail Teterin
<mi@aldan.algebra.com>, Jun-ichiro itojun Itoh <itojun@itojun.org>
  *  Rick Elrod <codeblock@eighthbit.net>
  *  Rob Farmer <rfarmer@predatorlabs.net>
  *  Rod Person <rodperson@rodperson.com>
  *  Roland Jesse <roland.jesse@gmx.net>
  *  Romain Tartiere <romain@FreeBSD.org>
  *  Ron van Daal
  *  Ronald Kuehn <rk@ronald.org>
  *  Rong-En Fan <rafan@infor.org>
  *  Rusmir Dusko <nemysis@FreeBSD.org>
  *  Rusty Nejdl <rnejdl@ringofsaturn.com>
  *  Ryan Melcer <rmelcer@iteris.com>
  *  Ryan Steinmetz <zi@FreeBSD.org>
  *  Sahil Tandon <sahil@FreeBSD.org>
  *  Sam Lawrance
  *  Satoshi Asami <asami@FreeBSD.org>
  *  Satoshi Taoka <taoka@FreeBSD.org>
  *  Seiichirou Hiraoka
  *  Serge Negodyuck <petr@petrovich.kiev.ua>
  *  Sergey A. Osokin <osa@FreeBSD.org>
  *  Sergey Skvortsov <skv@protey.ru>
  *  Sergey V. Dyatko <sergey.dyatko@gmail.com>
  *  Shane Ambler
  *  Shaun Amott <shaun@inerd.com>
  *  Shell Hung <shell@shellhung.org>
  *  Shigeyuki FUKUSHIMA <shige@FreeBSD.org>
  *  Simun Mikecin <numisemis@yahoo.com>
  *  Sofian Brabez <sbrabez@gmail.com>
  *  Stanislav Sedov <ssedov@mbsd.msk.ru>
  *  Stanislav Sedov <stas@FreeBSD.org>
  *  Stas Timokhin <devel@stasyan.com>
  *  Stas Timokhin <stast@bsdportal.ru>
  *  Stefan Walter <sw@gegenunendlich.de>
  *  Stephen Roome <steve@pepcross.com>
  *  Steve Wills <steve@meatwad.mouf.net>
  *  Steve Wills <swills@FreeBSD.org>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Steven Wallace <swallace@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  TAKAHASHI Kaoru <kaoru@kaisei.org>
  *  TAKATSU Tomonari <tota@FreeBSD.org>
  *  TAKATSU Tomonari <tota@rtfm.jp>
  *  TAOKA Fumiyoshi
  *  TATEISHI Katsuyuki <katsu@iec.hiroshima-u.ac.jp>
  *  Tassilo Philipp <tphilipp@potion-studios.com>
  *  Thibault Payet <monwarez@mailoo.org>
  *  Thierry Thomas <thierry@pompo.net>
  *  Thomas Dreibholz <dreibh@iem.uni-due.de>
  *  Thomas Gellekum <tg@FreeBSD.org>
  *  Thomas Hurst <tom@hur.st>
  *  Tilman Linneweh <arved@FreeBSD.org>
  *  Tim Bishop <tim@bishnet.net>
  *  Tod McQuillin <devin@spamcop.net>
  *  Tomoyuki Sakurai <cherry@trombik.org>
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  UMENO Takashi <umeno@rr.iij4u.or.jp>
  *  Ulrich Spoerlein <q@uni.de>
  *  Vasil Dimov <vd@FreeBSD.org>
  *  Veniamin Gvozdikov <vg@FreeBSD.org>
  *  Vincent Tantardini <vinc@FreeBSD-fr.org>
  *  Vladimir Chukharev
  *  Wen Heping <wen@FreeBSD.org>
  *  Wen Heping <wenheping@gmail.com>
  *  Wen heping <wenheping@gmail.com>
  *  Wen heping<wenheping@gmail.com>
  *  Will Andrews <andrews@technologist.com>
  *  Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
  *  Ying-Chieh Liao <ijliao@FreeBSD.org>
  *  Yinghong Liu <relaxbsd@gmail.com>
  *  Yinghong.Liu <relaxbsd@gmail.com>
  *  Yuan-Chung Hsiao <ychsiao@ychsiao.org>
  *  Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
  *  Yukihiro Nakai <nacai@iname.com>
  *  Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp>
  *  Yuri Victorovich <yuri@FreeBSD.org>
  *  Yuri Victorovich <yuri@rawbw.com>
  *  Yuu Yashiki
  *  Yuzo FURUKAWA <hurukawa@kuee.kyoto-u.ac.jp>
  *  Zhihao Yuan <lichray@gmail.com>
  *  Zsolt Udvari <udvzsolt@gmail.com>
  *  ache
  *  alepulver
  *  anhot
  *  antonakis@gmail.com
  *  argv[0] (Iouri V. Ivliev)
  *  arved
  *  asami
  *  bf <bf@FreeBSD.org>
  *  bmc@WillsCreek.COM
  *  buganini@gmail.com
  *  cacho@mexicano.gdl.iteso.mx
  *  cartola (Carlos E. G. Carvalho)
  *  cartola@openit.com.br
  *  cfs@ing.puc.cl (original)
  *  chinsan
  *  chinsan <chinsan.tw@gmail.com>
  *  coryking
  *  cracauer@cons.org "Martin Cracauer"
  *  demon@FreeBSD.org
  *  dillon
  *  dom@happygiraffe.net
  *  erich@FreeBSD.org
  *  fenner
  *  fernan@iib.unsam.edu.ar
  *  frankch@waru.life.nthu.edu.tw
  *  gahr
  *  gary@hotlava.com
  *  gerard
  *  giffunip@asme.org
  *  glebius@FreeBSD.org
  *  gurkan@phys.ethz.ch
  *  hsu
  *  ijliao
  *  jamie
  *  jedgar@FreeBSD.org
  *  jeff@cetlink.net
  *  jjachuf@gmail.com
  *  jmz
  *  johalun
  *  johan
  *  johans
  *  kwm@FreeBSD.org
  *  lbartoletti <lbartoletti@FreeBSD.org>
  *  lesi@FreeBSD.org
  *  lichray@gmail.com
  *  luigi@FreeBSD.org
  *  maho@FreeBSD.org
  *  marcus@FreeBSD.org
  *  mb@imp.ch
  *  mi
  *  mm@FreeBSD.org
  *  nemysis <nemysis@gmx.ch>
  *  nik
  *  nork@FreeBSD.org
  *  olgeni@FreeBSD.org
  *  paulo@isr.uc.pt
  *  petef@FreeBSD.org
  *  pgs
  *  ports@FreeBSD.org
  *  proff@iq.org
  *  punkt.de Hosting Team <mops@punkt.de>
  *  rfarmer@predatorlabs.net
  *  roberto
  *  roland.jesse@gmx.net
  *  rpsfa@rit.edu
  *  saper@system.pl
  *  smace
  *  sobomax
  *  stas
  *  stb@lassitu.de
  *  theraven@FreeBSD.org
  *  thierry@pompo.net
  *  tobez
  *  trasz <trasz@pin.if.uz.zgora.pl>
  *  trevor
  *  vanilla
  *  will
  *  wolman@cs.washington.edu
  *  yukinopo@livedoor.com

With hat:	portmgr
commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 022e658
Monday, 1 Nov 2021
13:59 Dmitry Marakasov (amdmi3) search for other commits by this committer
graphics/py-ming: limit supported python versions

checking for the distutils Python package... no
configure: error: cannot import Python module "distutils".
Please check your Python installation. The error was:
<string>:1: DeprecationWarning: The distutils package is deprecated and slated
for removal in Python 3.12. Use setuptools or check PEP 632 for potential
alternatives

Approved by:	portmgr blanket
commit hash: 6795193591770b8706b7c2396e18e24f16d2ad8f commit hash: 6795193591770b8706b7c2396e18e24f16d2ad8f commit hash: 6795193591770b8706b7c2396e18e24f16d2ad8f commit hash: 6795193591770b8706b7c2396e18e24f16d2ad8f 6795193
Monday, 25 Oct 2021
15:57 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/py-ming: Cosmetic change
commit hash: 04b574d27e23bf7e8b0585b43d8932e6f5b9bd42 commit hash: 04b574d27e23bf7e8b0585b43d8932e6f5b9bd42 commit hash: 04b574d27e23bf7e8b0585b43d8932e6f5b9bd42 commit hash: 04b574d27e23bf7e8b0585b43d8932e6f5b9bd42 04b574d
Tuesday, 21 Sep 2021
12:57 Bernhard Froehlich (decke) search for other commits by this committer
graphics/py-ming: Add CPE information

Approved by:    portmgr (blanket)
commit hash: 5c27b31ee5efc466de7b94c707ddd3b0451ac33f commit hash: 5c27b31ee5efc466de7b94c707ddd3b0451ac33f commit hash: 5c27b31ee5efc466de7b94c707ddd3b0451ac33f commit hash: 5c27b31ee5efc466de7b94c707ddd3b0451ac33f 5c27b31
Sunday, 19 Sep 2021
05:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/py-ming: Replace configure.in patch with upstream one

- Remove no-op BINARY_ALIAS

Obtained
from:	https://github.com/libming/libming/commit/a89a619e187ebe070db2a1760f3b90489bfff382
commit hash: e85cafc787e87081a359f5cafb448e97f07637c6 commit hash: e85cafc787e87081a359f5cafb448e97f07637c6 commit hash: e85cafc787e87081a359f5cafb448e97f07637c6 commit hash: e85cafc787e87081a359f5cafb448e97f07637c6 e85cafc
Tuesday, 10 Aug 2021
15:12 Tobias C. Berner (tcberner) search for other commits by this committer
graphics/py-ming: prepare for freetype2 update

- freetype2 will no longer ship freetype-config (which was a pkg-config
wrapper) in the near future -- use pkg-config to gather the required
flags.

PR:             251512
commit hash: 8785f2bd03ae6cbc94eb8b5a2a0c770431e1f0c2 commit hash: 8785f2bd03ae6cbc94eb8b5a2a0c770431e1f0c2 commit hash: 8785f2bd03ae6cbc94eb8b5a2a0c770431e1f0c2 commit hash: 8785f2bd03ae6cbc94eb8b5a2a0c770431e1f0c2 8785f2b
Sunday, 18 Apr 2021
05:43 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/py-ming: Cosmetic change
commit hash: 586d2770b9cbf784f9b1f35a9f59f5d2a5760d85 commit hash: 586d2770b9cbf784f9b1f35a9f59f5d2a5760d85 commit hash: 586d2770b9cbf784f9b1f35a9f59f5d2a5760d85 commit hash: 586d2770b9cbf784f9b1f35a9f59f5d2a5760d85 586d277
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Monday, 28 Dec 2020
23:02 antoine search for other commits by this committer
Drop python 2.7 support from a few ports

With hat:	portmgr
Original commitRevision:559531 
Thursday, 24 Dec 2020
13:46 kai search for other commits by this committer
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)
Original commitRevision:559094 
Monday, 8 May 2017
12:44 sunpoet search for other commits by this committer
Update to 0.4.8

Changes:	https://github.com/libming/libming/blob/master/NEWS
		http://www.libming.org/Releases
Original commitRevision:440422 
Friday, 30 Sep 2016
19:24 tijl search for other commits by this committer
Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.
USES=localbase:ldflags can be used to set LDFLAGS.  Normally LDFLAGS
appears too early on the command line causing some ports to link with
their own libraries in LOCALBASE (if installed) instead of WRKSRC.

Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as
possible after anything a port Makefile might set.  Use _USES_POST
instead of .include in libedit.mk and libarchive.mk so things like
'USES=libedit localbase:ldflags' work correctly.

Fix some issues with LIBS in some ports.

Switch ports that don't support LIBS to localbase:ldflags.

PR:		212987
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:423014 
Thursday, 14 Apr 2016
16:38 sunpoet search for other commits by this committer
- Use default WRKSRC
Original commitRevision:413273 
Wednesday, 13 Apr 2016
10:36 jbeich search for other commits by this committer
Change default directory used by USES=autoreconf to WRKSRC

PR:		208294
Exp-run by:	antoine
Reviewed by:	tijl
Approved by:	portmgr (mat via D4157)
Differential Revision:	https://reviews.freebsd.org/D4169
Original commitRevision:413185 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Sunday, 17 Jan 2016
13:12 sunpoet search for other commits by this committer
- Add PORTSCOUT

Sponsored by:	PortsCamp Taiwan
Original commitRevision:406365 
Tuesday, 8 Dec 2015
09:05 mat search for other commits by this committer
Don't use GH_TAGNAME when DISTVERSION* variables can be used.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:403255 
Thursday, 3 Dec 2015
20:01 antoine search for other commits by this committer
Update giflib to 5.1.1

PR:		204492
Original commitRevision:402898 
Tuesday, 27 Oct 2015
15:49 sunpoet search for other commits by this committer
- Allow concurrent installation (USE_PYTHON=concurrent)
- Fix build with Python 3.x
Original commitRevision:400255 
Monday, 19 Oct 2015
20:18 sunpoet search for other commits by this committer
- Change language bindings (p5-ming and py-ming) from slave ports to normal
ports
- Use USES=localbase
- Convert to new options target helper
- Cleanup Makefile
Original commitRevision:399726 
Thursday, 8 Oct 2015
18:44 sunpoet search for other commits by this committer
- Update to 0.4.7
- Add LICENSE_FILE

Changes:	https://github.com/libming/libming/blob/master/NEWS
Original commitRevision:398861 
Wednesday, 14 Jan 2015
18:19 antoine search for other commits by this committer
Update graphics/giflib to 5.0.5

Differential Revision:	https://reviews.freebsd.org/D1361
Submitted by:	bapt
Reviewed by:	self
Exp-run by:	self
Original commitRevision:377033 
Monday, 8 Dec 2014
16:48 tijl search for other commits by this committer
Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it.  Bump PORTREVISION on their dependent
ports except the ones that depend on these:

audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt

In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:374303 
Friday, 22 Aug 2014
19:08 tijl search for other commits by this committer
- graphics/ming: Add USES=libtool and bump dependent ports
- graphics/autotrace: Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- graphics/pencil: Fix dependencies
Original commitRevision:365687 
Friday, 15 Aug 2014
03:43 sunpoet search for other commits by this committer
- Convert PYTHON_FEATURES to USE_PYTHON (which was landed several hours ago)

Notified by:	koobs, wg
Original commitRevision:364929 
03:01 sunpoet search for other commits by this committer
- Use USES=python
Original commitRevision:364903 
Tuesday, 18 Mar 2014
16:20 sunpoet search for other commits by this committer
- Fix PLIST: use NONEXISTENT instead of empty string [1]
- Strip shared library in post-install: phase
- Bump PORTREVISION for package change

Suggested by:	vd [1]
Original commitRevision:348580 
Friday, 14 Feb 2014
19:41 sunpoet search for other commits by this committer
- Use PYDISTUTILS_AUTOPLIST
Original commitRevision:344302 
Monday, 13 Jan 2014
21:00 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)
Original commitRevision:339634 
Sunday, 17 Nov 2013
10:33 sunpoet search for other commits by this committer
- Add LICENSE
- Support STAGEDIR
Original commitRevision:334072 
Friday, 20 Sep 2013
18:35 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
Original commitRevision:327733 
Saturday, 7 Sep 2013
17:53 sunpoet search for other commits by this committer
- Cosmetic change
Original commitRevision:326670 
Thursday, 22 Aug 2013
15:21 sunpoet search for other commits by this committer
- Update to 0.4.5
- Add WWW

Changes:	https://github.com/libming/libming/blob/master/NEWS
Original commitRevision:325206 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Tuesday, 21 Feb 2012
14:10 sunpoet search for other commits by this committer
- Restrict USE_PYTHON range
- Move post-patch: to master port (graphics/ming)
Original commit
Wednesday, 15 Feb 2012
07:49 sunpoet search for other commits by this committer
- Update to 0.4.4
- Remove distinfo: no need for a slave port
- Take maintainership

Changes:        https://github.com/libming/libming/blob/master/NEWS
Original commit
Sunday, 12 Feb 2012
16:50 rm search for other commits by this committer
- convert to using PYTHON_SITELIBDIR (non-functional change)
Original commit
Monday, 8 Aug 2011
01:59 swills search for other commits by this committer
- Fix fetch
- Update to 0.4.3
- Convert to slave of graphics/ming
Original commit
Tuesday, 2 Aug 2011
13:47 bapt search for other commits by this committer
Mark BROKEN: Does not fetch
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Saturday, 22 Aug 2009
00:23 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with G
Original commit
Monday, 30 Jul 2007
09:42 alexbl search for other commits by this committer
 - Make Python 2.5.1 the default Python version
 - Add significantly better support in bsd.python.mk for working with
   Python Eggs and the easy_install system

Tested by:      pointyhat runs
Approved by:    pav (portmgr)
Most work by:   perky
Thanks to:      pav
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Tuesday, 18 Apr 2006
18:56 garga search for other commits by this committer
- Update to 0.3.0

PR:             ports/96006
Submitted by:   Ports Fury
Original commit
Friday, 11 Nov 2005
01:18 linimon search for other commits by this committer
With portmgr hat on, reset maintainership of knu's ports since he has
been inactive more than 6 months.  We hope to see him back sometime.
Original commit
Sunday, 30 May 2004
08:40 kris search for other commits by this committer
Add missing USE_PERL5_BUILD
Original commit
Tuesday, 11 Mar 2003
09:00 knu search for other commits by this committer
Change BUILD_DEPENDS to EXTRACT_DEPENDS and unbreak.

Submitted by:   bento
Original commit
Tuesday, 18 Feb 2003
05:52 knu search for other commits by this committer
De-pkg-comment my non-ruby ports as well.
Original commit
Tuesday, 18 Sep 2001
07:33 knu search for other commits by this committer
Do not install broken examples.    
Original commit
06:57 knu search for other commits by this committer
Update ming to 0.2a.    
Original commit
Friday, 6 Jul 2001
20:57 knu search for other commits by this committer
Upate ming to 0.1.1.    
Original commit
Tuesday, 20 Mar 2001
09:32 knu search for other commits by this committer
Update to Ming 0.1.0.    
Original commit
Sunday, 21 Jan 2001
05:57 knu search for other commits by this committer
Update to Ming 0.0.9b.  Now it creates Flash 4 movies.    
Original commit
Saturday, 28 Oct 2000
12:56 knu search for other commits by this committer
Properly rmdir share/examples/%%PYTHON_VERSION%% on deinstallation.    
Original commit
Wednesday, 25 Oct 2000
05:32 knu search for other commits by this committer
Update to 0.0.3a.    
Original commit
Tuesday, 17 Oct 2000
10:10 knu search for other commits by this committer
Bump PORTREVISION, considering the removal of chmod 755 on a shlib.    
Original commit
10:04 knu search for other commits by this committer
Respect CC and CFLAGS.    
Original commit
Monday, 16 Oct 2000
11:42 knu search for other commits by this committer
Add py-ming, Python module for the Ming library which allows you to   create
Flash (TM) movies.    
Original commit

Number of commits found: 63