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
osmium C++/Javascript framework for working with OSM files
git20130522_15 astro Deleted on this many watch lists=0 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 git20130522_15Version of this port present on the latest quarterly branch.
Maintainer: amdmi3@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2013-05-27 16:47:56
Last Update: 2016-11-23 16:43:28
SVN Revision: 426943
Also Listed In: devel geography
License: GPLv3 LGPL3
WWW:
http://wiki.openstreetmap.org/wiki/Osmium
Description:
Osmium is a C++ framework for working with OSM data files. Osmium can read OSM data in XML or binary format (PBF) and can call different handlers for each OSM object. WWW: http://wiki.openstreetmap.org/wiki/Osmium
Homepage    cgit ¦ GitHub ¦ 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:
  • osmium>0:astro/osmium
No installation instructions:
This port has been deleted.
PKGNAME: osmium
Flavors: there is no flavor information for this port.
distinfo:
SHA256 (joto-osmium-git20130522-1a5bb26_GH0.tar.gz) = 27f45cbf05d2f7de83452505d1bf5dbef22c1d413c97e327bdbfa706977e91e2 SIZE (joto-osmium-git20130522-1a5bb26_GH0.tar.gz) = 149373

No package information for this port in our database
Sometimes this happens. Not all ports have packages.
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. sparsehash>=2.0.2 : devel/sparsehash
Runtime dependencies:
  1. sparsehash>=2.0.2 : devel/sparsehash
Library dependencies:
  1. libgdal.so : graphics/gdal
  2. libboost_regex.so : devel/boost-libs
  3. libsqlite3.so : databases/sqlite3
  4. libexpat.so : textproc/expat2
  5. libgeos.so : graphics/geos
  6. libprotobuf.so : devel/protobuf
  7. libv8.so : lang/v8
  8. libshp.so : devel/shapelib
  9. libicuuc.so : devel/icu
There are no ports dependent upon this port

Configuration Options:
===> The following configuration options are available for osmium-git20130522_15: DOCS=on: Build and/or install documentation DOXYGEN=off: Build documentation with Doxygen JAVASCRIPT=on: Enable javascript support ===> Use 'make config' to modify these settings
Options name:
N/A
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/joto/osmium/tar.gz/1a5bb26?dummy=/
Collapse this list.

Number of commits found: 32

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
git20130522_15
23 Nov 2016 16:43:28
Revision:426943Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Update osmium to 2.10.3 and rename to libosmium
git20130522_15
23 Nov 2016 12:45:47
Revision:426908Original commit files touched by this commit
jbeich search for other commits by this committer
devel/boost-*: update to 1.62.0

- Enable `long double` C99 math usage
- Switch 9.x back to building with GCC

Changes:	http://www.boost.org/users/history/
PR:		199601
Submitted by:	Chen Xu, bapt, amdmi3, truckman (based on)
Reviewed by:	rakuco (kde) (earlier version)
Exp-run by:	antoine (3 tries), truckman (consumers only, earlier versions)
Approved by:	bapt (office)
git20130522_14
19 Nov 2016 18:21:20
Revision:426525Original commit files touched by this commit
jbeich search for other commits by this committer
devel/icu: update to 58.1

Changes:	http://site.icu-project.org/download/58
PR:		214384
Exp-run by:	antoine
Approved by:	office (bapt)
git20130522_13
30 Sep 2016 09:46:16
Revision:422976Original commit files touched by this commit
matthew search for other commits by this committer
Chase dependencies affected by the name change devel/google-sparsehash ->
devel/sparsehash

Which sould fix the INDEX

Submitted by:	cperciva
git20130522_13
24 Sep 2016 11:06:57
Revision:422711Original commit files touched by this commit
tijl search for other commits by this committer
- Update devel/icu to 57.1.
- Clean up the Makefile.
- Follow some upstream recommendations (--with-data-packaging=archive,
  --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE).
- Patch makefiles to install static libraries with INSTALL_DATA so they
  aren't stripped.
- Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc.
- Fix endianness detection in ICU.  The code wanted to use BYTE_ORDER
  defined in machine/endian.h, but this isn't visible because ICU is
  compiled with _XOPEN_SOURCE.  Patch the code to use _BYTE_ORDER instead.
- Compile ICU with C++11 compiler to enable move constructors.
- Patch ICU to fix a problem with atomics in the case of a C++11 compiler
  without C++11 header <atomic> (like Clang on FreeBSD 9).
