package trie import "fmt" var indices = []string{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f", "[17]"} type Node interface { Value() Node Copy() Node // All nodes, for now, return them self Dirty() bool fstring(string) string Hash() interface{} RlpData() interface{} } // Value node func (self *ValueNode) String() string { return self.fstring("") } func (self *FullNode) String() string { return self.fstring("") } func (self *ShortNode) String() string { return self.fstring("") } func (self *ValueNode) fstring(ind string) string { return fmt.Sprintf("%x ", self.data) } func (self *HashNode) fstring(ind string) string { return fmt.Sprintf("%x ", self.key) } // Full node func (self *FullNode) fstring(ind string) string { resp := fmt.Sprintf("[\n%s ", ind) for i, node := range self.nodes { if node == nil { resp += fmt.Sprintf("%s: ", indices[i]) } else { resp += fmt.Sprintf("%s: %v", indices[i], node.fstring(ind+" ")) } } return resp + fmt.Sprintf("\n%s] ", ind) } // Short node func (self *ShortNode) fstring(ind string) string { return fmt.Sprintf("[ %x: %v ] ", self.key, self.value.fstring(ind+" ")) } git.cgi/freebsd-ports-gnome/'>freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.gstreamer.mk
Commit message (Expand)AuthorAgeFilesLines
* Update gstreamer1 ports to 1.6.0.kwm2015-09-261-3/+23
* Big Gstreamer update:kwm2014-12-161-7/+13
* Copy the gnonlin gstreamer plugin, and update to 1.2.1. This plugin iskwm2014-08-091-2/+2
* Update to 1.2.2.kwm2013-12-301-1/+2
* Add gstreamer vaapi, plugin and support libraries to enable hardwarekwm2013-11-291-1/+3
* Update to 1.2.1.kwm2013-11-221-6/+10
* Update to 1.0.9.kwm2013-08-211-5/+5
* Partial revert of r320440 some things has been committed that shouldn't have yetbapt2013-06-101-2/+0
* Removed useless quotesbapt2013-06-101-0/+2
* Provide the rtmp streaming plugin [1].kwm2013-04-291-1/+3
* Add Gstreamer 1.0.7. This is the new stable version of thekwm2013-04-281-36/+134
* Add opus audio codec gstreamer plugin.kwm2013-03-231-1/+3
* - Remove emacs mode, -*- mode: ...; -*- [1]miwi2012-05-231-1/+1
* MusicBrainz RDF webservice no longer functionsbapt2012-04-101-2/+0
* Update Gstreamer-plugins-base to 0.10.32kwm2011-02-251-6/+8
* - Connect Qt4 GStreamer media layer to common GStreamer frameworkfluffy2011-02-051-1/+4
* Add game music emu (gme) gstreamer plugin.kwm2010-11-161-1/+3
* Update gstreamer-plugins-bad to 0.10.20.kwm2010-09-141-7/+19
* Add gstreamer-plugins-gl 0.10.2.kwm2010-09-071-1/+3
* Update gstreamer-plugins-ugly to 0.10.16.kwm2010-09-071-2/+8
* Update to 0.10.21.kwm2010-03-311-1/+3
* Update to 0.10.18.kwm2010-03-311-3/+1
* The gstreamer pulse plugins was imported in the good gstreamer tarball release.kwm2009-04-061-1/+0
* - Has expired: Has been broken for more than 6 monthspav2008-12-201-3/+1
* The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 formarcus2008-03-241-7/+21
* gstreamer-plugins-[nas|sndfile|x264] are back in the ports treeahze2007-06-191-2/+2
* Add link to gstreamer-plugins-mp3ahze2007-06-081-0/+2
* Switch from using mad to mp3 in USE_GSTREAMERahze2007-06-071-3/+5
* Readd a line that didn't need to be removedahze2007-06-031-0/+1
* - Retire gstreamer 0.8.0ahze2007-06-021-37/+1
* Remove graphics/gstreamer-plugins-libcaca80, it is no point for me to try tomezz2007-04-301-1/+1
* Retire jpeg-mmxahze2007-03-081-3/+1
* Does not build with current wavpack and got obsoleted by 0.10.x version.mezz2007-01-261-1/+1
* Revive gstreamer-plugins-swfdec (flash output)ahze2006-12-241-1/+1
* - Add spc support in bsd.gstreamer.mkahze2006-12-231-1/+3
* Revive gstreamer-plugins-mpeg2encahze2006-12-231-1/+1
* Revive gstreamer-plugins-jackahze2006-12-231-2/+2
* Revive gstreamer-plugins-cdaudioahze2006-12-231-1/+1
* Remove dirac references in preparation for removal ofvd2006-12-131-2/+0
* Prepare bsd.gstreamer.mk for removal of multimedia/gstreamer-plugins-dirac80vd2006-12-131-1/+1
* - Provide a wildcard default python_pkgnameprefix to fix a few portssat2006-12-061-0/+4
* Presenting GNOME 2.16.1 for FreeBSD. This release represents a massivemarcus2006-10-141-28/+30
* - Add forgotten support for USE_GSTREAMER=pythonahze2006-08-011-2/+11
* * Change all bogus uses of BROKEN to IGNORE. Note: the BROKEN_WITH_*linimon2006-07-051-2/+2
* - Transfer MAINTAINER to multimedia@ahze2006-06-101-1/+1
* - Readd gstreamer-plugins-xvidahze2006-05-171-1/+1
* - Update gstreamer-plugins to 0.10.7ahze2006-05-161-4/+4
* - Don't quote BROKEN messagesahze2006-05-111-2/+2
* - Update gstreamer to 0.10ahze2006-04-301-43/+63
* Rename the gstreamer-plugin from polypaudio to polyp.marcus2006-04-231-3/+3
* gstreamer-plugins-polypaudio was renamed to gstreamer-plugins-polyperwin2006-04-221-1/+1
* - Fix 'all-depends-list' target in cases if dependencies list iskrion2006-01-22