Commit graph

15 commits

Author SHA1 Message Date
leot
14a7c51ce4 geomyidae: Update net/Geomyidae to 0.34
Changes:
Geomyidae v0.34 Release »Above the Oceans«
------------------------------------------
I am proud to announce the v0.34 release of geomyidae!

It is named »Above the Oceans«, because it is released 11km above the Atlantic
Ocean. I can't see whales from here.

Why a new release in such a short time?

In geomyidae v0.33 is a nasty listening bug, so do not use it.

What has changed from v0.33 v0.34:
* There is finally a multi-listening implementation, which allows constant
  behaviour of IPv6 and IPv4 across all platforms, including the BSDs.

	# bind to 0.0.0.0 and :: on port 7070
	geomyidae -b $(pwd) -p 7070 -d

	# bind to :: only on port 7070
	geomyidae -6 -b $(pwd) -p 7070 -d

	# bind to the IPv4 address of some interface only
	geomyidae -4 -b $(pwd) -i google.com

	# bind to IPv6 and IPv4 of many interfaces
	geomyidae -b $(pwd) -i google.com -i google.de -i nsa.gov


Geomyidae v0.33 Release
-----------------------
I am proud to announce the v0.33 release of geomyidae!

What has changed:
* More links for geomyidae resources.
* Fixes in error messages. They now show useful messages.
* Do not exit on SIGHUP. (Fix for OpenBSD startup.)
* Fix of some memory leaks.
* Relative path support in gph files!
	* This will make portable CGI applications easier possible.
	* This is now possible:

	[1|Some Cool Menu|../cool/menu|server|port]

* Fix to set the gph replacement port.
* Fix some IPv6 binding issues.
	* Some separate binding for BSDs is still in the works.
* Manpage has been beautified.
* '/' is now stripped from base path.

I want to thank all contributors! You are making gopher better!
2018-11-16 12:31:52 +00:00
leot
09ed8969ff Geomyidae: Add a patch to not exit on SIGHUP
Now having `geomyidae=yes' in rc.conf correctly works.

Bump PKGREVISION
2018-09-21 17:10:57 +00:00
leot
e7d5a5c8b5 Geomyidae: Adjust LICENSE (all the code is licensed under mit) 2018-08-10 10:44:13 +00:00
leot
ab856dfacc Geomyidae: Update net/Geomyidae to 0.32.2
pkgsrc changes:
 - Update DISTNAME, PKGNAME, MASTER_SITES and HOMEPAGE
 - Take MAINTAINERship (discussed via private email with previous MAINTAINER)
 - Remove (not so useful) MESSAGE
 - Avoid NO_CONFIGURE=yes, also if a package does not provide a configure script
   it is not needed and can lead to confusion due the several configure targets
   that are removed
 - Add several variable to BUILD_DEFS
 - Honor GEOMYIDAE_USER, GEOMYIDAE_GROUP and GEOMYIDAE_ROOTDIR variables that
   will respectively set the default user, group and rootdir of geomyidae
 - Instead of copypasting several rc scripts write a new one ad-hoc for pkgsrc
   that by default will run geomyidae unprivileged honoring the several
   GEOMYIDAE_* variables.
   If `geomyidae_flags' is defined in rc.conf these defaults are ignored.
 - Do not install a LICENSE file (we have the LICENSE variable for it!)


Changes:
Geomyidae v0.32.2 fixes release
-------------------------------
Another fixes release for geomyidae is out. Now hopefully the OpenBSD people
fixed the whole pledge support in geomyidae.


Geomyidae v0.32.1 fixes release
-------------------------------
Soon after the v0.32 release I received patches, which I do not want to miss
in mainline.

* Fix and make OpenBSD pledge support better.
* Fix a typo in the slackware init script.

Thanks for all who sent in patches! All further patches are welcome!


Geomyidae v0.32 Release
-----------------------
I am glad to announce the release of geomyidae v0.32. Thanks to all the
contributors and people giving ideas!

Here is what changed:
        * Minor fixed in the manpage, CGI handling and tools.
        * Add example for tt escaping in the manpage.
        * Add nocgi flag, which disables CGI execution.
        * Add OpenBSD pledge support.


Geomyidae v0.31.1 release
-------------------------

There has been a geomyidae v0.31.1 release which fixes a major issue of the
pending bytes logic from v0.31.

Have fun!


Geomyidae v0.31 release
-----------------------
I  am proud to announce the geomyidae v0.31 release. There were
some major issues fixed, so a new release is necessary:

* There is now gph vim syntax highlighting files in the archive.
* Gopher+ compatibility mode.
* No sockets are left behind anymore.
* New log format of geomyidae is now documented in the manpage.
* There was some ugly bug with curl connecting to a Linux system, where after
  close() some bytes were lost. Now some check is added to be sure all data
  has been sent to the client. If you want to have bad dreams, look at the
  curl sourcecode.

Thanks for everyone contributing!


