Tinyproxy package update

The Tinyproxy package is currently on version 1.8.3-2. The latest release is version 1.8.4 (released on Jan 1st 2016). However, since then additional features have been commited to the project, most notably the support for SOCKS proxy.

Would it be possible to compile the package from source and integrate this into OpenWRT/LEDE through the official package repository, or do we need to wait for a new release before it can be formally integrated?

If you build your own from source, it may be as easy as editing the Makefile. When I was working with wpa_supplicant source, changing the PKG_SOURCE_DATE and PKG_SOURCE_VERSION for a git checkout was sufficient to get a functional build for me.

diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile
index 51f1692..67edf1c 100644
--- a/package/network/services/hostapd/Makefile
+++ b/package/network/services/hostapd/Makefile
@@ -11,8 +11,8 @@ PKG_RELEASE:=6
 
 PKG_SOURCE_URL:=http://w1.fi/hostap.git
 PKG_SOURCE_PROTO:=git
-PKG_SOURCE_DATE:=2017-08-24
-PKG_SOURCE_VERSION:=c2d4f2eb5dba0b5c5a8c5805823084da958a9b52
+PKG_SOURCE_DATE:=2018-03-13
+PKG_SOURCE_VERSION:=c63e69c3799bd7eb89c6bd4f1b0d1932b8869247
 PKG_MIRROR_HASH:=c6ad9a73fc1ae0ba8bc48f71cf14394b274bc9c2c1d1b53c2775f08312597e74

It looks like tinyproxy is a tarball fetch, so the changes might be slightly different.

PKG_NAME:=tinyproxy
PKG_VERSION:=1.8.3
PKG_RELEASE:=2

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.banu.com/pub/tinyproxy/1.8/
PKG_HASH:=be559b54eb4772a703ad35239d1cb59d32f7cf8a739966742622d57df88b896e
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>

I'm unable to find a reference on the wiki as to what PKG_HASH should be set to, but https://openwrt.org/docs/guide-developer/packages suggests it may be

PKG_MIRROR_HASH - SHA256 checksum of the tarball generated from the source repository checkout (previously named PKG_MIRROR_MD5SUM). See below for details.