- Bump all ports that depend on it due to library version change.
- Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU
  pkgconfig files.
- Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs
  a C++11 runtime library now.  Add this to all ports that depend on it
  so their executables load the right libstdc++.so on FreeBSD 9.

PR:		205120
Exp-run by:	antoine
Approved by:	portmgr (antoine)
git20130522_12
26 Jul 2016 16:51:16
Revision:419133Original commit files touched by this commit
mat search for other commits by this committer
Cleanup patches, a* categories.

Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
git20130522_12
06 Jul 2016 22:10:14
Revision:418153Original commit files touched by this commit
mat search for other commits by this committer
Bump PORTREVISION for the icu revert.

This time not bumping lang/php70, but devel/php70-intl which is the one
really depending on icu.

PR:		205120
With hat:	portmgr
Sponsored by:	Absolight
git20130522_11
06 Jul 2016 07:34:13
Revision:418119Original commit files touched by this commit
gahr search for other commits by this committer
devel/icu: bump PORTREVISION on dependent ports
git20130522_10
01 Apr 2016 13:29:17
Revision:412344Original commit files touched by this commit
mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
git20130522_10
28 Sep 2015 17:20:43
Revision:398125Original commit files touched by this commit
amdmi3 search for other commits by this committer
Implemented complete support for test target.

You can now `make test' on any port to run test sequence, no-op by default.
If a port defines TEST_TARGET, it'll run sub-make with specified target,
usually `check' or `test', useful if upstream supports that. The port may
instead define custom do-test target, as well as usual satellite targets:

  {pre,do,post}-test, {pre,do,post}-test-OPT, {pre,do,post}-test-OPT-off