Geomyidae v0.30 release
-----------------------
What is new?

 * The gph format now allows escaping of '|' characters. See the example
   index.gph file in the distribution for how to or the manpage.
 * Geomyidae has happy helping snowman support to help you with your dynamic
   gph content generation in geomyidae. In case you add some spurious tab,
   this little guy will appear and inform you about what happened.
 * There is now a Links file for links to software related to application
   development for geomyidae.
 * The gentoo init.d script has been fixed.
 * A slackware rc file was added.
 * The makefile is now POSIX-compliant.
 * The log format has been changed to be easier parsable for all kind of log
   analyzers. (`[YYYY-MM-DD HH:mm:SS +ZZZZ|client|clientport|status] selector')
 * A flag to not perform reverse lookups in log files has been added.
 * Implement some CGI variables for cgi and dcgi. See the manpage for which
   ones are available. Here you can see REMOTE_ADDR in action:

        gopher://bitreich.org/0/ip


Geomyidae 0.29 release
----------------------
I am happy to announce the 0.29 release of geomyidae, a simple gopher server.
What has been changed:

* the OpenBSD rc.d files have been fixed due to arg.h fixes
* index.bin support added
        * Create a file with the raw gopher menu content in a directory and is
          served by geomyidae.
        * This is useful for scripts generating static gopher content
        * This is useful for serving a backup of a gopherhole.
* show errors on fork, in case there are constraints on process resources
* care for send errors
* huge speed up on different platforms when transferring huge binary files
        * Linux is using sendfile(2) and TCP_CORK
        * FreeBSD and DragonflyBSD are using sendfile(2)
        * TCP_NOPUSH is used on all BSDs
        * TCP_NODELAY is disabled on nearly all platforms
        * other platforms (like OpenBSD) have a speed increase due to an
          alignment of the send buffer to blocksize of the socket

I want to thank all contributors! All patches are welcome!


Geomyidae 0.28 release
----------------------
What's new in geomyidae?

  * The parsing of gph files is now more liberal. When you do something wrong,
    it will most of the time just display the line.
  * DCGI speed was increased massively.
  * Error messages are now more useful.
  * More files are now handled as text files automatically.
  * The OpenBSD rc.d file was fixed to modern days.
  * Typos have been fixed.


Geomyidae 0.27 release
----------------------
I am proud to announce the 0.27 release of geomyidae.

 * dramatic improvement of serving speed
 * security fixes
 * a OpenBSD rc.d file was added
 * the manpage has been updated to the current state
 * there is no support for index.gph, index.dcgi and index.cgi,
   which helps to write more REST-friendly apps

I want to thank all contributors. All patches are welcome!
2018-08-10 10:41:20 +00:00
wiz
4b6cc49c90 Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
wiz
4ab4e52a8c Remove url2pkg marker. 2016-09-20 12:59:24 +00:00
agc
203292f73e Add SHA512 digests for distfiles for net category
Problems found with existing digests:
	Package haproxy distfile haproxy-1.5.14.tar.gz
	159f5beb8fdc6b8059ae51b53dc935d91c0fb51f [recorded]
	da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated]

Problems found locating distfiles:
	Package bsddip: missing distfile bsddip-1.02.tar.Z
	Package citrix_ica: missing distfile citrix_ica-10.6.115659/en.linuxx86.tar.gz
	Package djbdns: missing distfile djbdns-1.05-test25.diff.bz2
	Package djbdns: missing distfile djbdns-cachestats.patch
	Package djbdns: missing distfile 0002-dnscache-cache-soa-records.patch
	Package gated: missing distfile gated-3-5-11.tar.gz
	Package owncloudclient: missing distfile owncloudclient-2.0.2.tar.xz
	Package poink: missing distfile poink-1.6.tar.gz
	Package ra-rtsp-proxy: missing distfile rtspd-src-1.0.0.0.tar.gz
	Package ucspi-ssl: missing distfile ucspi-ssl-0.70-ucspitls-0.1.patch
	Package waste: missing distfile waste-source.tar.gz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-04 00:34:51 +00:00
wiz
d787d3413f Update to version 0.26.3, the latest current version, which features
several bug fixes, improved CGI support, and a more mandoc-friendly
man page.

Provided by Jeff Woodall in PR 49585.
2015-04-19 19:21:15 +00:00
jperkin
45bc40abb4 Remove example rc.d scripts from PLISTs.
These are now handled dynamically if INIT_SYSTEM is set to "rc.d", or
ignored otherwise.
2014-03-11 14:04:57 +00:00
jperkin
08fc3605d1 Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:04:31 +00:00
asau
e059e7e469 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 17:18:07 +00:00
joerg
6bae857d04 Fix mdoc syntax. Bump revision. 2012-01-24 22:21:43 +00:00
joerg
62d1ba2bac Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
reed
57df33407a From maintainer, Jeff Woodall, via PR 39343:
Updates net/Geomyidae[1] gopher server package to current release (0.12)
 which includes the following changes:
  - fixes script.cgi user/group permissions security issue [2]
  - changes the default logging level from 7 to 15
  - updates files/Geomyidae.sh and Geomyidae.8

 [1] http://www.r-36.net/
 [2] patch by jneitzel@freeshell.org

(I only tested install and deinstall -- reed.)
2008-08-12 14:59:44 +00:00
obache
206e2c2853 Import Geomyidae version 0.11.
Based on packaged by Jeff Woodall and provided in PR 38261.

Geomyidae is a daemon for serving the protocol specified in RFC
1436 (Gopher). Under 1000 lines of C by design, it is lightweight
yet supports dynamic content, automatic file/directory indexing,
logging and privilege separation.
2008-04-06 11:50:36 +00:00