`make test' builds and stages port first, so test may use both WRKDIR and
STAGEDIR, and both BUILD and RUN depends are available for test target.
Additionally, TEST_DEPENDS is now properly supported and may be used to
define additional depends specifically for testing.

Framework may define default tests for specific cases. For instance,
perl5.mk and cran.mk already provide default test target on their own.

This commit also converts my ports which have tests to this new framework.

Approved by:	portmgr (bapt)
Differential Revision:	D3680
git20130522_10
08 Sep 2015 16:13:58
Revision:396400Original commit files touched by this commit
jbeich search for other commits by this committer
astro/osmium: unbreak build with DOXYGEN=on after r394778

NO_BUILD does more than dummy do-build. It creates BUILD_COOKIE that marks
all targets in _BUILD_SEQ as done, including do-build-${opt}-on/off and
post-build-${opt}-on/off. Since the targets haven't been run yet
do-install-DOXYGEN-on fails due to missing files.

Fix by leaking a call to nop "all" target in vendor Makefile. It should
be less kludgy than defining our own dummy do-build and less confusing
than treating do-build itself as an option helper. In case "all" starts
doing something useful the port would automatically take advantage of it.

PR:		202951
Reviewed by:	mat
Approved by:	portmgr blanket
git20130522_10
19 Aug 2015 13:30:00
Revision:394778Original commit files touched by this commit Sanity Test Failure
mat search for other commits by this committer
Convert ports to use the options helpers in categories [abc]*, and minor fixes.

Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3412?
git20130522_10
09 Jul 2015 16:05:07
Revision:391657Original commit files touched by this commit
sunpoet search for other commits by this committer
- Update to 2.0.0
- Bump PORTREVISION for graphics/gdal shlib change
- Mark astro/merkaartor as BROKEN

Changes:	http://trac.osgeo.org/gdal/wiki/Release/2.0.0-News
git20130522_9
14 Jun 2015 20:03:00
Revision:389651Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Add NO_ARCH
git20130522_9
06 May 2015 12:57:56
Revision:385514Original commit files touched by this commit
mat search for other commits by this committer
Update ports in the a* categories to not use GH_COMMIT.

With minor cleanups to make things simpler.

With hat:	portmgr
Sponsored by:	Absolight
git20130522_9
23 Apr 2015 21:26:10
Revision:384614Original commit files touched by this commit
bapt search for other commits by this committer
Update icu to 55.1
git20130522_8
01 Apr 2015 23:24:50
Revision:382972Original commit files touched by this commit
jgh search for other commits by this committer
- remove do_nada from target

Approved by:	portmgr (blanket)
git20130522_8
04 Oct 2014 15:12:45
Revision:369969Original commit files touched by this commit
sunpoet search for other commits by this committer
- Update to 2.6.0
- Update MASTER_SITES
- Add my LOCAL to MASTER_SITES
- Use USE_CSTD
- Use MAKE_CMD
- Reformat pkg-descr
- Update WWW
- Take maintainership
- Bump PORTREVISION for devel/protobuf shlib change

Changes:	https://code.google.com/p/protobuf/source/browse/trunk/CHANGES.txt
git20130522_7
22 Sep 2014 14:26:22
Revision:368939Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Cleanup plist
git20130522_7
18 Jul 2014 13:07:24
Revision:362205Original commit files touched by this commit
sunpoet search for other commits by this committer
- Add missing USE_LDCONFIG
- Use USES=libtool
- Fix USE_PYTHON
- Convert to new options helper
- Bump PORTREVISION for package change
- Do not hard-coded PORTVERSION in PLIST
- Bump PORTREVISION for graphics/geos shlib change
git20130522_6
11 Jul 2014 11:16:06
Revision:361523Original commit files touched by this commit
sunpoet search for other commits by this committer
- Remove USE_AUTOTOOLS=libtool
- Bump PORTREVISION for package change
- Bump PORTREVISION for graphics/gdal shlib change [1]

Approved by:	portmgr (implicit) [1]
git20130522_5
03 Jul 2014 20:18:06
Revision:360454Original commit files touched by this commit
adamw search for other commits by this committer
Reduce unecessary bsd.port.options.mk inclusion.
git20130522_5
27 Jun 2014 17:21:07
Revision:359586Original commit files touched by this commit
miwi search for other commits by this committer
- Chase database/sqlite3 slib bump

Approved by:	portmgr (myself)
git20130522_4
26 Apr 2014 18:18:40
Revision:352357Original commit files touched by this commit
sunpoet search for other commits by this committer
- Update to 1.11.0
- Use PORTDATA
- Bump PORTREVISION for graphics/gdal shlib change

Changes:	http://trac.osgeo.org/gdal/wiki/Release/1.11.0-News
git20130522_3
07 Feb 2014 11:44:09
Revision:343214Original commit files touched by this commit
bapt search for other commits by this committer
Chase boost and icu bump
While here convert some LIB_DEPENDS
git20130522_2
16 Dec 2013 17:40:14
Revision:336650Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Remove DOCS, NLS and EXAMPLES from OPTIONS_DEFAULT in my ports, as suggested
by Porter's Handbook
git20130522_2
17 Oct 2013 01:15:51
Revision:330586Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Support staging
- Use new LIB_DEPENDS syntax
git20130522_2
20 Sep 2013 13:14:05
Revision:327701Original 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:
astro)
git20130522_2
11 Sep 2013 13:58:27
Revision:326981Original commit files touched by this commit
wg search for other commits by this committer
graphics/geos: update to 3.4.2

- Update to 3.4.2 [1]
- Bump PORTREVISION for dependent ports
- USES gmake
- Use options helpers

PR:		ports/181422 [1]
Submitted by:	Rainer Hurling <rhurlin gwdg.de> (maintainer)
git20130522_1
21 Aug 2013 03:46:21
Revision:325086Original commit files touched by this commit
sunpoet search for other commits by this committer
- Update to 1.10.0
- Update COMMENT and remove leading indefinite article from COMMENT
- Bump PORTREVISION for graphics/gdal shlib change

Changes:	http://trac.osgeo.org/gdal/wiki/Release/1.10.0-News
git20130522
12 Jul 2013 15:01:46
Revision:322840Original commit files touched by this commit Sanity Test Failure
amdmi3 search for other commits by this committer
- Trim Makefile headers
- Drop ABI versions from LIB_DEPENDS
- OptionsNG
- Pet portlint
- Switch to dynamic plist where useful
- Canonicalize patch names
- Fix DOS line endings in patch files
git20130522
27 May 2013 16:47:40
Revision:319273Original commit files touched by this commit
amdmi3 search for other commits by this committer
Osmium is a C++ framework for working with OSM data files. Osmium
can read OSM data in XML or binary format (PBF) and can call different
handlers for each OSM object.

WWW: http://wiki.openstreetmap.org/wiki/Osmium

Number of commits found: 32