diff --git a/common/shlibs b/common/shlibs
index 356bce73911..377702a315b 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1195,3 +1195,10 @@ libtaginfo.so.1 libtaginfo-0.1.3_1
libtaginfo_c.so.0 libtaginfo-0.1.3_1
libaa.so.1 aalib-1.4rc4_2
libbsd.so.0 libbsd-0.4.2_1
+libWFC.so rpi-firmware-20130228_1
+libGLESv2.so rpi-firmware-20130228_1
+libEGL.so rpi-firmware-20130228_1
+libbcm_host.so rpi-firmware-20130228_1
+libopenmaxil.so rpi-firmware-20130228_1
+libvchiq_arm.so rpi-firmware-20130228_1
+libvcos.so rpi-firmware-20130228_1
diff --git a/srcpkgs/omxplayer/files/Makefile b/srcpkgs/omxplayer/files/Makefile
new file mode 100644
index 00000000000..ab9ba48902a
--- /dev/null
+++ b/srcpkgs/omxplayer/files/Makefile
@@ -0,0 +1,74 @@
+include Makefile.include
+
+CFLAGS+=-std=c++0x -DSTANDALONE -D__STDC_CONSTANT_MACROS \
+ -D__STDC_LIMIT_MACROS -DTARGET_POSIX -D_LINUX -fPIC -DPIC \
+ -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
+ -DHAVE_CMAKE_CONFIG -D__VIDEOCORE4__ -U_FORTIFY_SOURCE -Wall \
+ -mfpu=vfp -mno-apcs-stack-check -DHAVE_OMXLIB -DUSE_EXTERNAL_FFMPEG \
+ -DHAVE_LIBAVCODEC_AVCODEC_H -DHAVE_LIBAVUTIL_MEM_H \
+ -DHAVE_LIBAVUTIL_AVUTIL_H -DHAVE_LIBAVFORMAT_AVFORMAT_H \
+ -DHAVE_LIBAVFILTER_AVFILTER_H -DHAVE_LIBSWRESAMPLE_SWRESAMPLE_H -DOMX \
+ -DOMX_SKIP64BIT -ftree-vectorize -pipe -DUSE_EXTERNAL_OMX \
+ -DTARGET_RASPBERRY_PI -DHAVE_PLATFORM_RASPBERRY_PI \
+ -DUSE_EXTERNAL_LIBBCM_HOST -Wno-psabi
+
+#### Ugly ffmpeg-compat hack. Feel free to fix properly
+CFLAGS +=-DAV_CODEC_ID_SSA=0x3a2d7c7c -DAV_CODEC_ID_SUBRIP=0x3a2d7c7c
+
+LDFLAGS+=-L./ -lWFC -lGLESv2 -lEGL -lbcm_host -lopenmaxil -lfreetype -lz
+INCLUDES+=-I./ -Ilinux
+
+SRC=linux/XMemUtils.cpp \
+ utils/log.cpp \
+ DynamicDll.cpp \
+ utils/PCMRemap.cpp \
+ utils/RegExp.cpp \
+ OMXSubtitleTagSami.cpp \
+ OMXOverlayCodecText.cpp \
+ BitstreamConverter.cpp \
+ linux/RBP.cpp \
+ OMXThread.cpp \
+ OMXReader.cpp \
+ OMXStreamInfo.cpp \
+ OMXAudioCodecOMX.cpp \
+ OMXCore.cpp \
+ OMXVideo.cpp \
+ OMXAudio.cpp \
+ OMXClock.cpp \
+ File.cpp \
+ OMXPlayerVideo.cpp \
+ OMXPlayerAudio.cpp \
+ OMXPlayerSubtitles.cpp \
+ Srt.cpp \
+ SubtitleRenderer.cpp \
+ Unicode.cpp \
+ omxplayer.cpp \
+
+OBJS+=$(filter %.o,$(SRC:.cpp=.o))
+
+all: omxplayer.bin
+
+%.o: %.cpp
+ @rm -f $@
+ $(CXX) $(CFLAGS) $(INCLUDES) -c $< -o $@ -Wno-deprecated-declarations
+
+list_test:
+ $(CXX) -O3 -o list_test list_test.cpp
+
+omxplayer.bin: $(OBJS)
+ $(CXX) $(LDFLAGS) -o omxplayer.bin $(OBJS) -lvchiq_arm -lvcos \
+ -lrt -lpthread -rdynamic -lavutil -lavcodec -lavformat \
+ -lswscale -lswresample -lpcre -lm -lc
+
+clean:
+ for i in $(OBJS); do (if test -e "$$i"; then ( rm $$i ); fi ); done
+ @rm -f omxplayer.old.log omxplayer.log
+ @rm -f omxplayer.bin
+ @rm -rf omxplayer-dist
+ @rm -f omxplayer-dist.tar.gz
+
+install:
+ install -d $(DESTDIR)/usr/bin
+ install -Dm644 omxplayer.bin $(DESTDIR)/usr/bin/omxplayer
+
+
diff --git a/srcpkgs/omxplayer/files/Makefile.include b/srcpkgs/omxplayer/files/Makefile.include
new file mode 100644
index 00000000000..843e0a1cbd2
--- /dev/null
+++ b/srcpkgs/omxplayer/files/Makefile.include
@@ -0,0 +1,27 @@
+USE_BUILDROOT=0
+
+JOBS=1
+
+CFLAGS :=
+CXXFLAGS := $(CFLAGS)
+CPPFLAGS := $(CFLAGS)
+LDFLAGS :=
+LD := ld
+CC := gcc
+CXX := g++
+OBJDUMP := objdump
+RANLIB := ranlib
+STRIP := strip
+AR := ar
+CXXCP := $(CXX) -E
+
+CFLAGS += -pipe -mcpu=arm1176jzf-s -fomit-frame-pointer -mabi=aapcs-linux \
+ -mtune=arm1176jzf-s -mfpu=vfp -Wno-psabi -mno-apcs-stack-check \
+ -O3 -mstructure-size-boundary=32 -mno-sched-prolog
+
+LDFLAGS += -L@OPTBASE@/vc/lib/ -Wl,-rpath /opt/vc/lib @LDFLAGS@
+
+INCLUDES += -I@OPTBASE@/vc/include -I@OPTBASE@/vc/include/interface/vcos/ \
+ -I@OPTBASE@/vc/include/interface/vcos/pthreads \
+ -I@OPTBASE@/vc/include/interface/vmcs_host/linux @INCLUDES@
+
diff --git a/srcpkgs/omxplayer/index.plist b/srcpkgs/omxplayer/index.plist
new file mode 100644
index 00000000000..3804f3ec5a2
--- /dev/null
+++ b/srcpkgs/omxplayer/index.plist
@@ -0,0 +1,48925 @@
+
+
+
+
+ GConf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-25 10:37 CET
+ filename
+ GConf-devel-3.2.6_1.noarch.xbps
+ filename-sha256
+ 19c591bb9277876a731eb8a816ffeee7826956eda589af77534547f82fa1ee0c
+ filename-size
+ 69744
+ homepage
+ http://projects.gnome.org/gconf
+ installed_size
+ 978304
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ GConf-devel
+ pkgver
+ GConf-devel-3.2.6_1
+ run_depends
+
+ glib-devel>=0
+ dbus-devel>=0
+ GConf>=3.2.6
+
+ short_desc
+ GConf development files
+ source-revisions
+ GConf/GConf-devel.template: fb8982b1e1b8696e91421c585467321fc54c75d2
+GConf/files/gconf-merge-schema.sh: 1d60222203ae03df7007493db205f71c17546bda
+GConf/patches/01_xml-gettext-domain.patch: 1d60222203ae03df7007493db205f71c17546bda
+GConf/patches/gconf-reload.patch: 840f9b76ed8040ebfc0cfc9cccbffec1b0a82e31
+GConf/template: fb8982b1e1b8696e91421c585467321fc54c75d2
+ version
+ 3.2.6_1
+
+ ISOEnts
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ ISOEnts-1986_1.noarch.xbps
+ filename-sha256
+ b3dd8c23ffb936cf8cd7bd663322626e60565e79e2480312c5348cd2024917fc
+ filename-size
+ 14224
+ homepage
+ http://www.oasis-open.org
+ installed_size
+ 122880
+ license
+ Public domain
+ long_desc
+
+ Nineteen ISO 8879:1986 character entity sets used by many DTDs:
+
+ Added Latin 1
+ Added Latin 2
+ Added Math Symbols: Arrow Relations
+ Added Math Symbols: Binary Operators
+ Added Math Symbols: Delimiters
+ Added Math Symbols: Negated Relations
+ Added Math Symbols: Ordinary
+ Added Math Symbols: Relations, Box and Line Drawing
+ Alternative Greek Symbols
+ Diacritical Marks
+ General Technical
+ Greek Letters
+ Greek Symbols
+ Monotoniko Greek
+ Non-Russian Cyrillic
+ Numeric and Special Graphic
+ Publishing
+ Russian Cyrillic
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ ISOEnts
+ pkgver
+ ISOEnts-1986_1
+ run_depends
+
+ xmlcatmgr>=0
+
+ short_desc
+ Character entity sets from ISO 8879:1986 (SGML)
+ version
+ 1986_1
+
+ Ice-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 30 June, 2012, 15:28:03 UTC
+ filename
+ Ice-devel-3.4.2_7.noarch.xbps
+ filename-sha256
+ fe38f4465945e04a0686d1ece80f91442c7c0536d437679d066b6dbde0a9b9e5
+ filename-size
+ 152836
+ homepage
+ http://www.zeroc.com
+ installed_size
+ 3031040
+ license
+ GPL-2, ICE
+ long_desc
+
+ The Internet Communications Engine (Ice) is a modern object-oriented toolkit
+ that enables you to build distributed applications with minimal effort. Ice
+ allows you to focus your efforts on your application logic, and it takes care
+ of all interactions with low-level network programming interfaces. With Ice,
+ there is no need to worry about details such as opening network connections,
+ serializing and deserializing data for network transmission, or retrying
+ failed connection attempts (to name but a few of dozens of such low-level
+ details).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-29
+ pkgname
+ Ice-devel
+ pkgver
+ Ice-devel-3.4.2_7
+ run_depends
+
+ libIce>=3.4.2
+ Ice>=3.4.2
+
+ short_desc
+ The Internet Communications Engine (Ice) (Development files)
+ version
+ 3.4.2_7
+
+ MesaLib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-23 08:07 CET
+ filename
+ MesaLib-devel-9.1_1.noarch.xbps
+ filename-sha256
+ 4e163d7b7496a19624cbecbe58299bcd64438b864fdb0fd924befa923124f760
+ filename-size
+ 154804
+ homepage
+ http://www.mesa3d.org/
+ installed_size
+ 1528156
+ license
+ MIT, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ MesaLib-devel
+ pkgver
+ MesaLib-devel-9.1_1
+ run_depends
+
+ glproto>=0
+ dri2proto>=2.1
+ libXext-devel>=0
+ libXxf86vm-devel>=0
+ libXdamage-devel>=0
+ libXfixes-devel>=0
+ libX11-devel>=0
+ libxcb-devel>=0
+ libdrm-devel>=2.4.39
+ expat-devel>=0
+ libXt-devel>=0
+ libGL-9.1_1
+ libOpenVG-9.1_1
+ libGLES-9.1_1
+ libEGL-9.1_1
+ libOSMesa-9.1_1
+ libgbm-9.1_1
+ libwayland-egl-9.1_1
+ MesaLib-9.1_1
+
+ short_desc
+ Graphics library similar to SGI's OpenGL - development files
+ source-revisions
+ MesaLib/MesaLib-devel.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libEGL.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libGL.INSTALL: d9ef320904056c9f96e38a129488d43574ef1bde
+MesaLib/libGL.REMOVE: d41677a489da74afd194f1b6731d87efe0e193f1
+MesaLib/libGL.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libGLES.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libOSMesa.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libOpenVG.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libgbm.template: 8638409c50b33ddd63f1a3b3a5f70d815df68772
+MesaLib/libglapi.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/libwayland-egl.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/llvm32.patch: b41ccb6b41de8fae70a0bdedac2e3bd6b47bfcfd
+MesaLib/mesa-ati-dri.template: b41ccb6b41de8fae70a0bdedac2e3bd6b47bfcfd
+MesaLib/mesa-intel-dri.template: a315485e7e71e06cb7f6809efde85044ba65ae25
+MesaLib/mesa-nouveau-dri.template: b41ccb6b41de8fae70a0bdedac2e3bd6b47bfcfd
+MesaLib/mesa-swraster-dri.template: b41ccb6b41de8fae70a0bdedac2e3bd6b47bfcfd
+MesaLib/mesa-vmwgfx-dri.template: b41ccb6b41de8fae70a0bdedac2e3bd6b47bfcfd
+MesaLib/template: b41ccb6b41de8fae70a0bdedac2e3bd6b47bfcfd
+ version
+ 9.1_1
+
+ MoinMoin
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Wednesday 11 July, 2012, 21:26:05 UTC
+ filename
+ MoinMoin-1.9.4_1.noarch.xbps
+ filename-sha256
+ f2afc29c5221804c9f1328b78f13daba3b0b9e9dc47857f870be52a9245aaeab
+ filename-size
+ 6576536
+ homepage
+ http://moinmo.in
+ installed_size
+ 54665216
+ license
+ GPL-2
+ long_desc
+
+ A WikiWikiWeb is a collaborative hypertext environment, with an
+ emphasis on easy access to and modification of information. MoinMoin
+ is a Python WikiClone that allows you to easily set up your own wiki,
+ only requiring a Python installation.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ MoinMoin
+ pkgver
+ MoinMoin-1.9.4_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ MoinMoin, a Python clone of WikiWiki
+ version
+ 1.9.4_1
+
+ NetworkManager-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 09:15 CET
+ filename
+ NetworkManager-devel-0.9.8.0_1.noarch.xbps
+ filename-sha256
+ 7c8e21b8a9e4f77738ee94b1639d713e045f725d4764f820e515d17cebb84c89
+ filename-size
+ 104136
+ homepage
+ http://www.gnome.org/projects/NetworkManager/
+ installed_size
+ 1195646
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ NetworkManager-devel
+ pkgver
+ NetworkManager-devel-0.9.8.0_1
+ run_depends
+
+ dbus-glib-devel>=0
+ libnm-0.9.8.0_1
+
+ short_desc
+ Network Management daemon -- development files
+ source-revisions
+ NetworkManager/NetworkManager-devel.template: e6b57b4d3adac91022085ada2afb44de7e9fa331
+NetworkManager/files/NetworkManager.conf: 46b820857aad48da6fd8205b0263732cf0eb6a55
+NetworkManager/libnm.template: e6b57b4d3adac91022085ada2afb44de7e9fa331
+NetworkManager/patches/disable_set_hostname.patch: e6b57b4d3adac91022085ada2afb44de7e9fa331
+NetworkManager/template: 002d1202d8f1819c80c00369df9ab380107e02c4
+ version
+ 0.9.8.0_1
+
+ Pyrex
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Wednesday 05 October, 2011, 14:27:00 UTC
+ filename
+ Pyrex-0.9.9_2.noarch.xbps
+ filename-sha256
+ 7b09440e333ecc2f4af55c0a4ae670d3fbfb34bcb466e70f0f56cf9b3ec8d00b
+ filename-size
+ 119416
+ homepage
+ http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex
+ installed_size
+ 802816
+ license
+ Apache-2.0
+ long_desc
+
+ Pyrex lets you write code that mixes Python and C data types any way you
+ want, and compiles it into a C extension for Python.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ Pyrex
+ pkgver
+ Pyrex-0.9.9_2
+ run_depends
+
+ python>=2.7
+
+ short_desc
+ Language for writing Python extension modules
+ version
+ 0.9.9_2
+
+ SDL-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-22 22:07 CET
+ filename
+ SDL-devel-1.2.15_5.noarch.xbps
+ filename-sha256
+ c4766de4986eecb45a596d3585b14b821d5984badf33c58a5a3421d06e68eb9f
+ filename-size
+ 181352
+ homepage
+ http://www.libsdl.org/
+ installed_size
+ 622633
+ license
+ LGPL-2.1
+ long_desc
+
+ Simple DirectMedia Layer is a cross-platform multimedia library designed
+ to provide low level access to audio, keyboard, mouse, joystick, 3D hardware
+ via OpenGL, and 2D video framebuffer. It is used by MPEG playback software,
+ emulators, and many popular games, including the award winning Linux port
+ of Civilization: Call To Power.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (e99f0ff5f11896dd71a9e46e36164c91ceeb2a02)
+ pkgname
+ SDL-devel
+ pkgver
+ SDL-devel-1.2.15_5
+ run_depends
+
+ glu-devel>=0
+ SDL>=1.2.15
+
+ short_desc
+ Simple Directmedia Layer (development files)
+ source-revisions
+ SDL/SDL-devel.template: 4893c2fbd8256fb3cdd521172fce6b2684ef8be4
+SDL/patches/SDL-1.2.10-GrabNotViewable.patch: 3cef7fbfe2e64773c16c383252800c85511b5c2e
+SDL/patches/SDL-1.2.12-multilib.patch: 3cef7fbfe2e64773c16c383252800c85511b5c2e
+SDL/template: aa5ac15a78146ffd0757215528114f4774910b4a
+ version
+ 1.2.15_5
+
+ SDL_image-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 23:01 CET
+ filename
+ SDL_image-devel-1.2.12_6.noarch.xbps
+ filename-sha256
+ 8a4e80ff694d9db46bf9102595d3bb7f9e885d93d46563ee7f32760c1d245200
+ filename-size
+ 2868
+ homepage
+ http://www.libsdl.org/projects/SDL_image/
+ installed_size
+ 5782
+ license
+ BSD
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ SDL_image-devel
+ pkgver
+ SDL_image-devel-1.2.12_6
+ run_depends
+
+ SDL-devel>=0
+ SDL_image>=1.2.12
+
+ short_desc
+ Load images as SDL surfaces - development files
+ source-revisions
+ SDL_image/SDL_image-devel.template: 6a423e819f48f445e9ce2ff197f7032e11c0ee06
+SDL_image/template: 89d011c9361953d3beb6c4a3fca009ded7d4eb44
+ version
+ 1.2.12_6
+
+ SDL_mixer-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-09 10:42 CET
+ filename
+ SDL_mixer-devel-1.2.12_4.noarch.xbps
+ filename-sha256
+ bbb500cd52832ee0f9460f8b79301b48533aeda600d0040551a132e81608cbb1
+ filename-size
+ 9176
+ homepage
+ http://www.libsdl.org/projects/SDL_mixer/
+ installed_size
+ 28000
+ license
+ BSD
+ long_desc
+
+ SDL_mixer is a sample multi-channel audio mixer library. It supports any
+ number of simultaneously playing channels of 16 bit stereo audio, plus
+ a single channel of music, mixed by the popular MikMod MOD, Timidity MIDI,
+ Ogg Vorbis, and SMPEG MP3 libraries.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (bf839c8378eb38505d1799d7bde817b22e78db8b)
+ pkgname
+ SDL_mixer-devel
+ pkgver
+ SDL_mixer-devel-1.2.12_4
+ run_depends
+
+ SDL_mixer>=1.2.12
+
+ short_desc
+ Multi-channel audio mixer library (development files)
+ source-revisions
+ SDL_mixer/INSTALL: ee83831bd602ab24ea4c785c4bbac5f177fdc405
+SDL_mixer/SDL_mixer-devel.template: 3e08b20b612da4a6ad34f6867f33c571495e98ac
+SDL_mixer/template: 3e08b20b612da4a6ad34f6867f33c571495e98ac
+ version
+ 1.2.12_4
+
+ SDL_net-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 10:15 CEST
+ filename
+ SDL_net-devel-1.2.8_2.noarch.xbps
+ filename-sha256
+ c67152bc2d9d889a4dbabcaa142f64357ffeac285a22a5c29d1ef3fce51a9202
+ filename-size
+ 5548
+ homepage
+ http://www.libsdl.org/projects/SDL_net/
+ installed_size
+ 18572
+ license
+ BSD
+ long_desc
+
+ This is a small sample cross-platform networking library which is
+ supplementary to the SDL (Simple DirectMedia Layer) library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ SDL_net-devel
+ pkgver
+ SDL_net-devel-1.2.8_2
+ run_depends
+
+ SDL-devel>=0
+ SDL_net-1.2.8_2
+
+ short_desc
+ SDL_net development files
+ version
+ 1.2.8_2
+
+ SDL_sound-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-07 09:19 CET
+ filename
+ SDL_sound-devel-1.0.3_2.noarch.xbps
+ filename-sha256
+ 74155b291dae173988eb05432b650f62a1c7f9434858a5e67f4597af8ad0015e
+ filename-size
+ 8816
+ homepage
+ http://icculus.org/SDL_sound/
+ installed_size
+ 25770
+ license
+ LGPL-2.1
+ long_desc
+
+ SDL_sound is a library that handles the decoding of several popular sound
+ file formats, such as .WAV and .MP3. It is meant to make the programmer's
+ sound playback tasks simpler. The programmer gives SDL_sound a filename, or
+ feeds it data directly from one of many sources, and then reads the decoded
+ waveform data back at her leisure. If resource constraints are a concern,
+ SDL_sound can process sound data in programmer-specified blocks. Alternately,
+ SDL_sound can decode a whole sound file and hand back a single pointer to the
+ whole waveform. SDL_sound can also handle sample rate, audio format, and
+ channel conversion on-the-fly and behind-the-scenes, if the programmer desires.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (806312002cc7bb78b97a256dac03acd44259db0d)
+ pkgname
+ SDL_sound-devel
+ pkgver
+ SDL_sound-devel-1.0.3_2
+ run_depends
+
+ SDL_sound>=1.0.3
+
+ short_desc
+ A library to decode several popular sound file formats, such as .WAV and .MP3 -- development files
+ source-revisions
+ SDL_sound/SDL_sound-devel.template: fab2a4bfcfa8591c85cae1c52a3665f886a7388c
+SDL_sound/template: b5ebf09ec13da5c8ada9763e023112420773a587
+ version
+ 1.0.3_2
+
+ SDL_ttf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-09 11:03 CET
+ filename
+ SDL_ttf-devel-2.0.11_2.noarch.xbps
+ filename-sha256
+ dc6cb7778fd4f72bf53f70f279d8be8fac3bf4272cfbe6b3b8a45c947051b30a
+ filename-size
+ 4116
+ homepage
+ http://www.libsdl.org/projects/SDL_ttf
+ installed_size
+ 10989
+ license
+ LGPL-2.1
+ long_desc
+
+ SDL_ttf is a TrueType font rendering library that is used with the SDL
+ library, and almost as portable. It depends on freetype2 to handle the
+ TrueType font data. It allows a programmer to use multiple TrueType fonts
+ without having to code a font rendering routine themselves. With the power
+ of outline fonts and antialiasing, high quality text output can be obtained
+ without much effort.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (bf839c8378eb38505d1799d7bde817b22e78db8b)
+ pkgname
+ SDL_ttf-devel
+ pkgver
+ SDL_ttf-devel-2.0.11_2
+ run_depends
+
+ freetype-devel>=0
+ SDL-devel>=0
+ SDL_ttf>=2.0.11
+
+ short_desc
+ Use TrueType fonts in your SDL applications (development files)
+ source-revisions
+ SDL_ttf/SDL_ttf-devel.template: 5789f3784c5846a106e855f1e3ed628cab30a051
+SDL_ttf/template: 5789f3784c5846a106e855f1e3ed628cab30a051
+ version
+ 2.0.11_2
+
+ Thunar-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-27 14:33 CET
+ filename
+ Thunar-devel-1.6.2_1.noarch.xbps
+ filename-sha256
+ 3ed65c491d207027a3bbea6c39947765aac0f52393cae7dea128b042ebf98d74
+ filename-size
+ 136364
+ homepage
+ http://thunar.xfce.org
+ installed_size
+ 483316
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ Thunar-devel
+ pkgver
+ Thunar-devel-1.6.2_1
+ run_depends
+
+ glib-devel>=0
+ gtk+-devel>=0
+ Thunar>=1.6.2
+
+ short_desc
+ Thunar File Manager - development files
+ source-revisions
+ Thunar/Thunar-devel.template: b9f195eb84228fe31f43cf349eb9e971456e7ef7
+Thunar/template: b9f195eb84228fe31f43cf349eb9e971456e7ef7
+ version
+ 1.6.2_1
+
+ Twisted
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:59 CET
+ filename
+ Twisted-12.3.0_2.armv6l.xbps
+ filename-sha256
+ d7b53d00a6335bfc606253c9acd228bfd5dbd9135c3a90335756b3d36f06ba8e
+ filename-size
+ 1808656
+ homepage
+ http://twistedmatrix.com/
+ installed_size
+ 10928061
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ Twisted
+ pkgver
+ Twisted-12.3.0_2
+ run_depends
+
+ zope.interface>=4.0.1
+ pycrypto>=0
+ pyopenssl>=0
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ Event-driven networking engine written in Python
+ source-revisions
+ Twisted/INSTALL: d2bfce9e9bdfff7d17fbacaf4976a40445912f24
+Twisted/REMOVE: d2bfce9e9bdfff7d17fbacaf4976a40445912f24
+Twisted/template: 56bd55e2e7e35461979e3a3227dfc201f5f2a649
+ version
+ 12.3.0_2
+
+ Twisted-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:59 CET
+ filename
+ Twisted-dbg-12.3.0_2.armv6l.xbps
+ filename-sha256
+ 68ac898d412d038c3771c520d6294e7ef8c26323f940ce834e9f8856ec7f709b
+ filename-size
+ 27564
+ homepage
+ http://twistedmatrix.com/
+ installed_size
+ 39536
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ Twisted-dbg
+ pkgver
+ Twisted-dbg-12.3.0_2
+ short_desc
+ Event-driven networking engine written in Python (debug files)
+ source-revisions
+ Twisted/INSTALL: d2bfce9e9bdfff7d17fbacaf4976a40445912f24
+Twisted/REMOVE: d2bfce9e9bdfff7d17fbacaf4976a40445912f24
+Twisted/template: 56bd55e2e7e35461979e3a3227dfc201f5f2a649
+ version
+ 12.3.0_2
+
+ WindowMaker-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 17:55 CET
+ filename
+ WindowMaker-devel-0.95.4_1.noarch.xbps
+ filename-sha256
+ 0a4a915cb14f1e78360b5ca334142c1c010a5ad0565737baaf6b5a47f84247ea
+ filename-size
+ 24644
+ homepage
+ http://www.windowmaker.org/
+ installed_size
+ 111778
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ WindowMaker-devel
+ pkgver
+ WindowMaker-devel-0.95.4_1
+ run_depends
+
+ WindowMaker>=0.95.4
+
+ short_desc
+ An X11 window manager with a NEXTSTEP look and feel -- development files
+ source-revisions
+ WindowMaker/WindowMaker-devel.template: d335c46e47273ff26f1a955b608c32f35adec2bd
+WindowMaker/files/wmaker.desktop: d335c46e47273ff26f1a955b608c32f35adec2bd
+WindowMaker/patches/giflib-5.0.patch: d335c46e47273ff26f1a955b608c32f35adec2bd
+WindowMaker/template: d335c46e47273ff26f1a955b608c32f35adec2bd
+ version
+ 0.95.4_1
+
+ abiword-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 12:35 CET
+ filename
+ abiword-devel-2.8.6_6.noarch.xbps
+ filename-sha256
+ 9a237ce81977d0b2c986cf3a961fb36469ab510cece13f168420d594c24ba6b8
+ filename-size
+ 6024
+ homepage
+ http://www.abisource.com/
+ installed_size
+ 25277
+ license
+ GPL-3
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ abiword-devel
+ pkgver
+ abiword-devel-2.8.6_6
+ run_depends
+
+ fribidi-devel>=0
+ libgsf-devel>=0
+ wv-devel>=0
+ enchant-devel>=0
+ gtk-devel>=0
+ librsvg-devel>=0
+ libabiword>=2.8.6
+
+ short_desc
+ Free word processing program similar to Microsoft(R) Word - Development files
+ source-revisions
+ abiword/abiword-devel.template: 69dd41f629795df98f92849202c9577757c23466
+abiword/libabiword.template: abf718fddab159c52b7b6dccd8b31d4382c58c01
+abiword/patches/abiword-2.8.6-no-undefined.patch: f7bdf45e78fdb5252419b24584d8f9871b3e28b5
+abiword/patches/abiword-2.8.6-png15.patch: dc312b15ed39da26479cae3414ecf7bc496fbbb2
+abiword/patches/glib-2.32.patch: 228ac558c3c9a344b75a8823975ee128ba58b9e9
+abiword/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 2.8.6_6
+
+ accountsservice-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-13 11:14 CET
+ filename
+ accountsservice-devel-0.6.30_2.noarch.xbps
+ filename-sha256
+ 2dc9628cac8902992bf94f519a756d13696863cbedb70732f95d251f232950df
+ filename-size
+ 20628
+ homepage
+ http://cgit.freedesktop.org/accountsservice/
+ installed_size
+ 266015
+ license
+ GPL-3
+ long_desc
+
+ The accountsservice project provides a set of D-Bus interfaces for
+ querying and manipulating user account information and an implementation
+ of these interfaces, based on the useradd, usermod and userdel commands.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ accountsservice-devel
+ pkgver
+ accountsservice-devel-0.6.30_2
+ run_depends
+
+ accountsservice>=0.6.30
+
+ short_desc
+ accountsservice - development files
+ source-revisions
+ accountsservice/accountsservice-devel.template: c396b945d9af68c372a61730b2ad6e94b473b908
+accountsservice/template: c396b945d9af68c372a61730b2ad6e94b473b908
+ version
+ 0.6.30_2
+
+ acl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:06 CET
+ filename
+ acl-2.2.51_5.armv6l.xbps
+ filename-sha256
+ cbe714094a282d14723b0040fa742d20b786bd082e917adfd5caf02ac9f810ff
+ filename-size
+ 10772
+ homepage
+ http://savannah.nongnu.org/projects/acl
+ installed_size
+ 24788
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ acl
+ pkgver
+ acl-2.2.51_5
+ run_depends
+
+ attr>=2.4.43_1
+ glibc>=2.8_1
+
+ short_desc
+ Access Control List filesystem support
+ source-revisions
+ acl/acl-devel.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/acl-progs.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/template: 46b24455bad45f580a535597a8d68b75b083d68c
+ version
+ 2.2.51_5
+
+ acl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:06 CET
+ filename
+ acl-dbg-2.2.51_5.armv6l.xbps
+ filename-sha256
+ 42c910dbb4820aed1d74cc52cf2b26f33a6dac7c2c76e300372640fcece03b0f
+ filename-size
+ 41728
+ homepage
+ http://savannah.nongnu.org/projects/acl
+ installed_size
+ 50257
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ acl-dbg
+ pkgver
+ acl-dbg-2.2.51_5
+ short_desc
+ Access Control List filesystem support (debug files)
+ source-revisions
+ acl/acl-devel.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/acl-progs.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/template: 46b24455bad45f580a535597a8d68b75b083d68c
+ version
+ 2.2.51_5
+
+ acl-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:06 CET
+ filename
+ acl-devel-2.2.51_5.armv6l.xbps
+ filename-sha256
+ 56d771e8a12fd560044f827516aa8ec8239876fe0ab1da21b1fb82efbdbcf402
+ filename-size
+ 75788
+ homepage
+ http://savannah.nongnu.org/projects/acl
+ installed_size
+ 141440
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ acl-devel
+ pkgver
+ acl-devel-2.2.51_5
+ run_depends
+
+ attr-devel>=0
+ acl>=2.2.51
+
+ short_desc
+ Access Control List filesystem support -- development files
+ source-revisions
+ acl/acl-devel.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/acl-progs.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/template: 46b24455bad45f580a535597a8d68b75b083d68c
+ version
+ 2.2.51_5
+
+ acl-progs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:06 CET
+ filename
+ acl-progs-2.2.51_5.armv6l.xbps
+ filename-sha256
+ 26d6f1d4df5769dd706b6afaa54415f13a777716e1c68b398bff5a325c576074
+ filename-size
+ 33460
+ homepage
+ http://savannah.nongnu.org/projects/acl
+ installed_size
+ 110954
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ acl-progs
+ pkgver
+ acl-progs-2.2.51_5
+ run_depends
+
+ acl>=2.2.47_1
+ glibc>=2.8_1
+
+ short_desc
+ Access Control List filesystem support -- utilities
+ source-revisions
+ acl/acl-devel.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/acl-progs.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/template: 46b24455bad45f580a535597a8d68b75b083d68c
+ version
+ 2.2.51_5
+
+ acl-progs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:06 CET
+ filename
+ acl-progs-dbg-2.2.51_5.armv6l.xbps
+ filename-sha256
+ c700a0259cbb1ceb6c76d2728cd43892b3036691766f28a76e8783ae56abe616
+ filename-size
+ 50820
+ homepage
+ http://savannah.nongnu.org/projects/acl
+ installed_size
+ 70463
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ acl-progs-dbg
+ pkgver
+ acl-progs-dbg-2.2.51_5
+ short_desc
+ Access Control List filesystem support -- utilities (debug files)
+ source-revisions
+ acl/acl-devel.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/acl-progs.template: 46b24455bad45f580a535597a8d68b75b083d68c
+acl/template: 46b24455bad45f580a535597a8d68b75b083d68c
+ version
+ 2.2.51_5
+
+ acr
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 12:53 CET
+ filename
+ acr-0.9.2_1.noarch.xbps
+ filename-sha256
+ f7b923d31f19361eaa3b914eb7cc43b6426dca558184398b3e316ba0b1e8bb32
+ filename-size
+ 50568
+ homepage
+ http://github.com/radare/acr
+ installed_size
+ 151372
+ license
+ GPL-3
+ long_desc
+
+ ACR tries to replace autoconf functionality generating a full-compatible
+ 'configure' script (runtime flags). But using shell-script instead of m4.
+ This means that ACR is faster, smaller and easy to use.
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ acr
+ pkgver
+ acr-0.9.2_1
+ short_desc
+ AutoConf Replacement
+ source-revisions
+ acr/template: a4f4d502dab92eba0a0b0ea1b067a9b665b83632
+ version
+ 0.9.2_1
+
+ alsa-lib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-07 07:18 UTC
+ filename
+ alsa-lib-devel-1.0.26_1.noarch.xbps
+ filename-sha256
+ 32b14d90c0657b7a9eaa2e19b159bf16125f71fc9a5ddebb08632eeaf689be8a
+ filename-size
+ 58084
+ homepage
+ http://www.alsa-project.org
+ installed_size
+ 450560
+ license
+ LGPL-2.1
+ long_desc
+
+ The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
+ functionality to the Linux operating system.
+
+ This package includes the ALSA runtime libraries to simplify application
+ programming and provide higher level functionality as well as support for
+ the older OSS API, providing binary compatibility for most OSS programs.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ alsa-lib-devel
+ pkgver
+ alsa-lib-devel-1.0.26_1
+ run_depends
+
+ glibc-devel>=0
+ alsa-lib>=1.0.26
+
+ short_desc
+ alsa-lib development files
+ version
+ 1.0.26_1
+
+ amd-ucode
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-15 22:31 UTC
+ filename
+ amd-ucode-2012.09.10_2.noarch.xbps
+ filename-sha256
+ 63a80b22b3d383c799e171eb00fe9be7f99d99998bc5a251d6209e90f450ef6e
+ filename-size
+ 18096
+ homepage
+ http://www.amd64.org/support/microcode.html
+ installed_size
+ 36864
+ license
+ AMD Software License
+ long_desc
+
+ This package contains the microcode updates for AMD CPUs for use with
+ the microcode linux kernel module.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ amd-ucode
+ pkgver
+ amd-ucode-2012.09.10_2
+ short_desc
+ Microcode update files for AMD CPUs
+ version
+ 2012.09.10_2
+
+ apache-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-14 23:32 CEST
+ filename
+ apache-devel-2.4.2_3.noarch.xbps
+ filename-sha256
+ bf96a60e37988fd89cf9f93ce0ade94cbf46868a4402d9517b4a68aa5ced1919
+ filename-size
+ 145856
+ homepage
+ http://httpd.apache.org/
+ installed_size
+ 913408
+ license
+ Apache-2.0
+ long_desc
+
+
+ The Apache HTTP Server Project is an effort to develop and maintain an
+ open-source HTTP server for modern operating systems including UNIX and
+ Windows NT. The goal of this project is to provide a secure, efficient and
+ extensible server that provides HTTP services in sync with the current HTTP
+ standards.
+
+ This packages contains files for development, static files, headers, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ apache-devel
+ pkgver
+ apache-devel-2.4.2_3
+ run_depends
+
+ coreutils>=0
+ apr-devel>=0
+ apr-util-devel>=0
+ perl>=0
+
+ short_desc
+ The Number One HTTP Server On The Internet - development files
+ version
+ 2.4.2_3
+
+ apr-util-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-09 11:45 CET
+ filename
+ apr-util-devel-1.3.12_4.noarch.xbps
+ filename-sha256
+ ff7a2d22d9813cb37840474344bf63aba1323941a8aa5e35ec4361d510749f59
+ filename-size
+ 50072
+ homepage
+ http://apr.apache.org/
+ installed_size
+ 262991
+ license
+ Apache-2.0
+ long_desc
+
+
+ APR is Apache's Portable Runtime Library, designed to be a support library
+ that provides a predictable and consistent interface to underlying
+ platform-specific implementations.
+
+ APR Util is a utilities library implemented on top of APR, providing database
+ access, xml parsing, and other useful functionality.
+
+ This packages contains files for development, static files, headers, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (bf839c8378eb38505d1799d7bde817b22e78db8b)
+ pkgname
+ apr-util-devel
+ pkgver
+ apr-util-devel-1.3.12_4
+ run_depends
+
+ apr-devel>=0
+ expat-devel>=0
+ libldap-devel>=0
+ apr-util>=1.3.12
+
+ short_desc
+ The Apache Portable Runtime Utility Library - development files
+ source-revisions
+ apr-util/apr-util-db.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+apr-util/apr-util-devel.template: 82100c1c71fdf790a28f0fd394d10cad793fed5e
+apr-util/apr-util-gdbm.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+apr-util/apr-util-ldap.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+apr-util/apr-util-mysql.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+apr-util/apr-util-pgsql.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+apr-util/apr-util-sqlite.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+apr-util/template: 82100c1c71fdf790a28f0fd394d10cad793fed5e
+ version
+ 1.3.12_4
+
+ asciidoc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-17 16:37 UTC
+ conf_files
+
+ /etc/asciidoc/asciidoc.conf
+ /etc/asciidoc/docbook45.conf
+ /etc/asciidoc/filters/code/code-filter.conf
+ /etc/asciidoc/filters/graphviz/graphviz-filter.conf
+ /etc/asciidoc/filters/latex/latex-filter.conf
+ /etc/asciidoc/filters/music/music-filter.conf
+ /etc/asciidoc/filters/source/source-highlight-filter.conf
+ /etc/asciidoc/help.conf
+ /etc/asciidoc/html4.conf
+ /etc/asciidoc/lang-de.conf
+ /etc/asciidoc/lang-en.conf
+ /etc/asciidoc/lang-es.conf
+ /etc/asciidoc/lang-fr.conf
+ /etc/asciidoc/lang-hu.conf
+ /etc/asciidoc/lang-it.conf
+ /etc/asciidoc/lang-pt-BR.conf
+ /etc/asciidoc/lang-ru.conf
+ /etc/asciidoc/lang-uk.conf
+ /etc/asciidoc/latex.conf
+ /etc/asciidoc/slidy.conf
+ /etc/asciidoc/text.conf
+ /etc/asciidoc/wordpress.conf
+ /etc/asciidoc/xhtml11.conf
+ /etc/asciidoc/xhtml11-quirks.conf
+
+ filename
+ asciidoc-8.6.8_1.noarch.xbps
+ filename-sha256
+ 20f7532369a3cff487ff4a360f3b900556ba901a51c36b58443b3881c81ec82b
+ filename-size
+ 170452
+ homepage
+ http://www.methods.co.nz/asciidoc/
+ installed_size
+ 991232
+ license
+ GPL-2
+ long_desc
+
+ asciidoc is a text document format for writing short documents,
+ articles, books and UNIX man pages. asciidoc files can be translated
+ to HTML and DocBook markups using the asciidoc(1) command.
+
+ AsciiDoc is highly configurable: both the AsciiDoc source file syntax
+ and the backend output markups (which can be almost any type of SGML/XML
+ markup) can be customized and extended by the user.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ asciidoc
+ pkgver
+ asciidoc-8.6.8_1
+ run_depends
+
+ python>=0
+ libxslt>=0
+ docbook-xsl>=0
+
+ short_desc
+ Text based document generation
+ version
+ 8.6.8_1
+
+ at-spi2-atk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 23:03 CET
+ filename
+ at-spi2-atk-devel-2.6.2_1.noarch.xbps
+ filename-sha256
+ abc1e4ea3b07a0a157c772e4ff7da3c26d4a37224d65a323bacdd51a9f03c12c
+ filename-size
+ 1832
+ installed_size
+ 1514
+ long_desc
+
+ This package includes a gtk-module that bridges ATK to the new D-Bus based
+ AT-SPI as well as C and Python client libraries.
+
+ These libraries depend on the at-spi2-core code that contains the daemon for
+ registering applications, D-Bus helper libraries and te AT-SPI D-Bus
+ specifications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ at-spi2-atk-devel
+ pkgver
+ at-spi2-atk-devel-2.6.2_1
+ run_depends
+
+ glib-devel>=0
+ at-spi2-core-devel>=0
+ at-spi2-atk-2.6.2_1
+
+ short_desc
+ at-spi2-atk - development files
+ version
+ 2.6.2_1
+
+ at-spi2-core-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-15 05:47 CET
+ filename
+ at-spi2-core-devel-2.6.3_1.noarch.xbps
+ filename-sha256
+ d3d346e0c385498cf0f38bcfcd20222acd808395291281ab26042a8a310c1944
+ filename-size
+ 100932
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1414182
+ license
+ GPL-2
+ long_desc
+
+ This package includes the protocol definitions for the new D-Bus
+ at-spi.
+
+ Also included is the daemon neccessary for forwarding device events
+ and registering accessible applicaitons.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4306a5f1bb04afdc60de97eefef64b49758f6fe6)
+ pkgname
+ at-spi2-core-devel
+ pkgver
+ at-spi2-core-devel-2.6.3_1
+ run_depends
+
+ dbus-devel>=0
+ at-spi2-core-2.6.3_1
+
+ short_desc
+ at-spi2-core - development files
+ source-revisions
+ at-spi2-core/at-spi2-core-devel.template: 903cb1a8d2c0026c6988d217ebe25f8b2bc8fe71
+at-spi2-core/template: 50af27f05489ee3627853663aed6e3afb3c6bcb1
+ version
+ 2.6.3_1
+
+ atf
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 14:25 CET
+ filename
+ atf-0.17_1.armv6l.xbps
+ filename-sha256
+ 4eaf2544fdf9412247a656d2291106aca17691d791969a07892acffcfa5c8102
+ filename-size
+ 325468
+ homepage
+ http://www.netbsd.org/~jmmv/atf/
+ installed_size
+ 1394034
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ atf
+ pkgver
+ atf-0.17_1
+ run_depends
+
+ gdb>=0
+ xmlcatmgr>=0
+ atf-libs-0.17_1
+ libstdc++>=4.4.0_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Automated Testing Framework
+ source-revisions
+ atf/atf-devel.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/atf-libs.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/template: 464364d07981489d932fa3d25a953db1f9c58367
+ version
+ 0.17_1
+
+ atf-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 14:25 CET
+ filename
+ atf-dbg-0.17_1.armv6l.xbps
+ filename-sha256
+ 61e5527914c238702be8bfd7f205a627d403bcc3cb12b75d15ef543c1b0fa73b
+ filename-size
+ 2087680
+ homepage
+ http://www.netbsd.org/~jmmv/atf/
+ installed_size
+ 2612498
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ atf-dbg
+ pkgver
+ atf-dbg-0.17_1
+ short_desc
+ Automated Testing Framework (debug files)
+ source-revisions
+ atf/atf-devel.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/atf-libs.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/template: 464364d07981489d932fa3d25a953db1f9c58367
+ version
+ 0.17_1
+
+ atf-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 14:25 CET
+ filename
+ atf-devel-0.17_1.armv6l.xbps
+ filename-sha256
+ c2c37d3df34487c71bb90b1e64afc26487b75ad5403e9f5ba91b73995243fe0b
+ filename-size
+ 85836
+ homepage
+ http://www.netbsd.org/~jmmv/atf/
+ installed_size
+ 476232
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ atf-devel
+ pkgver
+ atf-devel-0.17_1
+ run_depends
+
+ atf-libs>=0.17
+
+ short_desc
+ Automated Testing Framework - development files
+ source-revisions
+ atf/atf-devel.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/atf-libs.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/template: 464364d07981489d932fa3d25a953db1f9c58367
+ version
+ 0.17_1
+
+ atf-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 14:25 CET
+ filename
+ atf-libs-0.17_1.armv6l.xbps
+ filename-sha256
+ 15b1169f82774e11915637272b852aac9d5af386277e024085185437ad5d8366
+ filename-size
+ 61696
+ homepage
+ http://www.netbsd.org/~jmmv/atf/
+ installed_size
+ 200288
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ atf-libs
+ pkgver
+ atf-libs-0.17_1
+ run_depends
+
+ glibc>=2.8_1
+ libstdc++>=4.4.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Automated Testing Framework - runtime libraries
+ source-revisions
+ atf/atf-devel.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/atf-libs.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/template: 464364d07981489d932fa3d25a953db1f9c58367
+ version
+ 0.17_1
+
+ atf-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 14:25 CET
+ filename
+ atf-libs-dbg-0.17_1.armv6l.xbps
+ filename-sha256
+ b703f9d167dedb802f6831d9b782d9a85552ad704e44b0d71d57f581925cc01a
+ filename-size
+ 536404
+ homepage
+ http://www.netbsd.org/~jmmv/atf/
+ installed_size
+ 593218
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ atf-libs-dbg
+ pkgver
+ atf-libs-dbg-0.17_1
+ short_desc
+ Automated Testing Framework - runtime libraries (debug files)
+ source-revisions
+ atf/atf-devel.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/atf-libs.template: 464364d07981489d932fa3d25a953db1f9c58367
+atf/template: 464364d07981489d932fa3d25a953db1f9c58367
+ version
+ 0.17_1
+
+ atk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-25 04:53 CEST
+ filename
+ atk-devel-2.6.0_1.noarch.xbps
+ filename-sha256
+ 15ee0096fce964c706a884af6b29bb8e759c361e8f26e331b29a4d6e28045b2e
+ filename-size
+ 114200
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 1757184
+ license
+ LGPL-2.1
+ long_desc
+
+ The ATK library provides a set of interfaces for accessibility.
+ By supporting the ATK interfaces, an application or toolkit can
+ be used with such tools as screen readers, magnifiers,
+ and alternative input devices.
+
+ Atk provides a core set of interfaces which are common to all
+ widgets and additional interfaces that are appropriate to certain
+ classes of widgets and whose existence can be queried at run time.
+ It also provides interfaces which an application can use to provide
+ additional accessibility information to assistive technology tools.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ atk-devel
+ pkgver
+ atk-devel-2.6.0_1
+ run_depends
+
+ glib-devel>=0
+ atk>=2.6.0
+
+ short_desc
+ atk - development files
+ version
+ 2.6.0_1
+
+ attr
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:08 CET
+ filename
+ attr-2.4.46_5.armv6l.xbps
+ filename-sha256
+ 8350244a2ed24aa4f23080704c9ea3e4290a79da866e1fb41bf2eabad5222301
+ filename-size
+ 5884
+ homepage
+ http://savannah.nongnu.org/projects/attr
+ installed_size
+ 14104
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ attr
+ pkgver
+ attr-2.4.46_5
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Extended attribute support library for ACL support
+ source-revisions
+ attr/attr-devel.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/attr-progs.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+ version
+ 2.4.46_5
+
+ attr-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:08 CET
+ filename
+ attr-dbg-2.4.46_5.armv6l.xbps
+ filename-sha256
+ ac6633382897f9fbecfb3fd4031ff188d76c1037c260ceac3144f96a17013689
+ filename-size
+ 17276
+ homepage
+ http://savannah.nongnu.org/projects/attr
+ installed_size
+ 20818
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ attr-dbg
+ pkgver
+ attr-dbg-2.4.46_5
+ short_desc
+ Extended attribute support library for ACL support (debug files)
+ source-revisions
+ attr/attr-devel.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/attr-progs.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+ version
+ 2.4.46_5
+
+ attr-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:08 CET
+ filename
+ attr-devel-2.4.46_5.armv6l.xbps
+ filename-sha256
+ 228bcb5819886e211cc1e77e2c0ea9958f6dc7cec4b51ab397508e5d04d1b678
+ filename-size
+ 44132
+ homepage
+ http://savannah.nongnu.org/projects/attr
+ installed_size
+ 78431
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ attr-devel
+ pkgver
+ attr-devel-2.4.46_5
+ run_depends
+
+ glibc-devel>=0
+ attr>=2.4.46
+
+ short_desc
+ Extended attribute support library for ACL support -- development files
+ source-revisions
+ attr/attr-devel.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/attr-progs.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+ version
+ 2.4.46_5
+
+ attr-progs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:08 CET
+ filename
+ attr-progs-2.4.46_5.armv6l.xbps
+ filename-sha256
+ 6b85d136819c64053f26a4d0d647029673b15a1a0a361c6aee645126bec45577
+ filename-size
+ 25632
+ homepage
+ http://savannah.nongnu.org/projects/attr
+ installed_size
+ 84885
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ attr-progs
+ pkgver
+ attr-progs-2.4.46_5
+ run_depends
+
+ attr>=2.4.43_1
+ glibc>=2.8_1
+
+ short_desc
+ Extended attribute support library for ACL support -- utilities
+ source-revisions
+ attr/attr-devel.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/attr-progs.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+ version
+ 2.4.46_5
+
+ attr-progs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:08 CET
+ filename
+ attr-progs-dbg-2.4.46_5.armv6l.xbps
+ filename-sha256
+ 3fe4a71d6c3824f37003a4ea3c2c81029c227e54b5f87b5a7070300948eecb7e
+ filename-size
+ 30100
+ homepage
+ http://savannah.nongnu.org/projects/attr
+ installed_size
+ 46975
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ attr-progs-dbg
+ pkgver
+ attr-progs-dbg-2.4.46_5
+ short_desc
+ Extended attribute support library for ACL support -- utilities (debug files)
+ source-revisions
+ attr/attr-devel.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/attr-progs.template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+attr/template: 246ee2b0619740b9fcefe7b6fe64b51b5f20a063
+ version
+ 2.4.46_5
+
+ aubio-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 17:32 CEST
+ filename
+ aubio-devel-0.3.2_4.noarch.xbps
+ filename-sha256
+ 61f556c178a4c1acc888855a5de5f7daffa83df219867abb57a958e87bdcf59b
+ filename-size
+ 18968
+ homepage
+ http://aubio.org
+ installed_size
+ 95663
+ license
+ GPL-2
+ long_desc
+
+ aubio is a tool designed for the extraction of annotations from audio signals.
+ Its features include segmenting a sound file before each of its attacks,
+ performing pitch detection, tapping the beat and producing midi streams from
+ live audio.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-31
+ pkgname
+ aubio-devel
+ pkgver
+ aubio-devel-0.3.2_4
+ run_depends
+
+ libaubio-0.3.2_4
+
+ short_desc
+ A library for audio labelling - Development files
+ version
+ 0.3.2_4
+
+ audacious-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-11 07:19 CET
+ filename
+ audacious-devel-3.3.3_1.noarch.xbps
+ filename-sha256
+ 5d755c4414f750ac88bc0cab3a859b04f35427c05b254e9b1d2f23e4430d26aa
+ filename-size
+ 27984
+ homepage
+ http://audacious-media-player.org/
+ installed_size
+ 135428
+ license
+ GPL-3
+ long_desc
+
+ Audacious is an open source audio player. A descendant of XMMS, Audacious plays
+ your music how you want it, without stealing away your computers resources
+ from other tasks. Drag and drop folders and individual song files, search for
+ artists and albums in your entire music library, or create and edit your own
+ custom playlists. Listen to CDs or stream music from the Internet. Tweak the
+ sound with the graphical equalizer or experiment with LADSPA effects. Enjoy the
+ modern GTK-themed interface or change things up with Winamp classic skins. Use
+ the plugins included with Audacious to fetch lyrics for your music, to set an
+ alarm in the morning, and more.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ audacious-devel
+ pkgver
+ audacious-devel-3.3.3_1
+ run_depends
+
+ audacious>=3.3.3
+
+ short_desc
+ audacious development files
+ source-revisions
+ audacious/audacious-devel.template: c9b40d06f3b5c230d4c5f95e5222385ff08a78d4
+audacious/template: f7e9a218231fea4f97f77cae07d64b12b6f356ec
+ version
+ 3.3.3_1
+
+ autoconf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:37:04 UTC
+ filename
+ autoconf-2.69_1.noarch.xbps
+ filename-sha256
+ 365e859b055e7ebb50baee675b030d9914bd67c014f219f2151df8020ab60ef0
+ filename-size
+ 662412
+ homepage
+ http://www.gnu.org/software/autoconf
+ installed_size
+ 2301952
+ license
+ GPL-2, GPL-3
+ long_desc
+
+ Autoconf is an extensible package of m4 macros that produce shell
+ scripts to automatically configure software source code packages.
+ These scripts can adapt the packages to many kinds of UNIX-like
+ systems without manual user intervention. Autoconf creates a
+ configuration script for a package from a template file that lists the
+ operating system features that the package can use, in the form of m4
+ macro calls.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ autoconf
+ pkgver
+ autoconf-2.69_1
+ run_depends
+
+ gawk>=0
+ diffutils>=0
+ m4>=0
+ perl>=0
+
+ short_desc
+ Generates automatic source code configuration scripts
+ version
+ 2.69_1
+
+ automake
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 11:06 CET
+ filename
+ automake-1.13.1_2.noarch.xbps
+ filename-sha256
+ df8f21f02281d93ab59fb4b0d38e370596f1df8965fefdacad1f3719ac96b087
+ filename-size
+ 584652
+ homepage
+ http://www.gnu.org/software/automake
+ installed_size
+ 1280895
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ automake
+ pkgver
+ automake-1.13.1_2
+ run_depends
+
+ autoconf>=2.60
+ libtool>=2.4.2_5
+
+ short_desc
+ GNU Standards-compliant Makefile generator
+ source-revisions
+ automake/template: 205da40885b984ef863b4d6b1223f6f38abb06da
+ version
+ 1.13.1_2
+
+ avahi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ conf_files
+
+ /etc/avahi/services/ssh.service
+ /etc/avahi/services/sftp-ssh.service
+ /etc/avahi/avahi-daemon.conf
+ /etc/avahi/hosts
+ /etc/avahi/avahi-dnsconfd.action
+
+ filename
+ avahi-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 07bbcaa0c64463b9ceaf95c528e59a32cc32f4b78e623924234d3c17df738c22
+ filename-size
+ 116320
+ homepage
+ http://www.avahi.org
+ installed_size
+ 608042
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi
+ pkgver
+ avahi-0.6.31_10
+ run_depends
+
+ dbus>=0
+ avahi-libs-0.6.31_10
+ libdaemon>=0.14_1
+ glibc>=2.17_1
+ expat>=2.0.0_1
+ libcap>=2.16_1
+ dbus-libs>=1.2.10_1
+
+ short_desc
+ Multicast DNS Service Discovery
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-autoipd
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-autoipd-0.6.31_10.armv6l.xbps
+ filename-sha256
+ c8454f81024b0ee8a5696b6a7cda45070ea9df04a684cb6a16e9443b262e664e
+ filename-size
+ 17248
+ homepage
+ http://www.avahi.org
+ installed_size
+ 35692
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-autoipd
+ pkgver
+ avahi-autoipd-0.6.31_10
+ run_depends
+
+ net-tools>=0
+ libdaemon>=0.14_1
+ libgcc>=4.4.0_1
+ glibc>=2.17_1
+
+ short_desc
+ Avahi IPv4LL network address configuration daemon
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-autoipd-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-autoipd-dbg-0.6.31_10.armv6l.xbps
+ filename-sha256
+ b8c8b4ab2be844b62818eaa71c9374a4017aeedb2a8ca639cb55771e7204dcf1
+ filename-size
+ 39600
+ homepage
+ http://www.avahi.org
+ installed_size
+ 48396
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-autoipd-dbg
+ pkgver
+ avahi-autoipd-dbg-0.6.31_10
+ short_desc
+ Avahi IPv4LL network address configuration daemon (debug files)
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-compat-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-compat-libs-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 509f7d73dd186c62dd5fb6cedeeb866ba6995d9145809104c75c6bea67ccf025
+ filename-size
+ 21448
+ homepage
+ http://www.avahi.org
+ installed_size
+ 77696
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-compat-libs
+ pkgver
+ avahi-compat-libs-0.6.31_10
+ run_depends
+
+ avahi-libs-0.6.31_10
+ glibc>=2.17_1
+
+ short_desc
+ Avahi compatiblity shared libraries
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-compat-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-compat-libs-dbg-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 04b7cffe6dcbb317d579eb6644f7ff52b3f6fcc53f392c39e2021ee0dff3cb03
+ filename-size
+ 79380
+ homepage
+ http://www.avahi.org
+ installed_size
+ 112433
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-compat-libs-dbg
+ pkgver
+ avahi-compat-libs-dbg-0.6.31_10
+ short_desc
+ Avahi compatiblity shared libraries (debug files)
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-compat-libs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-compat-libs-devel-0.6.31_10.noarch.xbps
+ filename-sha256
+ f130a9b3dcf53b7a17b4369643cd9cae3b74fb552734a89754311ce321b435a8
+ filename-size
+ 26936
+ homepage
+ http://www.avahi.org
+ installed_size
+ 163557
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-compat-libs-devel
+ pkgver
+ avahi-compat-libs-devel-0.6.31_10
+ run_depends
+
+ avahi-libs-devel-0.6.31_10
+ avahi-compat-libs-0.6.31_10
+
+ short_desc
+ Avahi compat libraries -- development files
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-dbg-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 0230da26835282067d6e27a35cd0eb536bb361d4ff9aa2c09c1bc5d0fb747c5b
+ filename-size
+ 140564
+ homepage
+ http://www.avahi.org
+ installed_size
+ 172291
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-dbg
+ pkgver
+ avahi-dbg-0.6.31_10
+ short_desc
+ Multicast DNS Service Discovery (debug files)
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-discover
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-discover-0.6.31_10.noarch.xbps
+ filename-sha256
+ 8d6c3cf1dacb0fe3839122d5fb95f32aad4d00c080efd8377937ecc3efc9eded
+ filename-size
+ 7732
+ homepage
+ http://www.avahi.org
+ installed_size
+ 21336
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-discover
+ pkgver
+ avahi-discover-0.6.31_10
+ run_depends
+
+ avahi>=0.6.31
+ python>=0
+ avahi-python>=0.6.31
+ dbus-python>=0
+ pygtk>=0
+ desktop-file-utils>=0
+
+ short_desc
+ Service discover user interface for avahi
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-glib-libs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-glib-libs-devel-0.6.31_10.noarch.xbps
+ filename-sha256
+ ee370f773edf47cb6aeaf3ad720b7bd90282bfb653874da1a45fb70e80331e71
+ filename-size
+ 8912
+ homepage
+ http://www.avahi.org
+ installed_size
+ 71212
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-glib-libs-devel
+ pkgver
+ avahi-glib-libs-devel-0.6.31_10
+ run_depends
+
+ avahi-libs-devel-0.6.31_10
+ avahi-glib-libs-0.6.31_10
+
+ short_desc
+ Avahi glib libraries -- development files
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-libs-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 338b55de0229f8baa41f57885b3c7880800964a0a80d09c79f2539bb43b37648
+ filename-size
+ 89644
+ homepage
+ http://www.avahi.org
+ installed_size
+ 289172
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-libs
+ pkgver
+ avahi-libs-0.6.31_10
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.17_1
+ dbus-libs>=1.2.10_1
+
+ short_desc
+ Avahi shared libraries
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-libs-dbg-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 5db1db4a4d2538e5d0b2cefe2e1b50a311612eb4142d36bafc7e1545b431434e
+ filename-size
+ 352200
+ homepage
+ http://www.avahi.org
+ installed_size
+ 429808
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-libs-dbg
+ pkgver
+ avahi-libs-dbg-0.6.31_10
+ short_desc
+ Avahi shared libraries (debug files)
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-libs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-libs-devel-0.6.31_10.noarch.xbps
+ filename-sha256
+ 2cffb50a733dadcd7371593022358851e2e7a8515b36d82986828345e3890e87
+ filename-size
+ 26240
+ homepage
+ http://www.avahi.org
+ installed_size
+ 126059
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-libs-devel
+ pkgver
+ avahi-libs-devel-0.6.31_10
+ run_depends
+
+ libssp-devel>=0
+ dbus-devel>=0
+ avahi-libs-0.6.31_10
+
+ short_desc
+ Avahi core libraries -- development files
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-python
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-python-0.6.31_10.noarch.xbps
+ filename-sha256
+ 6c8430879cedb49a043a317cf78813fb281473d4cb1218e0289670db1d728e24
+ filename-size
+ 3528
+ homepage
+ http://www.avahi.org
+ installed_size
+ 6574
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-python
+ pkgver
+ avahi-python-0.6.31_10
+ run_depends
+
+ python>=0
+ dbus-python>=0
+
+ short_desc
+ Python utility package for Avahi
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-python-utils
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-python-utils-0.6.31_10.noarch.xbps
+ filename-sha256
+ 5766cc9592df3c9bf521af9391d0d65f242fc864718da372e507fd25d247d9ff
+ filename-size
+ 4472
+ homepage
+ http://www.avahi.org
+ installed_size
+ 8046
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-python-utils
+ pkgver
+ avahi-python-utils-0.6.31_10
+ run_depends
+
+ avahi-python>=0.6.31
+
+ short_desc
+ Avahi python utilities
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-ui-libs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:23 CET
+ filename
+ avahi-ui-libs-devel-0.6.31_10.noarch.xbps
+ filename-sha256
+ 10a63a3264b175f1b6628d2da419c95d0dbd55b4b9abe56c2179f8b09d543eab
+ filename-size
+ 3428
+ homepage
+ http://www.avahi.org
+ installed_size
+ 7709
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-ui-libs-devel
+ pkgver
+ avahi-ui-libs-devel-0.6.31_10
+ run_depends
+
+ gtk+-devel>=0
+ gtk+3-devel>=0
+ avahi-libs-devel-0.6.31_10
+ avahi-ui-libs-0.6.31_10
+ avahi-ui-libs-gtk3-0.6.31_10
+
+ short_desc
+ Avahi UI libraries -- development files
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-utils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-utils-0.6.31_10.armv6l.xbps
+ filename-sha256
+ 1625d077ff847e8c6eb6b80819df4025b7662570a7ee7e7628d0d285e69a28fc
+ filename-size
+ 18948
+ homepage
+ http://www.avahi.org
+ installed_size
+ 54225
+ license
+ LGPL-2.1
+ long_desc
+
+
+ This package contains several utilities that allow you to interact with the
+ Avahi daemon, including publish, browsing and discovering services.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-utils
+ pkgver
+ avahi-utils-0.6.31_10
+ run_depends
+
+ avahi-libs-0.6.31_10
+ gdbm>=1.10_1_1
+ glibc>=2.17_1
+
+ short_desc
+ Avahi browsing, publishing and discovery utilities
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ avahi-utils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 20:49 CET
+ filename
+ avahi-utils-dbg-0.6.31_10.armv6l.xbps
+ filename-sha256
+ e8fe3f538a2601a85e517030ff3e2d286f4be370c696c9658625c451557ca245
+ filename-size
+ 54608
+ homepage
+ http://www.avahi.org
+ installed_size
+ 81157
+ license
+ LGPL-2.1
+ long_desc
+
+
+ This package contains several utilities that allow you to interact with the
+ Avahi daemon, including publish, browsing and discovering services.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ avahi-utils-dbg
+ pkgver
+ avahi-utils-dbg-0.6.31_10
+ short_desc
+ Avahi browsing, publishing and discovery utilities (debug files)
+ source-revisions
+ avahi/avahi-autoipd.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-compat-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-discover.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-glib-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-python.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-devel.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs-gtk3.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-libs.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-ui-utils.template: 33da89c808850d15632d45ab241117b6018537bc
+avahi/avahi-utils.template: 849442d30bced67fba329e5020ba1c7dc96a6e4b
+avahi/template: 47842a44d82ba94271c11a7de852afc5ee55b67c
+ version
+ 0.6.31_10
+
+ babl-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 12:57:20 UTC
+ filename
+ babl-devel-0.1.10_1.noarch.xbps
+ filename-sha256
+ 222aefed5bd9f03605d31a187773d132ae5c1c3d66ecf03c7422a70bb519acbd
+ filename-size
+ 4892
+ homepage
+ http://gegl.org/babl/
+ installed_size
+ 28672
+ license
+ LGPL-3
+ long_desc
+
+ babl is a dynamic, any to any, pixel format translation library.
+
+ It allows converting between different methods of storing pixels known
+ as pixel formats that have with different bitdepths and other data
+ representations, color models and component permutations.
+
+ A vocabulary to formulate new pixel formats from existing primitives is
+ provided as well as the framework to add new color models and data types.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ babl-devel
+ pkgver
+ babl-devel-0.1.10_1
+ run_depends
+
+ glibc-devel>=0
+ babl>=0.1.10
+
+ short_desc
+ Dynamic pixel format translation library -- development files
+ version
+ 0.1.10_1
+
+ backintime
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-27 07:58 CET
+ filename
+ backintime-1.0.8_2.noarch.xbps
+ filename-sha256
+ b79a483d6f6c2aa55e08a7d46a07904352e478c66952ff590dc5794772b1100b
+ filename-size
+ 124708
+ homepage
+ http://backintime.le-web.org
+ installed_size
+ 642810
+ license
+ GPL-2
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ backintime
+ pkgver
+ backintime-1.0.8_2
+ run_depends
+
+ python>=0
+ rsync>=0
+ cron-daemon>=0
+
+ short_desc
+ A simple backup tool for Linux
+ source-revisions
+ backintime/template: bbd2bc6bb7342f4d1cafd075c6f4b3c61788a7a1
+ version
+ 1.0.8_2
+
+ base-chroot
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-01 17:02 CET
+ filename
+ base-chroot-0.30_1.noarch.xbps
+ filename-sha256
+ 2bd10f095a72df97480a807145d54d7d97efeebd955b542b929c5948182ea06b
+ filename-size
+ 944
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 0
+ license
+ Public domain
+ long_desc
+
+ This package installs all necessary packages to be able to build packages
+ inside of a chroot with xbps-src.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (1402c58dc37665c12312cf9e6be5a326612d5063)
+ pkgname
+ base-chroot
+ pkgver
+ base-chroot-0.30_1
+ run_depends
+
+ xbps-triggers>=0
+ base-files>=0
+ kernel-libc-headers>=0
+ chroot-glibc>=0
+ chroot-binutils>=2.22.52.0.4_1
+ chroot-gcc>=0
+ chroot-patch>=0
+ chroot-bash>=0
+ chroot-grep>=0
+ chroot-coreutils>=0
+ chroot-diffutils>=0
+ chroot-gettext>=0
+ chroot-texinfo>=0
+ chroot-sed>=0
+ chroot-gawk>=0
+ chroot-findutils>=0
+ chroot-make>=0
+ chroot-gzip>=0
+ chroot-bzip2>=0
+ chroot-file>=0
+ chroot-tar>=0
+ chroot-m4>=0
+ chroot-xz>=0
+ chroot-fakeroot>=0
+ mpfr-devel>=0
+ gmp-devel>=0
+ zlib-devel>=0
+ ccache>=0
+ chroot-distcc>=0
+
+ short_desc
+ Bootstrap packages for xbps-src
+ source-revisions
+ base-chroot/template: 13dd534442c36692862f06f5019f4d59aa7c70e5
+ version
+ 0.30_1
+
+ base-directories
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-30 07:04 UTC
+ filename
+ base-directories-0.22_1.noarch.xbps
+ filename-sha256
+ 0d4a60c5675f3ee2a93088548774129860c6c43292294667aa5ee6abae5b4a8e
+ filename-size
+ 1868
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 0
+ license
+ Public domain
+ long_desc
+
+ This package installs the base system directories as specifed by FHS that aren't
+ installed by any other package and are required on any GNU/Linux system.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ base-directories
+ pkgver
+ base-directories-0.22_1
+ short_desc
+ Void Linux base system directories
+ version
+ 0.22_1
+
+ base-files
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 21:01 CET
+ conf_files
+
+ /etc/inputrc
+ /etc/profile
+ /etc/hosts
+ /etc/host.conf
+ /etc/securetty
+ /etc/skel/.bash_profile
+ /etc/skel/.bash_logout
+ /etc/skel/.bashrc
+ /etc/skel/.inputrc
+ /etc/issue
+ /etc/passwd
+ /etc/group
+ /etc/fstab
+ /etc/crypttab
+ /etc/nsswitch.conf
+
+ filename
+ base-files-0.81_1.noarch.xbps
+ filename-sha256
+ 8bdf3b5f0e12db8f7205833017ea0cde3f6f9ae152d150e84b9c8a84278a199c
+ filename-size
+ 47696
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 222809
+ license
+ Public domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ base-files
+ pkgver
+ base-files-0.81_1
+ run_depends
+
+ base-directories>=0
+ xbps-triggers>=0
+
+ short_desc
+ Void Linux base system files
+ source-revisions
+ base-files/files/DIR_COLORS: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/DIR_COLORS.256color: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/DIR_COLORS.xterm: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/blacklist.conf: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/colorls.sh: 89a745d2dfe0edc40becd063f21a6335465a0684
+base-files/files/crypttab: b1c614f25743638c012130816a38bc2ccd542887
+base-files/files/dot_bash_logout: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/dot_bash_profile: 7c3fb28abbedafe818da4f4a6feb9be922c28465
+base-files/files/dot_bashrc: d35d46d0a211e30f56be27fec48f6e5133f9e88a
+base-files/files/dot_inputrc: 4d84fe7776965d508eed6428f0631f18f36ec995
+base-files/files/dracut.conf.d.voidlinux.conf: b1c614f25743638c012130816a38bc2ccd542887
+base-files/files/etc_bashrc: 7c3fb28abbedafe818da4f4a6feb9be922c28465
+base-files/files/fstab: b1c614f25743638c012130816a38bc2ccd542887
+base-files/files/group: c2df0d14390b460462910ac19bc5c838994c2c1b
+base-files/files/host.conf: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/hosts: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/inputrc: 4d84fe7776965d508eed6428f0631f18f36ec995
+base-files/files/issue: eb973fad2a5eae5b6885bdc4b2c83195c36cd6d8
+base-files/files/licenses/Apache-2.0: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/Artistic: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/BSD: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/GFDL-1.2: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/GFDL-1.3: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/GPL-2: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/GPL-3: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/LGPL-2: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/LGPL-2.1: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/LGPL-3: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/licenses/MPL-1.1: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/locale.sh: dc1fb346aece4bf00252fb378ad0d28b93ecb4c1
+base-files/files/lsb-release: e9dd04164db1b1eae646643a991fff033074572b
+base-files/files/mozplugin.sh: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/nsswitch.conf: fb3fcfe12d238d1693fa5d5622a2abf51b92d8d3
+base-files/files/passwd: c2df0d14390b460462910ac19bc5c838994c2c1b
+base-files/files/profile: 8bdceff747d58c105204a5f8f427e2535d687841
+base-files/files/securetty: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/usb-load-ehci-first: 819a2886ea9d7c13ffd8b8af6e3581d33a1b5622
+base-files/files/vkpurge: 35eb68a14e3c3d09a983934da5cc1c4b81514332
+base-files/template: 3b951bdb56f0b7b765376bcb7c4430f34fec818b
+ version
+ 0.81_1
+
+ base-system-live
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-23 10:17 CET
+ filename
+ base-system-live-0.22_1.noarch.xbps
+ filename-sha256
+ f5a1d930bb4c7868cec7192cb56dc49a4e5d4a7ece19ae8e7a719a55c0819931
+ filename-size
+ 988
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 0
+ license
+ Public domain
+ long_desc
+
+ This package installs the base system packages for the
+ Void Linux system live image.
+
+ Dont install it manually. It is only meant to be installed
+ automatically by the void-mklive utility.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ base-system-live
+ pkgver
+ base-system-live-0.22_1
+ run_depends
+
+ base-files>=0
+ base-system-busybox>=1.20.2_4
+ ncurses-base>=0
+ shadow>=0
+ kmod>=0
+ e2fsprogs>=0
+ btrfs-progs>=0
+ xfsprogs>=0
+ nilfs-utils>=0
+ parted>=0
+ dialog>=0
+ sudo>=0
+ iana-etc>=0
+ systemd>=0
+ wpa_supplicant>=0
+ xbps>=0
+ wifi-firmware>=0
+ linux-firmware-network>=0
+ void-artwork>=0
+ void-installer>=20120730
+
+ short_desc
+ Void Linux live base system meta package
+ source-revisions
+ base-system-live/template: c43b8539f5c21667e7b8b718e114f3bb6309dbe9
+ version
+ 0.22_1
+
+ base-system-rpi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:13 CET
+ filename
+ base-system-rpi-0.2_1.armv6l.xbps
+ filename-sha256
+ 83012bfc037c30da2b59b50539da11fd48b46b8c34fb35ada5f1776db92f2452
+ filename-size
+ 1232
+ homepage
+ http://www.voidlinux.eu/
+ installed_size
+ 114
+ license
+ Public domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ base-system-rpi
+ pkgver
+ base-system-rpi-0.2_1
+ provides
+
+ base-system-0.2
+
+ run_depends
+
+ base-files>=0
+ ncurses>=0
+ coreutils>=0
+ findutils>=0
+ diffutils>=0
+ dash>=0
+ bash>=0
+ grep>=0
+ texinfo>=0
+ file>=0
+ sed>=0
+ gawk>=0
+ less>=0
+ util-linux>=0
+ which>=0
+ tar>=0
+ man-pages>=0
+ man-db>=0
+ shadow>=0
+ e2fsprogs>=0
+ btrfs-progs>=0
+ xfsprogs>=0
+ kbd>=0
+ psmisc>=0
+ procps-ng>=0
+ sudo>=0
+ tzdata>=0
+ ntp-daemon>=0
+ iana-etc>=0
+ systemd>=0
+ cron-daemon>=0
+ openssh>=6.1p1
+ dhcpcd>=0
+ iproute2>=0
+ iputils>=0
+ bridge-utils>=0
+ ifenslave>=0
+ wireless_tools>=0
+ wpa_supplicant>=0
+ xbps>=0
+ netbsd-wtf>=0
+ nvi>=0
+ wifi-firmware>=0
+ nss-mdns>=0
+ traceroute>=0
+ ethtool>=0
+ kernel-rpi>=0
+ rpi-firmware>=0
+
+ short_desc
+ Void Linux base system meta package for the Raspberry Pi
+ source-revisions
+ base-system-rpi/template: b1f48f87bb38a67435ba5308a0e8cc8c2807e2b3
+ version
+ 0.2_1
+
+ base-voidstrap
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:54 CET
+ filename
+ base-voidstrap-0.2_1.noarch.xbps
+ filename-sha256
+ 5b978d9e12b0dda8531de76e056e3e77f367877aaef1fa6042b5121afe380395
+ filename-size
+ 920
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 0
+ license
+ Public domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ base-voidstrap
+ pkgver
+ base-voidstrap-0.2_1
+ run_depends
+
+ base-files>=0.77
+ ncurses>=0
+ coreutils>=0
+ findutils>=0
+ diffutils>=0
+ dash>=0
+ bash>=0
+ grep>=0
+ texinfo>=0
+ file>=0
+ sed>=0
+ gawk>=0
+ less>=0
+ util-linux>=0
+ which>=0
+ tar>=0
+ man-pages>=0
+ man-db>=0
+ shadow>=0
+ e2fsprogs>=0
+ btrfs-progs>=0
+ xfsprogs>=0
+ kbd>=0
+ psmisc>=0
+ procps-ng>=0
+ sudo>=0
+ tzdata>=0
+ iana-etc>=0
+ systemd>=0
+ cron-daemon>=0
+ openssh>=6.1p1
+ xbps>=0
+ netbsd-wtf>=0
+ nvi>=0
+
+ short_desc
+ Void Linux base system for the voidstrap script
+ source-revisions
+ base-voidstrap/template: e462a41753ca08551079f5385329b479b57b1bc5
+ version
+ 0.2_1
+
+ bash
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:41 CET
+ conflicts
+
+ chroot-bash>=0
+
+ filename
+ bash-4.2.042_3.armv6l.xbps
+ filename-sha256
+ a423b02e64fcc552783ee70255b37340c5dd98dc363f5d83a99bcfe76daec1d9
+ filename-size
+ 786748
+ homepage
+ http://www.gnu.org/software/bash/bash.html
+ installed_size
+ 3393046
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ bash
+ pkgver
+ bash-4.2.042_3
+ run_depends
+
+ ncurses-libs>=5.8_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU Bourne Again Shell
+ source-revisions
+ bash/template: e409d2ea2db64dada5315029462094d7991f8017
+ version
+ 4.2.042_3
+
+ bash-completion
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ bash-completion-1.99_1.noarch.xbps
+ filename-sha256
+ 940dd1a10e8274a134de5750c6d6d9c46b737063e0ade193b5f8e6d0e25e9ac6
+ filename-size
+ 131940
+ homepage
+ http://bash-completion.alioth.debian.org/
+ installed_size
+ 1679360
+ license
+ GPL-2
+ long_desc
+
+ bash completion extends bash's standard completion behavior to achieve
+ complex command lines with just a few keystrokes. This project was conceived
+ to produce programmable completion routines for the most common Linux/UNIX
+ commands, reducing the amount of typing sysadmins and programmers need to
+ do on a daily basis.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ bash-completion
+ pkgver
+ bash-completion-1.99_1
+ run_depends
+
+ bash>=0
+
+ short_desc
+ Programmable completion for the GNU Bash shell
+ version
+ 1.99_1
+
+ bash-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:41 CET
+ filename
+ bash-dbg-4.2.042_3.armv6l.xbps
+ filename-sha256
+ 34dc86eb84903e64e4740606c0b8c3b9bde4f807474a8e3d177df3ecd0ff3904
+ filename-size
+ 781292
+ homepage
+ http://www.gnu.org/software/bash/bash.html
+ installed_size
+ 906886
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ bash-dbg
+ pkgver
+ bash-dbg-4.2.042_3
+ short_desc
+ The GNU Bourne Again Shell (debug files)
+ source-revisions
+ bash/template: e409d2ea2db64dada5315029462094d7991f8017
+ version
+ 4.2.042_3
+
+ bigreqsproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:22:31 UTC
+ filename
+ bigreqsproto-1.1.0_1.noarch.xbps
+ filename-sha256
+ cbe11f5bb37cf4370e5f6928f95b2aa976ab7b7f9515db21af4cbe614864d60b
+ filename-size
+ 2484
+ installed_size
+ 12288
+ long_desc
+
+ BigReqs extension headers from modular Xorg X11.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ bigreqsproto
+ pkgver
+ bigreqsproto-1.1.0_1
+ short_desc
+ BigReqs extension headers from modular Xorg X11
+ version
+ 1.1.0_1
+
+ bind-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-05 09:14 CET
+ filename
+ bind-devel-9.9.2.P1_1.noarch.xbps
+ filename-sha256
+ 69f4e484500e347288d6aa9ec9da55cf0b80412863aa7be75443b08ab744ab17
+ filename-size
+ 256844
+ homepage
+ http://www.isc.org/software/bind/
+ installed_size
+ 1508666
+ license
+ ISC
+ long_desc
+
+ BIND is by far the most widely used DNS software on the Internet. It provides
+ a robust and stable platform on top of which organizations can build
+ distributed computing systems with the knowledge that those systems are fully
+ compliant with published DNS standards.
+
+ This package contains development files, static files, headers, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ bind-devel
+ pkgver
+ bind-devel-9.9.2.P1_1
+ run_depends
+
+ bind-libs>=9.9.2.P1
+
+ short_desc
+ Berkeley Internet Name Domain server - development files
+ source-revisions
+ bind/INSTALL: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/bind-devel.template: c2d6e2c9b2328962816cd7f4e05cbce8b1046ca4
+bind/bind-libs.template: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/bind-utils.template: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/files/127.0.0.zone: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/files/localhost.zone: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/files/named.conf: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/files/named.logrotate: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/files/named.service: fc7d3e2a7de9e159d35472ef3fe005346b819cd5
+bind/template: b87e49ba2ad8be06f217244fec735d36a633232a
+ version
+ 9.9.2.P1_1
+
+ binutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:32 CET
+ filename
+ binutils-2.23.51.0.3_2.armv6l.xbps
+ filename-sha256
+ bf591ca83e7698cd65b219f0eb99271994e4ef4f5d47d305b7fa1ff19b892fcd
+ filename-size
+ 2538420
+ homepage
+ http://www.gnu.org/software/binutils/
+ installed_size
+ 11419728
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ binutils
+ pkgver
+ binutils-2.23.51.0.3_2
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+ zlib>=1.2.3_1
+
+ short_desc
+ GNU binary utilities
+ source-revisions
+ binutils/binutils-devel.template: 8148048b3f3017617ca6f69446c28c874c497e55
+binutils/template: 8148048b3f3017617ca6f69446c28c874c497e55
+ version
+ 2.23.51.0.3_2
+
+ binutils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:32 CET
+ filename
+ binutils-dbg-2.23.51.0.3_2.armv6l.xbps
+ filename-sha256
+ 08e38d42226d2c2296d93a9c5246aa4402c33a4b4e6c23c54f3fe3589c0e74a7
+ filename-size
+ 4276992
+ homepage
+ http://www.gnu.org/software/binutils/
+ installed_size
+ 4876421
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ binutils-dbg
+ pkgver
+ binutils-dbg-2.23.51.0.3_2
+ short_desc
+ GNU binary utilities (debug files)
+ source-revisions
+ binutils/binutils-devel.template: 8148048b3f3017617ca6f69446c28c874c497e55
+binutils/template: 8148048b3f3017617ca6f69446c28c874c497e55
+ version
+ 2.23.51.0.3_2
+
+ binutils-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:32 CET
+ filename
+ binutils-devel-2.23.51.0.3_2.armv6l.xbps
+ filename-sha256
+ 021277ae68ead383d4ff4140625da994281e0ef23c71244a26d461d8e5a5b66b
+ filename-size
+ 413728
+ homepage
+ http://www.gnu.org/software/binutils/
+ installed_size
+ 1561489
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ binutils-devel
+ pkgver
+ binutils-devel-2.23.51.0.3_2
+ run_depends
+
+ binutils>=2.23.51.0.3
+
+ short_desc
+ GNU binary utilities -- development files
+ source-revisions
+ binutils/binutils-devel.template: 8148048b3f3017617ca6f69446c28c874c497e55
+binutils/template: 8148048b3f3017617ca6f69446c28c874c497e55
+ version
+ 2.23.51.0.3_2
+
+ bokken
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-25 12:13 CET
+ filename
+ bokken-1.6_3.noarch.xbps
+ filename-sha256
+ 5b5b8059c88d83bae61a800ab3f08c3e6c7bf1fc4e84f0277b57a37500d2a12c
+ filename-size
+ 854956
+ homepage
+ http://inguma.eu/projects/bokken/
+ installed_size
+ 1985056
+ license
+ GPL-2
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ bokken
+ pkgver
+ bokken-1.6_3
+ run_depends
+
+ pygtk>=0
+ pygtksourceview>=0
+ radare2>=0
+ r2-bindings>=0
+
+ short_desc
+ GUI for the Pyew malware analysis tool and Radare the reverse engineering framework
+ source-revisions
+ bokken/template: 349acf2f07a430abfad811b7fb2c731b7b294fce
+ version
+ 1.6_3
+
+ boost-build
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-21 11:16 CEST
+ conf_files
+
+ /etc/site-config.jam
+
+ filename
+ boost-build-1.50.0_2.noarch.xbps
+ filename-sha256
+ cae776bbc328fd6d45d1199c51cd29868dab2d04c2bf8601070e7a2c4ba9ea63
+ filename-size
+ 1470248
+ homepage
+ http://www.boost.org/
+ installed_size
+ 10756096
+ license
+ Boost Software License 1.0
+ long_desc
+
+ Boost is a set of free, peer-reviewed, C++ libraries. The emphasis is on
+ portable libraries which work well with the ISO C++ Standard Library.
+
+ This package provides the Boost.Build module, which includes bjam. This
+ is the tool used to build Boost itself, and is based on Perforce Jam.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ boost-build
+ pkgver
+ boost-build-1.50.0_2
+ run_depends
+
+ boost-jam>=1.50.0
+ boost-devel>=1.50.0
+
+ short_desc
+ Free peer-reviewed portable C++ source libraries (Boost.Build framework)
+ version
+ 1.50.0_2
+
+ brasero-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 21:44 CET
+ filename
+ brasero-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ 5101a3ed8948d6c47831b0d5406ad55b83e41787aca8afac4032f6777fa7705e
+ filename-size
+ 83808
+ homepage
+ http://www.gnome.org/projects/brasero
+ installed_size
+ 1386509
+ license
+ GPL-2
+ long_desc
+
+ Features
+ * Data CD/DVD: supports edition of discs contents (remove/move/rename
+ files inside directories)
+ * can burn data CD/DVD on the fly
+ * automatic filtering for unwanted files (hidden files, broken/recursive
+ symlinks, files not conforming to joliet standard, ...)
+ * supports multisession
+ * supports joliet extension
+ * can write the image to the hard drive
+ * can check disc file integrity
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ brasero-devel
+ pkgver
+ brasero-devel-3.6.1_1
+ run_depends
+
+ gst-plugins-base1-devel>=0
+ totem-pl-parser-devel>=0
+ libnotify-devel>=0
+ libcanberra-devel>=0
+ nautilus-devel>=3.6.0
+ brasero>=3.6.1
+
+ short_desc
+ brasero - development files
+ version
+ 3.6.1_1
+
+ bridge-utils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:47 CET
+ filename
+ bridge-utils-1.5_2.armv6l.xbps
+ filename-sha256
+ 234a875d86e5fb10f44c6943b9fa0bcdc40ae0922941159a5ada920de8d7743d
+ filename-size
+ 12928
+ homepage
+ http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
+ installed_size
+ 29144
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ bridge-utils
+ pkgver
+ bridge-utils-1.5_2
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Layer2 ethernet bridging for Linux
+ source-revisions
+ bridge-utils/template: 01e8c024eb94d21cb80b2ae1cd8a713cb52dbfb6
+ version
+ 1.5_2
+
+ bridge-utils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:47 CET
+ filename
+ bridge-utils-dbg-1.5_2.armv6l.xbps
+ filename-sha256
+ e7a46566314d4cf5e459e257052f3c8163a5d1d879f3fb3b2777f13d60be56f5
+ filename-size
+ 27196
+ homepage
+ http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
+ installed_size
+ 35150
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ bridge-utils-dbg
+ pkgver
+ bridge-utils-dbg-1.5_2
+ short_desc
+ Layer2 ethernet bridging for Linux (debug files)
+ source-revisions
+ bridge-utils/template: 01e8c024eb94d21cb80b2ae1cd8a713cb52dbfb6
+ version
+ 1.5_2
+
+ bsdbuild
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-11 09:37 CEST
+ filename
+ bsdbuild-3.0_1.noarch.xbps
+ filename-sha256
+ d550051f40d6c39fe40eb4e6ace218fb0013ccf84cdb571c04535b6274820713
+ filename-size
+ 154912
+ homepage
+ http://hypertriton.com/bsdbuild/
+ installed_size
+ 1232896
+ license
+ BSD
+ long_desc
+
+ BSDBuild is a simple, self-contained and portable build system derived from
+ the traditional 4.4BSD share/mk files. BSDBuild uses BSD-style makefiles,
+ but without BSD make extensions (it uses standard Bourne script fragments
+ instead), so the build system is portable to most operating systems and make
+ flavors.
+
+ You never need to regenerate your makefiles when using BSDBuild, they are
+ edited directly. This is one major advantage of BSDBuild over systems which
+ use generated makefiles: BSDBuild is implemented as a library.
+
+ BSDBuild can generate Bourne-type configure scripts. The base distribution
+ currently includes over 90 built-in tests for detecting and testing the
+ compatibility of various software, and writing new tests is easy.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ bsdbuild
+ pkgver
+ bsdbuild-3.0_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ Simple, self-contained and portable build system
+ version
+ 3.0_1
+
+ bsdcpio
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ bsdcpio-3.1.2_1.armv6l.xbps
+ filename-sha256
+ ef418c68a5d699ba5e0903c051c78083838f9d918bf2314821aba68a4826ecae
+ filename-size
+ 203832
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 498828
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ bsdcpio
+ pkgver
+ bsdcpio-3.1.2_1
+ run_depends
+
+ libssl>=1.0.0_1
+ attr>=2.4.43_1
+ expat>=2.0.0_1
+ liblzma>=5.0.0_1
+ bzip2>=1.0.5_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ BSD cpio(1) using libarchive
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ bsdcpio-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ bsdcpio-dbg-3.1.2_1.armv6l.xbps
+ filename-sha256
+ 88c47459d8fac8f21f1c30118e1b1b6f10aa2f2ab59cbb13d75e6773cf00ac52
+ filename-size
+ 652068
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 724691
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ bsdcpio-dbg
+ pkgver
+ bsdcpio-dbg-3.1.2_1
+ short_desc
+ BSD cpio(1) using libarchive (debug files)
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ bsdtar
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ bsdtar-3.1.2_1.armv6l.xbps
+ filename-sha256
+ a5b79fcc3dfb563244700ca9bfc16d4a417959c6bf13986e71eb72ad0454fe17
+ filename-size
+ 224440
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 529765
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ bsdtar
+ pkgver
+ bsdtar-3.1.2_1
+ run_depends
+
+ libssl>=1.0.0_1
+ attr>=2.4.43_1
+ expat>=2.0.0_1
+ liblzma>=5.0.0_1
+ bzip2>=1.0.5_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ BSD tar(1) using libarchive
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ bsdtar-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ bsdtar-dbg-3.1.2_1.armv6l.xbps
+ filename-sha256
+ 23efaaa29ec5ffc83aca03663ddaf41f98ee16cb799eebcf9ef50df43b17e511
+ filename-size
+ 684864
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 761658
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ bsdtar-dbg
+ pkgver
+ bsdtar-dbg-3.1.2_1
+ short_desc
+ BSD tar(1) using libarchive (debug files)
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ btrfs-progs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:28 CET
+ filename
+ btrfs-progs-0.20rc1.1_1.armv6l.xbps
+ filename-sha256
+ fe8f6092c815a69c6d0e0259f724a2733bbb798b7f5f10dd59b544ad7fa145ad
+ filename-size
+ 235252
+ homepage
+ http://btrfs.wiki.kernel.org/
+ installed_size
+ 2539524
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ btrfs-progs
+ pkgver
+ btrfs-progs-0.20rc1.1_1
+ run_depends
+
+ libuuid>=2.18_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+ e2fsprogs-libs>=1.41.5_1_1
+
+ short_desc
+ Btrfs filesystem utilities
+ source-revisions
+ btrfs-progs/template: 59768ec1379814ad641ef6671afeda5f3eb906c0
+ version
+ 0.20rc1.1_1
+
+ btrfs-progs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:28 CET
+ filename
+ btrfs-progs-dbg-0.20rc1.1_1.armv6l.xbps
+ filename-sha256
+ 2a24675b0202763777448d453dd78b5932da82e63242aa09289a503dd1bbb73e
+ filename-size
+ 4777532
+ homepage
+ http://btrfs.wiki.kernel.org/
+ installed_size
+ 5666869
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ btrfs-progs-dbg
+ pkgver
+ btrfs-progs-dbg-0.20rc1.1_1
+ short_desc
+ Btrfs filesystem utilities (debug files)
+ source-revisions
+ btrfs-progs/template: 59768ec1379814ad641ef6671afeda5f3eb906c0
+ version
+ 0.20rc1.1_1
+
+ buildbot
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-22 09:15 CET
+ filename
+ buildbot-0.8.7p1_1.noarch.xbps
+ filename-sha256
+ d0735b0ab5e73b3f92036da09f81300d092bedf3f6c856e00e66828836cb67a6
+ filename-size
+ 560556
+ homepage
+ http://trac.buildbot.net/
+ installed_size
+ 3704684
+ license
+ GPL-2
+ long_desc
+
+ The BuildBot is a system to automate the compile/test cycle required by most
+ software projects to validate code changes. By automatically rebuilding and
+ testing the tree each time something has changed, build problems are
+ pinpointed quickly, before other developers are inconvenienced by the failure.
+ The guilty developer can be identified and harassed without human intervention.
+
+ By running the builds on a variety of platforms, developers who do not have the
+ facilities to test their changes everywhere before checkin will at least know
+ shortly afterwards whether they have broken the build or not. Warning counts,
+ lint checks, image size, compile time, and other build parameters can be
+ tracked over time, are more visible, and are therefore easier to improve.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ buildbot
+ pkgver
+ buildbot-0.8.7p1_1
+ run_depends
+
+ python>=0
+ python-jinja>=0
+ sqlalchemy-migrate>=0
+ python-simplejson>=0
+ Twisted>=0
+
+ short_desc
+ A system to automate the compile/test cycle
+ source-revisions
+ buildbot/template: 08a1654e81973fefc845795352bf6c92e51af934
+ version
+ 0.8.7p1_1
+
+ buildbot-slave
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-22 09:18 CET
+ filename
+ buildbot-slave-0.8.7p1_1.noarch.xbps
+ filename-sha256
+ 1ca7c1ae80fba25bd8bcf279c2efe169e2c7b6cdffecf002be163160f05ff07d
+ filename-size
+ 71368
+ homepage
+ http://trac.buildbot.net/
+ installed_size
+ 432439
+ license
+ GPL-2
+ long_desc
+
+ The BuildBot is a system to automate the compile/test cycle required by most
+ software projects to validate code changes. By automatically rebuilding and
+ testing the tree each time something has changed, build problems are
+ pinpointed quickly, before other developers are inconvenienced by the failure.
+ The guilty developer can be identified and harassed without human intervention.
+
+ By running the builds on a variety of platforms, developers who do not have the
+ facilities to test their changes everywhere before checkin will at least know
+ shortly afterwards whether they have broken the build or not. Warning counts,
+ lint checks, image size, compile time, and other build parameters can be
+ tracked over time, are more visible, and are therefore easier to improve.
+
+ This package contains only the buildslave implementation. The buildbot master
+ is available in the buildbot package.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ buildbot-slave
+ pkgver
+ buildbot-slave-0.8.7p1_1
+ run_depends
+
+ python>=0
+ Twisted>=0
+
+ short_desc
+ BuildBot Slave Daemon
+ source-revisions
+ buildbot-slave/template: 3e3444e3dbdfce9f4d86f2f0f79b86f12f49acc6
+ version
+ 0.8.7p1_1
+
+ bzip2
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 17:06 CET
+ conflicts
+
+ chroot-bzip2>=0
+
+ filename
+ bzip2-1.0.6_6.armv6l.xbps
+ filename-sha256
+ 22b05fa75e499c5e2966704f7d091b2e16c1b24b49508dc9b8cb34c3bfb38fab
+ filename-size
+ 48372
+ homepage
+ http://www.bzip.org
+ installed_size
+ 120439
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ bzip2
+ pkgver
+ bzip2-1.0.6_6
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ The bzip2 compression library
+ source-revisions
+ bzip2/bzip2-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+bzip2/patches/Makefile_libbz2_so_fix_soname.diff: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+bzip2/template: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+ version
+ 1.0.6_6
+
+ bzip2-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 17:06 CET
+ filename
+ bzip2-dbg-1.0.6_6.armv6l.xbps
+ filename-sha256
+ a4adee4feb436362bf4e43529fc95ba6563c6219a4f35f6131344c2aad334625
+ filename-size
+ 72428
+ homepage
+ http://www.bzip.org
+ installed_size
+ 89711
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ bzip2-dbg
+ pkgver
+ bzip2-dbg-1.0.6_6
+ short_desc
+ The bzip2 compression library (debug files)
+ source-revisions
+ bzip2/bzip2-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+bzip2/patches/Makefile_libbz2_so_fix_soname.diff: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+bzip2/template: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+ version
+ 1.0.6_6
+
+ bzip2-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 17:06 CET
+ filename
+ bzip2-devel-1.0.6_6.armv6l.xbps
+ filename-sha256
+ fa8b0fd26b109100368ec7461eafa831b3ec6f9c6f0019688040dd32ee72ac19
+ filename-size
+ 27552
+ homepage
+ http://www.bzip.org
+ installed_size
+ 81353
+ license
+ BSD
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ bzip2-devel
+ pkgver
+ bzip2-devel-1.0.6_6
+ run_depends
+
+ glibc-devel>=0
+ bzip2>=0
+
+ short_desc
+ bzip2 development files
+ source-revisions
+ bzip2/bzip2-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+bzip2/patches/Makefile_libbz2_so_fix_soname.diff: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+bzip2/template: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+ version
+ 1.0.6_6
+
+ bzrtools
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 04 June, 2012, 14:52:29 UTC
+ filename
+ bzrtools-2.4.1_1.noarch.xbps
+ filename-sha256
+ 87fb28d72590f8e3d3eec4e83c0fc342d9d6dfc0e9d4a96c253e2158dfde0744
+ filename-size
+ 47328
+ homepage
+ http://bazaar-vcs.org/BzrTools
+ installed_size
+ 327680
+ license
+ GPL-2
+ long_desc
+
+ This is a plugin providing a collection of utilities for bzr.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ bzrtools
+ pkgver
+ bzrtools-2.4.1_1
+ run_depends
+
+ python>=0
+ bzr>=0
+
+ short_desc
+ Plugin providing a collection of utilities for bzr
+ version
+ 2.4.1_1
+
+ ca-certificates
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-12 05:07 CET
+ conf_files
+
+ /etc/ca-certificates.conf
+
+ filename
+ ca-certificates-20121105_4.noarch.xbps
+ filename-sha256
+ a72115dc55620afe21f8aac25702186c219135e057757554b838148b02d008aa
+ filename-size
+ 144828
+ homepage
+ http://packages.qa.debian.org/c/ca-certificates.html
+ installed_size
+ 258850
+ license
+ GPL-2
+ long_desc
+
+ This package includes PEM files of CA certificates to allow SSL-based
+ applications to check for the authenticity of SSL connections.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ ca-certificates
+ pkgver
+ ca-certificates-20121105_4
+ run_depends
+
+ openssl>=0
+ run-parts>=0
+
+ short_desc
+ Common CA certificates
+ source-revisions
+ ca-certificates/INSTALL: b5de13c0641430923ce0384a739ceaaaf56f3b45
+ca-certificates/REMOVE: b5de13c0641430923ce0384a739ceaaaf56f3b45
+ca-certificates/patches/update-ca-certificates-destdir.patch: 69592748ad02a4b08c5054c1c4a48e3fd42424b0
+ca-certificates/template: b5de13c0641430923ce0384a739ceaaaf56f3b45
+ version
+ 20121105_4
+
+ cairo-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 09:53 CET
+ filename
+ cairo-devel-1.12.14_1.noarch.xbps
+ filename-sha256
+ a4bdc1a2eed9086a61c03d41a041aa472994f6420925ecb4128413d55c42b2bb
+ filename-size
+ 146416
+ homepage
+ http://cairographics.org
+ installed_size
+ 1921802
+ license
+ LGPL-2.1, MPL-1.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ cairo-devel
+ pkgver
+ cairo-devel-1.12.14_1
+ run_depends
+
+ fontconfig-devel>=0
+ glib-devel>=0
+ libpng-devel>=1.5.10
+ libXrender-devel>=0
+ pixman-devel>=0
+ MesaLib-devel>=0
+ cairo-1.12.14_1
+
+ short_desc
+ Vector graphics library with cross-device output support -- development files
+ source-revisions
+ cairo/cairo-devel.template: 51b43717bc40be6134ab13c7dc1e34ded2e18a10
+cairo/template: bead4f6449e17a6466cbc5b7509dec158807b81f
+ version
+ 1.12.14_1
+
+ cairomm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 10:48 CEST
+ filename
+ cairomm-devel-1.10.0_5.noarch.xbps
+ filename-sha256
+ 5aefcf2a053c0d37b0b72643e640968d23cb7a9d4eb23d5854722359bb2e8d07
+ filename-size
+ 402988
+ homepage
+ http://www.cairographics.org
+ installed_size
+ 2498082
+ license
+ GPL-2, MPL-1.1
+ long_desc
+
+ cairomm is a C++ wrapper for the cairo graphics library. It offers all the
+ power of cairo with an interface familiar to C++ developers, including use of
+ the Standard Template Library where it makes sense.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ cairomm-devel
+ pkgver
+ cairomm-devel-1.10.0_5
+ run_depends
+
+ pkg-config>=0
+ libsigc++-devel>=0
+ cairo-devel>=1.12.2_2
+ cairomm-1.10.0_5
+
+ short_desc
+ cairomm (development files)
+ version
+ 1.10.0_5
+
+ cantarell-fonts
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-29 10:33 CET
+ filename
+ cantarell-fonts-0.0.12_2.noarch.xbps
+ filename-sha256
+ 43fcade30674dd27ccf3d538b3c916f53d4c4d452838a17f9bb0ea73a5e4f939
+ filename-size
+ 58896
+ homepage
+ http://abattis.org/cantarell/
+ installed_size
+ 98986
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ cantarell-fonts
+ pkgver
+ cantarell-fonts-0.0.12_2
+ run_depends
+
+ fontconfig>=0
+
+ short_desc
+ Cantarell family of TrueType fonts
+ source-revisions
+ cantarell-fonts/INSTALL: 4eff97a8e4e6dc3316dcbf90411be4e5a6f33536
+cantarell-fonts/REMOVE: 4eff97a8e4e6dc3316dcbf90411be4e5a6f33536
+cantarell-fonts/files/21-cantarell-hinting.conf: 4eff97a8e4e6dc3316dcbf90411be4e5a6f33536
+cantarell-fonts/template: 4eff97a8e4e6dc3316dcbf90411be4e5a6f33536
+ version
+ 0.0.12_2
+
+ caribou-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-18 21:45 CET
+ filename
+ caribou-devel-0.4.6_1.noarch.xbps
+ filename-sha256
+ ef58d4d31f1f4d4c88c1c2f986bb9605b8ba1eae8846b72d2bcd7767ce918be4
+ filename-size
+ 7200
+ installed_size
+ 75342
+ long_desc
+
+ Caribou is a text entry and UI navigation application being developed as an
+ alternative to the Gnome On-screen Keyboard. The overarching goal for Caribou
+ is to create a usable solution for people whose primary way of accessing a
+ computer is a switch device.
+
+ The initial goal is to make an in-place on-screen keyboard suitable for people
+ who can use a mouse but not a hardware keyboard. This on-screen keyboard may
+ also be useful for touch screen or tablet users.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ caribou-devel
+ pkgver
+ caribou-devel-0.4.6_1
+ run_depends
+
+ pygobject-devel>=0
+
+ short_desc
+ caribou (development files)
+ source-revisions
+ caribou/caribou-devel.template: 68e70060ea2da35dce2cf1856dc38c388335356f
+caribou/template: 6edd84c51bbbe822567bd1654013dc368e6c697d
+ version
+ 0.4.6_1
+
+ ccache
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 12:42 CET
+ filename
+ ccache-3.1.9_2.armv6l.xbps
+ filename-sha256
+ 6556750e2373e06095a16a9d9c431ba80d9aca7e6a167de9d1767442fb058527
+ filename-size
+ 43856
+ homepage
+ http://ccache.samba.org
+ installed_size
+ 85454
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ ccache
+ pkgver
+ ccache-3.1.9_2
+ run_depends
+
+ glibc>=2.8_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ A Fast C/C++ Compiler Cache
+ source-revisions
+ ccache/template: e19fadfed8dbfd50217fe261f06e04ff3f02730c
+ version
+ 3.1.9_2
+
+ cheese-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 23:16 CET
+ filename
+ cheese-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ 7d573ad988cfb57545fd97fb96418786c39919c5fcd58a9f9f79aac8b6c7c6db
+ filename-size
+ 161868
+ homepage
+ http://www.gnome.org/projects/cheese/
+ installed_size
+ 477678
+ license
+ GPL-2
+ long_desc
+
+ A webcam application that supports image and video capture. Makes it easy to
+ take photos and videos of you, your friends, pets or whatever you want. Allows
+ you to apply fancy visual effects, fine-control image settings and has
+ features such as Multi-Burst mode, Countdown timer for photos.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ cheese-devel
+ pkgver
+ cheese-devel-3.6.2_1
+ run_depends
+
+ gst-plugins-base1-devel>=0
+ libcanberra-devel>=0
+ clutter-gst-devel>=1.9.92
+ clutter-gtk-devel>=1.3.2
+ libcheese-3.6.2_1
+
+ short_desc
+ cheese -- development files
+ version
+ 3.6.2_1
+
+ chroot-bash
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:25 CET
+ conflicts
+
+ bash>=0
+
+ filename
+ chroot-bash-4.2_3.armv6l.xbps
+ filename-sha256
+ 883d831c6232be2a1d1693c876f1d2580a54a96c8b5795bdd541bbf47f527930
+ filename-size
+ 454020
+ homepage
+ http://www.gnu.org/software/bash/bash.html
+ installed_size
+ 1216396
+ license
+ GPL-3
+ long_desc
+
+ Bash is an sh-compatible shell that incorporates useful features from
+ the Korn shell (ksh) and C shell (csh). It is intended to conform to
+ the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
+
+ It offers functional improvements over sh for both programming and
+ interactive use; these include command line editing, unlimited size
+ command history, job control, shell functions and aliases, indexed
+ arrays of unlimited size, and integer arithmetic in any base from two
+ to sixty-four. In addition, most sh scripts can be run by Bash without
+ modification.
+
+ This package is only meant to be used by xbps-src, don't install it
+ manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ chroot-bash
+ pkgver
+ chroot-bash-4.2_3
+ provides
+
+ bash-4.2
+
+ short_desc
+ The GNU Bourne Again Shell -- for xbps-src use
+ source-revisions
+ chroot-bash/template: 4ec6ebe822ab5876e34b35ab3b785ac6ca709a3e
+ version
+ 4.2_3
+
+ chroot-binutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 14:33 CET
+ conflicts
+
+ binutils>=0
+
+ filename
+ chroot-binutils-2.23.51.0.3_2.armv6l.xbps
+ filename-sha256
+ 28b8dfe1fb46c429cb28731974354ac764eff68e7c8acb4ab19ccb94cc809b97
+ filename-size
+ 932108
+ homepage
+ http://www.gnu.org/software/binutils/
+ installed_size
+ 8399032
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (18f0b218c4c2986c23ca605843e1fe5c3d3db62e)
+ pkgname
+ chroot-binutils
+ pkgver
+ chroot-binutils-2.23.51.0.3_2
+ provides
+
+ binutils-2.23.51.0.3
+
+ short_desc
+ GNU binary utilities -- for xbps-src use
+ source-revisions
+ chroot-binutils/template: b4a7df14cbb5f2577a480cdd89fd35d77854c74b
+ version
+ 2.23.51.0.3_2
+
+ chroot-bzip2
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 14:50 CET
+ conflicts
+
+ bzip2>=0
+
+ filename
+ chroot-bzip2-1.0.6_2.armv6l.xbps
+ filename-sha256
+ 1a1dd7f9624936c1fa84a31ffc6437319921c763419c67f963dff96755ce6c20
+ filename-size
+ 45344
+ homepage
+ http://www.bzip.org
+ installed_size
+ 193260
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (18f0b218c4c2986c23ca605843e1fe5c3d3db62e)
+ pkgname
+ chroot-bzip2
+ pkgver
+ chroot-bzip2-1.0.6_2
+ provides
+
+ bzip2-1.0.6
+ bzip2-devel-1.0.6
+
+ short_desc
+ The bzip2 compression library
+ source-revisions
+ chroot-bzip2/patches: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+chroot-bzip2/template: 8fc5b428566df979cf6ef2b6d47fae399c736ac4
+ version
+ 1.0.6_2
+
+ chroot-coreutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 15:01 CET
+ conflicts
+
+ coreutils>=0
+
+ filename
+ chroot-coreutils-8.17_3.armv6l.xbps
+ filename-sha256
+ 24a309bc4fced89128400e0e523770dc1ef1a563d699520630aec7d63659f9d0
+ filename-size
+ 545520
+ homepage
+ http://www.gnu.org/software/coreutils
+ installed_size
+ 4131339
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (18f0b218c4c2986c23ca605843e1fe5c3d3db62e)
+ pkgname
+ chroot-coreutils
+ pkgver
+ chroot-coreutils-8.17_3
+ provides
+
+ coreutils-8.17
+
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU core utilities - for xbps-src use
+ source-revisions
+ chroot-coreutils/template: 77ac7be2a8e7e7d0041ee183f6a77358fcbedbf0
+ version
+ 8.17_3
+
+ chroot-diffutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 00:55 CET
+ conflicts
+
+ diffutils>=0
+
+ filename
+ chroot-diffutils-3.2_2.armv6l.xbps
+ filename-sha256
+ b03536fcdee19699f3d126f83ac53c09b38ed1d49205f24821c7d8e9cbee3b24
+ filename-size
+ 82068
+ homepage
+ http://www.gnu.org/software/diffutils
+ installed_size
+ 430530
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-diffutils
+ pkgver
+ chroot-diffutils-3.2_2
+ provides
+
+ diffutils-3.2
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU diff utilities -- for xbps-src use
+ source-revisions
+ chroot-diffutils/template: fafa4118f48157f3fa3cef52f9310a55969b8f01
+ version
+ 3.2_2
+
+ chroot-distcc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:13 CET
+ conflicts
+
+ distcc>=0
+
+ filename
+ chroot-distcc-3.2rc1_1.armv6l.xbps
+ filename-sha256
+ 39ea65d80069063038fcc1e55e014ebd1c8e37eac46e9dcc93041c31b89c784c
+ filename-size
+ 45140
+ homepage
+ http://code.google.com/p/distcc
+ installed_size
+ 215756
+ license
+ GPL-2
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-distcc
+ pkgver
+ chroot-distcc-3.2rc1_1
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Distributed compilation for faster C/C++ builds -- for xbps-src use
+ source-revisions
+ chroot-distcc/template: 1364c87c85ac4d3c85c374af5af08af79ed1d987
+ version
+ 3.2rc1_1
+
+ chroot-fakeroot
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:05 CET
+ conflicts
+
+ fakeroot>=0
+
+ filename
+ chroot-fakeroot-1.18.4_1.armv6l.xbps
+ filename-sha256
+ 2dc8a0ba3aad562d7c349111f092cafb398286e3df2a30570e0655a911a7293a
+ filename-size
+ 16016
+ homepage
+ http://packages.debian.org/fakeroot
+ installed_size
+ 65670
+ license
+ GPL-3
+ long_desc
+
+ This package is intended to remove the need to become root for a package build.
+ This is done by setting LD_PRELOAD to libfakeroot.so, which provides wrappers
+ around getuid, chown, chmod, mknod, stat, and so on, thereby creating a fake
+ root environment.
+
+ This package is only meant to be used by xbps-src, don't install it manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-fakeroot
+ pkgver
+ chroot-fakeroot-1.18.4_1
+ provides
+
+ fakeroot-1.18.4_1
+
+ run_depends
+
+ chroot-util-linux>=0
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Gives a fake root environment -- for xbps-src use
+ source-revisions
+ chroot-fakeroot/template: 5ea337d2ca561c4e931b8e5a5e05cc8892711254
+ version
+ 1.18.4_1
+
+ chroot-file
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:13 CET
+ conflicts
+
+ file>=0
+
+ filename
+ chroot-file-5.11_1.armv6l.xbps
+ filename-sha256
+ ed2657b7d12f4484a4d6151151f17cb9da24fbea042b58be5a8787bc166d4429
+ filename-size
+ 179092
+ homepage
+ http://www.darwinsys.com/file/
+ installed_size
+ 2620013
+ license
+ BSD
+ long_desc
+
+ File attempts to classify files depending on their contents and prints
+ a description if a match is found.
+
+ This package is only meant to be used by xbps-src, don't install it manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-file
+ pkgver
+ chroot-file-5.11_1
+ provides
+
+ file-5.11
+ file-devel-5.11
+
+ short_desc
+ File type identification utility -- for xbps-src use
+ source-revisions
+ chroot-file/template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ version
+ 5.11_1
+
+ chroot-findutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 00:23 CET
+ conflicts
+
+ findutils>=0
+
+ filename
+ chroot-findutils-4.4.2_1.armv6l.xbps
+ filename-sha256
+ 2169c8d4dd14a230dd7f9f74d1b4a1d8a9e9ed7162eb3b3c3884317b08a3645a
+ filename-size
+ 86304
+ homepage
+ http://www.gnu.org/software/findutils
+ installed_size
+ 215808
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (76051af0fa7d752c731088334f9868159184a8c8)
+ pkgname
+ chroot-findutils
+ pkgver
+ chroot-findutils-4.4.2_1
+ provides
+
+ findutils-4.4.2
+
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU Find Utilities -- for xbps-src use
+ source-revisions
+ chroot-findutils/template: 6d241d237535eec92fc4729874c8bb58da7e6b65
+ version
+ 4.4.2_1
+
+ chroot-gawk
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:15 CET
+ conflicts
+
+ gawk>=0
+
+ filename
+ chroot-gawk-4.0.0_2.armv6l.xbps
+ filename-sha256
+ efb660f1a2bf5c6c606433aa2fb2af32e52169e3b6e46c73a9597e3efcef268f
+ filename-size
+ 190972
+ homepage
+ http://www.gnu.org/directory/GNU/gawk.html
+ installed_size
+ 618581
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-gawk
+ pkgver
+ chroot-gawk-4.0.0_2
+ provides
+
+ gawk-4.0.0
+
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU awk utility -- for xbps-src use
+ source-revisions
+ chroot-gawk/template: b6345ca1d3ad77121c1dd7f3aa8ff12143219166
+ version
+ 4.0.0_2
+
+ chroot-gcc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 12:38 CET
+ conflicts
+
+ libgcc>=0
+ libstdc++>=0
+ libstdc++-devel>=0
+ gcc>=0
+ gcc-c++>=0
+
+ filename
+ chroot-gcc-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 0051fb32d794082a76a6e47a5df3593dd2ba70fd1911578c082016ac127a71d9
+ filename-size
+ 7798420
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 37587625
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ chroot-gcc
+ pkgver
+ chroot-gcc-4.7.2_2
+ provides
+
+ libgcc-4.7.2
+ libstdc++-4.7.2
+ libstdc++-devel-4.7.2
+ gcc-4.7.2
+ gcc-c++-4.7.2
+
+ short_desc
+ The GNU C Compiler suite -- for xbps-src use
+ source-revisions
+ chroot-gcc/files: a8e0b7cb90c498522e29ed5f1b7f78fa27f10ff2
+chroot-gcc/template: a8e0b7cb90c498522e29ed5f1b7f78fa27f10ff2
+ version
+ 4.7.2_2
+
+ chroot-gettext
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:10 CET
+ conflicts
+
+ gettext>=0
+
+ filename
+ chroot-gettext-0.18.2_1.armv6l.xbps
+ filename-sha256
+ 739860cd8f6af888e059fe0953aeb21f3b95a996537cba69f7e398ffaec56f0d
+ filename-size
+ 687908
+ homepage
+ http://www.gnu.org/software/gettext/
+ installed_size
+ 8141716
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ chroot-gettext
+ pkgver
+ chroot-gettext-0.18.2_1
+ provides
+
+ gettext-0.18.2
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Internationalized Message Handling tools -- for xbps-src use
+ source-revisions
+ chroot-gettext/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 0.18.2_1
+
+ chroot-glibc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:09 CET
+ conflicts
+
+ glibc>=0
+ glibc-devel>=0
+
+ filename
+ chroot-glibc-2.17_4.armv6l.xbps
+ filename-sha256
+ a53d0d650d6218143787bc743c64b1e6c1cc5e582b8350fd9edb831be638bbc7
+ filename-size
+ 3349884
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 17249374
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ chroot-glibc
+ pkgver
+ chroot-glibc-2.17_4
+ provides
+
+ glibc-2.17
+ glibc-devel-2.17
+
+ short_desc
+ The GNU C library -- for xbps-src use
+ source-revisions
+ chroot-glibc/patches: 76e35186e730e919097a723982d5933e9819c40c
+chroot-glibc/template: 8189fc08c307bd69799888db26bfbbd323694b34
+ version
+ 2.17_4
+
+ chroot-grep
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:15 CET
+ conflicts
+
+ grep>=0
+
+ filename
+ chroot-grep-2.10_4.armv6l.xbps
+ filename-sha256
+ 7a52627b70e3a1f8956c1cab4cfdb3a7ef7fc144564e59d5d0cb0028e1dd0dd3
+ filename-size
+ 78152
+ homepage
+ http://www.gnu.org/software/grep/
+ installed_size
+ 677392
+ license
+ GPL-3
+ long_desc
+
+ GNU grep is based on a fast lazy-state deterministic matcher (about twice
+ as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper search for
+ a fixed string that eliminates impossible text from being considered by the
+ full regexp matcher without necessarily having to look at every character.
+ The result is typically many times faster than Unix grep or egrep.
+
+ This package is only meant to be used with xbps-src exclusively, you probably
+ don't have to install it manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-grep
+ pkgver
+ chroot-grep-2.10_4
+ provides
+
+ grep-2.10
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU grep utility - for use with xbps-src
+ source-revisions
+ chroot-grep/template: db6ee5b101972a55104937415ddd7df01b5dfa53
+ version
+ 2.10_4
+
+ chroot-gzip
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:17 CET
+ conflicts
+
+ gzip>=0
+
+ filename
+ chroot-gzip-1.4_1.armv6l.xbps
+ filename-sha256
+ 1782390cf3f00dcf474b3ab94750ae3c3454adb3b191236c7fa50f2a55a72d33
+ filename-size
+ 38944
+ homepage
+ http://www.gnu.org/software/gzip/
+ installed_size
+ 132923
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-gzip
+ pkgver
+ chroot-gzip-1.4_1
+ provides
+
+ gzip-1.4
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ GNU compression utility -- for xbps-src use
+ source-revisions
+ chroot-gzip/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 1.4_1
+
+ chroot-m4
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:19 CET
+ conflicts
+
+ m4>=0
+
+ filename
+ chroot-m4-1.4.16_1.armv6l.xbps
+ filename-sha256
+ 098df7a949b20f7e7b78a823a0711eaf19f96ac9e96253d1e9191561ece2174e
+ filename-size
+ 42900
+ homepage
+ http://www.gnu.org/software/m4/
+ installed_size
+ 173696
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-m4
+ pkgver
+ chroot-m4-1.4.16_1
+ provides
+
+ m4-1.4.16
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ GNU version of UNIX m4 macro language processor -- for xbps-src use
+ source-revisions
+ chroot-m4/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 1.4.16_1
+
+ chroot-make
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:20 CET
+ conflicts
+
+ make>=0
+
+ filename
+ chroot-make-3.82_3.armv6l.xbps
+ filename-sha256
+ ab666c6d9a681c629d1d94d28c16b105752836d36f85248bd29f433d23145b64
+ filename-size
+ 58196
+ homepage
+ http://www.gnu.org/software/make/
+ installed_size
+ 205932
+ license
+ GPL-3
+ long_desc
+
+ GNU Make is a program that determines which pieces of a large
+ program need to be recompiled and issues the commands to
+ recompile them, when necessary.
+
+ This package is only meant to be used by xbps-src, don't install it manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-make
+ pkgver
+ chroot-make-3.82_3
+ provides
+
+ make-3.82
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ The GNU make system -- for xbps-src use
+ source-revisions
+ chroot-make/patches/make-3.82-bugfixes.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-copy-on-expand.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-dont-prune-intermediate.patch: 86c6215603c1a0aba326e2fa55f577a95b01699b
+chroot-make/patches/make-3.82-err-reporting.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-expensive_glob.patch: 86c6215603c1a0aba326e2fa55f577a95b01699b
+chroot-make/patches/make-3.82-getcwd.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-j8k.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-jobserver.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-newlines.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-parallel-remake.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-sort-blank.patch: 86c6215603c1a0aba326e2fa55f577a95b01699b
+chroot-make/patches/make-3.82-trace.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-warn_undefined_function.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/patches/make-3.82-weird-shell.patch: 94acb682d6a7bd84132a3131b493cc535a631acf
+chroot-make/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 3.82_3
+
+ chroot-patch
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:23 CET
+ conflicts
+
+ patch>=0
+
+ filename
+ chroot-patch-2.7.1_2.armv6l.xbps
+ filename-sha256
+ 8a4c753543facf3f5ec31456c97c5b3ce4e3ca4a815ce01401c449a3dbf8ce67
+ filename-size
+ 53652
+ homepage
+ http://savannah.gnu.org/projects/patch/
+ installed_size
+ 192124
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-patch
+ pkgver
+ chroot-patch-2.7.1_2
+ provides
+
+ patch-2.7.1
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Patch files using diff output -- for xbps-src use
+ source-revisions
+ chroot-patch/template: b40326918d4738be1e3d16b2af59a0a19b345a5c
+ version
+ 2.7.1_2
+
+ chroot-sed
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 00:55 CET
+ conflicts
+
+ sed>=0
+
+ filename
+ chroot-sed-4.2.1_1.armv6l.xbps
+ filename-sha256
+ 7833b268972d614828395c28fc49abeca227b7d83392adc614e52d13baf3e116
+ filename-size
+ 22748
+ homepage
+ http://www.gnu.org/software/sed/
+ installed_size
+ 73638
+ license
+ GPL-3
+ long_desc
+
+ Sed, the GNU Stream Editor, copies the named files (standard input default)
+ to the standard output, edited according to a script of commands.
+
+ This package is only meant to be used by xbps-src, don't install it manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-sed
+ pkgver
+ chroot-sed-4.2.1_1
+ provides
+
+ sed-4.2.1
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU stream editor -- for xbps-src use
+ source-revisions
+ chroot-sed/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 4.2.1_1
+
+ chroot-tar
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 01:26 CET
+ conflicts
+
+ tar>=0
+
+ filename
+ chroot-tar-1.26_1.armv6l.xbps
+ filename-sha256
+ a689b1ddb288e5f3c4acaaed831d1321c4ee46663b039428b3b94ab660f99b52
+ filename-size
+ 122216
+ homepage
+ http://www.gnu.org/software/tar/
+ installed_size
+ 486653
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ chroot-tar
+ pkgver
+ chroot-tar-1.26_1
+ provides
+
+ tar-1.26
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU tape archiver -- for xbps-src use
+ source-revisions
+ chroot-tar/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 1.26_1
+
+ chroot-texinfo
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 12:44 CET
+ conflicts
+
+ texinfo>=0
+
+ filename
+ chroot-texinfo-4.13a_2.armv6l.xbps
+ filename-sha256
+ db420aca6c7e3303753e0360b9efb9cc469e915e23e28d6517089079a091f23d
+ filename-size
+ 107760
+ homepage
+ http://www.gnu.org/software/texinfo/
+ installed_size
+ 304858
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ chroot-texinfo
+ pkgver
+ chroot-texinfo-4.13a_2
+ provides
+
+ texinfo-4.13a
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ The GNU Documentation System -- for xbps-src use
+ source-revisions
+ chroot-texinfo/template: 31ebe608ea9b2e84c451d8e682793706667cdafe
+ version
+ 4.13a_2
+
+ chroot-util-linux
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 14:54 CET
+ conflicts
+
+ util-linux>=0
+
+ filename
+ chroot-util-linux-2.21_1.armv6l.xbps
+ filename-sha256
+ f8818dabb9bf54a73e364a7c65698335c643e0957220884ad1c29d9d4ca5afbd
+ filename-size
+ 89500
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 425944
+ license
+ GPL-2
+ long_desc
+
+ The util-linux package contains miscellaneous utility programs. Among
+ them are utilities for handling file systems, consoles, partitions,
+ and messages.
+
+ This package is only meant to be used by xbps-src, don't install it manually.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (18f0b218c4c2986c23ca605843e1fe5c3d3db62e)
+ pkgname
+ chroot-util-linux
+ pkgver
+ chroot-util-linux-2.21_1
+ provides
+
+ util-linux-2.21
+
+ replaces
+
+ chroot-gnu-getopt>=0
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Miscellaneous linux utilities -- for xbps-src use
+ source-revisions
+ chroot-util-linux/template: 6d241d237535eec92fc4729874c8bb58da7e6b65
+ version
+ 2.21_1
+
+ chroot-xz
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:02 CET
+ conflicts
+
+ xz>=0
+
+ filename
+ chroot-xz-5.0.4_1.armv6l.xbps
+ filename-sha256
+ d3709b5b3f725db5a41e5e6e481b531c74334af93e8d6753c40af61e278ffc29
+ filename-size
+ 79872
+ homepage
+ http://tukaani.org/xz/
+ installed_size
+ 276200
+ license
+ custom blend of Public Domain, GPL-2 and GPL-2
+ long_desc
+
+ LZMA is a general purporse compression algorithm designed by Igor
+ Pavlov as part of 7-Zip. It provides high compression ratio while
+ keeping the decompression speed fast.
+
+ XZ Utils are an attempt to make LZMA compression easy to use on
+ free (as in freedom) operating systems. This is achieved by providing
+ tools and libraries which are similar to use than the equivalents
+ of the most popular existing compression algorithms.
+
+ XZ Utils consist of a few relatively separate parts:
+ * xz command line tool has almost identical syntax than gzip
+ and bzip2. It makes LZMA easy for average users, but also
+ provides advanced options to finetune the compression settings.
+ * A few shell scripts make diffing and grepping LZMA compressed
+ files easy. The scripts were adapted from gzip and bzip2.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ chroot-xz
+ pkgver
+ chroot-xz-5.0.4_1
+ provides
+
+ xz-5.0.4
+
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ XZ utilities -- for xbps-src use
+ source-revisions
+ chroot-xz/template: 63fd80100529dd6152776b0409fdfd1a0cc39600
+ version
+ 5.0.4_1
+
+ clang-analyzer
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-25 09:28 CET
+ filename
+ clang-analyzer-3.2_3.noarch.xbps
+ filename-sha256
+ 4bb9df96d8f744c2ccb3ce0f947b5e1aebc824061a4942ccf6605b8ee46c91dd
+ filename-size
+ 44744
+ homepage
+ http://clang-analyzer.llvm.org/
+ installed_size
+ 156808
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ clang-analyzer
+ pkgver
+ clang-analyzer-3.2_3
+ run_depends
+
+ clang>=3.2
+ python>=0
+
+ short_desc
+ Low-Level Virtual Machine (LLVM) - A source code analysis framework
+ source-revisions
+ llvm/INSTALL: 5a8130aa2ceef43450be95e89120ad9603146626
+llvm/REMOVE: 5a8130aa2ceef43450be95e89120ad9603146626
+llvm/clang-analyzer.template: d6741756d0d457fa08cb1681698f676ee83e856d
+llvm/clang.template: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/files/llvm-Config-config.h: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/files/llvm-Config-llvm-config.h: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/llvm-docs.template: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/patches/clang-3.1-fix-libprofile_rt.a-location.patch: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/patches/llvm-3.1-fix-debug-line-info.patch: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/template: d6741756d0d457fa08cb1681698f676ee83e856d
+ version
+ 3.2_3
+
+ cloog
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:20 CET
+ filename
+ cloog-0.17.0_3.armv6l.xbps
+ filename-sha256
+ 34f8926df83263f69f99c8a7ada9f010efb48e52e85e17c92dc5dbe07e81a43f
+ filename-size
+ 41000
+ homepage
+ http://www.bastoul.net/cloog/
+ installed_size
+ 119200
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ cloog
+ pkgver
+ cloog-0.17.0_3
+ replaces
+
+ cloog-ppl>=0
+
+ run_depends
+
+ glibc>=2.8_1
+ isl>=0.10_1
+ gmp>=5.0.1_1
+
+ short_desc
+ Library that generates loops for scanning polyhedra
+ source-revisions
+ cloog/cloog-devel.template: 3e9d9dcb7298d7970a855499d6b4d3d4f56c47db
+cloog/template: 3e9d9dcb7298d7970a855499d6b4d3d4f56c47db
+ version
+ 0.17.0_3
+
+ cloog-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:20 CET
+ filename
+ cloog-dbg-0.17.0_3.armv6l.xbps
+ filename-sha256
+ 57c725c1424f44f0cfebd820f066ab5f8437206f01eb98199adef494426eed88
+ filename-size
+ 130384
+ homepage
+ http://www.bastoul.net/cloog/
+ installed_size
+ 157430
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ cloog-dbg
+ pkgver
+ cloog-dbg-0.17.0_3
+ short_desc
+ Library that generates loops for scanning polyhedra (debug files)
+ source-revisions
+ cloog/cloog-devel.template: 3e9d9dcb7298d7970a855499d6b4d3d4f56c47db
+cloog/template: 3e9d9dcb7298d7970a855499d6b4d3d4f56c47db
+ version
+ 0.17.0_3
+
+ cloog-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:20 CET
+ filename
+ cloog-devel-0.17.0_3.armv6l.xbps
+ filename-sha256
+ 4c78209b940700d25f877f298764f0ec0cd80cc19371254c67849140012130b4
+ filename-size
+ 52956
+ homepage
+ http://www.bastoul.net/cloog/
+ installed_size
+ 233138
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ cloog-devel
+ pkgver
+ cloog-devel-0.17.0_3
+ replaces
+
+ cloog-ppl-devel>=0
+
+ run_depends
+
+ gmp-devel>=0
+ cloog>=0.17.0
+
+ short_desc
+ Library that generates loops for scanning polyhedra -- development files
+ source-revisions
+ cloog/cloog-devel.template: 3e9d9dcb7298d7970a855499d6b4d3d4f56c47db
+cloog/template: 3e9d9dcb7298d7970a855499d6b4d3d4f56c47db
+ version
+ 0.17.0_3
+
+ clutter-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-17 11:24 CEST
+ filename
+ clutter-devel-1.12.2_1.noarch.xbps
+ filename-sha256
+ d3954af7dcbc652c2b6fbab579dec075808121c6f41b03760c6f9a3462f76ebf
+ filename-size
+ 871228
+ homepage
+ http://www.clutter-project.org
+ installed_size
+ 11719645
+ license
+ LGPL-2.1
+ long_desc
+
+ Clutter is an open source software library for creating fast, visually
+ rich and animated graphical user interfaces.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ clutter-devel
+ pkgver
+ clutter-devel-1.12.2_1
+ run_depends
+
+ cogl-devel>=1.12
+ cairo-devel>=0
+ atk-devel>=0
+ pango-devel>=0
+ json-glib-devel>=0
+ libX11-devel>=0
+ libXext-devel>=0
+ libXfixes-devel>=0
+ libXdamage-devel>=0
+ libXcomposite-devel>=0
+ libXi-devel>=0
+ clutter-1.12.2_1
+
+ short_desc
+ OpenGL based interactive canvas library - development files
+ version
+ 1.12.2_1
+
+ clutter-gst-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 04:51 CET
+ filename
+ clutter-gst-devel-2.0.2_1.noarch.xbps
+ filename-sha256
+ afe6fb73030a9d0a12f187f8409fd0fb3f72f48580725d93a5137898b8f3b8bf
+ filename-size
+ 25200
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 259891
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ clutter-gst-devel
+ pkgver
+ clutter-gst-devel-2.0.2_1
+ run_depends
+
+ clutter-devel>=1.12
+ gst-plugins-base1-devel>=0
+ clutter-gst-2.0.2_1
+
+ short_desc
+ GStreamer bindings for the Clutter Toolkit -- development files
+ version
+ 2.0.2_1
+
+ clutter-gtk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-18 01:26 CET
+ filename
+ clutter-gtk-devel-1.4.2_1.noarch.xbps
+ filename-sha256
+ c69a58e9ec8695fb62041865482e6398f3b345194cadc6e45e3f8b43dc9d5c0a
+ filename-size
+ 21836
+ homepage
+ http://clutter-project.org/
+ installed_size
+ 168535
+ license
+ LGPL-2.1
+ long_desc
+
+ This packages contains the GTK+3 bindings for the Clutter Toolkit.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ clutter-gtk-devel
+ pkgver
+ clutter-gtk-devel-1.4.2_1
+ run_depends
+
+ gtk+3-devel>=3.6.0_2
+ clutter-devel>=1.12
+ clutter-gtk-1.4.2_1
+
+ short_desc
+ clutter-gtk - development files
+ source-revisions
+ clutter-gtk/clutter-gtk-devel.template: fc94a68592c53416ee7af4a0521f366b9f9b4fce
+clutter-gtk/template: f31bb90907c82449bc0ba3627c533dc9ab99d184
+ version
+ 1.4.2_1
+
+ cogl-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-05 09:53 CET
+ filename
+ cogl-devel-1.12.2_1.noarch.xbps
+ filename-sha256
+ f8ef03b273abbd08fb9f67addd950b5ca78c312d3844fc569325a16f5cfc5bde
+ filename-size
+ 132604
+ homepage
+ http://www.clutter-project.org
+ installed_size
+ 1103025
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ cogl-devel
+ pkgver
+ cogl-devel-1.12.2_1
+ run_depends
+
+ libdrm-devel>=0
+ libXcomposite-devel>=0
+ libXdamage-devel>=0
+ gdk-pixbuf-devel>=0
+ glib-devel>=0
+ cogl>=1.12.2
+
+ short_desc
+ Library for using 3D graphics hardware for rendering -- development files
+ source-revisions
+ cogl/cogl-devel.template: 8b7a0a25c0f2f488241b8e7e39c432cd61a9dfd1
+cogl/template: 8b7a0a25c0f2f488241b8e7e39c432cd61a9dfd1
+ version
+ 1.12.2_1
+
+ colord-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-26 08:26 CET
+ filename
+ colord-devel-0.1.28_1.noarch.xbps
+ filename-sha256
+ f782824e18db544842de391b98b9c21acec213e85aca6eea03011fca7706aadb
+ filename-size
+ 31620
+ homepage
+ http://www.freedesktop.org/software/colord
+ installed_size
+ 422965
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ colord-devel
+ pkgver
+ colord-devel-0.1.28_1
+ run_depends
+
+ dbus-devel>=0
+ glib-devel>=0
+ lcms2-devel>=0
+ libcolord-0.1.28_1
+
+ short_desc
+ System daemon for managing color devices -- development files
+ source-revisions
+ colord/colord-devel.template: 4843325f7acec585523e13ad1ebd0c3a977b51ca
+colord/libcolord.template: 4843325f7acec585523e13ad1ebd0c3a977b51ca
+colord/template: 4843325f7acec585523e13ad1ebd0c3a977b51ca
+ version
+ 0.1.28_1
+
+ colord-gtk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-06 12:27 CEST
+ filename
+ colord-gtk-devel-0.1.23_2.noarch.xbps
+ filename-sha256
+ 2ed1f447a66ac738b24b56def33f559daceb3da9549613a774a354f57eff9bd9
+ filename-size
+ 5328
+ homepage
+ http://www.freedesktop.org/software/colord
+ installed_size
+ 19614
+ long_desc
+
+ colord-gtk is a support library for colord and provides additional
+ functionality that requires GTK+.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ colord-gtk-devel
+ pkgver
+ colord-gtk-devel-0.1.23_2
+ run_depends
+
+ colord-devel>=0.1.23_3
+ gtk+3-devel>=3.6.0_3
+ colord-gtk>=0.1.23_2
+
+ short_desc
+ colord-gtk - development files
+ version
+ 0.1.23_2
+
+ compositeproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:21:48 UTC
+ filename
+ compositeproto-0.4.1_1.noarch.xbps
+ filename-sha256
+ e8b495235ecabf10c7f0ff67f2c0f8c03d3f83e96f6b97a8c046a1d8fadd8f16
+ filename-size
+ 7576
+ installed_size
+ 32768
+ long_desc
+
+ This package provides Composite extension headers from the modular
+ X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ compositeproto
+ pkgver
+ compositeproto-0.4.1_1
+ short_desc
+ Composite extension headers from modular X.org
+ version
+ 0.4.1_1
+
+ confuse
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 14:32 CET
+ filename
+ confuse-2.7_2.armv6l.xbps
+ filename-sha256
+ 296c6c3b806f29c62afb208af61d80656c45666e4bc4aa7f2e30019b25f7610d
+ filename-size
+ 14576
+ homepage
+ http://www.nongnu.org/confuse/
+ installed_size
+ 36624
+ license
+ ISC
+ long_desc
+
+ libConfuse is a configuration file parser library, licensed under the terms
+ of the ISC license, and written in C. It supports sections and (lists of)
+ values (strings, integers, floats, booleans or other sections), as well as
+ some other features (such as single/double-quoted strings, environment
+ variable expansion, functions and nested include statements). It makes it
+ very easy to add configuration file capability to a program using a simple
+ API.
+
+ The goal of libConfuse is not to be the configuration file parser library
+ with a gazillion of features. Instead, it aims to be easy to use and quick
+ to integrate with your code. libConfuse was called libcfg before, but its
+ name was changed to not confuse itself with other similar libraries.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ confuse
+ pkgver
+ confuse-2.7_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ C-library for parsing configuration files
+ source-revisions
+ confuse/confuse-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+confuse/template: 861041b24585c659448e78f05c1e753e89f5e367
+ version
+ 2.7_2
+
+ confuse-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 14:32 CET
+ filename
+ confuse-dbg-2.7_2.armv6l.xbps
+ filename-sha256
+ 5773f34201fe9ff3005ac1180a20ee536b5e6d0b00b7ed564784b65c3d0c3e05
+ filename-size
+ 30968
+ homepage
+ http://www.nongnu.org/confuse/
+ installed_size
+ 39444
+ license
+ ISC
+ long_desc
+
+ libConfuse is a configuration file parser library, licensed under the terms
+ of the ISC license, and written in C. It supports sections and (lists of)
+ values (strings, integers, floats, booleans or other sections), as well as
+ some other features (such as single/double-quoted strings, environment
+ variable expansion, functions and nested include statements). It makes it
+ very easy to add configuration file capability to a program using a simple
+ API.
+
+ The goal of libConfuse is not to be the configuration file parser library
+ with a gazillion of features. Instead, it aims to be easy to use and quick
+ to integrate with your code. libConfuse was called libcfg before, but its
+ name was changed to not confuse itself with other similar libraries.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ confuse-dbg
+ pkgver
+ confuse-dbg-2.7_2
+ short_desc
+ C-library for parsing configuration files (debug files)
+ source-revisions
+ confuse/confuse-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+confuse/template: 861041b24585c659448e78f05c1e753e89f5e367
+ version
+ 2.7_2
+
+ confuse-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 14:32 CET
+ filename
+ confuse-devel-2.7_2.armv6l.xbps
+ filename-sha256
+ 33addaf38cc62ad0b4b64dbc28b83c78a883be4c821c50eb8ce32f146f277ace
+ filename-size
+ 21612
+ homepage
+ http://www.nongnu.org/confuse/
+ installed_size
+ 83199
+ license
+ ISC
+ long_desc
+
+ libConfuse is a configuration file parser library, licensed under the terms
+ of the ISC license, and written in C. It supports sections and (lists of)
+ values (strings, integers, floats, booleans or other sections), as well as
+ some other features (such as single/double-quoted strings, environment
+ variable expansion, functions and nested include statements). It makes it
+ very easy to add configuration file capability to a program using a simple
+ API.
+
+ The goal of libConfuse is not to be the configuration file parser library
+ with a gazillion of features. Instead, it aims to be easy to use and quick
+ to integrate with your code. libConfuse was called libcfg before, but its
+ name was changed to not confuse itself with other similar libraries.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ confuse-devel
+ pkgver
+ confuse-devel-2.7_2
+ run_depends
+
+ confuse>=0
+
+ short_desc
+ C-library for parsing configuration files (development files)
+ source-revisions
+ confuse/confuse-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+confuse/template: 861041b24585c659448e78f05c1e753e89f5e367
+ version
+ 2.7_2
+
+ connman-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-04 21:25 CET
+ filename
+ connman-devel-1.11_1.noarch.xbps
+ filename-sha256
+ 9d9324796d705a533b224037290e460cf35e8df6d8a7bc1572843b4eb95e8c25
+ filename-size
+ 7560
+ homepage
+ http://connman.net/
+ installed_size
+ 42958
+ license
+ GPL-2
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ connman-devel
+ pkgver
+ connman-devel-1.11_1
+ run_depends
+
+ dbus-devel>=0
+ glib-devel>=0
+
+ short_desc
+ connman development files
+ source-revisions
+ connman/connman-devel.template: 0b7fca17aff316d37348b6de6d0a1ddbd25f33da
+connman/template: a0c2cb48c60df981249506329c52eef902eb1546
+ version
+ 1.11_1
+
+ coreutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:49 CET
+ conflicts
+
+ chroot-coreutils>=0
+ procps-ng<3.3.5_3
+
+ filename
+ coreutils-8.21_3.armv6l.xbps
+ filename-sha256
+ 92e7b9d713a042455c6bd06f4a13dabc48cf892534eb15cb3ab81ef821a99ca1
+ filename-size
+ 1728092
+ homepage
+ http://www.gnu.org/software/coreutils
+ installed_size
+ 12356268
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ coreutils
+ pkgver
+ coreutils-8.21_3
+ run_depends
+
+ coreutils-doc-8.21_3
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+ gmp>=5.0.1_1
+ acl>=2.2.47_1
+ attr>=2.4.43_1
+ libcap>=2.16_1
+
+ short_desc
+ The GNU core utilities
+ source-revisions
+ coreutils/coreutils-doc.template: 92c83228cb7d28f9a85f3eb78ae3b3965f360e24
+coreutils/template: cb42580ae7b0448e9d3899c4d9c892ad85fca34b
+ version
+ 8.21_3
+
+ coreutils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:49 CET
+ filename
+ coreutils-dbg-8.21_3.armv6l.xbps
+ filename-sha256
+ d1d74c1fd29f67ab18ec32bda9464a2591cf60f6c980bc7b98f15bddf7dcc03a
+ filename-size
+ 6359348
+ homepage
+ http://www.gnu.org/software/coreutils
+ installed_size
+ 8105116
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ coreutils-dbg
+ pkgver
+ coreutils-dbg-8.21_3
+ short_desc
+ The GNU core utilities (debug files)
+ source-revisions
+ coreutils/coreutils-doc.template: 92c83228cb7d28f9a85f3eb78ae3b3965f360e24
+coreutils/template: cb42580ae7b0448e9d3899c4d9c892ad85fca34b
+ version
+ 8.21_3
+
+ coreutils-doc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:47 CET
+ filename
+ coreutils-doc-8.21_3.noarch.xbps
+ filename-sha256
+ 52aae5fa9149a01ba80dbb07c922a37756319a4a84ff24613e9b934e4599b434
+ filename-size
+ 344004
+ homepage
+ http://www.gnu.org/software/coreutils
+ installed_size
+ 338642
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ coreutils-doc
+ pkgver
+ coreutils-doc-8.21_3
+ replaces
+
+ coreutils<8.20_4
+
+ short_desc
+ The GNU core utilities -- documentation files
+ source-revisions
+ coreutils/coreutils-doc.template: 92c83228cb7d28f9a85f3eb78ae3b3965f360e24
+coreutils/template: cb42580ae7b0448e9d3899c4d9c892ad85fca34b
+ version
+ 8.21_3
+
+ cracklib
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:12 CET
+ filename
+ cracklib-2.8.22_3.armv6l.xbps
+ filename-sha256
+ 48560c3d93420eb5e3f06c8e48bcf6105881afa2deb6190d5295a7c76e82bab4
+ filename-size
+ 3497416
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 17262260
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ cracklib
+ pkgver
+ cracklib-2.8.22_3
+ run_depends
+
+ libcracklib-2.8.22_3
+ glibc>=2.8_1
+
+ short_desc
+ Password Checking Library
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ cracklib-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:12 CET
+ filename
+ cracklib-dbg-2.8.22_3.armv6l.xbps
+ filename-sha256
+ 19c480ca1f9235dc12622ddd1fa8aa7fa0bea16d68efa033afbe710e519ce98f
+ filename-size
+ 9832
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 22502
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ cracklib-dbg
+ pkgver
+ cracklib-dbg-2.8.22_3
+ short_desc
+ Password Checking Library (debug files)
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ cracklib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:10 CET
+ filename
+ cracklib-devel-2.8.22_3.noarch.xbps
+ filename-sha256
+ 4e62ac7eb9c2ec5eb5408990d01a89f39d5590e5479f31b16a5a0ff01d76de56
+ filename-size
+ 2176
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 2683
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ cracklib-devel
+ pkgver
+ cracklib-devel-2.8.22_3
+ run_depends
+
+ zlib-devel>=0
+ libcracklib>=2.8.22
+
+ short_desc
+ Password Checking Library -- development files
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ cracklib-python
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:12 CET
+ filename
+ cracklib-python-2.8.22_3.armv6l.xbps
+ filename-sha256
+ 1b03e1ab99759056d5527f68524fc6129af2e96a97146935457ae71797f63551
+ filename-size
+ 6480
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 17079
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ cracklib-python
+ pkgver
+ cracklib-python-2.8.22_3
+ run_depends
+
+ python>=0
+ libcracklib-2.8.22_3
+ glibc>=2.8_1
+
+ short_desc
+ Password Checking Library -- python bindings
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ cracklib-python-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:12 CET
+ filename
+ cracklib-python-dbg-2.8.22_3.armv6l.xbps
+ filename-sha256
+ 5f15a122a01809e3f8b454a3e5d75a6fed4fd6194409bd7faae18d17374ec80a
+ filename-size
+ 8764
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 11265
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ cracklib-python-dbg
+ pkgver
+ cracklib-python-dbg-2.8.22_3
+ short_desc
+ Password Checking Library -- python bindings (debug files)
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ cronie
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 16:59 CET
+ conf_files
+
+ /etc/crontab
+ /etc/pam.d/crond
+ /etc/cron.deny
+
+ filename
+ cronie-1.4.9_2.armv6l.xbps
+ filename-sha256
+ 975817d9a556353a6d9bc0e4f556cd9086ea2b0df3616fe87820d98c54d1bcc5
+ filename-size
+ 41188
+ homepage
+ https://fedorahosted.org/cronie/
+ installed_size
+ 97338
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ cronie
+ pkgver
+ cronie-1.4.9_2
+ provides
+
+ cron-daemon-0
+
+ replaces
+
+ cron-daemon>=0
+
+ run_depends
+
+ run-parts>=0
+ pam-libs>=1.1.6_3
+ glibc>=2.8_1
+
+ short_desc
+ Runs specified programs at scheduled times
+ source-revisions
+ cronie/files/crond.pam: 5bd975d884cd7f1f5a845d8f4ed9794cd9387397
+cronie/files/cronie.service: 5bd975d884cd7f1f5a845d8f4ed9794cd9387397
+cronie/files/crontab: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+cronie/template: 37af1789bd57624a882c79f63d2d2be6ff8f77de
+ version
+ 1.4.9_2
+
+ cronie-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 16:59 CET
+ filename
+ cronie-dbg-1.4.9_2.armv6l.xbps
+ filename-sha256
+ 9307bfd5d65d025001798a3c67f8ad1e948bd5b47cd25f8dbff57e1afb1a16c4
+ filename-size
+ 88176
+ homepage
+ https://fedorahosted.org/cronie/
+ installed_size
+ 109089
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ cronie-dbg
+ pkgver
+ cronie-dbg-1.4.9_2
+ short_desc
+ Runs specified programs at scheduled times (debug files)
+ source-revisions
+ cronie/files/crond.pam: 5bd975d884cd7f1f5a845d8f4ed9794cd9387397
+cronie/files/cronie.service: 5bd975d884cd7f1f5a845d8f4ed9794cd9387397
+cronie/files/crontab: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+cronie/template: 37af1789bd57624a882c79f63d2d2be6ff8f77de
+ version
+ 1.4.9_2
+
+ cross-arm-linux-gnueabihf-libc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 00:32 CET
+ filename
+ cross-arm-linux-gnueabihf-libc-0.6_1.noarch.xbps
+ filename-sha256
+ c721a466985603c37ace65fa3d85e3e1a083ca33a9fc43550f8d911eaec9f147
+ filename-size
+ 4174396
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 28047381
+ license
+ Public Domain
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ cross-arm-linux-gnueabihf-libc
+ pkgver
+ cross-arm-linux-gnueabihf-libc-0.6_1
+ short_desc
+ GNU Cross toolchain for the arm-linux-gnueabihf LE target (binutils/gcc/glibc) -- glibc files
+ version
+ 0.6_1
+
+ cross-arm-linux-musleabi-libc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 15:26 CET
+ filename
+ cross-arm-linux-musleabi-libc-0.2_1.noarch.xbps
+ filename-sha256
+ 9cba1f97527ebfc19b40f3e155bc3296a6f8ee51ad334cf22926675a22c7c33a
+ filename-size
+ 2515928
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 19500663
+ license
+ Public Domain
+ maintainer
+ Juan RP <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ cross-arm-linux-musleabi-libc
+ pkgver
+ cross-arm-linux-musleabi-libc-0.2_1
+ short_desc
+ Cross toolchain for the arm-linux-musleabi LE Hard Float target -- libc files
+ version
+ 0.2_1
+
+ cross-mips-softfloat-linux-gnu-libc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 18:39 CET
+ filename
+ cross-mips-softfloat-linux-gnu-libc-0.4_1.noarch.xbps
+ filename-sha256
+ 4f9aa362810be5e78d238ca1f99d2afd3a81fe6a2876c8d591e82c6d39930e68
+ filename-size
+ 4333132
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 31253699
+ license
+ Public Domain
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-40 (0333a208e78d183fbbfc0027a226d3756a4637b8)
+ pkgname
+ cross-mips-softfloat-linux-gnu-libc
+ pkgver
+ cross-mips-softfloat-linux-gnu-libc-0.4_1
+ short_desc
+ GNU Cross toolchain for the mips-softfloat-linux-gnu BE target (binutils/gcc/glibc) -- glibc files
+ version
+ 0.4_1
+
+ cross-mipsel-softfloat-linux-gnu-libc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 18:20 CET
+ filename
+ cross-mipsel-softfloat-linux-gnu-libc-0.4_1.noarch.xbps
+ filename-sha256
+ c8e7b0911afdf53cb13bfb60d88b88b48215cbf638ddcdbfb46acd25a99874ea
+ filename-size
+ 4381972
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 31286152
+ license
+ Public Domain
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-40 (0333a208e78d183fbbfc0027a226d3756a4637b8)
+ pkgname
+ cross-mipsel-softfloat-linux-gnu-libc
+ pkgver
+ cross-mipsel-softfloat-linux-gnu-libc-0.4_1
+ short_desc
+ GNU Cross toolchain for the mipsel-softfloat-linux-gnu LE target (binutils/gcc/glibc) -- glibc files
+ version
+ 0.4_1
+
+ cross-vpkg-dummy
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 17:03 CET
+ filename
+ cross-vpkg-dummy-0.3_1.noarch.xbps
+ filename-sha256
+ 91a28aadd3689ca302669f8ce80f046af7391f5d22f8b094879bea1027cee914
+ filename-size
+ 1212
+ homepage
+ http://www.voidlinux.eu
+ installed_size
+ 1669
+ license
+ Public domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ cross-vpkg-dummy
+ pkgver
+ cross-vpkg-dummy-0.3_1
+ provides
+
+ binutils-2.23.51.0.3
+ bash-4.2
+ coreutils-8.17
+ diffutils-3.2
+ fakeroot-1.18.4_1
+ findutils-4.4.2
+ gawk-4.0.0
+ libgcc-4.7.2
+ libstdc++-4.7.2
+ libstdc++-devel-4.7.2
+ gcc-4.7.2
+ gcc-c++-4.7.2
+ gettext-0.18.1.1
+ glibc-2.17
+ glibc-devel-2.17
+ musl-0.9.9
+ grep-2.10
+ gzip-1.4
+ m4-1.4.16
+ make-3.82
+ patch-2.7.1
+ sed-4.2.1
+ tar-1.26
+ texinfo-4.13a
+ util-linux-2.21
+ xz-5.0.4
+
+ run_depends
+
+ base-directories>=0
+ xbps-triggers>=0
+
+ short_desc
+ Dummy meta-pkg for cross building packages with xbps-src
+ version
+ 0.3_1
+
+ cryptsetup
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:32 CET
+ filename
+ cryptsetup-1.6.0_1.armv6l.xbps
+ filename-sha256
+ 0cf2217c66c413723666e2434287dadcc6918287825d5eccc1270c62d13cc63f
+ filename-size
+ 105696
+ homepage
+ http://code.google.com/p/cryptsetup
+ installed_size
+ 490344
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ cryptsetup
+ pkgver
+ cryptsetup-1.6.0_1
+ run_depends
+
+ libcryptsetup-1.6.0_1
+ popt>=1.15_1
+ libpwquality>=1.1.1_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Setup virtual encryption devices under dm-crypt Linux
+ source-revisions
+ cryptsetup/cryptsetup-devel.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/libcryptsetup.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/template: 3b7ab349d6fb21c715b88c24ebd2ab6a2b1cf505
+ version
+ 1.6.0_1
+
+ cryptsetup-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:32 CET
+ filename
+ cryptsetup-dbg-1.6.0_1.armv6l.xbps
+ filename-sha256
+ 74657a4ec505fdebbc6fdc0d7d64a6b3dfd7d7358f69d3d751e24b2905ddeebc
+ filename-size
+ 74388
+ homepage
+ http://code.google.com/p/cryptsetup
+ installed_size
+ 96095
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ cryptsetup-dbg
+ pkgver
+ cryptsetup-dbg-1.6.0_1
+ short_desc
+ Setup virtual encryption devices under dm-crypt Linux (debug files)
+ source-revisions
+ cryptsetup/cryptsetup-devel.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/libcryptsetup.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/template: 3b7ab349d6fb21c715b88c24ebd2ab6a2b1cf505
+ version
+ 1.6.0_1
+
+ cryptsetup-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-10 06:26 CET
+ filename
+ cryptsetup-devel-1.6.0_1.noarch.xbps
+ filename-sha256
+ 34f9dbb5bc8b18d98e3ec6284f04608ecf0f0a1928f8b813dc788b5b7211bbe3
+ filename-size
+ 8392
+ homepage
+ http://code.google.com/p/cryptsetup
+ installed_size
+ 35135
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ cryptsetup-devel
+ pkgver
+ cryptsetup-devel-1.6.0_1
+ run_depends
+
+ libcryptsetup-1.6.0_1
+
+ short_desc
+ Setup virtual encryption devices under dm-crypt Linux - development files
+ source-revisions
+ cryptsetup/cryptsetup-devel.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/libcryptsetup.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+ version
+ 1.6.0_1
+
+ cups-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:27 CET
+ filename
+ cups-devel-1.6.1_5.noarch.xbps
+ filename-sha256
+ fcc95887c0bbfc4a1733053c31e1a18a91abdfe5043ef880cab08a543f49a0e0
+ filename-size
+ 34936
+ homepage
+ http://www.cups.org/
+ installed_size
+ 165797
+ license
+ GPL-2
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ cups-devel
+ pkgver
+ cups-devel-1.6.1_5
+ run_depends
+
+ gnutls-devel>=0
+ libcups>=1.6.1
+
+ short_desc
+ Common Unix Printing System -- development files
+ source-revisions
+ cups/cups-devel.template: c588f50cd2f65913ca932c0c28444ed5581fbef0
+cups/files/cups.pam: b00319b6886e0e58eb2f274dddea4adf464a15be
+cups/libcups.template: 557af9b40a26fdb1a894d717ad798cbd53efaa0f
+cups/patches/avahi-missing-in-conditionals.patch: e772455cb2ff3b7d65f355f4f8a1251bfefe6357
+cups/patches/cups-1.4.4-nostrip.patch: bc5d118e1c81cc6b7eadeedc1399c8e1ea405e09
+cups/patches/cups-1.6.0-fix-install-perms.patch: bc5d118e1c81cc6b7eadeedc1399c8e1ea405e09
+cups/patches/cups-no-export-ssllibs.patch: 557af9b40a26fdb1a894d717ad798cbd53efaa0f
+cups/patches/cups-no-gcrypt.patch: b00319b6886e0e58eb2f274dddea4adf464a15be
+cups/patches/cups-no-gzip-man.patch: 557af9b40a26fdb1a894d717ad798cbd53efaa0f
+cups/patches/cups-systemd-socket.patch: e772455cb2ff3b7d65f355f4f8a1251bfefe6357
+cups/patches/cupsd-conf-remove-obsolete-browse-directives.patch: e772455cb2ff3b7d65f355f4f8a1251bfefe6357
+cups/patches/recognize-remote-cups-queue-via-dnssd-uri.patch: e772455cb2ff3b7d65f355f4f8a1251bfefe6357
+cups/patches/usb-backend-reset-after-job-only-for-specific-devices.patch: e772455cb2ff3b7d65f355f4f8a1251bfefe6357
+cups/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.6.1_5
+
+ curl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:00 CET
+ filename
+ curl-7.29.0_3.armv6l.xbps
+ filename-sha256
+ 93510cc4f1aeac41f468bef36d50f73b49f7f0947de1cd25833fb58537220730
+ filename-size
+ 110756
+ homepage
+ http://curl.haxx.se
+ installed_size
+ 161187
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ curl
+ pkgver
+ curl-7.29.0_3
+ run_depends
+
+ ca-certificates>=0
+ libcurl-7.29.0_3
+ zlib>=1.2.3_1
+ glibc>=2.8_1
+
+ short_desc
+ Client that groks URLs
+ source-revisions
+ curl/libcurl-devel.template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+curl/libcurl.template: 3f826eeee67812951ba83e7c0487f266b5491456
+curl/template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+ version
+ 7.29.0_3
+
+ curl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:00 CET
+ filename
+ curl-dbg-7.29.0_3.armv6l.xbps
+ filename-sha256
+ 0ac77efbe3496abec7d02776bb414927d387cf7a1775a8f5aad55156f7b617cb
+ filename-size
+ 7340
+ homepage
+ http://curl.haxx.se
+ installed_size
+ 19206
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ curl-dbg
+ pkgver
+ curl-dbg-7.29.0_3
+ short_desc
+ Client that groks URLs (debug files)
+ source-revisions
+ curl/libcurl-devel.template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+curl/libcurl.template: 3f826eeee67812951ba83e7c0487f266b5491456
+curl/template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+ version
+ 7.29.0_3
+
+ cvs2svn
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-09 10:20 CEST
+ filename
+ cvs2svn-2.3.0_2.noarch.xbps
+ filename-sha256
+ 3a1a99fe66a5feae7c8f2e5e824b74978587cf7e28aaa5fbbb5ba7dc6c69a3d7
+ filename-size
+ 157912
+ homepage
+ http://cvs2svn.tigris.org/
+ installed_size
+ 991232
+ license
+ BSD
+ long_desc
+
+ cvs2svn is a tool for migrating a CVS repository to Subversion, git, or
+ Bazaar. The main design goals are robustness and 100% data preservation.
+ cvs2svn can convert just about any CVS repository we've ever seen, including
+ gcc, Mozilla, FreeBSD, KDE, GNOME...
+
+ cvs2svn infers what happened in the history of your CVS repository and
+ replicates that history as accurately as possible in the target SCM. All
+ revisions, branches, tags, log messages, author names, and commit dates are
+ converted. cvs2svn deduces what CVS modifications were made at the same time,
+ and outputs these modifications grouped together as changesets in the target
+ SCM. cvs2svn also deals with many CVS quirks and is highly configurable.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ cvs2svn
+ pkgver
+ cvs2svn-2.3.0_2
+ run_depends
+
+ cvs>=0
+ python>=0
+
+ short_desc
+ CVS to Subversion, git and bazaar repository conversion tool
+ version
+ 2.3.0_2
+
+ damageproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ damageproto-1.2.1_1.noarch.xbps
+ filename-sha256
+ bda6a0cbf7bb0c670c8c7048ef2a43a25b1fe3dfc477601c6b2d4993a4ae4936
+ filename-size
+ 5988
+ homepage
+ http://xorg.freedesktop.org/wiki/
+ installed_size
+ 20480
+ license
+ custom
+ long_desc
+
+ This package contains header files and documentation for the X Damage
+ extension of X RandR. This is from the modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ damageproto
+ pkgver
+ damageproto-1.2.1_1
+ short_desc
+ Damage extension headers from modular X.org
+ version
+ 1.2.1_1
+
+ dash
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 20:56 CET
+ filename
+ dash-0.5.7_5.armv6l.xbps
+ filename-sha256
+ d9503345062836160af17db486885b73af5157027c7c7790a384eafa3fa5ec7d
+ filename-size
+ 59248
+ homepage
+ http://gondor.apana.org.au/~herbert/dash/
+ installed_size
+ 105429
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ dash
+ pkgver
+ dash-0.5.7_5
+ run_depends
+
+ coreutils>=0
+ glibc>=2.8_1
+
+ short_desc
+ POSIX-compliant Unix shell, much smaller than GNU bash
+ source-revisions
+ dash/INSTALL: f30382b08419033079166dcdddf0ac83a83c06da
+dash/template: 8f4fca255bb818f4fce000c1c459c5c7237f2605
+ version
+ 0.5.7_5
+
+ dash-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 20:56 CET
+ filename
+ dash-dbg-0.5.7_5.armv6l.xbps
+ filename-sha256
+ e486334730dc4168e27506b00cf86aaa2b33b31b67b15257b692bb187498f488
+ filename-size
+ 128560
+ homepage
+ http://gondor.apana.org.au/~herbert/dash/
+ installed_size
+ 147348
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ dash-dbg
+ pkgver
+ dash-dbg-0.5.7_5
+ short_desc
+ POSIX-compliant Unix shell, much smaller than GNU bash (debug files)
+ source-revisions
+ dash/INSTALL: f30382b08419033079166dcdddf0ac83a83c06da
+dash/template: 8f4fca255bb818f4fce000c1c459c5c7237f2605
+ version
+ 0.5.7_5
+
+ db
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 01:00 CET
+ filename
+ db-4.8.30_3.armv6l.xbps
+ filename-sha256
+ f602258040169b71d83b6d4c2bb64afbc0f7686367523df2ce2a9647f9dfbc7d
+ filename-size
+ 70812
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 267024
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ db
+ pkgver
+ db-4.8.30_3
+ run_depends
+
+ libdb-4.8.30_3
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The Berkeley DB from Oracle
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ db-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 01:00 CET
+ filename
+ db-dbg-4.8.30_3.armv6l.xbps
+ filename-sha256
+ 9edfa86b0547fed8d79522b5ec74a59082e9d22ed3f6a73e726a940be22a4d14
+ filename-size
+ 3260
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 20832
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ db-dbg
+ pkgver
+ db-dbg-4.8.30_3
+ short_desc
+ The Berkeley DB from Oracle (debug files)
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ db-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 01:00 CET
+ filename
+ db-devel-4.8.30_3.noarch.xbps
+ filename-sha256
+ 4def71b7f760fd9803f656ffc25a1a744f58f6ec72094743ff1c8c436a230107
+ filename-size
+ 34064
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 157725
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ db-devel
+ pkgver
+ db-devel-4.8.30_3
+ run_depends
+
+ libdb>=4.8.30
+ libdb-cxx>=4.8.30
+
+ short_desc
+ The Berkeley DB from Oracle -- development files
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ db-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:59 CET
+ filename
+ db-docs-4.8.30_3.noarch.xbps
+ filename-sha256
+ b362b6e8fca0f95a09fae9628ff6f057a53feba878323117227b41358f3beee8
+ filename-size
+ 14959252
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 70771263
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ db-docs
+ pkgver
+ db-docs-4.8.30_3
+ short_desc
+ The Berkeley DB from Oracle -- documentation files
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ dbus
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:12 CET
+ conf_files
+
+ /etc/dbus-1/session.conf
+ /etc/dbus-1/system.conf
+
+ filename
+ dbus-1.6.8_9.armv6l.xbps
+ filename-sha256
+ 87f5c45295d31089cde45ce4c7829c952c8cb667bcc54518e1bceaa8d42dc254
+ filename-size
+ 162408
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 614560
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus
+ pkgver
+ dbus-1.6.8_9
+ run_depends
+
+ systemd-libs>=43_1
+ expat>=2.0.0_1
+ glibc>=2.8_1
+ dbus-libs-1.6.8_9
+
+ short_desc
+ Message bus system
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dbus-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:12 CET
+ filename
+ dbus-dbg-1.6.8_9.armv6l.xbps
+ filename-sha256
+ cb36c6630b999eeee563df1e8f97d83ab6d50dc2b90fc05f7868b482971c3079
+ filename-size
+ 849736
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 1029003
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus-dbg
+ pkgver
+ dbus-dbg-1.6.8_9
+ short_desc
+ Message bus system (debug files)
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dbus-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:01 CET
+ filename
+ dbus-devel-1.6.8_9.noarch.xbps
+ filename-sha256
+ 8cace9436fb22830e08ba16b82d302d477482628c3b6f69887651df3caf34276
+ filename-size
+ 166752
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 575774
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus-devel
+ pkgver
+ dbus-devel-1.6.8_9
+ run_depends
+
+ expat-devel>=0
+ dbus-libs>=1.6.8
+
+ short_desc
+ Message bus system -- development files
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dbus-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:12 CET
+ filename
+ dbus-libs-1.6.8_9.armv6l.xbps
+ filename-sha256
+ cd0c198d6a0631d51a3841bc05c485ee0c993faa26ad1196baf1a4f8a1d15107
+ filename-size
+ 80736
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 228924
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus-libs
+ pkgver
+ dbus-libs-1.6.8_9
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Message bus system -- shared libraries
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dbus-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:12 CET
+ filename
+ dbus-libs-dbg-1.6.8_9.armv6l.xbps
+ filename-sha256
+ 9b79a1e330660e6ecd12a195f1e101a79883c665e53682e754cf3e88e1f871fb
+ filename-size
+ 304524
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 363520
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus-libs-dbg
+ pkgver
+ dbus-libs-dbg-1.6.8_9
+ short_desc
+ Message bus system -- shared libraries (debug files)
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dbus-x11
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:12 CET
+ filename
+ dbus-x11-1.6.8_9.armv6l.xbps
+ filename-sha256
+ 2bd26e142702016b59439ea2a5f2ac0d93fdd23527e73a85173f162465b96c4b
+ filename-size
+ 12340
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 23271
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus-x11
+ pkgver
+ dbus-x11-1.6.8_9
+ replaces
+
+ dbus<1.4.16_2
+
+ run_depends
+
+ libX11>=1.2_1
+ glibc>=2.8_1
+
+ short_desc
+ Message bus system -- X11 support
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dbus-x11-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:12 CET
+ filename
+ dbus-x11-dbg-1.6.8_9.armv6l.xbps
+ filename-sha256
+ a85dd29854ffeec7f9274c9d172e25877e3628cfd28c697dcba539749c0d1919
+ filename-size
+ 25988
+ homepage
+ http://dbus.freedesktop.org/
+ installed_size
+ 31258
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ dbus-x11-dbg
+ pkgver
+ dbus-x11-dbg-1.6.8_9
+ short_desc
+ Message bus system -- X11 support (debug files)
+ source-revisions
+ dbus/INSTALL: e59c9741f13100608d77a05e48143ce34e69de7f
+dbus/REMOVE: 808f68f830d56713ad5d09c3817b97708892afdf
+dbus/dbus-devel.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-libs.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/dbus-x11.template: 3fe9553ab50a9495efb0dc631ab7fb10ea28f426
+dbus/template: e59c9741f13100608d77a05e48143ce34e69de7f
+ version
+ 1.6.8_9
+
+ dconf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-01 21:17 CET
+ filename
+ dconf-devel-0.14.1_1.noarch.xbps
+ filename-sha256
+ 870614cc2e86b4624537141d23addd245f79d811f2f97b4c0820706917fbb99f
+ filename-size
+ 20748
+ homepage
+ http://live.gnome.org/dconf
+ installed_size
+ 176283
+ long_desc
+
+ dconf is a low-level configuration system. Its main purpose is to provide a
+ backend to GSettings on platforms that don't already have configuration
+ storage systems.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ dconf-devel
+ pkgver
+ dconf-devel-0.14.1_1
+ run_depends
+
+ glib-devel>=0
+ vala-devel>=0
+ dconf-0.14.1_1
+
+ short_desc
+ dconf - development files
+ version
+ 0.14.1_1
+
+ dcron
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 17:01 CET
+ conf_files
+
+ /var/spool/cron/root
+
+ filename
+ dcron-4.5_19.armv6l.xbps
+ filename-sha256
+ 81e8cf9c83a0f8fa870602e7c67c7509bf3615942d86a3a166c5261b42e47a98
+ filename-size
+ 24300
+ homepage
+ http://www.jimpryor.net/linux/dcron.html
+ installed_size
+ 47719
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ dcron
+ pkgver
+ dcron-4.5_19
+ provides
+
+ cron-daemon-0
+
+ replaces
+
+ cron-daemon>=0
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Dillon's lightweight cron daemon
+ source-revisions
+ dcron/files/dcron.service: 5feb193d61d167debdec4d7d3be27c5adcc83864
+dcron/patches/respect_cflags_and_ldflags.patch: 5e96e45b998fa81e140c4b3d7c25442dd1d13fab
+dcron/template: 76b406e02b532d7af2aafc0793def019cdb196d4
+ version
+ 4.5_19
+
+ dcron-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 17:01 CET
+ filename
+ dcron-dbg-4.5_19.armv6l.xbps
+ filename-sha256
+ c472657a0ca85f17adcec8a3b2b8cb69d84d6fe2b255f9e69fa1cd839c866b69
+ filename-size
+ 34936
+ homepage
+ http://www.jimpryor.net/linux/dcron.html
+ installed_size
+ 47479
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ dcron-dbg
+ pkgver
+ dcron-dbg-4.5_19
+ short_desc
+ Dillon's lightweight cron daemon (debug files)
+ source-revisions
+ dcron/files/dcron.service: 5feb193d61d167debdec4d7d3be27c5adcc83864
+dcron/patches/respect_cflags_and_ldflags.patch: 5e96e45b998fa81e140c4b3d7c25442dd1d13fab
+dcron/template: 76b406e02b532d7af2aafc0793def019cdb196d4
+ version
+ 4.5_19
+
+ deheader
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ deheader-0.6_1.noarch.xbps
+ filename-sha256
+ 6f4cd8a82ebcb9e796f332431eaaea1ef03a9fb85527687dfad17111169a788d
+ filename-size
+ 17424
+ installed_size
+ 73728
+ long_desc
+
+ deheader analyzes C and C++ files to determine which header inclusions can be
+ removed while still allowing them to compile. This may result in substantial
+ improvements in compilation time, especially on large C++ projects; it also
+ sometimes exposes dependencies and cohesions of which developers were unaware.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ deheader
+ pkgver
+ deheader-0.6_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ C and C++ header analyzer
+ version
+ 0.6_1
+
+ dejavu-fonts-ttf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-29 10:36 CET
+ filename
+ dejavu-fonts-ttf-2.33_6.noarch.xbps
+ filename-sha256
+ 4dc8a833823ef09287c3a6904ac233416311cdca08507c304dd8614f9be5a246
+ filename-size
+ 2183420
+ homepage
+ http://dejavu-fonts.org/wiki/Main_Page
+ installed_size
+ 9220985
+ license
+ MIT, Public domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ dejavu-fonts-ttf
+ pkgver
+ dejavu-fonts-ttf-2.33_6
+ run_depends
+
+ font-util>=0
+ xbps-triggers>=0.58
+
+ short_desc
+ DejaVu family of TrueType fonts
+ source-revisions
+ dejavu-fonts-ttf/INSTALL: d967a3af76b523b47bec10a96d8fa8bfad69db19
+dejavu-fonts-ttf/REMOVE: 7ac27c3c83bf27816047005238d6272772238eec
+dejavu-fonts-ttf/template: c19d69e9678ab0082644c6a1507a8a9e6a2ea32d
+ version
+ 2.33_6
+
+ device-mapper
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:22 CET
+ filename
+ device-mapper-2.02.98_3.armv6l.xbps
+ filename-sha256
+ dadaec7ca3c068b38ec15aa42a546a1ac9af62b0681be81a849662ae47495379
+ filename-size
+ 424620
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 1244812
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ device-mapper
+ pkgver
+ device-mapper-2.02.98_3
+ replaces
+
+ lvm2<2.02.95_3
+
+ run_depends
+
+ glibc>=2.8_1
+ libudev>=183_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Device Mapper userspace library and tools
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ device-mapper-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:22 CET
+ filename
+ device-mapper-dbg-2.02.98_3.armv6l.xbps
+ filename-sha256
+ b465fd10048182e5eb5cb67310558418d6bdf913fda3db68378fbeb952ca2479
+ filename-size
+ 1232480
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 1418141
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ device-mapper-dbg
+ pkgver
+ device-mapper-dbg-2.02.98_3
+ short_desc
+ Device Mapper userspace library and tools (debug files)
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ device-mapper-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:21 CET
+ filename
+ device-mapper-devel-2.02.98_3.noarch.xbps
+ filename-sha256
+ 8892a1c87e44047a1b3b44e9a8ac93979ba40005dd3b2705785d36f714cee724
+ filename-size
+ 16704
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 62435
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ device-mapper-devel
+ pkgver
+ device-mapper-devel-2.02.98_3
+ run_depends
+
+ readline-devel>=0
+ ncurses-devel>=0
+ device-mapper-2.02.98_3
+
+ short_desc
+ Device Mapper userspace library -- development files
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ dhcpcd
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:09 CET
+ conf_files
+
+ /etc/dhcpcd.conf
+
+ filename
+ dhcpcd-5.6.7_2.armv6l.xbps
+ filename-sha256
+ f1278c3f49fef39a201c7c2e4aa7da71ae9b73fe3e0825b13879042bb436f663
+ filename-size
+ 63000
+ homepage
+ http://roy.marples.name/projects/dhcpcd
+ installed_size
+ 129376
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ dhcpcd
+ pkgver
+ dhcpcd-5.6.7_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ RFC2131 compliant DHCP client
+ source-revisions
+ dhcpcd/files/dhcpcd.service: 91bf99f63cf748691ff06f8421b61fefd7f1351f
+dhcpcd/files/dhcpcd@.service: 91bf99f63cf748691ff06f8421b61fefd7f1351f
+dhcpcd/template: 60434dea7f7ea26b96257aff4284a29f7bd51de6
+ version
+ 5.6.7_2
+
+ dhcpcd-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:09 CET
+ filename
+ dhcpcd-dbg-5.6.7_2.armv6l.xbps
+ filename-sha256
+ 081ed13b2249ce22d5c1fd17125537267a3af4db741dcbbcb6150d5b08d8b226
+ filename-size
+ 137536
+ homepage
+ http://roy.marples.name/projects/dhcpcd
+ installed_size
+ 155273
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ dhcpcd-dbg
+ pkgver
+ dhcpcd-dbg-5.6.7_2
+ short_desc
+ RFC2131 compliant DHCP client (debug files)
+ source-revisions
+ dhcpcd/files/dhcpcd.service: 91bf99f63cf748691ff06f8421b61fefd7f1351f
+dhcpcd/files/dhcpcd@.service: 91bf99f63cf748691ff06f8421b61fefd7f1351f
+dhcpcd/template: 60434dea7f7ea26b96257aff4284a29f7bd51de6
+ version
+ 5.6.7_2
+
+ diffutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:49 CET
+ conflicts
+
+ chroot-diffutils>=0
+
+ filename
+ diffutils-3.2_2.armv6l.xbps
+ filename-sha256
+ 2e11ee29f240011ade93dd7a06f1c66eb46448c5ea48998a51a6c416b7f0876a
+ filename-size
+ 238920
+ homepage
+ http://www.gnu.org/software/diffutils
+ installed_size
+ 834193
+ license
+ GPL-3
+ long_desc
+
+ Diffutils contains the GNU diff, diff3, sdiff, and cmp utilities. Their
+ features are a superset of the Unix features and they are significantly
+ faster. Cmp has been moved into this package from the GNU textutils package.
+ These programs are usually used for creating patch files.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ diffutils
+ pkgver
+ diffutils-3.2_2
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU diff utilities
+ source-revisions
+ diffutils/template: a3581235808b5cff2e6945cae4b04ead468a6f91
+ version
+ 3.2_2
+
+ diffutils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:49 CET
+ filename
+ diffutils-dbg-3.2_2.armv6l.xbps
+ filename-sha256
+ 603dd301018cf298beedf7c1500ab67fbfd82de4f035e56605d5e4c75bea2e04
+ filename-size
+ 402128
+ homepage
+ http://www.gnu.org/software/diffutils
+ installed_size
+ 463114
+ license
+ GPL-3
+ long_desc
+
+ Diffutils contains the GNU diff, diff3, sdiff, and cmp utilities. Their
+ features are a superset of the Unix features and they are significantly
+ faster. Cmp has been moved into this package from the GNU textutils package.
+ These programs are usually used for creating patch files.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ diffutils-dbg
+ pkgver
+ diffutils-dbg-3.2_2
+ short_desc
+ The GNU diff utilities (debug files)
+ source-revisions
+ diffutils/template: a3581235808b5cff2e6945cae4b04ead468a6f91
+ version
+ 3.2_2
+
+ djvulibre-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:26 CET
+ filename
+ djvulibre-devel-3.5.24_4.noarch.xbps
+ filename-sha256
+ c63cd8c1ea8821f35d9eab3d3faea1c1861d73889b24e8dfa64e0e22398ac38d
+ filename-size
+ 19048
+ homepage
+ http://djvu.sourceforge.net/
+ installed_size
+ 76604
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ djvulibre-devel
+ pkgver
+ djvulibre-devel-3.5.24_4
+ run_depends
+
+ libjpeg-turbo-devel>=0
+ libdjvulibre>=3.5.24
+
+ short_desc
+ Development files for the DjVu image format
+ source-revisions
+ djvulibre/djvulibre-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+djvulibre/libdjvulibre.template: 861041b24585c659448e78f05c1e753e89f5e367
+djvulibre/patches/djvu-3.5.23-gcc-4.6.patch: bcdeb674ee58a25b25675a62e143e9f8646a6c10
+djvulibre/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 3.5.24_4
+
+ dkms
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-20 00:05 CET
+ conf_files
+
+ /etc/dkms/framework.conf
+
+ filename
+ dkms-2.2.0.3_3.noarch.xbps
+ filename-sha256
+ c0883b867b92933b0fae0ebd79d2a8a219aa4b085a5e6bf908c540c53a2eb749
+ filename-size
+ 45548
+ homepage
+ http://linux.dell.com/dkms
+ installed_size
+ 146582
+ license
+ GPL-2
+ long_desc
+
+ dkms is a framework which allows kernel modules to be dynamically built for
+ each kernel on your system in a simplified and organized fashion.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ dkms
+ pkgver
+ dkms-2.2.0.3_3
+ run_depends
+
+ bash>=0
+ module-init-tools>=0
+ gcc>=0
+ make>=0
+ coreutils>=0
+ kernel-headers>=0
+
+ short_desc
+ Dynamic Kernel Modules System
+ version
+ 2.2.0.3_3
+
+ dmxproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:33:22 UTC
+ filename
+ dmxproto-2.3_1.noarch.xbps
+ filename-sha256
+ 767489f1c5e14b91abc751b37c7294b8c5714d077eadda3e31de2b6bb35c5ebe
+ filename-size
+ 3848
+ installed_size
+ 24576
+ long_desc
+
+ Distributed Multi-headed X protocol headers from modular X.org:
+ your networked Xinerama.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ dmxproto
+ pkgver
+ dmxproto-2.3_1
+ short_desc
+ Distributed Multi-headed X protocol headers from modular X.org
+ version
+ 2.3_1
+
+ docbook
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ docbook-4.5_1.noarch.xbps
+ filename-sha256
+ 13467dd9a4d93c909d5e596562965be8c7f4e8885734778352907330b5f51f89
+ filename-size
+ 144920
+ installed_size
+ 3170304
+ long_desc
+
+ DocBook provides a system for writing structured documents using
+ SGML or XML. It is particularly well-suited to books and papers
+ about computer hardware and software, though it is by no means
+ limited to them.
+
+ In short, DocBook is an easy-to-understand and widely used DTD.
+ Dozens of organizations use DocBook for millions of pages of
+ documentation, in various print and online formats, worldwide.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ docbook
+ pkgver
+ docbook-4.5_1
+ run_depends
+
+ xmlcatmgr>=0
+ ISOEnts>=0
+
+ short_desc
+ SGML DTD designed for computer documentation
+ version
+ 4.5_1
+
+ docbook-dsssl
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ docbook-dsssl-1.79_1.noarch.xbps
+ filename-sha256
+ dd73624c2b65ea475bef26738c5fe27414d995fd3f329dd415fee70ffda3f69a
+ filename-size
+ 239848
+ homepage
+ http://www.docbook.org/
+ installed_size
+ 3260416
+ license
+ MIT
+ long_desc
+
+ The DocBook XSL stylesheets provide a serie of ready-to-use templates to
+ process documents based on the DocBook XML DTD. They can generate different
+ types of output files, like XHTML, slides, manpages, JavaDoc...
+
+ They are written in a modular fashion. Each of the HTML and FO stylesheets
+ starts with a driver file that assembles a collection of component files
+ into a complete stylesheet. This modular design puts similar things together
+ into smaller files that are easier to write and maintain than one big
+ stylesheet.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ docbook-dsssl
+ pkgver
+ docbook-dsssl-1.79_1
+ run_depends
+
+ xmlcatmgr>=0
+ docbook-xml>=4.2
+
+ short_desc
+ DSSSL stylesheets for the DocBook DTD
+ version
+ 1.79_1
+
+ docbook-xml
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Friday 01 July, 2011, 15:50:14 UTC
+ filename
+ docbook-xml-4.5_1.noarch.xbps
+ filename-sha256
+ 4726919733a94b86a1a28cbba4db67bf3eca82c9806e168abf0aa2582ecbe0a8
+ filename-size
+ 82432
+ installed_size
+ 2097152
+ long_desc
+
+ DocBook provides a system for writing structured documents using
+ SGML or XML. It is particularly well-suited to books and papers
+ about computer hardware and software, though it is by no means
+ limited to them.
+
+ In short, DocBook is an easy-to-understand and widely used DTD.
+ Dozens of organizations use DocBook for millions of pages of
+ documentation, in various print and online formats, worldwide.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ docbook-xml
+ pkgver
+ docbook-xml-4.5_1
+ run_depends
+
+ xmlcatmgr>=0
+
+ short_desc
+ XML DTD designed for computer documentation
+ version
+ 4.5_1
+
+ docbook-xsl
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-27 01:39 CET
+ filename
+ docbook-xsl-1.77.1_2.noarch.xbps
+ filename-sha256
+ 4fa0119bfdd5323ee5bd793c1cc1a6621ee53bd53bf7d9e56e64e282f0467025
+ filename-size
+ 892456
+ homepage
+ http://docbook.sourceforge.net/
+ installed_size
+ 14007587
+ license
+ MIT
+ long_desc
+
+ The DocBook XSL stylesheets provide a serie of ready-to-use templates to
+ process documents based on the DocBook XML DTD. They can generate different
+ types of output files, like XHTML, slides, manpages, JavaDoc...
+
+ They are written in a modular fashion. Each of the HTML and FO stylesheets
+ starts with a driver file that assembles a collection of component files
+ into a complete stylesheet. This modular design puts similar things together
+ into smaller files that are easier to write and maintain than one big
+ stylesheet.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ docbook-xsl
+ pkgver
+ docbook-xsl-1.77.1_2
+ run_depends
+
+ xmlcatmgr>=0
+ docbook-xml>=4.2
+
+ short_desc
+ Docbook XSL modular stylesheet
+ source-revisions
+ docbook-xsl/template: 481484843b4c0def8b21fc1c1b2567d325f359a3
+ version
+ 1.77.1_2
+
+ dosfstools
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 09:02 CET
+ filename
+ dosfstools-3.0.16_1.armv6l.xbps
+ filename-sha256
+ 994314e8a4434bebd4774fbd924c06867498942fca716fee54f69a77dc0349a2
+ filename-size
+ 58388
+ homepage
+ http://www.daniel-baumann.ch/software/dosfstools
+ installed_size
+ 183967
+ license
+ GPL-2
+ long_desc
+
+ The dosfstools package includes the mkdosfs (a.k.a. mkfs.dos and mkfs.vfat)
+ and dosfsck (a.k.a. fsck.msdos and fsck.vfat) utilities, which respectively
+ make and check MS-DOS FAT filesystems on hard drives or on floppies.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ dosfstools
+ pkgver
+ dosfstools-3.0.16_1
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ DOS filesystem tools
+ version
+ 3.0.16_1
+
+ dosfstools-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 09:02 CET
+ filename
+ dosfstools-dbg-3.0.16_1.armv6l.xbps
+ filename-sha256
+ 8ea67c6d19bce90d6b5ea6b6d3d8fce8e1c2e31535516361beebb734ea2fcdb2
+ filename-size
+ 121044
+ homepage
+ http://www.daniel-baumann.ch/software/dosfstools
+ installed_size
+ 148863
+ license
+ GPL-2
+ long_desc
+
+ The dosfstools package includes the mkdosfs (a.k.a. mkfs.dos and mkfs.vfat)
+ and dosfsck (a.k.a. fsck.msdos and fsck.vfat) utilities, which respectively
+ make and check MS-DOS FAT filesystems on hard drives or on floppies.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ dosfstools-dbg
+ pkgver
+ dosfstools-dbg-3.0.16_1
+ short_desc
+ DOS filesystem tools (debug files)
+ version
+ 3.0.16_1
+
+ dracut-network
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 11:04 CET
+ filename
+ dracut-network-025_2.noarch.xbps
+ filename-sha256
+ 346b4b49dc46bccf3fb1ae608ee70b2f1442362db75f71d6520f8063be0277a6
+ filename-size
+ 25020
+ homepage
+ http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html
+ installed_size
+ 85175
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ dracut-network
+ pkgver
+ dracut-network-025_2
+ run_depends
+
+ dracut>=025
+
+ short_desc
+ A new initramfs infrastructure - network modules
+ source-revisions
+ dracut/dracut-network.template: cab856467b38c981961672851423fce2bb39507d
+dracut/files/kernel-hook-postinst: 0370394d47d6ac768e9904dedaa17458ebeef0a6
+dracut/files/kernel-hook-postrm: 0b751604b8299ffcbfec4809a8b8106a8bcbe610
+dracut/patches/modules-load.d.patch: 25c0b8905b8657998e538a5df043ea07e391f8ad
+dracut/template: 25c0b8905b8657998e538a5df043ea07e391f8ad
+ version
+ 025_2
+
+ dri2proto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-13 13:52 CEST
+ filename
+ dri2proto-2.8_1.noarch.xbps
+ filename-sha256
+ 252c7fa6c704a01f0b36cfd568512bc7db653f452907459ed47bd232037ae86b
+ filename-size
+ 9764
+ installed_size
+ 86016
+ long_desc
+
+ Definitions needed by Direct Rendering Interface version 2.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ dri2proto
+ pkgver
+ dri2proto-2.8_1
+ short_desc
+ Direct Rendering Interface 2 prototypes
+ version
+ 2.8_1
+
+ e2fsprogs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:19 CET
+ conf_files
+
+ /etc/mke2fs.conf
+
+ filename
+ e2fsprogs-1.42.7_1.armv6l.xbps
+ filename-sha256
+ fd3e20c23539185e7a72786fd7130d43e804328a9883ae8cddda53aec4a2e171
+ filename-size
+ 463312
+ homepage
+ http://e2fsprogs.sourceforge.net/
+ installed_size
+ 2007975
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ e2fsprogs
+ pkgver
+ e2fsprogs-1.42.7_1
+ run_depends
+
+ e2fsprogs-libs-1.42.7_1
+ glibc>=2.8_1
+ libblkid>=2.18_1
+ libuuid>=2.18_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Ext2/3/4 Filesystem Utilities
+ source-revisions
+ e2fsprogs/e2fsprogs-devel.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/e2fsprogs-libs.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/template: a8477884727bbb912187570d692442789626d35e
+ version
+ 1.42.7_1
+
+ e2fsprogs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:19 CET
+ filename
+ e2fsprogs-dbg-1.42.7_1.armv6l.xbps
+ filename-sha256
+ 536a4f5241fd4f15bdd2de28df488150eb6d76462208711572aa2cd8c2917aeb
+ filename-size
+ 795812
+ homepage
+ http://e2fsprogs.sourceforge.net/
+ installed_size
+ 982933
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ e2fsprogs-dbg
+ pkgver
+ e2fsprogs-dbg-1.42.7_1
+ short_desc
+ Ext2/3/4 Filesystem Utilities (debug files)
+ source-revisions
+ e2fsprogs/e2fsprogs-devel.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/e2fsprogs-libs.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/template: a8477884727bbb912187570d692442789626d35e
+ version
+ 1.42.7_1
+
+ e2fsprogs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-26 09:56 CET
+ filename
+ e2fsprogs-devel-1.42.7_1.noarch.xbps
+ filename-sha256
+ b5fc9f220aabd6e334a4d22bea762e8721cfd357f9ad1d68200493b85a850c09
+ filename-size
+ 54492
+ homepage
+ http://e2fsprogs.sourceforge.net/
+ installed_size
+ 190936
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ e2fsprogs-devel
+ pkgver
+ e2fsprogs-devel-1.42.7_1
+ run_depends
+
+ libuuid-devel>=0
+ libblkid-devel>=0
+ e2fsprogs-libs>=1.42.7
+
+ short_desc
+ Ext2/3/4 Filesystem Utilities -- development files
+ source-revisions
+ e2fsprogs/e2fsprogs-devel.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/e2fsprogs-libs.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/template: 15ff06f507986439f9dd37283675a7af882666b2
+ version
+ 1.42.7_1
+
+ e2fsprogs-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:19 CET
+ filename
+ e2fsprogs-libs-1.42.7_1.armv6l.xbps
+ filename-sha256
+ 24c9c7d615e951a742b24d46e5b108ab46212fd9bcd65befa6dbe184e44d2494
+ filename-size
+ 110332
+ homepage
+ http://e2fsprogs.sourceforge.net/
+ installed_size
+ 272624
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ e2fsprogs-libs
+ pkgver
+ e2fsprogs-libs-1.42.7_1
+ run_depends
+
+ glibc>=2.17_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Ext2/3/4 Filesystem Utilities -- shared libraries
+ source-revisions
+ e2fsprogs/e2fsprogs-devel.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/e2fsprogs-libs.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/template: a8477884727bbb912187570d692442789626d35e
+ version
+ 1.42.7_1
+
+ e2fsprogs-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:19 CET
+ filename
+ e2fsprogs-libs-dbg-1.42.7_1.armv6l.xbps
+ filename-sha256
+ 7ccb262ec8d1a242ec95cc83a31e4d0b3729565cc0c354678493a0d611cc27bd
+ filename-size
+ 374864
+ homepage
+ http://e2fsprogs.sourceforge.net/
+ installed_size
+ 443130
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ e2fsprogs-libs-dbg
+ pkgver
+ e2fsprogs-libs-dbg-1.42.7_1
+ short_desc
+ Ext2/3/4 Filesystem Utilities -- shared libraries (debug files)
+ source-revisions
+ e2fsprogs/e2fsprogs-devel.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/e2fsprogs-libs.template: 15ff06f507986439f9dd37283675a7af882666b2
+e2fsprogs/template: a8477884727bbb912187570d692442789626d35e
+ version
+ 1.42.7_1
+
+ e_dbus-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:42 CET
+ filename
+ e_dbus-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ cbd19f8619e48954c0f840067dca995ce3153b9201ff0c5383439708cdc3687a
+ filename-size
+ 5360
+ homepage
+ http://enlightenment.org
+ installed_size
+ 20763
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ e_dbus-devel
+ pkgver
+ e_dbus-devel-1.7.5_1
+ run_depends
+
+ dbus-devel>=0
+ ecore-devel>=1.7.4_1
+ e_dbus>=1.7.5
+
+ short_desc
+ D-Bus integration with Ecore -- development files
+ source-revisions
+ e_dbus/e_dbus-devel.template: e241428bcd9017c6772520bea2832d78edd7d333
+e_dbus/template: 7e69244e2fb5e4490960db7c4b0cf535e273571e
+ version
+ 1.7.5_1
+
+ ecore-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:41 CET
+ filename
+ ecore-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 804d8d36a66800be8c58f22cbe04bb44566f4dbe9d08a7e073d748c7a4743352
+ filename-size
+ 80368
+ homepage
+ http://enlightenment.org
+ installed_size
+ 483681
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ ecore-devel
+ pkgver
+ ecore-devel-1.7.5_1
+ run_depends
+
+ eina-devel>=0
+ glib-devel>=0
+ openssl-devel>=0
+ libcurl-devel>=0
+ libXtst-devel>=0
+ libXScrnSaver-devel>=0
+ libXrandr-devel>=0
+ libXinerama-devel>=0
+ libXcomposite-devel>=0
+ libXdamage-devel>=0
+ libXi-devel>=0
+ libXcursor-devel>=0
+ ecore>=1.7.5
+
+ short_desc
+ OS abstraction layer for Enlightenment -- development files
+ source-revisions
+ ecore/ecore-devel.template: 89dbe383be072432010c76ab132d3b2799a06ea2
+ecore/template: d2a64a4da864c8dbc361bcc7dc439f355a7aae18
+ version
+ 1.7.5_1
+
+ edje-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:50 CET
+ filename
+ edje-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 98fe6645b19c513d54dfd510d087ee592786c666a2e8e5e9dc1387b5692e75d5
+ filename-size
+ 142472
+ homepage
+ http://enlightenment.org
+ installed_size
+ 609915
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ edje-devel
+ pkgver
+ edje-devel-1.7.5_1
+ run_depends
+
+ lua-devel>=0
+ evas-devel>=0
+ eio-devel>=0
+ embryo-devel>=0
+ edje>=1.7.5
+
+ short_desc
+ A graphical design and layout library based on Evas -- development files
+ source-revisions
+ edje/edje-devel.template: ddfeffd2e023780e76656bfe3ed1466f9dac1fda
+edje/template: 42dd91c352b0250bcb3efdc250cb114b05e3aa79
+ version
+ 1.7.5_1
+
+ eet-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:19 CET
+ filename
+ eet-devel-1.7.5_2.noarch.xbps
+ filename-sha256
+ 849641e712d34ff45a2fd8fb1ed7e897b313116d2c992a8137dbb59ba7808461
+ filename-size
+ 38032
+ homepage
+ http://enlightenment.org
+ installed_size
+ 229963
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ eet-devel
+ pkgver
+ eet-devel-1.7.5_2
+ run_depends
+
+ zlib-devel>=0
+ openssl-devel>=0
+ eina-devel>=0
+ libjpeg-turbo-devel>=0
+ eet>=1.7.5
+
+ short_desc
+ A data storage and compression library -- development files
+ source-revisions
+ eet/eet-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+eet/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.7.5_2
+
+ eeze-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:51 CET
+ filename
+ eeze-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ a7d86187ac46d3726f700e723356ba7cd372c10ebb3411daf516b481ebbdbb0e
+ filename-size
+ 8668
+ homepage
+ http://enlightenment.org
+ installed_size
+ 35777
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ eeze-devel
+ pkgver
+ eeze-devel-1.7.5_1
+ run_depends
+
+ libudev-devel>=0
+ ecore-devel>=0
+ eeze>=1.7.5
+
+ short_desc
+ Manipulate devices using udev and sysfs -- development files
+ source-revisions
+ eeze/eeze-devel.template: b11a8d3528bf70323cd956ffea189a2404e5b1ad
+eeze/template: 9334c6c76df2e2b0fe156aca24d31c08bbf549fe
+ version
+ 1.7.5_1
+
+ efreet-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:56 CET
+ filename
+ efreet-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 24f3693079fe9d61b7a7841fa008cfbff02039a6063b62e2ceeded23b691d22c
+ filename-size
+ 13092
+ homepage
+ http://enlightenment.org
+ installed_size
+ 78525
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ efreet-devel
+ pkgver
+ efreet-devel-1.7.5_1
+ run_depends
+
+ eet-devel>=0
+ ecore-devel>=0
+ efreet>=1.7.5
+
+ short_desc
+ freedesktop.org specifications for Enlightenment -- development files
+ source-revisions
+ efreet/efreet-devel.template: 307ab3abea7539b468a28c54b452259d436bc7e4
+efreet/template: da901f713e441815ee6e49dbca36f70fb3c5130f
+ version
+ 1.7.5_1
+
+ eina-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:35 CET
+ filename
+ eina-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 644ad9664a5020ca55bc347f3571a35c4c843a78f16345614c210e40e54a28a6
+ filename-size
+ 112860
+ homepage
+ http://enlightenment.org
+ installed_size
+ 790117
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ eina-devel
+ pkgver
+ eina-devel-1.7.5_1
+ run_depends
+
+ eina>=1.7.5
+
+ short_desc
+ A core data structure and common utility library -- development files
+ source-revisions
+ eina/eina-devel.template: f403765e7ab40fd51acbc54326343b41f9006e61
+eina/template: 12dea89a73fa5db9273ca69853990f3c0a90f392
+ version
+ 1.7.5_1
+
+ eio-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:41 CET
+ filename
+ eio-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 15ba2d66b4d62dcc76ac80880f516641f856083c0f23f7d7cff64d0455a18644
+ filename-size
+ 8872
+ homepage
+ http://enlightenment.org
+ installed_size
+ 52583
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ eio-devel
+ pkgver
+ eio-devel-1.7.5_1
+ run_depends
+
+ eet-devel>=0
+ ecore-devel>=1.7.4_1
+ eio>=1.7.5
+
+ short_desc
+ Async IO library using Ecore -- development files
+ source-revisions
+ eio/eio-devel.template: 18487451b6da6474cc73a5bda17aa74357b6c9f7
+eio/template: 79955fc05683cb5a8e065b1e16f83b97f38b4480
+ version
+ 1.7.5_1
+
+ elementary-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:58 CET
+ filename
+ elementary-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 5d1fec3ad3cb92d8cee68c2a8b8b844a6bc798ac467a0ffe57e6c1ed9c63ce7f
+ filename-size
+ 220272
+ homepage
+ http://enlightenment.org
+ installed_size
+ 1522840
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ elementary-devel
+ pkgver
+ elementary-devel-1.7.5_1
+ run_depends
+
+ ethumb-devel>=0
+ efreet-devel>=0
+ ecore-devel>=0
+ edje-devel>=0
+ evas-devel>=0
+ dbus-devel>=0
+ elementary>=1.7.5
+
+ short_desc
+ Enlightenment's widget set -- development files
+ source-revisions
+ elementary/elementary-devel.template: 7fcedd99dd4a7ad14017e1876ab331ddf275a306
+elementary/template: b8dc169184e8951a8ba2ea4b20739b41faadd4cb
+ version
+ 1.7.5_1
+
+ elfutils-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 15:05 CEST
+ filename
+ elfutils-devel-0.155_1.noarch.xbps
+ filename-sha256
+ c2730b353593d5d8c7f9327e7cc506010bb995f00049edbde751fc777f5bed39
+ filename-size
+ 29256
+ homepage
+ https://fedorahosted.org/elfutils/
+ installed_size
+ 132777
+ license
+ GPL-3
+ long_desc
+
+ Sed, the GNU Stream Editor, copies the named files (standard input default)
+ to the standard output, edited according to a script of commands.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ elfutils-devel
+ pkgver
+ elfutils-devel-0.155_1
+ replaces
+
+ libelf-devel>=0
+
+ run_depends
+
+ libelf-0.155_1
+
+ short_desc
+ Utilities to handle ELF object files -- development files
+ version
+ 0.155_1
+
+ embryo-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:47 CET
+ filename
+ embryo-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 4f93c270f004a9339b9d1b91e96482413eaad6d296a8691c449bd048bc428dfa
+ filename-size
+ 8744
+ homepage
+ http://enlightenment.org
+ installed_size
+ 29836
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ embryo-devel
+ pkgver
+ embryo-devel-1.7.5_1
+ run_depends
+
+ eina-devel>=0
+ embryo>=1.7.5
+
+ short_desc
+ Implementation of a C like scripting language for Enlightment -- development files
+ source-revisions
+ embryo/embryo-devel.template: e45b352bb33d78643b1f8bc0e298e5fad6f985b0
+embryo/template: ec3301a7dede5c270f09483be4286d1bd357882a
+ version
+ 1.7.5_1
+
+ emotion-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:53 CET
+ filename
+ emotion-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 0f9445cf1a23767aeb30be600f874134f61be228f61b7ef14e0127bfa4e7eaa9
+ filename-size
+ 12552
+ homepage
+ http://enlightenment.org
+ installed_size
+ 50280
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ emotion-devel
+ pkgver
+ emotion-devel-1.7.5_1
+ run_depends
+
+ eet-devel>=0
+ evas-devel>=0
+ ecore-devel>=0
+ eeze-devel>=0
+ emotion>=1.7.5
+
+ short_desc
+ Library to easily integrate media playback into EFL applications -- development files
+ source-revisions
+ emotion/emotion-devel.template: c18c522bee6d74c037933409ab732876da5464cb
+emotion/template: 9b518f5c366e2efb0eabc1ce5a81430fe06cbcfc
+ version
+ 1.7.5_1
+
+ enca-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 11:46 CET
+ filename
+ enca-devel-1.14_1.noarch.xbps
+ filename-sha256
+ 5fa16630db87e87b25a249481de233a59eb32ac402e0cbac0849ee14e5b38268
+ filename-size
+ 14920
+ homepage
+ http://cihar.com/software/enca/
+ installed_size
+ 128489
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ enca-devel
+ pkgver
+ enca-devel-1.14_1
+ run_depends
+
+ recode-devel>=0
+ libenca>=1.14
+
+ short_desc
+ Extremely Naive Charset Analyser and converter - development files
+ source-revisions
+ enca/enca-devel.template: 7386fb02d24c9f4f4058bdc6ca36bfd63e1d8bd6
+enca/libenca.template: 7386fb02d24c9f4f4058bdc6ca36bfd63e1d8bd6
+enca/template: 7386fb02d24c9f4f4058bdc6ca36bfd63e1d8bd6
+ version
+ 1.14_1
+
+ encodings
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ encodings-1.0.4_1.noarch.xbps
+ filename-sha256
+ ec8cb52866c1c2c95cad8ed4f425280e7983a5eabc37cd3a182e6c03d7ac3aaf
+ filename-size
+ 572240
+ installed_size
+ 790528
+ long_desc
+
+ The package provides the X.org font encoding files, such as
+ adobe-dingbats.enc.gz, ibm-cp866.enc, jisx0212.1990-0.enc.gz,
+ and others. This is from the modular X.org project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ encodings
+ pkgver
+ encodings-1.0.4_1
+ run_depends
+
+ mkfontscale>=0
+
+ short_desc
+ X11 Font Index Generator
+ version
+ 1.0.4_1
+
+ enlightenment-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:43 CET
+ filename
+ enlightenment-devel-0.17.1_1.noarch.xbps
+ filename-sha256
+ 9a8e09f93604dfd0d9f11f250391da2046cd964fc5850b5514653b81082c26a6
+ filename-size
+ 64684
+ homepage
+ http://enlightenment.org
+ installed_size
+ 328311
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ enlightenment-devel
+ pkgver
+ enlightenment-devel-0.17.1_1
+ run_depends
+
+ efreet-devel>=0
+ ecore-devel>=0
+ edje-devel>=0
+ evas-devel>=0
+ e_dbus-devel>=0
+ enlightenment>=0.17.1
+
+ short_desc
+ Enlightenment window manager DR17 (aka e17) -- development files
+ source-revisions
+ enlightenment/enlightenment-devel.template: db5d492a259efbcda264452d5af90d85aae56b59
+enlightenment/files/e-applications.menu: db5d492a259efbcda264452d5af90d85aae56b59
+enlightenment/patches/quickstart.patch: db5d492a259efbcda264452d5af90d85aae56b59
+enlightenment/patches/sysactions_systemd.patch: db5d492a259efbcda264452d5af90d85aae56b59
+enlightenment/template: d66105be9ec6cbd43383f17cd7e45fafe3ee043b
+ version
+ 0.17.1_1
+
+ eog-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-09 00:50 CET
+ filename
+ eog-devel-3.6.2_2.noarch.xbps
+ filename-sha256
+ dd284594a52ae7619ee1ac967e69609ed240cd6df29783f6d3b378f8341ce860
+ filename-size
+ 75696
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1014411
+ license
+ GPL-2
+ long_desc
+
+ eog or the Eye of GNOME is a simple graphics viewer for the GNOME desktop
+ which uses the gdk-pixbuf library. It can deal with large images, and zoom
+ and scroll with constant memory usage. Its goals are simplicity and
+ standards compliance.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ eog-devel
+ pkgver
+ eog-devel-3.6.2_2
+ run_depends
+
+ gtk+3-devel>=0
+
+ short_desc
+ eog - development files
+ source-revisions
+ eog/eog-devel.template: 59e3844e526fb665d0585df35ce5d78479b622e9
+eog/template: 89d011c9361953d3beb6c4a3fca009ded7d4eb44
+ version
+ 3.6.2_2
+
+ epiphany-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-16 12:31 CEST
+ filename
+ epiphany-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ b444bcf22e17c50d88979fe3281f05117bcc8312a7b0c4f46a4a43f0305a6aa7
+ filename-size
+ 36808
+ homepage
+ http://www.gnome.org/projects/epiphany/
+ installed_size
+ 353780
+ license
+ GPL-2
+ long_desc
+
+ Epiphany is a simple yet powerful GNOME web browser targeted at non-technical
+ users. Its principles are simplicity and standards compliance. Simplicity is
+ achieved by a well designed user interface and reliance on external
+ applications for performing external tasks (such as reading email). Simplicity
+ should not mean less powerful. Standards compliance is achieved on the HTML
+ side by using the WebKitGTK+ rendering engine; and on the user interface side
+ by closely following the GNOME Human Interface Guidelines (HIG) and by close
+ integration with the GNOME desktop.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ epiphany-devel
+ pkgver
+ epiphany-devel-3.6.1_1
+ run_depends
+
+ gtk+3-devel>=3.6.0_2
+ libxml2-devel>=0
+ webkit-gtk3-devel>=1.10.0
+
+ short_desc
+ epiphany - development files
+ version
+ 3.6.1_1
+
+ ethtool
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 21:07 CET
+ filename
+ ethtool-3.7_2.armv6l.xbps
+ filename-sha256
+ a5050d89350c3a81e683eecc78205c0941d348d7e91d990c004640a838a13ca2
+ filename-size
+ 71724
+ homepage
+ http://www.kernel.org/pub/software/network/ethtool/
+ installed_size
+ 220447
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ ethtool
+ pkgver
+ ethtool-3.7_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Display or change ethernet card settings
+ source-revisions
+ ethtool/template: e4173b96a3cd1a125bf8dbf338d2d61e8eef2c63
+ version
+ 3.7_2
+
+ ethtool-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 21:08 CET
+ filename
+ ethtool-dbg-3.7_2.armv6l.xbps
+ filename-sha256
+ 706d04d6324d72b8b7dc2fe43adca080d8583e7d38b646b53580a1ef2ab6c939
+ filename-size
+ 101852
+ homepage
+ http://www.kernel.org/pub/software/network/ethtool/
+ installed_size
+ 116791
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ ethtool-dbg
+ pkgver
+ ethtool-dbg-3.7_2
+ short_desc
+ Display or change ethernet card settings (debug files)
+ source-revisions
+ ethtool/template: e4173b96a3cd1a125bf8dbf338d2d61e8eef2c63
+ version
+ 3.7_2
+
+ ethumb-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:54 CET
+ filename
+ ethumb-devel-1.7.5_1.noarch.xbps
+ filename-sha256
+ 0e04514f376fc0758de6817622dcc9323c8f6a825bec55c65aed4f3262578227
+ filename-size
+ 4652
+ homepage
+ http://enlightenment.org
+ installed_size
+ 18552
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ ethumb-devel
+ pkgver
+ ethumb-devel-1.7.5_1
+ run_depends
+
+ eet-devel>=0
+ ecore-devel>=0
+ evas-devel>=0
+ edje-devel>=0
+ emotion-devel>=0
+ libexif-devel>=0
+ ethumb>=1.7.5
+
+ short_desc
+ Thumbnailing library and D-Bus service using EFL -- development files
+ source-revisions
+ ethumb/ethumb-devel.template: 33edc24b5b6dd5ef2a43a31021339f989f3d0122
+ethumb/template: 07d794706e628d0f1513518a63640814d5070af6
+ version
+ 1.7.5_1
+
+ evas-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:21 CET
+ filename
+ evas-devel-1.7.5_2.noarch.xbps
+ filename-sha256
+ 8a67b81042534437aff3c6fa9d72bf2ce2b9519bde2cad3011ab32c67bcc08ed
+ filename-size
+ 103628
+ homepage
+ http://enlightenment.org
+ installed_size
+ 581782
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ evas-devel
+ pkgver
+ evas-devel-1.7.5_2
+ run_depends
+
+ eet-devel>=0
+ pixman-devel>=0
+ fribidi-devel>=0
+ harfbuzz-devel>=0
+ fontconfig-devel>=0
+ evas>=1.7.5
+
+ short_desc
+ A hardware-accelerated canvas API -- development files
+ source-revisions
+ evas/evas-devel.template: d284fe505c6bcc7a0ce561e6bea4bf3ae92220d3
+evas/patches/giflib-5.patch: 2ee660383b79e0852f26e1a983554884aa1ac99a
+evas/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.7.5_2
+
+ evieext
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ evieext-1.0.2_1.noarch.xbps
+ filename-sha256
+ af04175ab53feefac7de9fbd8fc49c2b9524dccc85a39ce66534a71e15cd9bf5
+ filename-size
+ 2916
+ installed_size
+ 16384
+ long_desc
+
+ This package provides the X11 Event Interception extension (EvIE)
+ headers from modular X.org.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ evieext
+ pkgver
+ evieext-1.0.2_1
+ short_desc
+ EvIE extension headers
+ version
+ 1.0.2_1
+
+ evince-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 12:40 CEST
+ filename
+ evince-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ f3f40bbf178e38c38fbfd0f590336db7359c3a985884e494fbbef351f1d1284a
+ filename-size
+ 127532
+ homepage
+ http://projects.gnome.org/evince/
+ installed_size
+ 1938633
+ license
+ GPL-2
+ long_desc
+
+ Evince is specifically designed to support the file following formats:
+ * PDF
+ * Postscript
+ * djvu
+ * tiff
+ * dvi
+ * XPS
+ * SyncTex support with gedit
+ * comics books (cbr,cbz,cb7 and cbt)
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ evince-devel
+ pkgver
+ evince-devel-3.6.1_1
+ run_depends
+
+ gtk+3-devel>=0
+ libevince-3.6.1_1
+
+ short_desc
+ evince - development files
+ version
+ 3.6.1_1
+
+ evolution-data-server-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-25 10:42 CET
+ filename
+ evolution-data-server-devel-3.6.3_1.noarch.xbps
+ filename-sha256
+ 37ef479aca321c23f5bd1851a860f4deae68d10898c4a4c4ed86589f1aea69d1
+ filename-size
+ 732364
+ homepage
+ http://www.gnome.org
+ installed_size
+ 13163294
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ evolution-data-server-devel
+ pkgver
+ evolution-data-server-devel-3.6.3_1
+ run_depends
+
+ sqlite-devel>=0
+ mit-krb5-devel>=0
+ nss-devel>=0
+ libical-devel>=0
+ libgweather-devel>=3.6.0
+ libldap-devel>=0
+ libgdata-devel>=0
+ libgnome-keyring-devel>=0
+ gnome-online-accounts-devel>=3.6.0
+ evolution-data-server-3.6.3_1
+
+ short_desc
+ Evolution data server - development files
+ source-revisions
+ evolution-data-server/evolution-data-server-devel.template: a119f3118fad1c9ee650147b053e27d50ee6268f
+evolution-data-server/template: a119f3118fad1c9ee650147b053e27d50ee6268f
+ version
+ 3.6.3_1
+
+ exempi-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:49 CEST
+ filename
+ exempi-devel-2.2.0_2.noarch.xbps
+ filename-sha256
+ edc3930c5febce6dc33b63bbb5d543b89fde6cb3b8e06ced2d79846db8d0a4ba
+ filename-size
+ 9168
+ homepage
+ http://libopenraw.freedesktop.org/wiki/Exempi
+ installed_size
+ 33082
+ license
+ BSD
+ long_desc
+
+ exempi is a library for applications dealing with netlink sockets.
+ The library provides an interface for raw netlink messaging and various
+ netlink family specific interfaces.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ exempi-devel
+ pkgver
+ exempi-devel-2.2.0_2
+ run_depends
+
+ zlib-devel>=0
+ expat-devel>=0
+ exempi-2.2.0_2
+
+ short_desc
+ exempi development files
+ version
+ 2.2.0_2
+
+ expat
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:39 CET
+ filename
+ expat-2.1.0_3.armv6l.xbps
+ filename-sha256
+ c3d7bbbcbb9809b58aa465fd340d4301aa2c15f7078e68aaeebd36ed4b05f649
+ filename-size
+ 39040
+ homepage
+ http://expat.sourceforge.net/
+ installed_size
+ 131936
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ expat
+ pkgver
+ expat-2.1.0_3
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ XML parser library written in C
+ source-revisions
+ expat/expat-devel.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/xmlwf.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+ version
+ 2.1.0_3
+
+ expat-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:39 CET
+ filename
+ expat-dbg-2.1.0_3.armv6l.xbps
+ filename-sha256
+ 9b321c56d8f4cec1487bc7bc6ed3b776135c04771bec248d29c736a629a14e6a
+ filename-size
+ 106972
+ homepage
+ http://expat.sourceforge.net/
+ installed_size
+ 121463
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ expat-dbg
+ pkgver
+ expat-dbg-2.1.0_3
+ short_desc
+ XML parser library written in C (debug files)
+ source-revisions
+ expat/expat-devel.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/xmlwf.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+ version
+ 2.1.0_3
+
+ expat-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:39 CET
+ filename
+ expat-devel-2.1.0_3.armv6l.xbps
+ filename-sha256
+ a86bfed0654e8e42a4fc307b30c6a3e055d20a1275130ff6b5067c33c3406340
+ filename-size
+ 57212
+ homepage
+ http://expat.sourceforge.net/
+ installed_size
+ 247138
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ expat-devel
+ pkgver
+ expat-devel-2.1.0_3
+ run_depends
+
+ expat>=2.1.0
+
+ short_desc
+ XML parser library written in C -- development files
+ source-revisions
+ expat/expat-devel.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/xmlwf.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+ version
+ 2.1.0_3
+
+ faac-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 23:50 CET
+ filename
+ faac-devel-1.28_5.noarch.xbps
+ filename-sha256
+ 875de3fe1928ddbfede15841ec3f192403fa8fb4854bf023e4f74ae180156024
+ filename-size
+ 2788
+ homepage
+ http://www.audiocoding.com/
+ installed_size
+ 5422
+ license
+ GPL-2, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ faac-devel
+ pkgver
+ faac-devel-1.28_5
+ run_depends
+
+ libmp4v2-devel>=2.0.0
+ faac>=1.28
+
+ short_desc
+ AAC audio encoder library -- development files
+ source-revisions
+ faac/faac-devel.template: 7ee10ca094d6a49228fccb1d840e8216bd8b9a26
+faac/patches/mp4v2-1.9.patch: d433d89cdc493c299ae4c451657303d7d2f9b0b7
+faac/patches/mp4v2-2.0.0.patch: 7ee10ca094d6a49228fccb1d840e8216bd8b9a26
+faac/template: 7ee10ca094d6a49228fccb1d840e8216bd8b9a26
+ version
+ 1.28_5
+
+ fakeroot
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 22:32 CET
+ conflicts
+
+ chroot-fakeroot>=0
+
+ filename
+ fakeroot-1.18.4_2.armv6l.xbps
+ filename-sha256
+ 1c60c2fbc4de48a59ef986f780aa520815c5c97b35be4ebcccf219a7b941eb70
+ filename-size
+ 53488
+ homepage
+ http://packages.debian.org/fakeroot
+ installed_size
+ 88684
+ license
+ GPL-3
+ long_desc
+
+ This package is intended to remove the need to become root for a package build.
+ This is done by setting LD_PRELOAD to libfakeroot.so, which provides wrappers
+ around getuid, chown, chmod, mknod, stat, and so on, thereby creating a fake
+ root environment.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ fakeroot
+ pkgver
+ fakeroot-1.18.4_2
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Gives a fake root environment
+ source-revisions
+ fakeroot/patches/busybox_compat_force_abslibpath.patch: af1ffa396387b5b5d8dd38f271c06a20e637788b
+fakeroot/template: 276f9742c3b73cbba5bf07bc8df20e2159e6ae13
+ version
+ 1.18.4_2
+
+ fakeroot-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 22:32 CET
+ filename
+ fakeroot-dbg-1.18.4_2.armv6l.xbps
+ filename-sha256
+ 2ffd913a3b9e6ba342af236c6fc5ffd5b02657b0ddb91c390d83c5d333198d8d
+ filename-size
+ 45896
+ homepage
+ http://packages.debian.org/fakeroot
+ installed_size
+ 62328
+ license
+ GPL-3
+ long_desc
+
+ This package is intended to remove the need to become root for a package build.
+ This is done by setting LD_PRELOAD to libfakeroot.so, which provides wrappers
+ around getuid, chown, chmod, mknod, stat, and so on, thereby creating a fake
+ root environment.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ fakeroot-dbg
+ pkgver
+ fakeroot-dbg-1.18.4_2
+ short_desc
+ Gives a fake root environment (debug files)
+ source-revisions
+ fakeroot/patches/busybox_compat_force_abslibpath.patch: af1ffa396387b5b5d8dd38f271c06a20e637788b
+fakeroot/template: 276f9742c3b73cbba5bf07bc8df20e2159e6ae13
+ version
+ 1.18.4_2
+
+ farstream-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 10:55 CEST
+ filename
+ farstream-devel-0.2.0_2.noarch.xbps
+ filename-sha256
+ 9962d4930b3aebe449cfd40d91f492dfae38a2390ae29cfa24be362187e4913b
+ filename-size
+ 66716
+ homepage
+ http://www.freedesktop.org/wiki/Software/Farstream
+ installed_size
+ 850754
+ license
+ LGPL-2.1
+ long_desc
+
+ The Farsight project is an effort to create a framework to deal with all
+ known audio/video conferencing protocols. On one side it offers a generic API
+ that makes it possible to write plugins for different streaming protocols, on
+ the other side it offers an API for clients to use those plugins.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ farstream-devel
+ pkgver
+ farstream-devel-0.2.0_2
+ replaces
+
+ farsight2-devel>=0
+
+ run_depends
+
+ gst-plugins-base1-devel>=0
+ farstream-0.2.0_2
+
+ short_desc
+ farstream - development files
+ version
+ 0.2.0_2
+
+ ffmpeg-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-21 10:40 CET
+ filename
+ ffmpeg-devel-1.0.2_1.noarch.xbps
+ filename-sha256
+ 1888a2e1788bb7cd0bd7f7701d3f46493f818a778138001724bc42998dc75e1d
+ filename-size
+ 133016
+ homepage
+ http://www.ffmpeg.org
+ installed_size
+ 690037
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ ffmpeg-devel
+ pkgver
+ ffmpeg-devel-1.0.2_1
+ run_depends
+
+ libavcodec>=1.0.2
+ libavdevice>=1.0.2
+ libavformat>=1.0.2
+ libavutil>=1.0.2
+ libavfilter>=1.0.2
+ libpostproc>=1.0.2
+ libswscale>=1.0.2
+ libswresample>=1.0.2
+
+ short_desc
+ Decoding, encoding and streaming software - development files
+ source-revisions
+ ffmpeg/ffmpeg-devel.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libavcodec.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libavdevice.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libavfilter.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libavformat.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libavutil.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libpostproc.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libswresample.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/libswscale.template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ffmpeg/template: 919d89ce5d91cb5de5d7c00efe91ff5f7cddf081
+ version
+ 1.0.2_1
+
+ fftw-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-26 13:37 CET
+ filename
+ fftw-devel-3.3.3_1.noarch.xbps
+ filename-sha256
+ e102301f4d7700924603c0165c0a5108c96d49d3f8fb7539aebb0c26a647624e
+ filename-size
+ 105952
+ homepage
+ http://www.fftw.org/
+ installed_size
+ 219882
+ license
+ GPL-2
+ long_desc
+
+ FFTW is a free collection of fast C routines for computing the Discrete
+ Fourier Transform in one or more dimensions. It includes complex, real,
+ symmetric, and parallel transforms, and can handle arbitrary array sizes
+ efficiently. FFTW is typically faster than other publically-available FFT
+ implementations, and is even competitive with vendor-tuned libraries.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ fftw-devel
+ pkgver
+ fftw-devel-3.3.3_1
+ run_depends
+
+ libfftw>=3.3.3
+
+ short_desc
+ Library for computing the discrete Fourier transform (DFT) - Development files
+ source-revisions
+ fftw/fftw-devel.template: 130265fc23567e0b178f1a8e79bdd691c6f73dd8
+fftw/libfftw.template: b0b8fa0b14acd9a81ef49b4e39ea4556198afc2a
+fftw/template: 130265fc23567e0b178f1a8e79bdd691c6f73dd8
+ version
+ 3.3.3_1
+
+ file
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:15 CET
+ conflicts
+
+ chroot-file>=0
+
+ filename
+ file-5.12_2.armv6l.xbps
+ filename-sha256
+ ada8934c3c575194ea8d8a9a656e9ef270a825f5711fd33a6b538820ce900655
+ filename-size
+ 13348
+ homepage
+ http://www.darwinsys.com/file/
+ installed_size
+ 20061
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ file
+ pkgver
+ file-5.12_2
+ run_depends
+
+ libmagic-5.12_2
+ glibc>=2.8_1
+
+ short_desc
+ File type identification utility
+ source-revisions
+ file/file-devel.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/libmagic.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/template: 5bd75b87c8e395aa5db33700403636a16a1cd4b8
+ version
+ 5.12_2
+
+ file-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:15 CET
+ filename
+ file-dbg-5.12_2.armv6l.xbps
+ filename-sha256
+ 5f129d2b91fd241bb8d61f7e198a2d933867d58b4b0d3e1aafc8b25c58c584de
+ filename-size
+ 10484
+ homepage
+ http://www.darwinsys.com/file/
+ installed_size
+ 14452
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ file-dbg
+ pkgver
+ file-dbg-5.12_2
+ short_desc
+ File type identification utility (debug files)
+ source-revisions
+ file/file-devel.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/libmagic.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/template: 5bd75b87c8e395aa5db33700403636a16a1cd4b8
+ version
+ 5.12_2
+
+ file-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-01 11:14 CET
+ filename
+ file-devel-5.12_2.noarch.xbps
+ filename-sha256
+ c335e8de788ae7f4890d705d0b8ac9bcde426b89257b484ea75e2c00bc2a66f5
+ filename-size
+ 5588
+ homepage
+ http://www.darwinsys.com/file/
+ installed_size
+ 7232
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ file-devel
+ pkgver
+ file-devel-5.12_2
+ run_depends
+
+ zlib-devel>=0
+ libmagic>=5.12
+
+ short_desc
+ File type identification library -- development files
+ source-revisions
+ file/file-devel.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/libmagic.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/template: 1f09990d4ae3283478ab39e85110f70073017596
+ version
+ 5.12_2
+
+ finch-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-14 16:05 CET
+ filename
+ finch-devel-2.10.6_2.noarch.xbps
+ filename-sha256
+ 24ec60fcbd7840b0620b5bcc9f46fb3b10905249711c5ce871d0ff193e58c172
+ filename-size
+ 7308
+ homepage
+ http://pidgin.im/
+ installed_size
+ 39177
+ license
+ GPL-2
+ long_desc
+
+ Pidgin is an easy to use and free chat client used by millions. Connect to
+ AIM, MSN, Yahoo, and more chat networks all at once.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ finch-devel
+ pkgver
+ finch-devel-2.10.6_2
+ run_depends
+
+ libgnt-devel>=2.10.6
+ libpurple-devel>=2.10.6
+
+ short_desc
+ A ncurses-based messaging client -- development files
+ source-revisions
+ pidgin/finch-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/finch.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/pidgin-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/template: 07cf69f49a5b4db256613a036cf160aab37fffc8
+ version
+ 2.10.6_2
+
+ findutils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 20:52 CET
+ conf_files
+
+ /etc/updatedb.conf
+
+ conflicts
+
+ chroot-findutils>=0
+
+ filename
+ findutils-4.4.2_5.armv6l.xbps
+ filename-sha256
+ baaecc5fef0a60fefaa587c35889dfc0bc60a7bc1ee0bf05baa57775c0cc1d54
+ filename-size
+ 383820
+ homepage
+ http://www.gnu.org/software/findutils
+ installed_size
+ 1387428
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ findutils
+ pkgver
+ findutils-4.4.2_5
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU Find Utilities
+ source-revisions
+ findutils/files/updatedb.conf: 73a7986fe217d7cde134930a6c51a37e1bd8d359
+findutils/files/updatedb.cron-daily: 22640e330c2de3d6d6add91a7a5317bb962ea5b9
+findutils/template: 5b5ba6d344afbb54ceaf5da1c1316b1b7d446c7c
+ version
+ 4.4.2_5
+
+ findutils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 20:52 CET
+ filename
+ findutils-dbg-4.4.2_5.armv6l.xbps
+ filename-sha256
+ 7424df9e95912e0dafaac1a8aa7e8ba02935c3180815d95baa09071fbe54fd61
+ filename-size
+ 777824
+ homepage
+ http://www.gnu.org/software/findutils
+ installed_size
+ 912192
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ findutils-dbg
+ pkgver
+ findutils-dbg-4.4.2_5
+ short_desc
+ The GNU Find Utilities (debug files)
+ source-revisions
+ findutils/files/updatedb.conf: 73a7986fe217d7cde134930a6c51a37e1bd8d359
+findutils/files/updatedb.cron-daily: 22640e330c2de3d6d6add91a7a5317bb962ea5b9
+findutils/template: 5b5ba6d344afbb54ceaf5da1c1316b1b7d446c7c
+ version
+ 4.4.2_5
+
+ firefox-i18n
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-28 07:50 CEST
+ filename
+ firefox-i18n-15.0_1.noarch.xbps
+ filename-sha256
+ 55eb7db2aba759a50542256de4bda602f6a878380db803383e85fc52eb8ee6d9
+ filename-size
+ 18615476
+ homepage
+ http://www.mozilla.com/
+ installed_size
+ 23121920
+ license
+ MPL-2.1
+ long_desc
+
+ This package includes the language packs for the firefox browser.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ firefox-i18n
+ pkgver
+ firefox-i18n-15.0_1
+ short_desc
+ Firefox language packs
+ version
+ 15.0_1
+
+ fixesproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Friday 09 March, 2012, 13:47:35 UTC
+ filename
+ fixesproto-5.0_1.noarch.xbps
+ filename-sha256
+ d5ce7458c5f301eee453c5f818db8f6cccb09d4eceb99b7bec73d35f3fb42d1d
+ filename-size
+ 10976
+ installed_size
+ 49152
+ long_desc
+
+ This provides the Fixes extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-24
+ pkgname
+ fixesproto
+ pkgver
+ fixesproto-5.0_1
+ run_depends
+
+ xextproto>=0
+
+ short_desc
+ Fixes extension headers from X.org
+ version
+ 5.0_1
+
+ flex
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 16:42 CET
+ filename
+ flex-2.5.37_2.armv6l.xbps
+ filename-sha256
+ 55cc9310aba81fa4f01ce30618dd961d98ba2727a654f957f47698d2b6b3c9f2
+ filename-size
+ 788988
+ homepage
+ http://flex.sourceforge.net
+ installed_size
+ 1532896
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ flex
+ pkgver
+ flex-2.5.37_2
+ run_depends
+
+ libfl-devel>=2.5.37
+ bison>=0
+ glibc>=2.8_1
+
+ short_desc
+ The Fast Lexical Analyzer
+ source-revisions
+ flex/libfl-devel.template: a7325471f801b9d2605a7d4ca0fb6f72fb99c6c1
+flex/template: a7325471f801b9d2605a7d4ca0fb6f72fb99c6c1
+ version
+ 2.5.37_2
+
+ flex-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 16:42 CET
+ filename
+ flex-dbg-2.5.37_2.armv6l.xbps
+ filename-sha256
+ cddfdc94fb3be1c28f993275c7a2bf8741d1679dc494471ece49f6a7cea8cd43
+ filename-size
+ 114656
+ homepage
+ http://flex.sourceforge.net
+ installed_size
+ 134561
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ flex-dbg
+ pkgver
+ flex-dbg-2.5.37_2
+ short_desc
+ The Fast Lexical Analyzer (debug files)
+ source-revisions
+ flex/libfl-devel.template: a7325471f801b9d2605a7d4ca0fb6f72fb99c6c1
+flex/template: a7325471f801b9d2605a7d4ca0fb6f72fb99c6c1
+ version
+ 2.5.37_2
+
+ flowcanvas-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-19 11:19 CEST
+ filename
+ flowcanvas-devel-0.7.1_1.noarch.xbps
+ filename-sha256
+ c52c7d589482113ad3b89f5f36ba7ef18c9d058138e34cd89b0b3c572eac829f
+ filename-size
+ 8324
+ homepage
+ http://drobilla.net/software/flowcanvas/
+ installed_size
+ 81920
+ license
+ GPL-2
+ long_desc
+
+ FlowCanvas is an interactive Gtkmm/Gnomecanvasmm widget for boxes-and-lines
+ style environments (e.g. modular synths or interactive finite state automata
+ diagrams).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ flowcanvas-devel
+ pkgver
+ flowcanvas-devel-0.7.1_1
+ run_depends
+
+ flowcanvas>=0.7.1
+
+ short_desc
+ flowcanvas (development files)
+ version
+ 0.7.1_1
+
+ fltk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:22 CET
+ filename
+ fltk-devel-1.3.2_2.noarch.xbps
+ filename-sha256
+ 8af1df93b6c55bab1a2121c410e1d3788f4932182e9575b4661f00d5812c05a7
+ filename-size
+ 327824
+ homepage
+ http://www.fltk.org/
+ installed_size
+ 1696775
+ license
+ LGPL-2.1
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ fltk-devel
+ pkgver
+ fltk-devel-1.3.2_2
+ run_depends
+
+ fltk-1.3.2_2
+
+ short_desc
+ Cross-platform C++ GUI toolkit -- development files
+ source-revisions
+ fltk/fltk-devel.template: 3946dba7926a71ba308af895a0ed8c04f0312c99
+fltk/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.3.2_2
+
+ fluidsynth-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-20 18:08 CEST
+ filename
+ fluidsynth-devel-1.1.6_1.noarch.xbps
+ filename-sha256
+ a1cb97a735e3eae27da7e727014f8342192ed775a3c3af0ce0a61c2951228665
+ filename-size
+ 17572
+ homepage
+ http://www.fluidsynth.org/
+ installed_size
+ 122880
+ license
+ LGPL-2.1
+ long_desc
+
+ Features
+ Cross platform support (Linux, Mac OSX and Windows to name a few)
+ SoundFont 2 support
+ Realtime effect modulation using SoundFont 2.01 modulators
+ Shared library which can be used in other programs
+ Built in command line shell
+ Playback of MIDI files
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ fluidsynth-devel
+ pkgver
+ fluidsynth-devel-1.1.6_1
+ run_depends
+
+ libfluidsynth>=1.1.6
+
+ short_desc
+ Real-time software synthesizer based on the SoundFont 2 specifications - Development files
+ version
+ 1.1.6_1
+
+ folks-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-04 10:14 CEST
+ filename
+ folks-devel-0.8.0_1.noarch.xbps
+ filename-sha256
+ f7405b7f1a014dce737b414df4539444a94d556fad97d1dc4a0cc3c1f27d5be0
+ filename-size
+ 28412
+ homepage
+ http://telepathy.freedesktop.org/wiki/Folks
+ installed_size
+ 362818
+ license
+ LGPL-2.1
+ long_desc
+
+ libfolks is a library that aggregates people from multiple sources (eg,
+ Telepathy connection managers and eventually evolution data server, Facebook,
+ etc.) to create metacontacts. It's written in Vala (in part to evaluate Vala).
+ The initial goal is for GObject/C support, though the Vala bindings should
+ basically automatic.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ folks-devel
+ pkgver
+ folks-devel-0.8.0_1
+ run_depends
+
+ telepathy-glib-devel>=0.19.9
+ libgee-devel>=0.6.2.1_1
+ libsocialweb-devel>=0
+ evolution-data-server-devel>=3.6.0
+ folks>=0.8.0
+
+ short_desc
+ folks - development files
+ version
+ 0.8.0_1
+
+ font-adobe-100dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-adobe-100dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ 0d313b763d59cdd40d5cfa754d45b06066e1344312bb70122a96d0415b2772de
+ filename-size
+ 6208184
+ installed_size
+ 8974336
+ long_desc
+
+ Theses are the PCF versions of the following Adobe fonts for 100dpi displays:
+ - Courier
+ - Helvetica
+ - New Century Schoolbook
+ - Symbol
+ - Times
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-adobe-100dpi
+ pkgver
+ font-adobe-100dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard 100dpi Adobe PCF fonts
+ version
+ 1.0.3_1
+
+ font-adobe-75dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-adobe-75dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ aa0482a91fdb8350aaab487964f036e1e916df852e85a1f09d09e7912146c1fc
+ filename-size
+ 5497016
+ installed_size
+ 8359936
+ long_desc
+
+ These are the PCF versions of the following Adobe fonts for 75dpi displays:
+ - Courier
+ - Helvetica
+ - New Century Schoolbook
+ - Symbol
+ - Times
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-adobe-75dpi
+ pkgver
+ font-adobe-75dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard 75pi Adobe PCF fonts
+ version
+ 1.0.3_1
+
+ font-adobe-utopia-100dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-adobe-utopia-100dpi-1.0.4_1.noarch.xbps
+ filename-sha256
+ ce42005e67e74f46e77d2497927c0d9363f50d4698a7115ed6f323f0a8dcc17a
+ filename-size
+ 1469180
+ installed_size
+ 1957888
+ long_desc
+
+ These are the PCF versions of the following Adobe fonts for 100dpi displays:
+ - Adobe Utopia
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-adobe-utopia-100dpi
+ pkgver
+ font-adobe-utopia-100dpi-1.0.4_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 100dpi Adobe Utopia PCF fonts
+ version
+ 1.0.4_1
+
+ font-adobe-utopia-75dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-adobe-utopia-75dpi-1.0.4_1.noarch.xbps
+ filename-sha256
+ 58db91d5d5b8e4f45ce934335ec02e56c586d7eb550f204e9ef924ae6893c5a2
+ filename-size
+ 1222360
+ installed_size
+ 1839104
+ long_desc
+
+ These are the PCF versions of the following Adobe fonts for 75dpi displays:
+ - Adobe Utopia
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-adobe-utopia-75dpi
+ pkgver
+ font-adobe-utopia-75dpi-1.0.4_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 100dpi Adobe Utopia PCF fonts
+ version
+ 1.0.4_1
+
+ font-adobe-utopia-type1
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-adobe-utopia-type1-1.0.4_1.noarch.xbps
+ filename-sha256
+ 82dbb6f0629afbe908fc6a1b52de68700be5868dbbf2ffc2f6cd488b5b37bf4c
+ filename-size
+ 170392
+ installed_size
+ 405504
+ long_desc
+
+ This are the Type1 versions of the following Adobe fonts:
+ - Adobe Utopia
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-adobe-utopia-type1
+ pkgver
+ font-adobe-utopia-type1-1.0.4_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Adobe Utopia Type1 fonts
+ version
+ 1.0.4_1
+
+ font-alias
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 15:03:24 UTC
+ filename
+ font-alias-1.0.3_1.noarch.xbps
+ filename-sha256
+ b239371c246e8acc915230a9992ff78a99d6401b070fbcd5c15ffb4c12cc5328
+ filename-size
+ 3396
+ installed_size
+ 20480
+ long_desc
+
+ The font-alias package contains a font.alias tables for the various PCF
+ packages of modular Xorg. It maps common legacy names to full font
+ descriptors. The most important alias is fixed, which is needed for
+ the X server to run.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-alias
+ pkgver
+ font-alias-1.0.3_1
+ short_desc
+ Standard aliases for X11 PCF fonts
+ version
+ 1.0.3_1
+
+ font-bh-100dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bh-100dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ 313557ef3ba238b17f829fadcbfe05f1f0e0875814c358f971ffaa3154e900ff
+ filename-size
+ 3797304
+ installed_size
+ 5292032
+ long_desc
+
+ These are the PCF versions of the following Bigelow and Holmes fonts
+ for 100dpi displays:
+ - Lucida
+ - Lucida Bright
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bh-100dpi
+ pkgver
+ font-bh-100dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard 100dpi Bigelow and Holmes PCF fonts
+ version
+ 1.0.3_1
+
+ font-bh-75dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bh-75dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ a7c17190fbcbdb96715a4a774a2ba812a344d9a35a5248f9d34474d4a9f08300
+ filename-size
+ 3262640
+ installed_size
+ 4878336
+ long_desc
+
+ These are the PCF versions of the following Bigelow and Holmes fonts
+ for 75dpi displays:
+ - Lucida
+ - Lucida Bright
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bh-75dpi
+ pkgver
+ font-bh-75dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard 75dpi Bigelow and Holmes PCF fonts
+ version
+ 1.0.3_1
+
+ font-bh-lucidatypewriter-100dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bh-lucidatypewriter-100dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ a6f20709a012ccba89456b84428df6660f5666c5dc036bcc55d7e1f7b6fefd64
+ filename-size
+ 857876
+ installed_size
+ 1212416
+ long_desc
+
+ This are the PCF versions of the following Bigelow and Holmes fonts
+ for 100dpi displays:
+ - Lucida Typewriter
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bh-lucidatypewriter-100dpi
+ pkgver
+ font-bh-lucidatypewriter-100dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 100dpi Bigelow and Holmes Lucida Typewriter PCF fonts
+ version
+ 1.0.3_1
+
+ font-bh-lucidatypewriter-75dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bh-lucidatypewriter-75dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ 250ef5fe826ab5afb8534a3e4af9fd2019c20d02ae43aa5fedc776ff8633cb16
+ filename-size
+ 748684
+ installed_size
+ 1040384
+ long_desc
+
+ This are the PCF versions of the following Bigelow and Holmes fonts
+ for 75dpi displays:
+ - Lucida Typewriter
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bh-lucidatypewriter-75dpi
+ pkgver
+ font-bh-lucidatypewriter-75dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 75dpi Bigelow and Holmes Lucida Typewriter PCF fonts
+ version
+ 1.0.3_1
+
+ font-bh-ttf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bh-ttf-1.0.3_1.noarch.xbps
+ filename-sha256
+ 7d6729c1a97562e1fe2366793cc8bfff796aeba4795204f178c4ea40f5dce602
+ filename-size
+ 276028
+ installed_size
+ 942080
+ long_desc
+
+ These are the TrueType versions of the following Bigelow and Holmes fonts:
+ - Luxi Mono
+ - Luxi Sans
+ - Luxi Serif
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bh-ttf
+ pkgver
+ font-bh-ttf-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard Bigelow and Holmes TrueType fonts
+ version
+ 1.0.3_1
+
+ font-bh-type1
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bh-type1-1.0.3_1.noarch.xbps
+ filename-sha256
+ 56e3406654c9704f3d33fb4691608fb179a210fcd4f7491de658753a1b8c5bd7
+ filename-size
+ 536284
+ installed_size
+ 1343488
+ long_desc
+
+ This are the Type1 versions of the following Bigelow and Holmes fonts:
+ - Luxi Mono
+ - Luxi Sans
+ - Luxi Serif
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bh-type1
+ pkgver
+ font-bh-type1-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard Bigelow and Holmes Type1 fonts
+ version
+ 1.0.3_1
+
+ font-bitstream-100dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bitstream-100dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ d034ef1607ce1d6db66c2c31d6679169cbe649f2f5e54253f0f4b04dc728768c
+ filename-size
+ 163028
+ installed_size
+ 233472
+ long_desc
+
+ This are the PCF versions of the following Bitstream fonts for
+ 100dpi displays:
+ - Charter
+ - Terminal
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bitstream-100dpi
+ pkgver
+ font-bitstream-100dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard 100dpi Bitstream PCF fonts
+ version
+ 1.0.3_1
+
+ font-bitstream-75dpi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bitstream-75dpi-1.0.3_1.noarch.xbps
+ filename-sha256
+ bf7c655a83b20efa6f85c552e358bdc235c1f25a9b6d751168cc8c9fcb763ce6
+ filename-size
+ 142780
+ installed_size
+ 229376
+ long_desc
+
+ These are the PCF versions of the following Bitstream fonts for
+ 75dpi displays:
+ - Charter
+ - Terminal
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bitstream-75dpi
+ pkgver
+ font-bitstream-75dpi-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard 100dpi Bitstream PCF fonts
+ version
+ 1.0.3_1
+
+ font-bitstream-speedo
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bitstream-speedo-1.0.0_1.noarch.xbps
+ filename-sha256
+ 88728d61732064d1b022e38cf02bb127e20d04c2e05506a879a5fef47bec6292
+ filename-size
+ 238968
+ installed_size
+ 552960
+ long_desc
+
+ These are the PCF versions of the following Speedo Bitstream fonts:
+ - Speedo
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bitstream-speedo
+ pkgver
+ font-bitstream-speedo-1.0.0_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard Speedo Bitstream PCF fonts
+ version
+ 1.0.0_1
+
+ font-bitstream-type1
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-bitstream-type1-1.0.3_1.noarch.xbps
+ filename-sha256
+ 5623f864f92af49d066578ece395432a5ce3b929446e384bf4658bad05c632fd
+ filename-size
+ 302076
+ installed_size
+ 471040
+ long_desc
+
+ These are the PCF versions of the following Type1 Bitstream fonts:
+ - Type1
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-bitstream-type1
+ pkgver
+ font-bitstream-type1-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard Type1 Bitstream PCF fonts
+ version
+ 1.0.3_1
+
+ font-cursor-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-cursor-misc-1.0.3_1.noarch.xbps
+ filename-sha256
+ 5e574d2da7797ef2feb9fcb5d2f7f29b2d6df6f60f0f2368ac83f35abef93e06
+ filename-size
+ 7040
+ installed_size
+ 8192
+ long_desc
+
+ The font-cursor-misc package provides around 75 cursors in the
+ portable PCF format. These include the X cursor, arrows, clock
+ cursor, crosshair, fleur cursor, iron cross, sailboat cursor, and
+ many more.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-cursor-misc
+ pkgver
+ font-cursor-misc-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard X11 cursors in PCF format
+ version
+ 1.0.3_1
+
+ font-daewoo-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 15:04:58 UTC
+ filename
+ font-daewoo-misc-1.0.3_1.noarch.xbps
+ filename-sha256
+ 9bb6798093a6f66160f2152d676d77be2ea04c01d94a8133c13a58c3e82b3351
+ filename-size
+ 662848
+ installed_size
+ 835584
+ long_desc
+
+ These are the PCF versions of the Daewoo Gothic fonts for 100dpi displays.
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-daewoo-misc
+ pkgver
+ font-daewoo-misc-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Daewoo Gothic PCF format
+ version
+ 1.0.3_1
+
+ font-dec-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-dec-misc-1.0.3_1.noarch.xbps
+ filename-sha256
+ 725e9a3335803da682d0d7ebe4b455230df7c18a85eb938c712daebdba381477
+ filename-size
+ 5144
+ installed_size
+ 8192
+ long_desc
+
+ These are the PCF versions of the following DEC fonts for 100dpi displays:
+ - Cursor
+ - Session
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-dec-misc
+ pkgver
+ font-dec-misc-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ DEC cursor and session PCF fonts
+ version
+ 1.0.3_1
+
+ font-ibm-type1
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-ibm-type1-1.0.3_1.noarch.xbps
+ filename-sha256
+ 435a3fee6553ad0555dec6a12a41f2fc64be1879ec22504c022ebe9a8e157a5a
+ filename-size
+ 277756
+ installed_size
+ 634880
+ long_desc
+
+ These are the Type1 versions of the IBM Courier fonts.
+
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-ibm-type1
+ pkgver
+ font-ibm-type1-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ IBM Courier Type1 fonts
+ version
+ 1.0.3_1
+
+ font-isas-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-isas-misc-1.0.3_1.noarch.xbps
+ filename-sha256
+ 94b4a74a3a6cccc2247abc2960f4de7095233e759a057ffd9d2d8c777a316909
+ filename-size
+ 799552
+ installed_size
+ 950272
+ long_desc
+
+ These are the PCF versions of the Song Si fonts for 72dpi displays.
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-isas-misc
+ pkgver
+ font-isas-misc-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 72dpi PCF versions of the Chinese Song Ti fonts
+ version
+ 1.0.3_1
+
+ font-jis-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-jis-misc-1.0.3_1.noarch.xbps
+ filename-sha256
+ cc9d9327ca64127adf488818e3acf34c0453b1b8a39bc3fcca31a1f1206cb3ef
+ filename-size
+ 538012
+ installed_size
+ 622592
+ long_desc
+
+ These are the PCF versions of the JIS fixed fonts for 78dpi displays.
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-jis-misc
+ pkgver
+ font-jis-misc-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 78dpi PCF versions of the Japanese fixed fonts
+ version
+ 1.0.3_1
+
+ font-misc-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-misc-misc-1.1.2_1.noarch.xbps
+ filename-sha256
+ 62d27f3831b38bd430cfb16d2a07ce5db57417eba7c07fe34dea9643a91b43f5
+ filename-size
+ 3518256
+ installed_size
+ 5275648
+ long_desc
+
+ The standard X11 public domain fixed font that you can
+ share and enjoy. It is in PCF format.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-misc-misc
+ pkgver
+ font-misc-misc-1.1.2_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard X11 fixed PCF fonts
+ version
+ 1.1.2_1
+
+ font-mutt-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-mutt-misc-1.0.3_1.noarch.xbps
+ filename-sha256
+ 661e63d8fc01d23edfd7d4c7edc097ff3e3eced259e8d1c9dee291f59822f0b7
+ filename-size
+ 210072
+ installed_size
+ 262144
+ long_desc
+
+ These are the PCF versions of the ClearlyU fonts for 100dpi displays.
+ This is from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-mutt-misc
+ pkgver
+ font-mutt-misc-1.0.3_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ 100dpi PCF versions of the ClearlyU fonts
+ version
+ 1.0.3_1
+
+ font-sony-misc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-sony-misc-1.0.0_1.noarch.xbps
+ filename-sha256
+ bcd0f3c00a2564c2ab038e9636151f6cf1b598c4721eedd568e56223d524c06f
+ filename-size
+ 21688
+ installed_size
+ 32768
+ long_desc
+
+ The standard X11 sony fonts that you can share and enjoy.
+ It is in PCF format.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-sony-misc
+ pkgver
+ font-sony-misc-1.0.0_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Standard X11 sony PCF fonts
+ version
+ 1.0.0_1
+
+ font-unifont-bdf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ font-unifont-bdf-5.1.20080820_1.noarch.xbps
+ filename-sha256
+ 2290a7cc6fb5733e4ee309fe001d03352e388d61037b220a75f4420cb33a0b0e
+ filename-size
+ 815168
+ homepage
+ http://unifoundry.com/unifont.html
+ installed_size
+ 10129408
+ license
+ GPL-2, Freeware
+ long_desc
+
+ This page contains GNU Unifont, with glyphs for every printable code point
+ in the Unicode 5.1 Basic Multilingual Plane (BMP).
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ font-unifont-bdf
+ pkgver
+ font-unifont-bdf-5.1.20080820_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ GNU Unifont Glyphs
+ version
+ 5.1.20080820_1
+
+ fontcacheproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:34:26 UTC
+ filename
+ fontcacheproto-0.1.2_1.noarch.xbps
+ filename-sha256
+ bd6afed06af2f57fe7b7649c884233b686fa397b1b37be92b05ee3059a907ae7
+ filename-size
+ 3412
+ installed_size
+ 20480
+ long_desc
+
+ This package provides the Fontcache extension headers from the
+ modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ fontcacheproto
+ pkgver
+ fontcacheproto-0.1.2_1
+ short_desc
+ Fontcache extension headers from X.org
+ version
+ 0.1.2_1
+
+ fontconfig
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:03 CET
+ conf_files
+
+ /etc/fonts/fonts.conf
+
+ filename
+ fontconfig-2.10.91_1.armv6l.xbps
+ filename-sha256
+ b563fda9fd4cd62b5d87156e1c42a4bb3790aa45f98a0d5b46240f343bab6f2a
+ filename-size
+ 118500
+ homepage
+ http://www.fontconfig.org
+ installed_size
+ 322398
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ fontconfig
+ pkgver
+ fontconfig-2.10.91_1
+ run_depends
+
+ glibc>=2.8_1
+ freetype>=2.3.9_1
+ expat>=2.0.0_1
+
+ short_desc
+ Library for configuring and customizing font access
+ source-revisions
+ fontconfig/INSTALL: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+fontconfig/fontconfig-devel.template: 11e4fac07b584799bf401d90f13ac18a0ecebded
+fontconfig/template: 76bf423c3fde55b55a0f551004b3a6c456dbead4
+ version
+ 2.10.91_1
+
+ fontconfig-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:03 CET
+ filename
+ fontconfig-dbg-2.10.91_1.armv6l.xbps
+ filename-sha256
+ f51e2f6fb40ad717ef696da255d6cf71b275314d5872bcbf773bc569362516af
+ filename-size
+ 256652
+ homepage
+ http://www.fontconfig.org
+ installed_size
+ 330134
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ fontconfig-dbg
+ pkgver
+ fontconfig-dbg-2.10.91_1
+ short_desc
+ Library for configuring and customizing font access (debug files)
+ source-revisions
+ fontconfig/INSTALL: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+fontconfig/fontconfig-devel.template: 11e4fac07b584799bf401d90f13ac18a0ecebded
+fontconfig/template: 76bf423c3fde55b55a0f551004b3a6c456dbead4
+ version
+ 2.10.91_1
+
+ fontconfig-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 15:58 CET
+ filename
+ fontconfig-devel-2.10.91_1.noarch.xbps
+ filename-sha256
+ 24f84c6dbc6ed419cca6cab849d46883032719c73318fd1b1f76d8676426a201
+ filename-size
+ 659268
+ homepage
+ http://www.fontconfig.org
+ installed_size
+ 1465160
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ fontconfig-devel
+ pkgver
+ fontconfig-devel-2.10.91_1
+ run_depends
+
+ expat-devel>=0
+ freetype-devel>=0
+ fontconfig>=2.10.91
+
+ short_desc
+ Library for configuring and customizing font access -- development files
+ source-revisions
+ fontconfig/INSTALL: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+fontconfig/fontconfig-devel.template: 11e4fac07b584799bf401d90f13ac18a0ecebded
+fontconfig/template: 11e4fac07b584799bf401d90f13ac18a0ecebded
+ version
+ 2.10.91_1
+
+ fontsproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:34:44 UTC
+ filename
+ fontsproto-2.1.0_1.noarch.xbps
+ filename-sha256
+ 1f9c6ce3a97d885c581d5991b56e75075f92e4185d44a28686b62771de222bdd
+ filename-size
+ 9972
+ installed_size
+ 61440
+ long_desc
+
+ This package provides the fonts extension headers from the modular
+ X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ fontsproto
+ pkgver
+ fontsproto-2.1.0_1
+ short_desc
+ Fonts extension headers from X.org
+ version
+ 2.1.0_1
+
+ foomatic-db
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 26 June, 2012, 08:19:30 UTC
+ filename
+ foomatic-db-20120626_1.noarch.xbps
+ filename-sha256
+ c50ff910fb99e4c8c28c09cdf54a0f06a07cd2d6f227c1b459cd2ff69b28c927
+ filename-size
+ 19080124
+ installed_size
+ 56451072
+ license
+ GPL-2, MIT
+ long_desc
+
+ Foomatic is a printing system designed to make it easier to set up common
+ printers for use with Linux (and other operating systems). It provides the
+ glue between a print spooler (like CUPS or lpr) and your actual printer,
+ by telling your computer how to process files sent to the printer.
+
+ This package contains the printer database distributed by OpenPrinting for
+ most common drivers. You will probably need the foomatic-db-engine package
+ for this package to be useful.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ foomatic-db
+ pkgver
+ foomatic-db-20120626_1
+ short_desc
+ OpenPrinting printer support - database
+ version
+ 20120626_1
+
+ freefont-ttf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-29 10:29 CET
+ filename
+ freefont-ttf-20120503_3.noarch.xbps
+ filename-sha256
+ cbb2ef737a33b660e09d28a3c7d6282f799652425f78e5031a2619b62b4b4119
+ filename-size
+ 4142056
+ homepage
+ http://www.nongnu.org/freefont/
+ installed_size
+ 10797928
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ freefont-ttf
+ pkgver
+ freefont-ttf-20120503_3
+ run_depends
+
+ font-util>=0
+ xbps-triggers>=0.58
+
+ short_desc
+ Free family of scalable outline fonts
+ source-revisions
+ freefont-ttf/files/conf.avail: 18f1f5f35ec5543f2a49f297faed3eb8ffe9bd76
+freefont-ttf/template: 4aafb42ba51dba0b37e28544149eccd5d6f25577
+ version
+ 20120503_3
+
+ freetype
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:02 CET
+ filename
+ freetype-2.4.11_2.armv6l.xbps
+ filename-sha256
+ b2d3bffa02cea151a002ccd411bd2373bb0224356fc4e3fabf0693fa70e70643
+ filename-size
+ 218896
+ homepage
+ http://www.freetype.org/
+ installed_size
+ 556268
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ freetype
+ pkgver
+ freetype-2.4.11_2
+ run_depends
+
+ zlib>=1.2.3_1
+ glibc>=2.8_1
+
+ short_desc
+ Font rendering engine and library API
+ source-revisions
+ freetype/freetype-devel.template: a236537f8d85bf93691541d518a3edfaa38d5ad0
+freetype/patches/freetype-2.2.1-enable-valid.patch: da5d0554700036b0996a7117572af234c61b06b1
+freetype/patches/freetype-2.3.0-enable-spr.patch: da5d0554700036b0996a7117572af234c61b06b1
+freetype/patches/freetype-2.4.11-enable-sph.patch: a5b794b75a6949b96c59ca972387fc4e9d4b2d73
+freetype/template: a236537f8d85bf93691541d518a3edfaa38d5ad0
+ version
+ 2.4.11_2
+
+ freetype-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:02 CET
+ filename
+ freetype-dbg-2.4.11_2.armv6l.xbps
+ filename-sha256
+ 0b4c313e1b18a1df4cf786087dda2585f2527fb32e20249ab24f99c509fc7511
+ filename-size
+ 820156
+ homepage
+ http://www.freetype.org/
+ installed_size
+ 878944
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ freetype-dbg
+ pkgver
+ freetype-dbg-2.4.11_2
+ short_desc
+ Font rendering engine and library API (debug files)
+ source-revisions
+ freetype/freetype-devel.template: a236537f8d85bf93691541d518a3edfaa38d5ad0
+freetype/patches/freetype-2.2.1-enable-valid.patch: da5d0554700036b0996a7117572af234c61b06b1
+freetype/patches/freetype-2.3.0-enable-spr.patch: da5d0554700036b0996a7117572af234c61b06b1
+freetype/patches/freetype-2.4.11-enable-sph.patch: a5b794b75a6949b96c59ca972387fc4e9d4b2d73
+freetype/template: a236537f8d85bf93691541d518a3edfaa38d5ad0
+ version
+ 2.4.11_2
+
+ freetype-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:02 CET
+ filename
+ freetype-devel-2.4.11_2.armv6l.xbps
+ filename-sha256
+ 203f6426cdbe0501a8864adc39768bf49eb6228f2a5675791ecac2d06d21d095
+ filename-size
+ 365500
+ homepage
+ http://www.freetype.org/
+ installed_size
+ 1791149
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ freetype-devel
+ pkgver
+ freetype-devel-2.4.11_2
+ run_depends
+
+ zlib-devel>=0
+ bzip2-devel>=0
+ freetype>=2.4.11
+
+ short_desc
+ Font rendering engine and library API - development files
+ source-revisions
+ freetype/freetype-devel.template: a236537f8d85bf93691541d518a3edfaa38d5ad0
+freetype/patches/freetype-2.2.1-enable-valid.patch: da5d0554700036b0996a7117572af234c61b06b1
+freetype/patches/freetype-2.3.0-enable-spr.patch: da5d0554700036b0996a7117572af234c61b06b1
+freetype/patches/freetype-2.4.11-enable-sph.patch: a5b794b75a6949b96c59ca972387fc4e9d4b2d73
+freetype/template: a236537f8d85bf93691541d518a3edfaa38d5ad0
+ version
+ 2.4.11_2
+
+ ftgl-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-09 11:05 CEST
+ filename
+ ftgl-devel-2.1.3rc5_4.noarch.xbps
+ filename-sha256
+ c7af92bd4157c3f199fae8da71389b5396fba944d42af8786ab6b29a31bec1e5
+ filename-size
+ 17856
+ homepage
+ http://ftgl.wiki.sourceforge.net/
+ installed_size
+ 118272
+ license
+ MIT
+ long_desc
+
+ FTGL is a free cross-platform Open Source C++ library that uses Freetype2
+ to simplify rendering fonts in OpenGL applications. FTGL supports bitmaps,
+ pixmaps, texture maps, outlines, polygon mesh, and extruded polygon
+ rendering modes.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ ftgl-devel
+ pkgver
+ ftgl-devel-2.1.3rc5_4
+ run_depends
+
+ freetype-devel>=0
+ glu-devel>=0
+ ftgl-2.1.3rc5_4
+
+ short_desc
+ OpenGL library to use arbitrary fonts (development files)
+ version
+ 2.1.3rc5_4
+
+ fuse-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-23 12:51 CET
+ filename
+ fuse-devel-2.9.2_1.noarch.xbps
+ filename-sha256
+ 3d81a59a4a54f9d57e9a788e48e7c34a6c111dbb4fe11647e80189ca0d83eaf8
+ filename-size
+ 25300
+ homepage
+ http://fuse.sourceforge.net
+ installed_size
+ 126382
+ license
+ GPL-2
+ long_desc
+
+ With FUSE it is possible to implement a fully functional filesystem in
+ a userspace program. Features include:
+
+ * Simple library API
+ * Simple installation (no need to patch or recompile the kernel)
+ * Secure implementation
+ * Userspace - kernel interface is very efficient
+ * Usable by non privileged users
+ * Runs on Linux kernels 2.4.X and 2.6.X
+ * Has proven very stable over time
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ fuse-devel
+ pkgver
+ fuse-devel-2.9.2_1
+ run_depends
+
+ fuse-2.9.2_1
+
+ short_desc
+ Filesystem in Userspace (development files)
+ source-revisions
+ fuse/fuse-devel.template: 59f9628133e949f2acc84ff8ac7f416611c232da
+fuse/patches/fusermount.patch: 6ecb5a1ced17a65596dfcac4556de32c1988d0d8
+fuse/template: 59f9628133e949f2acc84ff8ac7f416611c232da
+ version
+ 2.9.2_1
+
+ garcon-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 11:09 CEST
+ filename
+ garcon-devel-0.2.0_2.noarch.xbps
+ filename-sha256
+ dc583517833da390c4c4366b82c4a735e53f1e9106ee2ff7cd4d0c2b0a491643
+ filename-size
+ 29248
+ homepage
+ http://wiki.xfce.org/dev/garcon
+ installed_size
+ 386067
+ license
+ LGPL-2.1
+ long_desc
+
+ This is garcon, a freedesktop.org compliant menu implementation based
+ on GLib and GIO. It was started as a complete rewrite of the former
+ Xfce menu library called libxfce4menu, which, in contrast to garcon,
+ was lacking menu merging features essential for loading menus modified
+ with menu editors.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ garcon-devel
+ pkgver
+ garcon-devel-0.2.0_2
+ run_depends
+
+ glib-devel>=0
+ garcon-0.2.0_2
+
+ short_desc
+ Glib/GIO freedesktop.org compliant menu implementation - development files
+ version
+ 0.2.0_2
+
+ gawk
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:51 CET
+ conflicts
+
+ chroot-gawk>=0
+
+ filename
+ gawk-4.0.2_2.armv6l.xbps
+ filename-sha256
+ 5a8d220a800065b88dd80ba67e39e245ec4055be0df525060381c7411ed8c4b8
+ filename-size
+ 746576
+ homepage
+ http://www.gnu.org/directory/GNU/gawk.html
+ installed_size
+ 2161708
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ gawk
+ pkgver
+ gawk-4.0.2_2
+ run_depends
+
+ readline>=6.0_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU awk utility
+ source-revisions
+ gawk/template: 1fbda0515b825285eefd83534bc2104038285d68
+ version
+ 4.0.2_2
+
+ gawk-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:51 CET
+ filename
+ gawk-dbg-4.0.2_2.armv6l.xbps
+ filename-sha256
+ cefdc603e656bdafe18493d9f00243e830efebccdb0c9e2380c88f1616f2ffba
+ filename-size
+ 1108728
+ homepage
+ http://www.gnu.org/directory/GNU/gawk.html
+ installed_size
+ 1320465
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ gawk-dbg
+ pkgver
+ gawk-dbg-4.0.2_2
+ short_desc
+ The GNU awk utility (debug files)
+ source-revisions
+ gawk/template: 1fbda0515b825285eefd83534bc2104038285d68
+ version
+ 4.0.2_2
+
+ gcc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:51 CET
+ filename
+ gcc-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 7c0629179c44866aa539151d86aa907d072c5dd2e16a8e2043e915ce1338ebef
+ filename-size
+ 9280644
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 47976304
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ gcc
+ pkgver
+ gcc-4.7.2_2
+ run_depends
+
+ binutils>=0
+ libgomp>=4.7
+ libitm>=4.7
+ libssp-devel>=4.7
+ libgcc-4.7.2_2
+ glibc>=2.8_1
+ cloog>=0.17.0_1
+ ppl>=0.11_1
+ mpc>=0.8.1_1
+ mpfr>=3.0.0_1
+ gmp>=5.0.1_1
+ zlib>=1.2.3_1
+
+ short_desc
+ The GNU C Compiler
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ gcc-c++
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ gcc-c++-4.7.2_2.armv6l.xbps
+ filename-sha256
+ bb2ea1d3b6b518e5f133db52f4f65a6f333953c03fffea13487967b23512acee
+ filename-size
+ 3443212
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 16195596
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ gcc-c++
+ pkgver
+ gcc-c++-4.7.2_2
+ run_depends
+
+ gcc>=4.7
+ libstdc++-devel>=4.7
+ libgcc-4.7.2_2
+ glibc>=2.8_1
+ cloog>=0.17.0_1
+ ppl>=0.11_1
+ mpc>=0.8.1_1
+ mpfr>=3.0.0_1
+ gmp>=5.0.1_1
+ zlib>=1.2.3_1
+
+ short_desc
+ GCC C++ support
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ gcr-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 16:05 CET
+ filename
+ gcr-devel-3.6.2_2.noarch.xbps
+ filename-sha256
+ fe70cb967819a0565b347ee6a845eb9c9ace59abafd80a3123afc5a68203ceac
+ filename-size
+ 239012
+ homepage
+ http://www.gnome.org
+ installed_size
+ 3116411
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ GCR is a library for displaying certificates, and crypto UI, accessing
+ key stores. It also provides the viewer for crypto files on the GNOME
+ desktop.
+
+ GCK is a library for accessing PKCS#11 modules like smart cards, in a
+ (G)object oriented way.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gcr-devel
+ pkgver
+ gcr-devel-3.6.2_2
+ replaces
+
+ gnome-keyring-devel<3.3.92
+
+ run_depends
+
+ glib-devel>=0
+ p11-kit-devel>=0
+ gtk+3-devel>=0
+ gcr-3.6.2_2
+
+ short_desc
+ gcr -- development files
+ version
+ 3.6.2_2
+
+ gdbm
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 11:21 CET
+ filename
+ gdbm-1.10_4.armv6l.xbps
+ filename-sha256
+ 2886b207d1bb2f87b2ec2697a5fdd5e29cefb4b61a74f32a135ffa1c480af513
+ filename-size
+ 25536
+ homepage
+ http://www.gnu.org.ua/software/gdbm/
+ installed_size
+ 86261
+ license
+ GPL-3
+ long_desc
+
+ GNU dbm is a set of database routines that use extensible hashing.
+ It works similar to the standard Unix dbm routines.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ gdbm
+ pkgver
+ gdbm-1.10_4
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ GNU database routines
+ source-revisions
+ gdbm/gdbm-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+gdbm/patches/gdbm-1.10-zeroheaders.patch: 474da011cb6f649e283febb320f79096b43748a6
+gdbm/template: e99400b08c58cf2a570f4629e0d78e9870d1d9ea
+ version
+ 1.10_4
+
+ gdbm-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 11:21 CET
+ filename
+ gdbm-dbg-1.10_4.armv6l.xbps
+ filename-sha256
+ 83740d162b7a05dd2c224a619c51419f55be31a220d8832c0fb7a477a6c25565
+ filename-size
+ 41644
+ homepage
+ http://www.gnu.org.ua/software/gdbm/
+ installed_size
+ 52386
+ license
+ GPL-3
+ long_desc
+
+ GNU dbm is a set of database routines that use extensible hashing.
+ It works similar to the standard Unix dbm routines.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ gdbm-dbg
+ pkgver
+ gdbm-dbg-1.10_4
+ short_desc
+ GNU database routines (debug files)
+ source-revisions
+ gdbm/gdbm-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+gdbm/patches/gdbm-1.10-zeroheaders.patch: 474da011cb6f649e283febb320f79096b43748a6
+gdbm/template: e99400b08c58cf2a570f4629e0d78e9870d1d9ea
+ version
+ 1.10_4
+
+ gdbm-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 11:21 CET
+ filename
+ gdbm-devel-1.10_4.armv6l.xbps
+ filename-sha256
+ d72fb999e3cf7bef0a14750caddc5cfaf454664c638944ce2816e5bec3dbe233
+ filename-size
+ 60032
+ homepage
+ http://www.gnu.org.ua/software/gdbm/
+ installed_size
+ 127572
+ license
+ GPL-3
+ long_desc
+
+ GNU dbm is a set of database routines that use extensible hashing.
+ It works similar to the standard Unix dbm routines.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ gdbm-devel
+ pkgver
+ gdbm-devel-1.10_4
+ run_depends
+
+ glibc-devel>=0
+ gdbm>=1.10_1_1
+ glibc>=2.8_1
+
+ short_desc
+ GNU database routines - development files
+ source-revisions
+ gdbm/gdbm-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+gdbm/patches/gdbm-1.10-zeroheaders.patch: 474da011cb6f649e283febb320f79096b43748a6
+gdbm/template: e99400b08c58cf2a570f4629e0d78e9870d1d9ea
+ version
+ 1.10_4
+
+ gdbm-devel-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 11:21 CET
+ filename
+ gdbm-devel-dbg-1.10_4.armv6l.xbps
+ filename-sha256
+ dd7bb13f85b81391e997e64cab66abdf0910e1269fbe2407e7b5f63e4a679617
+ filename-size
+ 20536
+ homepage
+ http://www.gnu.org.ua/software/gdbm/
+ installed_size
+ 26999
+ license
+ GPL-3
+ long_desc
+
+ GNU dbm is a set of database routines that use extensible hashing.
+ It works similar to the standard Unix dbm routines.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ gdbm-devel-dbg
+ pkgver
+ gdbm-devel-dbg-1.10_4
+ short_desc
+ GNU database routines - development files (debug files)
+ source-revisions
+ gdbm/gdbm-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+gdbm/patches/gdbm-1.10-zeroheaders.patch: 474da011cb6f649e283febb320f79096b43748a6
+gdbm/template: e99400b08c58cf2a570f4629e0d78e9870d1d9ea
+ version
+ 1.10_4
+
+ gdm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 22:07 CET
+ filename
+ gdm-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ c9f033d4594120b731805d3417003707aea17750dfd71205313a96820214c23d
+ filename-size
+ 18212
+ homepage
+ http://www.gnome.org
+ installed_size
+ 397040
+ license
+ GPL-2
+ long_desc
+
+ GDM is the GNOME Display Manager, it is the little proggie that runs
+ in the background, runs your X sessions, presents you with a login box
+ and then tells you to piss off because you forgot your password. It
+ does pretty much everything that you would want to use xdm for, but
+ does not involve as much crack. It doesn't use any code from xdm, and
+ has a more paranoid and safer design overall. It also includes many
+ features over xdm, the biggest one of which is that it is more user
+ friendly, even if your X setup is failing. The goal is that users
+ should never, ever have to use the command line to customize or
+ troubleshoot gdm. It of course supports xdmcp, and in fact extends
+ xdmcp a little bit in places where I thought xdm was lacking (but is
+ still compatible with xdm's xdmcp).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gdm-devel
+ pkgver
+ gdm-devel-3.6.2_1
+ run_depends
+
+ libgdm-3.6.2_1
+
+ short_desc
+ gdm (development files)
+ version
+ 3.6.2_1
+
+ geany-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 02 July, 2012, 08:41:59 UTC
+ filename
+ geany-devel-1.22_2.noarch.xbps
+ filename-sha256
+ 3ee287a61a67f52aae4ddf3fa815b2d073ff12a964a5dedcc2470be717d46242
+ filename-size
+ 82712
+ homepage
+ http://www.geany.org
+ installed_size
+ 503808
+ license
+ GPL-2
+ long_desc
+
+ Geany is a text editor using the GTK2 toolkit with basic features of an
+ integrated development environment. It was developed to provide a small and
+ fast IDE, which has only a few dependencies from other packages. It supports
+ many filetypes and has some nice features.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-29
+ pkgname
+ geany-devel
+ pkgver
+ geany-devel-1.22_2
+ run_depends
+
+ gtk+-devel>=0
+
+ short_desc
+ Fast and lightweight IDE - Development files
+ version
+ 1.22_2
+
+ gedit-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 09:25 CET
+ filename
+ gedit-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ c690016eed2a3825f3578f012f141b3702191c6c2bb2fee05216cfacd462bb10
+ filename-size
+ 60244
+ homepage
+ http://www.gnome.org
+ installed_size
+ 793834
+ license
+ GPL-2
+ long_desc
+
+ The GNOME Editor.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gedit-devel
+ pkgver
+ gedit-devel-3.6.2_1
+ run_depends
+
+ gtksourceview-devel>=0
+ libpeas-devel>=0
+
+ short_desc
+ gedit - development files
+ version
+ 3.6.2_1
+
+ gegl-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 14:57 CET
+ filename
+ gegl-devel-0.2.0_3.noarch.xbps
+ filename-sha256
+ a9ed6393a8526458f8563388322da286591f01856eda2dce7888d3c8ed05bd91
+ filename-size
+ 51104
+ homepage
+ http://www.gimp.org
+ installed_size
+ 343466
+ license
+ GPL-3, LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ gegl-devel
+ pkgver
+ gegl-devel-0.2.0_3
+ run_depends
+
+ glib-devel>=0
+ gegl>=0.2.0
+
+ short_desc
+ Graph based image processing framework - development files
+ source-revisions
+ gegl/gegl-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+gegl/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 0.2.0_3
+
+ geoclue-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 16:41 CEST
+ filename
+ geoclue-devel-0.12.0_5.noarch.xbps
+ filename-sha256
+ fcb754717abe4659de4bed7a462747eddd5244ae3660b34bfc66ac2bcb12ad75
+ filename-size
+ 37984
+ installed_size
+ 479153
+ long_desc
+
+ Geoclue is a modular geoinformation service built on top of the D-Bus
+ messaging system. The goal of the Geoclue project is to make creating
+ location-aware applications as simple as possible.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ geoclue-devel
+ pkgver
+ geoclue-devel-0.12.0_5
+ run_depends
+
+ geoclue-0.12.0_5
+
+ short_desc
+ geoclue - development files
+ version
+ 0.12.0_5
+
+ gettext-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-01 12:10 CET
+ filename
+ gettext-devel-0.18.2_3.noarch.xbps
+ filename-sha256
+ a5fe3c7f74711084eee4f244a3e41f116cd6a9f094fd655de40f6f9373419dba
+ filename-size
+ 1056796
+ homepage
+ http://www.gnu.org/software/gettext/
+ installed_size
+ 5236387
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ gettext-devel
+ pkgver
+ gettext-devel-0.18.2_3
+ run_depends
+
+ gettext-libs>=0.18.2
+
+ short_desc
+ Internationalized Message Handling Library and tools (development files)
+ source-revisions
+ gettext/gettext-devel.template: 2a8d10508a3600485106038e48b1c15ef92e9059
+gettext/gettext-libs.template: 258ab2b2e09e891a0e90389282afa721eecd9a5f
+gettext/template: 77ed4efb74cf87e8d1bc1eecb06d331eebef3201
+ version
+ 0.18.2_3
+
+ ghostscript-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:42 CET
+ filename
+ ghostscript-devel-9.06_2.noarch.xbps
+ filename-sha256
+ 857f16fee50c7ecbcbc665a216cafee90f0fe0b9b2c7c82b3a30ada15f008e17
+ filename-size
+ 11184
+ homepage
+ http://www.ghostscript.com/
+ installed_size
+ 36977
+ license
+ GPL-3, custom
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ ghostscript-devel
+ pkgver
+ ghostscript-devel-9.06_2
+ run_depends
+
+ libijs>=9.06
+ libgs>=9.06
+
+ short_desc
+ An interpreter for the PostScript language -- development files
+ source-revisions
+ ghostscript/ghostscript-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ghostscript/libgs.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ghostscript/libijs.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ghostscript/template: 2edf85744cd09d334f30ff021f3a221be1821545
+ version
+ 9.06_2
+
+ giblib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 11:26 CEST
+ filename
+ giblib-devel-1.2.4_3.noarch.xbps
+ filename-sha256
+ a05ed56110d5dafcd7d9e84600bde1f0c5d162932b17e56d4004d99ddf449584
+ filename-size
+ 6252
+ homepage
+ http://linuxbrit.co.uk/giblib/
+ installed_size
+ 31191
+ license
+ MIT
+ long_desc
+
+ Giblib is a utility library used by many of the applications found on
+ www.linuxbrit.co.uk. It incorporates doubly linked lists, some string
+ functions, and a wrapper for imlib2. The wrapper does two things. It
+ gives you access to fontstyles, which can be loaded from files, saved to
+ files, or defined dynamically through the API. It also, and more
+ importantly, wraps imlib2's context API into a more compact form.
+
+ This package contains files for development: headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ giblib-devel
+ pkgver
+ giblib-devel-1.2.4_3
+ run_depends
+
+ imlib2-devel>=0
+ freetype-devel>=0
+ zlib-devel>=0
+ libX11-devel>=0
+ libXext-devel>=0
+ giblib-1.2.4_3
+
+ short_desc
+ giblib - development files
+ version
+ 1.2.4_3
+
+ giflib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 07:35 CET
+ filename
+ giflib-devel-5.0.3_2.noarch.xbps
+ filename-sha256
+ 78a91b19d4445fd6879b7a6a3d053c94d6fef0ed0972be36cbc24a038e43a941
+ filename-size
+ 4060
+ homepage
+ http://sourceforge.net/projects/giflib/
+ installed_size
+ 13265
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ giflib-devel
+ pkgver
+ giflib-devel-5.0.3_2
+ run_depends
+
+ giflib-5.0.3_2
+
+ short_desc
+ Library for GIF images -- development files
+ source-revisions
+ giflib/giflib-devel.template: 77cf759c65f82c35a60c91b78e9a0db22f364fd3
+giflib/giflib-tools.template: 530e6045620b429d773fdcb71b5821245a88fc59
+giflib/template: 530e6045620b429d773fdcb71b5821245a88fc59
+ version
+ 5.0.3_2
+
+ giggle-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 05 June, 2012, 19:23:41 UTC
+ filename
+ giggle-devel-0.6.1_3.noarch.xbps
+ filename-sha256
+ 5a38d0f3d7eab75595fa9507bcb6f4f2edea5c9d2e3c03d43e0f654e2c19467e
+ filename-size
+ 7792
+ homepage
+ http://live.gnome.org/giggle
+ installed_size
+ 106496
+ license
+ GPL-2
+ long_desc
+
+ Giggle is a graphical frontend for the git content tracker
+ (think of gitk on GTK+).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ giggle-devel
+ pkgver
+ giggle-devel-0.6.1_3
+ run_depends
+
+ libgiggle>=0.6.1
+
+ short_desc
+ Git repository viewer - Development files
+ version
+ 0.6.1_3
+
+ gimp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-09 00:58 CET
+ filename
+ gimp-devel-2.8.2_2.noarch.xbps
+ filename-sha256
+ efd39bd01eb2535e91378fb5d5483861f3c94fc1c820cc8c376ba7fc6d6ea691
+ filename-size
+ 821532
+ homepage
+ http://www.gimp.org
+ installed_size
+ 6895833
+ license
+ GPL-3
+ long_desc
+
+ Powerful image manipulation program similar to Adobe Photoshop[tm].
+ It supports layers, arbitrary image sizes and working on several images
+ at the same time. It comes with a lot of useful plug-ins. Missing is CMYK
+ support and more than 8 bits per channel.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ gimp-devel
+ pkgver
+ gimp-devel-2.8.2_2
+ short_desc
+ gimp development files
+ source-revisions
+ gimp/gimp-devel.template: 71df7f0ab2df1aef05a1f26d6b49f29a462a103b
+gimp/gimp-python.template: 71df7f0ab2df1aef05a1f26d6b49f29a462a103b
+gimp/template: 89d011c9361953d3beb6c4a3fca009ded7d4eb44
+ version
+ 2.8.2_2
+
+ git
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:15 CET
+ filename
+ git-1.8.1.3_1.armv6l.xbps
+ filename-sha256
+ aa598e6c990c289b7cfede345faf921b369f62cf8703f008900a45fea83272d9
+ filename-size
+ 1283636
+ homepage
+ http://git-scm.com/
+ installed_size
+ 10939561
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ git
+ pkgver
+ git-1.8.1.3_1
+ run_depends
+
+ ca-certificates>=0
+ zlib>=1.2.3_1
+ libssl>=1.0.0_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+ libcurl>=7.19_1
+
+ short_desc
+ GIT Tree History Storage Tool
+ source-revisions
+ git/git-docs.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-perl.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-python.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/template: 462bf164197df7c05a12ef490e10c4cd76be1cac
+ version
+ 1.8.1.3_1
+
+ git-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:15 CET
+ filename
+ git-dbg-1.8.1.3_1.armv6l.xbps
+ filename-sha256
+ 80a029fee206ab312d4d89ecd6404dd8f385774b809692d9aa364293c1b29256
+ filename-size
+ 12090052
+ homepage
+ http://git-scm.com/
+ installed_size
+ 16668489
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ git-dbg
+ pkgver
+ git-dbg-1.8.1.3_1
+ short_desc
+ GIT Tree History Storage Tool (debug files)
+ source-revisions
+ git/git-docs.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-perl.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-python.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/template: 462bf164197df7c05a12ef490e10c4cd76be1cac
+ version
+ 1.8.1.3_1
+
+ git-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:14 CET
+ filename
+ git-docs-1.8.1.3_1.noarch.xbps
+ filename-sha256
+ 4c8f79ea2d61c9cb7c8cbbbbf18a53c1dfe11aa68bb227873a95e267aa65a9d8
+ filename-size
+ 677796
+ homepage
+ http://git-scm.com/
+ installed_size
+ 660879
+ license
+ GPL-2
+ long_desc
+
+
+ This package contains the full git documentation (manual pages).
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ git-docs
+ pkgver
+ git-docs-1.8.1.3_1
+ short_desc
+ git documentation
+ source-revisions
+ git/git-docs.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-perl.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-python.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/template: 462bf164197df7c05a12ef490e10c4cd76be1cac
+ version
+ 1.8.1.3_1
+
+ git-perl
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:14 CET
+ filename
+ git-perl-1.8.1.3_1.noarch.xbps
+ filename-sha256
+ e33e8340d2fa4beb2e4789bfb72b4d40eda8e25c29370a417235c46cb4b7b79d
+ filename-size
+ 88964
+ homepage
+ http://git-scm.com/
+ installed_size
+ 238971
+ license
+ GPL-2
+ long_desc
+
+
+ This package contains the Perl bindings.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ git-perl
+ pkgver
+ git-perl-1.8.1.3_1
+ run_depends
+
+ git>=0
+ perl>=0
+
+ short_desc
+ git perl bindings
+ source-revisions
+ git/git-docs.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-perl.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-python.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/template: 462bf164197df7c05a12ef490e10c4cd76be1cac
+ version
+ 1.8.1.3_1
+
+ git-python
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:14 CET
+ filename
+ git-python-1.8.1.3_1.noarch.xbps
+ filename-sha256
+ 0398f2e568cde38c3881c638613b71261c5c7193f4d1bc238a52ac48def68773
+ filename-size
+ 11936
+ homepage
+ http://git-scm.com/
+ installed_size
+ 41650
+ license
+ GPL-2
+ long_desc
+
+
+ This package contains the Python bindings for GIT.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ git-python
+ pkgver
+ git-python-1.8.1.3_1
+ run_depends
+
+ git>=0
+ python>=0
+
+ short_desc
+ git python bindings
+ source-revisions
+ git/git-docs.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-perl.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/git-python.template: c9df7e5fb7a31ceb4ac7fa8b98ecc0c3866f4579
+git/template: 462bf164197df7c05a12ef490e10c4cd76be1cac
+ version
+ 1.8.1.3_1
+
+ gjs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-25 15:19 CEST
+ filename
+ gjs-devel-1.34.0_1.noarch.xbps
+ filename-sha256
+ 3971e21655471b88c09751fac5a23e5303d4ae6759638e089cffca5e5a3f76e7
+ filename-size
+ 15036
+ homepage
+ http://live.gnome.org/Gjs
+ installed_size
+ 176128
+ license
+ MPL-1.1, LGPL-2.1, GPL-2
+ long_desc
+
+ Makes it possible for applications to use all of GNOME's platform libraries
+ using the Javascript language. It's mainly based on the Mozilla javascript
+ engine and the GObject introsepection framework.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ gjs-devel
+ pkgver
+ gjs-devel-1.34.0_1
+ run_depends
+
+ libffi-devel>=0
+ libgirepository-devel>=0
+ dbus-glib-devel>=0
+ cairo-devel>=0
+ readline-devel>=0
+ js-devel>=0
+ gjs>=1.34.0
+
+ short_desc
+ gjs - development files
+ version
+ 1.34.0_1
+
+ glade3-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 10:11 CEST
+ filename
+ glade3-devel-3.14.1_1.noarch.xbps
+ filename-sha256
+ 2156340fadc460ca456d7604459dac41217013b6e6d7fecdda6d3676fadb09ce
+ filename-size
+ 127064
+ installed_size
+ 1791169
+ long_desc
+
+ Glade is a RAD tool to enable quick & easy development of user interfaces
+ for the GTK+ toolkit and the GNOME desktop environment.
+
+ The user interfaces designed in Glade are saved as XML, and by using the
+ GtkBuilder GTK+ object these can be loaded by applications dynamically as
+ needed.
+
+ By using GtkBuilder, Glade XML files can be used in numerous programming
+ languages including C, C++, C#, Vala, Java, Perl, Python and others.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ glade3-devel
+ pkgver
+ glade3-devel-3.14.1_1
+ run_depends
+
+ gtk+3-devel>=0
+ libxml2-devel>=0
+ libgladeui3-3.14.1_1
+
+ short_desc
+ An User Interface Designer for GTK+ - development files
+ version
+ 3.14.1_1
+
+ glew-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-08 09:41 CET
+ filename
+ glew-devel-1.9.0_1.noarch.xbps
+ filename-sha256
+ f3221bdeeb259ac80c67ebc66e25da7e2aa40c03a845efcf904ab0de3c5984ae
+ filename-size
+ 102844
+ homepage
+ http://glew.sourceforge.net
+ installed_size
+ 1011983
+ license
+ BSD, MIT, GPL-2
+ long_desc
+
+ The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
+ C/C++ extension loading library. GLEW provides efficient run-time
+ mechanisms for determining which OpenGL extensions are supported
+ on the target platform. OpenGL core and extension functionality is
+ exposed in a single header file.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (806312002cc7bb78b97a256dac03acd44259db0d)
+ pkgname
+ glew-devel
+ pkgver
+ glew-devel-1.9.0_1
+ run_depends
+
+ glew-1.9.0_1
+
+ short_desc
+ The OpenGL Extension Wrangler Library - development files
+ source-revisions
+ glew/glew-devel.template: a0465dbca6b4fe2a4d63031cffec03cfe36da014
+glew/template: 4ee7a5f7468e00b483f199239257756c9846059d
+ version
+ 1.9.0_1
+
+ glib
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 10:19 CET
+ filename
+ glib-2.34.3_3.armv6l.xbps
+ filename-sha256
+ 205d7b0475b1ad31cde647ec079c19f3421364ebb1becb09c9d985fc2e536960
+ filename-size
+ 1486796
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 8850546
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ glib
+ pkgver
+ glib-2.34.3_3
+ run_depends
+
+ glibc>=2.8_1
+ libffi>=3.0.8_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ libpcre>=8.30_1
+
+ short_desc
+ The GNU library of C routines
+ source-revisions
+ glib/glib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/libglib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+ version
+ 2.34.3_3
+
+ glib-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 10:19 CET
+ filename
+ glib-dbg-2.34.3_3.armv6l.xbps
+ filename-sha256
+ 6dec2d46be6fa2878421e35662c15daeb541c6e7db7a3e65a962e5b302bd9038
+ filename-size
+ 2826220
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 3428239
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ glib-dbg
+ pkgver
+ glib-dbg-2.34.3_3
+ short_desc
+ The GNU library of C routines (debug files)
+ source-revisions
+ glib/glib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/libglib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+ version
+ 2.34.3_3
+
+ glib-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 10:18 CET
+ filename
+ glib-devel-2.34.3_3.armv6l.xbps
+ filename-sha256
+ 63537048c9a53f6db24f78a3e039adae8c367fde0649fe4ff47502cd82ff6bea
+ filename-size
+ 1382868
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 20036583
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ glib-devel
+ pkgver
+ glib-devel-2.34.3_3
+ run_depends
+
+ python>=0
+ perl>=0
+ libglib-devel-2.34.3_3
+ glib>=2.18.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU library of C routines -- development files
+ source-revisions
+ glib/glib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/libglib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+ version
+ 2.34.3_3
+
+ glib-devel-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 10:18 CET
+ filename
+ glib-devel-dbg-2.34.3_3.armv6l.xbps
+ filename-sha256
+ 47c400da285e0d788e291b3da8943a05c43e383946a26d0450ecd051eb0689e0
+ filename-size
+ 72156
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 102721
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ glib-devel-dbg
+ pkgver
+ glib-devel-dbg-2.34.3_3
+ short_desc
+ The GNU library of C routines -- development files (debug files)
+ source-revisions
+ glib/glib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/libglib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+ version
+ 2.34.3_3
+
+ glibc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:26 CET
+ conf_files
+
+ /etc/rpc
+ /etc/ld.so.conf
+
+ filename
+ glibc-2.17_4.armv6l.xbps
+ filename-sha256
+ 43ce2d795b2e6cd27c411ff464f8ee8d3bde8fd1705f02911b45b00df18a1713
+ filename-size
+ 2413468
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 10251129
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ glibc
+ pkgver
+ glibc-2.17_4
+ run_depends
+
+ base-files>=0
+ glibc-locales>=0
+
+ short_desc
+ The GNU C library
+ source-revisions
+ glibc/files/libc-locales: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/files/nscd.conf: 9904b034651d6ea983af524f3c6b9870f4f1c7cd
+glibc/files/nscd.service: 650832e30112f8b89d0a359a2ba1be48db1e9886
+glibc/files/nscd.socket: 2057dd443284f51aebb7d376cdd47e9b42aa8a18
+glibc/files/nscd.tmpfiles.d: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+glibc/glibc-devel.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/glibc-locales.INSTALL: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/glibc-locales.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/nscd.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/template: 2bad41b7a68fbbf7d9ccad02ee9cf8afdb8a1fa0
+ version
+ 2.17_4
+
+ glibc-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:26 CET
+ filename
+ glibc-dbg-2.17_4.armv6l.xbps
+ filename-sha256
+ 84d634cb90aad8eb4f1b3e23ec657aad20589af38f7de204a175e3721d5093f9
+ filename-size
+ 5943408
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 8514688
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ glibc-dbg
+ pkgver
+ glibc-dbg-2.17_4
+ short_desc
+ The GNU C library (debug files)
+ source-revisions
+ glibc/files/libc-locales: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/files/nscd.conf: 9904b034651d6ea983af524f3c6b9870f4f1c7cd
+glibc/files/nscd.service: 650832e30112f8b89d0a359a2ba1be48db1e9886
+glibc/files/nscd.socket: 2057dd443284f51aebb7d376cdd47e9b42aa8a18
+glibc/files/nscd.tmpfiles.d: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+glibc/glibc-devel.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/glibc-locales.INSTALL: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/glibc-locales.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/nscd.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/template: 2bad41b7a68fbbf7d9ccad02ee9cf8afdb8a1fa0
+ version
+ 2.17_4
+
+ glibc-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:26 CET
+ filename
+ glibc-devel-2.17_4.armv6l.xbps
+ filename-sha256
+ 4f2ea51051d4efb837cb93dd9cc6e90d7ae4972b931a1dfc9c3890ac09f9c4f6
+ filename-size
+ 2158856
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 7799065
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ glibc-devel
+ pkgver
+ glibc-devel-2.17_4
+ run_depends
+
+ kernel-libc-headers>=0
+ glibc>=2.17
+
+ short_desc
+ The GNU C library -- development files
+ source-revisions
+ glibc/files/libc-locales: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/files/nscd.conf: 9904b034651d6ea983af524f3c6b9870f4f1c7cd
+glibc/files/nscd.service: 650832e30112f8b89d0a359a2ba1be48db1e9886
+glibc/files/nscd.socket: 2057dd443284f51aebb7d376cdd47e9b42aa8a18
+glibc/files/nscd.tmpfiles.d: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+glibc/glibc-devel.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/glibc-locales.INSTALL: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/glibc-locales.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/nscd.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/template: 2bad41b7a68fbbf7d9ccad02ee9cf8afdb8a1fa0
+ version
+ 2.17_4
+
+ glibc-locales
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:46 CET
+ conf_files
+
+ /etc/default/libc-locales
+
+ filename
+ glibc-locales-2.17_4.noarch.xbps
+ filename-sha256
+ 0d17e97077cb18afb7595a5388702e1983b4b97df720e9a2f1fa1c7fecad5d6d
+ filename-size
+ 3571272
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 12388127
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ glibc-locales
+ pkgver
+ glibc-locales-2.17_4
+ short_desc
+ The GNU C library -- locales
+ source-revisions
+ glibc/files/libc-locales: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/files/nscd.conf: 9904b034651d6ea983af524f3c6b9870f4f1c7cd
+glibc/files/nscd.service: 650832e30112f8b89d0a359a2ba1be48db1e9886
+glibc/files/nscd.socket: 2057dd443284f51aebb7d376cdd47e9b42aa8a18
+glibc/files/nscd.tmpfiles.d: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+glibc/glibc-devel.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/glibc-locales.INSTALL: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/glibc-locales.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/nscd.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/template: 2bad41b7a68fbbf7d9ccad02ee9cf8afdb8a1fa0
+ version
+ 2.17_4
+
+ glibmm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-17 10:44 CET
+ filename
+ glibmm-devel-2.34.1_1.noarch.xbps
+ filename-sha256
+ edfc97d77e96a19882e35498aaea0f1444e7e09a7286020471d8c01b23222247
+ filename-size
+ 4943372
+ homepage
+ http://gtkmm.sourceforge.net/
+ installed_size
+ 35214231
+ license
+ LGPL-2.1
+ long_desc
+
+ glibmm (previously known as GLib--) is the official C++ interface for the
+ popular GUI library GTK+. Highlights include typesafe callbacks, widgets
+ extensible via inheritance and a comprehensive set of widget classes that
+ can be freely combined to quickly create complex user interfaces.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ glibmm-devel
+ pkgver
+ glibmm-devel-2.34.1_1
+ run_depends
+
+ glib-devel>=0
+ libsigc++-devel>=0
+ glibmm-2.34.1_1
+
+ short_desc
+ C++ bindings for GLib (development files)
+ version
+ 2.34.1_1
+
+ glm
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-04 09:01 CET
+ filename
+ glm-0.9.3.4_1.noarch.xbps
+ filename-sha256
+ 7a720afb1daef0d29d5b983a7c820ef77546de64fb99f140fbc7074261f34c43
+ filename-size
+ 4990924
+ homepage
+ http://glm.g-truc.net
+ installed_size
+ 15063116
+ license
+ MIT
+ long_desc
+
+ OpenGL Mathematics (GLM) is a header only C++ mathematics library for
+ graphics software based on the OpenGL Shading Language (GLSL) specification.
+
+ GLM provides classes and functions designed and implemented with the same
+ naming conventions and functionalities than GLSL so that when a programmer
+ knows GLSL, he knows GLM as well which makes it really easy to use.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ glm
+ pkgver
+ glm-0.9.3.4_1
+ short_desc
+ A C++ mathematics library for graphics programming
+ version
+ 0.9.3.4_1
+
+ glproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Friday 13 July, 2012, 11:54:47 UTC
+ filename
+ glproto-1.4.16_1.noarch.xbps
+ filename-sha256
+ ca98ec63d7d17f3be640968b77d0500be0d4cb101b885a4bbd47b0c80befbe10
+ filename-size
+ 16328
+ installed_size
+ 147456
+ long_desc
+
+ This package provides the GL extension headers from modular X.org.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ glproto
+ pkgver
+ glproto-1.4.16_1
+ short_desc
+ GL extension headers
+ version
+ 1.4.16_1
+
+ glu-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-09 10:53 CEST
+ filename
+ glu-devel-9.0.0_1.noarch.xbps
+ filename-sha256
+ 405c091ce22d5749dfce07017470e001c76ee907c467fd1b5562edf83625f7cb
+ filename-size
+ 5500
+ homepage
+ http://cgit.freedesktop.org/mesa/glu/
+ installed_size
+ 20781
+ license
+ LGPL-2.1
+ long_desc
+
+ GLU offers simple interfaces for building mipmaps; checking for the presence
+ of extensions in the OpenGL (or other libraries which follow the same
+ conventions for advertising extensions); drawing piecewise-linear curves,
+ NURBS, quadrics and other primitives (including, but not limited to,
+ teapots); tesselating surfaces; setting up projection matrices and
+ unprojecting screen coordinates to world coordinates.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ glu-devel
+ pkgver
+ glu-devel-9.0.0_1
+ run_depends
+
+ MesaLib-devel>=9.0
+ glu-9.0.0_1
+
+ short_desc
+ Mesa OpenGL utility library (GLU) -- development files
+ version
+ 9.0.0_1
+
+ gmime-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 04:40 CET
+ filename
+ gmime-devel-2.6.15_1.noarch.xbps
+ filename-sha256
+ 9c26ee9c7c25a4e71bbc424668fc8ef180ece748e965ce5c564604d908d148ec
+ filename-size
+ 116860
+ homepage
+ http://www.gnome.org/
+ installed_size
+ 1593488
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ gmime-devel
+ pkgver
+ gmime-devel-2.6.15_1
+ run_depends
+
+ glib-devel>=0
+ zlib-devel>=0
+ gmime-2.6.15_1
+
+ short_desc
+ GNOME Core mime parsing library - development files
+ version
+ 2.6.15_1
+
+ gmp
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 13:02 CET
+ filename
+ gmp-5.1.1_1.armv6l.xbps
+ filename-sha256
+ d05d0d953d954f886276c0b4de3576c2a69db0a31dcb07eef19907c50638e81d
+ filename-size
+ 164840
+ homepage
+ http://gmplib.org/
+ installed_size
+ 399492
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ gmp
+ pkgver
+ gmp-5.1.1_1
+ run_depends
+
+ libstdc++>=4.4.0_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Library for arbitrary precision arithmetic
+ source-revisions
+ gmp/gmp-devel.template: 966a13c6930e9b15611052a8c933e7071210e681
+gmp/template: c4dd7a339456f3745ecbd0065a8b656d4002dc0e
+ version
+ 5.1.1_1
+
+ gmp-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 13:02 CET
+ filename
+ gmp-dbg-5.1.1_1.armv6l.xbps
+ filename-sha256
+ b755e110f81463f5677993ed21b92f40e294c6775d7e78a72a91302ddee688db
+ filename-size
+ 578636
+ homepage
+ http://gmplib.org/
+ installed_size
+ 650111
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ gmp-dbg
+ pkgver
+ gmp-dbg-5.1.1_1
+ short_desc
+ Library for arbitrary precision arithmetic (debug files)
+ source-revisions
+ gmp/gmp-devel.template: 966a13c6930e9b15611052a8c933e7071210e681
+gmp/template: c4dd7a339456f3745ecbd0065a8b656d4002dc0e
+ version
+ 5.1.1_1
+
+ gmp-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 13:02 CET
+ filename
+ gmp-devel-5.1.1_1.armv6l.xbps
+ filename-sha256
+ 31f2b8e749a516ddb802d87e722225d186f53d44007c1a956e254bfa6fbbfef6
+ filename-size
+ 360312
+ homepage
+ http://gmplib.org/
+ installed_size
+ 1375821
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ gmp-devel
+ pkgver
+ gmp-devel-5.1.1_1
+ run_depends
+
+ glibc-devel>=0
+ gmp>=5.1.1
+
+ short_desc
+ Library for arbitrary precision arithmetic -- development files
+ source-revisions
+ gmp/gmp-devel.template: 966a13c6930e9b15611052a8c933e7071210e681
+gmp/template: c4dd7a339456f3745ecbd0065a8b656d4002dc0e
+ version
+ 5.1.1_1
+
+ gnome
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-28 16:23 CEST
+ filename
+ gnome-3.6.0_4.noarch.xbps
+ filename-sha256
+ d1f9982de3dfeea150e85e29c5681724cd89e5746893f167a93dd551bda891c8
+ filename-size
+ 1376
+ installed_size
+ 0
+ long_desc
+
+ This is the GNOME meta-package for installing a complete GNOME desktop system.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ gnome
+ pkgver
+ gnome-3.6.0_4
+ run_depends
+
+ gnome-backgrounds>=3.6.0
+ gnome-themes-standard>=3.6.0
+ gnome-control-center>=3.6.0
+ gnome-desktop>=3.6.0
+ gnome-icon-theme>=3.6.0
+ gnome-icon-theme-extras>=3.4.0
+ gnome-icon-theme-symbolic>=3.6.0
+ gnome-panel>=3.6.0
+ gnome-session>=3.6.0
+ gnome-settings-daemon>=3.6.0
+ gnome-user-docs>=3.6.0
+ gnome-screensaver>=3.6.0
+ gnome-shell>=3.6.0
+ metacity>=2.34.3
+ nautilus>=3.6.0
+ notification-daemon>=0.7.4
+ yelp>=3.6.0
+ epiphany>=3.6.0
+ baobab>=3.6.0
+ gnome-disk-utility>=3.6.0
+ gnome-dictionary>=3.6.0
+ gnome-font-viewer>=3.6.0
+ gnome-search-tool>=3.6.0
+ gnome-system-log>=3.6.0
+ gnome-screenshot>=3.6.0
+ gnome-contacts>=3.6.0
+ gnome-terminal>=3.6.0
+ gnome-power-manager>=3.6.0
+ gnome-system-monitor>=3.6.0
+ gnome-bluetooth>=3.6.0
+ gnome-color-manager>=3.6.0
+ gnome-keyring>=3.6.0
+ gnome-media>=3.4.0
+ gnome-applets>=3.5.92
+ gnome-clocks>=0.1.3
+ eog>=3.6.0
+ gedit>=3.6.0
+ gdm>=3.6.0
+ file-roller>=3.6.0
+ seahorse>=3.6.0
+ totem>=3.6.0
+ brasero>=3.6.0
+ empathy>=3.6.0
+ vino>=3.6.0
+ vinagre>=3.6.0
+ gcalctool>=6.6.0
+ network-manager-applet>=0.9.6.2
+ cantarell-fonts>=0.0.10
+ gucharmap>=3.5.99
+ cheese>=3.6.0
+ nautilus-sendto>=3.6.0
+ evince>=3.6.0
+ gnome-documents>=3.6.0
+ sushi>=3.6.0
+ evolution>=3.6.0
+ sound-juicer>=3.5.0
+ rygel>=0.16.0
+ tracker>=0.14.0
+ eog-plugins>=3.6.0
+ epiphany-extensions>=3.4.0
+ seahorse-nautilus>=3.6.0
+ seahorse-sharing>=3.6.0
+ xdg-user-dirs-gtk>=0
+
+ short_desc
+ GNOME meta-package
+ version
+ 3.6.0_4
+
+ gnome-backgrounds
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 20:24 CEST
+ filename
+ gnome-backgrounds-3.6.1_1.noarch.xbps
+ filename-sha256
+ 020e65d5b45ba8764a7995f9c35814979a2cac438f112c1754f64b963b88c887
+ filename-size
+ 10016744
+ homepage
+ http://www.gnome.org
+ installed_size
+ 10395089
+ license
+ GPL-2
+ long_desc
+
+ This package provides a set of background images ready to be used within the
+ GNOME Desktop.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ gnome-backgrounds
+ pkgver
+ gnome-backgrounds-3.6.1_1
+ short_desc
+ Set of background images for the GNOME Desktop
+ version
+ 3.6.1_1
+
+ gnome-bluetooth-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-15 22:30 CET
+ filename
+ gnome-bluetooth-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ 06af98ea94ebe12a3e58bc0c007307c6f6c0f5e81ed480131bba927a916d1fbb
+ filename-size
+ 29172
+ homepage
+ http://live.gnome.org/GnomeBluetooth
+ installed_size
+ 296097
+ license
+ GPL, LGPL
+ long_desc
+
+ This package contains tools for managing and manipulating Bluetooth devices
+ using the GNOME desktop.
+
+ bluetooth-applet provides an agent to ask for PIN and managing pairing with
+ devices, together with bluetooth-properties.
+
+ bluetooth-sendto is also included for sending files to Bluetooth devices
+ via OBEX.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-bluetooth-devel
+ pkgver
+ gnome-bluetooth-devel-3.6.1_1
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=0
+ gnome-bluetooth>=3.6.1
+
+ short_desc
+ gnome-bluetooth - development files
+ version
+ 3.6.1_1
+
+ gnome-clocks
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 20:38 CET
+ filename
+ gnome-clocks-0.1.5_1.noarch.xbps
+ filename-sha256
+ 8057e7db5d01ab91fd0874aa01b0053ce0035a9b8f9623d591f772cbaeac1b36
+ filename-size
+ 218852
+ homepage
+ https://live.gnome.org/GnomeClocks
+ installed_size
+ 457027
+ license
+ GPL-2
+ long_desc
+
+ GNOME Clocks is a nice simple app to show the time, date, and alarms.
+
+ - View the time and date
+ - View alarms
+ - Set alarms
+ - Times/dates in other locations
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ gnome-clocks
+ pkgver
+ gnome-clocks-0.1.5_1
+ run_depends
+
+ pycairo>=0
+ pyxdg>=0
+ python>=0
+ desktop-file-utils>=0
+ hicolor-icon-theme>=0
+
+ short_desc
+ Clock application for the GNOME Desktop
+ source-revisions
+ gnome-clocks/template: 7e31d82321519204ae9c8d5df2bcd4d24f824f36
+ version
+ 0.1.5_1
+
+ gnome-common
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 10:26 CET
+ filename
+ gnome-common-3.6.0_2.noarch.xbps
+ filename-sha256
+ 0712352a6c4831621e56608f24f9a423167d04c79125b8c0b6ddd3d2c7e0a3e3
+ filename-size
+ 11256
+ homepage
+ http://www.gnome.org
+ installed_size
+ 36109
+ license
+ GPL-2
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ gnome-common
+ pkgver
+ gnome-common-3.6.0_2
+ run_depends
+
+ automake>=0
+
+ short_desc
+ Common scripts and macros to develop with GNOME
+ source-revisions
+ gnome-common/patches/automake-1.13-support.patch: 419829d61675bcbb0a15117bf5d4f8a7b572a815
+gnome-common/template: 419829d61675bcbb0a15117bf5d4f8a7b572a815
+ version
+ 3.6.0_2
+
+ gnome-desktop-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 09:31 CET
+ filename
+ gnome-desktop-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ 2c5327539739967ac411ecb86faffbf997ec0961b08c51a983a38753835fd29c
+ filename-size
+ 34396
+ homepage
+ http://www.gnome.org
+ installed_size
+ 377379
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ gnome-desktop provides the following components:
+
+ * The GNOME desktop manager.
+ * The GNOME desktop manager configuration program and several other
+ desktop management related utilities.
+ * The GNOME desktop manager proxy, which handles basic desktop
+ management for applications that do not support XSM.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-desktop-devel
+ pkgver
+ gnome-desktop-devel-3.6.2_1
+ run_depends
+
+ libxkbfile-devel>=0
+ gsettings-desktop-schemas-devel>=3.6.0
+ gtk+3-devel>=3.6.0_2
+ gnome-desktop-3.6.2_1
+
+ short_desc
+ gnome-desktop -- development files
+ version
+ 3.6.2_1
+
+ gnome-doc-utils
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 14:10:21 UTC
+ filename
+ gnome-doc-utils-0.20.10_1.noarch.xbps
+ filename-sha256
+ 5c24ff1e157834cb8c8244167c59a7af7ac45cf1ba7cbea6c273fd5235c13d3d
+ filename-size
+ 314160
+ installed_size
+ 3944448
+ long_desc
+
+ gnome-doc-utils is a collection of documentation utilities for the Gnome
+ project. Notably, it contains utilities for building documentation and
+ all auxiliary files in your source tree, and it contains the DocBook
+ XSLT stylesheets that were once distributed with Yelp.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ gnome-doc-utils
+ pkgver
+ gnome-doc-utils-0.20.10_1
+ run_depends
+
+ libxslt>=0
+ docbook-xml>=0
+ docbook-xsl>=0
+ rarian>=0
+ python>=0
+ libxml2-python>=0
+
+ short_desc
+ Documentation utilities for GNOME
+ version
+ 0.20.10_1
+
+ gnome-icon-theme
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-19 12:02 CET
+ filename
+ gnome-icon-theme-3.6.2_2.noarch.xbps
+ filename-sha256
+ 87def61d2dee366ab89dde09ca984f2bf686b12ec4353d7320cd30f41a87ebb6
+ filename-size
+ 9215292
+ installed_size
+ 9637667
+ long_desc
+
+ This package contains a set of icons forming the default icon theme
+ for GNOME.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ gnome-icon-theme
+ pkgver
+ gnome-icon-theme-3.6.2_2
+ short_desc
+ Theme consisting of a set of icons for GNOME
+ source-revisions
+ gnome-icon-theme/template: 8295225d4b3315e1f67f364a2c9b9d2fded59be3
+ version
+ 3.6.2_2
+
+ gnome-icon-theme-extras
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 11:08 CET
+ filename
+ gnome-icon-theme-extras-3.6.2_1.noarch.xbps
+ filename-sha256
+ 647f95269c0a688c4fe5f26d48f4fc10ceeb9f8a03d7b80bc62d0b6258b0a7f8
+ filename-size
+ 785916
+ installed_size
+ 874503
+ long_desc
+
+ This package contains the default icon theme used by the GNOME desktop.
+ The icons are used in the panel menu, and in nautilus and other applications,
+ to represent the different applications, files, directories, and devices.
+
+ This package contains additional icons for the default GNOME icon theme.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-icon-theme-extras
+ pkgver
+ gnome-icon-theme-extras-3.6.2_1
+ run_depends
+
+ gnome-icon-theme>=0
+
+ short_desc
+ GNOME Desktop icon theme (additional icons)
+ version
+ 3.6.2_1
+
+ gnome-icon-theme-symbolic
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 11:09 CET
+ filename
+ gnome-icon-theme-symbolic-3.6.2_1.noarch.xbps
+ filename-sha256
+ 4f9c721d5d833d891245afe7a6c9cd56369c8ce53ae574544acae47e3ef2135c
+ filename-size
+ 123172
+ installed_size
+ 1626952
+ long_desc
+
+ This package contains the default icon theme used by the GNOME desktop.
+ The icons are used in the panel menu, and in nautilus and other applications,
+ to represent the different applications, files, directories, and devices.
+
+ This package contains symbolic cons for the default GNOME icon theme.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-icon-theme-symbolic
+ pkgver
+ gnome-icon-theme-symbolic-3.6.2_1
+ run_depends
+
+ gnome-icon-theme>=3.6.0
+
+ short_desc
+ GNOME Desktop icon theme (symbolic icons)
+ version
+ 3.6.2_1
+
+ gnome-js-common
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 04 June, 2012, 15:49:03 UTC
+ filename
+ gnome-js-common-0.1.2_1.noarch.xbps
+ filename-sha256
+ 092efa11c96d3d03e65e6e38dc4937495ef2e4aa9165546169d7b6b10496ccac
+ filename-size
+ 32740
+ installed_size
+ 159744
+ long_desc
+
+ This package includes some JavaScript common modules for GNOME.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ gnome-js-common
+ pkgver
+ gnome-js-common-0.1.2_1
+ short_desc
+ GNOME JavaScript common modules
+ version
+ 0.1.2_1
+
+ gnome-menus-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 21:02 CET
+ filename
+ gnome-menus-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ 15d524f3e8948aa2079023909b15c1c605c2da3897c7e9da5c6a8fb7afa69f06
+ filename-size
+ 5492
+ homepage
+ http://www.gnome.org
+ installed_size
+ 30399
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ gnome-menus-devel
+ pkgver
+ gnome-menus-devel-3.6.2_1
+ run_depends
+
+ glib-devel>=0
+ gnome-menus>=3.6.2
+
+ short_desc
+ gnome-menus (development files)
+ source-revisions
+ gnome-menus/gnome-menus-devel.template: 0571e66ddd5bbf133f58b42cbc45eeb2ff87b869
+gnome-menus/template: 0571e66ddd5bbf133f58b42cbc45eeb2ff87b869
+ version
+ 3.6.2_1
+
+ gnome-mime-data
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ conf_files
+
+ /etc/gnome-vfs-mime-magic
+
+ filename
+ gnome-mime-data-2.18.0_1.noarch.xbps
+ filename-sha256
+ 4fea02fc3330a4c0dbbf55a84b827c055f2ef8cecb8aaec3d647e5dcf4fe3a10
+ filename-size
+ 346108
+ installed_size
+ 3809280
+ long_desc
+
+ gnome-mime-data contains the base MIME and Application database for GNOME.
+ It is meant to be accessed through the MIME functions in GnomeVFS.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ gnome-mime-data
+ pkgver
+ gnome-mime-data-2.18.0_1
+ run_depends
+
+ shared-mime-info>=0
+
+ short_desc
+ Base MIME and Application database for GNOME
+ version
+ 2.18.0_1
+
+ gnome-online-accounts-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 17:49 CET
+ filename
+ gnome-online-accounts-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ f72a8d095739fb79424c4f80ec45f805532bd1b6d4af1f680ac9823929daff80
+ filename-size
+ 27632
+ homepage
+ http://www.gnome.org
+ installed_size
+ 577821
+ license
+ GPL-2
+ long_desc
+
+ gnome-online-accounts provides interfaces so applications and
+ libraries in GNOME can access the user's online accounts.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-online-accounts-devel
+ pkgver
+ gnome-online-accounts-devel-3.6.2_1
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=3.6.0_2
+ gnome-online-accounts-3.6.2_1
+
+ short_desc
+ gnome-online-accounts -- development files
+ version
+ 3.6.2_1
+
+ gnome-panel-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 14:21 CET
+ filename
+ gnome-panel-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ a414d8bc496e7049de01c8f14c5f2664abbbbf894698454eec2f28408963baa7
+ filename-size
+ 29668
+ homepage
+ http://www.gnome.org
+ installed_size
+ 270778
+ license
+ GPL-2
+ long_desc
+
+ This packages the GNOME panel.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-panel-devel
+ pkgver
+ gnome-panel-devel-3.6.2_1
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=0
+ gnome-panel>=3.6.2
+
+ short_desc
+ gnome-panel - development files
+ version
+ 3.6.2_1
+
+ gnome-settings-daemon-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-16 15:46 CET
+ filename
+ gnome-settings-daemon-devel-3.6.4_1.noarch.xbps
+ filename-sha256
+ 61dd8485bbc5d9e909165e7f74fbf85935f0c082f709daa5a29266a8b13e2ba7
+ filename-size
+ 3152
+ homepage
+ http://www.gnome.org
+ installed_size
+ 8061
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ gnome-settings-daemon-devel
+ pkgver
+ gnome-settings-daemon-devel-3.6.4_1
+ run_depends
+
+ glib-devel>=0
+
+ short_desc
+ GNOME settings daemon - development files
+ source-revisions
+ gnome-settings-daemon/gnome-settings-daemon-devel.template: 6140767b943e22f7cc211fdb3db6d7b0a51eb56c
+gnome-settings-daemon/patches/0001-power-and-media-keys-Use-logind-for-suspending-and-r.patch: 6140767b943e22f7cc211fdb3db6d7b0a51eb56c
+gnome-settings-daemon/template: 6140767b943e22f7cc211fdb3db6d7b0a51eb56c
+ version
+ 3.6.4_1
+
+ gnome-shell-extension-weather
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-28 09:34 CET
+ filename
+ gnome-shell-extension-weather-20130128_1.noarch.xbps
+ filename-sha256
+ 4ca0f0e83bfd72dd57607b2b81a64ddbb493a3f8c1d979f094556b1d3c96e6e6
+ filename-size
+ 37296
+ homepage
+ https://github.com/Neroth/gnome-shell-extension-weather
+ installed_size
+ 173869
+ license
+ GPL-3
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ gnome-shell-extension-weather
+ pkgver
+ gnome-shell-extension-weather-20130128_1
+ run_depends
+
+ gnome-shell>=3.6<3.8
+
+ short_desc
+ GNOME Shell extension for displaying weather notifications
+ source-revisions
+ gnome-shell-extension-weather/template: 84710dfd390bd38106b411b5a02e7dfeec8859ff
+ version
+ 20130128_1
+
+ gnome-tweak-tool
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-16 12:33 CEST
+ filename
+ gnome-tweak-tool-3.6.1_1.noarch.xbps
+ filename-sha256
+ 06ca56c179830bc520d61ca5db29b186a7fdc8d24f44c939677fa195b9debb6a
+ filename-size
+ 84640
+ homepage
+ http://live.gnome.org/GnomeTweakTool
+ installed_size
+ 301244
+ license
+ GPL-2
+ long_desc
+
+ The GNOME tweak tool includes an utility to customize advanced options that
+ are hidden by default in GNOME3.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-tweak-tool
+ pkgver
+ gnome-tweak-tool-3.6.1_1
+ run_depends
+
+ pygobject>=0
+ desktop-file-utils>=0
+ GConf>=0
+ gsettings-desktop-schemas>=3.6.0
+
+ short_desc
+ GNOME3 tool to customize advanced options
+ version
+ 3.6.1_1
+
+ gnome-user-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 23:01 CET
+ filename
+ gnome-user-docs-3.6.2_1.noarch.xbps
+ filename-sha256
+ ccb58f0334f25bb3915751d4d244b9aec6b580103a90d7bdff1535e05acebcff
+ filename-size
+ 6857420
+ homepage
+ http://www.gnome.org
+ installed_size
+ 26170576
+ license
+ GPL-2
+ long_desc
+
+ This package provides several GNOME 3 documentation: the GNOME Access Guide,
+ the Introduction to GNOME document, the System Administration Guide and the
+ Users Guide.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gnome-user-docs
+ pkgver
+ gnome-user-docs-3.6.2_1
+ run_depends
+
+ yelp>=0
+
+ short_desc
+ User documentation for GNOME
+ version
+ 3.6.2_1
+
+ gnome-video-effects
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ gnome-video-effects-0.4.0_1.noarch.xbps
+ filename-sha256
+ c59621fbe25fede45d0fc6327371c78e920a40a9caab6a61366b571702fd5f2c
+ filename-size
+ 47772
+ homepage
+ http://www.gnome.org
+ installed_size
+ 245760
+ license
+ GPL-2
+ long_desc
+
+ This package contains a set of GStreamer video effects for the GNOME desktop.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ gnome-video-effects
+ pkgver
+ gnome-video-effects-0.4.0_1
+ short_desc
+ A collection of GStreamer effects for GNOME
+ version
+ 0.4.0_1
+
+ gnutls-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 16:22 CET
+ filename
+ gnutls-devel-3.1.8_1.noarch.xbps
+ filename-sha256
+ 527b3973ac25744c80a690652ba2fb7f48b10999da53a5e8f5565e576fb8ebb5
+ filename-size
+ 1207884
+ homepage
+ http://www.gnu.org/software/gnutls/
+ installed_size
+ 1445634
+ license
+ GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ gnutls-devel
+ pkgver
+ gnutls-devel-3.1.8_1
+ run_depends
+
+ zlib-devel>=0
+ libtasn1-devel>=0
+ p11-kit-devel>=0
+ nettle-devel>=0
+ libgcrypt-devel>=0
+ gnutls>=3.1.8
+
+ short_desc
+ GNU Transport Layer Security library -- development files
+ source-revisions
+ gnutls/gnutls-devel.template: e8526d6698c9c2d002c8492ebefce637aa4784bb
+gnutls/gnutls-tools.template: e8526d6698c9c2d002c8492ebefce637aa4784bb
+gnutls/template: 9ba0613a8986c4470ccf7f3b8be4dbceb0b673ce
+ version
+ 3.1.8_1
+
+ granite-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 10:44 CET
+ filename
+ granite-devel-0.1.1_2.noarch.xbps
+ filename-sha256
+ a1fb37fa833fbb242dec718154544dd470275cf8da1cc4d6ed39186110ed7102
+ filename-size
+ 14176
+ homepage
+ https://launchpad.net/granite
+ installed_size
+ 111444
+ license
+ LGPL-3
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (2514d30dcc15763a15b04cab30f3b97017b30859)
+ pkgname
+ granite-devel
+ pkgver
+ granite-devel-0.1.1_2
+ run_depends
+
+ granite>=0.1.1
+
+ short_desc
+ GTK+3 extension providing commonly-used widgets -- development files
+ source-revisions
+ granite/granite-devel.template: 41c6f42d53dff718548519fe689eb2ca5e0d5554
+granite/template: 41c6f42d53dff718548519fe689eb2ca5e0d5554
+ version
+ 0.1.1_2
+
+ graphviz-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 15:03 CET
+ filename
+ graphviz-devel-2.28.0_7.noarch.xbps
+ filename-sha256
+ 577bee31e2636b41999a9b7fa75a0eaad737c76c49d2dba6f6dc21a8fe55021a
+ filename-size
+ 62360
+ homepage
+ http://www.graphviz.org
+ installed_size
+ 178451
+ license
+ EPL
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ graphviz-devel
+ pkgver
+ graphviz-devel-2.28.0_7
+ run_depends
+
+ graphviz-libs>=2.28.0
+
+ short_desc
+ Graph Visualization Software -- development files
+ source-revisions
+ graphviz/INSTALL: 45b8a06f71b8c13a52375cd3e84d470785e14ff9
+graphviz/REMOVE: 45b8a06f71b8c13a52375cd3e84d470785e14ff9
+graphviz/files/LICENSE: d7b22baf72c9119f603eef06a1314ce7c9bef17c
+graphviz/graphviz-devel.template: cee76eee4d159699ab8deb77472c9627de518e6b
+graphviz/graphviz-libs.template: cee76eee4d159699ab8deb77472c9627de518e6b
+graphviz/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 2.28.0_7
+
+ grep
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:08 CET
+ conflicts
+
+ chroot-grep>=0
+
+ filename
+ grep-2.14_3.armv6l.xbps
+ filename-sha256
+ b750a33b184d8776a345a5371ba57800e49f99b8d49aa12517aa8522b074eac9
+ filename-size
+ 210160
+ homepage
+ http://www.gnu.org/software/grep/
+ installed_size
+ 979913
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ grep
+ pkgver
+ grep-2.14_3
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+ libpcre>=8.30_1
+
+ short_desc
+ The GNU grep utility
+ source-revisions
+ grep/template: be75287f1bb3d42832b9aee2ca716eb5e1aece4a
+ version
+ 2.14_3
+
+ grep-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:08 CET
+ filename
+ grep-dbg-2.14_3.armv6l.xbps
+ filename-sha256
+ c72674ca8ec214731f90b8d2d7adb96ad75c2fde94e930f7d1671fd1cec4b67d
+ filename-size
+ 612996
+ homepage
+ http://www.gnu.org/software/grep/
+ installed_size
+ 696160
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ grep-dbg
+ pkgver
+ grep-dbg-2.14_3
+ short_desc
+ The GNU grep utility (debug files)
+ source-revisions
+ grep/template: be75287f1bb3d42832b9aee2ca716eb5e1aece4a
+ version
+ 2.14_3
+
+ grilo-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 20:43 CET
+ filename
+ grilo-devel-0.2.4_1.noarch.xbps
+ filename-sha256
+ 31e1edd3b2e19d14718cbef36601fb6fd2fd59429d3de51d1093995aef0973fe
+ filename-size
+ 46856
+ homepage
+ http://live.gnome.org/Grilo
+ installed_size
+ 525877
+ license
+ LGPL-2.1
+ long_desc
+
+ More precisely, Grilo provides:
+
+ * A single, high-level API that abstracts the differences among various
+ media content providers, allowing application developers to integrate
+ content from various services and sources easily.
+ * A collection of plugins for accessing content from various media providers.
+ Developers can share efforts and code by writing plugins for the framework
+ that are application agnostic.
+ * A flexible API that allows plugin developers to write plugins of various kinds.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ grilo-devel
+ pkgver
+ grilo-devel-0.2.4_1
+ run_depends
+
+ gtk+3-devel>=0
+ libxml2-devel>=0
+ libsoup-devel>=0
+ grilo-0.2.4_1
+
+ short_desc
+ Framework focused on making media discovery and browsing easy - development files
+ source-revisions
+ grilo/grilo-devel.template: ca6d7551f090261ac56474dcbebc2b21b9fc0637
+grilo/template: 23f9a80330927410ad4f1d0e2b49677ded7f01ea
+ version
+ 0.2.4_1
+
+ groff
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:30 CET
+ filename
+ groff-1.22.2_1.armv6l.xbps
+ filename-sha256
+ a57680de127108b620a40f80de19e7235e238c3ec2ff30cc4c2643e1422e9b65
+ filename-size
+ 1588428
+ homepage
+ http://www.gnu.org/software/groff/groff.html
+ installed_size
+ 6957142
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ groff
+ pkgver
+ groff-1.22.2_1
+ run_depends
+
+ libstdc++>=4.4.0_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The GNU troff text-formatting system
+ source-revisions
+ groff/files/site.tmac: e17a19259ab8f3e19f1755db4ef3d82b487d316e
+groff/groff-doc.template: 1dc864c9e975c49e56af82c7d3d50228b77908f5
+groff/template: b038599412c480ce1768de72760dd866cd16cc41
+ version
+ 1.22.2_1
+
+ groff-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:30 CET
+ filename
+ groff-dbg-1.22.2_1.armv6l.xbps
+ filename-sha256
+ 6868c11de40f9d15b36a839427897d9e627ee9c3ef2cdd27f8ff996877dbf204
+ filename-size
+ 2396652
+ homepage
+ http://www.gnu.org/software/groff/groff.html
+ installed_size
+ 3062976
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ groff-dbg
+ pkgver
+ groff-dbg-1.22.2_1
+ short_desc
+ The GNU troff text-formatting system (debug files)
+ source-revisions
+ groff/files/site.tmac: e17a19259ab8f3e19f1755db4ef3d82b487d316e
+groff/groff-doc.template: 1dc864c9e975c49e56af82c7d3d50228b77908f5
+groff/template: b038599412c480ce1768de72760dd866cd16cc41
+ version
+ 1.22.2_1
+
+ groff-doc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:29 CET
+ filename
+ groff-doc-1.22.2_1.noarch.xbps
+ filename-sha256
+ ca8e5650406409ba2c6a0efd5e286d94522465456f3c075f87b346a30e55e9b3
+ filename-size
+ 742688
+ homepage
+ http://www.gnu.org/software/groff/groff.html
+ installed_size
+ 10797992
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ groff-doc
+ pkgver
+ groff-doc-1.22.2_1
+ short_desc
+ The GNU troff text-formatting system - documentation
+ source-revisions
+ groff/files/site.tmac: e17a19259ab8f3e19f1755db4ef3d82b487d316e
+groff/groff-doc.template: 1dc864c9e975c49e56af82c7d3d50228b77908f5
+groff/template: b038599412c480ce1768de72760dd866cd16cc41
+ version
+ 1.22.2_1
+
+ grub-x86_64-efi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-16 19:15 CET
+ filename
+ grub-x86_64-efi-2.00_9.noarch.xbps
+ filename-sha256
+ 9e4349eb7d276bb703be27b568e60e816ac143a6da3fec041f272bca2908c479
+ filename-size
+ 626056
+ homepage
+ http://www.gnu.org/software/grub/
+ installed_size
+ 2417654
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ grub-x86_64-efi
+ pkgver
+ grub-x86_64-efi-2.00_9
+ run_depends
+
+ grub>=2.00
+ dosfstools>=0
+ efibootmgr>=0
+
+ short_desc
+ GRand Unified Bootloader 2 -- x86_64 EFI support
+ source-revisions
+ grub/files/grub.default: bf5824ce2ec61165dff398c01f1ff9715158e38c
+grub/files/kernel.d/grub.post: abdacff0b09e37c43e295852b15195b448a18d3d
+grub/grub-x86_64-efi.template: 34a5d6a4e759e9e278355ff0e3bd3b2d5a8fa6d0
+grub/patches/gettext_quiet.patch: 34a5d6a4e759e9e278355ff0e3bd3b2d5a8fa6d0
+grub/patches/glibc-2.16.patch: 778b74137675aea9f67c1285905ef287409207db
+grub/template: 34a5d6a4e759e9e278355ff0e3bd3b2d5a8fa6d0
+ version
+ 2.00_9
+
+ gsettings-desktop-schemas-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 14:11 CET
+ filename
+ gsettings-desktop-schemas-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ 035c196d6f492560097d87c02f16d87a0fabbe6337d63aa46d9bb583e3872958
+ filename-size
+ 3328
+ homepage
+ http://www.gnome.org
+ installed_size
+ 12570
+ license
+ GPL-2
+ long_desc
+
+ gsettings-desktop-schemas contains a collection of GSettings schemas for
+ settings shared by various components of a desktop.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gsettings-desktop-schemas-devel
+ pkgver
+ gsettings-desktop-schemas-devel-3.6.1_1
+ run_depends
+
+ gsettings-desktop-schemas>=3.6.1
+
+ short_desc
+ Collection of GSettings schemas -- development files
+ version
+ 3.6.1_1
+
+ gsfonts
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Friday 01 July, 2011, 20:20:26 UTC
+ filename
+ gsfonts-8.11_1.noarch.xbps
+ filename-sha256
+ c20674a280c9070bce77a0cdb57ab430107059818526d1a314e17cb52f334eb8
+ filename-size
+ 3510156
+ installed_size
+ 4964352
+ long_desc
+
+ This packages includes the Ghostscript standard Type1 fonts.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ gsfonts
+ pkgver
+ gsfonts-8.11_1
+ run_depends
+
+ font-util>=0
+
+ short_desc
+ Ghostscript standard Type1 fonts
+ version
+ 8.11_1
+
+ gssdp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-20 15:29 CEST
+ filename
+ gssdp-devel-0.12.2_1.noarch.xbps
+ filename-sha256
+ 0ffd2a7aea93c43052485eb9b8b52de158b7c4b159069ca9a7b0df03dce7aafe
+ filename-size
+ 18968
+ homepage
+ http://gupnp.org
+ installed_size
+ 262144
+ license
+ LGPL-2.1
+ long_desc
+
+ A GObject-based API for doing SSDP (Simple Service Discovery Protocol)
+ transparently.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ gssdp-devel
+ pkgver
+ gssdp-devel-0.12.2_1
+ run_depends
+
+ libsoup-devel>=0
+ gssdp>=0.12.2
+
+ short_desc
+ GObject-based library for SSDP (development files)
+ version
+ 0.12.2_1
+
+ gst-plugins-bad-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 02 July, 2012, 22:28:15 UTC
+ filename
+ gst-plugins-bad-devel-0.10.23_3.noarch.xbps
+ filename-sha256
+ 4d4364da67d3e9d2f87bbe4e551357ec7e21d2dba0c57bbd9c5ab75a720bda46
+ filename-size
+ 30888
+ homepage
+ http://gstreamer.freedesktop.org
+ installed_size
+ 290816
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ GStreamer is a streaming media framework, badd on graphs of filters which
+ operate on media data. Applications using this library can do anything
+ real-time sound processing to playing videos, and just about anything
+ else media-related. Its plugin-badd architecture means that new data
+ types or processing capabilities can be added simply by installing new
+ plug-ins.
+
+ GStreamer Bad Plug-ins is a set of plug-ins that are not up to par
+ compared to the rest. They might be close to being good quality, but
+ they're missing something - be it a good code review, some documentation,
+ a set of tests, a real live maintainer, or some actual wide use.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ gst-plugins-bad-devel
+ pkgver
+ gst-plugins-bad-devel-0.10.23_3
+ run_depends
+
+ gst-plugins-base-devel>=0
+ gst-plugins-bad>=0.10.23
+
+ short_desc
+ gst-plugins-bad development files
+ version
+ 0.10.23_3
+
+ gst-plugins-bad1-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 20:38 CET
+ filename
+ gst-plugins-bad1-devel-1.0.5_1.noarch.xbps
+ filename-sha256
+ 7614e769455311fa2a698d1ba9ccec3219a7dcbf2964ee0bfde817daa227c17c
+ filename-size
+ 56848
+ homepage
+ http://gstreamer.freedesktop.org
+ installed_size
+ 628632
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ gst-plugins-bad1-devel
+ pkgver
+ gst-plugins-bad1-devel-1.0.5_1
+ run_depends
+
+ gst-plugins-base1-devel>=0
+ gst-plugins-bad1-1.0.5_1
+
+ short_desc
+ GStreamer plugins from the bad set (v1.x) -- development files
+ source-revisions
+ gst-plugins-bad1/gst-plugins-bad1-devel.template: 53b1836dca597bbfe287c8d613754152212aa0d5
+gst-plugins-bad1/template: 53b1836dca597bbfe287c8d613754152212aa0d5
+ version
+ 1.0.5_1
+
+ gst-plugins-base-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-23 12:57 CET
+ filename
+ gst-plugins-base-devel-0.10.36_2.noarch.xbps
+ filename-sha256
+ 33fb64665aa7354fbeedae31334e772f805e17842c6a2ce43ed14bbbe2e0a683
+ filename-size
+ 428652
+ homepage
+ http://gstreamer.freedesktop.org/
+ installed_size
+ 6941366
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ GStreamer is a streaming media framework, based on graphs of filters which
+ operate on media data. Applications using this library can do anything
+ real-time sound processing to playing videos, and just about anything
+ else media-related. Its plugin-based architecture means that new data
+ types or processing capabilities can be added simply by installing new
+ plug-ins.
+
+ This package contains a set of well-maintained base plug-ins.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ gst-plugins-base-devel
+ pkgver
+ gst-plugins-base-devel-0.10.36_2
+ run_depends
+
+ libgudev-devel>=0
+ liboil-devel>=0
+ alsa-lib-devel>=0
+ libXv-devel>=0
+ libXext-devel>=0
+ libvisual-devel>=0
+ cdparanoia-devel>=0
+ libtheora-devel>=0
+ gstreamer-devel>=0
+ gst-plugins-base-0.10.36_2
+
+ short_desc
+ gst-plugins-base development files
+ source-revisions
+ gst-plugins-base/gst-plugins-base-devel.template: 883b8a6a8ee186c11202ffc75da9132be5a27ccd
+gst-plugins-base/template: 883b8a6a8ee186c11202ffc75da9132be5a27ccd
+ version
+ 0.10.36_2
+
+ gst-plugins-base1-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 20:31 CET
+ filename
+ gst-plugins-base1-devel-1.0.5_1.noarch.xbps
+ filename-sha256
+ 5023ffd0a06c404130df82b9fd86e160792a1b0d02592b44e83bbcff98742c32
+ filename-size
+ 416988
+ homepage
+ http://gstreamer.freedesktop.org/
+ installed_size
+ 6661830
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ gst-plugins-base1-devel
+ pkgver
+ gst-plugins-base1-devel-1.0.5_1
+ run_depends
+
+ gstreamer1-devel>=0
+ gst-plugins-base1-1.0.5_1
+
+ short_desc
+ gst-plugins-base1 development files
+ source-revisions
+ gst-plugins-base1/gst-plugins-base1-devel.template: c82d4bac86a3e99504e9cb83726fc1abe84464e3
+gst-plugins-base1/template: f89bc8a6b6dc3fa124837ab8aa33cbca1333b95c
+ version
+ 1.0.5_1
+
+ gst-python-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 10:20 CEST
+ filename
+ gst-python-devel-0.10.22_2.noarch.xbps
+ filename-sha256
+ fdc0c73ff11b1733eaa42f0a1730dcdd3142444d6d0c95d1924dfc2ac04641b5
+ filename-size
+ 37324
+ homepage
+ http://gstreamer.freedesktop.org
+ installed_size
+ 228410
+ license
+ LGPL-2.1
+ long_desc
+
+ This package provides the Python language bindings for the GStreamer 0.10
+ multimedia framework.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ gst-python-devel
+ pkgver
+ gst-python-devel-0.10.22_2
+ run_depends
+
+ gst-python-0.10.22_2
+
+ short_desc
+ gst-python - development files
+ version
+ 0.10.22_2
+
+ gstreamer-vaapi-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-09 19:52 CEST
+ filename
+ gstreamer-vaapi-devel-0.4.0_1.noarch.xbps
+ filename-sha256
+ b862495476339d6fd14040b495bf9efa8fb1eb316f18e1740778204a0909d039
+ filename-size
+ 16324
+ homepage
+ http://www.splitted-desktop.com/static/libva/gstreamer-vaapi/
+ installed_size
+ 130864
+ license
+ GPL-3
+ long_desc
+
+ gstreamer-vaapi is a collection of GStreamer plugins and helper libraries that
+ allow hardware accelerated video decoding through VA-API.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ gstreamer-vaapi-devel
+ pkgver
+ gstreamer-vaapi-devel-0.4.0_1
+ run_depends
+
+ gstreamer-vaapi-0.4.0_1
+
+ short_desc
+ VA-API plugins for GStreamer -- development files
+ version
+ 0.4.0_1
+
+ gstreamer1-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 20:27 CET
+ filename
+ gstreamer1-devel-1.0.5_1.noarch.xbps
+ filename-sha256
+ de98783cfcbaa867606f1c83452e5955bf5689dbb7f07427136e257ac0433821
+ filename-size
+ 637868
+ homepage
+ http://gstreamer.freedesktop.org/
+ installed_size
+ 9765477
+ license
+ LGPL-2.1
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ gstreamer1-devel
+ pkgver
+ gstreamer1-devel-1.0.5_1
+ run_depends
+
+ libxml2-devel>=0
+ glib-devel>=0
+ gstreamer1-1.0.5_1
+
+ short_desc
+ gstreamer1 development files
+ source-revisions
+ gstreamer1/gstreamer1-devel.template: 244245671612cdf123f2e96940014c6a7012555f
+gstreamer1/template: 95a9ec99d252b1cb74465ba3a21a13638b5b9efa
+ version
+ 1.0.5_1
+
+ gtk+-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:26 CET
+ filename
+ gtk+-devel-2.24.16_1.noarch.xbps
+ filename-sha256
+ fdb7e75d893dc2e02b7d11265017eccb8e867a95be387809aacceb3695de13bc
+ filename-size
+ 2369328
+ homepage
+ http://www.gtk.org
+ installed_size
+ 29155319
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ gtk+-devel
+ pkgver
+ gtk+-devel-2.24.16_1
+ run_depends
+
+ glib-devel>=0
+ atk-devel>=0
+ cairo-devel>=0
+ gdk-pixbuf-devel>=0
+ pango-devel>=0
+ gtk+>=2.24.16
+
+ short_desc
+ The GTK+ toolkit (v2) - development files
+ source-revisions
+ gtk+/gtk+-demo.template: 648b0547c7244bdc689bc0f9f7fae7fbde7923e8
+gtk+/gtk+-devel.template: 648b0547c7244bdc689bc0f9f7fae7fbde7923e8
+gtk+/gtk-update-icon-cache.template: 648b0547c7244bdc689bc0f9f7fae7fbde7923e8
+gtk+/template: d91bd80fd49fe77585ef764511ea8ccca30dccc1
+ version
+ 2.24.16_1
+
+ gtk+3-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 22:25 CET
+ filename
+ gtk+3-devel-3.6.4_1.noarch.xbps
+ filename-sha256
+ 14a567128835d1d4e9b8e7e2aae210dbaf3cf3d204142fe017da6db5752ede2d
+ filename-size
+ 2668900
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 27510516
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ gtk+3-devel
+ pkgver
+ gtk+3-devel-3.6.4_1
+ run_depends
+
+ glib-devel>=2.34.0
+ atk-devel>=2.6.0
+ cairo-devel>=0
+ gdk-pixbuf-devel>=0
+ pango-devel>=0
+ at-spi2-atk-devel>=2.6.0
+ libXcomposite-devel>=0
+ libXcursor-devel>=0
+ libXrandr-devel>=0
+ libXi-devel>=0
+ libXinerama-devel>=0
+ gtk+3-3.6.4_1
+
+ short_desc
+ The GTK+ toolkit (v3) - development files
+ source-revisions
+ gtk+3/gtk+3-demo.template: 27943e5ef352b22de527bc4a300ee2d2277dbe98
+gtk+3/gtk+3-devel.template: 27943e5ef352b22de527bc4a300ee2d2277dbe98
+gtk+3/template: 78e5fc1c7d9deb213f93e53df794b5b7f4cc075c
+ version
+ 3.6.4_1
+
+ gtk-doc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ gtk-doc-1.18_1.noarch.xbps
+ filename-sha256
+ 0bac9f7a4d60a1b588d08725098576e06803022ddcdddb62e4b29128ce9fb718
+ filename-size
+ 212668
+ homepage
+ http://www.gtk.org/gtk-doc/
+ installed_size
+ 1880064
+ license
+ GPL-2, FDL-
+ long_desc
+
+ These tools extract documentation embedded in GNOME source code, and produce
+ pretty output via DocBook SGML.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ gtk-doc
+ pkgver
+ gtk-doc-1.18_1
+ run_depends
+
+ docbook-xsl>=0
+ gnome-doc-utils>=0
+ perl>=0
+
+ short_desc
+ Documentation tool for public library API
+ version
+ 1.18_1
+
+ gtk-vnc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 15:29 CET
+ filename
+ gtk-vnc-devel-0.4.4_3.noarch.xbps
+ filename-sha256
+ 46e5d66d073a3e86c1960a890fd0c1a32a23b8b4b14715dc31250b8967cc3897
+ filename-size
+ 15376
+ homepage
+ http://www.gnome.org
+ installed_size
+ 157748
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ gtk-vnc-devel
+ pkgver
+ gtk-vnc-devel-0.4.4_3
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=0
+ gtk-vnc>=0.4.4
+
+ short_desc
+ VNC viewer widget for GTK - development files
+ source-revisions
+ gtk-vnc/gtk-vnc-devel.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/gtk2-vnc-devel.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/gtk2-vnc-python.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/gtk2-vnc.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/template: acc5eacb2b83ddaa2517bee0846bc0daa896c3fd
+ version
+ 0.4.4_3
+
+ gtk2-vnc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 15:29 CET
+ filename
+ gtk2-vnc-devel-0.4.4_3.noarch.xbps
+ filename-sha256
+ 65e6ab956b0949a139900e88c67d0f2b5db7a347cb18ea28828976097d267ab6
+ filename-size
+ 6408
+ homepage
+ http://www.gnome.org
+ installed_size
+ 44259
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ gtk2-vnc-devel
+ pkgver
+ gtk2-vnc-devel-0.4.4_3
+ run_depends
+
+ gtk+-devel>=0
+ gtk-vnc-devel>=0.4.4
+
+ short_desc
+ VNC viewer widget for GTK - GTK+2 development files
+ source-revisions
+ gtk-vnc/gtk-vnc-devel.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/gtk2-vnc-devel.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/gtk2-vnc-python.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/gtk2-vnc.template: cebb0daa24aa6aa58b634dc1c682a4dc85f0b4cf
+gtk-vnc/template: acc5eacb2b83ddaa2517bee0846bc0daa896c3fd
+ version
+ 0.4.4_3
+
+ gtkaml-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-09 17:07 CET
+ filename
+ gtkaml-devel-0.5.94_1.noarch.xbps
+ filename-sha256
+ a2b7bb24098a45e10faa32167113c0bedef2d2311051e16cb6c938b15d87bf69
+ filename-size
+ 6252
+ homepage
+ http://www.gtkaml.org
+ installed_size
+ 48622
+ license
+ LGPL-3
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ gtkaml-devel
+ pkgver
+ gtkaml-devel-0.5.94_1
+ run_depends
+
+ vala-devel>=0.18
+ libgtkaml>=0.5.94
+
+ short_desc
+ An Application Markup Language for GTK+Vala -- development files
+ source-revisions
+ gtkaml/gtkaml-devel.template: e93ff560475a0ab35344e825a42f232397bd5453
+gtkaml/libgtkaml.template: e93ff560475a0ab35344e825a42f232397bd5453
+gtkaml/template: e93ff560475a0ab35344e825a42f232397bd5453
+ version
+ 0.5.94_1
+
+ gtkhtml-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-14 08:44 CET
+ filename
+ gtkhtml-devel-4.6.2_1.noarch.xbps
+ filename-sha256
+ 1bc1d986dbe267045c34031df28a47893858e53d976447c0d5288ba91d5ae317
+ filename-size
+ 14876
+ homepage
+ http://www.gnome.org
+ installed_size
+ 92586
+ license
+ GPL-2
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-34 (91e069c9f461b3f5882c648c567b65975969475e)
+ pkgname
+ gtkhtml-devel
+ pkgver
+ gtkhtml-devel-4.6.2_1
+ run_depends
+
+ libgtkhtml-4.6.2_1
+
+ short_desc
+ Layout engine written in C using the GTK+ widget toolkit -- development files
+ source-revisions
+ gtkhtml/gtkhtml-devel.template: ca519f8ec2ee867237e46bea9eee16a4ee0afea3
+gtkhtml/libgtkhtml.template: ca519f8ec2ee867237e46bea9eee16a4ee0afea3
+gtkhtml/template: ca519f8ec2ee867237e46bea9eee16a4ee0afea3
+ version
+ 4.6.2_1
+
+ gtkmm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-22 14:15 CEST
+ filename
+ gtkmm-devel-3.6.0_1.noarch.xbps
+ filename-sha256
+ 8a8494897568e1169a2315a51c1cff443c83dcf18a910dfd997c52cfaca2135c
+ filename-size
+ 417284
+ homepage
+ http://gtkmm.sourceforge.net/
+ installed_size
+ 3821741
+ license
+ LGPL-2.1
+ long_desc
+
+ gtkmm (previously known as Gtk--) is the official C++ interface for the
+ popular GUI library GTK+. Highlights include typesafe callbacks, widgets
+ extensible via inheritance and a comprehensive set of widget classes that
+ can be freely combined to quickly create complex user interfaces. Here's
+ an overview, with documentation and status. gtkmm is free software
+ distributed under the GNU Library General Public License (LGPL).
+
+ Aside from the C++ interface to Gtk 3.x, this package also provides
+ bindings for the ATK library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gtkmm-devel
+ pkgver
+ gtkmm-devel-3.6.0_1
+ run_depends
+
+ gtk+3-devel>=0
+ atkmm-devel>=0
+ pangomm-devel>=0
+ cairomm-devel>=0
+ gtkmm-3.6.0_1
+
+ short_desc
+ gtkmm (development files)
+ version
+ 3.6.0_1
+
+ gtkmm2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 15:00 CEST
+ filename
+ gtkmm2-devel-2.24.0_4.noarch.xbps
+ filename-sha256
+ 6628d0de3ab2aae26a6bac7fd4c3583831bba6974d5af6d8952296a2171292dd
+ filename-size
+ 393984
+ installed_size
+ 3555290
+ long_desc
+
+ gtkmm (previously known as Gtk--) is the official C++ interface for the
+ popular GUI library GTK+. Highlights include typesafe callbacks, widgets
+ extensible via inheritance and a comprehensive set of widget classes that
+ can be freely combined to quickly create complex user interfaces. Here's
+ an overview, with documentation and status. gtkmm is free software
+ distributed under the GNU Library General Public License (LGPL).
+
+ Aside from the C++ interface to Gtk 2.x, this package also provides
+ bindings for the ATK library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ gtkmm2-devel
+ pkgver
+ gtkmm2-devel-2.24.0_4
+ run_depends
+
+ glibmm-devel>=0
+ atkmm-devel>=0
+ pangomm-devel>=0
+ gtk+-devel>=0
+ gtkmm2-2.24.0_4
+
+ short_desc
+ gtkmm2 (development files)
+ version
+ 2.24.0_4
+
+ gtksourceview-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-27 10:18 CET
+ filename
+ gtksourceview-devel-3.6.3_1.noarch.xbps
+ filename-sha256
+ 607a9f4c57e500d23cacacfc57cdd3cff550dc6b05a72d05305a541a0394fa03
+ filename-size
+ 100784
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1556217
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ gtksourceview-devel
+ pkgver
+ gtksourceview-devel-3.6.3_1
+ run_depends
+
+ gtk+3-devel>=0
+ libxml2-devel>=0
+ gtksourceview-3.6.3_1
+
+ short_desc
+ gtksourceview - development files
+ source-revisions
+ gtksourceview/gtksourceview-devel.template: 5f6a1abeecc2e54d4f4cad2ae81872cd106bc62f
+gtksourceview/template: a6263f28c7573bd14b82b894131de3575cee1fd7
+ version
+ 3.6.3_1
+
+ gtksourceview2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 16:59 CEST
+ filename
+ gtksourceview2-devel-2.10.5_3.noarch.xbps
+ filename-sha256
+ 225ee6e935de462daef33582fdbcf2f113375935dda5266c4eaac90d678b3f8a
+ filename-size
+ 75768
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1066916
+ license
+ GPL-2
+ long_desc
+
+ GtkSourceView is a text widget that extends the standard gtk+ 2.x text
+ widget GtkTextView. It improves GtkTextView by implementing syntax
+ highlighting and other features typical of a source editor.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ gtksourceview2-devel
+ pkgver
+ gtksourceview2-devel-2.10.5_3
+ run_depends
+
+ gtk+-devel>=0
+ libxml2-devel>=0
+ gtksourceview2-2.10.5_3
+
+ short_desc
+ gtksourceview2 - development files
+ version
+ 2.10.5_3
+
+ gtkspell-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-09 17:27 CET
+ filename
+ gtkspell-devel-2.0.16_1.noarch.xbps
+ filename-sha256
+ c7486f918744624ebe47a38f7f2e4b7045bf7177ef6a0f0f3a8ddce644002bb9
+ filename-size
+ 9276
+ homepage
+ http://gtkspell.sourceforge.net/
+ installed_size
+ 36737
+ license
+ LGPL-2.1
+ long_desc
+
+ GtkSpell provides word-processor-style highlighting and replacement of
+ misspelled words in a GtkTextView widget. Right-clicking a misspelled
+ word pops up a menu of suggested replacements.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (bf839c8378eb38505d1799d7bde817b22e78db8b)
+ pkgname
+ gtkspell-devel
+ pkgver
+ gtkspell-devel-2.0.16_1
+ run_depends
+
+ gtk+-devel>=0
+ gtkspell>=2.0.16
+
+ short_desc
+ Provides word-processor-style highlighting -- development files
+ source-revisions
+ gtkspell/gtkspell-devel.template: a0f0801de4cff05ddd46442d92215bac00aab008
+gtkspell/template: cde5b3d58c40e122f7d60d0d47836cb236b64f12
+ version
+ 2.0.16_1
+
+ gucharmap-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 09:22 CET
+ filename
+ gucharmap-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ f25ba6f2df98f015d6485f4d769630600ba7fb118e7a51c4b958d081e15c4a04
+ filename-size
+ 12444
+ homepage
+ http://www.gnome.org
+ installed_size
+ 127388
+ license
+ GPL-2
+ long_desc
+
+ gucharmap is a Unicode/ISO10646 character map and font viewer for the
+ GNOME platform. It supports anti-aliased, scalable fonts and more.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ gucharmap-devel
+ pkgver
+ gucharmap-devel-3.6.1_1
+ run_depends
+
+ gtk+3-devel>=0
+ gucharmap-3.6.1_1
+
+ short_desc
+ gucharmap - development files
+ version
+ 3.6.1_1
+
+ gupnp-av-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-20 15:24 CEST
+ filename
+ gupnp-av-devel-0.10.3_1.noarch.xbps
+ filename-sha256
+ 38d107f8b57421426d06cc42f29bc3d7d41c396b79df87fd269c2ae6684f245d
+ filename-size
+ 44960
+ homepage
+ http://gupnp.org/
+ installed_size
+ 823296
+ license
+ LGPL-2.1
+ long_desc
+
+ A GObject-based API for doing UPnP transparently.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ gupnp-av-devel
+ pkgver
+ gupnp-av-devel-0.10.3_1
+ run_depends
+
+ gupnp-devel>=0
+ gupnp-av>=0.10.3
+
+ short_desc
+ Library to ease handling and implementation of UPnP A/V profiles - development files
+ version
+ 0.10.3_1
+
+ gupnp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-20 15:19 CEST
+ filename
+ gupnp-devel-0.18.4_1.noarch.xbps
+ filename-sha256
+ e5a60061bf74dfaace871502b3abbdfc94b1a730f95ee5ef39335c0ff930ecb1
+ filename-size
+ 70900
+ homepage
+ http://gupnp.org/
+ installed_size
+ 1060864
+ license
+ LGPL-2.1
+ long_desc
+
+ A GObject-based API for doing UPnP transparently.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ gupnp-devel
+ pkgver
+ gupnp-devel-0.18.4_1
+ run_depends
+
+ python>=0
+ gssdp-devel>=0
+ glib-devel>=0
+ libxml2-devel>=0
+ libuuid-devel>=0
+ gupnp>=0.18.4
+
+ short_desc
+ GObject-based library for UPnP - development files
+ version
+ 0.18.4_1
+
+ gupnp-dlna-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 14:35:15 UTC
+ filename
+ gupnp-dlna-devel-0.6.6_1.noarch.xbps
+ filename-sha256
+ 95ce66e4873f84b5500342b5091133977b831f935d63facdceb319b4cdd88d65
+ filename-size
+ 14656
+ homepage
+ http://gupnp.org/
+ installed_size
+ 151552
+ license
+ LGPL-2.1
+ long_desc
+
+ UPnP DLNA is a small utility library that aims to ease the DLNA-related tasks
+ such as media profile guessing, transcoding to a given profile, etc.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ gupnp-dlna-devel
+ pkgver
+ gupnp-dlna-devel-0.6.6_1
+ run_depends
+
+ gst-plugins-base-devel>=0
+ gupnp-dlna>=0.6.6
+
+ short_desc
+ GUPnP DLNA - development files
+ version
+ 0.6.6_1
+
+ gupnp-igd-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 07:43 CEST
+ filename
+ gupnp-igd-devel-0.2.0_1.noarch.xbps
+ filename-sha256
+ 7907ce0617c09b7549b4b6a5755307435e65c2d02734c54b82b1dba6ae114e94
+ filename-size
+ 11280
+ homepage
+ http://gupnp.org
+ installed_size
+ 94208
+ license
+ LGPL-2.1
+ long_desc
+
+ GUPNP-igd is is a library to handle UPnP IGD port mapping.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ gupnp-igd-devel
+ pkgver
+ gupnp-igd-devel-0.2.0_1
+ run_depends
+
+ gupnp-devel>=0
+ gupnp-igd>=0.2.0
+
+ short_desc
+ Library to handle UPnP IGD port mapping - development files
+ version
+ 0.2.0_1
+
+ gvfs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:31 CET
+ filename
+ gvfs-devel-1.14.2_2.noarch.xbps
+ filename-sha256
+ 3e1feff4baf1de2284713a7310ee5e4f952619e9c8cd379c8f0b4227e7964fd9
+ filename-size
+ 2312
+ homepage
+ http://www.gnome.org
+ installed_size
+ 5779
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ gvfs-devel
+ pkgver
+ gvfs-devel-1.14.2_2
+ short_desc
+ Userspace virtual filesystem - development files
+ source-revisions
+ gvfs/gvfs-devel.template: feaabb5939afe41d4007bbfbc7ea0a52a3645854
+gvfs/template: feaabb5939afe41d4007bbfbc7ea0a52a3645854
+ version
+ 1.14.2_2
+
+ gzip
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:11 CET
+ conflicts
+
+ chroot-gzip>=0
+
+ filename
+ gzip-1.5_2.armv6l.xbps
+ filename-sha256
+ 0c137889645e0bc6121df17fbcd6d56f4ad5723559a28aa072ebfed4f7b05957
+ filename-size
+ 69844
+ homepage
+ http://www.gnu.org/software/gzip/
+ installed_size
+ 132311
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ gzip
+ pkgver
+ gzip-1.5_2
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ GNU compression utility (replacement for compress)
+ source-revisions
+ gzip/template: ab8a0ec010af6f1519aa9ae9ef28c7ce0de3087d
+ version
+ 1.5_2
+
+ gzip-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:11 CET
+ filename
+ gzip-dbg-1.5_2.armv6l.xbps
+ filename-sha256
+ 625c674f5f9e0644feead0b58506c0d01f3760cd9fd5511671cdb6fae6c44aa9
+ filename-size
+ 88988
+ homepage
+ http://www.gnu.org/software/gzip/
+ installed_size
+ 105200
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ gzip-dbg
+ pkgver
+ gzip-dbg-1.5_2
+ short_desc
+ GNU compression utility (replacement for compress) (debug files)
+ source-revisions
+ gzip/template: ab8a0ec010af6f1519aa9ae9ef28c7ce0de3087d
+ version
+ 1.5_2
+
+ hamster-applet
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-17 15:55 CET
+ filename
+ hamster-applet-2.91.2_1.noarch.xbps
+ filename-sha256
+ 3c0ff7eef6c2358594cf6e387ad02b2bec466f13f76a33cd7fa79f251ec6672c
+ filename-size
+ 278928
+ homepage
+ https://projecthamster.wordpress.com
+ installed_size
+ 1837611
+ license
+ GPL-2
+ long_desc
+
+ Project Hamster is time tracking for individuals. It helps you to keep track
+ on how much time you have spent during the day on activities you choose to
+ track.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ hamster-applet
+ pkgver
+ hamster-applet-2.91.2_1
+ run_depends
+
+ pygtk>=0
+ dbus-python>=0
+ python-gconf>=0
+ notify-python>=0
+
+ short_desc
+ Time tracking application for individuals
+ source-revisions
+ hamster-applet/template: 8803bc21702fe8bfc84dfeb0d99a065fdcb3b116
+ version
+ 2.91.2_1
+
+ harfbuzz-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-25 10:29 CET
+ filename
+ harfbuzz-devel-0.9.12_1.noarch.xbps
+ filename-sha256
+ 3c6ff1cbba894e96564a7d5875d86ca53871ff0b7494315576278993b1f4b24d
+ filename-size
+ 13208
+ homepage
+ http://www.pango.org/
+ installed_size
+ 77267
+ license
+ LGPL-2.1
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ harfbuzz-devel
+ pkgver
+ harfbuzz-devel-0.9.12_1
+ run_depends
+
+ libharfbuzz-0.9.12_1
+
+ short_desc
+ harfbuzz (development files)
+ source-revisions
+ harfbuzz/harfbuzz-devel.template: 2a623e6020137693bbc472e70a549bc7cad072a4
+harfbuzz/libharfbuzz.template: da1f09a4194e8183ce79a532467d246a901ffa21
+harfbuzz/template: 15c0119216be156955e5720e537ebced1b27bbba
+ version
+ 0.9.12_1
+
+ hg-git
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-31 16:07 CET
+ filename
+ hg-git-0.3.4_1.noarch.xbps
+ filename-sha256
+ 8d06dc087b6a0eef391ad7a16ce283e7692803c9b5b332261997296fa5fae7f5
+ filename-size
+ 18780
+ homepage
+ https://bitbucket.org/durin42/hg-git/
+ installed_size
+ 68331
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ hg-git
+ pkgver
+ hg-git-0.3.4_1
+ run_depends
+
+ python>=0
+ python-dulwich>=0
+
+ short_desc
+ Hg-Git plugin for Mercurial, adding the ability to push and pull to/from Git
+ source-revisions
+ hg-git/template: f37703a7692764c2b820080aa8f2c6d64071ff9d
+ version
+ 0.3.4_1
+
+ hicolor-icon-theme
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Wednesday 09 November, 2011, 16:14:29 UTC
+ filename
+ hicolor-icon-theme-0.12_2.noarch.xbps
+ filename-sha256
+ c493fe01dbef0b01c71dbbcda26473afa305ddd0de6883fd57f4e53502ed4e6b
+ filename-size
+ 7480
+ installed_size
+ 86016
+ long_desc
+
+ Default icon theme called hicolor, from freedesktop.org.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ hicolor-icon-theme
+ pkgver
+ hicolor-icon-theme-0.12_2
+ short_desc
+ Standard icon theme called hicolor
+ version
+ 0.12_2
+
+ hwids
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-29 14:37 CET
+ filename
+ hwids-20121022_1.noarch.xbps
+ filename-sha256
+ 3aae44f576731155ebccf85ba5384e833119e1e9c508f1f39f58f92a392b3896
+ filename-size
+ 284232
+ homepage
+ https://github.com/Flameeyes/hwids
+ installed_size
+ 1260864
+ license
+ GPL-2
+ long_desc
+
+ The reason to repackage the files together is to make it simpler for applications
+ to require them, without having to bring in either pciutils or usbutils, that
+ might be unnecessary for most installs.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ hwids
+ pkgver
+ hwids-20121022_1
+ replaces
+
+ pciutils<3.1.9_1
+ usbutils<005_1
+
+ short_desc
+ Hardware Identification Databases
+ version
+ 20121022_1
+
+ i3-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-16 09:04 CET
+ filename
+ i3-devel-4.4_3.noarch.xbps
+ filename-sha256
+ acce1b2e663c8a44be5d85c06443151e2fe72fa19b2a74fe3cc90906feedd57a
+ filename-size
+ 1832
+ homepage
+ http://i3wm.org/
+ installed_size
+ 2515
+ license
+ BSD
+ long_desc
+
+ i3 is a tiling window manager, completely written from scratch. The target
+ platforms are GNU/Linux and BSD operating systems, our code is Free and Open
+ Source Software (FOSS) under the BSD license. i3 is primarily targeted at
+ advanced users and developers.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (4306a5f1bb04afdc60de97eefef64b49758f6fe6)
+ pkgname
+ i3-devel
+ pkgver
+ i3-devel-4.4_3
+ run_depends
+
+ i3>=4.4
+
+ short_desc
+ i3 - development files
+ source-revisions
+ i3/i3-devel.template: 4a78b28769dcffe0e50b67a94da633dc6d0fef3f
+i3/template: efa917cb2a4410e9d354267d42ea75585a3737dd
+ version
+ 4.4_3
+
+ iana-etc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 02 July, 2011, 23:23:22 UTC
+ filename
+ iana-etc-2.30_1.noarch.xbps
+ filename-sha256
+ 3908fce31b2405add967378d2624732d8914af7490c806f42b96f1d9e3e0a36e
+ filename-size
+ 48080
+ installed_size
+ 196608
+ long_desc
+
+ The iana-etc package provides the Unix/Linux /etc/services and
+ /etc/protocols files.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ iana-etc
+ pkgver
+ iana-etc-2.30_1
+ short_desc
+ Unix /etc/services and /etc/protocols files
+ version
+ 2.30_1
+
+ ibus-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-08 08:41 CET
+ filename
+ ibus-devel-1.5.0_1.noarch.xbps
+ filename-sha256
+ 6f6478c6025fb3770fd52e7a7ac6ad9d3bc1386c7380dbe11d0141f8fdd6f3cd
+ filename-size
+ 342476
+ homepage
+ http://ibus.googlecode.com
+ installed_size
+ 6305701
+ license
+ LGPL-2.1
+ long_desc
+
+ IBus means Intelligent Input Bus. It is an open source input framework
+ for Linux/Unix OS.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (806312002cc7bb78b97a256dac03acd44259db0d)
+ pkgname
+ ibus-devel
+ pkgver
+ ibus-devel-1.5.0_1
+ run_depends
+
+ glib-devel>=0
+ ibus-1.5.0_1
+
+ short_desc
+ Intelligent Input Bus for Linux / Unix OS -- development files
+ source-revisions
+ ibus/ibus-devel.template: 0751399589faac492d4d26cf15b37e60ebd7bf10
+ibus/template: 69ecca2775b9b3f4b99bb6c6633fe023463575cf
+ version
+ 1.5.0_1
+
+ icon-naming-utils
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ icon-naming-utils-0.8.90_1.noarch.xbps
+ filename-sha256
+ d39e63084ea929b3ddbf63141aa2956e90e12db605fc890c0800bcd8f4ae686a
+ filename-size
+ 7840
+ installed_size
+ 49152
+ long_desc
+
+ Icon Naming Utilities is a program that helps with the transition to the
+ new naming scheme defined by the Tango project. This utility maps the
+ icon names used by the GNOME and KDE desktops to the icon names proposed
+ in the Icon Naming Specification.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ icon-naming-utils
+ pkgver
+ icon-naming-utils-0.8.90_1
+ run_depends
+
+ perl-XML-Simple>=0
+
+ short_desc
+ Adapts GNOME and KDE icon names to the Icon Naming Specification
+ version
+ 0.8.90_1
+
+ icu-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-21 09:59 CEST
+ filename
+ icu-devel-49.1.2_1.noarch.xbps
+ filename-sha256
+ 20a791e32f6cc610a4511f3edce10f78e6dba681c13418a09cac866b05289400
+ filename-size
+ 561888
+ homepage
+ http://www.icu-project.org/
+ installed_size
+ 4395008
+ license
+ ICU License /usr/share/licenses/icu/license.html
+ long_desc
+
+ The International Components for Unicode(ICU) is a C and C++ library that
+ provides robust and full-featured Unicode support on a wide variety of
+ platforms. The library provides:
+
+ - Calendar support
+ - Character set conversions
+ - Collation (language-sensitive)
+ - Date and time formatting
+ - Locales (140+ supported)
+ - Message catalogs (resources)
+ - Message formatting
+ - Normalization
+ - Number and currency formatting
+ - Time zones
+ - Transliteration
+ - Word, line and sentence breaks
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ icu-devel
+ pkgver
+ icu-devel-49.1.2_1
+ run_depends
+
+ libstdc++-devel>=0
+ icu>=49.1.2
+
+ short_desc
+ Robust and full-featured Unicode services - development files
+ version
+ 49.1.2_1
+
+ ifenslave
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:57 CET
+ filename
+ ifenslave-1.1.0_4.armv6l.xbps
+ filename-sha256
+ 2a0e37ac4c2563cee0de7499cc3f9808a43a29ec8f96587b8dc992c0471cb44c
+ filename-size
+ 7680
+ homepage
+ http://www.kernel.org
+ installed_size
+ 16261
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ ifenslave
+ pkgver
+ ifenslave-1.1.0_4
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Attach and detach slave interfaces to a bonding device
+ source-revisions
+ ifenslave/files/ifenslave.8: a213f489d53edd6d7ef0052297139332b33978c9
+ifenslave/files/ifenslave.c: 2fdfe60593ff202806559593d218c597caf9a7a4
+ifenslave/template: 301a36fff4b4185d05a2ef6e884f8d7ed90ecaa7
+ version
+ 1.1.0_4
+
+ ifenslave-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:57 CET
+ filename
+ ifenslave-dbg-1.1.0_4.armv6l.xbps
+ filename-sha256
+ 59dd52c341e2eda78f3812adb9efef8734d9a5366655a754f6acba837333ce11
+ filename-size
+ 12548
+ homepage
+ http://www.kernel.org
+ installed_size
+ 16448
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ ifenslave-dbg
+ pkgver
+ ifenslave-dbg-1.1.0_4
+ short_desc
+ Attach and detach slave interfaces to a bonding device (debug files)
+ source-revisions
+ ifenslave/files/ifenslave.8: a213f489d53edd6d7ef0052297139332b33978c9
+ifenslave/files/ifenslave.c: 2fdfe60593ff202806559593d218c597caf9a7a4
+ifenslave/template: 301a36fff4b4185d05a2ef6e884f8d7ed90ecaa7
+ version
+ 1.1.0_4
+
+ imlib2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:27 CET
+ filename
+ imlib2-devel-1.4.5_3.noarch.xbps
+ filename-sha256
+ 75f4ed5f22bf47ccc579c8eebc67bebca22a3e7c0d6fc21e6ceae94df847e3bc
+ filename-size
+ 394232
+ homepage
+ http://sourceforge.net/projects/enlightenment/
+ installed_size
+ 692715
+ license
+ BSD
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ imlib2-devel
+ pkgver
+ imlib2-devel-1.4.5_3
+ run_depends
+
+ imlib2-1.4.5_3
+
+ short_desc
+ Image manipulation library (development files)
+ source-revisions
+ imlib2/imlib2-devel.template: 35c562a85cca9ebc8763a64f0bb53b62b71b7319
+imlib2/patches/giflib-5.0.patch: 35c562a85cca9ebc8763a64f0bb53b62b71b7319
+imlib2/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.4.5_3
+
+ inputproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:22:50 UTC
+ filename
+ inputproto-2.2_1.noarch.xbps
+ filename-sha256
+ f46ca47ef6f0c8d0faa2c68e7ce2be524b11f5417f13a5e226036686799c18dc
+ filename-size
+ 15304
+ installed_size
+ 110592
+ long_desc
+
+ This provides the input extension headers from modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ inputproto
+ pkgver
+ inputproto-2.2_1
+ short_desc
+ Input extension headers from X.org
+ version
+ 2.2_1
+
+ intel-ucode
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 11:05 CET
+ filename
+ intel-ucode-20130222_1.noarch.xbps
+ filename-sha256
+ 0356391682accd792c2d6e48b56200e5a711ab83cbc5f168896248ad55d9de52
+ filename-size
+ 356920
+ homepage
+ http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&keyword=%22microcode%22
+ installed_size
+ 501603
+ license
+ INTEL Software License Agreement
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (fec30fbfdd73d9a62fdd4636c6b74d79d91009a4)
+ pkgname
+ intel-ucode
+ pkgver
+ intel-ucode-20130222_1
+ short_desc
+ Microcode update files for Intel CPUs
+ version
+ 20130222_1
+
+ intltool
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 27 May, 2012, 10:35:24 UTC
+ filename
+ intltool-0.50.2_1.noarch.xbps
+ filename-sha256
+ d510d150bc637b0069413b6947b169a230bf2720e48bdc309a0bc4f06d14f4b3
+ filename-size
+ 38132
+ homepage
+ https://edge.launchpad.net/intltool
+ installed_size
+ 172032
+ license
+ GPL-2
+ long_desc
+
+ The intltool collection can be used to do these things:
+
+ o Extract translatable strings from various source files (.xml.in,
+ .glade, .desktop.in, .server.in, .oaf.in).
+
+ o Collect the extracted strings together with messages from traditional
+ source files (.c, .h) in po/$(PACKAGE).pot.
+
+ o Merge back the translations from .po files into .xml, .desktop and
+ .oaf files. This merge step will happen at build resp. installation
+ time.
+
+ The intltool package has a script, intltoolize, which copies the various
+ scripts and does the other magic to your module. So users building
+ from tarballs don't need intltool, only folks building from cvs.
+ (This is modeled on gettextize.)
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ intltool
+ pkgver
+ intltool-0.50.2_1
+ run_depends
+
+ perl-XML-Parser>=2.41_1
+ gettext>=0
+
+ short_desc
+ Toolbox for internationalisation
+ version
+ 0.50.2_1
+
+ iproute2
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:39 CET
+ conf_files
+
+ /etc/iproute2/ematch_map
+ /etc/iproute2/rt_dsfield
+ /etc/iproute2/rt_protos
+ /etc/iproute2/rt_realms
+ /etc/iproute2/rt_scopes
+ /etc/iproute2/rt_tables
+
+ filename
+ iproute2-3.7.0_1.armv6l.xbps
+ filename-sha256
+ 6fb544a0ed67239a9aaf7bd3241ee9ca0a018bec15c7071f8c838dd8ed9518d5
+ filename-size
+ 346140
+ homepage
+ http://www.linux-foundation.org/en/Net:Iproute2
+ installed_size
+ 1008394
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iproute2
+ pkgver
+ iproute2-3.7.0_1
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+ libdb>=4.8.24_1
+
+ short_desc
+ IP Routing Utilities
+ source-revisions
+ iproute2/patches/iproute2-fhs.patch: 2427dc2fa1755d2fb20666160b518062fbd36001
+iproute2/template: 2427dc2fa1755d2fb20666160b518062fbd36001
+ version
+ 3.7.0_1
+
+ iproute2-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:39 CET
+ filename
+ iproute2-dbg-3.7.0_1.armv6l.xbps
+ filename-sha256
+ d897c1ad76f6312829dd3f3a8ffc6b5f923ceef058d791be17cfdb38ba840699
+ filename-size
+ 48088
+ homepage
+ http://www.linux-foundation.org/en/Net:Iproute2
+ installed_size
+ 198490
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iproute2-dbg
+ pkgver
+ iproute2-dbg-3.7.0_1
+ short_desc
+ IP Routing Utilities (debug files)
+ source-revisions
+ iproute2/patches/iproute2-fhs.patch: 2427dc2fa1755d2fb20666160b518062fbd36001
+iproute2/template: 2427dc2fa1755d2fb20666160b518062fbd36001
+ version
+ 3.7.0_1
+
+ iptables
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:22 CET
+ filename
+ iptables-1.4.16.3_2.armv6l.xbps
+ filename-sha256
+ e62c2a35648cf130d1004aafd3f26471a624c93e6ff58e6b5e88bbbce1dd59dd
+ filename-size
+ 206240
+ homepage
+ http://www.netfilter.org/
+ installed_size
+ 825163
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iptables
+ pkgver
+ iptables-1.4.16.3_2
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Linux IPv[46] packet filtering ruleset
+ source-revisions
+ iptables/files/empty-filter.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-mangle.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-nat.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-raw.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-security.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty.rules: 4bc904a3ca70a7e79c970f44a6d659895dc718d0
+iptables/files/ip6tables.service: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/iptables-flush.scripts: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/iptables.service: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/simple_firewall.rules: 4bc904a3ca70a7e79c970f44a6d659895dc718d0
+iptables/iptables-devel.template: 6c2f55322b9b5cf491912508c55b826acb3c96fa
+iptables/template: 6c2f55322b9b5cf491912508c55b826acb3c96fa
+ version
+ 1.4.16.3_2
+
+ iptables-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:22 CET
+ filename
+ iptables-dbg-1.4.16.3_2.armv6l.xbps
+ filename-sha256
+ 80ba69cb90bf330b7802b95e10f290034e0b1ddf9facd14d9e4c2c5db86d0c7e
+ filename-size
+ 757008
+ homepage
+ http://www.netfilter.org/
+ installed_size
+ 1279696
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iptables-dbg
+ pkgver
+ iptables-dbg-1.4.16.3_2
+ short_desc
+ Linux IPv[46] packet filtering ruleset (debug files)
+ source-revisions
+ iptables/files/empty-filter.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-mangle.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-nat.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-raw.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-security.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty.rules: 4bc904a3ca70a7e79c970f44a6d659895dc718d0
+iptables/files/ip6tables.service: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/iptables-flush.scripts: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/iptables.service: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/simple_firewall.rules: 4bc904a3ca70a7e79c970f44a6d659895dc718d0
+iptables/iptables-devel.template: 6c2f55322b9b5cf491912508c55b826acb3c96fa
+iptables/template: 6c2f55322b9b5cf491912508c55b826acb3c96fa
+ version
+ 1.4.16.3_2
+
+ iptables-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:21 CET
+ filename
+ iptables-devel-1.4.16.3_2.noarch.xbps
+ filename-sha256
+ 09b309b687b7af689cec787a47d10ea52ed3d209d52ee6619f8ea8d79890b6ba
+ filename-size
+ 21868
+ homepage
+ http://www.netfilter.org/
+ installed_size
+ 43793
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iptables-devel
+ pkgver
+ iptables-devel-1.4.16.3_2
+ run_depends
+
+ iptables-1.4.16.3_2
+
+ short_desc
+ Linux IPv[46] packet filtering ruleset -- development files
+ source-revisions
+ iptables/files/empty-filter.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-mangle.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-nat.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-raw.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty-security.rules: f7e0a1ec9bcb716c5223268ea059b26bc5346b4b
+iptables/files/empty.rules: 4bc904a3ca70a7e79c970f44a6d659895dc718d0
+iptables/files/ip6tables.service: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/iptables-flush.scripts: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/iptables.service: 89b5ac26508c6681dca7c4a40dfa745725af9e1a
+iptables/files/simple_firewall.rules: 4bc904a3ca70a7e79c970f44a6d659895dc718d0
+iptables/iptables-devel.template: 6c2f55322b9b5cf491912508c55b826acb3c96fa
+iptables/template: 6c2f55322b9b5cf491912508c55b826acb3c96fa
+ version
+ 1.4.16.3_2
+
+ iputils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:44 CET
+ filename
+ iputils-20121221_2.armv6l.xbps
+ filename-sha256
+ 136e4d407bfd953728c8decb111aee5e4b5b37019271874a6da9dce7e9dace53
+ filename-size
+ 56928
+ homepage
+ http://www.skbuff.net/iputils
+ installed_size
+ 145524
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iputils
+ pkgver
+ iputils-20121221_2
+ run_depends
+
+ libcap-progs>=0
+ libcap>=2.16_1
+ glibc>=2.8_1
+ libssl>=1.0.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ IP Configuration Utilities (and ping)
+ source-revisions
+ iputils/INSTALL: ab2c6e44081b0fd3231c57e447a8578dab69828d
+iputils/patches/iputils-s20101006-manpages.patch: 66076835decfa878f5bd6a926d7ebb885f81fffd
+iputils/template: c2b1ecea13af817c57389d2ada0bdd09d79eec0f
+ version
+ 20121221_2
+
+ iputils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 09:44 CET
+ filename
+ iputils-dbg-20121221_2.armv6l.xbps
+ filename-sha256
+ f767a70aa2dcd8afed51d7f7315e5e7a7f4523a1bb381009ed60e8854722e2b3
+ filename-size
+ 142188
+ homepage
+ http://www.skbuff.net/iputils
+ installed_size
+ 192321
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ iputils-dbg
+ pkgver
+ iputils-dbg-20121221_2
+ short_desc
+ IP Configuration Utilities (and ping) (debug files)
+ source-revisions
+ iputils/INSTALL: ab2c6e44081b0fd3231c57e447a8578dab69828d
+iputils/patches/iputils-s20101006-manpages.patch: 66076835decfa878f5bd6a926d7ebb885f81fffd
+iputils/template: c2b1ecea13af817c57389d2ada0bdd09d79eec0f
+ version
+ 20121221_2
+
+ ipw2100-firmware
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 09 July, 2012, 15:41:48 UTC
+ filename
+ ipw2100-firmware-1.3_2.noarch.xbps
+ filename-sha256
+ 5d09094ffc413fb5cc0b7f2855934db4b9db8cb6609dd59b1225dbbd111b6b1d
+ filename-size
+ 119708
+ installed_size
+ 626688
+ long_desc
+
+ This package contains the firmware required by the ipw2100 driver for Linux.
+ Usage of the firmware is subject to the terms and conditions contained
+ inside the provided LICENSE file. Please read it carefully.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ ipw2100-firmware
+ pkgver
+ ipw2100-firmware-1.3_2
+ short_desc
+ Firmware for the Intel PRO/Wireless 2100 wifi cards
+ version
+ 1.3_2
+
+ ipw2200-firmware
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 09 July, 2012, 15:43:38 UTC
+ filename
+ ipw2200-firmware-3.1_2.noarch.xbps
+ filename-sha256
+ b856fe4929325ed2c5bfd74d5714d399f9312bc2d1d4a3dc1b7f03bcc12439b9
+ filename-size
+ 119688
+ installed_size
+ 581632
+ long_desc
+
+ This package contains the firmware required by the ipw2200 driver for Linux.
+ Usage of the firmware is subject to the terms and conditions contained
+ inside the provided LICENSE file. Please read it carefully.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ ipw2200-firmware
+ pkgver
+ ipw2200-firmware-3.1_2
+ short_desc
+ Firmware for the Intel PRO/Wireless 2200BG wifi cards
+ version
+ 3.1_2
+
+ irssi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:03 CET
+ conf_files
+
+ /etc/irssi.conf
+
+ filename
+ irssi-0.8.15_6.armv6l.xbps
+ filename-sha256
+ 2d65ab687cad0f46260ff974d417b60d1a452cb56f29392fc3bbfb0f43d993e2
+ filename-size
+ 326020
+ homepage
+ http://www.irssi.org
+ installed_size
+ 1011639
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ irssi
+ pkgver
+ irssi-0.8.15_6
+ run_depends
+
+ glib>=2.18.0_1
+ libssl>=1.0.0_1
+ ncurses-libs>=5.8_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Secure and modular IRC client with text mode user interface
+ source-revisions
+ irssi/irssi-devel.template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+irssi/irssi-perl.template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+irssi/template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+ version
+ 0.8.15_6
+
+ irssi-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:03 CET
+ filename
+ irssi-dbg-0.8.15_6.armv6l.xbps
+ filename-sha256
+ e82c4a8fa571efbcfa1c20023d40867161f11f9d95dc6ccd2b7f07d9345860f6
+ filename-size
+ 1157100
+ homepage
+ http://www.irssi.org
+ installed_size
+ 1357224
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ irssi-dbg
+ pkgver
+ irssi-dbg-0.8.15_6
+ short_desc
+ Secure and modular IRC client with text mode user interface (debug files)
+ source-revisions
+ irssi/irssi-devel.template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+irssi/irssi-perl.template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+irssi/template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+ version
+ 0.8.15_6
+
+ irssi-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:02 CET
+ filename
+ irssi-devel-0.8.15_6.noarch.xbps
+ filename-sha256
+ 14386026cb1757004a0b5edc8e94c8441ee62b612c07ba68f00a85871afc2d02
+ filename-size
+ 40924
+ homepage
+ http://www.irssi.org
+ installed_size
+ 141138
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ irssi-devel
+ pkgver
+ irssi-devel-0.8.15_6
+ run_depends
+
+ perl>=5.16
+ glib-devel>=0
+ openssl-devel>=0
+ ncurses-devel>=0
+
+ short_desc
+ Secure and modular IRC client with text mode user interface -- development files
+ source-revisions
+ irssi/irssi-devel.template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+irssi/irssi-perl.template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+irssi/template: 8762dc0a014465de4e6e62edf0c1fca6cb3b3219
+ version
+ 0.8.15_6
+
+ isl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:16 CET
+ filename
+ isl-0.11.1_2.armv6l.xbps
+ filename-sha256
+ 3745c744af6df3ec193ea6a2a3d8750c899e6e4f8da1728d287b18a34e66cbce
+ filename-size
+ 270436
+ homepage
+ http://www.kotnet.org/~skimo/isl/
+ installed_size
+ 856220
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ isl
+ pkgver
+ isl-0.11.1_2
+ run_depends
+
+ gmp>=5.0.1_1
+ glibc>=2.8_1
+
+ short_desc
+ Integer Set Library
+ source-revisions
+ isl/isl-devel.template: 185788a347fc0ae0df942e041a36ca45eca322e9
+isl/template: 185788a347fc0ae0df942e041a36ca45eca322e9
+ version
+ 0.11.1_2
+
+ isl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:16 CET
+ filename
+ isl-dbg-0.11.1_2.armv6l.xbps
+ filename-sha256
+ 02a4f6b8f7f2d841bcd829824d58a15a136c31f3caa3040b98ed399a08554f08
+ filename-size
+ 1051572
+ homepage
+ http://www.kotnet.org/~skimo/isl/
+ installed_size
+ 1196615
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ isl-dbg
+ pkgver
+ isl-dbg-0.11.1_2
+ short_desc
+ Integer Set Library (debug files)
+ source-revisions
+ isl/isl-devel.template: 185788a347fc0ae0df942e041a36ca45eca322e9
+isl/template: 185788a347fc0ae0df942e041a36ca45eca322e9
+ version
+ 0.11.1_2
+
+ isl-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:16 CET
+ filename
+ isl-devel-0.11.1_2.armv6l.xbps
+ filename-sha256
+ 8a133ca2ba5d70947fd64fcb8318d929b0ab0876d5dcbb9c358e31c4e622019b
+ filename-size
+ 326840
+ homepage
+ http://www.kotnet.org/~skimo/isl/
+ installed_size
+ 1520619
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ isl-devel
+ pkgver
+ isl-devel-0.11.1_2
+ run_depends
+
+ gmp-devel>=0
+ isl>=0.11.1
+
+ short_desc
+ Integer Set Library -- development files
+ source-revisions
+ isl/isl-devel.template: 185788a347fc0ae0df942e041a36ca45eca322e9
+isl/template: 185788a347fc0ae0df942e041a36ca45eca322e9
+ version
+ 0.11.1_2
+
+ iso-codes
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 12:59:33 UTC
+ filename
+ iso-codes-3.35_1.noarch.xbps
+ filename-sha256
+ 257642b416ce5c12b0fa153d6d7aebec8b776a06fdc95e414bb096cf49179091
+ filename-size
+ 1835996
+ homepage
+ http://pkg-isocodes.alioth.debian.org/
+ installed_size
+ 13860864
+ license
+ LGPL-2.1
+ long_desc
+
+ iso-codes provides the list of the country, language and currency names in
+ one place, rather than repeated in many third-party programs. This was
+ originally done to centralize this data in Debian systems.
+
+ The aim of iso-codes is to create a single gettext domain iso-639 which
+ contains the translations of language names, and one iso-3166 listing the
+ translations of country names.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ iso-codes
+ pkgver
+ iso-codes-3.35_1
+ short_desc
+ List of country, language and currency names
+ version
+ 3.35_1
+
+ itstool
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-21 14:21 CEST
+ filename
+ itstool-1.2.0_1.noarch.xbps
+ filename-sha256
+ f5bf000f50320b83504c08fc5df9fb3f92a60e7bcee100623d1a400a122005b4
+ filename-size
+ 13276
+ homepage
+ http://itstool.org/
+ installed_size
+ 67382
+ license
+ GPL-3
+ long_desc
+
+ ITS Tool allows you to translate your XML documents with PO files, using
+ rules from the W3C Internationalization Tag Set (ITS) to determine what to
+ translate and how to separate it into PO file messages.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ itstool
+ pkgver
+ itstool-1.2.0_1
+ run_depends
+
+ python>=0
+ libxml2-python>=0
+
+ short_desc
+ ITS Tool
+ version
+ 1.2.0_1
+
+ jack-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-18 12:53 CET
+ filename
+ jack-devel-1.9.9.5_1.noarch.xbps
+ filename-sha256
+ ac08ef792405b3c6f0d890d266acb85a74de39f849f80158486a757ca83c0c10
+ filename-size
+ 34156
+ homepage
+ http://jackaudio.org/
+ installed_size
+ 167748
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ JACK is system for handling real-time, low latency audio (and MIDI). It runs
+ on GNU/Linux, Solaris, FreeBSD, OS X and Windows (and can be ported to other
+ POSIX-conformant platforms). It can connect a number of different
+ applications to an audio device, as well as allowing them to share audio
+ between themselves. Its clients can run in their own processes (ie. as normal
+ applications), or can they can run within the JACK server (ie. as a plugin).
+ JACK also has support for distributing audio processing across a network,
+ both fast and reliable LANs as well as slower, less reliable WANs.
+
+ JACK was designed from the ground up for professional audio work, and its
+ design focuses on two key areas: synchronous execution of all clients, and
+ low latency operation.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ jack-devel
+ pkgver
+ jack-devel-1.9.9.5_1
+ run_depends
+
+ libjack>=1.9.9.5
+
+ short_desc
+ JACK Audio Connection Kit low-latency sound server (pro audio) (Development files)
+ source-revisions
+ jack/files/40-hpet-permissions.rules: e8f2851e154d0c0bbd5eb13ceb08740c62d0a2a8
+jack/files/jack-limitsd.conf: 9d198e47acc45f53c07ee62abfcd7348c300271c
+jack/jack-devel.template: eb269e0f441965ab80ca868ba89d4488419d2ca9
+jack/libjack.template: eb269e0f441965ab80ca868ba89d4488419d2ca9
+jack/template: eb269e0f441965ab80ca868ba89d4488419d2ca9
+ version
+ 1.9.9.5_1
+
+ jasper-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 22:52 CET
+ filename
+ jasper-devel-1.900.1_6.noarch.xbps
+ filename-sha256
+ 51d15b9b62d6db0cf5f17b9ff5ee18c9f0aa7a12a7bbfed6b687e02efcae5328
+ filename-size
+ 19024
+ homepage
+ http://www.ece.uvic.ca/~mdadams/jasper
+ installed_size
+ 137770
+ license
+ JasPer-2.0
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ jasper-devel
+ pkgver
+ jasper-devel-1.900.1_6
+ run_depends
+
+ libjpeg-turbo-devel>=0
+ libjasper>=1.900.1
+
+ short_desc
+ jasper - development files
+ source-revisions
+ jasper/jasper-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+jasper/libjasper.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+jasper/template: 89d011c9361953d3beb6c4a3fca009ded7d4eb44
+ version
+ 1.900.1_6
+
+ kbd
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:42 CET
+ filename
+ kbd-1.15.5_2.armv6l.xbps
+ filename-sha256
+ 5aaf1c14d45de360bb2ba5e28e4ff0dc267885bf3eb1e99e529b4e8c8f8cb851
+ filename-size
+ 1003448
+ homepage
+ ftp://ftp.altlinux.org/pub/people/legion/kbd/
+ installed_size
+ 2449470
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ kbd
+ pkgver
+ kbd-1.15.5_2
+ replaces
+
+ kbd-common<1.15.5
+
+ run_depends
+
+ glibc>=2.8_1
+ pam-libs>=1.1.6_3
+
+ short_desc
+ Linux keyboard utilities
+ source-revisions
+ kbd/patches/fix-euro-symbol-es-keymap.patch: c613e3044643cad4941d665cea92e6dffd15fc59
+kbd/template: b76b9e904afff3c93685569cb5f523888354e146
+ version
+ 1.15.5_2
+
+ kbd-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:42 CET
+ filename
+ kbd-dbg-1.15.5_2.armv6l.xbps
+ filename-sha256
+ 51d96c94f216d78c18dad403f0669803918fb1a76ad42c556f7981806bc349d6
+ filename-size
+ 234572
+ homepage
+ ftp://ftp.altlinux.org/pub/people/legion/kbd/
+ installed_size
+ 369716
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ kbd-dbg
+ pkgver
+ kbd-dbg-1.15.5_2
+ short_desc
+ Linux keyboard utilities (debug files)
+ source-revisions
+ kbd/patches/fix-euro-symbol-es-keymap.patch: c613e3044643cad4941d665cea92e6dffd15fc59
+kbd/template: b76b9e904afff3c93685569cb5f523888354e146
+ version
+ 1.15.5_2
+
+ kbproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:22:13 UTC
+ filename
+ kbproto-1.0.4_1.noarch.xbps
+ filename-sha256
+ 9bb5fecd3e79f4697d9837ea8b1d938f38a7bb3d19d4502aaff54a18003d3830
+ filename-size
+ 23076
+ installed_size
+ 131072
+ long_desc
+
+ This provides the KB extension headers from modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ kbproto
+ pkgver
+ kbproto-1.0.4_1
+ short_desc
+ KB extension headers from X.org
+ version
+ 1.0.4_1
+
+ kernel-headers-rpi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 17:57 CET
+ filename
+ kernel-headers-rpi-3.6.11_1.armv6l.xbps
+ filename-sha256
+ 17d15c8e2e35f37d1a7840fc94b1b483e4fc10cef1efb1aa3410ab40f5a318f8
+ filename-size
+ 4942176
+ homepage
+ http://www.kernel.org
+ installed_size
+ 25810405
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ kernel-headers-rpi
+ pkgver
+ kernel-headers-rpi-3.6.11_1
+ short_desc
+ Linux kernel source headers for the RaspberryPI
+ source-revisions
+ kernel-rpi/files/args-uncompressed.txt: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/files/boot-uncompressed.txt: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/files/config: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/files/imagetool-uncompressed.py: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/kernel-headers-rpi.template: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/patches/0001-rtc-pcf8523.patch: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/patches/0002-pcf8523-i2c-register-dt.patch: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/patches/usb-add-reset-resume-quirk-for-several-webcams.patch: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/template: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+ version
+ 3.6.11_1
+
+ kernel-libc-headers
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 13:11 CET
+ filename
+ kernel-libc-headers-3.7.1_2.armv6l.xbps
+ filename-sha256
+ d0c010863c2ebea5dd17ae87eafb6f3a2562a2e54cf10dd315723c8dec2deeea
+ filename-size
+ 633552
+ homepage
+ http://www.kernel.org
+ installed_size
+ 2711991
+ license
+ GPL-2
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ kernel-libc-headers
+ pkgver
+ kernel-libc-headers-3.7.1_2
+ short_desc
+ The Linux API headers for userland development
+ source-revisions
+ kernel-libc-headers/template: a7a4e5faba4f70d0927b1658360b8281b169b314
+ version
+ 3.7.1_2
+
+ kernel-manpages
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ kernel-manpages-3.2.6_1.noarch.xbps
+ filename-sha256
+ 15d57fa9a99ed7d9a38ade176173801f856d2816c3fdb88cc0be85e8cb96a6a6
+ filename-size
+ 2503884
+ homepage
+ http://www.kernel.org
+ installed_size
+ 14295040
+ long_desc
+
+ This package contains manual pages for developping for the Linux kernel.
+ maintainer
+
+ packaged-with
+ xbps-src-28
+ pkgname
+ kernel-manpages
+ pkgver
+ kernel-manpages-3.2.6_1
+ short_desc
+ kernel-manpages development manual pages
+ version
+ 3.2.6_1
+
+ kernel-rpi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 17:57 CET
+ filename
+ kernel-rpi-3.6.11_1.armv6l.xbps
+ filename-sha256
+ 481d9a12c1db00255a8ab300541b21a2fc2e7f15b089e4614391587536d81da7
+ filename-size
+ 14646344
+ homepage
+ http://www.kernel.org
+ installed_size
+ 20713303
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ kernel-rpi
+ pkgver
+ kernel-rpi-3.6.11_1
+ provides
+
+ kernel-3.6.11
+
+ run_depends
+
+ kmod>=11_2
+
+ short_desc
+ The Linux kernel and modules for the Raspberry Pi
+ source-revisions
+ kernel-rpi/files/args-uncompressed.txt: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/files/boot-uncompressed.txt: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/files/config: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/files/imagetool-uncompressed.py: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/kernel-headers-rpi.template: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/patches/0001-rtc-pcf8523.patch: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/patches/0002-pcf8523-i2c-register-dt.patch: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/patches/usb-add-reset-resume-quirk-for-several-webcams.patch: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+kernel-rpi/template: 80aa3e4da6966fef9ad70e2fc63c184bc808793b
+ version
+ 3.6.11_1
+
+ keychain
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-09 10:12 CEST
+ filename
+ keychain-2.7.1_2.noarch.xbps
+ filename-sha256
+ 175eae4418900f9b39fd3a1479966cbe73a3e8cb8fd5ae0e57fe36e0ebcea6cd
+ filename-size
+ 19652
+ homepage
+ http://www.funtoo.org/wiki/Keychain
+ installed_size
+ 86016
+ license
+ GPL-2
+ long_desc
+
+ Keychain helps you to manage ssh and GPG keys in a convenient and secure manner.
+ It acts as a frontend to ssh-agent and ssh-add, but allows you to easily have
+ one long running ssh-agent process per system, rather than the norm of one
+ ssh-agent per login session.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ keychain
+ pkgver
+ keychain-2.7.1_2
+ short_desc
+ keychain manager for ssh-agent and gpg-agent
+ version
+ 2.7.1_2
+
+ kmod
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 10:44 CET
+ filename
+ kmod-12_2.armv6l.xbps
+ filename-sha256
+ eec16dc21a33624245a55f1c3eb20066d872a83267ff94b8632cff850fd1264b
+ filename-size
+ 44452
+ homepage
+ http://git.profusion.mobi/cgit.cgi/kmod.git
+ installed_size
+ 84592
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ kmod
+ pkgver
+ kmod-12_2
+ provides
+
+ module-init-tools-3.17
+
+ replaces
+
+ module-init-tools>=0
+
+ run_depends
+
+ libkmod-12_2
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Linux kernel module handling
+ source-revisions
+ kmod/files/depmod-search.conf: 5ffcb7c73f4a0258fd773e86db109d2f09f8212e
+kmod/libkmod-devel.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/libkmod.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+ version
+ 12_2
+
+ kmod-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 10:44 CET
+ filename
+ kmod-dbg-12_2.armv6l.xbps
+ filename-sha256
+ d3b4bb789523bea58448bc73cb6968ec70672316e2b8226ced55aa389554214c
+ filename-size
+ 78728
+ homepage
+ http://git.profusion.mobi/cgit.cgi/kmod.git
+ installed_size
+ 91659
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ kmod-dbg
+ pkgver
+ kmod-dbg-12_2
+ short_desc
+ Linux kernel module handling (debug files)
+ source-revisions
+ kmod/files/depmod-search.conf: 5ffcb7c73f4a0258fd773e86db109d2f09f8212e
+kmod/libkmod-devel.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/libkmod.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+ version
+ 12_2
+
+ ladish-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 09:59 CEST
+ filename
+ ladish-devel-1_3.noarch.xbps
+ filename-sha256
+ ad666c9431915cce1985cdac8208da44ca6768ec190a95b62f89752e5ce82a4e
+ filename-size
+ 3688
+ homepage
+ http://ladish.org
+ installed_size
+ 57344
+ license
+ GPL-2
+ long_desc
+
+ LADI Session Handler or simply ladish is a session management system for JACK
+ applications on GNU/Linux. Its aim is to allow you to have many different audio
+ programs running at once, to save their setup, close them down and then easily
+ reload the setup at some other time.
+
+ ladish does not deal with any kind of audio or MIDI data itself; it just runs
+ programs, deals with saving/loading (arbitrary) data and connects JACK ports
+ together. It can also be used to move entire sessions between computers, or
+ post sessions on the Internet for download.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ ladish-devel
+ pkgver
+ ladish-devel-1_3
+ run_depends
+
+ libuuid-devel>=0
+ ladish>=1
+
+ short_desc
+ Session management system for JACK applications. (Development files)
+ version
+ 1_3
+
+ ladspa-sdk
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 22 May, 2012, 16:44:57 UTC
+ filename
+ ladspa-sdk-1.13_2.noarch.xbps
+ filename-sha256
+ 3d39d8c5fff42074e7afaa056bbc2a23b6a04a01d6bacea274628148324b1d26
+ filename-size
+ 9004
+ homepage
+ http://www.ladspa.org/
+ installed_size
+ 28672
+ license
+ LGPL-2.1
+ long_desc
+
+ There is a large number of synthesis packages in use or development on the
+ Linux platform at this time. The Linux Audio Developer's Simple Plugin API
+ (LADSPA) attempts to give programmers the ability to write simple plugin
+ audio processors in C/C++ and link them dynamically against a range of host
+ applications.
+
+ Definitive technical documentation on LADSPA plugins for both host and plugin
+ writers is contained within copious comments in the ladspa.h header file.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-27
+ pkgname
+ ladspa-sdk
+ pkgver
+ ladspa-sdk-1.13_2
+ short_desc
+ Linux Audio Developer's Simple Plugin API (LADSPA)
+ version
+ 1.13_2
+
+ ladspa-sdk-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 22 May, 2012, 16:44:57 UTC
+ filename
+ ladspa-sdk-docs-1.13_2.noarch.xbps
+ filename-sha256
+ 9a2504639e587f4f6a8913986c5ceb16b5c9877cebb8eddfbc6f2f274ceb387b
+ filename-size
+ 14648
+ homepage
+ http://www.ladspa.org/
+ installed_size
+ 73728
+ license
+ LGPL-2.1
+ long_desc
+
+ There is a large number of synthesis packages in use or development on the
+ Linux platform at this time. The Linux Audio Developer's Simple Plugin API
+ (LADSPA) attempts to give programmers the ability to write simple plugin
+ audio processors in C/C++ and link them dynamically against a range of host
+ applications.
+
+ Definitive technical documentation on LADSPA plugins for both host and plugin
+ writers is contained within copious comments in the ladspa.h header file.
+
+ This package contains the HTML documentation
+ to be installed in /usr/share/doc/ladspa.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-27
+ pkgname
+ ladspa-sdk-docs
+ pkgver
+ ladspa-sdk-docs-1.13_2
+ run_depends
+
+ ladspa-sdk>=0
+
+ short_desc
+ Linux Audio Developer's Simple Plugin API (LADSPA) (Documentation)
+ version
+ 1.13_2
+
+ laptop-mode
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-18 09:53 CET
+ conf_files
+
+ /etc/laptop-mode/lm-profiler.conf
+ /etc/laptop-mode/conf.d/lcd-brightness.conf
+ /etc/laptop-mode/conf.d/video-out.conf
+ /etc/laptop-mode/conf.d/wireless-iwl-power.conf
+ /etc/laptop-mode/conf.d/nmi-watchdog.conf
+ /etc/laptop-mode/conf.d/dpms-standby.conf
+ /etc/laptop-mode/conf.d/runtime-pm.conf
+ /etc/laptop-mode/conf.d/ethernet.conf
+ /etc/laptop-mode/conf.d/eee-superhe.conf
+ /etc/laptop-mode/conf.d/hal-polling.conf
+ /etc/laptop-mode/conf.d/cpufreq.conf
+ /etc/laptop-mode/conf.d/battery-level-polling.conf
+ /etc/laptop-mode/conf.d/intel-hda-powersave.conf
+ /etc/laptop-mode/conf.d/configuration-file-control.conf
+ /etc/laptop-mode/conf.d/bluetooth.conf
+ /etc/laptop-mode/conf.d/usb-autosuspend.conf
+ /etc/laptop-mode/conf.d/wireless-ipw-power.conf
+ /etc/laptop-mode/conf.d/start-stop-programs.conf
+ /etc/laptop-mode/conf.d/ac97-powersave.conf
+ /etc/laptop-mode/conf.d/auto-hibernate.conf
+ /etc/laptop-mode/conf.d/intel-sata-powermgmt.conf
+ /etc/laptop-mode/conf.d/wireless-power.conf
+ /etc/laptop-mode/conf.d/sched-smt-power-savings.conf
+ /etc/laptop-mode/conf.d/sched-mc-power-savings.conf
+ /etc/laptop-mode/conf.d/terminal-blanking.conf
+ /etc/laptop-mode/conf.d/exec-commands.conf
+ /etc/laptop-mode/laptop-mode.conf
+
+ filename
+ laptop-mode-1.62_4.noarch.xbps
+ filename-sha256
+ ac856023cd82da3b4666638dd6f9e02619e75900e9c5058931ad93dce063ca80
+ filename-size
+ 60548
+ homepage
+ http://samwel.tk/laptop_mode/
+ installed_size
+ 201390
+ license
+ GPL-2
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ laptop-mode
+ pkgver
+ laptop-mode-1.62_4
+ run_depends
+
+ acpid>=0
+ hdparm>=0
+ sdparm>=0
+ wireless_tools>=0
+ xset>=0
+ bluez>=0
+
+ short_desc
+ Laptop power saving package for Linux systems
+ source-revisions
+ laptop-mode/INSTALL: 6960b719bf0d22aab8d177d69f8acfa4c5a2b5b6
+laptop-mode/template: 7332c8a04101b94af3c2a297ad449fd010fc180f
+ version
+ 1.62_4
+
+ lcms-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:18 CET
+ filename
+ lcms-devel-1.19_7.noarch.xbps
+ filename-sha256
+ 949d89de97d79de82baa1e2416e4ea51a7fe40948a13c4e28405792f87484bea
+ filename-size
+ 24036
+ homepage
+ http://www.littlecms.com
+ installed_size
+ 118309
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ lcms-devel
+ pkgver
+ lcms-devel-1.19_7
+ run_depends
+
+ libjpeg-turbo-devel>=0
+ tiff-devel>=0
+ lcms>=1.19
+
+ short_desc
+ Light Color Management System -- a color management library -- development files
+ source-revisions
+ lcms/lcms-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+lcms/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.19_7
+
+ lcms2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 22:08 CET
+ filename
+ lcms2-devel-2.4_3.noarch.xbps
+ filename-sha256
+ ba1e174dffcf5419cd141ead19634e5028d44e0ba1247ce66142eec039c211f0
+ filename-size
+ 22328
+ homepage
+ http://www.littlecms.com
+ installed_size
+ 124639
+ license
+ MIT
+ long_desc
+
+ LCMS2 is the Little Color Management System, a Color Matching Method
+ (CMM) library which implements fast transforms between ICC profiles.
+
+ Color management refers to techniques that ensure consistent color
+ as images are transferred from scanners or cameras to monitors and
+ printers.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ lcms2-devel
+ pkgver
+ lcms2-devel-2.4_3
+ run_depends
+
+ tiff-devel>=0
+ lcms2>=2.4
+
+ short_desc
+ lcms2 development files
+ source-revisions
+ lcms2/lcms2-devel.template: 8cd080bb6ac89b9e5c311646c53aefbeed6938b5
+lcms2/lcms2-tools.template: 4d20a75cd24a5fc42e474429646cc6ca40484d17
+lcms2/template: 89d011c9361953d3beb6c4a3fca009ded7d4eb44
+ version
+ 2.4_3
+
+ less
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:53 CET
+ filename
+ less-451_2.armv6l.xbps
+ filename-sha256
+ d6db6f35e2b3dd30e7a805b8e0b1bfcb20095a968d41b8c094a9ddc1b589eb4c
+ filename-size
+ 78764
+ homepage
+ http://www.greenwoodsoftware.com/less
+ installed_size
+ 161321
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ less
+ pkgver
+ less-451_2
+ run_depends
+
+ glibc>=2.8_1
+ ncurses-libs>=5.8_1
+ libpcre>=8.30_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Pager program similar to more(1)
+ source-revisions
+ less/template: 4e2baf904c3f13fc19323e463dfa3bd841ec098d
+ version
+ 451_2
+
+ less-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:53 CET
+ filename
+ less-dbg-451_2.armv6l.xbps
+ filename-sha256
+ a2ae68282243a891f95ea3241c8b2fc4d4ea44f81824b4689ba4b5c99079e24a
+ filename-size
+ 140736
+ homepage
+ http://www.greenwoodsoftware.com/less
+ installed_size
+ 180144
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ less-dbg
+ pkgver
+ less-dbg-451_2
+ short_desc
+ Pager program similar to more(1) (debug files)
+ source-revisions
+ less/template: 4e2baf904c3f13fc19323e463dfa3bd841ec098d
+ version
+ 451_2
+
+ leveldb-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-30 10:36 CET
+ filename
+ leveldb-devel-1.8.0_1.noarch.xbps
+ filename-sha256
+ 997ff768bdca3dac13668f9cfd637f610e02d74575cd2d30cc130ee592e188cf
+ filename-size
+ 37988
+ homepage
+ http://code.google.com/p/leveldb
+ installed_size
+ 158910
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ leveldb-devel
+ pkgver
+ leveldb-devel-1.8.0_1
+ run_depends
+
+ leveldb>=1.8.0
+
+ short_desc
+ A fast and lightweight key/value database library by Google -- development files
+ source-revisions
+ leveldb/leveldb-devel.template: 501296b97f12af0ce62c03ed3814bb7943c518fd
+leveldb/template: 501296b97f12af0ce62c03ed3814bb7943c518fd
+ version
+ 1.8.0_1
+
+ lftpfs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 04 June, 2012, 14:41:10 UTC
+ filename
+ lftpfs-0.4.3_1.noarch.xbps
+ filename-sha256
+ ffec74ef3f15c17deffea02e5ec39a0133297c33062fedca48a4444b740be589
+ filename-size
+ 7836
+ homepage
+ http://lftpfs.sourceforge.net/
+ installed_size
+ 24576
+ license
+ GPL-2
+ long_desc
+
+ LftpFS is a read-only network filesystem with caching for smart mirror of
+ sites. Useful for mirroring of Linux repositories. It's based on FUSE and
+ LFTP client, which supports FTP, HTTP, FISH, SFTP, HTTPS, FTPS protocols
+ and works over proxies. LftpFS is a fork from unmaintained FuseFTP.
+
+ Features
+ connection features of LFTP (http://lftp.yar.ru/)
+ caching of files with a structure of remote directory
+ include/exclude matching files/dirs
+ using as mirror tool with on-demand download of files
+
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ lftpfs
+ pkgver
+ lftpfs-0.4.3_1
+ run_depends
+
+ perl-Fuse>=0
+ perl-IPC-Run>=0
+ lftp>=0
+
+ short_desc
+ Filesystem with caching based on FUSE and LFTP
+ version
+ 0.4.3_1
+
+ libICE-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 11:12 CEST
+ filename
+ libICE-devel-1.0.8_2.noarch.xbps
+ filename-sha256
+ ce15b0450463825afd375ce8c39113e359991254970ea1f18e5ed7ffef22de5e
+ filename-size
+ 38272
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 268081
+ license
+ MIT
+ long_desc
+
+ This package contains library and header files for the ICE
+ extension for X. This is the Inter Client Exchange library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libICE-devel
+ pkgver
+ libICE-devel-1.0.8_2
+ run_depends
+
+ xtrans>=0
+ xproto>=0
+ libICE-1.0.8_2
+
+ short_desc
+ Inter Client Exchange (ICE) library for X -- development files
+ version
+ 1.0.8_2
+
+ libX11
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:46 CET
+ filename
+ libX11-1.5.0_3.armv6l.xbps
+ filename-sha256
+ efd094ea0434ea04d45a813568a6d33d0ffd685f28d35ab36b5f0701c99ec1a8
+ filename-size
+ 1142452
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 10358604
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libX11
+ pkgver
+ libX11-1.5.0_3
+ run_depends
+
+ libxcb>=1.2_1
+ glibc>=2.8_1
+
+ short_desc
+ Base X libraries from modular Xorg X11
+ source-revisions
+ libX11/libX11-devel.template: da83587443295ca128c08a0017c5c9de903728af
+libX11/template: 100dc48be59c0115a9db20371a7dd06e0cde294a
+ version
+ 1.5.0_3
+
+ libX11-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:46 CET
+ filename
+ libX11-dbg-1.5.0_3.armv6l.xbps
+ filename-sha256
+ 59ceb1c266aebe2c43cd312516bd7154030209d1951f7382b85e94b3446abe18
+ filename-size
+ 2939296
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 3308950
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libX11-dbg
+ pkgver
+ libX11-dbg-1.5.0_3
+ short_desc
+ Base X libraries from modular Xorg X11 (debug files)
+ source-revisions
+ libX11/libX11-devel.template: da83587443295ca128c08a0017c5c9de903728af
+libX11/template: 100dc48be59c0115a9db20371a7dd06e0cde294a
+ version
+ 1.5.0_3
+
+ libX11-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:44 CET
+ filename
+ libX11-devel-1.5.0_3.noarch.xbps
+ filename-sha256
+ c518b04202f83ca5b6afc7a87b788547d184ee61b6c321cb12458e1f380e4492
+ filename-size
+ 931836
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 1154455
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libX11-devel
+ pkgver
+ libX11-devel-1.5.0_3
+ run_depends
+
+ xproto>=0
+ kbproto>=0
+ libxcb-devel>=0
+ libX11>=1.5.0
+
+ short_desc
+ Base X libraries from modular Xorg X11 - development files
+ source-revisions
+ libX11/libX11-devel.template: da83587443295ca128c08a0017c5c9de903728af
+libX11/template: 100dc48be59c0115a9db20371a7dd06e0cde294a
+ version
+ 1.5.0_3
+
+ libXau
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:15 CET
+ filename
+ libXau-1.0.5_5.armv6l.xbps
+ filename-sha256
+ 884fa8021b079bcb723b307133f9265580ca97c95b2fc32572f470187b0839dd
+ filename-size
+ 3876
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 7468
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libXau
+ pkgver
+ libXau-1.0.5_5
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Authorization Protocol for X
+ source-revisions
+ libXau/libXau-devel.template: 524acf46e85038c1b5cc1e1eb40e727dc4a6e357
+libXau/template: 524acf46e85038c1b5cc1e1eb40e727dc4a6e357
+ version
+ 1.0.5_5
+
+ libXau-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:15 CET
+ filename
+ libXau-dbg-1.0.5_5.armv6l.xbps
+ filename-sha256
+ 4bed84b191d31d6b60c2bda779835d8eca4b151a435219b7b5f897361ce98271
+ filename-size
+ 10836
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 14243
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libXau-dbg
+ pkgver
+ libXau-dbg-1.0.5_5
+ short_desc
+ Authorization Protocol for X (debug files)
+ source-revisions
+ libXau/libXau-devel.template: 524acf46e85038c1b5cc1e1eb40e727dc4a6e357
+libXau/template: 524acf46e85038c1b5cc1e1eb40e727dc4a6e357
+ version
+ 1.0.5_5
+
+ libXau-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:14 CET
+ filename
+ libXau-devel-1.0.5_5.noarch.xbps
+ filename-sha256
+ 0cf471522df4f91ddb1dd3165955f87300207d5b365e4db6fb565e2c1868fc63
+ filename-size
+ 5180
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 6431
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libXau-devel
+ pkgver
+ libXau-devel-1.0.5_5
+ run_depends
+
+ xproto>=0
+ libXau-1.0.5_5
+
+ short_desc
+ Authorization Protocol for X -- development files
+ source-revisions
+ libXau/libXau-devel.template: 524acf46e85038c1b5cc1e1eb40e727dc4a6e357
+libXau/template: 524acf46e85038c1b5cc1e1eb40e727dc4a6e357
+ version
+ 1.0.5_5
+
+ libXcomposite-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-03 15:01 CET
+ filename
+ libXcomposite-devel-0.4.4_1.noarch.xbps
+ filename-sha256
+ fff1fbd4b227dd397efc4a146a7ee9aba13fa15e336a099ac47a651e019b38ff
+ filename-size
+ 6684
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 8189
+ license
+ MIT/X11
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ libXcomposite-devel
+ pkgver
+ libXcomposite-devel-0.4.4_1
+ run_depends
+
+ xproto>=0
+ compositeproto>=0
+ libXfixes-devel>=0
+ libX11-devel>=0
+ libXcomposite>=0.4.4
+
+ short_desc
+ X Composite Library -- development files
+ source-revisions
+ libXcomposite/libXcomposite-devel.template: b0be842babe8079134c615e2767ee69c5d1a99a6
+libXcomposite/template: b0be842babe8079134c615e2767ee69c5d1a99a6
+ version
+ 0.4.4_1
+
+ libXdamage-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-03 14:59 CET
+ filename
+ libXdamage-devel-1.1.4_1.noarch.xbps
+ filename-sha256
+ c88fb208d0e321ffe30dc630152de73b1c45a274a868756782339e56a61c4c41
+ filename-size
+ 2184
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 2581
+ license
+ MIT/X11
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ libXdamage-devel
+ pkgver
+ libXdamage-devel-1.1.4_1
+ run_depends
+
+ xproto>=0
+ damageproto>=0
+ libX11-devel>=0
+ libXfixes-devel>=0
+ libXdamage>=1.1.4
+
+ short_desc
+ The Xdamage extension Library -- development files
+ source-revisions
+ libXdamage/libXdamage-devel.template: dee1f6217247e1556867d9ac49881005ab7ae1b9
+libXdamage/template: dee1f6217247e1556867d9ac49881005ab7ae1b9
+ version
+ 1.1.4_1
+
+ libXdmcp
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:15 CET
+ filename
+ libXdmcp-1.1.1_2.armv6l.xbps
+ filename-sha256
+ 17e20ba81f00a01a2a4048352798528c61dea4130835b79d2c7b10ae0eee5a0b
+ filename-size
+ 21136
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 114575
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libXdmcp
+ pkgver
+ libXdmcp-1.1.1_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ X Display Manager Control Protocol library from X.org
+ source-revisions
+ libXdmcp/libXdmcp-devel.template: d9ff1d5db27e2b9fde5a6a859c9671e066b87a5b
+libXdmcp/template: d9ff1d5db27e2b9fde5a6a859c9671e066b87a5b
+ version
+ 1.1.1_2
+
+ libXdmcp-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:15 CET
+ filename
+ libXdmcp-dbg-1.1.1_2.armv6l.xbps
+ filename-sha256
+ 23a1c99add79f6ce1b523636cbbf8f997dee7f8a0f19cbe51f06d85f505d2c15
+ filename-size
+ 13036
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 16548
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libXdmcp-dbg
+ pkgver
+ libXdmcp-dbg-1.1.1_2
+ short_desc
+ X Display Manager Control Protocol library from X.org (debug files)
+ source-revisions
+ libXdmcp/libXdmcp-devel.template: d9ff1d5db27e2b9fde5a6a859c9671e066b87a5b
+libXdmcp/template: d9ff1d5db27e2b9fde5a6a859c9671e066b87a5b
+ version
+ 1.1.1_2
+
+ libXdmcp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:14 CET
+ filename
+ libXdmcp-devel-1.1.1_2.noarch.xbps
+ filename-sha256
+ 5e1443838dcca40bbbdf2b79e33be75e3994a66b05fd6ad283546746fe537673
+ filename-size
+ 3068
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 6635
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libXdmcp-devel
+ pkgver
+ libXdmcp-devel-1.1.1_2
+ run_depends
+
+ xproto>=0
+ libXdmcp>=1.1.1
+
+ short_desc
+ X Display Manager Control Protocol library from X.org -- development files
+ source-revisions
+ libXdmcp/libXdmcp-devel.template: d9ff1d5db27e2b9fde5a6a859c9671e066b87a5b
+libXdmcp/template: d9ff1d5db27e2b9fde5a6a859c9671e066b87a5b
+ version
+ 1.1.1_2
+
+ libXext
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:14 CET
+ filename
+ libXext-1.3.1_3.armv6l.xbps
+ filename-sha256
+ 7c243263550fced673c217caacc13d599bbea9f482d14e55f50512ef05795052
+ filename-size
+ 39508
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 179083
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libXext
+ pkgver
+ libXext-1.3.1_3
+ run_depends
+
+ libX11>=1.2_1
+ glibc>=2.8_1
+
+ short_desc
+ X Extension library
+ source-revisions
+ libXext/libXext-devel.template: 97762c61d79b6c35625941450cddae8a26a24d1b
+libXext/template: 97762c61d79b6c35625941450cddae8a26a24d1b
+ version
+ 1.3.1_3
+
+ libXext-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:14 CET
+ filename
+ libXext-dbg-1.3.1_3.armv6l.xbps
+ filename-sha256
+ 74797e1840da1017b52360200d5ecae43908617e6003b928308db956e5696124
+ filename-size
+ 183616
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 208142
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libXext-dbg
+ pkgver
+ libXext-dbg-1.3.1_3
+ short_desc
+ X Extension library (debug files)
+ source-revisions
+ libXext/libXext-devel.template: 97762c61d79b6c35625941450cddae8a26a24d1b
+libXext/template: 97762c61d79b6c35625941450cddae8a26a24d1b
+ version
+ 1.3.1_3
+
+ libXext-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:14 CET
+ filename
+ libXext-devel-1.3.1_3.noarch.xbps
+ filename-sha256
+ 7b772346ef165217db68738160f8d06ac2f8466f3a55255266bfb6524eac2069
+ filename-size
+ 58452
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 101385
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libXext-devel
+ pkgver
+ libXext-devel-1.3.1_3
+ run_depends
+
+ xextproto>=0
+ libX11-devel>=0
+ libXext-1.3.1_3
+
+ short_desc
+ X Extension library - development files
+ source-revisions
+ libXext/libXext-devel.template: 97762c61d79b6c35625941450cddae8a26a24d1b
+libXext/template: 97762c61d79b6c35625941450cddae8a26a24d1b
+ version
+ 1.3.1_3
+
+ libXfont-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 11:17 CEST
+ filename
+ libXfont-devel-1.4.5_2.noarch.xbps
+ filename-sha256
+ 4487e329a36264f1ff82b8f8c4fdc06fa0a5fb3daaeadf9766e9bd6b9b07d2f6
+ filename-size
+ 11888
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 49115
+ license
+ MIT
+ long_desc
+
+ This package provides the X font Library from the modular
+ X.org X11 project.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libXfont-devel
+ pkgver
+ libXfont-devel-1.4.5_2
+ run_depends
+
+ xproto>=0
+ fontsproto>=0
+ zlib-devel>=0
+ libfontenc-devel>=0
+ freetype-devel>=0
+ libXfont-1.4.5_2
+
+ short_desc
+ X font Library -- development files
+ version
+ 1.4.5_2
+
+ libXi-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-17 10:25 CET
+ filename
+ libXi-devel-1.6.2_1.noarch.xbps
+ filename-sha256
+ 58ccf60b3a31b022c90a8a7c2b929dbc043f640875369596b0d646c58112e02f
+ filename-size
+ 119172
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 417834
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ libXi-devel
+ pkgver
+ libXi-devel-1.6.2_1
+ run_depends
+
+ inputproto>=0
+ libX11-devel>=0
+ libXext-devel>=0
+ libXi>=1.6.2
+
+ short_desc
+ X Input extension library -- development files
+ source-revisions
+ libXi/libXi-devel.template: f137b874924827d9f86e425740a905f5ea14cbe7
+libXi/template: f137b874924827d9f86e425740a905f5ea14cbe7
+ version
+ 1.6.2_1
+
+ libXrandr
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:16 CET
+ filename
+ libXrandr-1.4.0_3.armv6l.xbps
+ filename-sha256
+ a44f54d859bab3df1cbf9354848a68573129b875ad48564b098034794e0369c1
+ filename-size
+ 9956
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 29328
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libXrandr
+ pkgver
+ libXrandr-1.4.0_3
+ run_depends
+
+ libXext>=1.0.5_1
+ libXrender>=0.9.4_1
+ libX11>=1.2_1
+ glibc>=2.8_1
+
+ short_desc
+ X RandR Library from X.org
+ source-revisions
+ libXrandr/libXrandr-devel.template: 90b8eaa4be2a4d1fbd4aba406ed7e3e42ae5a541
+libXrandr/template: 90b8eaa4be2a4d1fbd4aba406ed7e3e42ae5a541
+ version
+ 1.4.0_3
+
+ libXrandr-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:16 CET
+ filename
+ libXrandr-dbg-1.4.0_3.armv6l.xbps
+ filename-sha256
+ d0c63196fbb9589d7ae6c50790d7749b45c5f1fdb18ee87cce2fc6f30a9c1aa7
+ filename-size
+ 56460
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 63693
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libXrandr-dbg
+ pkgver
+ libXrandr-dbg-1.4.0_3
+ short_desc
+ X RandR Library from X.org (debug files)
+ source-revisions
+ libXrandr/libXrandr-devel.template: 90b8eaa4be2a4d1fbd4aba406ed7e3e42ae5a541
+libXrandr/template: 90b8eaa4be2a4d1fbd4aba406ed7e3e42ae5a541
+ version
+ 1.4.0_3
+
+ libXrandr-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:15 CET
+ filename
+ libXrandr-devel-1.4.0_3.noarch.xbps
+ filename-sha256
+ 898090b3756c90557a34e796d2dd32b7e09938fa4a11ef346e5058126f6e3e30
+ filename-size
+ 9896
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 21792
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libXrandr-devel
+ pkgver
+ libXrandr-devel-1.4.0_3
+ run_depends
+
+ libXext-devel>=0
+ libXrender-devel>=0
+ randrproto>=1.4.0
+ libXrandr-1.4.0_3
+
+ short_desc
+ X RandR Library from X.org -- development files
+ source-revisions
+ libXrandr/libXrandr-devel.template: 90b8eaa4be2a4d1fbd4aba406ed7e3e42ae5a541
+libXrandr/template: 90b8eaa4be2a4d1fbd4aba406ed7e3e42ae5a541
+ version
+ 1.4.0_3
+
+ libXrender
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:09 CET
+ filename
+ libXrender-0.9.7_2.armv6l.xbps
+ filename-sha256
+ ce5a722294beda73bbe7d8bf4cf3736ed03f431c5450382192558b6d7b5bea79
+ filename-size
+ 16188
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 46794
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libXrender
+ pkgver
+ libXrender-0.9.7_2
+ run_depends
+
+ libX11>=1.2_1
+ glibc>=2.8_1
+
+ short_desc
+ X Render Library
+ source-revisions
+ libXrender/libXrender-devel.template: a1be3ce6f59ca6f8b934d15789db30f7ef414745
+libXrender/template: a1be3ce6f59ca6f8b934d15789db30f7ef414745
+ version
+ 0.9.7_2
+
+ libXrender-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:09 CET
+ filename
+ libXrender-dbg-0.9.7_2.armv6l.xbps
+ filename-sha256
+ 3da0ef0ffcb0fe51e88eabb0a4d0e14220e5afb1f262185de7b5081eee412db9
+ filename-size
+ 102112
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 116331
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libXrender-dbg
+ pkgver
+ libXrender-dbg-0.9.7_2
+ short_desc
+ X Render Library (debug files)
+ source-revisions
+ libXrender/libXrender-devel.template: a1be3ce6f59ca6f8b934d15789db30f7ef414745
+libXrender/template: a1be3ce6f59ca6f8b934d15789db30f7ef414745
+ version
+ 0.9.7_2
+
+ libXrender-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:09 CET
+ filename
+ libXrender-devel-0.9.7_2.noarch.xbps
+ filename-sha256
+ f2b2eb50c002813d40804fed55e20f37730931a12b176a84605e78300ff6b90b
+ filename-size
+ 4040
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 13068
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libXrender-devel
+ pkgver
+ libXrender-devel-0.9.7_2
+ run_depends
+
+ xproto>=0
+ renderproto>=0
+ libX11-devel>=0
+ libXrender>=0.9.7
+
+ short_desc
+ X Render Library -- development files
+ source-revisions
+ libXrender/libXrender-devel.template: a1be3ce6f59ca6f8b934d15789db30f7ef414745
+libXrender/template: a1be3ce6f59ca6f8b934d15789db30f7ef414745
+ version
+ 0.9.7_2
+
+ libXtst-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-10 07:29 CEST
+ filename
+ libXtst-devel-1.2.1_2.noarch.xbps
+ filename-sha256
+ 8c90340040133c300cb32aba7ae02ec99c82c9f5220633c38aa8efa18b3561a2
+ filename-size
+ 3804
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 45056
+ license
+ MIT
+ long_desc
+
+ This package provides the X Tst Library from the modular X.org X11 project.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libXtst-devel
+ pkgver
+ libXtst-devel-1.2.1_2
+ run_depends
+
+ recordproto>=0
+ libX11-devel>=0
+ libXext-devel>=0
+ libXi-devel>=0
+ libXtst>=1.2.1_2
+
+ short_desc
+ X Tst Library -- development files
+ version
+ 1.2.1_2
+
+ libXxf86dga-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-29 09:17 CEST
+ filename
+ libXxf86dga-devel-1.1.3_1.noarch.xbps
+ filename-sha256
+ 8e54b52483b75d09a45053a8e9d332f1f7f4652ee3841d13799bb5eb568f61b0
+ filename-size
+ 8948
+ installed_size
+ 106496
+ long_desc
+
+ These functions provide an interface to the server extension
+ XFree86-DGA Extension which allows local programs direct access
+ to the video frame buffer.
+
+ This library is from the modular X.org project.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ libXxf86dga-devel
+ pkgver
+ libXxf86dga-devel-1.1.3_1
+ run_depends
+
+ xf86dgaproto>=0
+ libX11-devel>=0
+ libXext-devel>=0
+ libXxf86dga>=1.1.3
+
+ short_desc
+ libXxf86dga development files
+ version
+ 1.1.3_1
+
+ libXxf86vm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 17:16 CEST
+ filename
+ libXxf86vm-devel-1.1.2_2.noarch.xbps
+ filename-sha256
+ ae1732a68542f104df06a00072f639561e75ffcbd449f6cb29d9866278d64738
+ filename-size
+ 8308
+ homepage
+ http://xorg.freedesktop.org/releases/individual
+ installed_size
+ 12855
+ license
+ MIT
+ long_desc
+
+ These functions provide an interface to the server extension
+ XFree86-VidModeExtension which allows the video modes to be queried
+ and adjusted dynamically and mode switching to be controlled.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libXxf86vm-devel
+ pkgver
+ libXxf86vm-devel-1.1.2_2
+ run_depends
+
+ xf86vidmodeproto>=0
+ libX11-devel>=0
+ libXext-devel>=0
+ libXxf86vm-1.1.2_2
+
+ short_desc
+ Library for the XFree86-VidMode X extension -- development files
+ version
+ 1.1.2_2
+
+ libao-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-21 15:41 CET
+ filename
+ libao-devel-1.1.0_1.noarch.xbps
+ filename-sha256
+ d3e974f7930c3f020e69b11c4a160904477c797b0692366cfa983730feff9084
+ filename-size
+ 21300
+ homepage
+ http://xiph.org/ao/
+ installed_size
+ 98439
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (e99f0ff5f11896dd71a9e46e36164c91ceeb2a02)
+ pkgname
+ libao-devel
+ pkgver
+ libao-devel-1.1.0_1
+ run_depends
+
+ libao>=1.1.0
+
+ short_desc
+ Cross-platform audio output library -- development files
+ source-revisions
+ libao/files/libao.conf: a0f83cf72a97a8a5eb4f19df0221f4ea8850baae
+libao/libao-devel.template: a0f83cf72a97a8a5eb4f19df0221f4ea8850baae
+libao/template: a0f83cf72a97a8a5eb4f19df0221f4ea8850baae
+ version
+ 1.1.0_1
+
+ libapp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 15:10 CET
+ filename
+ libapp-devel-20110513_1.noarch.xbps
+ filename-sha256
+ 22055739dac8d82883205b881321ad18e550272dad07e8ec7faf7d4672da15a5
+ filename-size
+ 2212
+ homepage
+ https://github.com/drotiro/libapp
+ installed_size
+ 2987
+ license
+ LGPL-3
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libapp-devel
+ pkgver
+ libapp-devel-20110513_1
+ run_depends
+
+ libapp>=20110513
+
+ short_desc
+ utilities for repetitive tasks in app development - development files
+ source-revisions
+ libapp/libapp-devel.template: bcfe2d9f5bce3844fa580ab76285e72cc751869d
+libapp/patches/fix_makefile.patch: bcfe2d9f5bce3844fa580ab76285e72cc751869d
+libapp/template: bcfe2d9f5bce3844fa580ab76285e72cc751869d
+ version
+ 20110513_1
+
+ libarchive
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ libarchive-3.1.2_1.armv6l.xbps
+ filename-sha256
+ cd88b3b686310efaf1a277191aa1f2d81aea0bbdace8fa14b6583c9f18282ba2
+ filename-size
+ 202880
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 532768
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libarchive
+ pkgver
+ libarchive-3.1.2_1
+ run_depends
+
+ libssl>=1.0.0_1
+ attr>=2.4.43_1
+ expat>=2.0.0_1
+ liblzma>=5.0.0_1
+ bzip2>=1.0.5_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Library to read/write several different streaming archive formats
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ libarchive-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ libarchive-dbg-3.1.2_1.armv6l.xbps
+ filename-sha256
+ bb7e88cd194fb9262e97133a86709318980575eaf933ba1d3d35a0fbdd16d888
+ filename-size
+ 653372
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 726547
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libarchive-dbg
+ pkgver
+ libarchive-dbg-3.1.2_1
+ short_desc
+ Library to read/write several different streaming archive formats (debug files)
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ libarchive-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 14:37 CET
+ filename
+ libarchive-devel-3.1.2_1.armv6l.xbps
+ filename-sha256
+ dcf635cad7b0dc8d6b09f3783ac5d02d7deaba407555bb194fc3279714108d48
+ filename-size
+ 339572
+ homepage
+ http://www.libarchive.org/
+ installed_size
+ 976713
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libarchive-devel
+ pkgver
+ libarchive-devel-3.1.2_1
+ run_depends
+
+ acl-devel>=0
+ zlib-devel>=0
+ bzip2-devel>=0
+ liblzma-devel>=0
+ openssl-devel>=0
+ expat-devel>=0
+ libarchive>=3.1.2
+
+ short_desc
+ Library to read/write several different streaming archive formats -- development files
+ source-revisions
+ libarchive/bsdcpio.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/bsdtar.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/libarchive-devel.template: 4d3f3059a3244affbb21e0161014bccdb0a6d683
+libarchive/template: 72495a2f94639f86f77c646e7643f0107e1f89c9
+ version
+ 3.1.2_1
+
+ libass-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-22 14:27 CEST
+ filename
+ libass-devel-0.10.1_1.noarch.xbps
+ filename-sha256
+ 7ba7b7c7930ab8c1bdf0bf14d46bcd9f494f1b894eac31f6d5c1d38a3dbfa5c6
+ filename-size
+ 5856
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 16462
+ license
+ MIT
+ long_desc
+
+ The libass package contains A portable library for SSA/ASS subtitles rendering.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libass-devel
+ pkgver
+ libass-devel-0.10.1_1
+ run_depends
+
+ fontconfig-devel>=0
+ enca-devel>=0
+ fribidi-devel>=0
+ libass-0.10.1_1
+
+ short_desc
+ A portable library for SSA/ASS subtitles rendering - development files
+ version
+ 0.10.1_1
+
+ libatasmart-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 11:09 CEST
+ filename
+ libatasmart-devel-0.17_5.noarch.xbps
+ filename-sha256
+ ae0e0b03a60e7b52ef38dd58ea01ebd0709d2c809778ff422191cf5904a6789c
+ filename-size
+ 5080
+ installed_size
+ 17706
+ long_desc
+
+ ATA S.M.A.R.T. Reading and Parsing Library
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libatasmart-devel
+ pkgver
+ libatasmart-devel-0.17_5
+ run_depends
+
+ libudev-devel>=0
+ libatasmart-0.17_5
+
+ short_desc
+ libatasmart development files
+ version
+ 0.17_5
+
+ libblkid
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ libblkid-2.22.2_7.armv6l.xbps
+ filename-sha256
+ 4ea5fbb9f114530609adb4b9259f2a4c2be9fbf52e49c82f9b810c56b9a9232a
+ filename-size
+ 69860
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 169288
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libblkid
+ pkgver
+ libblkid-2.22.2_7
+ run_depends
+
+ libuuid-2.22.2_7
+ libgcc>=4.4.0_1
+ glibc>=2.17_1
+
+ short_desc
+ Library to handle device identification
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libblkid-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ libblkid-dbg-2.22.2_7.armv6l.xbps
+ filename-sha256
+ b05e0b18e6d843f8290cf1528595cec3f89d72bc53d4befa872aa0e445d99013
+ filename-size
+ 260156
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 297225
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libblkid-dbg
+ pkgver
+ libblkid-dbg-2.22.2_7
+ short_desc
+ Library to handle device identification (debug files)
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libblkid-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:54 CET
+ filename
+ libblkid-devel-2.22.2_7.noarch.xbps
+ filename-sha256
+ 9058987e63e0c80a2f27f918393cb1b8001581dec7baccfdfb80dcc101ab4f4b
+ filename-size
+ 5684
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 13771
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libblkid-devel
+ pkgver
+ libblkid-devel-2.22.2_7
+ run_depends
+
+ zlib-devel>=0
+ libuuid-devel-2.22.2_7
+ libblkid-2.22.2_7
+
+ short_desc
+ libblkid development files
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libbluetooth-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 17:12 CEST
+ filename
+ libbluetooth-devel-4.101_3.noarch.xbps
+ filename-sha256
+ 2898f05a0a239dfd4a168c210353e54b828fea31c923c84bf4929a7f36fdf410
+ filename-size
+ 28736
+ homepage
+ http://www.bluez.org/
+ installed_size
+ 157591
+ license
+ GPL-2
+ long_desc
+
+ BlueZ is the official Linux Bluetooth Stack. It is an Open Source project
+ distributed under GNU General Public License (GPL).
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libbluetooth-devel
+ pkgver
+ libbluetooth-devel-4.101_3
+ run_depends
+
+ libbluetooth-4.101_3
+
+ short_desc
+ Development files to use the BlueZ Linux Bluetooth library
+ version
+ 4.101_3
+
+ libbluray-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-30 00:24 CET
+ filename
+ libbluray-devel-0.2.3_1.noarch.xbps
+ filename-sha256
+ 0be561b4d9f32e30e66f06c14241e6a72352d1da9731e3d9dab8a53e963ce246
+ filename-size
+ 8724
+ homepage
+ http://www.videolan.org/developers/libbluray.html
+ installed_size
+ 34624
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ libbluray-devel
+ pkgver
+ libbluray-devel-0.2.3_1
+ run_depends
+
+ libbluray>=0.2.3
+
+ short_desc
+ Library to access Blu-Ray disks for video playback -- development files
+ source-revisions
+ libbluray/libbluray-devel.template: 475663d7b11e8a5521bc019fa95806d61c7d0036
+libbluray/template: 475663d7b11e8a5521bc019fa95806d61c7d0036
+ version
+ 0.2.3_1
+
+ libburn-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-10 09:44 CET
+ filename
+ libburn-devel-1.2.6_1.noarch.xbps
+ filename-sha256
+ 20321cdb5f600fd5774f7eb786c9ef4bbe9f782b97cdb905d2192ae63e6de140
+ filename-size
+ 45164
+ homepage
+ http://www.libburnia-project.org
+ installed_size
+ 180744
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ libburn-devel
+ pkgver
+ libburn-devel-1.2.6_1
+ run_depends
+
+ glibc-devel>=0
+ libburn>=1.2.6
+
+ short_desc
+ libburn development files
+ source-revisions
+ libburn/cdrskin.template: becd9e75a3908df017e581ea3114201a11211978
+libburn/libburn-devel.template: becd9e75a3908df017e581ea3114201a11211978
+libburn/template: becd9e75a3908df017e581ea3114201a11211978
+ version
+ 1.2.6_1
+
+ libcanberra-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-01 10:54 CET
+ filename
+ libcanberra-devel-0.30_1.noarch.xbps
+ filename-sha256
+ 360f5e96ae2ed4566ca714cbab25205ee3519f543b7226c0c10a08ce22b8ea2b
+ filename-size
+ 20736
+ homepage
+ http://0pointer.de/lennart/projects/libcanberra/
+ installed_size
+ 148430
+ license
+ LGPL-2.1
+ long_desc
+
+ libcanberra is an implementation of the XDG Sound Theme and Name
+ Specifications, for generating event sounds on free desktops, such as
+ GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null)
+ and is designed to be portable. It consists of the following parts:
+
+ 1. libcanberra: the main library
+ 2. libcanberra-gtk: some glue code to make it easier to use libcanberra
+ from Gtk+ applications
+ 3. libcanberra-gtk-module: a Gtk+ module that uses libcanberra-gtk to
+ trigger input feedback event sounds
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libcanberra-devel
+ pkgver
+ libcanberra-devel-0.30_1
+ run_depends
+
+ gtk+-devel>=0
+ gtk+3-devel>=0
+ libcanberra-0.30_1
+
+ short_desc
+ libcanberra -- development files
+ version
+ 0.30_1
+
+ libcap
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ filename
+ libcap-2.22_8.armv6l.xbps
+ filename-sha256
+ 48a47a99af619f68913bacec8a31991b7aec504d5bfeca103662aa349964af06
+ filename-size
+ 6772
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 14620
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap
+ pkgver
+ libcap-2.22_8
+ run_depends
+
+ attr>=2.4.43_1
+ glibc>=2.8_1
+
+ short_desc
+ POSIX.1e capabilities suite
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcap-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ filename
+ libcap-dbg-2.22_8.armv6l.xbps
+ filename-sha256
+ d3b374759669b629369a8e9cc8b2bcd022f5eb06bf696304014d77e17a73431d
+ filename-size
+ 16224
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 18620
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap-dbg
+ pkgver
+ libcap-dbg-2.22_8
+ short_desc
+ POSIX.1e capabilities suite (debug files)
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcap-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ filename
+ libcap-devel-2.22_8.armv6l.xbps
+ filename-sha256
+ 45d5f49cb4912b18dbebe835f5e4deed753896cce40f4aebd0751adc80bf8976
+ filename-size
+ 20552
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 34696
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap-devel
+ pkgver
+ libcap-devel-2.22_8
+ run_depends
+
+ glibc-devel>=0
+ libcap>=2.22
+
+ short_desc
+ POSIX.1e capabilities suite -- development files
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcap-pam
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ conf_files
+
+ /etc/security/capability.conf
+
+ filename
+ libcap-pam-2.22_8.armv6l.xbps
+ filename-sha256
+ 6cd140867e5ed666ec29e0a5acf65bd02eaa9f8c8e734631d5bea5c9c209d7b6
+ filename-size
+ 4120
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 7591
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap-pam
+ pkgver
+ libcap-pam-2.22_8
+ run_depends
+
+ libcap>=2.16_1
+ glibc>=2.8_1
+
+ short_desc
+ POSIX.1e capabilities suite -- PAM module
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcap-pam-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ filename
+ libcap-pam-dbg-2.22_8.armv6l.xbps
+ filename-sha256
+ dd1997749216f95cea0f68d8a540bf7cffbeecb3002831d388755782adc8c6a2
+ filename-size
+ 6700
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 8518
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap-pam-dbg
+ pkgver
+ libcap-pam-dbg-2.22_8
+ short_desc
+ POSIX.1e capabilities suite -- PAM module (debug files)
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcap-progs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ filename
+ libcap-progs-2.22_8.armv6l.xbps
+ filename-sha256
+ 7cb5b317f566568556a2a7bb839aa3cbfe666eac11a0af1acc08cf246c1096aa
+ filename-size
+ 13384
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 33416
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap-progs
+ pkgver
+ libcap-progs-2.22_8
+ run_depends
+
+ libcap>=2.16_1
+ glibc>=2.8_1
+
+ short_desc
+ POSIX.1e capabilities suite -- utilities
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcap-progs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:09 CET
+ filename
+ libcap-progs-dbg-2.22_8.armv6l.xbps
+ filename-sha256
+ ebf690fd29a78035bededee003e8c79a0e22d1f1b19f9a96bc44db9bfb3a710e
+ filename-size
+ 25956
+ homepage
+ http://sites.google.com/site/fullycapable/
+ installed_size
+ 45186
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcap-progs-dbg
+ pkgver
+ libcap-progs-dbg-2.22_8
+ short_desc
+ POSIX.1e capabilities suite -- utilities (debug files)
+ source-revisions
+ libcap/libcap-devel.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-pam.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/libcap-progs.template: f5df65977a328df94f479f86058a31c827f55f17
+libcap/template: f5df65977a328df94f479f86058a31c827f55f17
+ version
+ 2.22_8
+
+ libcgroup-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-09 09:35 CEST
+ filename
+ libcgroup-devel-0.38_1.noarch.xbps
+ filename-sha256
+ 0759e0e7ec16c4ed01fcba50a244087627cfc2666aa3716fc767cd8d48eb0377
+ filename-size
+ 13148
+ homepage
+ http://libcg.sourceforge.net
+ installed_size
+ 90112
+ license
+ LGPL-2.1
+ long_desc
+
+ libcgroup aims to provide programmers easily usable APIs to use the
+ control group file system.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libcgroup-devel
+ pkgver
+ libcgroup-devel-0.38_1
+ run_depends
+
+ libcgroup>=0.38
+
+ short_desc
+ Library that abstracts the control group file system in Linux - development files
+ version
+ 0.38_1
+
+ libchamplain-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 08:02 CEST
+ filename
+ libchamplain-devel-0.12.3_2.noarch.xbps
+ filename-sha256
+ c2bce2b9773fd7ceeea2cb0b993db041b9c7855de7576375bac1ac551e5eb5b4
+ filename-size
+ 98216
+ homepage
+ http://projects.gnome.org/libchamplain/
+ installed_size
+ 1843200
+ license
+ LGPL-2.1
+ long_desc
+
+ libchamplain is a Clutter based widget to display rich, eye-candy and
+ interactive maps.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libchamplain-devel
+ pkgver
+ libchamplain-devel-0.12.3_2
+ run_depends
+
+ libsoup-gnome-devel>=0
+ gtk+3-devel>=3.6.0_2
+ clutter-gtk-devel>=1.3.2
+ json-glib-devel>=0
+ sqlite-devel>=0
+ libchamplain>=0.12.3
+
+ short_desc
+ Library aimed to provide a Clutter widget to display rasterized maps - development files
+ version
+ 0.12.3_2
+
+ libcracklib
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:11 CET
+ filename
+ libcracklib-2.8.22_3.armv6l.xbps
+ filename-sha256
+ e8c55c2e5e7869fc06dd01cae8413115bced650d9726df0fee88f499a43eba88
+ filename-size
+ 9880
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 29568
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libcracklib
+ pkgver
+ libcracklib-2.8.22_3
+ replaces
+
+ cracklib<2.8.22_2
+
+ run_depends
+
+ zlib>=1.2.3_1
+ glibc>=2.8_1
+
+ short_desc
+ Password Checking Library -- runtime library
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ libcracklib-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:12 CET
+ filename
+ libcracklib-dbg-2.8.22_3.armv6l.xbps
+ filename-sha256
+ 3d0b42989f44c5d78e6951b0be6891faf075db5eae0b4e90a687b4437df68b9f
+ filename-size
+ 17728
+ homepage
+ http://cracklib.sourceforge.net/
+ installed_size
+ 21874
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libcracklib-dbg
+ pkgver
+ libcracklib-dbg-2.8.22_3
+ short_desc
+ Password Checking Library -- runtime library (debug files)
+ source-revisions
+ cracklib/INSTALL: 100417ed860d0da8eae6db1dbb08358c85f5f345
+cracklib/REMOVE: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-devel.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/cracklib-python.template: 21fcba6fa99ebe8f60a7fc76fee8ce7ba3978aeb
+cracklib/libcracklib.template: e13224f9602ac25ce7d139cc3e88ec99e6037604
+cracklib/template: 100417ed860d0da8eae6db1dbb08358c85f5f345
+ version
+ 2.8.22_3
+
+ libcroco-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-26 06:10 CEST
+ filename
+ libcroco-devel-0.6.8_1.noarch.xbps
+ filename-sha256
+ 53dfee8a7d059b97a701fd84017874c88f6e1c4b93a1f3bee55b60e3995e5fac
+ filename-size
+ 71128
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1061447
+ license
+ LGPL-2.1
+ long_desc
+
+ The Libcroco project is a generic Cascading Style Sheet (CSS)
+ parsing and manipulation toolkit. It provides a Simple Api for CSS
+ and Cascading Style Sheet Object Model parser, a CSS2 selection
+ engine, and an XML/CSS layout/rendering engine.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libcroco-devel
+ pkgver
+ libcroco-devel-0.6.8_1
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=0
+ libcroco-0.6.8_1
+
+ short_desc
+ libcroco -- development files
+ version
+ 0.6.8_1
+
+ libcryptsetup
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:32 CET
+ filename
+ libcryptsetup-1.6.0_1.armv6l.xbps
+ filename-sha256
+ 43a281a5de183cf7200d2f98b317e57a678aade2f3c3d828fab78d7cb9e33f19
+ filename-size
+ 50368
+ homepage
+ http://code.google.com/p/cryptsetup
+ installed_size
+ 123652
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcryptsetup
+ pkgver
+ libcryptsetup-1.6.0_1
+ run_depends
+
+ libuuid>=2.18_1
+ device-mapper>=2.02.54_1
+ libgcrypt>=1.4.4_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Setup virtual encryption devices under dm-crypt Linux - runtime libraries
+ source-revisions
+ cryptsetup/cryptsetup-devel.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/libcryptsetup.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/template: 3b7ab349d6fb21c715b88c24ebd2ab6a2b1cf505
+ version
+ 1.6.0_1
+
+ libcryptsetup-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:32 CET
+ filename
+ libcryptsetup-dbg-1.6.0_1.armv6l.xbps
+ filename-sha256
+ afcccb2f6cba2c8df720f001e45a34a69ae854803db63867dcca63a1e4713cc3
+ filename-size
+ 142160
+ homepage
+ http://code.google.com/p/cryptsetup
+ installed_size
+ 160001
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libcryptsetup-dbg
+ pkgver
+ libcryptsetup-dbg-1.6.0_1
+ short_desc
+ Setup virtual encryption devices under dm-crypt Linux - runtime libraries (debug files)
+ source-revisions
+ cryptsetup/cryptsetup-devel.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/libcryptsetup.template: 2f18d62e9e676e3bb4e6f820c7e2d00b910f4770
+cryptsetup/template: 3b7ab349d6fb21c715b88c24ebd2ab6a2b1cf505
+ version
+ 1.6.0_1
+
+ libcryptui-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-27 11:36 CEST
+ filename
+ libcryptui-devel-3.6.0_1.noarch.xbps
+ filename-sha256
+ 8149c96a34df87dc528e26e1528e774b394cfdcec02b81f02f538f6710d31488
+ filename-size
+ 23280
+ homepage
+ http://www.gnome.org
+ installed_size
+ 307200
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ libcryptui is a library used for prompting for PGP keys. It's likely that this
+ library will become deprecated in the near future.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libcryptui-devel
+ pkgver
+ libcryptui-devel-3.6.0_1
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=3.6.0_2
+ dbus-glib-devel>=0
+ libcryptui>=3.6.0
+
+ short_desc
+ libcryptui -- development files
+ version
+ 3.6.0_1
+
+ libcurl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:00 CET
+ filename
+ libcurl-7.29.0_3.armv6l.xbps
+ filename-sha256
+ 743a1c032902b0b211edf26527f20a20f86428f7d940f5ca63a2e92b372dacd8
+ filename-size
+ 127176
+ homepage
+ http://curl.haxx.se
+ installed_size
+ 312916
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ libcurl
+ pkgver
+ libcurl-7.29.0_3
+ replaces
+
+ curl-libs<7.20.1
+
+ run_depends
+
+ libidn>=1.10_1
+ libssl>=1.0.0_1
+ mit-krb5-libs>=1.8_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The multiprotocol file transfer library
+ source-revisions
+ curl/libcurl-devel.template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+curl/libcurl.template: 3f826eeee67812951ba83e7c0487f266b5491456
+curl/template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+ version
+ 7.29.0_3
+
+ libcurl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:00 CET
+ filename
+ libcurl-dbg-7.29.0_3.armv6l.xbps
+ filename-sha256
+ ba916f74183148d0d8d1851f3297113e33a934775156a2de02368688ea6bafbb
+ filename-size
+ 20864
+ homepage
+ http://curl.haxx.se
+ installed_size
+ 62500
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ libcurl-dbg
+ pkgver
+ libcurl-dbg-7.29.0_3
+ short_desc
+ The multiprotocol file transfer library (debug files)
+ source-revisions
+ curl/libcurl-devel.template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+curl/libcurl.template: 3f826eeee67812951ba83e7c0487f266b5491456
+curl/template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+ version
+ 7.29.0_3
+
+ libcurl-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 21:00 CET
+ filename
+ libcurl-devel-7.29.0_3.armv6l.xbps
+ filename-sha256
+ 09a81901dbee672b840b44f218af4a80479d46fbd4a62493f383756c8e727017
+ filename-size
+ 330352
+ homepage
+ http://curl.haxx.se
+ installed_size
+ 819246
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ libcurl-devel
+ pkgver
+ libcurl-devel-7.29.0_3
+ replaces
+
+ curl-devel<7.20.1
+
+ run_depends
+
+ libidn-devel>=0
+ openssl-devel>=0
+ mit-krb5-devel>=0
+ libcurl-7.29.0_3
+
+ short_desc
+ The multiprotocol file transfer library - development files
+ source-revisions
+ curl/libcurl-devel.template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+curl/libcurl.template: 3f826eeee67812951ba83e7c0487f266b5491456
+curl/template: d4373d179b0c9ed13354a65d1332c1a6d3726d85
+ version
+ 7.29.0_3
+
+ libdaemon
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:00 CET
+ filename
+ libdaemon-0.14_5.armv6l.xbps
+ filename-sha256
+ 78000b15b1c3063ade6494b621639462d1ae5f901d6d1c993bbae561693bad8a
+ filename-size
+ 7776
+ homepage
+ http://0pointer.de/lennart/projects/libdaemon
+ installed_size
+ 18916
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libdaemon
+ pkgver
+ libdaemon-0.14_5
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Lightweight C library that eases the writing of UNIX daemons
+ source-revisions
+ libdaemon/libdaemon-devel.template: bc36f72a63977801e7ea3c71be88916dfceab203
+libdaemon/template: bc36f72a63977801e7ea3c71be88916dfceab203
+ version
+ 0.14_5
+
+ libdaemon-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:00 CET
+ filename
+ libdaemon-dbg-0.14_5.armv6l.xbps
+ filename-sha256
+ ec03dcf50b7b1369235a7f7d0952616bdc9af21d64b869edeb5d4c8e72b041d2
+ filename-size
+ 23744
+ homepage
+ http://0pointer.de/lennart/projects/libdaemon
+ installed_size
+ 28975
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libdaemon-dbg
+ pkgver
+ libdaemon-dbg-0.14_5
+ short_desc
+ Lightweight C library that eases the writing of UNIX daemons (debug files)
+ source-revisions
+ libdaemon/libdaemon-devel.template: bc36f72a63977801e7ea3c71be88916dfceab203
+libdaemon/template: bc36f72a63977801e7ea3c71be88916dfceab203
+ version
+ 0.14_5
+
+ libdaemon-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:00 CET
+ filename
+ libdaemon-devel-0.14_5.noarch.xbps
+ filename-sha256
+ cd27f8977639c79a281e1708c0fdabb9c55884b611d9fc233f1ac8d61efd0d4d
+ filename-size
+ 8112
+ homepage
+ http://0pointer.de/lennart/projects/libdaemon
+ installed_size
+ 29308
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libdaemon-devel
+ pkgver
+ libdaemon-devel-0.14_5
+ run_depends
+
+ libdaemon-0.14_5
+
+ short_desc
+ Lightweight C library that eases the writing of UNIX daemons -- development files
+ source-revisions
+ libdaemon/libdaemon-devel.template: bc36f72a63977801e7ea3c71be88916dfceab203
+libdaemon/template: bc36f72a63977801e7ea3c71be88916dfceab203
+ version
+ 0.14_5
+
+ libdb
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:59 CET
+ filename
+ libdb-4.8.30_3.armv6l.xbps
+ filename-sha256
+ 05e97f92f26f88c1450db27412586cd9e647b7e0d56a55e22e6c6dbb17885153
+ filename-size
+ 430424
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 1244304
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libdb
+ pkgver
+ libdb-4.8.30_3
+ replaces
+
+ db<4.8.26
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ The Berkeley DB from Oracle -- C shared libraries
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ libdb-cxx
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:59 CET
+ filename
+ libdb-cxx-4.8.30_3.armv6l.xbps
+ filename-sha256
+ 7ce551badb18d302eec0e7a337304f17db9b3588dc44a830c74f267d6706f287
+ filename-size
+ 449092
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 1340060
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libdb-cxx
+ pkgver
+ libdb-cxx-4.8.30_3
+ run_depends
+
+ glibc>=2.8_1
+ libstdc++>=4.4.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The Berkeley DB from Oracle - C++ shared libraries
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ libdb-cxx-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:59 CET
+ filename
+ libdb-cxx-dbg-4.8.30_3.armv6l.xbps
+ filename-sha256
+ 024d12d0d270144bcf84f82061ba892fd5e592a62f8e5b66d89d16c524e9cb00
+ filename-size
+ 4054676
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 4284299
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libdb-cxx-dbg
+ pkgver
+ libdb-cxx-dbg-4.8.30_3
+ short_desc
+ The Berkeley DB from Oracle - C++ shared libraries (debug files)
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ libdb-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:59 CET
+ filename
+ libdb-dbg-4.8.30_3.armv6l.xbps
+ filename-sha256
+ 770acd23cd015d462e3e398f73b8e96912fbaeb286417dfa614586168cb130da
+ filename-size
+ 3793028
+ homepage
+ http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html
+ installed_size
+ 3989608
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libdb-dbg
+ pkgver
+ libdb-dbg-4.8.30_3
+ short_desc
+ The Berkeley DB from Oracle -- C shared libraries (debug files)
+ source-revisions
+ db/db-devel.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/db-docs.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb-cxx.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/libdb.template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+db/template: 8e6332274606c503781dd9a3d64b6f9ff449d8f9
+ version
+ 4.8.30_3
+
+ libdrm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-09 09:12 CET
+ filename
+ libdrm-devel-2.4.42_1.noarch.xbps
+ filename-sha256
+ b62cdb4ce5b1a13a67405953793accf2621715a4365988b0c8b464e271f8123c
+ filename-size
+ 54456
+ homepage
+ http://dri.freedesktop.org/
+ installed_size
+ 283913
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libdrm-devel
+ pkgver
+ libdrm-devel-2.4.42_1
+ run_depends
+
+ libudev-devel>=0
+ libdrm-2.4.42_1
+
+ short_desc
+ Userspace interface to kernel DRM services -- development files
+ source-revisions
+ libdrm/libdrm-devel.template: 763cafcb065c092598eb34665989d1140f2d4129
+libdrm/patches/no-pthread-stubs.patch: 763cafcb065c092598eb34665989d1140f2d4129
+libdrm/template: 445e51aad603f7c575f3d39b7488c1307280e507
+ version
+ 2.4.42_1
+
+ libecryptfs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-23 03:01 CET
+ filename
+ libecryptfs-devel-101_1.noarch.xbps
+ filename-sha256
+ b3fd7b20d5ea2ec1cf99b2fe8e2298d3714b1a669556547db363ae392143ae0c
+ filename-size
+ 6932
+ homepage
+ http://ecryptfs.org/
+ installed_size
+ 22252
+ license
+ GPL-3
+ long_desc
+
+ eCryptfs is a POSIX-compliant enterprise-class stacked cryptographic
+ filesystem for Linux.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ libecryptfs-devel
+ pkgver
+ libecryptfs-devel-101_1
+ run_depends
+
+ keyutils-devel>=0
+ libecryptfs>=101_1
+
+ short_desc
+ ecryptfs cryptographic filesystem (development)
+ source-revisions
+ ecryptfs-utils/ecryptfs-utils-python.template: 13312107990376f8a0dc6acfa07dbb72febbd8b1
+ecryptfs-utils/libecryptfs-devel.template: 13312107990376f8a0dc6acfa07dbb72febbd8b1
+ecryptfs-utils/libecryptfs.template: 13312107990376f8a0dc6acfa07dbb72febbd8b1
+ecryptfs-utils/template: e5b55d61e6ed4813a2a89e62237cd776fd5dcddc
+ version
+ 101_1
+
+ libee-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-28 06:48 CEST
+ filename
+ libee-devel-0.4.0_1.noarch.xbps
+ filename-sha256
+ 3f867ff5aeef752d11d1d34e39057d9b6af67da5f99d02b964ae7a447acead7e
+ filename-size
+ 16548
+ homepage
+ http://www.libee.org
+ installed_size
+ 131072
+ license
+ LGPL-2.1
+ long_desc
+
+ This package provides a C library for event expressions, inspired by
+ some CEE ideas.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libee-devel
+ pkgver
+ libee-devel-0.4.0_1
+ run_depends
+
+ libestr-devel>=0
+ libee>=0.4.0
+
+ short_desc
+ Event expression library inspired by CEE - development files
+ version
+ 0.4.0_1
+
+ liberation-fonts-ttf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-29 10:43 CET
+ filename
+ liberation-fonts-ttf-2.00.0_2.noarch.xbps
+ filename-sha256
+ 0a91679ac84d7e880a4145d7abe8064b1b78e8b34e4ca45ec0710487d0e2950c
+ filename-size
+ 1434080
+ homepage
+ http://www.redhat.com/promo/fonts/
+ installed_size
+ 4097649
+ license
+ GPL-2, liberation-fonts-ttf
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ liberation-fonts-ttf
+ pkgver
+ liberation-fonts-ttf-2.00.0_2
+ run_depends
+
+ font-util>=0
+ xbps-triggers>=0.58
+
+ short_desc
+ TrueType fonts from RedHat
+ source-revisions
+ liberation-fonts-ttf/files/30-0-liberation-mono.conf: f449347e5dc068ad8f91faea22ca61272acdf2f0
+liberation-fonts-ttf/files/30-0-liberation-sans.conf: f449347e5dc068ad8f91faea22ca61272acdf2f0
+liberation-fonts-ttf/files/30-0-liberation-serif.conf: f449347e5dc068ad8f91faea22ca61272acdf2f0
+liberation-fonts-ttf/template: f449347e5dc068ad8f91faea22ca61272acdf2f0
+ version
+ 2.00.0_2
+
+ libestr-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-21 12:45 CEST
+ filename
+ libestr-devel-0.1.4_1.noarch.xbps
+ filename-sha256
+ 7e1944998a3aa5f95d218c927cd56e7e8dc7cfd79d87f3288b6ae6a8645a6ad0
+ filename-size
+ 5980
+ homepage
+ http://libestr.adiscon.com
+ installed_size
+ 20480
+ license
+ LGPL-2.1
+ long_desc
+
+ This package provides a C library with some essentials for string processing.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libestr-devel
+ pkgver
+ libestr-devel-0.1.4_1
+ run_depends
+
+ libestr>=0.1.4
+
+ short_desc
+ C library for string processing - development files
+ version
+ 0.1.4_1
+
+ libevent
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:16 CET
+ filename
+ libevent-2.0.21_2.armv6l.xbps
+ filename-sha256
+ 0d0eb1f563aa94fc56ecd99944d9d366563e882f7a4664124310d69d923fe7c8
+ filename-size
+ 113032
+ homepage
+ http://www.monkey.org/~provos/libevent/
+ installed_size
+ 510884
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libevent
+ pkgver
+ libevent-2.0.21_2
+ run_depends
+
+ glibc>=2.8_1
+ libssl>=1.0.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Abstract asynchronous event notification library
+ source-revisions
+ libevent/libevent-devel.template: a55346b0bc71ed8a617e93b4ba0ade4ade25502d
+libevent/template: a55346b0bc71ed8a617e93b4ba0ade4ade25502d
+ version
+ 2.0.21_2
+
+ libevent-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:16 CET
+ filename
+ libevent-dbg-2.0.21_2.armv6l.xbps
+ filename-sha256
+ 00e8184560b4a44eff5b2ab7fb49c78603e424a782db5de859befb97e1174066
+ filename-size
+ 583024
+ homepage
+ http://www.monkey.org/~provos/libevent/
+ installed_size
+ 700843
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libevent-dbg
+ pkgver
+ libevent-dbg-2.0.21_2
+ short_desc
+ Abstract asynchronous event notification library (debug files)
+ source-revisions
+ libevent/libevent-devel.template: a55346b0bc71ed8a617e93b4ba0ade4ade25502d
+libevent/template: a55346b0bc71ed8a617e93b4ba0ade4ade25502d
+ version
+ 2.0.21_2
+
+ libevent-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:16 CET
+ filename
+ libevent-devel-2.0.21_2.noarch.xbps
+ filename-sha256
+ a80a156c0afdb57fad2768ea9ec4620c2d11e7d75e81af8a0a8f780ac4fc4895
+ filename-size
+ 69368
+ homepage
+ http://www.monkey.org/~provos/libevent/
+ installed_size
+ 365723
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libevent-devel
+ pkgver
+ libevent-devel-2.0.21_2
+ run_depends
+
+ openssl-devel>=0
+ libevent>=2.0.21
+
+ short_desc
+ Abstract asynchronous event notification library -- development files
+ source-revisions
+ libevent/libevent-devel.template: a55346b0bc71ed8a617e93b4ba0ade4ade25502d
+libevent/template: a55346b0bc71ed8a617e93b4ba0ade4ade25502d
+ version
+ 2.0.21_2
+
+ libfetch
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 14:31 CET
+ filename
+ libfetch-2.34_1.armv6l.xbps
+ filename-sha256
+ 22f11b7a6ff94094d65afc8235322ea35a5b00e953cfd7fb8b5650c408781a7f
+ filename-size
+ 20584
+ homepage
+ http://www.FreeBSD.org
+ installed_size
+ 52564
+ license
+ Modified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libfetch
+ pkgver
+ libfetch-2.34_1
+ run_depends
+
+ libssl>=1.0.0_1
+ glibc>=2.8_1
+
+ short_desc
+ File Transfer Library for URLs
+ source-revisions
+ libfetch/libfetch-devel.template: be6c89b64e001a103352ca98c0829d21070dbf3b
+libfetch/patches/use-ssl-pending.patch: be6c89b64e001a103352ca98c0829d21070dbf3b
+libfetch/template: 5677b3604f75624348faf16c2d365bd979d1d9f2
+ version
+ 2.34_1
+
+ libfetch-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 14:31 CET
+ filename
+ libfetch-dbg-2.34_1.armv6l.xbps
+ filename-sha256
+ 9410e3e07d46a89b4ba0e072e907bf7a1eb07a26e005821c814085a0640c6d7b
+ filename-size
+ 85268
+ homepage
+ http://www.FreeBSD.org
+ installed_size
+ 94144
+ license
+ Modified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libfetch-dbg
+ pkgver
+ libfetch-dbg-2.34_1
+ short_desc
+ File Transfer Library for URLs (debug files)
+ source-revisions
+ libfetch/libfetch-devel.template: be6c89b64e001a103352ca98c0829d21070dbf3b
+libfetch/patches/use-ssl-pending.patch: be6c89b64e001a103352ca98c0829d21070dbf3b
+libfetch/template: 5677b3604f75624348faf16c2d365bd979d1d9f2
+ version
+ 2.34_1
+
+ libfetch-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 14:31 CET
+ filename
+ libfetch-devel-2.34_1.armv6l.xbps
+ filename-sha256
+ 6b385a5f291fe050d22451540c9299fd147a52b4f22fc855730b96d84c52c45b
+ filename-size
+ 32036
+ homepage
+ http://www.FreeBSD.org
+ installed_size
+ 78906
+ license
+ Modified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libfetch-devel
+ pkgver
+ libfetch-devel-2.34_1
+ run_depends
+
+ openssl-devel>=0
+ libfetch>=2.34
+
+ short_desc
+ File Transfer Library for URLs - development files
+ source-revisions
+ libfetch/libfetch-devel.template: be6c89b64e001a103352ca98c0829d21070dbf3b
+libfetch/patches/use-ssl-pending.patch: be6c89b64e001a103352ca98c0829d21070dbf3b
+libfetch/template: 5677b3604f75624348faf16c2d365bd979d1d9f2
+ version
+ 2.34_1
+
+ libffi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:22 CET
+ filename
+ libffi-3.0.10_4.armv6l.xbps
+ filename-sha256
+ 7e0f285603af403d8c05eda9562a4977a5308063248239bc3e756ce4c2101e22
+ filename-size
+ 11848
+ homepage
+ http://sourceware.org/libffi
+ installed_size
+ 24640
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libffi
+ pkgver
+ libffi-3.0.10_4
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Library supporting Foreign Function Interfaces
+ source-revisions
+ libffi/libffi-devel.template: fa00c959603a7e85e2e85749320454d80cb709ac
+libffi/patches/fix_includedir_path.diff: d30b3d993ab1dbd557f7daf200c071861565caf7
+libffi/template: fa00c959603a7e85e2e85749320454d80cb709ac
+ version
+ 3.0.10_4
+
+ libffi-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:22 CET
+ filename
+ libffi-dbg-3.0.10_4.armv6l.xbps
+ filename-sha256
+ e4b7e98a5830fab46c2c5d6f9d1af15c2834e22bb51bb12c6de4a0f565490cae
+ filename-size
+ 35392
+ homepage
+ http://sourceware.org/libffi
+ installed_size
+ 40903
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libffi-dbg
+ pkgver
+ libffi-dbg-3.0.10_4
+ short_desc
+ Library supporting Foreign Function Interfaces (debug files)
+ source-revisions
+ libffi/libffi-devel.template: fa00c959603a7e85e2e85749320454d80cb709ac
+libffi/patches/fix_includedir_path.diff: d30b3d993ab1dbd557f7daf200c071861565caf7
+libffi/template: fa00c959603a7e85e2e85749320454d80cb709ac
+ version
+ 3.0.10_4
+
+ libffi-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 19:22 CET
+ filename
+ libffi-devel-3.0.10_4.armv6l.xbps
+ filename-sha256
+ 480e1d7c9f485b08b9b9636620a02af8934f6498a908ffd7dc4e41a06e2789c5
+ filename-size
+ 25420
+ homepage
+ http://sourceware.org/libffi
+ installed_size
+ 57001
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libffi-devel
+ pkgver
+ libffi-devel-3.0.10_4
+ run_depends
+
+ glibc-devel>=0
+ libffi>=3.0.10
+
+ short_desc
+ Library supporting Foreign Function Interfaces -- development files
+ source-revisions
+ libffi/libffi-devel.template: fa00c959603a7e85e2e85749320454d80cb709ac
+libffi/patches/fix_includedir_path.diff: d30b3d993ab1dbd557f7daf200c071861565caf7
+libffi/template: fa00c959603a7e85e2e85749320454d80cb709ac
+ version
+ 3.0.10_4
+
+ libfl-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 16:42 CET
+ filename
+ libfl-devel-2.5.37_2.armv6l.xbps
+ filename-sha256
+ a7a7e85ce0ea97370e14f7a3b758327ca3fe6e47f0bfc7b1e527ec432896036f
+ filename-size
+ 3748
+ homepage
+ http://flex.sourceforge.net
+ installed_size
+ 10133
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libfl-devel
+ pkgver
+ libfl-devel-2.5.37_2
+ short_desc
+ The Fast Lexical Analyzer -- static library and headers
+ source-revisions
+ flex/libfl-devel.template: a7325471f801b9d2605a7d4ca0fb6f72fb99c6c1
+flex/template: a7325471f801b9d2605a7d4ca0fb6f72fb99c6c1
+ version
+ 2.5.37_2
+
+ libfm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-14 09:11 CET
+ filename
+ libfm-devel-1.1.0_1.noarch.xbps
+ filename-sha256
+ 85b2b2a04430ee36705152e9a7002b4a5bfb579a4cb9e5a308aa7d3b477327ad
+ filename-size
+ 30780
+ homepage
+ http://pcmanfm.sourceforge.net/
+ installed_size
+ 184886
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (2514d30dcc15763a15b04cab30f3b97017b30859)
+ pkgname
+ libfm-devel
+ pkgver
+ libfm-devel-1.1.0_1
+ run_depends
+
+ gtk+-devel>=0
+ menu-cache-devel>=0
+ libfm-1.1.0_1
+
+ short_desc
+ libfm development files
+ source-revisions
+ libfm/libfm-devel.template: 73586b2dbe9f243b85ecf8898085121811f9e3dc
+libfm/template: 73586b2dbe9f243b85ecf8898085121811f9e3dc
+ version
+ 1.1.0_1
+
+ libgcc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libgcc-4.7.2_2.armv6l.xbps
+ filename-sha256
+ c21fa7bd59a6b8153aac4228c8978e416503f4a59bdbdb4ca0fc6969a26f2066
+ filename-size
+ 33956
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 124795
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libgcc
+ pkgver
+ libgcc-4.7.2_2
+ short_desc
+ GCC version 4.7.2 shared library support
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libgcrypt
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 08:57 CET
+ filename
+ libgcrypt-1.5.0_3.armv6l.xbps
+ filename-sha256
+ 948641492712ee4764bb971daec2cf799a2f48bf501a27239b1b179d7c5d1b0e
+ filename-size
+ 202144
+ homepage
+ http://www.gnupg.org
+ installed_size
+ 494712
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libgcrypt
+ pkgver
+ libgcrypt-1.5.0_3
+ run_depends
+
+ glibc>=2.8_1
+ libgpg-error>=1.6_1
+
+ short_desc
+ GNU cryptographic library
+ source-revisions
+ libgcrypt/libgcrypt-devel.template: 8f99034177ecdbd64c6cbdd6ff25cae9e6c50f9f
+libgcrypt/template: 4a72cb300cb44acbcc8c100f1896d66422b22156
+ version
+ 1.5.0_3
+
+ libgcrypt-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 08:57 CET
+ filename
+ libgcrypt-dbg-1.5.0_3.armv6l.xbps
+ filename-sha256
+ a6b862ced532b2a29ba96e24683d498b95646bba40643a6af162b3c30365f5c8
+ filename-size
+ 466680
+ homepage
+ http://www.gnupg.org
+ installed_size
+ 546141
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libgcrypt-dbg
+ pkgver
+ libgcrypt-dbg-1.5.0_3
+ short_desc
+ GNU cryptographic library (debug files)
+ source-revisions
+ libgcrypt/libgcrypt-devel.template: 8f99034177ecdbd64c6cbdd6ff25cae9e6c50f9f
+libgcrypt/template: 4a72cb300cb44acbcc8c100f1896d66422b22156
+ version
+ 1.5.0_3
+
+ libgcrypt-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 08:56 CET
+ filename
+ libgcrypt-devel-1.5.0_3.noarch.xbps
+ filename-sha256
+ d9e0e2ca1f5d2b4d9e600d68e1669b8fa344ccaccab93e2d9f76c52f2682016d
+ filename-size
+ 97720
+ homepage
+ http://www.gnupg.org
+ installed_size
+ 164882
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libgcrypt-devel
+ pkgver
+ libgcrypt-devel-1.5.0_3
+ run_depends
+
+ libgpg-error-devel>=0
+ libgcrypt>=1.5.0
+
+ short_desc
+ GNU cryptographic library -- development files
+ source-revisions
+ libgcrypt/libgcrypt-devel.template: 8f99034177ecdbd64c6cbdd6ff25cae9e6c50f9f
+libgcrypt/template: 4a72cb300cb44acbcc8c100f1896d66422b22156
+ version
+ 1.5.0_3
+
+ libgdata-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 09:49 CEST
+ filename
+ libgdata-devel-0.13.2_2.noarch.xbps
+ filename-sha256
+ 9a1699b22c45c0be6c8c27c62d55536651303015ae16c0fecc0f6df25f20303b
+ filename-size
+ 385256
+ homepage
+ http://live.gnome.org/libgdata
+ installed_size
+ 7123233
+ license
+ LGPL-2.1
+ long_desc
+
+ libgdata is a GLib-based library for accessing online service APIs using the
+ GData protocol — most notably, Google's services. It provides APIs to access
+ the common Google services, and has full asynchronous support.
+
+ This package contains development files: headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libgdata-devel
+ pkgver
+ libgdata-devel-0.13.2_2
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=0
+ libsoup-devel>=0
+ liboauth-devel>=0
+ gcr-devel>=0
+ gnome-online-accounts-devel>=0
+ libgdata-0.13.2_2
+
+ short_desc
+ Library for accessing GData webservices - development files
+ version
+ 0.13.2_2
+
+ libgee-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-11 07:35 CET
+ filename
+ libgee-devel-0.6.7_1.noarch.xbps
+ filename-sha256
+ 7a115c6a8fd3938c5bcf3567005e100f152ad816e97177daffdac58eb3091ffa
+ filename-size
+ 15752
+ homepage
+ http://live.gnome.org/Libgee
+ installed_size
+ 261810
+ license
+ LGPL-2.1
+ long_desc
+
+ Libgee is a collection library providing GObject-based interfaces and classes
+ for commonly used data structures.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ libgee-devel
+ pkgver
+ libgee-devel-0.6.7_1
+ run_depends
+
+ glib-devel>=0
+ libgee>=0.6.7
+
+ short_desc
+ libgee - development files
+ source-revisions
+ libgee/libgee-devel.template: e60f00b74732c6353f08766ba63d89019a4d6c22
+libgee/template: e60f00b74732c6353f08766ba63d89019a4d6c22
+ version
+ 0.6.7_1
+
+ libgee08-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 20:43 CET
+ filename
+ libgee08-devel-0.8.3_1.noarch.xbps
+ filename-sha256
+ 957d9481ef641b237c739da43a7621dfe6c4ddda8e9453f6ff2f74085e269990
+ filename-size
+ 24500
+ homepage
+ http://live.gnome.org/Libgee
+ installed_size
+ 442952
+ license
+ LGPL-2.1
+ long_desc
+
+ Libgee is a collection library providing GObject-based interfaces and classes
+ for commonly used data structures.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ libgee08-devel
+ pkgver
+ libgee08-devel-0.8.3_1
+ run_depends
+
+ glib-devel>=0
+ libgee08-0.8.3_1
+
+ short_desc
+ libgee08 - development files
+ source-revisions
+ libgee08/libgee08-devel.template: 68818900c79ab479395a6595f87df93453231147
+libgee08/template: 8e9a8ab8ec29692f23456f88727af80ecdf0a4f3
+ version
+ 0.8.3_1
+
+ libgexiv2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 10:07 CEST
+ filename
+ libgexiv2-devel-0.4.1_2.noarch.xbps
+ filename-sha256
+ ec92b513db9253a6fe49e53132d74acb1acb231ac06a77615a3deebfdfdd5cee
+ filename-size
+ 5752
+ homepage
+ http://www.exiv2.org
+ installed_size
+ 31202
+ license
+ GPL-2
+ long_desc
+
+ gexiv2 is a GObject-based wrapper around the Exiv2 library. It makes the
+ basic features of Exiv2 available to GNOME applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libgexiv2-devel
+ pkgver
+ libgexiv2-devel-0.4.1_2
+ run_depends
+
+ glib-devel>=0
+ exiv2-devel>=0
+ libgexiv2-0.4.1_2
+
+ short_desc
+ GObject-based wrapper around the Exiv2 library - development files
+ version
+ 0.4.1_2
+
+ libgirepository-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 23:13 CET
+ filename
+ libgirepository-devel-1.34.2_1.noarch.xbps
+ filename-sha256
+ ccad3f46c22cb250104dcb08502f32b8ab7dad86e6f4efde4b421827682bb4b6
+ filename-size
+ 462908
+ homepage
+ http://live.gnome.org/GObjectInstrospection
+ installed_size
+ 5785001
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ The goal of the project is to describe the APIs and collect them in
+ a uniform, machine readable format.
+
+ This package contains C libraries for handling the introspection data.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libgirepository-devel
+ pkgver
+ libgirepository-devel-1.34.2_1
+ run_depends
+
+ cairo-devel>=0
+ libffi-devel>=0
+ glib-devel>=0
+ libgirepository-1.34.2_1
+
+ short_desc
+ Library for handling GObject introspection data (development files)
+ version
+ 1.34.2_1
+
+ libglade-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 09:42 CEST
+ filename
+ libglade-devel-2.6.4_8.noarch.xbps
+ filename-sha256
+ fd96a780a9d4530b9cfdf5468248ed109fb237e3e6b07d59b9cee3722737ea12
+ filename-size
+ 35780
+ installed_size
+ 231247
+ long_desc
+
+ Libglade is a library that performs a similar job to the C source
+ output routines in the GLADE user interface builder. Whereas GLADE's
+ output routines create C code that can then be compiled, libglade builds
+ the interface from an XML file (GLADE's save format) at runtime. This
+ way you can change the look of a program without needing to recompile.
+
+ Currently it supports all the widgets in current releases, together
+ with support for keyboard accelerators and automatic signal
+ connection.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libglade-devel
+ pkgver
+ libglade-devel-2.6.4_8
+ run_depends
+
+ libxml2-devel>=0
+ gtk+-devel>=0
+ libglade-2.6.4_8
+
+ short_desc
+ libglade (development files)
+ version
+ 2.6.4_8
+
+ libglademm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-19 11:50 CEST
+ filename
+ libglademm-devel-2.6.7_1.noarch.xbps
+ filename-sha256
+ 3bd426e0ce0e0e234fe06b19dffd63049380d8933921b142959e31fc49f26bdb
+ filename-size
+ 23588
+ homepage
+ http://www.gtkmm.org
+ installed_size
+ 385024
+ license
+ GPL-2
+ long_desc
+
+ Libglade is a library that performs a similar job to the C source
+ output routines in the GLADE user interface builder. Whereas GLADE's
+ output routines create C code that can then be compiled, libglade builds
+ the interface from an XML file (GLADE's save format) at runtime. This
+ way you can change the look of a program without needing to recompile.
+
+ Currently it supports all the widgets in current releases, together
+ with support for keyboard accelerators and automatic signal
+ connection.
+
+ This is the gtkmm2 binding
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libglademm-devel
+ pkgver
+ libglademm-devel-2.6.7_1
+ run_depends
+
+ libglademm>=2.6.7
+
+ short_desc
+ libglademm (development files)
+ version
+ 2.6.7_1
+
+ libglib-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 10:18 CET
+ filename
+ libglib-devel-2.34.3_3.armv6l.xbps
+ filename-sha256
+ 77029be0f96aa5992c251c5f1cb57aa2cb00fb9719ae89886b13e54c5eef170d
+ filename-size
+ 988376
+ homepage
+ http://www.gtk.org/
+ installed_size
+ 5495203
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libglib-devel
+ pkgver
+ libglib-devel-2.34.3_3
+ replaces
+
+ glib-devel<2.34.3_3
+
+ run_depends
+
+ zlib-devel>=0
+ pcre-devel>=0
+ libffi-devel>=0
+ glib-2.34.3_3
+
+ short_desc
+ The GNU library of C routines -- development files
+ source-revisions
+ glib/glib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/libglib-devel.template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+glib/template: 4113262ec1ec856ccaa131dc4b8875f3a5805d3a
+ version
+ 2.34.3_3
+
+ libgnome-keyring-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 01:49 CEST
+ filename
+ libgnome-keyring-devel-3.6.0_1.noarch.xbps
+ filename-sha256
+ 32168beb90ba64e579e257f9d8c034841274d5fb800467e4a81587a430c32d0b
+ filename-size
+ 43576
+ homepage
+ http://www.gnome.org
+ installed_size
+ 847872
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ libgnome-keyring is a program that keeps passwords and other secrets for
+ users. It is run as a damon in the session, similar to ssh-agent, and
+ other applications can locate it by an environment variable.
+
+ The program can manage several keyrings, each with its own master
+ password, and there is also a session keyring which is never stored to
+ disk, but forgotten when the session ends.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libgnome-keyring-devel
+ pkgver
+ libgnome-keyring-devel-3.6.0_1
+ run_depends
+
+ glib-devel>=0
+ libgnome-keyring>=3.6.0
+
+ short_desc
+ libgnome-keyring -- development files
+ version
+ 3.6.0_1
+
+ libgnomecanvas-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:32 CEST
+ filename
+ libgnomecanvas-devel-2.30.3_4.noarch.xbps
+ filename-sha256
+ a3fbcf34ae2404e17efb567d6f6e21893e84a0a7196fab3ca79e05dc3251dd66
+ filename-size
+ 53696
+ installed_size
+ 609853
+ long_desc
+
+ This is the canvas widget library for GNOME2. Libgnomecanvas was
+ originally part of the gnome-libs package, but has been split out into
+ a separate package for GNOME2.
+
+ The GNOME canvas is an engine for structured graphics that offers a rich
+ imaging model, high performance rendering, and a powerful, high-level API.
+ It offers a choice of two rendering back-ends, one based on Xlib for
+ extremely fast display, and another based on Libart, a sophisticated,
+ antialiased, alpha-compositing engine. Applications have a choice between
+ the Xlib imaging model or a superset of the PostScript imaging model,
+ depending on the level of graphic sophistication required.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libgnomecanvas-devel
+ pkgver
+ libgnomecanvas-devel-2.30.3_4
+ run_depends
+
+ gtk+-devel>=0
+ libart-devel>=0
+ libgnomecanvas-2.30.3_4
+
+ short_desc
+ libgnomecanvas (development files)
+ version
+ 2.30.3_4
+
+ libgnomecanvasmm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-19 09:16 CEST
+ filename
+ libgnomecanvasmm-devel-2.26.0_1.noarch.xbps
+ filename-sha256
+ 6796eff7d8335b0e53e562da526506ed0b2fe21051b3993ed86667c7bd519488
+ filename-size
+ 22532
+ homepage
+ http://gtkmm.sourceforge.net/
+ installed_size
+ 376832
+ license
+ LGPL-2.1
+ long_desc
+
+ This is the canvas widget library for GNOME2. Libgnomecanvas was
+ originally part of the gnome-libs package, but has been split out into
+ a separate package for GNOME2.
+
+ The GNOME canvas is an engine for structured graphics that offers a rich
+ imaging model, high performance rendering, and a powerful, high-level API.
+ It offers a choice of two rendering back-ends, one based on Xlib for
+ extremely fast display, and another based on Libart, a sophisticated,
+ antialiased, alpha-compositing engine. Applications have a choice between
+ the Xlib imaging model or a superset of the PostScript imaging model,
+ depending on the level of graphic sophistication required.
+
+ This is the gtkmm2 binding.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libgnomecanvasmm-devel
+ pkgver
+ libgnomecanvasmm-devel-2.26.0_1
+ run_depends
+
+ libgnomecanvas-devel>=0
+ libgnomecanvasmm>=2.26.0
+
+ short_desc
+ libgnomecanvasmm (development files)
+ version
+ 2.26.0_1
+
+ libgnomekbd-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-25 17:09 CEST
+ filename
+ libgnomekbd-devel-3.6.0_1.noarch.xbps
+ filename-sha256
+ bad9acb4d64362d053c8a914f142716d366faefecaf9ae3fa68b7b18a2f7b468
+ filename-size
+ 11140
+ installed_size
+ 118784
+ long_desc
+
+ This packages a keyboard configuration library for the GNOME desktop.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libgnomekbd-devel
+ pkgver
+ libgnomekbd-devel-3.6.0_1
+ run_depends
+
+ libxml2-devel>=0
+ gtk+3-devel>=3.6.0_2
+ libxklavier-devel>=0
+ libgnomekbd>=3.6.0
+
+ short_desc
+ libgnomekbd (development files)
+ version
+ 3.6.0_1
+
+ libgnt-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-14 16:05 CET
+ filename
+ libgnt-devel-2.10.6_2.noarch.xbps
+ filename-sha256
+ 0db7c164f1f91882b91bf2a2b8f7b54ec2f54584bfcca2c3e39cf4cf0961b3f4
+ filename-size
+ 24344
+ homepage
+ http://pidgin.im/
+ installed_size
+ 142524
+ license
+ GPL-2
+ long_desc
+
+ Pidgin is an easy to use and free chat client used by millions. Connect to
+ AIM, MSN, Yahoo, and more chat networks all at once.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ libgnt-devel
+ pkgver
+ libgnt-devel-2.10.6_2
+ run_depends
+
+ glib-devel>=0
+ libgnt>=2.10.6
+
+ short_desc
+ IM library extracted from Pidgin (GNT) -- development files
+ source-revisions
+ pidgin/finch-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/finch.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/pidgin-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/template: 07cf69f49a5b4db256613a036cf160aab37fffc8
+ version
+ 2.10.6_2
+
+ libgomp
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libgomp-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 20e7a7eda9b98167d19557c3420a68cb5cc3fcd3fcd6a7dc23ccb5253ddb9760
+ filename-size
+ 20008
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 74579
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libgomp
+ pkgver
+ libgomp-4.7.2_2
+ replaces
+
+ gcc>=4.6.3<4.6.3_3
+
+ run_depends
+
+ libgcc-4.7.2_2
+ glibc>=2.8_1
+
+ short_desc
+ GCC OpenMP v3.0 shared support library
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libgomp-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libgomp-devel-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 03c428aaa6fb75ed9f46c6a7038b76645b44c405b5a5769dcd221b22596dc767
+ filename-size
+ 47232
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 133226
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ long_desc
+
+
+ This package contains GCC OpenMP headers and static libraries
+ for OpenMP v3.0 support.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libgomp-devel
+ pkgver
+ libgomp-devel-4.7.2_2
+ run_depends
+
+ libgomp>=4.7
+
+ short_desc
+ GCC OpenMP v3.0 shared support library - development files
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libgpg-error
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 08:54 CET
+ filename
+ libgpg-error-1.10_3.armv6l.xbps
+ filename-sha256
+ 6a982f06f070a7881905c8349f09a61110d9a887735fd6dc42509c44991c350f
+ filename-size
+ 37564
+ homepage
+ http://www.gnupg.org
+ installed_size
+ 178891
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libgpg-error
+ pkgver
+ libgpg-error-1.10_3
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Library for error values used by GnuPG component
+ source-revisions
+ libgpg-error/libgpg-error-devel.template: 549bca2797b7b42b76b3b0c2a3ca10f22c36cf9a
+libgpg-error/template: 549bca2797b7b42b76b3b0c2a3ca10f22c36cf9a
+ version
+ 1.10_3
+
+ libgpg-error-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 08:54 CET
+ filename
+ libgpg-error-dbg-1.10_3.armv6l.xbps
+ filename-sha256
+ 85671ca0678dd5adcf37baff048214b35fffe40d3d994a54abae011371d7dd64
+ filename-size
+ 23352
+ homepage
+ http://www.gnupg.org
+ installed_size
+ 33097
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libgpg-error-dbg
+ pkgver
+ libgpg-error-dbg-1.10_3
+ short_desc
+ Library for error values used by GnuPG component (debug files)
+ source-revisions
+ libgpg-error/libgpg-error-devel.template: 549bca2797b7b42b76b3b0c2a3ca10f22c36cf9a
+libgpg-error/template: 549bca2797b7b42b76b3b0c2a3ca10f22c36cf9a
+ version
+ 1.10_3
+
+ libgpg-error-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 08:53 CET
+ filename
+ libgpg-error-devel-1.10_3.noarch.xbps
+ filename-sha256
+ 6e3552cb3db6cf90af95da31fb907efd66d744d58ce721b7a62119499c4a29d1
+ filename-size
+ 7704
+ homepage
+ http://www.gnupg.org
+ installed_size
+ 27848
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libgpg-error-devel
+ pkgver
+ libgpg-error-devel-1.10_3
+ run_depends
+
+ libgpg-error>=1.10
+
+ short_desc
+ Library for error values used by GnuPG component - development files
+ source-revisions
+ libgpg-error/libgpg-error-devel.template: 549bca2797b7b42b76b3b0c2a3ca10f22c36cf9a
+libgpg-error/template: 549bca2797b7b42b76b3b0c2a3ca10f22c36cf9a
+ version
+ 1.10_3
+
+ libgphoto2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:47 CET
+ filename
+ libgphoto2-devel-2.4.14_4.noarch.xbps
+ filename-sha256
+ dcfb72af1dfb207a6c5ae9babac81d6c12e6db7b5ff6ef2626f42a745b1a66ab
+ filename-size
+ 159996
+ homepage
+ http://www.gphoto.org
+ installed_size
+ 701458
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ libgphoto2-devel
+ pkgver
+ libgphoto2-devel-2.4.14_4
+ run_depends
+
+ libexif-devel>=0
+ libusb-compat-devel>=0
+ libgphoto2>=2.4.14
+
+ short_desc
+ libgphoto2 - development files
+ source-revisions
+ libgphoto2/libgphoto2-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+libgphoto2/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 2.4.14_4
+
+ libgsf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 04:49 CET
+ filename
+ libgsf-devel-1.14.26_1.noarch.xbps
+ filename-sha256
+ 0dead3323363a1f24162083e1d3000381a21856c22cd7a96477b7d2d34a6d73f
+ filename-size
+ 89112
+ homepage
+ http://www.gnome.org/
+ installed_size
+ 1078651
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ libgsf-devel
+ pkgver
+ libgsf-devel-1.14.26_1
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=0
+ libgsf>=1.14.26
+
+ short_desc
+ Structured File Library - development files
+ version
+ 1.14.26_1
+
+ libgssglue
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:14 CET
+ conf_files
+
+ /etc/gssapi_mech.conf
+
+ filename
+ libgssglue-0.4_2.armv6l.xbps
+ filename-sha256
+ 9a742be48c9f0f7975f6566dd8e743e85f9e8fb1be9bbf1d214c5cbac53e87ba
+ filename-size
+ 11604
+ homepage
+ http://www.citi.umich.edu/projects/nfsv4/linux/
+ installed_size
+ 27770
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libgssglue
+ pkgver
+ libgssglue-0.4_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Mechanism-switch gssapi library
+ source-revisions
+ libgssglue/files/gssapi_mech.conf: e4d2721278cb0c0987f65ea9ad996e30688c2702
+libgssglue/libgssglue-devel.template: 45f4439eefb632175812404e3636d48d1bb3d4ab
+libgssglue/template: 45f4439eefb632175812404e3636d48d1bb3d4ab
+ version
+ 0.4_2
+
+ libgssglue-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:14 CET
+ filename
+ libgssglue-dbg-0.4_2.armv6l.xbps
+ filename-sha256
+ dcb2fad07c339578b5124a24794cd431b2a0d53d8bc32f0837087ad914a780ec
+ filename-size
+ 46272
+ homepage
+ http://www.citi.umich.edu/projects/nfsv4/linux/
+ installed_size
+ 54193
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libgssglue-dbg
+ pkgver
+ libgssglue-dbg-0.4_2
+ short_desc
+ Mechanism-switch gssapi library (debug files)
+ source-revisions
+ libgssglue/files/gssapi_mech.conf: e4d2721278cb0c0987f65ea9ad996e30688c2702
+libgssglue/libgssglue-devel.template: 45f4439eefb632175812404e3636d48d1bb3d4ab
+libgssglue/template: 45f4439eefb632175812404e3636d48d1bb3d4ab
+ version
+ 0.4_2
+
+ libgssglue-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 13:57 CET
+ filename
+ libgssglue-devel-0.4_2.noarch.xbps
+ filename-sha256
+ 01b43f6fdef5ee73c09c7689fd686825652ccdd9aba811c9ebe1c862946069e6
+ filename-size
+ 7116
+ homepage
+ http://www.citi.umich.edu/projects/nfsv4/linux/
+ installed_size
+ 29467
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (3d4355bcf3bcc6b13c6c3269a0db07d034eee92b)
+ pkgname
+ libgssglue-devel
+ pkgver
+ libgssglue-devel-0.4_2
+ run_depends
+
+ glibc-devel>=0
+ libgssglue>=0.4
+
+ short_desc
+ Mechanism-switch gssapi library - development files
+ source-revisions
+ libgssglue/files/gssapi_mech.conf: e4d2721278cb0c0987f65ea9ad996e30688c2702
+libgssglue/libgssglue-devel.template: 45f4439eefb632175812404e3636d48d1bb3d4ab
+libgssglue/template: 45f4439eefb632175812404e3636d48d1bb3d4ab
+ version
+ 0.4_2
+
+ libgudev-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-27 20:44 CET
+ filename
+ libgudev-devel-197_7.noarch.xbps
+ filename-sha256
+ c1971e6bfa50a168bc5d4e7e4562cd5fbfeffa3f1eec6c91bf19fb37ba81dba8
+ filename-size
+ 9080
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 69694
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ libgudev-devel
+ pkgver
+ libgudev-devel-197_7
+ run_depends
+
+ glib-devel>=0
+ libudev-devel>=0
+ libgudev>=0
+
+ short_desc
+ GObject-based wrapper library for libudev - development files
+ source-revisions
+ systemd/INSTALL: e536c060033b7fa86e3da1e02a14eddb76ef6194
+systemd/files/hostname: 4aa81454d07aa85a48a40b390ff0ac48609c4d9a
+systemd/files/locale.conf: 123c7c20db790f9b3180fddad2bd72e1b95b89dc
+systemd/files/os-release: be84e4631614391acd91cd78a0af3b5324c1ed03
+systemd/files/systemd-dirs.tmpfiles: 7629f032539db863008d73ff9be84eb92e6e3766
+systemd/files/vconsole.conf: 4919acb56d5c97722a881e2d37009b436743279b
+systemd/libgudev-devel.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/libgudev.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-analyze.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-python.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/template: e536c060033b7fa86e3da1e02a14eddb76ef6194
+ version
+ 197_7
+
+ libguess-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-20 15:42 CEST
+ filename
+ libguess-devel-1.1_1.noarch.xbps
+ filename-sha256
+ 4d084a7dce5ebf0581e2f6e6760a2861ff0bbd01de8d48a96e90ca4c5eb3fadb
+ filename-size
+ 2916
+ homepage
+ http://www.atheme.org/project/libguess
+ installed_size
+ 32768
+ license
+ custom
+ long_desc
+
+ High-speed character set detection library.
+
+ libguess employs discrete-finite automata to deduce the character set of the
+ input buffer. The advantage of this is that all character sets can be checked
+ in parallel, and quickly. Right now, libguess passes a byte to each DFA on the
+ same pass, meaning that the winning character set can be deduced as
+ efficiently as possible.
+
+ libguess is fully reentrant, using only local stack memory for DFA operations.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libguess-devel
+ pkgver
+ libguess-devel-1.1_1
+ run_depends
+
+ libmowgli-devel>=0
+ libguess>=1.1
+
+ short_desc
+ libguess development files
+ version
+ 1.1_1
+
+ libgusb-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 11:21 CET
+ filename
+ libgusb-devel-0.1.4_1.noarch.xbps
+ filename-sha256
+ 3e66bf9906bfa9f7f52dd9aa7550aa205341aa7765b398319d04e507a3c96e25
+ filename-size
+ 19304
+ homepage
+ https://gitorious.org/gusb/
+ installed_size
+ 209303
+ license
+ LGPL-2.1
+ long_desc
+
+ GUsb is a GObject wrapper for libusb1 that makes it easy to do
+ asynchronous control, bulk and interrupt transfers with proper
+ cancellation and integration into a mainloop.
+ This makes it easy to integrate low level USB transfers with your
+ high-level application or system daemon.
+
+ This package contains the libgudev development files (static libs, headers,
+ etc), a library to interact with udev through the GLib bindings.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libgusb-devel
+ pkgver
+ libgusb-devel-0.1.4_1
+ run_depends
+
+ libudev-devel>=0
+ libgusb-0.1.4_1
+
+ short_desc
+ GLib wrapper around libusb1 - development files
+ version
+ 0.1.4_1
+
+ libgweather-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 14:16 CET
+ filename
+ libgweather-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ 531d537924d30760809c0bcb827274cd2dec71ba67eb554fea85b78154610b9f
+ filename-size
+ 29372
+ homepage
+ http://www.gnome.org/
+ installed_size
+ 329787
+ license
+ LGPL-2.1
+ long_desc
+
+ libgweather is a library to access weather information from online
+ services for numerous locations.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libgweather-devel
+ pkgver
+ libgweather-devel-3.6.2_1
+ run_depends
+
+ glib-devel>=0
+ gdk-pixbuf-devel>=0
+ gtk+3-devel>=0
+ libxml2-devel>=0
+ libsoup-devel>=0
+ libgweather-3.6.2_1
+
+ short_desc
+ libgweather - development files
+ version
+ 3.6.2_1
+
+ libgxps-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:08 CET
+ filename
+ libgxps-devel-0.2.2_4.noarch.xbps
+ filename-sha256
+ 9816fb07d5411d0c1ded941d4edb3080ed886df35c75cfd3e95832a36d404408
+ filename-size
+ 22384
+ homepage
+ http://live.gnome.org/libgxps
+ installed_size
+ 203441
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libgxps-devel
+ pkgver
+ libgxps-devel-0.2.2_4
+ run_depends
+
+ glib-devel>=0
+ libarchive-devel>=0
+ cairo-devel>=0
+ libgxps>=0.2.2
+
+ short_desc
+ GObject base library for XPS documents - development files
+ source-revisions
+ libgxps/libgxps-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+libgxps/patches/libgxpstools_link_to_libm.patch: ac022365b9114850624c392bd13aeaaee8403876
+libgxps/template: 01256a59a2a39dd4d2b27367f78825a1ddbd036e
+ version
+ 0.2.2_4
+
+ libidn
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 22:37 CET
+ filename
+ libidn-1.26_1.armv6l.xbps
+ filename-sha256
+ f0d6ed7e068b577523d790d6a6ef0854245657f9272124a74af67323a98e27b7
+ filename-size
+ 73344
+ homepage
+ http://www.gnu.org/software/libidn/
+ installed_size
+ 379743
+ license
+ GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libidn
+ pkgver
+ libidn-1.26_1
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Internationalized string handling library
+ source-revisions
+ libidn/libidn-devel.template: ce10e3b05bfa32491ace87c80855586b19ebc7ce
+libidn/template: ce10e3b05bfa32491ace87c80855586b19ebc7ce
+ version
+ 1.26_1
+
+ libidn-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 22:37 CET
+ filename
+ libidn-dbg-1.26_1.armv6l.xbps
+ filename-sha256
+ c756574242c5b49c4a32c168342553d132dac2e6ef7482fabd5889b8d512defc
+ filename-size
+ 63968
+ homepage
+ http://www.gnu.org/software/libidn/
+ installed_size
+ 79316
+ license
+ GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libidn-dbg
+ pkgver
+ libidn-dbg-1.26_1
+ short_desc
+ Internationalized string handling library (debug files)
+ source-revisions
+ libidn/libidn-devel.template: ce10e3b05bfa32491ace87c80855586b19ebc7ce
+libidn/template: ce10e3b05bfa32491ace87c80855586b19ebc7ce
+ version
+ 1.26_1
+
+ libidn-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-29 09:30 CET
+ filename
+ libidn-devel-1.26_1.noarch.xbps
+ filename-sha256
+ 72822d9003395ff1198f292d83453258566c09dc3477658f6424e30542306059
+ filename-size
+ 107036
+ homepage
+ http://www.gnu.org/software/libidn/
+ installed_size
+ 142297
+ license
+ GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ libidn-devel
+ pkgver
+ libidn-devel-1.26_1
+ run_depends
+
+ libidn>=1.26
+
+ short_desc
+ Internationalized string handling library - development files
+ source-revisions
+ libidn/libidn-devel.template: ce10e3b05bfa32491ace87c80855586b19ebc7ce
+libidn/template: ce10e3b05bfa32491ace87c80855586b19ebc7ce
+ version
+ 1.26_1
+
+ libieee1284-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ libieee1284-devel-0.2.10_1.noarch.xbps
+ filename-sha256
+ dfc513e68489dac75cf664ab29db9bf84bd64cd9fae86e553167e1f35a2d3252
+ filename-size
+ 27536
+ homepage
+ http://cyberelk.net/tim/libieee1284
+ installed_size
+ 176128
+ license
+ GPL-2
+ long_desc
+
+ This library is intended to be used by applications that need to
+ communicate with (or at least identify) devices that are attached via
+ a parallel port.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ libieee1284-devel
+ pkgver
+ libieee1284-devel-0.2.10_1
+ run_depends
+
+ libieee1284>=0.2.10
+
+ short_desc
+ A library to query devices connected in parallel port -- development files
+ version
+ 0.2.10_1
+
+ libisofs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-10 09:40 CET
+ filename
+ libisofs-devel-1.2.6_1.noarch.xbps
+ filename-sha256
+ db1d11ba7ad4118af031bcb8b27dff86754a5e3399f59da610a9d005d227e8f7
+ filename-size
+ 55632
+ homepage
+ http://www.libburnia-project.org
+ installed_size
+ 261804
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ libisofs-devel
+ pkgver
+ libisofs-devel-1.2.6_1
+ run_depends
+
+ glibc-devel>=0
+ zlib-devel>=0
+ acl-devel>=0
+ attr-devel>=0
+ libisofs>=1.2.6
+
+ short_desc
+ Library to create ISO9660 images -- development files
+ source-revisions
+ libisofs/libisofs-devel.template: 2c3b6525ea72d94a5b2e3355db0a43b07ee38c50
+libisofs/template: 2c3b6525ea72d94a5b2e3355db0a43b07ee38c50
+ version
+ 1.2.6_1
+
+ libitm
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libitm-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 7a118f2e0fc7881e3a91233b216d71d65741806d399fa4e5dd996d4b233e83a1
+ filename-size
+ 70224
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 439316
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libitm
+ pkgver
+ libitm-4.7.2_2
+ run_depends
+
+ libgcc-4.7.2_2
+ glibc>=2.8_1
+
+ short_desc
+ GCC Transactional Memory support library
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libkmod
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 10:44 CET
+ filename
+ libkmod-12_2.armv6l.xbps
+ filename-sha256
+ 27f280d78ffa81e0c4e42c33a8927f03d08ec8235cabb5d99f65d3e55aa0403d
+ filename-size
+ 29204
+ homepage
+ http://git.profusion.mobi/cgit.cgi/kmod.git
+ installed_size
+ 72444
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libkmod
+ pkgver
+ libkmod-12_2
+ run_depends
+
+ liblzma>=5.0.0_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Linux kernel module handling - runtime shared library
+ source-revisions
+ kmod/files/depmod-search.conf: 5ffcb7c73f4a0258fd773e86db109d2f09f8212e
+kmod/libkmod-devel.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/libkmod.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+ version
+ 12_2
+
+ libkmod-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 10:44 CET
+ filename
+ libkmod-dbg-12_2.armv6l.xbps
+ filename-sha256
+ 8c4fa8ae601bfa4ad48b94d867aba6c8cf451a326af0f76cbfda949fc6a0227d
+ filename-size
+ 106732
+ homepage
+ http://git.profusion.mobi/cgit.cgi/kmod.git
+ installed_size
+ 122704
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libkmod-dbg
+ pkgver
+ libkmod-dbg-12_2
+ short_desc
+ Linux kernel module handling - runtime shared library (debug files)
+ source-revisions
+ kmod/files/depmod-search.conf: 5ffcb7c73f4a0258fd773e86db109d2f09f8212e
+kmod/libkmod-devel.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/libkmod.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+ version
+ 12_2
+
+ libkmod-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 17:14 CET
+ filename
+ libkmod-devel-12_2.noarch.xbps
+ filename-sha256
+ ecb695268c9f62a76c7d1dd260189e10a73b30d891b4b99433ef1f2eaccfd491
+ filename-size
+ 3456
+ homepage
+ http://git.profusion.mobi/cgit.cgi/kmod.git
+ installed_size
+ 9661
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libkmod-devel
+ pkgver
+ libkmod-devel-12_2
+ run_depends
+
+ zlib-devel>=0
+ libkmod>=12
+
+ short_desc
+ Linux kernel module handling - development files
+ source-revisions
+ kmod/files/depmod-search.conf: 5ffcb7c73f4a0258fd773e86db109d2f09f8212e
+kmod/libkmod-devel.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/libkmod.template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+kmod/template: 345caa8b1fa53b5da98aaaf1d8f0b2667402a328
+ version
+ 12_2
+
+ libldap-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-14 09:51 CEST
+ filename
+ libldap-devel-2.4.33_1.noarch.xbps
+ filename-sha256
+ 5072affeae9153707f6b4589e46ec6c5994008376018a4fce88f3aa8c2cdd8c1
+ filename-size
+ 104608
+ homepage
+ http://www.openldap.org
+ installed_size
+ 217786
+ license
+ OpenLDAP License v2.8 -- BSD alike
+ long_desc
+
+ These are the run-time libraries for the OpenLDAP (Lightweight Directory
+ Access Protocol) servers and clients.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libldap-devel
+ pkgver
+ libldap-devel-2.4.33_1
+ run_depends
+
+ openssl-devel>=0
+ libsasl-devel>=0
+ libldap-2.4.33_1
+
+ short_desc
+ OpenLDAP libraries - development files
+ version
+ 2.4.33_1
+
+ liblvm2app
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:22 CET
+ filename
+ liblvm2app-2.02.98_3.armv6l.xbps
+ filename-sha256
+ 219a2ef0d22bf4314a4b13ab523d74f4411ce8b0a7f0fb1697c8fbeffc5e978d
+ filename-size
+ 216048
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 594664
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ liblvm2app
+ pkgver
+ liblvm2app-2.02.98_3
+ run_depends
+
+ libudev>=183_1
+ glibc>=2.8_1
+ device-mapper-2.02.98_3
+ libgcc>=4.4.0_1
+
+ short_desc
+ LVM2 application library
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ liblvm2app-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:22 CET
+ filename
+ liblvm2app-dbg-2.02.98_3.armv6l.xbps
+ filename-sha256
+ 1a900e81a5fa93ec4c96732159901d5f7550d8907f687085ff562586415d733e
+ filename-size
+ 704420
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 795575
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ liblvm2app-dbg
+ pkgver
+ liblvm2app-dbg-2.02.98_3
+ short_desc
+ LVM2 application library (debug files)
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ liblvm2app-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:21 CET
+ filename
+ liblvm2app-devel-2.02.98_3.noarch.xbps
+ filename-sha256
+ c685887f558eb1860f753c3926b7e787debe5cca1ffcabed0e7466609b8b9078
+ filename-size
+ 8600
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 43117
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ liblvm2app-devel
+ pkgver
+ liblvm2app-devel-2.02.98_3
+ run_depends
+
+ device-mapper-devel-2.02.98_3
+ liblvm2app-2.02.98_3
+
+ short_desc
+ LVM2 application library - development files
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ liblzma
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:36 CET
+ filename
+ liblzma-5.0.4_3.armv6l.xbps
+ filename-sha256
+ cd9195daf1e0d279f58e686d15e8f6068883e334929c5e493dfd9c1aef1e3b4f
+ filename-size
+ 59288
+ homepage
+ http://tukani.org/xz
+ installed_size
+ 121400
+ license
+ Public domain, GPL-2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ liblzma
+ pkgver
+ liblzma-5.0.4_3
+ replaces
+
+ xz<5.0.0
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ XZ-format compression library
+ source-revisions
+ xz/liblzma-devel.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/liblzma.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+ version
+ 5.0.4_3
+
+ liblzma-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:37 CET
+ filename
+ liblzma-dbg-5.0.4_3.armv6l.xbps
+ filename-sha256
+ b5e4d5a31ed65bab1a4b42f0c3cff5b77b37d822ec86fade59f48d3d2176e22a
+ filename-size
+ 150240
+ homepage
+ http://tukani.org/xz
+ installed_size
+ 166460
+ license
+ Public domain, GPL-2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ liblzma-dbg
+ pkgver
+ liblzma-dbg-5.0.4_3
+ short_desc
+ XZ-format compression library (debug files)
+ source-revisions
+ xz/liblzma-devel.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/liblzma.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+ version
+ 5.0.4_3
+
+ liblzma-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:37 CET
+ filename
+ liblzma-devel-5.0.4_3.armv6l.xbps
+ filename-sha256
+ 76e574c7e93e7003f7c99632e5d1116514fd9b9701da129f7e73d9984b69258b
+ filename-size
+ 100252
+ homepage
+ http://tukani.org/xz
+ installed_size
+ 364800
+ license
+ Public domain, GPL-2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ liblzma-devel
+ pkgver
+ liblzma-devel-5.0.4_3
+ replaces
+
+ xz-devel>=0
+
+ run_depends
+
+ glibc-devel>=0
+ liblzma>=5.0.4
+
+ short_desc
+ XZ-format compression library - development files
+ source-revisions
+ xz/liblzma-devel.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/liblzma.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+ version
+ 5.0.4_3
+
+ libmad-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 11:06 CEST
+ filename
+ libmad-devel-0.15.1b_4.noarch.xbps
+ filename-sha256
+ aa11544629024f8031e83109545384f2dfa4cd3c22bbb45b64e6378cafac2f7d
+ filename-size
+ 8140
+ installed_size
+ 27323
+ long_desc
+
+ MAD (libmad) is a high-quality MPEG audio decoder. It currently
+ supports MPEG-1 and the MPEG-2 extension to Lower Sampling Frequencies,
+ as well as the so-called MPEG 2.5 format. All three audio layers
+ (Layer I, Layer II, and Layer III a.k.a. MP3) are fully implemented.
+
+ MAD does not yet support MPEG-2 multichannel audio (although it
+ should be backward compatible with such streams) nor does it
+ currently support AAC.
+
+ MAD has the following special features:
+
+ - 24-bit PCM output
+ - 100% fixed-point (integer) computation
+ - completely new implementation based on the ISO/IEC standards
+ - distributed under the terms of the GNU General Public License (GPL)
+
+ Because MAD provides full 24-bit PCM output, applications using
+ MAD are able to produce high quality audio. Even when the output
+ device supports only 16-bit PCM, applications can use the extra
+ resolution to increase the audible dynamic range through the use
+ of dithering or noise shaping.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libmad-devel
+ pkgver
+ libmad-devel-0.15.1b_4
+ run_depends
+
+ libmad-0.15.1b_4
+
+ short_desc
+ High-quality MPEG audio decoder (development files)
+ version
+ 0.15.1b_4
+
+ libmagic
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:15 CET
+ filename
+ libmagic-5.12_2.armv6l.xbps
+ filename-sha256
+ bee91e06481d7294e6fd8f24edf9e3bf10f1fee07e26e7db2a789e21680aa02e
+ filename-size
+ 168364
+ homepage
+ http://www.darwinsys.com/file/
+ installed_size
+ 2463585
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libmagic
+ pkgver
+ libmagic-5.12_2
+ replaces
+
+ file<5.12
+
+ run_depends
+
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ File type identification library
+ source-revisions
+ file/file-devel.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/libmagic.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/template: 5bd75b87c8e395aa5db33700403636a16a1cd4b8
+ version
+ 5.12_2
+
+ libmagic-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 14:15 CET
+ filename
+ libmagic-dbg-5.12_2.armv6l.xbps
+ filename-sha256
+ c2847505798d62583ffa658eb96b5e22648ac9f55f25d979e29473ccfa8adffb
+ filename-size
+ 106344
+ homepage
+ http://www.darwinsys.com/file/
+ installed_size
+ 118705
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libmagic-dbg
+ pkgver
+ libmagic-dbg-5.12_2
+ short_desc
+ File type identification library (debug files)
+ source-revisions
+ file/file-devel.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/libmagic.template: d510cbdd4c88e20303cc02ab2d787a8fa2ca742a
+file/template: 5bd75b87c8e395aa5db33700403636a16a1cd4b8
+ version
+ 5.12_2
+
+ libmagick-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:44 CET
+ filename
+ libmagick-devel-6.8.0.7_2.noarch.xbps
+ filename-sha256
+ 30b07895bdedf066b01d9b6552b7253dfe70f712393d02ba8183cbb49bff0bfd
+ filename-size
+ 4961260
+ homepage
+ http://www.imagemagick.org/
+ installed_size
+ 36881233
+ license
+ ImageMagick, MIT
+ long_desc
+
+
+ This package contains headers and other related development files
+ with MagickCore.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ libmagick-devel
+ pkgver
+ libmagick-devel-6.8.0.7_2
+ run_depends
+
+ libmagick>=6.8.0.7
+
+ short_desc
+ ImageMagick low-level image manipulation development files
+ source-revisions
+ ImageMagick/libmagick-devel.template: bdc98d23a8f790d7134b4296832ef9b1e91c726e
+ImageMagick/libmagick-perl.template: 10bd0dc7ef10ccfa94449288a955ddf350ae0095
+ImageMagick/libmagick.template: b812fa631669cf5a8b7df70cb157b35738cac36a
+ImageMagick/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 6.8.0.7_2
+
+ libmikmod-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-07 09:09 CET
+ filename
+ libmikmod-devel-3.2.0_1.noarch.xbps
+ filename-sha256
+ f35d7f977e2f0cf320527fdb11a6a0e49b1177a3f6c7928aafc68ba20cf97b23
+ filename-size
+ 42544
+ homepage
+ http://mikmod.shlomifish.org/
+ installed_size
+ 66897
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ The MikMod sound library is an excellent way for a programmer to
+ add music and sound effects to an application. It is a powerful
+ and flexible library, with a simple and easy-to-learn API.
+
+ Besides, the library is very portable and runs under a lot of
+ Unices, as well as under OS/2, MacOS and Windows. Third party
+ individuals also maintain ports on other systems, including MS-DOS,
+ and BeOS.
+
+ MikMod is able to play a wide range of module formats, as well as
+ digital sound files. It can take advantage of particular features
+ of your system, such as sound redirection over the network. And
+ due to its modular nature, the library can be extended to support
+ more sound or module formats, as well as new hardware or other
+ sound output capabilities, as they appear.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (806312002cc7bb78b97a256dac03acd44259db0d)
+ pkgname
+ libmikmod-devel
+ pkgver
+ libmikmod-devel-3.2.0_1
+ run_depends
+
+ libmikmod>=3.2.0
+
+ short_desc
+ MikMod Sound Library (development files)
+ source-revisions
+ libmikmod/libmikmod-devel.template: d019b3ba6735fbb7db1a6476c18f1b74292a0bcd
+libmikmod/patches/libmikmod-3.1.12-loopingvolume-fix.diff: 33965b51bc72a902992e62a1bad73f31241fd97f
+libmikmod/patches/libmikmod-3.2.0-64bit-fix.diff: d019b3ba6735fbb7db1a6476c18f1b74292a0bcd
+libmikmod/template: d019b3ba6735fbb7db1a6476c18f1b74292a0bcd
+ version
+ 3.2.0_1
+
+ libmng-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 11:04 CET
+ filename
+ libmng-devel-1.0.10_5.noarch.xbps
+ filename-sha256
+ a6fa410e973f9eabc6c832eb8be3ff3e038ef67893a349cddbb60317572eb139
+ filename-size
+ 42512
+ homepage
+ http://www.libmng.com
+ installed_size
+ 233755
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ libmng-devel
+ pkgver
+ libmng-devel-1.0.10_5
+ run_depends
+
+ libjpeg-turbo-devel>=0
+ zlib-devel>=0
+ lcms-devel>=0
+ libmng>=1.0.10
+
+ short_desc
+ Multiple-image Network Graphics (MNG) reference library -- development files
+ source-revisions
+ libmng/libmng-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+libmng/patches/configure.patch: 20ea73e25acbea081bf48cbbc3312789ae7aacea
+libmng/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 1.0.10_5
+
+ libmount
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ libmount-2.22.2_7.armv6l.xbps
+ filename-sha256
+ 40784fd9120e08fd53cdd89df72477b4ada4c8f0962603ec6457d54b38237e17
+ filename-size
+ 68120
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 184336
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libmount
+ pkgver
+ libmount-2.22.2_7
+ run_depends
+
+ libblkid-2.22.2_7
+ libuuid-2.22.2_7
+ libgcc>=4.4.0_1
+ glibc>=2.17_1
+
+ short_desc
+ A mount(8) library
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libmount-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ libmount-dbg-2.22.2_7.armv6l.xbps
+ filename-sha256
+ 41a2aa4f4fc7fbcfe762af8971f3d53bf5a763cab92d6816290af3bef47377c8
+ filename-size
+ 218524
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 254074
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libmount-dbg
+ pkgver
+ libmount-dbg-2.22.2_7
+ short_desc
+ A mount(8) library (debug files)
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libmount-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:54 CET
+ filename
+ libmount-devel-2.22.2_7.noarch.xbps
+ filename-sha256
+ bbf7966c42ae7b9a31868bce00b576933f994fb222e30eda2329240be6ad8907
+ filename-size
+ 6216
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 25571
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libmount-devel
+ pkgver
+ libmount-devel-2.22.2_7
+ run_depends
+
+ libblkid-devel-2.22.2_7
+ libmount-2.22.2_7
+
+ short_desc
+ mount(8) library development files
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libmowgli-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-20 15:01 CEST
+ filename
+ libmowgli-devel-2.0.0_3.noarch.xbps
+ filename-sha256
+ b53da8e30c0bd00514296cf1130ea84b17ef47903be9d3a2e73fa2814fe55515
+ filename-size
+ 21880
+ homepage
+ http://www.atheme.org/project/mowgli
+ installed_size
+ 307200
+ license
+ MIT
+ long_desc
+
+ Performance and usability-oriented extensions to C.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libmowgli-devel
+ pkgver
+ libmowgli-devel-2.0.0_3
+ run_depends
+
+ openssl-devel>=0
+ libmowgli>=2.0.0
+
+ short_desc
+ libmowgli development files
+ version
+ 2.0.0_3
+
+ libmp4v2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 23:44 CET
+ filename
+ libmp4v2-devel-2.0.0_1.noarch.xbps
+ filename-sha256
+ e882291b3f68a9603b031fd84dd5eb15da69033454bc72eb9f94efb3178bdff7
+ filename-size
+ 22444
+ homepage
+ http://code.google.com/p/mp4v2/
+ installed_size
+ 118967
+ license
+ MPL-1.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ libmp4v2-devel
+ pkgver
+ libmp4v2-devel-2.0.0_1
+ run_depends
+
+ libmp4v2>=2.0.0
+
+ short_desc
+ MPEG-4 library from mpeg4ip -- development files
+ source-revisions
+ libmp4v2/libmp4v2-devel.template: 182c9b0d29e68111c910fc3c90f779136eaed7cd
+libmp4v2/mpeg4ip.template: 182c9b0d29e68111c910fc3c90f779136eaed7cd
+libmp4v2/template: 182c9b0d29e68111c910fc3c90f779136eaed7cd
+ version
+ 2.0.0_1
+
+ libmtp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-23 20:55 CEST
+ filename
+ libmtp-devel-1.1.5_1.noarch.xbps
+ filename-sha256
+ b6fbd9f9846d30760423d7dd8e9a35128b82391f1c8e4ef7156e2566381afbdb
+ filename-size
+ 8756
+ homepage
+ http://libmtp.sourceforge.net
+ installed_size
+ 61440
+ license
+ LGPL-2.1
+ long_desc
+
+ libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP)
+ in the form of a library suitable primarily for POSIX compliant operating
+ systems.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libmtp-devel
+ pkgver
+ libmtp-devel-1.1.5_1
+ run_depends
+
+ libusb-devel>=0
+ libmtp>=1.1.5
+
+ short_desc
+ libmtp development files
+ version
+ 1.1.5_1
+
+ libmudflap
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libmudflap-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 80858d8f7803d9099043a4ed770d4cd7482f667b29970d2dc3102f5f6e759881
+ filename-size
+ 44908
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 318520
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libmudflap
+ pkgver
+ libmudflap-4.7.2_2
+ run_depends
+
+ glibc>=2.17_1
+
+ short_desc
+ GCC mudflap shared support library
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libmudflap-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libmudflap-devel-4.7.2_2.armv6l.xbps
+ filename-sha256
+ b2a82a341131b94041f921b6a3f87188d6f3aed38376afa8e007d6dc80b4aa62
+ filename-size
+ 47672
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 390810
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libmudflap-devel
+ pkgver
+ libmudflap-devel-4.7.2_2
+ run_depends
+
+ libmudflap>=4.7
+
+ short_desc
+ GCC mudflap shared support library (development files)
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libmuffin-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-28 20:23 CET
+ filename
+ libmuffin-devel-1.1.2_1.noarch.xbps
+ filename-sha256
+ 5bb81d9d77a737849c88e82742b00b4aaecf89944f92290daba792ac474a2e06
+ filename-size
+ 45072
+ homepage
+ http://www.gnu.org/software/sed
+ installed_size
+ 385726
+ license
+ GPL-3
+ long_desc
+
+ This package contains muffin, The Cinnamon window manager based on Mutter 3.2.1.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ libmuffin-devel
+ pkgver
+ libmuffin-devel-1.1.2_1
+ run_depends
+
+ libmuffin-1.1.2_1
+
+ short_desc
+ The Cinnamon window manager (development files)
+ source-revisions
+ muffin/libmuffin-devel.template: 3e2039c1fdc98889fbee95119caa244a75711516
+muffin/libmuffin.template: aea0db7d3b78816f58fca22fd8a2a2953872088c
+muffin/template: 0721ffe70119e7701c28e85f0664745d5e6b3757
+ version
+ 1.1.2_1
+
+ libmusicbrainz5-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 09:03 CEST
+ filename
+ libmusicbrainz5-devel-5.0.1_1.noarch.xbps
+ filename-sha256
+ 28fc6100797c259e767c113e78a862fc838d85733ecdd99bef48bda18c126dcb
+ filename-size
+ 33412
+ homepage
+ http://musicbrainz.org/
+ installed_size
+ 450560
+ license
+ LGPL-2.1
+ long_desc
+
+ MusicBrainz is an open music encyclopedia that collects, and makes available
+ to the public, music metadata.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libmusicbrainz5-devel
+ pkgver
+ libmusicbrainz5-devel-5.0.1_1
+ run_depends
+
+ neon-devel>=0
+ libmusicbrainz5>=5.0.1
+
+ short_desc
+ Library That Provides Access to the MusicBrainz Server (5.x) (development files)
+ version
+ 5.0.1_1
+
+ libnfs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-30 00:30 CET
+ filename
+ libnfs-devel-1.3.0_1.noarch.xbps
+ filename-sha256
+ aa8dc27fe5f6293c51019bece1d9d7a517d0051ed5a8d8f0d037923060d78834
+ filename-size
+ 12836
+ homepage
+ https://github.com/sahlberg/libnfs
+ installed_size
+ 113884
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ libnfs-devel
+ pkgver
+ libnfs-devel-1.3.0_1
+ run_depends
+
+ libnfs>=1.3.0
+
+ short_desc
+ Client library for accessing NFS shares -- development files
+ source-revisions
+ libnfs/libnfs-devel.template: 08d8cce4cf23c09b4be3512bb253bf1d850148ab
+libnfs/template: 08d8cce4cf23c09b4be3512bb253bf1d850148ab
+ version
+ 1.3.0_1
+
+ libnfsidmap-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-18 08:57 UTC
+ filename
+ libnfsidmap-devel-0.25_1.noarch.xbps
+ filename-sha256
+ 2cbb6a5da6b87dbfa0f0e44c23b17440986b327ebadd047928fa24528dfec5c8
+ filename-size
+ 4568
+ homepage
+ http://www.citi.umich.edu/projects/nfsv4/linux/
+ installed_size
+ 12288
+ license
+ BSD
+ long_desc
+
+ Library to help mapping ID's, mainly for NFSv4.
+
+ When NFSv4 is using AUTH_GSS (which currently only supports Kerberos v5), the
+ NFSv4 server mapping functions MUST use secure communications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libnfsidmap-devel
+ pkgver
+ libnfsidmap-devel-0.25_1
+ run_depends
+
+ libldap-devel>=0
+ libnfsidmap>=0.25
+
+ short_desc
+ Library to help mapping IDs, mainly for NFSv4 - development files
+ version
+ 0.25_1
+
+ libnice-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 07:45 CEST
+ filename
+ libnice-devel-0.1.3_2.noarch.xbps
+ filename-sha256
+ 033455347ac16cf9a9d9aa20c9be1dbeda5432638d2a5d129d59c3eb02811d57
+ filename-size
+ 66024
+ homepage
+ http://nice.freedesktop.org
+ installed_size
+ 942080
+ license
+ LGPL-2.1
+ long_desc
+
+ It provides a GLib-based library, libnice and a Glib-free library, libstun
+ as well as GStreamer elements.
+
+ ICE is useful for applications that want to establish peer-to-peer UDP data
+ streams. It automates the process of traversing NATs and provides security
+ against some attacks. It also allows applications to create reliable streams
+ using a TCP over UDP layer.
+
+ Existing standards that use ICE include Session Initiation Protocol (SIP)
+ and XMPP Jingle.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libnice-devel
+ pkgver
+ libnice-devel-0.1.3_2
+ run_depends
+
+ glib-devel>=0
+ libnice>=0.1.3
+
+ short_desc
+ libnice - development files
+ version
+ 0.1.3_2
+
+ libnl3
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:38 CET
+ conf_files
+
+ /etc/libnl/pktloc
+ /etc/libnl/classid
+
+ filename
+ libnl3-3.2.11_2.armv6l.xbps
+ filename-sha256
+ 818c5e975f758dd0cd86d323a615aa78df43e705fe63bea66f3626b1b5eacf6f
+ filename-size
+ 113184
+ homepage
+ http://www.infradead.org/~tgr/libnl
+ installed_size
+ 378106
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libnl3
+ pkgver
+ libnl3-3.2.11_2
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Netlink Protocol Library Suite
+ source-revisions
+ libnl3/libnl3-devel.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/libnl3-progs.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/template: 7a02a61c8825a1abf49e1539482b9049878867f6
+ version
+ 3.2.11_2
+
+ libnl3-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:38 CET
+ filename
+ libnl3-dbg-3.2.11_2.armv6l.xbps
+ filename-sha256
+ 7b8237f2baaa26c0f6df56422e8b3522231894cb7ba652f938cee3cd5c04a6c1
+ filename-size
+ 485952
+ homepage
+ http://www.infradead.org/~tgr/libnl
+ installed_size
+ 605514
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libnl3-dbg
+ pkgver
+ libnl3-dbg-3.2.11_2
+ short_desc
+ Netlink Protocol Library Suite (debug files)
+ source-revisions
+ libnl3/libnl3-devel.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/libnl3-progs.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/template: 7a02a61c8825a1abf49e1539482b9049878867f6
+ version
+ 3.2.11_2
+
+ libnl3-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:37 CET
+ filename
+ libnl3-devel-3.2.11_2.noarch.xbps
+ filename-sha256
+ b9b5983b0b83e22ac697de343118a4b6dfff3a68b8d82832db28184ee229dc48
+ filename-size
+ 33572
+ homepage
+ http://www.infradead.org/~tgr/libnl
+ installed_size
+ 181377
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libnl3-devel
+ pkgver
+ libnl3-devel-3.2.11_2
+ run_depends
+
+ libnl3>=3.2.11
+
+ short_desc
+ Netlink Protocol Library Suite -- development files
+ source-revisions
+ libnl3/libnl3-devel.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/libnl3-progs.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/template: 7a02a61c8825a1abf49e1539482b9049878867f6
+ version
+ 3.2.11_2
+
+ libnl3-progs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:38 CET
+ filename
+ libnl3-progs-3.2.11_2.armv6l.xbps
+ filename-sha256
+ 9c8b3fb9f0276cef0a940a8e0459c3dd7edf2f805a11c8a4d2c639daeb3b5fa9
+ filename-size
+ 26384
+ homepage
+ http://www.infradead.org/~tgr/libnl
+ installed_size
+ 121600
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libnl3-progs
+ pkgver
+ libnl3-progs-3.2.11_2
+ run_depends
+
+ libnl3>=3.2.1_1
+ glibc>=2.8_1
+
+ short_desc
+ Netlink Protocol Library Suite - cli utilities
+ source-revisions
+ libnl3/libnl3-devel.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/libnl3-progs.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/template: 7a02a61c8825a1abf49e1539482b9049878867f6
+ version
+ 3.2.11_2
+
+ libnl3-progs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:38 CET
+ filename
+ libnl3-progs-dbg-3.2.11_2.armv6l.xbps
+ filename-sha256
+ 6967a5a4189cf232c553e847ff4c43cb1a867aa243eb7b1da644b6a5dd6fc840
+ filename-size
+ 76972
+ homepage
+ http://www.infradead.org/~tgr/libnl
+ installed_size
+ 177157
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libnl3-progs-dbg
+ pkgver
+ libnl3-progs-dbg-3.2.11_2
+ short_desc
+ Netlink Protocol Library Suite - cli utilities (debug files)
+ source-revisions
+ libnl3/libnl3-devel.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/libnl3-progs.template: 7a02a61c8825a1abf49e1539482b9049878867f6
+libnl3/template: 7a02a61c8825a1abf49e1539482b9049878867f6
+ version
+ 3.2.11_2
+
+ libnotify-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 13:34:00 UTC
+ filename
+ libnotify-devel-0.7.5_1.noarch.xbps
+ filename-sha256
+ e3e7f42af6f0427fb0c6430fa515c0eb203d190e543c693a1e1a51f7172974ff
+ filename-size
+ 18964
+ homepage
+ http://library.gnome.org/devel/notification-spec/
+ installed_size
+ 221184
+ license
+ LGPL-2.1
+ long_desc
+
+ libnotify is an implementation of the freedesktop.org desktop
+ notification specification.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ libnotify-devel
+ pkgver
+ libnotify-devel-0.7.5_1
+ run_depends
+
+ gdk-pixbuf-devel>=0
+ glib-devel>=0
+ libnotify>=0.7.5
+
+ short_desc
+ libnotify development files
+ version
+ 0.7.5_1
+
+ libnuma-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 11:09 CET
+ filename
+ libnuma-devel-2.0.8_1.noarch.xbps
+ filename-sha256
+ c18cabe8fdec26e79890efde74826c636d5bb00eeb7a302c6d41db4dd9f5bb41
+ filename-size
+ 13952
+ homepage
+ http://oss.sgi.com/projects/libnuma/
+ installed_size
+ 24961
+ license
+ LGPL-2.1
+ long_desc
+
+ The libnuma library provides convenient ways for you to add NUMA memory
+ policies into your own program.
+
+ This package contains development files for libnuma.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libnuma-devel
+ pkgver
+ libnuma-devel-2.0.8_1
+ run_depends
+
+ libnuma-2.0.8_1
+
+ short_desc
+ Simple NUMA policy support -- development files
+ version
+ 2.0.8_1
+
+ libopenal-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-08 17:23 CET
+ filename
+ libopenal-devel-1.15_1.noarch.xbps
+ filename-sha256
+ 994144a29ecdaa78ad387a8329f5ab5be39ba19c103037a11ce6257ea5f88e25
+ filename-size
+ 17068
+ homepage
+ http://connect.creativelabs.com/openal/default.aspx
+ installed_size
+ 119041
+ license
+ LGPL-2.1
+ long_desc
+
+ OpenAL is a cross-platform 3D audio API appropriate for use with gaming
+ applications and many other types of audio applications.
+
+ The library models a collection of audio sources moving in a 3D space that
+ are heard by a single listener somewhere in that space. The basic OpenAL
+ objects are a Listener, a Source, and a Buffer. There can be a large number
+ of Buffers, which contain audio data. Each buffer can be attached to one or
+ more Sources, which represent points in 3D space which are emitting audio.
+ There is always one Listener object (per audio context), which represents
+ the position where the sources are heard -- rendering is done from the
+ perspective of the Listener.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (1496f4a0f6185d547ee092e40ef59242357e842f)
+ pkgname
+ libopenal-devel
+ pkgver
+ libopenal-devel-1.15_1
+ run_depends
+
+ libopenal>=1.15
+
+ short_desc
+ A cross-platform 3D audio library - Development files
+ source-revisions
+ libopenal/libopenal-devel.template: faf0550efadb45a68d322c57d490733a03bd2430
+libopenal/template: faf0550efadb45a68d322c57d490733a03bd2430
+ version
+ 1.15_1
+
+ libosinfo-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 09:42 CET
+ filename
+ libosinfo-devel-0.2.1_1.noarch.xbps
+ filename-sha256
+ 459a92a8847251c96bb4b6db4edceb48f7090484da7571aaad2349165285991e
+ filename-size
+ 28524
+ homepage
+ https://fedorahosted.org/libosinfo/
+ installed_size
+ 339201
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ GObject based library API for managing information about operating systems,
+ hypervisors and the (virtual) hardware devices they can support.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libosinfo-devel
+ pkgver
+ libosinfo-devel-0.2.1_1
+ run_depends
+
+ glib-devel>=0
+ libosinfo-0.2.1_1
+
+ short_desc
+ libosinfo development files
+ version
+ 0.2.1_1
+
+ libparted-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 11:04 CEST
+ filename
+ libparted-devel-3.1_2.noarch.xbps
+ filename-sha256
+ 006bbf150a74832bf8babc8f87597c8e0147efeb6b55bcc451d6850c30b2cb8f
+ filename-size
+ 10080
+ homepage
+ http://www.gnu.org/software/parted/
+ installed_size
+ 50299
+ license
+ GPL-3
+ long_desc
+
+ GNU Parted is a program that allows you to create, destroy, resize, move and
+ copy hard disk partitions. This is useful for creating space for new
+ operating systems, reorganising disk usage, and copying data to new hard disks.
+
+ This package contains development files for libparted, which
+ are really only of interest to developers.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libparted-devel
+ pkgver
+ libparted-devel-3.1_2
+ run_depends
+
+ libparted-3.1_2
+
+ short_desc
+ The GNU Parted disk partitioning library development files
+ version
+ 3.1_2
+
+ libpcre
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ libpcre-8.32_2.armv6l.xbps
+ filename-sha256
+ 48beccd874ba5c9dae7e08f291ccaa5ae5c189fc690f0f7d646fa05bdcab962a
+ filename-size
+ 118140
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 373392
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libpcre
+ pkgver
+ libpcre-8.32_2
+ replaces
+
+ pcre<8.11
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Perl Compatible Regular Expressions - shared libraries
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ libpcre-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ libpcre-dbg-8.32_2.armv6l.xbps
+ filename-sha256
+ 3afd08ddb041b31cce1e14952a0f05055e6c7cf39a0c826bbc058f97cbdaeb04
+ filename-size
+ 258172
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 274702
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libpcre-dbg
+ pkgver
+ libpcre-dbg-8.32_2
+ short_desc
+ Perl Compatible Regular Expressions - shared libraries (debug files)
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ libpcrecpp
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ libpcrecpp-8.32_2.armv6l.xbps
+ filename-sha256
+ 269cf0a06a73a3d62231e702fa7cb38ab859c92f4f10ef27e6d55c458090cabf
+ filename-size
+ 9488
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 24552
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libpcrecpp
+ pkgver
+ libpcrecpp-8.32_2
+ run_depends
+
+ libpcre-8.32_2
+ libstdc++>=4.4.0_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Perl Compatible Regular Expressions - C++ shared libraries
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ libpcrecpp-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ libpcrecpp-dbg-8.32_2.armv6l.xbps
+ filename-sha256
+ 022451ed785718d03faa06b93e810424c44d4d331eae4a259943a7556366e016
+ filename-size
+ 65644
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 74901
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libpcrecpp-dbg
+ pkgver
+ libpcrecpp-dbg-8.32_2
+ short_desc
+ Perl Compatible Regular Expressions - C++ shared libraries (debug files)
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ libpeas-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-16 09:15 CEST
+ filename
+ libpeas-devel-1.6.1_1.noarch.xbps
+ filename-sha256
+ 1fc0f0504ce83d736ee0eadca6ed969c32ae2f342defaf1dff5429cfcb8698c1
+ filename-size
+ 65232
+ installed_size
+ 490535
+ long_desc
+
+ libpeas is a gobject-based plugins engine, and is targetted at giving every
+ application the chance to assume its own extensibility. It is currently used by
+ several Gnome applications like gedit and Totem.
+
+ It takes its roots in the old gedit plugins engine, and provides an extensive set
+ of features mirroring the desiderata of most of the applications providing an
+ extension framework.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libpeas-devel
+ pkgver
+ libpeas-devel-1.6.1_1
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=3.6.0_2
+ libgirepository-devel>=0
+ libpeas-1.6.1_1
+
+ short_desc
+ libpeas - development files
+ version
+ 1.6.1_1
+
+ libpipeline
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:33 CET
+ filename
+ libpipeline-1.2.2_2.armv6l.xbps
+ filename-sha256
+ e1d56ade8cc0a954c44a99ed776f1ee8ef587470fbbbf684b24448a2479dcd5f
+ filename-size
+ 16436
+ homepage
+ http://libpipeline.nongnu.org/
+ installed_size
+ 38808
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpipeline
+ pkgver
+ libpipeline-1.2.2_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ A pipeline manipulation library
+ source-revisions
+ libpipeline/libpipeline-devel.template: 8bc9bd83651d5082ac4ea07c62ce9f909e024ca8
+libpipeline/template: 8bc9bd83651d5082ac4ea07c62ce9f909e024ca8
+ version
+ 1.2.2_2
+
+ libpipeline-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:33 CET
+ filename
+ libpipeline-dbg-1.2.2_2.armv6l.xbps
+ filename-sha256
+ ab947601b419a8ff0527df013ad90163d84e24010a0dd7f916cf939a6475426c
+ filename-size
+ 47404
+ homepage
+ http://libpipeline.nongnu.org/
+ installed_size
+ 56458
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpipeline-dbg
+ pkgver
+ libpipeline-dbg-1.2.2_2
+ short_desc
+ A pipeline manipulation library (debug files)
+ source-revisions
+ libpipeline/libpipeline-devel.template: 8bc9bd83651d5082ac4ea07c62ce9f909e024ca8
+libpipeline/template: 8bc9bd83651d5082ac4ea07c62ce9f909e024ca8
+ version
+ 1.2.2_2
+
+ libpipeline-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:33 CET
+ filename
+ libpipeline-devel-1.2.2_2.noarch.xbps
+ filename-sha256
+ 6da28a65f520b9982031163802e3f0308b91a150b36b53d77f0daea29e3efc5b
+ filename-size
+ 14200
+ homepage
+ http://libpipeline.nongnu.org/
+ installed_size
+ 24649
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpipeline-devel
+ pkgver
+ libpipeline-devel-1.2.2_2
+ run_depends
+
+ glibc-devel>=0
+ libpipeline>=1.2.2
+
+ short_desc
+ A pipeline manipulation library - development files
+ source-revisions
+ libpipeline/libpipeline-devel.template: 8bc9bd83651d5082ac4ea07c62ce9f909e024ca8
+libpipeline/template: 8bc9bd83651d5082ac4ea07c62ce9f909e024ca8
+ version
+ 1.2.2_2
+
+ libplist-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-03 13:12 CET
+ filename
+ libplist-devel-1.8_2.noarch.xbps
+ filename-sha256
+ 485b5fe0c4a77b8fe97533cb946ae10895e6dafda5ed45c9e08b4e51f91e6dee
+ filename-size
+ 8588
+ homepage
+ http://libimobiledevice.org/
+ installed_size
+ 43407
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ libplist-devel
+ pkgver
+ libplist-devel-1.8_2
+ run_depends
+
+ libplist++>=1.8
+ libplist>=1.8
+
+ short_desc
+ libplist development files
+ source-revisions
+ libplist/libplist++.template: b1a6a8d39e20a336faf38d67023177d722b7a085
+libplist/libplist-devel.template: b1a6a8d39e20a336faf38d67023177d722b7a085
+libplist/libplist-python.template: b1a6a8d39e20a336faf38d67023177d722b7a085
+libplist/template: 614e2fc6419e19ee94f302bda9c954976fe370d2
+ version
+ 1.8_2
+
+ libpng
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:34 CET
+ filename
+ libpng-1.5.14_1.armv6l.xbps
+ filename-sha256
+ 00f205a0033bf9c82ebf766a215c9899a116a75eae6688b15e5d9c5e6dda1b09
+ filename-size
+ 59956
+ homepage
+ http://www.libpng.org/pub/png/libpng.html
+ installed_size
+ 146840
+ license
+ zlib
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpng
+ pkgver
+ libpng-1.5.14_1
+ run_depends
+
+ zlib>=1.2.3_1
+ glibc>=2.8_1
+
+ short_desc
+ Library for manipulating PNG images
+ source-revisions
+ libpng/libpng-devel.template: 6be8d97098208e4b05762c2af128a6d3d0814004
+libpng/patches/libpng-1.5.11-apng.patch.gz: c475adbdddbaffb745a5eca82e0c15bb7568eafe
+libpng/template: 3989d10de7b009ae0c517436fa65c7d9617640f4
+ version
+ 1.5.14_1
+
+ libpng-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:34 CET
+ filename
+ libpng-dbg-1.5.14_1.armv6l.xbps
+ filename-sha256
+ 208ed34411c3552857187af204368bbb36a648c910bbc53bd59a8375512168c2
+ filename-size
+ 168728
+ homepage
+ http://www.libpng.org/pub/png/libpng.html
+ installed_size
+ 194831
+ license
+ zlib
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpng-dbg
+ pkgver
+ libpng-dbg-1.5.14_1
+ short_desc
+ Library for manipulating PNG images (debug files)
+ source-revisions
+ libpng/libpng-devel.template: 6be8d97098208e4b05762c2af128a6d3d0814004
+libpng/patches/libpng-1.5.11-apng.patch.gz: c475adbdddbaffb745a5eca82e0c15bb7568eafe
+libpng/template: 3989d10de7b009ae0c517436fa65c7d9617640f4
+ version
+ 1.5.14_1
+
+ libpng-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-26 08:52 CET
+ filename
+ libpng-devel-1.5.14_1.noarch.xbps
+ filename-sha256
+ e54ba929e9fe21ac1d0a4695cea67be84c375d490daefbf26e20e83ed9e21d11
+ filename-size
+ 106396
+ homepage
+ http://www.libpng.org/pub/png/libpng.html
+ installed_size
+ 220117
+ license
+ zlib
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ libpng-devel
+ pkgver
+ libpng-devel-1.5.14_1
+ run_depends
+
+ zlib-devel>=0
+ libpng>=1.5.14
+
+ short_desc
+ Library for manipulating PNG images -- development files
+ source-revisions
+ libpng/libpng-devel.template: 6be8d97098208e4b05762c2af128a6d3d0814004
+libpng/patches/libpng-1.5.11-apng.patch.gz: c475adbdddbaffb745a5eca82e0c15bb7568eafe
+libpng/template: 6be8d97098208e4b05762c2af128a6d3d0814004
+ version
+ 1.5.14_1
+
+ libproxy-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 20:40 CET
+ filename
+ libproxy-devel-0.4.10_1.noarch.xbps
+ filename-sha256
+ cef9e8af601fd1aece45754c3b43ca7be31747b594edab2b228db230476a67c7
+ filename-size
+ 3668
+ homepage
+ http://libproxy.googlecode.com
+ installed_size
+ 5378
+ license
+ LGPL-2.1
+ long_desc
+
+ libproxy is a library that provides automatic proxy configuration management.
+
+ libproxy offers the following features:
+
+ * extremely small core footprint (less than 35K)
+ * no external dependencies within libproxy core (libproxy plugins may
+ have dependencies)
+ * only 3 functions in the stable external API
+ * dynamic adjustment to changing network topology
+ * a standard way of dealing with proxy settings across all scenarios
+ * a sublime sense of joy and accomplishment
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ libproxy-devel
+ pkgver
+ libproxy-devel-0.4.10_1
+ run_depends
+
+ pkg-config>=0
+ libproxy>=0.4.7
+
+ short_desc
+ libproxy development files
+ source-revisions
+ libproxy/libproxy-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+libproxy/libproxy-python.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+libproxy/patches/missing_header.patch: 44b3e65dc0e7deeaea1cab53783a414d951aa820
+libproxy/template: 774acd49199a26c6e65314f52548deab90ed2e68
+ version
+ 0.4.10_1
+
+ libpurple-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-14 16:05 CET
+ filename
+ libpurple-devel-2.10.6_2.noarch.xbps
+ filename-sha256
+ e9f79d122ccbcff9f57eb8332907893b542ea6cc02d4dd1a42e954a49acf773f
+ filename-size
+ 143632
+ homepage
+ http://pidgin.im/
+ installed_size
+ 943841
+ license
+ GPL-2
+ long_desc
+
+ Pidgin is an easy to use and free chat client used by millions. Connect to
+ AIM, MSN, Yahoo, and more chat networks all at once.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ libpurple-devel
+ pkgver
+ libpurple-devel-2.10.6_2
+ run_depends
+
+ glib-devel>=0
+ libpurple>=2.10.6
+
+ short_desc
+ IM library extracted from Pidgin -- development files
+ source-revisions
+ pidgin/finch-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/finch.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/pidgin-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/template: 07cf69f49a5b4db256613a036cf160aab37fffc8
+ version
+ 2.10.6_2
+
+ libpwquality
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:27 CET
+ conf_files
+
+ /etc/security/pwquality.conf
+
+ filename
+ libpwquality-1.2.0_2.armv6l.xbps
+ filename-sha256
+ 8e004966e11fb9625252d71abe19d2338529d94c0f9e1bbcb9081bc0ae5c733d
+ filename-size
+ 40140
+ homepage
+ https://fedorahosted.org/libpwquality/
+ installed_size
+ 166173
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpwquality
+ pkgver
+ libpwquality-1.2.0_2
+ run_depends
+
+ glibc>=2.8_1
+ pam-libs>=1.1.6_3
+ libcracklib>=2.8.22_2
+
+ short_desc
+ Library for password quality checking and generating random passwords
+ source-revisions
+ libpwquality/libpwquality-devel.template: 3cc6fbafdc9ffd2eb60568f9836b78b1e95b33da
+libpwquality/template: 3cc6fbafdc9ffd2eb60568f9836b78b1e95b33da
+ version
+ 1.2.0_2
+
+ libpwquality-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:27 CET
+ filename
+ libpwquality-dbg-1.2.0_2.armv6l.xbps
+ filename-sha256
+ 4527beec1263ba3983f1cfd051bb451dfc5cd77fc28e21351f0b596a7f7bdd28
+ filename-size
+ 31396
+ homepage
+ https://fedorahosted.org/libpwquality/
+ installed_size
+ 49464
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpwquality-dbg
+ pkgver
+ libpwquality-dbg-1.2.0_2
+ short_desc
+ Library for password quality checking and generating random passwords (debug files)
+ source-revisions
+ libpwquality/libpwquality-devel.template: 3cc6fbafdc9ffd2eb60568f9836b78b1e95b33da
+libpwquality/template: 3cc6fbafdc9ffd2eb60568f9836b78b1e95b33da
+ version
+ 1.2.0_2
+
+ libpwquality-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:27 CET
+ filename
+ libpwquality-devel-1.2.0_2.noarch.xbps
+ filename-sha256
+ a327d6a36f57574ace929af2c5b55e385e2010cc83e1dcda1e42ecaca15adbc5
+ filename-size
+ 3288
+ homepage
+ https://fedorahosted.org/libpwquality/
+ installed_size
+ 6964
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libpwquality-devel
+ pkgver
+ libpwquality-devel-1.2.0_2
+ run_depends
+
+ libpwquality-1.2.0_2
+
+ short_desc
+ Library for password quality checking and generating random passwords -- development files
+ source-revisions
+ libpwquality/libpwquality-devel.template: 3cc6fbafdc9ffd2eb60568f9836b78b1e95b33da
+libpwquality/template: 3cc6fbafdc9ffd2eb60568f9836b78b1e95b33da
+ version
+ 1.2.0_2
+
+ libqpdf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-07 07:29 UTC
+ filename
+ libqpdf-devel-3.0.2_1.noarch.xbps
+ filename-sha256
+ 1ec426ec70a29d8698da1cab90056b8a68fb8ac46aa578207889449dd78fbd64
+ filename-size
+ 28988
+ homepage
+ http://qpdf.sourceforget.net
+ installed_size
+ 188416
+ license
+ Artistic-2.0
+ long_desc
+
+ QPDF is a command-line program that does structural, content-preserving
+ transformations on PDF files. It could have been called something like
+ pdf-to-pdf. It also provides many useful capabilities to developers of
+ PDF-producing software or for people who just want to look at the innards
+ of a PDF file to learn more about how they work.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libqpdf-devel
+ pkgver
+ libqpdf-devel-3.0.2_1
+ run_depends
+
+ libqpdf>=3.0.2
+
+ short_desc
+ A Content-Preserving PDF Transformation System -- development files
+ version
+ 3.0.2_1
+
+ libqrencode
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:35 CET
+ filename
+ libqrencode-3.4.1_2.armv6l.xbps
+ filename-sha256
+ 209a078c9d8ce7e5db984a7c746704307a445a752c80e897664b08f6b11fbcc2
+ filename-size
+ 14540
+ homepage
+ http://fukuchi.org/works/qrencode/index.html.en
+ installed_size
+ 33532
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libqrencode
+ pkgver
+ libqrencode-3.4.1_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Library for encoding data in a QR Code symbol -- runtime library
+ source-revisions
+ qrencode/libqrencode.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/qrencode-devel.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/template: 76994f04d8705da87244cff5553102898d1c28be
+ version
+ 3.4.1_2
+
+ libqrencode-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:35 CET
+ filename
+ libqrencode-dbg-3.4.1_2.armv6l.xbps
+ filename-sha256
+ e7262d30c6ddc52dcb04cbc510cfa15ca4f384c4da4e30353ed84516f543b1a8
+ filename-size
+ 43440
+ homepage
+ http://fukuchi.org/works/qrencode/index.html.en
+ installed_size
+ 50556
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libqrencode-dbg
+ pkgver
+ libqrencode-dbg-3.4.1_2
+ short_desc
+ Library for encoding data in a QR Code symbol -- runtime library (debug files)
+ source-revisions
+ qrencode/libqrencode.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/qrencode-devel.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/template: 76994f04d8705da87244cff5553102898d1c28be
+ version
+ 3.4.1_2
+
+ libquvi-scripts
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-29 11:20 CET
+ filename
+ libquvi-scripts-0.4.10_1.noarch.xbps
+ filename-sha256
+ 4b5e1c7ac789e1459f974426f54f6acb7415fa43cfcaf6915b4fa64367d540b1
+ filename-size
+ 28440
+ homepage
+ http://quvi.sourceforge.net/
+ installed_size
+ 160580
+ license
+ LGPL-2.1
+ long_desc
+
+ It originates from the idea of working around the flash requirement found
+ on many media hosting websites (e.g. YouTube).
+
+ * Parses additional media details (e.g. media title, media ID)
+ * Supported platforms include Linux, *BSD systems
+ * C library: Fast and low system footprint
+ * Easy to extend: uses lua for scripting
+ * Supports 40+ websites
+ * C API is simple to use
+
+ This package contains a set of plugins for use with libquvi and/or quvi.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ libquvi-scripts
+ pkgver
+ libquvi-scripts-0.4.10_1
+ run_depends
+
+ lua>=0
+
+ short_desc
+ Set of (lua) scripts for libquvi
+ source-revisions
+ libquvi-scripts/template: e173d4f324c65388feb60ea98f934ed69cb3373a
+ version
+ 0.4.10_1
+
+ libraw-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-19 04:32 UTC
+ filename
+ libraw-devel-0.14.7_1.noarch.xbps
+ filename-sha256
+ acc03750099d93dd973d171a6d02b0de75d64f9ffa95f225c8c10132630e2dc4
+ filename-size
+ 10904
+ homepage
+ http://www.libraw.org
+ installed_size
+ 69632
+ license
+ GPL-2, CDDL, libraw
+ long_desc
+
+ libraw is a library for reading RAW files obtained from digital photo
+ cameras (CRW/CR2, NEF, RAF, DNG, and others).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libraw-devel
+ pkgver
+ libraw-devel-0.14.7_1
+ run_depends
+
+ lcms2-devel>=0
+ jasper-devel>=0
+ libraw>=0.14.7
+
+ short_desc
+ Raw image decoder library - development files
+ version
+ 0.14.7_1
+
+ librlog-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-26 08:28 CET
+ filename
+ librlog-devel-1.4_2.noarch.xbps
+ filename-sha256
+ 285d710049ade13b376c60c9a52484aec1eb3252064e5e7172b30427f9734581
+ filename-size
+ 10272
+ homepage
+ http://code.google.com/p/rlog/
+ installed_size
+ 42548
+ license
+ LGPL-1
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ librlog-devel
+ pkgver
+ librlog-devel-1.4_2
+ run_depends
+
+ librlog>=1.4
+
+ short_desc
+ Flexible message logging facility for C++ programs and libraries -- development files
+ source-revisions
+ librlog/librlog-devel.template: cecedb8f7244bced97e5579da3a752df64959a5a
+librlog/template: 37c477d187efb74786d0a98232b2375f7db0967d
+ version
+ 1.4_2
+
+ librsvg-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-16 09:04 CEST
+ filename
+ librsvg-devel-2.36.4_1.noarch.xbps
+ filename-sha256
+ c6aace1fb8afc0bab0b390a4d5575557ffbb7d3222bc2030d57ba41735435a64
+ filename-size
+ 24444
+ homepage
+ http://librsvg.sourceforge.net/
+ installed_size
+ 258948
+ license
+ LGPL-2.1
+ long_desc
+
+ librsvg is Raph's scalable vector graphics library. It provides support for
+ SVG graphics, and is used by the GNOME desktop.
+
+ This package provides the librsvg library as well as some addons: a pixbuf
+ loader and a theme engine for the GTK+ toolkit.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ librsvg-devel
+ pkgver
+ librsvg-devel-2.36.4_1
+ run_depends
+
+ gdk-pixbuf-devel>=0
+ cairo-devel>=0
+ libcroco-devel>=0
+ librsvg-2.36.4_1
+
+ short_desc
+ librsvg development files
+ version
+ 2.36.4_1
+
+ libseccomp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-16 11:32 CEST
+ filename
+ libseccomp-devel-1.0.0_1.noarch.xbps
+ filename-sha256
+ d196714af80cb7a7c959aac2606290d4764e51ab31d6caacd7bf50fd80afeca6
+ filename-size
+ 13744
+ homepage
+ http://sourceforge.net/projects/libseccomp/
+ installed_size
+ 22322
+ license
+ LGPL-2.1
+ long_desc
+
+ The libseccomp library provides and easy to use, platform independent,
+ interface to the Linux Kernel's syscall filtering mechanism: seccomp.
+ The libseccomp API is designed to abstract away the underlying BPF based
+ syscall filter language and present a more conventional function-call
+ based filtering interface that should be familiar to, and easily adopted
+ by application developers.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libseccomp-devel
+ pkgver
+ libseccomp-devel-1.0.0_1
+ run_depends
+
+ libseccomp-1.0.0_1
+
+ short_desc
+ High level interface to the Linux Kernel's seccomp filter -- development files
+ version
+ 1.0.0_1
+
+ libsecret-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-21 21:52 CET
+ filename
+ libsecret-devel-0.12_1.noarch.xbps
+ filename-sha256
+ bfc9e8c94e9dd51c2c2d951ecbaa2720f0e4e3978d887b8fcc51db8e7ceee678
+ filename-size
+ 72180
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1471398
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ This package contains libsecret, a GObject based library for accessing the
+ Secret Service API.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ libsecret-devel
+ pkgver
+ libsecret-devel-0.12_1
+ run_depends
+
+ glib-devel>=0
+ libsecret-0.12_1
+
+ short_desc
+ libsecret -- development files
+ source-revisions
+ libsecret/libsecret-devel.template: 293f469867232e5fd4b8d39a01580548f17cd6ff
+libsecret/template: 6e33ccd4f04c3a3e332e7154e0b5cc0fb131b48a
+ version
+ 0.12_1
+
+ libseed-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 11:18 CEST
+ filename
+ libseed-devel-3.2.0_4.noarch.xbps
+ filename-sha256
+ 60b1cd0e2c434070fabd6356d804ef2cc33eb803323e0156a4a34031a26ae3af
+ filename-size
+ 40224
+ homepage
+ http://live.gnome.org/Seed/
+ installed_size
+ 471000
+ license
+ LGPL-2.1
+ long_desc
+
+ Seed is a library and interpreter, dynamically bridging
+ (through GObjectIntrospection) the WebKit JavaScriptCore engine, with the
+ GNOME platform. Seed serves as something which enables you to write
+ standalone applications in JavaScript, or easily enable your application
+ to be extensible in JavaScript.
+
+ This package contains the static libraries and development headers, needed
+ to build programs using the Seed interpreter.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libseed-devel
+ pkgver
+ libseed-devel-3.2.0_4
+ run_depends
+
+ webkit-gtk3-devel>=0
+ libgirepository-devel>=0
+ glib-devel>=0
+ libseed-3.2.0_4
+
+ short_desc
+ GObject JavaScript bindings for the webkit engine - Development
+ version
+ 3.2.0_4
+
+ libsensors
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 12:14 CET
+ filename
+ libsensors-3.3.3_1.armv6l.xbps
+ filename-sha256
+ 00eb1100232a4b92103319885ff0418a090fddf562c963dbff52ab2a21fc351e
+ filename-size
+ 18192
+ homepage
+ http://www.lm-sensors.org/
+ installed_size
+ 48184
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ lm-sensors provides most complete hardware health monitoring support for
+ Linux, in the form of kernel drivers and a user-space library
+
+ This package contains a shared library for querying lm-sensors.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (fec30fbfdd73d9a62fdd4636c6b74d79d91009a4)
+ pkgname
+ libsensors
+ pkgver
+ libsensors-3.3.3_1
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Library to read temperature/voltage/fan sensors
+ version
+ 3.3.3_1
+
+ libsensors-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 12:14 CET
+ filename
+ libsensors-dbg-3.3.3_1.armv6l.xbps
+ filename-sha256
+ 24ab8c92867c29f7fd980060d70193f1876e46e7ca841c57562085c7fd08a190
+ filename-size
+ 46544
+ homepage
+ http://www.lm-sensors.org/
+ installed_size
+ 56459
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ lm-sensors provides most complete hardware health monitoring support for
+ Linux, in the form of kernel drivers and a user-space library
+
+ This package contains a shared library for querying lm-sensors.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (fec30fbfdd73d9a62fdd4636c6b74d79d91009a4)
+ pkgname
+ libsensors-dbg
+ pkgver
+ libsensors-dbg-3.3.3_1
+ short_desc
+ Library to read temperature/voltage/fan sensors (debug files)
+ version
+ 3.3.3_1
+
+ libsensors-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-23 13:04 CET
+ filename
+ libsensors-devel-3.3.3_1.noarch.xbps
+ filename-sha256
+ 83607ed58da26cd852bd6906e2e6d2c080408217b2685f289204c17d6f3bd107
+ filename-size
+ 8520
+ homepage
+ http://www.lm-sensors.org/
+ installed_size
+ 18142
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ lm-sensors provides most complete hardware health monitoring support for
+ Linux, in the form of kernel drivers and a user-space library
+
+ This package contains the static library and header files used in
+ development.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (fa36d1fbb7e1a57c75eb3d61d9fb03f4053c5c58)
+ pkgname
+ libsensors-devel
+ pkgver
+ libsensors-devel-3.3.3_1
+ run_depends
+
+ libsensors-3.3.3_1
+
+ short_desc
+ lm-sensors development kit
+ source-revisions
+ lm-sensors/libsensors-devel.template: 98cfcd30c223279bddfc94191d2dc2fb7c2fadfd
+lm-sensors/libsensors.template: dfa5fd88ca07307961a30c1efdedc5da910a4eb1
+lm-sensors/template: 98cfcd30c223279bddfc94191d2dc2fb7c2fadfd
+ version
+ 3.3.3_1
+
+ libsexy-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 09:30 CEST
+ filename
+ libsexy-devel-0.1.11_7.noarch.xbps
+ filename-sha256
+ 15fa89442fccb5c1b2bf7f5ed674110822e43deb85b1acc714ea379c9620f45d
+ filename-size
+ 14324
+ homepage
+ http://releases.chipx86.com/libsexy
+ installed_size
+ 98821
+ license
+ LGPL-2.1
+ long_desc
+
+ libsexy is a collection of GTK+ widgets that extend the functionality of
+ such standard widgets as GtkEntry and GtkLabel by subclassing them and
+ working around the limitations of the widgets.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libsexy-devel
+ pkgver
+ libsexy-devel-0.1.11_7
+ run_depends
+
+ libxml2-devel>=0
+ gtk+-devel>=0
+ libsexy-0.1.11_7
+
+ short_desc
+ libsexy development files
+ version
+ 0.1.11_7
+
+ libsigc++-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-25 00:24 CEST
+ filename
+ libsigc++-devel-2.2.11_1.noarch.xbps
+ filename-sha256
+ be0a6bb3e8b40166a2185c477b875f0126130f34357751b5b5e18abd70a29180
+ filename-size
+ 58420
+ homepage
+ http://libsigc.sourceforge.net/
+ installed_size
+ 1327104
+ license
+ LGPL-2.1
+ long_desc
+
+ libsigc++ implements a full callback system for use in widget
+ libraries, abstract interfaces, and general programming. Originally
+ part of the Gtk-- widget set, libsigc++ is now a separate library to
+ provide for more general use. It is the most complete library of its
+ kind with the ability to connect an abstract callback to a class
+ method, function, or function object. It contains adaptor classes for
+ connection of dissimilar callbacks and has an ease of use unmatched by
+ other C++ callback libraries. Libsigc++ is licensed under the GNU
+ Library General Public License, LGPL.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libsigc++-devel
+ pkgver
+ libsigc++-devel-2.2.11_1
+ run_depends
+
+ libsigc++>=2.2.11
+
+ short_desc
+ libsigc++ development files
+ version
+ 2.2.11_1
+
+ libsoup-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 21:05 CET
+ filename
+ libsoup-devel-2.40.3_1.noarch.xbps
+ filename-sha256
+ a131005471e563cc46167c24c941f2795225b4c4b447b198bfcea66539e31151
+ filename-size
+ 216316
+ homepage
+ http://www.gnome.org
+ installed_size
+ 2717057
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ libsoup-devel
+ pkgver
+ libsoup-devel-2.40.3_1
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=0
+ libsoup-2.40.3_1
+
+ short_desc
+ HTTP library implementation in C -- development files
+ source-revisions
+ libsoup/libsoup-devel.template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+libsoup/libsoup-gnome-devel.template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+libsoup/libsoup-gnome.template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+libsoup/template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+ version
+ 2.40.3_1
+
+ libsoup-gnome-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 21:05 CET
+ filename
+ libsoup-gnome-devel-2.40.3_1.noarch.xbps
+ filename-sha256
+ f7a126361facf169bf9cbcffb50ffc30a61281a9b13fa48668f09d4554455d31
+ filename-size
+ 3184
+ homepage
+ http://www.gnome.org
+ installed_size
+ 8239
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ libsoup-gnome-devel
+ pkgver
+ libsoup-gnome-devel-2.40.3_1
+ run_depends
+
+ libsoup-devel-2.40.3_1
+ libsoup-gnome-2.40.3_1
+
+ short_desc
+ HTTP library implementation in C - GNOME development files
+ source-revisions
+ libsoup/libsoup-devel.template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+libsoup/libsoup-gnome-devel.template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+libsoup/libsoup-gnome.template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+libsoup/template: bd105eb0351d13ff8108715f8a4891a2ab68e2b2
+ version
+ 2.40.3_1
+
+ libspectre-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-10 05:49 CEST
+ filename
+ libspectre-devel-0.2.7_1.noarch.xbps
+ filename-sha256
+ 245792aedb927c42fc3e36f3b7907f858d5316a08ffd1f2272ddbd21ba589cc6
+ filename-size
+ 5860
+ homepage
+ http://libspectre.freedesktop.org/wiki/
+ installed_size
+ 73728
+ license
+ GPL-2
+ long_desc
+
+ libspectre is a small library for rendering Postscript documents. It
+ provides a convenient easy to use API for handling and rendering
+ Postscript documents.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libspectre-devel
+ pkgver
+ libspectre-devel-0.2.7_1
+ run_depends
+
+ libspectre>=0.2.7
+
+ short_desc
+ Small library for rendering Postscript documents -- development files
+ version
+ 0.2.7_1
+
+ libssh2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-02 16:03 CET
+ filename
+ libssh2-devel-1.4.3_1.noarch.xbps
+ filename-sha256
+ 1d30e95275175e4fba8f0e2f702f2a8832916c91cb983aa42c05e9873dacd6ba
+ filename-size
+ 105556
+ homepage
+ http://www.libssh2.org/
+ installed_size
+ 152648
+ license
+ BSD
+ long_desc
+
+ libssh2 is a client-side C library implementing the SSH2 protocol. It supports
+ regular terminal, SCP and SFTP sessions; port forwarding; password, key-based
+ and keyboard-interactive authentication.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ libssh2-devel
+ pkgver
+ libssh2-devel-1.4.3_1
+ run_depends
+
+ libssh2>=1.4.3
+
+ short_desc
+ library implementing the SSH2 protocol -- development files
+ source-revisions
+ libssh2/libssh2-devel.template: b64f35788dfb2948f55e08851e3191e7db7aeb23
+libssh2/template: 361c57ef1ed00aa5a079c55aec32d7a385b6a215
+ version
+ 1.4.3_1
+
+ libssl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:56 CET
+ filename
+ libssl-1.0.1e_3.armv6l.xbps
+ filename-sha256
+ 5e381d2edaf552e0202be9fbd6477efaec542714dc97fd212c694f76801a693b
+ filename-size
+ 583304
+ homepage
+ http://www.openssl.org/
+ installed_size
+ 1759560
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libssl
+ pkgver
+ libssl-1.0.1e_3
+ run_depends
+
+ glibc>=2.8_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Secure Sockets Layer and Cryptographic library
+ source-revisions
+ openssl/libssl.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/openssl-devel.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/patches/ca-dir.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/patches/fix-soname-and-rpath.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/template: cebd16c9d79baab43389f527295729d6ff568238
+ version
+ 1.0.1e_3
+
+ libssl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:56 CET
+ filename
+ libssl-dbg-1.0.1e_3.armv6l.xbps
+ filename-sha256
+ 98d18e0b212dfa3a169d2271c58c726a7ac1ff1ee4d81117affe3507ec40835f
+ filename-size
+ 2435988
+ homepage
+ http://www.openssl.org/
+ installed_size
+ 2782973
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libssl-dbg
+ pkgver
+ libssl-dbg-1.0.1e_3
+ short_desc
+ Secure Sockets Layer and Cryptographic library (debug files)
+ source-revisions
+ openssl/libssl.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/openssl-devel.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/patches/ca-dir.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/patches/fix-soname-and-rpath.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/template: cebd16c9d79baab43389f527295729d6ff568238
+ version
+ 1.0.1e_3
+
+ libssp
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libssp-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 213c98a4ef75cb86a02ac8bf06500cb785b4349a52dd9bd9946dc41e7f384958
+ filename-size
+ 5284
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 11064
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libssp
+ pkgver
+ libssp-4.7.2_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ GCC SSP shared library support
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libssp-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libssp-devel-4.7.2_2.armv6l.xbps
+ filename-sha256
+ e584416c1e06617dcfbcc475cf5edd11d38b10ba74d6325bf5ee37be9a850506
+ filename-size
+ 6212
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 33698
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ long_desc
+
+
+ This package contains the Stack Smashing Protection development
+ files provided by GCC.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libssp-devel
+ pkgver
+ libssp-devel-4.7.2_2
+ run_depends
+
+ glibc-devel>=0
+ libssp>=4.7
+
+ short_desc
+ GCC SSP library support
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libstatgrab-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 22:44 CEST
+ filename
+ libstatgrab-devel-0.17_1.noarch.xbps
+ filename-sha256
+ 4907594e0c2f9296b53cd4925803388294d9dddf9a27beab28e136f290f4ff0e
+ filename-size
+ 15688
+ homepage
+ http://www.i-scream.org/libstatgrab
+ installed_size
+ 27909
+ license
+ LGPL-2.1, GPL-2
+ long_desc
+
+ libstatgrab is a library which provides an easy to use interface for
+ accessing system statistics. Available statistics include CPU, Load,
+ Memory, Swap, Disk I/O, and Network I/O.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libstatgrab-devel
+ pkgver
+ libstatgrab-devel-0.17_1
+ run_depends
+
+ libstatgrab-0.17_1
+
+ short_desc
+ Library being useful interface to system statistics (development files)
+ version
+ 0.17_1
+
+ libstdc++
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libstdc++-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 87218b33c3049c05a76b1f88be0f9da2cf302894c6deab299f07edf1b259c348
+ filename-size
+ 174252
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 1032710
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libstdc++
+ pkgver
+ libstdc++-4.7.2_2
+ run_depends
+
+ glibc>=2.17_1
+ libgcc-4.7.2_2
+
+ short_desc
+ GCC Standard C++ Library
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libstdc++-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 18:50 CET
+ filename
+ libstdc++-devel-4.7.2_2.armv6l.xbps
+ filename-sha256
+ 93205b3df4c2224e9d0cb5166d203b2bdf477237148b6d10743a6122fb998ee3
+ filename-size
+ 1096152
+ homepage
+ http://gcc.gnu.org
+ installed_size
+ 11864060
+ license
+ GFDL-1.2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ libstdc++-devel
+ pkgver
+ libstdc++-devel-4.7.2_2
+ run_depends
+
+ libstdc++>=4.7
+
+ short_desc
+ GCC Standard C++ Library (development files)
+ source-revisions
+ gcc/files/c89.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c89.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.1: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/files/c99.sh: 0d002ffbe77454571d30d77bca7cc21f3f3324d1
+gcc/gcc-c++-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-c++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-fortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-go.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc-multilib.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/gcc-objc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgcc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgfortran.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgo.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libgomp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libgomp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libitm32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libmudflap32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libobjc32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libquadmath.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp-devel.template: 3f415407d23c5c0b664a603f033d3ead446a3c48
+gcc/libssp.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libssp32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32-devel.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/libstdc++32.template: 1fecd55a287861a84a36b3a1f0c30ed9c6ec0dd4
+gcc/patches/armhf-triplet-trunk.diff: 9b5a2567f27d4c574423f0888b405eb9b80645db
+gcc/patches/gcc-4.7.0-cloog-0.17.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/patches/gcc-4.7.1-libgo-write.patch: 3019d4b2f4cbb6704d5c7d0a9d653ec235ddb791
+gcc/patches/gcc-4.7.1-ppl-1.0.patch: a7cbd7d91232e4eba1771153f5fb2793628a2c20
+gcc/template: 9b5a2567f27d4c574423f0888b405eb9b80645db
+ version
+ 4.7.2_2
+
+ libtasn1-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-08 18:06 CET
+ filename
+ libtasn1-devel-3.2_1.noarch.xbps
+ filename-sha256
+ fe1d2f0d1e1a03a837e7725f704d94f3cda953838fbf6b1e9c769939ae960f16
+ filename-size
+ 56440
+ homepage
+ http://www.gnu.org/software/libtasn1/
+ installed_size
+ 61751
+ license
+ GPL-3, LGPL-2.1
+ long_desc
+
+ libtasn1 library was developed for ASN1 (Abstract Syntax Notation One)
+ structures management.
+
+ The main features of this library are:
+ - on-line ASN1 structure management that does not require any C
+ code file generation.
+ - off-line ASN1 structure management with C code file generation
+ containing an array.
+ - DER (Distinguish Encoding Rules) encoding.
+ - no limits for INTEGER and ENUMERATED values.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (bf839c8378eb38505d1799d7bde817b22e78db8b)
+ pkgname
+ libtasn1-devel
+ pkgver
+ libtasn1-devel-3.2_1
+ run_depends
+
+ libtasn1>=3.2
+
+ short_desc
+ ASN.1 structure parser library (development files)
+ source-revisions
+ libtasn1/libtasn1-devel.template: f4e6b4b6d270b69ae713e4297704d044a73f1b28
+libtasn1/libtasn1-tools.template: f4e6b4b6d270b69ae713e4297704d044a73f1b28
+libtasn1/template: f4e6b4b6d270b69ae713e4297704d044a73f1b28
+ version
+ 3.2_1
+
+ libtirpc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:23 CET
+ conf_files
+
+ /etc/netconfig
+
+ filename
+ libtirpc-0.2.2_2.armv6l.xbps
+ filename-sha256
+ 5452baf2e13f953f4271ad552baba2fa19a6a52a222f2fedf08af700d00beff1
+ filename-size
+ 48440
+ homepage
+ http://libtirpc.sourceforge.net/
+ installed_size
+ 124230
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libtirpc
+ pkgver
+ libtirpc-0.2.2_2
+ run_depends
+
+ libgssglue>=0.3_1
+ glibc>=2.8_1
+
+ short_desc
+ Transport Independent RPC library (SunRPC replacement)
+ source-revisions
+ libtirpc/libtirpc-devel.template: c5751489285f8fccd49fa88ea082e462c085d950
+libtirpc/patches/libtirpc-0.2.1-fortify.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/patches/libtirpc-0.2.3rc1.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/patches/libtirpc-fix-segfault-0.2.2.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/template: c5751489285f8fccd49fa88ea082e462c085d950
+ version
+ 0.2.2_2
+
+ libtirpc-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 05:23 CET
+ filename
+ libtirpc-dbg-0.2.2_2.armv6l.xbps
+ filename-sha256
+ d443db035de30c0f495751d1b0bcafdd665061a31bcdd7f6035ac422214e6e6a
+ filename-size
+ 216824
+ homepage
+ http://libtirpc.sourceforge.net/
+ installed_size
+ 246951
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ libtirpc-dbg
+ pkgver
+ libtirpc-dbg-0.2.2_2
+ short_desc
+ Transport Independent RPC library (SunRPC replacement) (debug files)
+ source-revisions
+ libtirpc/libtirpc-devel.template: c5751489285f8fccd49fa88ea082e462c085d950
+libtirpc/patches/libtirpc-0.2.1-fortify.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/patches/libtirpc-0.2.3rc1.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/patches/libtirpc-fix-segfault-0.2.2.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/template: c5751489285f8fccd49fa88ea082e462c085d950
+ version
+ 0.2.2_2
+
+ libtirpc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 13:58 CET
+ filename
+ libtirpc-devel-0.2.2_2.noarch.xbps
+ filename-sha256
+ e829bb85f9a3835d5c9a5f3c31664c90d3cfee2df6b12c401b4d6c27104bcb75
+ filename-size
+ 72280
+ homepage
+ http://libtirpc.sourceforge.net/
+ installed_size
+ 217329
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (3d4355bcf3bcc6b13c6c3269a0db07d034eee92b)
+ pkgname
+ libtirpc-devel
+ pkgver
+ libtirpc-devel-0.2.2_2
+ run_depends
+
+ libgssglue-devel>=0
+ libtirpc>=0.2.2
+
+ short_desc
+ Transport Independent RPC library (SunRPC replacement) - development files
+ source-revisions
+ libtirpc/libtirpc-devel.template: c5751489285f8fccd49fa88ea082e462c085d950
+libtirpc/patches/libtirpc-0.2.1-fortify.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/patches/libtirpc-0.2.3rc1.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/patches/libtirpc-fix-segfault-0.2.2.patch: d51e8b99a0e60ad67c87c934a4ddebbb03154cfa
+libtirpc/template: c5751489285f8fccd49fa88ea082e462c085d950
+ version
+ 0.2.2_2
+
+ libtool
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 10:51 CET
+ filename
+ libtool-2.4.2_5.noarch.xbps
+ filename-sha256
+ 90fa57898608270d8162341e5fbec708ef8903625938bd74c5ba92fe5fa96c68
+ filename-size
+ 271092
+ homepage
+ http://www.gnu.org/software/libtool
+ installed_size
+ 1230240
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (55affa1425888c32c57245b2d4a9bc4d9dab86e3)
+ pkgname
+ libtool
+ pkgver
+ libtool-2.4.2_5
+ run_depends
+
+ tar>=0
+ sed>=0
+
+ short_desc
+ Generic library support script
+ source-revisions
+ libtool/libltdl-devel.template: 3617ce499e84d4f450e71eae39f2e90a943634e1
+libtool/libltdl.template: 3617ce499e84d4f450e71eae39f2e90a943634e1
+libtool/patches/0001-tralingslash.patch: 3617ce499e84d4f450e71eae39f2e90a943634e1
+libtool/patches/0002-rename-with-sysroot.patch: 3617ce499e84d4f450e71eae39f2e90a943634e1
+libtool/patches/0004-use-sysroot-in-libpath.patch: 3617ce499e84d4f450e71eae39f2e90a943634e1
+libtool/template: 3617ce499e84d4f450e71eae39f2e90a943634e1
+ version
+ 2.4.2_5
+
+ libtorrent-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-22 12:38 CEST
+ filename
+ libtorrent-devel-0.13.2_1.noarch.xbps
+ filename-sha256
+ 35e6a29213f97b0fcf55c22a3de8837573e81d817b4a6df1b514f8e5161fb346
+ filename-size
+ 44928
+ homepage
+ http://libtorrent.rakshasa.no
+ installed_size
+ 475136
+ license
+ GPL-2
+ long_desc
+
+ LibTorrent is a BitTorrent library written in C++ for *nix, with a focus
+ on high performance and good code. The library differentiates itself from
+ other implementations by transfering directly from file pages to the network
+ stack. On high-bandwidth connections it is able to seed at 3 times the speed
+ of the official client.
+
+ This package contains files for development: headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ libtorrent-devel
+ pkgver
+ libtorrent-devel-0.13.2_1
+ run_depends
+
+ libtorrent>=0.13.2
+
+ short_desc
+ libtorrent - development files
+ version
+ 0.13.2_1
+
+ libudev
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:11 CET
+ filename
+ libudev-197_2.armv6l.xbps
+ filename-sha256
+ 9e6141e0b56a5e1e8318c535827cae54a6b3d3a7b3d125860cbe028c15583a9e
+ filename-size
+ 24924
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 62924
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libudev
+ pkgver
+ libudev-197_2
+ run_depends
+
+ systemd-libs-197_2
+ glibc>=2.17_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ udev shared library
+ source-revisions
+ libudev/libudev-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-libs.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/template: 4442b3ad03412af725924d7398acae7f36c48c6e
+ version
+ 197_2
+
+ libudev-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:11 CET
+ filename
+ libudev-dbg-197_2.armv6l.xbps
+ filename-sha256
+ 418f5a59d2ada71d7fa4419f211931216eedd7576ee31dd7206859cb167dd53d
+ filename-size
+ 154108
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 168504
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libudev-dbg
+ pkgver
+ libudev-dbg-197_2
+ short_desc
+ udev shared library (debug files)
+ source-revisions
+ libudev/libudev-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-libs.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/template: 4442b3ad03412af725924d7398acae7f36c48c6e
+ version
+ 197_2
+
+ libudev-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 18:33 CET
+ filename
+ libudev-devel-197_2.noarch.xbps
+ filename-sha256
+ e63005662a878151e00474b1481dfc8c1feaa171294d05af77cc63bf4fdf3fb1
+ filename-size
+ 3148
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 10342
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libudev-devel
+ pkgver
+ libudev-devel-197_2
+ run_depends
+
+ libudev>=197_2
+
+ short_desc
+ udev shared library -- development files
+ source-revisions
+ libudev/libudev-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-libs.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+ version
+ 197_2
+
+ libunique1-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 10:10 CEST
+ filename
+ libunique1-devel-1.1.6_4.noarch.xbps
+ filename-sha256
+ 7501b4a432d1d3103ac1cdea77ec324187cf737c75b2bd874789103eba8c30a2
+ filename-size
+ 22712
+ homepage
+ http://live.gnome.org/LibUnique
+ installed_size
+ 196777
+ license
+ LGPL-2.1
+ long_desc
+
+ Unique is a library for writing single instance application. If you launch a
+ single instance application twice, the second instance will either just quit
+ or will send a message to the running instance.
+
+ Unique makes it easy to write this kind of applications, by providing a base
+ class, taking care of all the IPC machinery needed to send messages to a
+ running instance, and also handling the startup notification side.
+
+ Unique aims to replace the BaconMessageConnection code that has been copied
+ by many projects and the code using Bonobo and D-Bus.
+
+ This package is built against GTK+2 toolkit, unlike libunique which uses
+ the GTK+3 toolkit.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ xtraeme <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libunique1-devel
+ pkgver
+ libunique1-devel-1.1.6_4
+ run_depends
+
+ gtk+-devel>=0
+ libunique1-1.1.6_4
+
+ short_desc
+ libunique1 development files
+ version
+ 1.1.6_4
+
+ libutempter-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-11 14:26 CET
+ filename
+ libutempter-devel-1.1.6_1.noarch.xbps
+ filename-sha256
+ c8d62072016a72df110b90ae565d297cecce3b6a7becf73563c836b0aa30469d
+ filename-size
+ 3416
+ homepage
+ http://freecode.com/projects/libutempter
+ installed_size
+ 2903
+ license
+ LGPL-2.1
+ long_desc
+
+ libutempter provides a library interface for terminal emulators such as
+ screen and xterm to record user sessions to utmp and wtmp files.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ libutempter-devel
+ pkgver
+ libutempter-devel-1.1.6_1
+ run_depends
+
+ libutempter>=1.1.6
+
+ short_desc
+ Library interface to record user sessions in utmp/wtmp files -- development files
+ source-revisions
+ libutempter/libutempter-devel.template: 9983b002ca0f68e351661be492199ece7f0c742a
+libutempter/template: 9983b002ca0f68e351661be492199ece7f0c742a
+ version
+ 1.1.6_1
+
+ libuuid
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ libuuid-2.22.2_7.armv6l.xbps
+ filename-sha256
+ 3b5f95dd47758140c70f4a579ed98e078792ccd5f65afe7e5aba7c05036a5e33
+ filename-size
+ 6944
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 14284
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libuuid
+ pkgver
+ libuuid-2.22.2_7
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.17_1
+
+ short_desc
+ UUID library
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libuuid-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ libuuid-dbg-2.22.2_7.armv6l.xbps
+ filename-sha256
+ 00848b90b2e9b2505782489f4632f5f10af9ff6d4b12b4785188dd351de83855
+ filename-size
+ 20916
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 26063
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libuuid-dbg
+ pkgver
+ libuuid-dbg-2.22.2_7
+ short_desc
+ UUID library (debug files)
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libuuid-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:54 CET
+ filename
+ libuuid-devel-2.22.2_7.noarch.xbps
+ filename-sha256
+ a0fbc6794a06e9c2ac1d965b9ae63bf50aaaac1a07f8792e0582d975e2e94bdb
+ filename-size
+ 16652
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 17043
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libuuid-devel
+ pkgver
+ libuuid-devel-2.22.2_7
+ run_depends
+
+ libuuid-2.22.2_7
+
+ short_desc
+ UUID library development files
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ libva-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-09 19:43 CEST
+ filename
+ libva-devel-1:1.1.0_1.noarch.xbps
+ filename-sha256
+ 9ea87addb7e16312bfe562104c956d524e051fb9c6f830b48625c3f5033ece59
+ filename-size
+ 26728
+ homepage
+ http://freedesktop.org/wiki/Software/vaapi
+ installed_size
+ 125536
+ license
+ MIT
+ long_desc
+
+ The main motivation for VA-API (Video Acceleration API) is to enable hardware
+ accelerated video decode/encode at various entry-points (VLD, IDCT, Motion
+ Compensation etc.) for the prevailing coding standards today (MPEG-2,
+ MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libva-devel
+ pkgver
+ libva-devel-1:1.1.0_1
+ run_depends
+
+ libva-1:1.1.0_1
+
+ short_desc
+ Video Acceleration (VA) API - development files
+ version
+ 1:1.1.0_1
+
+ libvarnishapi-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-11 16:11 CET
+ filename
+ libvarnishapi-devel-3.0.3_2.noarch.xbps
+ filename-sha256
+ 8bf9a63881b0d2a1e33858a814ff32d54875b8b7a9ff5d256e40dabbf2d64a5f
+ filename-size
+ 11184
+ homepage
+ https://www.varnish-cache.org/
+ installed_size
+ 37683
+ license
+ Simplified BSD
+ long_desc
+
+ Varnish Cache is a web application accelerator also known as a caching HTTP
+ reverse proxy. You install it in front of any server that speaks HTTP and
+ configure it to cache the contents. Varnish Cache is really, really fast.
+ It typically speeds up delivery with a factor of 300 - 1000x, depending on
+ your architecture. A high level overview of what Varnish does can be seen
+ in the video attached to this web page.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ libvarnishapi-devel
+ pkgver
+ libvarnishapi-devel-3.0.3_2
+ run_depends
+
+ libvarnishapi>=3.0.3
+
+ short_desc
+ A fast caching HTTP reverse proxy -- API development files
+ source-revisions
+ varnish/files/varnish-vcl-reload: 1e734d5ac19bd9422877c5f6b1af785f40ea853c
+varnish/files/varnish.service: f7d8d51c397b90335b1f23bbeb2e4b5f875c04bc
+varnish/libvarnishapi-devel.template: 1e734d5ac19bd9422877c5f6b1af785f40ea853c
+varnish/libvarnishapi.template: 1e734d5ac19bd9422877c5f6b1af785f40ea853c
+varnish/template: f7d8d51c397b90335b1f23bbeb2e4b5f875c04bc
+ version
+ 3.0.3_2
+
+ libvdpau-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-02 01:58 CET
+ filename
+ libvdpau-devel-0.6_1.noarch.xbps
+ filename-sha256
+ 63842af6b4220bd6969cbb4ea1338424fa16d2845b7d27be49e449f4e6619886
+ filename-size
+ 31156
+ homepage
+ http://cgit.freedesktop.org/~aplattner/libvdpau
+ installed_size
+ 169670
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-35 (7b5dfbdf4fb6481ce2b222c8817450fa92adc04c)
+ pkgname
+ libvdpau-devel
+ pkgver
+ libvdpau-devel-0.6_1
+ run_depends
+
+ libX11-devel>=0
+ libvdpau>=0.6
+
+ short_desc
+ The Video Decode and Presentation API for UNIX - development files
+ source-revisions
+ libvdpau/libvdpau-devel.template: fdf685a35f9f1cf7d53c8be1818ba3a59bdeec06
+libvdpau/template: fdf685a35f9f1cf7d53c8be1818ba3a59bdeec06
+ version
+ 0.6_1
+
+ libvirt-glib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 20:41 CET
+ filename
+ libvirt-glib-devel-0.1.4_1.noarch.xbps
+ filename-sha256
+ 391a02b8ba55f702b3dffe9f3a4f82389b632a9af6dc7477d0b7657134146ca3
+ filename-size
+ 104124
+ homepage
+ http://libvirt.org
+ installed_size
+ 1715572
+ license
+ LGPL-2.1
+ long_desc
+
+ libvirt-glib wraps libvirt to provide a high-level object-oriented API better
+ suited for glib-based applications, via three libraries:
+
+ - libvirt-glib - GLib main loop integration and misc helper APIs
+ - libvirt-gconfig - GObjects for manipulating libvirt XML documents
+ - libvirt-gobject - GObjects for managing libvirt objects
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ libvirt-glib-devel
+ pkgver
+ libvirt-glib-devel-0.1.4_1
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=0
+ libvirt-devel>=0
+ libvirt-glib>=0.0.8
+
+ short_desc
+ libvirt glib integration - development files
+ source-revisions
+ libvirt-glib/libvirt-glib-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+libvirt-glib/libvirt-glib-python.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+libvirt-glib/template: 28e12bdc2b7ceebdbc40bb2c49245bf4248493b6
+ version
+ 0.1.4_1
+
+ libvisual-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:45 CEST
+ filename
+ libvisual-devel-0.4.0_4.noarch.xbps
+ filename-sha256
+ 114b0d995154ddb17dd654622812456fbc07143e0e068a66e871c94a2f53988e
+ filename-size
+ 37012
+ homepage
+ http://sourceforge.net/projects/libvisual/
+ installed_size
+ 210670
+ license
+ LGPL-2.1
+ long_desc
+
+ Libvisual is an abstraction library that comes between applications and
+ audio visualisation plugins.
+
+ Often when it comes to audio visualisation plugins or programs that create
+ visuals they do depend on a player or something else, basically there is no
+ general framework that enable application developers to easy access cool
+ audio visualisation plugins. Libvisual wants to change this by providing
+ an interface towards plugins and applications, through this easy to use
+ interface applications can easily access plugins and since the drawing is
+ done by the application it also enables the developer to draw the visual
+ anywhere he wants.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libvisual-devel
+ pkgver
+ libvisual-devel-0.4.0_4
+ run_depends
+
+ libvisual-0.4.0_4
+
+ short_desc
+ libvisual development files
+ version
+ 0.4.0_4
+
+ libwebp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:24 CET
+ filename
+ libwebp-devel-0.2.1_2.noarch.xbps
+ filename-sha256
+ 8054836ed23cc39ceb2528de1f3aa9674f0eb437da4f37074045f4a052ebb03e
+ filename-size
+ 12744
+ homepage
+ http://code.google.com/speed/webp/
+ installed_size
+ 44766
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ libwebp-devel
+ pkgver
+ libwebp-devel-0.2.1_2
+ run_depends
+
+ libjpeg-turbo-devel>=0
+ libpng-devel>=0
+ libwebp>=0.2.1
+
+ short_desc
+ WebP image format - development files
+ source-revisions
+ libwebp/libwebp-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+libwebp/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 0.2.1_2
+
+ libwmf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:23 CET
+ filename
+ libwmf-devel-0.2.8.4_13.noarch.xbps
+ filename-sha256
+ bcea1b45b715423aac72652b5f24fff06c87c90b4eef47039e107bd1b1dee697
+ filename-size
+ 233868
+ homepage
+ http://wvware.sourceforge.net/libwmf.html
+ installed_size
+ 2273047
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ libwmf-devel
+ pkgver
+ libwmf-devel-0.2.8.4_13
+ run_depends
+
+ libwmf-0.2.8.4_13
+
+ short_desc
+ Library for reading and converting WMF (Windows Meta Files) -- development files
+ source-revisions
+ libwmf/libwmf-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+libwmf/template: 1dfb364156239bbf0911590eb17b32ca8cb64d6c
+ version
+ 0.2.8.4_13
+
+ libwnck-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-10 12:59 CET
+ filename
+ libwnck-devel-3.4.5_1.noarch.xbps
+ filename-sha256
+ 19958753cec87e8e299a54a4d018e5f15a01c5ee3fd4002ca80dfa0c7c3479e2
+ filename-size
+ 66980
+ homepage
+ http://www.gnome.org/
+ installed_size
+ 864486
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libwnck-devel
+ pkgver
+ libwnck-devel-3.4.5_1
+ run_depends
+
+ gtk+3-devel>=0
+ startup-notification-devel>=0
+ libXres-devel>=0
+ libwnck>=3.4.5
+
+ short_desc
+ Library for layout and rendering of text -- development files
+ source-revisions
+ libwnck/libwnck-devel.template: 5fd9142a6886eb4d3d80f00653182515a772b93a
+libwnck/template: 5fd9142a6886eb4d3d80f00653182515a772b93a
+ version
+ 3.4.5_1
+
+ libxbps
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:00 CET
+ filename
+ libxbps-0.20_10.armv6l.xbps
+ filename-sha256
+ b8898723baec4353518ec66a1b7df0b8e1437c9d2760e7ecac5bfba2e5719189
+ filename-size
+ 37384
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 103816
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libxbps
+ pkgver
+ libxbps-0.20_10
+ replaces
+
+ xbps<0.16.3_2
+ libxbps>=0
+
+ run_depends
+
+ libfetch>=2.33_1
+ zlib>=1.2.3_1
+ glibc>=2.17_1
+ proplib>=0.1_1
+ libarchive>=3.1.2_1
+ confuse>=2.7_1
+ libssl>=1.0.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The XBPS package system utilities - runtime library
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ libxbps-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:00 CET
+ filename
+ libxbps-dbg-0.20_10.armv6l.xbps
+ filename-sha256
+ b5e8fce8275c78b09c721b0e9f5fe4edd25d97e6dfdf8072386a2d402a51b616
+ filename-size
+ 136196
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 157349
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libxbps-dbg
+ pkgver
+ libxbps-dbg-0.20_10
+ short_desc
+ The XBPS package system utilities - runtime library (debug files)
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ libxbps-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:00 CET
+ filename
+ libxbps-devel-0.20_10.armv6l.xbps
+ filename-sha256
+ 62e1374d93156eab331c96d44600fdbaa020d4ecdbbc0df85685e00da274a430
+ filename-size
+ 58304
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 257638
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ libxbps-devel
+ pkgver
+ libxbps-devel-0.20_10
+ replaces
+
+ xbps-static<0.16.3_2
+ libxbps-devel>=0
+
+ run_depends
+
+ zlib-devel>=0
+ proplib-devel>=0
+ confuse-devel>=0
+ libfetch-devel>=0
+ libarchive-devel>=0
+ libxbps>=0.20
+
+ short_desc
+ The XBPS package system utilities - runtime library (development files)
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ libxbps-devel-git
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ libxbps-devel-git-20130306_1.armv6l.xbps
+ filename-sha256
+ 3f939a7f615a49eba8d4eb8577d61334b3222c8b0bfebec75b204ecb11c31959
+ filename-size
+ 57456
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 253612
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ libxbps-devel-git
+ pkgver
+ libxbps-devel-git-20130306_1
+ provides
+
+ libxbps-devel-20130306
+
+ replaces
+
+ libxbps-devel>=0
+
+ run_depends
+
+ zlib-devel>=0
+ proplib-devel>=0
+ confuse-devel>=0
+ libfetch-devel>=0
+ libarchive-devel>=0
+ libxbps>=20130306
+
+ short_desc
+ The XBPS package system (development branch) - runtime library (development files)
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ libxbps-git
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ libxbps-git-20130306_1.armv6l.xbps
+ filename-sha256
+ 7c8902bd7b0a4c12985f0e7468e8766427e46e270963a8683ce34fbad74a9a81
+ filename-size
+ 36592
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 99827
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ libxbps-git
+ pkgver
+ libxbps-git-20130306_1
+ provides
+
+ libxbps-20130306
+
+ replaces
+
+ libxbps>=0
+ xbps-devel>=0
+
+ run_depends
+
+ libfetch>=2.33_1
+ zlib>=1.2.3_1
+ glibc>=2.17_1
+ proplib>=0.1_1
+ libarchive>=3.1.2_1
+ confuse>=2.7_1
+ libssl>=1.0.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The XBPS package system (development branch) - runtime library
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ libxbps-git-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ libxbps-git-dbg-20130306_1.armv6l.xbps
+ filename-sha256
+ 2f1d95e49519b5745baa07546e5be594546207d19d3fb8c5699b94457c98f527
+ filename-size
+ 134960
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 156436
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ libxbps-git-dbg
+ pkgver
+ libxbps-git-dbg-20130306_1
+ short_desc
+ The XBPS package system (development branch) - runtime library (debug files)
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ libxcb
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:27 CET
+ filename
+ libxcb-1.9_2.armv6l.xbps
+ filename-sha256
+ 6fe406c751acca986e7921bc22a2c4c396a8e5da0430133e8bb148c600727946
+ filename-size
+ 65708
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 358688
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libxcb
+ pkgver
+ libxcb-1.9_2
+ run_depends
+
+ glibc>=2.8_1
+ libXau>=1.0.4_1
+ libXdmcp>=1.0.2_1
+
+ short_desc
+ X protocol C-language Binding
+ source-revisions
+ libxcb/libxcb-devel.template: 03b8f566d772579de1f3b2eb841a42b359957c92
+libxcb/patches/configure_no_pthread_stubs.diff: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+libxcb/template: 03b8f566d772579de1f3b2eb841a42b359957c92
+ version
+ 1.9_2
+
+ libxcb-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:27 CET
+ filename
+ libxcb-dbg-1.9_2.armv6l.xbps
+ filename-sha256
+ a455fe362fb6a6f812a41cea7f5e83aef2e0b9c7f8c30bc6c946607ded2994be
+ filename-size
+ 391464
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 613190
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libxcb-dbg
+ pkgver
+ libxcb-dbg-1.9_2
+ short_desc
+ X protocol C-language Binding (debug files)
+ source-revisions
+ libxcb/libxcb-devel.template: 03b8f566d772579de1f3b2eb841a42b359957c92
+libxcb/patches/configure_no_pthread_stubs.diff: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+libxcb/template: 03b8f566d772579de1f3b2eb841a42b359957c92
+ version
+ 1.9_2
+
+ libxcb-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 14:26 CET
+ filename
+ libxcb-devel-1.9_2.noarch.xbps
+ filename-sha256
+ 605e8760cbd5d32074633a3c3282e2283478e42dba5187883cb1acc9f5715aaa
+ filename-size
+ 759936
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 3755421
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ libxcb-devel
+ pkgver
+ libxcb-devel-1.9_2
+ run_depends
+
+ libXdmcp-devel>=0
+ libXau-devel>=0
+ libxcb>=1.9
+
+ short_desc
+ X protocol C-language Binding -- development files
+ source-revisions
+ libxcb/libxcb-devel.template: 03b8f566d772579de1f3b2eb841a42b359957c92
+libxcb/patches/configure_no_pthread_stubs.diff: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+libxcb/template: 03b8f566d772579de1f3b2eb841a42b359957c92
+ version
+ 1.9_2
+
+ libxfce4ui-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ libxfce4ui-devel-4.10.0_1.noarch.xbps
+ filename-sha256
+ 6510a0e863b5451b07b85cf9bfdbca10635bf1897a5c0395952bf8d5eda54677
+ filename-size
+ 29632
+ homepage
+ http://xfce.org
+ installed_size
+ 385024
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ This is libxfce4ui, the replacement of the old libxfcegui4 library. It is used
+ to share commonly used Xfce widgets amoung the Xfce applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ libxfce4ui-devel
+ pkgver
+ libxfce4ui-devel-4.10.0_1
+ run_depends
+
+ gtk+-devel>=0
+ libxfce4util-devel>=0
+ xfconf-devel>=0
+ libxfce4ui>=4.10.0
+
+ short_desc
+ Replacement of the old libxfcegui4 library - development files
+ version
+ 4.10.0_1
+
+ libxfce4util-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:49:22 UTC
+ filename
+ libxfce4util-devel-4.10.0_1.noarch.xbps
+ filename-sha256
+ ba73fec0cea179811c75821332085214c39174bef5325f076a310dc16a4b4eb7
+ filename-size
+ 30416
+ homepage
+ http://xfce.org
+ installed_size
+ 389120
+ license
+ LGPL-2.1
+ long_desc
+
+ This package includes basic utility non-GUI functions for Xfce4.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ libxfce4util-devel
+ pkgver
+ libxfce4util-devel-4.10.0_1
+ run_depends
+
+ glib-devel>=0
+ libxfce4util>=4.10.0
+
+ short_desc
+ Utility library for the Xfce4 desktop environment - development files
+ version
+ 4.10.0_1
+
+ libxfcegui4-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 10:11 CEST
+ filename
+ libxfcegui4-devel-4.10.0_3.noarch.xbps
+ filename-sha256
+ 05ab5e2d12326401ae6fd4e542788b6879dd964090f7d91fde8e34da262e4cfc
+ filename-size
+ 49012
+ homepage
+ http://www.xfce.org/
+ installed_size
+ 550305
+ license
+ GPL-2
+ long_desc
+
+ The package includes various GTK+ widgets for Xfce.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libxfcegui4-devel
+ pkgver
+ libxfcegui4-devel-4.10.0_3
+ run_depends
+
+ libxfce4util-devel>=0
+ libxfcegui4-4.10.0_3
+
+ short_desc
+ GTK widgets for Xfce - development files
+ version
+ 4.10.0_3
+
+ libxkbcommon-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-20 14:09 CET
+ filename
+ libxkbcommon-devel-0.2.0_2.noarch.xbps
+ filename-sha256
+ 042dc551135f7c08709827240a82ec21be45cee1dfdfe376f7ac0ad46e3c63b8
+ filename-size
+ 37704
+ homepage
+ http://xkbcommon.org/
+ installed_size
+ 264053
+ license
+ MIT/X11
+ long_desc
+
+ xkbcommon is a library to handle keyboard descriptions, including loading
+ them from disk, parsing them and handling their state. It's mainly meant
+ for client toolkits, window systems, and other system applications;
+ currently that includes Wayland, kmscon, GTK+, Clutter, and more.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libxkbcommon-devel
+ pkgver
+ libxkbcommon-devel-0.2.0_2
+ run_depends
+
+ libxkbcommon-0.2.0_2
+
+ short_desc
+ Library to handle keyboard descriptions -- development files
+ source-revisions
+ [master] libxkbcommon/libxkbcommon-devel.template: 5b14a70f579e07783e7bc188f3129e371870368f
+[master] libxkbcommon/libxkbcommon.rshlibs: 5b14a70f579e07783e7bc188f3129e371870368f
+[master] libxkbcommon/template: 5a90e64c453e7584e457f43804bd458638b74334
+ version
+ 0.2.0_2
+
+ libxkbui-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:38 CEST
+ filename
+ libxkbui-devel-1.0.2_5.noarch.xbps
+ filename-sha256
+ ee5c05c44e0c391ed219d78f93f610241023bffedfb3a87d5f318417a3f4fd84
+ filename-size
+ 2676
+ installed_size
+ 5316
+ long_desc
+
+ This is the xkbui library from modular X.org.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libxkbui-devel
+ pkgver
+ libxkbui-devel-1.0.2_5
+ run_depends
+
+ libxkbui-1.0.2_5
+
+ short_desc
+ xkbui library from modular x.org (development files)
+ version
+ 1.0.2_5
+
+ libxklavier-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-08 19:17 CEST
+ filename
+ libxklavier-devel-5.3_1.noarch.xbps
+ filename-sha256
+ 0f8f7c1ebdd0d41f2fa0a7500a2868e925d8486dc7d24bdf43bbad63946bd92a
+ filename-size
+ 22984
+ installed_size
+ 189490
+ long_desc
+
+ libxklavier is a library providing high-level API for X Keyboard Extension
+ known as XKB. This library is intended to support XFree86 and other
+ commercial X servers. It is useful for creating XKB-related software
+ (layout indicators etc).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libxklavier-devel
+ pkgver
+ libxklavier-devel-5.3_1
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=2.7.8
+ libxklavier>=5.3
+
+ short_desc
+ libxklavier -- development files
+ version
+ 5.3_1
+
+ libxml++-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-05 10:14 CET
+ filename
+ libxml++-devel-2.36.0_1.noarch.xbps
+ filename-sha256
+ c227225eb7608c0d58349a9574cc7f29db27be9cd1a0f77fa36b2c9d408d0836
+ filename-size
+ 19732
+ homepage
+ http://libxmlplusplus.sourceforge.net/
+ installed_size
+ 100551
+ license
+ LGPL-2.1
+ long_desc
+
+ This library allows to manipulate XML files. It includes support
+ to read, modify and write XML and HTML files. There is DTDs support
+ this includes parsing and validation even with complex DtDs, either
+ at parse time or later once the document has been modified. The output
+ can be a simple SAX stream or and in-memory DOM like representations.
+ In this case one can use the built-in XPath and XPointer implementation
+ to select subnodes or ranges. A flexible Input/Output mechanism is
+ available, with existing HTTP and FTP modules and combined to an
+ URI library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ libxml++-devel
+ pkgver
+ libxml++-devel-2.36.0_1
+ run_depends
+
+ libxml2-devel>=0
+ libxml++-2.36.0_1
+
+ short_desc
+ C++ bindings for libxml2 - development files
+ version
+ 2.36.0_1
+
+ libxml2
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 11:49 CET
+ filename
+ libxml2-2.8.0_2.armv6l.xbps
+ filename-sha256
+ c0e072428564e9ef0a7d018d695c21766c00eb56e2dacf52bdb70e1705eb7001
+ filename-size
+ 420316
+ homepage
+ http://www.xmlsoft.org/
+ installed_size
+ 1231911
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libxml2
+ pkgver
+ libxml2-2.8.0_2
+ run_depends
+
+ readline>=6.0_1
+ glibc>=2.8_1
+ zlib>=1.2.3_1
+ liblzma>=5.0.0_1
+
+ short_desc
+ Library providing XML and HTML support
+ source-revisions
+ libxml2/libxml2-devel.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/libxml2-python.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+ version
+ 2.8.0_2
+
+ libxml2-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 11:49 CET
+ filename
+ libxml2-dbg-2.8.0_2.armv6l.xbps
+ filename-sha256
+ f1fe50fa877605d2c9bd35fe1d550b03b51387fb343bf09ccf9246c4285f6f93
+ filename-size
+ 1197848
+ homepage
+ http://www.xmlsoft.org/
+ installed_size
+ 1440191
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libxml2-dbg
+ pkgver
+ libxml2-dbg-2.8.0_2
+ short_desc
+ Library providing XML and HTML support (debug files)
+ source-revisions
+ libxml2/libxml2-devel.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/libxml2-python.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+ version
+ 2.8.0_2
+
+ libxml2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 11:46 CET
+ filename
+ libxml2-devel-2.8.0_2.noarch.xbps
+ filename-sha256
+ 684e9d9bb5bc69a78291c09bfe4f83c443fdb5d2ffca88a9ba644cc66fe0e5cb
+ filename-size
+ 562040
+ homepage
+ http://www.xmlsoft.org/
+ installed_size
+ 6277963
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libxml2-devel
+ pkgver
+ libxml2-devel-2.8.0_2
+ run_depends
+
+ zlib-devel>=0
+ libxml2>=2.8.0
+
+ short_desc
+ Library providing XML and HTML support -- development files
+ source-revisions
+ libxml2/libxml2-devel.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/libxml2-python.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+ version
+ 2.8.0_2
+
+ libxml2-python
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 11:49 CET
+ filename
+ libxml2-python-2.8.0_2.armv6l.xbps
+ filename-sha256
+ b6d89d89c750cc070c434eca88eae8c4f22fe7d292be515d5b4730c954997a95
+ filename-size
+ 117388
+ homepage
+ http://www.xmlsoft.org/
+ installed_size
+ 726801
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libxml2-python
+ pkgver
+ libxml2-python-2.8.0_2
+ run_depends
+
+ libxml2>=2.7.0_1
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ Library providing XML and HTML support -- python extension
+ source-revisions
+ libxml2/libxml2-devel.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/libxml2-python.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+ version
+ 2.8.0_2
+
+ libxml2-python-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 11:49 CET
+ filename
+ libxml2-python-dbg-2.8.0_2.armv6l.xbps
+ filename-sha256
+ 86b5bf1e76c7d9d32645c2674de912244e891919348d44747265e69273f7b2e4
+ filename-size
+ 185208
+ homepage
+ http://www.xmlsoft.org/
+ installed_size
+ 295636
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ libxml2-python-dbg
+ pkgver
+ libxml2-python-dbg-2.8.0_2
+ short_desc
+ Library providing XML and HTML support -- python extension (debug files)
+ source-revisions
+ libxml2/libxml2-devel.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/libxml2-python.template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+libxml2/template: 66d6f3ef819d1c3fd4a3d772dcd21846f9467001
+ version
+ 2.8.0_2
+
+ libxslt-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-27 22:19 CET
+ filename
+ libxslt-devel-1.1.28_1.noarch.xbps
+ filename-sha256
+ b8a37125ba007103d39f37753fc56de23733e9e3e9865358910a858525d65a6d
+ filename-size
+ 203984
+ homepage
+ http://xmlsoft.org/XSLT/
+ installed_size
+ 1830573
+ license
+ MIT
+ long_desc
+
+ Libxslt is the XSLT C library developed for the Gnome project. XSLT itself is
+ an XML language to define transformation for XML. Libxslt is based on libxml2
+ the XML C library developed for the Gnome project. It also implements most of
+ the EXSLT set of extensions functions and some of Saxon's evaluate and
+ expressions extensions.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ libxslt-devel
+ pkgver
+ libxslt-devel-1.1.28_1
+ run_depends
+
+ libxml2-devel>=0
+ libxslt-1.1.28_1
+
+ short_desc
+ XSLT parser library from the GNOME project (development files)
+ source-revisions
+ libxslt/libxslt-devel.template: 4c12a421d43fae506becff091babe35be2678a8e
+libxslt/libxslt-python.template: de58b1becf755b1eb242d68716d56ad58b9e0b47
+libxslt/template: e5ea75117dc06a11fa788405008a019b70717b01
+ version
+ 1.1.28_1
+
+ libzapojit-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:17 CEST
+ filename
+ libzapojit-devel-0.0.2_2.noarch.xbps
+ filename-sha256
+ 87455554329a8a37d24e27329c9e8621de230407bf5d6dc3778077a36ea0bd8d
+ filename-size
+ 27048
+ homepage
+ http://live.gnome.org/Zapojit
+ installed_size
+ 359968
+ license
+ LGPL-2.1
+ long_desc
+
+ libzapojit is a GLib/GObject wrapper for the SkyDrive and Hotmail REST APIs.
+
+ This package contains development files: headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ libzapojit-devel
+ pkgver
+ libzapojit-devel-0.0.2_2
+ run_depends
+
+ glib-devel>=0
+ json-glib-devel>=0
+ libsoup-devel>=0
+ rest-devel>=0
+ libzapojit-0.0.2_2
+
+ short_desc
+ GLib/GObject wrapper for the SkyDrive and Hotmail REST APIs - development files
+ version
+ 0.0.2_2
+
+ libzeitgeist-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 04:07 CEST
+ filename
+ libzeitgeist-devel-0.3.18_1.noarch.xbps
+ filename-sha256
+ ba97dd020b50ec6da7ba039ffeae935770257ed727e64fa6b5543aab7be3895b
+ filename-size
+ 59988
+ homepage
+ https://launchpad.net/libzeitgeist
+ installed_size
+ 950272
+ license
+ LGPL-2.1
+ long_desc
+
+ This project provides a client library for applications that want to interact
+ with the Zeitgeist daemon. The library is written in C using glib and provides
+ an asynchronous GObject oriented API.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ libzeitgeist-devel
+ pkgver
+ libzeitgeist-devel-0.3.18_1
+ run_depends
+
+ libzeitgeist>=0.3.18
+
+ short_desc
+ Zeitgeist Client Library -- development files
+ version
+ 0.3.18_1
+
+ lightdm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 12:13 CET
+ filename
+ lightdm-devel-1.4.0_3.noarch.xbps
+ filename-sha256
+ 732102eb7bb4e5221fcf53243afce249c0022c0e06461bec7497ad084c4a92a7
+ filename-size
+ 23528
+ homepage
+ https://launchpad.net/lightdm
+ installed_size
+ 239467
+ license
+ GPL-3, LGPL-3
+ long_desc
+
+ An X display manager that:
+ * Has a lightweight codebase
+ * Is standards compliant (PAM, ConsoleKit, etc)
+ * Has a well defined interface between the server and user interface
+ * Fully themeable (easiest with the webkit interface)
+ * Cross-desktop (greeters can be written in any toolkit)
+
+ This package contains headers, static libs, etc for LightDM.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ lightdm-devel
+ pkgver
+ lightdm-devel-1.4.0_3
+ run_depends
+
+ glib-devel>=0
+ liblightdm-gobject-1.4.0_3
+ liblightdm-qt-1.4.0_3
+
+ short_desc
+ Light Display Manager - development files
+ source-revisions
+ lightdm/INSTALL: cdcea64098b3f64eacb0d1b7cc281f1ed576f5ae
+lightdm/REMOVE: e20b929b71129e56683e76d420cb61a65ee7aec1
+lightdm/files/lightdm-autologin.pam: 4a9d1526a1fd456834ac10b9c9aa55aee9132f6b
+lightdm/files/lightdm.pam: 4a9d1526a1fd456834ac10b9c9aa55aee9132f6b
+lightdm/files/lightdm.rules: 1e716aaefbe6d6c96db2aec24cd69de43b2f85e0
+lightdm/files/lightdm.service: 1e716aaefbe6d6c96db2aec24cd69de43b2f85e0
+lightdm/files/xsession: 95f5cbeec6c07afa357793e6da6db5cbedd08fc8
+lightdm/liblightdm-gobject.template: 5af7d966e2d56944a40ea8096dbbd9ad2833f7ca
+lightdm/liblightdm-qt.template: 5af7d966e2d56944a40ea8096dbbd9ad2833f7ca
+lightdm/lightdm-devel.template: 024b6169aa1247dfbfccf0be53bae1cd378c8186
+lightdm/patches/lightdm-1.4.0-systemd_login1_power.patch: 1e716aaefbe6d6c96db2aec24cd69de43b2f85e0
+lightdm/patches/lightdm-1.4.0-void_config.patch: 1e716aaefbe6d6c96db2aec24cd69de43b2f85e0
+lightdm/patches/lightdm-lock-screen-before-switch.patch: 1e716aaefbe6d6c96db2aec24cd69de43b2f85e0
+lightdm/template: 4a9d1526a1fd456834ac10b9c9aa55aee9132f6b
+ version
+ 1.4.0_3
+
+ lilv-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 10:21 CEST
+ filename
+ lilv-devel-0.14.4_1.noarch.xbps
+ filename-sha256
+ 8cc1cbfca9c97024156627b948a7f406582914d156816749d5791f42a8964e6a
+ filename-size
+ 15268
+ homepage
+ http://drobilla.net/software/lilv/
+ installed_size
+ 98304
+ license
+ ISC
+ long_desc
+
+ Lilv is a library to make the use of LV2 plugins as simple as possible for
+ applications. Lilv is the successor to SLV2, rewritten to be significantly
+ faster and have minimal dependencies.
+
+ This package contains files for development: headers, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ lilv-devel
+ pkgver
+ lilv-devel-0.14.4_1
+ run_depends
+
+ glibc-devel>=0
+ sord-devel>=0
+ liblilv>=0.14.4
+
+ short_desc
+ Lilv is a simple yet powerful C API for using LV2 plugins. - Development files
+ version
+ 0.14.4_1
+
+ linux-firmware
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 09:53 CET
+ filename
+ linux-firmware-20121118_1.noarch.xbps
+ filename-sha256
+ 5810cf877ae7daf7d5997284573df28af5eb24799200250676707b0f5fb314d2
+ filename-size
+ 6666888
+ homepage
+ http://www.kernel.org/
+ installed_size
+ 21582227
+ license
+ See /usr/share/licenses/linux-firmware
+ long_desc
+
+ This package provides binary firmware blobs for misc hardware supported by
+ the Linux kernel.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ linux-firmware
+ pkgver
+ linux-firmware-20121118_1
+ replaces
+
+ kernel-firmware>=0
+ radeon-firmware>=0
+ iwl1000-firmware>=0
+ iwl3945-firmware>=0
+ iwl4965-firmware>=0
+ iwl5000-firmware>=0
+ iwl5150-firmware>=0
+ iwl6000-firmware>=0
+ rt73usb-firmware>=0
+ rt2800usb>=0
+ rt61-firmware>=0
+ ar9170-firmware>=0
+
+ run_depends
+
+ linux-firmware-network-20121118_1
+
+ short_desc
+ Binary firmware blobs for the Linux kernel
+ source-revisions
+ linux-firmware/linux-firmware-network.template: 8b1b5912fb1ffc689a686eb084968e6954d8b693
+linux-firmware/template: 973c02fb28dc47b2b7d808b77e1b280c1704fefe
+ version
+ 20121118_1
+
+ linux-firmware-network
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 09:52 CET
+ filename
+ linux-firmware-network-20121118_1.noarch.xbps
+ filename-sha256
+ 96e204cdc0093fbec7be60ce0ab1f7607cb348eac599483d650ae3231f6e4b99
+ filename-size
+ 10489692
+ homepage
+ http://www.kernel.org/
+ installed_size
+ 25307442
+ license
+ See /usr/share/licenses/linux-firmware
+ long_desc
+
+ This package provides binary firmware blobs for misc hardware supported by
+ the Linux kernel.
+
+ This package contains only the required firmware files for the
+ Network modules.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ linux-firmware-network
+ pkgver
+ linux-firmware-network-20121118_1
+ short_desc
+ Binary firmware blobs for the Linux kernel for network modules
+ source-revisions
+ linux-firmware/linux-firmware-network.template: 8b1b5912fb1ffc689a686eb084968e6954d8b693
+linux-firmware/template: 973c02fb28dc47b2b7d808b77e1b280c1704fefe
+ version
+ 20121118_1
+
+ llvm-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-25 09:29 CET
+ filename
+ llvm-docs-3.2_3.noarch.xbps
+ filename-sha256
+ f60136fd91428b91c53827e32cffe7b90d0f54895646c5f1d769c4e933b63a83
+ filename-size
+ 615500
+ homepage
+ http://www.llvm.org
+ installed_size
+ 2000587
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ llvm-docs
+ pkgver
+ llvm-docs-3.2_3
+ short_desc
+ llvm - documentation files
+ source-revisions
+ llvm/INSTALL: 5a8130aa2ceef43450be95e89120ad9603146626
+llvm/REMOVE: 5a8130aa2ceef43450be95e89120ad9603146626
+llvm/clang-analyzer.template: d6741756d0d457fa08cb1681698f676ee83e856d
+llvm/clang.template: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/files/llvm-Config-config.h: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/files/llvm-Config-llvm-config.h: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/llvm-docs.template: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/patches/clang-3.1-fix-libprofile_rt.a-location.patch: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/patches/llvm-3.1-fix-debug-line-info.patch: a01dca3f8ecd28c1c30d1bf49d16ccf9ae37c9e4
+llvm/template: d6741756d0d457fa08cb1681698f676ee83e856d
+ version
+ 3.2_3
+
+ lm-sensors
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 12:14 CET
+ conf_files
+
+ /etc/sensors3.conf
+
+ filename
+ lm-sensors-3.3.3_1.armv6l.xbps
+ filename-sha256
+ 00a77dece66029e33379c9fa49eaf238d2960f805c87af98614d482570f8f666
+ filename-size
+ 77436
+ homepage
+ http://www.lm-sensors.org/
+ installed_size
+ 305012
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ lm-sensors provides most complete hardware health monitoring support for
+ Linux, in the form of kernel drivers and a user-space library
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (fec30fbfdd73d9a62fdd4636c6b74d79d91009a4)
+ pkgname
+ lm-sensors
+ pkgver
+ lm-sensors-3.3.3_1
+ run_depends
+
+ perl>=0
+ libsensors-3.3.3_1
+ glibc>=2.8_1
+
+ short_desc
+ Utilities to read temperature/voltage/fan sensors
+ version
+ 3.3.3_1
+
+ lm-sensors-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 12:14 CET
+ filename
+ lm-sensors-dbg-3.3.3_1.armv6l.xbps
+ filename-sha256
+ ba67ef0150a7f865bfb38dd9ab5ad71f4256d4fef0bb612698a3b521fb7a11ca
+ filename-size
+ 32120
+ homepage
+ http://www.lm-sensors.org/
+ installed_size
+ 47503
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ lm-sensors provides most complete hardware health monitoring support for
+ Linux, in the form of kernel drivers and a user-space library
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (fec30fbfdd73d9a62fdd4636c6b74d79d91009a4)
+ pkgname
+ lm-sensors-dbg
+ pkgver
+ lm-sensors-dbg-3.3.3_1
+ short_desc
+ Utilities to read temperature/voltage/fan sensors (debug files)
+ version
+ 3.3.3_1
+
+ lvm2
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:22 CET
+ conf_files
+
+ /etc/lvm/lvm.conf
+
+ filename
+ lvm2-2.02.98_3.armv6l.xbps
+ filename-sha256
+ fab2f679e4c3fd5ed8aa596c46826768dce72dc8a10f9436c86890eae860e6a9
+ filename-size
+ 427672
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 1088144
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ lvm2
+ pkgver
+ lvm2-2.02.98_3
+ run_depends
+
+ libudev>=183_1
+ glibc>=2.8_1
+ device-mapper-2.02.98_3
+ readline>=6.0_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Logical Volume Manager 2 utilities
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ lvm2-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:22 CET
+ filename
+ lvm2-dbg-2.02.98_3.armv6l.xbps
+ filename-sha256
+ 3f48c35316c1a4d6eb529e11dee9032f8383359d85bb8700bec2b0c38acc4dd8
+ filename-size
+ 992396
+ homepage
+ http://sourceware.org/lvm2/
+ installed_size
+ 1115372
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ lvm2-dbg
+ pkgver
+ lvm2-dbg-2.02.98_3
+ short_desc
+ Logical Volume Manager 2 utilities (debug files)
+ source-revisions
+ lvm2/device-mapper-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/device-mapper.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/dmeventd.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-monitoring.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm-on-crypt.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvm2.tmpfiles: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.service: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/files/lvmetad.socket: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app-devel.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/liblvm2app.template: 58f46b6bf68b87ea946e06023a33e9f9c1a51711
+lvm2/template: 281b68f164b376617db61ddee5f4fd8264cc27f3
+ version
+ 2.02.98_3
+
+ lxc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 10:36 CET
+ filename
+ lxc-devel-0.8.0_1.noarch.xbps
+ filename-sha256
+ 9146f57da4da20e7d53dc735792b9424e758e876c8ea78805e5452fb0654eb18
+ filename-size
+ 8812
+ homepage
+ http://lxc.sourceforge.net
+ installed_size
+ 37838
+ license
+ LGPL-2.1
+ long_desc
+
+ The container technology is actively being pushed into the mainstream linux
+ kernel. It provides the resource management through the control groups aka
+ process containers and resource isolation through the namespaces.
+
+ The linux containers, lxc, aims to use these new functionalities to provide
+ an userspace container object which provides full resource isolation and
+ resource control for an application or a system.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ lxc-devel
+ pkgver
+ lxc-devel-0.8.0_1
+ run_depends
+
+ libcap-devel>=0
+ liblxc-0.8.0_1
+
+ short_desc
+ LinuX Containers - development files
+ version
+ 0.8.0_1
+
+ lxde
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 16 January, 2012, 17:10:19 UTC
+ filename
+ lxde-0.5.0_3.noarch.xbps
+ filename-sha256
+ 376230102a6acd8da51b307c1cd281684822ec95ed8571579512735b897a1f32
+ filename-size
+ 1468
+ installed_size
+ 0
+ long_desc
+
+ This package installs all required packages for the LXDE desktop system.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-15
+ pkgname
+ lxde
+ pkgver
+ lxde-0.5.0_3
+ run_depends
+
+ openbox>=3.5.0
+ pcmanfm>=0
+ lxde-icon-theme>=0
+ lxde-common>=0
+ lxappearance>=0
+ lxsession>=0
+ lxterminal>=0
+ lxlauncher>=0
+ lxinput>=0
+ lxrandr>=0
+ lxpanel>=0
+ lxtask>=0
+ gpicview>=0
+ xdg-utils>=0
+ xdg-user-dirs>=0
+
+ short_desc
+ LXDE meta-package
+ version
+ 0.5.0_3
+
+ lxde-common
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ conf_files
+
+ /etc/xdg/pcmanfm/LXDE/pcmanfm.conf
+ /etc/xdg/lxsession/LXDE/config
+ /etc/xdg/lxsession/LXDE/autostart
+
+ filename
+ lxde-common-0.5.5_1.noarch.xbps
+ filename-sha256
+ 996671840af957ac9d30da9fcd06bd3779d590e9d0613b7550041ff86b222856
+ filename-size
+ 808676
+ homepage
+ http://lxde.org
+ installed_size
+ 978944
+ license
+ GPL-2
+ long_desc
+
+ LXDE (the Lightweight X11 Desktop Environment) is a project aimed to
+ provide a new desktop environment which is lightweight and fast.
+
+ It is not designed to be powerful and bloated, but to be usable and slim
+ enough, and keep the resource usage low. Different from other desktop
+ environments, lxde don't tightly integrate every component. Instead, lxde
+ tried to make all components independent, and each of them can be used
+ independently with fewer dependencies.
+
+Features:
+
+ - Lightweight, runs with reasonable memory usage
+ - Fast, rund well even on older machines produced in 1999
+ - Good-looking, GTK+ 2 internationalized user interface
+ - Easy-to-use, the user interface is simple, but usable enough
+ - Desktop independent (suprise! Every component can be used without LXDE)
+ - Standard compliant, follows the specs on freedesktop.org
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ lxde-common
+ pkgver
+ lxde-common-0.5.5_1
+ short_desc
+ LXDE configuration data
+ version
+ 0.5.5_1
+
+ lxde-icon-theme
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ lxde-icon-theme-0.0.1_1.noarch.xbps
+ filename-sha256
+ 7a89b10f45209adaaaa4471982883aac9718fbc725fffcf08acff97e91fd64c5
+ filename-size
+ 4547312
+ installed_size
+ 8523776
+ long_desc
+
+ This package contains lxde-icon-theme which is the default icon theme
+ for LXDE, also known as nuoveXT2 icon theme.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ lxde-icon-theme
+ pkgver
+ lxde-icon-theme-0.0.1_1
+ run_depends
+
+ gtk+>=0
+
+ short_desc
+ LXDE Standard icon theme
+ version
+ 0.0.1_1
+
+ lxmenu-data
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ lxmenu-data-0.1.2_1.noarch.xbps
+ filename-sha256
+ 5072024da8c8caf1f1e4758141fd46992b58c88beee46ddcd351de5a7a968937
+ filename-size
+ 42656
+ installed_size
+ 196608
+ long_desc
+
+ This package provides files required to build freedesktop.org menu
+ spec-compliant desktop menus for LXDE.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ lxmenu-data
+ pkgver
+ lxmenu-data-0.1.2_1
+ short_desc
+ LXDE freedesktop menu required files
+ version
+ 0.1.2_1
+
+ lxpanel-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 05 June, 2012, 19:44:28 UTC
+ filename
+ lxpanel-devel-0.5.9_2.noarch.xbps
+ filename-sha256
+ c069ca29ebb9bcea225025158e6a92ff00a17579fd86876e944b0a071af81c62
+ filename-size
+ 5116
+ installed_size
+ 16384
+ long_desc
+
+ The LXPanel, is the standard panel of LXDE. The desktop panel can generate
+ menu for installed applications automatically from *.desktop files. It can
+ be configured from GUI preference dialog, and there is no need to edit config
+ files. The component provides a Run dialog with autocompletion.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ lxpanel-devel
+ pkgver
+ lxpanel-devel-0.5.9_2
+ run_depends
+
+ pkg-config>=0
+ alsa-lib-devel>=0
+ gtk+-devel>=0
+ menu-cache-devel>=0
+ lxpanel>=0.5.9
+
+ short_desc
+ lxpanel development files
+ version
+ 0.5.9_2
+
+ make
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:23 CET
+ conflicts
+
+ chroot-make>=0
+
+ filename
+ make-3.82_5.armv6l.xbps
+ filename-sha256
+ 2c95ea03a37d9a216ee49554fa40c7bf5440c48f5b983bc7a91b93d123b18e78
+ filename-size
+ 343812
+ homepage
+ http://www.gnu.org/software/make
+ installed_size
+ 1031309
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ make
+ pkgver
+ make-3.82_5
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ The GNU make system
+ source-revisions
+ make/patches: 45b8a9d8e661a6dc0c5ede8004248a0bfebb1afc
+make/template: 0fb0452a94e67a497c72e6074b5dca772e0b3fc2
+ version
+ 3.82_5
+
+ make-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:23 CET
+ filename
+ make-dbg-3.82_5.armv6l.xbps
+ filename-sha256
+ a3f63ab8b3fc7b6f57e756968c7c92b851d71b79752f3abf9f8a2d34e9839836
+ filename-size
+ 173788
+ homepage
+ http://www.gnu.org/software/make
+ installed_size
+ 199261
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ make-dbg
+ pkgver
+ make-dbg-3.82_5
+ short_desc
+ The GNU make system (debug files)
+ source-revisions
+ make/patches: 45b8a9d8e661a6dc0c5ede8004248a0bfebb1afc
+make/template: 0fb0452a94e67a497c72e6074b5dca772e0b3fc2
+ version
+ 3.82_5
+
+ makeself
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ makeself-2.1.5_1.noarch.xbps
+ filename-sha256
+ 51be5134c67706aeb7a02adec2a4cd1599a71fbec027be6b0d7e90e949059dae
+ filename-size
+ 9640
+ installed_size
+ 28672
+ long_desc
+
+ makeself.sh is a small shell script that generates a self-extractable tar.gz
+ archive from a directory. The resulting file appears as a shell script
+ (many of those have a .run suffix), and can be launched as is. The archive
+ will then uncompress itself to a temporary directory and an optional arbitrary
+ command will be executed (for example an installation script). This is pretty
+ similar to archives generated with WinZip Self-Extractor in the Windows world.
+ Makeself archives also include checksums for integrity self-validation
+ (CRC and/or MD5 checksums).
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ makeself
+ pkgver
+ makeself-2.1.5_1
+ run_depends
+
+ tar>=0
+ gzip>=0
+ bzip2>=0
+
+ short_desc
+ Make self-extractable archives on Unix
+ version
+ 2.1.5_1
+
+ man-db
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:42 CET
+ conf_files
+
+ /etc/man_db.conf
+
+ filename
+ man-db-2.6.3_2.armv6l.xbps
+ filename-sha256
+ b128a32c47cb38ac19dfdfc07e3af2912ea71b2a583d9e85ddb847fc8c2243d3
+ filename-size
+ 339772
+ homepage
+ http://www.nongnu.org/man-db/
+ installed_size
+ 1187752
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ man-db
+ pkgver
+ man-db-2.6.3_2
+ run_depends
+
+ bzip2>=0
+ gzip>=0
+ less>=0
+ groff>=0
+ grep>=0
+ coreutils>=0
+ gdbm>=1.10_1_1
+ glibc>=2.8_1
+ libpipeline>=1.2.0_1
+ zlib>=1.2.3_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The on-line manual database
+ source-revisions
+ man-db/files/man-db.cron-daily: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+man-db/template: 77807589d8decfed4dbe7b7d5f337708dc295acc
+ version
+ 2.6.3_2
+
+ man-db-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:42 CET
+ filename
+ man-db-dbg-2.6.3_2.armv6l.xbps
+ filename-sha256
+ efeddc9d32de2ab47677652771a9ae5edc8ab10d531f933e4cf9e56752fa72a1
+ filename-size
+ 510120
+ homepage
+ http://www.nongnu.org/man-db/
+ installed_size
+ 635618
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ man-db-dbg
+ pkgver
+ man-db-dbg-2.6.3_2
+ short_desc
+ The on-line manual database (debug files)
+ source-revisions
+ man-db/files/man-db.cron-daily: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+man-db/template: 77807589d8decfed4dbe7b7d5f337708dc295acc
+ version
+ 2.6.3_2
+
+ man-pages
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:57 CET
+ filename
+ man-pages-3.47_1.noarch.xbps
+ filename-sha256
+ ad419bdfb668fed7061f6d93539dd32d5a73be10b79c24574ee8b624b4023553
+ filename-size
+ 2408372
+ homepage
+ http://man7.org/linux/man-pages/index.html
+ installed_size
+ 2358782
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ man-pages
+ pkgver
+ man-pages-3.47_1
+ short_desc
+ Linux Documentation Project (LDP) manual pages
+ source-revisions
+ man-pages/INSTALL: e68a67657ef6fc76a237b6dcd33c58d212017f7b
+man-pages/template: 412bbd0ff2d02adc863c4b3d33b7214507f8b288
+ version
+ 3.47_1
+
+ mash-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-27 14:45 CEST
+ filename
+ mash-devel-0.2.0_2.noarch.xbps
+ filename-sha256
+ aa4a903ebc7ef4430f85160e3d3a9cb779879c107e993abe7c2cb2845064ab24
+ filename-size
+ 31716
+ homepage
+ http://www.clutter-project.org
+ installed_size
+ 376832
+ license
+ LGPL-2.1
+ long_desc
+
+ Mash is a small library for using real 3D models within a Clutter
+ scene. Models can be exported from Blender or other 3D modelling
+ software as PLY files and then used as actors. It also supports a
+ lighting model with animatable lights.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ mash-devel
+ pkgver
+ mash-devel-0.2.0_2
+ run_depends
+
+ clutter-devel>=1.12
+ mash>=0.2.0_2
+
+ short_desc
+ A small library for using 3D models within a Clutter scene - development files
+ version
+ 0.2.0_2
+
+ meld
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-22 14:05 CEST
+ filename
+ meld-1.6.1_1.noarch.xbps
+ filename-sha256
+ 9b323a98379c202c17ae057c388f1773affe134e5438994bd1128667bd719cb9
+ filename-size
+ 277776
+ homepage
+ http://meldmerge.org/
+ installed_size
+ 1555809
+ license
+ GPL-2
+ long_desc
+
+ Meld is a visual diff and merge tool targeted at developers. Meld helps you
+ compare files, directories, and version controlled projects. It provides two
+ and three-way comparison of both files and directories, and has support for
+ many popular version control systems.
+
+ Meld helps you review code changes and understand patches. It might even help
+ you to figure out what is going on in that merge you keep avoiding.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ meld
+ pkgver
+ meld-1.6.1_1
+ run_depends
+
+ pygtk>=0
+ pygtksourceview>=0
+ desktop-file-utils>=0
+ hicolor-icon-theme>=0
+
+ short_desc
+ Visual diff and merge tool
+ version
+ 1.6.1_1
+
+ menu-cache-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 10:02 CEST
+ filename
+ menu-cache-devel-0.3.2_4.noarch.xbps
+ filename-sha256
+ cf2a2b54f928f4f431ef9325548a063ca56dbf97a3b9ce2d968bdb0de39d8f98
+ filename-size
+ 2620
+ installed_size
+ 4541
+ long_desc
+
+ menu-cache is a library creating and utilizing caches to speed up the
+ manipulation for freedesktop.org defined application menus. It can be used
+ as a replacement of libgnome-menu of gnome-menus.
+
+ * Shorten time for loading menu entries.
+ * Ease of use. (API is very similar to that of libgnome-menu)
+ * Lightweight runtime library. (Parsing of the menu definition files
+ are done by menu-cache-gen when the menus are really changed.)
+ * Less unnecessary and complicated file monitoring.
+ * Heavily reduced disk I/O.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ menu-cache-devel
+ pkgver
+ menu-cache-devel-0.3.2_4
+ run_depends
+
+ glib-devel>=0
+ menu-cache-0.3.2_4
+
+ short_desc
+ menu-cache development files
+ version
+ 0.3.2_4
+
+ metacity-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 20:32 CEST
+ filename
+ metacity-devel-2.34.13_1.noarch.xbps
+ filename-sha256
+ 3333e37662102e4ca7a06f5989d91bb416211287c42d9b77289b45cd0b70d0ed
+ filename-size
+ 15400
+ homepage
+ http://www.gnome.org
+ installed_size
+ 76445
+ license
+ GPL-2
+ long_desc
+
+ Metacity is not a meta-City as in an urban center, but rather Meta-ness as in
+ the state of being meta. i.e. metacity : meta as opacity : opaque. Also
+ it may have something to do with the Meta key on UNIX keyboards.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ metacity-devel
+ pkgver
+ metacity-devel-2.34.13_1
+ run_depends
+
+ gtk+-devel>=0
+ metacity-2.34.13_1
+
+ short_desc
+ metacity -- development files
+ version
+ 2.34.13_1
+
+ mingw-w64-headers
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-04 14:57 CET
+ filename
+ mingw-w64-headers-2.0.7_2.noarch.xbps
+ filename-sha256
+ a5e81e2e8ffd9aea7cb36f2d49de415bc029e8a61defbdcfe9e729e982970b08
+ filename-size
+ 2784948
+ homepage
+ http://mingw-w64.sourceforge.net/
+ installed_size
+ 28740708
+ license
+ Public Domain, BSD, LGPL, ZPL
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-36 (d0436b6518f17b7f8c1cc2dd5e26e323039fd53c)
+ pkgname
+ mingw-w64-headers
+ pkgver
+ mingw-w64-headers-2.0.7_2
+ short_desc
+ mingw-w64 headers, psdk, directx sdk
+ source-revisions
+ mingw-w64-headers/template: 2501998c60328e2770d3bb9d893a548adc70519a
+ version
+ 2.0.7_2
+
+ mit-krb5
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:27 CET
+ conflicts
+
+ heimdal>=0
+
+ filename
+ mit-krb5-1.11_2.armv6l.xbps
+ filename-sha256
+ c6146d7d8dc97f07051df06fccd0037d686cc12eaa2a341450dd8e791bfe12ed
+ filename-size
+ 210404
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 547223
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5
+ pkgver
+ mit-krb5-1.11_2
+ run_depends
+
+ mit-krb5-client-1.11_2
+ mit-krb5-libs-1.11_2
+ e2fsprogs-libs>=1.41.5_1_1
+ glibc>=2.8_1
+ libdb>=4.8.24_1
+ libssl>=1.0.0_1
+
+ short_desc
+ MIT Kerberos 5 implementation
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/patches/disable_tests.patch: 3e7af9413dd92ee58592a865d8367ed1b1d573b4
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mit-krb5-client
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:27 CET
+ filename
+ mit-krb5-client-1.11_2.armv6l.xbps
+ filename-sha256
+ 76c6a6a11774b68b806cbb925db021b3b8d7f3f0d12c30e4e9a3d085b1b970b0
+ filename-size
+ 92260
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 233821
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5-client
+ pkgver
+ mit-krb5-client-1.11_2
+ run_depends
+
+ mit-krb5-libs-1.11_2
+ e2fsprogs-libs>=1.41.5_1_1
+ glibc>=2.8_1
+
+ short_desc
+ MIT Kerberos 5 implementation - client programs
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/patches/disable_tests.patch: 3e7af9413dd92ee58592a865d8367ed1b1d573b4
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mit-krb5-client-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:27 CET
+ filename
+ mit-krb5-client-dbg-1.11_2.armv6l.xbps
+ filename-sha256
+ 1c601a1b6a974df0255650ef0fbdb95e87a15d32e4e6cd2a5035a56d82305b21
+ filename-size
+ 205624
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 295411
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5-client-dbg
+ pkgver
+ mit-krb5-client-dbg-1.11_2
+ short_desc
+ MIT Kerberos 5 implementation - client programs (debug files)
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/patches/disable_tests.patch: 3e7af9413dd92ee58592a865d8367ed1b1d573b4
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mit-krb5-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:27 CET
+ filename
+ mit-krb5-dbg-1.11_2.armv6l.xbps
+ filename-sha256
+ c7ef1f64969a2da323de12af865c7c7f3945e2a39c2f6413d8b6c8eaf9e2aaf0
+ filename-size
+ 640552
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 786038
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5-dbg
+ pkgver
+ mit-krb5-dbg-1.11_2
+ short_desc
+ MIT Kerberos 5 implementation (debug files)
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/patches/disable_tests.patch: 3e7af9413dd92ee58592a865d8367ed1b1d573b4
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mit-krb5-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:24 CET
+ filename
+ mit-krb5-devel-1.11_2.noarch.xbps
+ filename-sha256
+ 2c180334f66baeb8e9db3e12a49c8813c70ece7778d17e65c0e9956ba5be5d4c
+ filename-size
+ 106360
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 649274
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5-devel
+ pkgver
+ mit-krb5-devel-1.11_2
+ run_depends
+
+ db-devel>=0
+ openssl-devel>=0
+ e2fsprogs-devel>=1.4.10_1
+ mit-krb5-libs>=1.11
+
+ short_desc
+ MIT Kerberos 5 implementation - development files
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mit-krb5-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:27 CET
+ conflicts
+
+ heimdal-libs>=0
+
+ filename
+ mit-krb5-libs-1.11_2.armv6l.xbps
+ filename-sha256
+ 79093e706eda1362b598b971667587387146bc5227486f2e00f9622cebb91a77
+ filename-size
+ 432068
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 1392304
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5-libs
+ pkgver
+ mit-krb5-libs-1.11_2
+ run_depends
+
+ e2fsprogs-libs>=1.41.5_1_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ MIT Kerberos 5 implementation - shared libraries
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/patches/disable_tests.patch: 3e7af9413dd92ee58592a865d8367ed1b1d573b4
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mit-krb5-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 18:27 CET
+ filename
+ mit-krb5-libs-dbg-1.11_2.armv6l.xbps
+ filename-sha256
+ 3c9b9f22c7821fc567d7801ce243850dc1b1176f80359ec3a7d902eecac7487b
+ filename-size
+ 1967268
+ homepage
+ http://web.mit.edu/Kerberos
+ installed_size
+ 2310036
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mit-krb5-libs-dbg
+ pkgver
+ mit-krb5-libs-dbg-1.11_2
+ short_desc
+ MIT Kerberos 5 implementation - shared libraries (debug files)
+ source-revisions
+ mit-krb5/mit-krb5-client.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-devel.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/mit-krb5-libs.template: 0abd36c477746e9451be535ea000d5f47c553dc1
+mit-krb5/patches/disable_tests.patch: 3e7af9413dd92ee58592a865d8367ed1b1d573b4
+mit-krb5/template: 0abd36c477746e9451be535ea000d5f47c553dc1
+ version
+ 1.11_2
+
+ mkfontdir
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 15:04:08 UTC
+ filename
+ mkfontdir-1.0.7_1.noarch.xbps
+ filename-sha256
+ b17162c20a5d3f65704dac03e1a1f8bc55b4c20f5f06067c01824980905ee07b
+ filename-size
+ 4228
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 8192
+ license
+ MIT
+ long_desc
+
+ The mkfontdir tool uses mkfontscale to create an index of X font
+ files (such as PCF, SNF, or BDF) in a directory. The X server
+ and font server use the generated fonts.dir file to find font files.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ mkfontdir
+ pkgver
+ mkfontdir-1.0.7_1
+ run_depends
+
+ mkfontscale>=0
+
+ short_desc
+ X11 Font Index Generator
+ version
+ 1.0.7_1
+
+ mobile-broadband-provider-info
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-20 10:54 CEST
+ filename
+ mobile-broadband-provider-info-20120614_1.noarch.xbps
+ filename-sha256
+ 057b2f8da63b8327b411f9801f024baecd3cd2f45d7f0074bb0ba3cf6e0929ee
+ filename-size
+ 31892
+ homepage
+ http://git.gnome.org/browse/mobile-broadband-provider-info/
+ installed_size
+ 270336
+ license
+ CC-PD (Creative Commons Public Domain)
+ long_desc
+
+ This package contains database of service provider specific settings of mobile
+ broadband providers in different countries. Its functioning through Network
+ Manager makes it easy for users to choose their mobile broadband service
+ provider.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ mobile-broadband-provider-info
+ pkgver
+ mobile-broadband-provider-info-20120614_1
+ short_desc
+ Database of mobile broadband service providers
+ version
+ 20120614_1
+
+ mongoose-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 19 June, 2012, 08:31:18 UTC
+ filename
+ mongoose-devel-3.1_2.noarch.xbps
+ filename-sha256
+ de652ba07311b15f96a0586a19a94a68595335a692f67b4f521d9e62fc2ea270
+ filename-size
+ 4856
+ homepage
+ https://code.google.com/p/mongoose/
+ installed_size
+ 12288
+ license
+ MIT
+ long_desc
+
+ Mongoose is easy to use web server. It also can be used as embedded web server
+ library to provide web interface to applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ mongoose-devel
+ pkgver
+ mongoose-devel-3.1_2
+ run_depends
+
+ glibc-devel>=0
+ libmongoose>=3.1
+
+ short_desc
+ An Easy to use Web server -- development files
+ version
+ 3.1_2
+
+ mpc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:52 CET
+ filename
+ mpc-0.9_2.armv6l.xbps
+ filename-sha256
+ 7011a022406506cdc0096641ae29ff9b9b6f338b5259bd7155f7c99e87478923
+ filename-size
+ 22780
+ homepage
+ http://www.multiprecision.org
+ installed_size
+ 60548
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mpc
+ pkgver
+ mpc-0.9_2
+ run_depends
+
+ mpfr>=3.0.0_1
+ gmp>=5.0.1_1
+ glibc>=2.8_1
+
+ short_desc
+ C library for the arithmetic of complex numbers
+ source-revisions
+ mpc/mpc-devel.template: 2783fb8d177e295d1f1015255628ecfdffa89f00
+mpc/template: 2783fb8d177e295d1f1015255628ecfdffa89f00
+ version
+ 0.9_2
+
+ mpc-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:52 CET
+ filename
+ mpc-dbg-0.9_2.armv6l.xbps
+ filename-sha256
+ a202c3d2cb91f3892a539a6103d844f4bf711d40f68830a45d5525dea288ddd3
+ filename-size
+ 76224
+ homepage
+ http://www.multiprecision.org
+ installed_size
+ 86581
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mpc-dbg
+ pkgver
+ mpc-dbg-0.9_2
+ short_desc
+ C library for the arithmetic of complex numbers (debug files)
+ source-revisions
+ mpc/mpc-devel.template: 2783fb8d177e295d1f1015255628ecfdffa89f00
+mpc/template: 2783fb8d177e295d1f1015255628ecfdffa89f00
+ version
+ 0.9_2
+
+ mpc-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:52 CET
+ filename
+ mpc-devel-0.9_2.armv6l.xbps
+ filename-sha256
+ 6e23f0d17f7eee367b0932d75eb81558ec804131caf16afaa22fb23eefc5e4fc
+ filename-size
+ 44160
+ homepage
+ http://www.multiprecision.org
+ installed_size
+ 165384
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mpc-devel
+ pkgver
+ mpc-devel-0.9_2
+ run_depends
+
+ gmp-devel>=0
+ mpfr-devel>=0
+ mpc>=0.9
+
+ short_desc
+ C library for the arithmetic of complex numbers - development files
+ source-revisions
+ mpc/mpc-devel.template: 2783fb8d177e295d1f1015255628ecfdffa89f00
+mpc/template: 2783fb8d177e295d1f1015255628ecfdffa89f00
+ version
+ 0.9_2
+
+ mpfr
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:48 CET
+ filename
+ mpfr-3.1.1_2.armv6l.xbps
+ filename-sha256
+ adf92febb2133d10fe1408e4e56ac37d3f27224066f212576c622ff175f36562
+ filename-size
+ 125960
+ homepage
+ http://www.mpfr.org
+ installed_size
+ 324536
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mpfr
+ pkgver
+ mpfr-3.1.1_2
+ run_depends
+
+ gmp>=5.0.1_1
+ glibc>=2.17_1
+
+ short_desc
+ Library for multiple-precision floating-point computations
+ source-revisions
+ mpfr/mpfr-devel.template: 3e90d226506d1d11c33d4d9bffdea9338f301656
+mpfr/template: 3e90d226506d1d11c33d4d9bffdea9338f301656
+ version
+ 3.1.1_2
+
+ mpfr-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:48 CET
+ filename
+ mpfr-dbg-3.1.1_2.armv6l.xbps
+ filename-sha256
+ 5f1e939b1006c79b0af7614546f06a29b1b633170d74596345da766c4f5c6107
+ filename-size
+ 365500
+ homepage
+ http://www.mpfr.org
+ installed_size
+ 398918
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mpfr-dbg
+ pkgver
+ mpfr-dbg-3.1.1_2
+ short_desc
+ Library for multiple-precision floating-point computations (debug files)
+ source-revisions
+ mpfr/mpfr-devel.template: 3e90d226506d1d11c33d4d9bffdea9338f301656
+mpfr/template: 3e90d226506d1d11c33d4d9bffdea9338f301656
+ version
+ 3.1.1_2
+
+ mpfr-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 16:48 CET
+ filename
+ mpfr-devel-3.1.1_2.armv6l.xbps
+ filename-sha256
+ 9ef07766226b4c618d09ad8cbd4ec1c1f11d6f66e8b50f3e636c98ccf090f1d9
+ filename-size
+ 250628
+ homepage
+ http://www.mpfr.org
+ installed_size
+ 880494
+ license
+ LGPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ mpfr-devel
+ pkgver
+ mpfr-devel-3.1.1_2
+ run_depends
+
+ gmp-devel>=0
+ mpfr>=3.1.1
+
+ short_desc
+ Library for multiple-precision floating-point computations -- development files
+ source-revisions
+ mpfr/mpfr-devel.template: 3e90d226506d1d11c33d4d9bffdea9338f301656
+mpfr/template: 3e90d226506d1d11c33d4d9bffdea9338f301656
+ version
+ 3.1.1_2
+
+ musl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 09:28 CET
+ conflicts
+
+ glibc>=0
+
+ filename
+ musl-0.9.9_1.armv6l.xbps
+ filename-sha256
+ 4ccc34801f71ee155bf66a129db1387a87b62569628a21c5fb74acbd409046b9
+ filename-size
+ 426940
+ homepage
+ http://www.musl-libc.org/
+ installed_size
+ 2473408
+ license
+ MIT
+ long_desc
+
+ A new standard library to power a new generation of Linux-based devices.
+ musl is lightweight, fast, simple, free, and strives to be correct in the
+ sense of standards-conformance and safety.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ musl
+ pkgver
+ musl-0.9.9_1
+ short_desc
+ The musl C library
+ version
+ 0.9.9_1
+
+ musl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 09:28 CET
+ filename
+ musl-dbg-0.9.9_1.armv6l.xbps
+ filename-sha256
+ f4eb3050f6e8cb00fbe61f87b0cf153bd4d593bbf87ee979c9cb823751d792c5
+ filename-size
+ 599416
+ homepage
+ http://www.musl-libc.org/
+ installed_size
+ 719285
+ license
+ MIT
+ long_desc
+
+ A new standard library to power a new generation of Linux-based devices.
+ musl is lightweight, fast, simple, free, and strives to be correct in the
+ sense of standards-conformance and safety.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ musl-dbg
+ pkgver
+ musl-dbg-0.9.9_1
+ short_desc
+ The musl C library (debug files)
+ version
+ 0.9.9_1
+
+ mutagen
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ mutagen-1.20_1.noarch.xbps
+ filename-sha256
+ c7ea00b2f345128ce7df91933f4f35955309fc40a3e1c61d9427868032bac265
+ filename-size
+ 67720
+ homepage
+ http://code.google.com/p/mutagen/
+ installed_size
+ 393216
+ license
+ GPL-2
+ long_desc
+
+ Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC,
+ M4A, Monkey's Audio, MP3, Musepack, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg
+ Vorbis, True Audio, WavPack and OptimFROG audio files. All versions of ID3v2
+ are supported, and all standard ID3v2.4 frames are parsed. It can read Xing
+ headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2
+ tags can be edited regardless of audio format. It can also manipulate Ogg
+ streams on an individual packet/page level.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ mutagen
+ pkgver
+ mutagen-1.20_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ Python multimedia tagging library
+ version
+ 1.20_1
+
+ mutter-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-14 05:38 CET
+ filename
+ mutter-devel-3.6.3_1.noarch.xbps
+ filename-sha256
+ 05ea171961be78000088fcfd4b3d58fb9daba7e8bc04c804ac33a295e619bca0
+ filename-size
+ 45284
+ homepage
+ http://www.gnome.org
+ installed_size
+ 386663
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (fdd4784e060e2458c437014c51eb8db2064a6c16)
+ pkgname
+ mutter-devel
+ pkgver
+ mutter-devel-3.6.3_1
+ run_depends
+
+ gsettings-desktop-schemas>=3.6.0
+ gtk+3-devel>=3.6.0
+ clutter-devel>=1.12
+ libX11-devel>=0
+ mutter-3.6.3_1
+
+ short_desc
+ mutter - development files
+ source-revisions
+ mutter/mutter-devel.template: 867c8c7fa01f9292305a725612f87d98f5155830
+mutter/template: 08fc6a1e4dacdcf63f1a30161a5ca811d3d3d68f
+ version
+ 3.6.3_1
+
+ mx-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 07 June, 2012, 05:05:57 UTC
+ filename
+ mx-devel-1.4.6_1.noarch.xbps
+ filename-sha256
+ 95063285f33cf64e6cb6b464a433af6d207d6ae5d23577552d385da6c67f54e5
+ filename-size
+ 226804
+ homepage
+ http://www.clutter-project.org
+ installed_size
+ 3379200
+ license
+ LGPL-2.1
+ long_desc
+
+ Clutter is an open source software library for creating fast, visually
+ rich and animated graphical user interfaces.
+
+ This package provides mx, a widget toolkit that uses Clutter.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ mx-devel
+ pkgver
+ mx-devel-1.4.6_1
+ run_depends
+
+ gtk+-devel>=0
+ clutter-devel>=0
+ mx>=1.4.6
+
+ short_desc
+ A widget toolkit using Clutter - development files
+ version
+ 1.4.6_1
+
+ nautilus-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 09:10 CET
+ filename
+ nautilus-devel-3.6.3_1.noarch.xbps
+ filename-sha256
+ 72042f5452b17590d611ecb7d3a07c4295f2e54f7f381548a010bd953c3a9f4e
+ filename-size
+ 27412
+ installed_size
+ 332766
+ long_desc
+
+ Nautilus is the official file manager for the GNOME desktop. It is
+ designed to be primarly a file manager, but there is support for web and
+ file viewing too.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ nautilus-devel
+ pkgver
+ nautilus-devel-3.6.3_1
+ run_depends
+
+ gtk+3-devel>=0
+ libnautilus-3.6.3_1
+
+ short_desc
+ nautilus - development files
+ version
+ 3.6.3_1
+
+ nautilus-sendto-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-18 01:25 CET
+ filename
+ nautilus-sendto-devel-3.6.1_1.noarch.xbps
+ filename-sha256
+ 97bb414eafc319fe98e7fd9994d3380e3ecfe9e26965052e4b611ece0e88d9ef
+ filename-size
+ 9544
+ homepage
+ http://download.gnome.org/sources/nautilus-sendto/
+ installed_size
+ 34293
+ license
+ GPL-2
+ long_desc
+
+ The Nautilus Send To plugin provides the Nautilus file manager with a context
+ menu component for quickly sending files to accounts in an Evolution email
+ address book, contacts on a Pidgin or Gajim instant messaging list,
+ through Icedove, or through Claws Mail.
+
+ Nautilus Send To also provides the option of compressing the files
+ (tar.bz2, tar.gz, or zip) before sending.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ nautilus-sendto-devel
+ pkgver
+ nautilus-sendto-devel-3.6.1_1
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=0
+
+ short_desc
+ Nautilus context menu for sending files - development files
+ source-revisions
+ nautilus-sendto/nautilus-sendto-devel.template: 2e65589bfce623bf1ac24dca2f8f6b639e9a7db1
+nautilus-sendto/template: 0ac2897b30e7a82c137baebf4fafe1243e571ec3
+ version
+ 3.6.1_1
+
+ ncurses
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 12:10 CET
+ filename
+ ncurses-5.9_4.armv6l.xbps
+ filename-sha256
+ c1699a948419380785423c5d74b28b52722ce1f13b69c697b55689e125b9ac78
+ filename-size
+ 116032
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 212449
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ ncurses
+ pkgver
+ ncurses-5.9_4
+ run_depends
+
+ ncurses-libs-5.9_4
+ glibc>=2.8_1
+
+ short_desc
+ A System V Release 4.0 curses emulation library
+ source-revisions
+ ncurses/base-files: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+ncurses/ncurses-base.template: a0a4b4bc2fff5157a11c204f49dfde7514cd0e48
+ncurses/ncurses-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-libs.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-term.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/template: 7b3639d5e1b30331b818bf388bdf85428adb949a
+ version
+ 5.9_4
+
+ ncurses-base
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 09 July, 2012, 14:58:51 UTC
+ filename
+ ncurses-base-5.9_4.noarch.xbps
+ filename-sha256
+ 40a891ae1d84c742733827ea0b4d91e3cbcdfe093ae73e677551b102f2dce013
+ filename-size
+ 24752
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 483328
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+
+ This package contains the base files.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ ncurses-base
+ pkgver
+ ncurses-base-5.9_4
+ short_desc
+ ncurses base files
+ version
+ 5.9_4
+
+ ncurses-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 12:10 CET
+ filename
+ ncurses-dbg-5.9_4.armv6l.xbps
+ filename-sha256
+ e6e093e6a272a23d9b01736a82e4c9fed3a52f56b01b02e3340468dbe3435e28
+ filename-size
+ 98336
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 143152
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ ncurses-dbg
+ pkgver
+ ncurses-dbg-5.9_4
+ short_desc
+ A System V Release 4.0 curses emulation library (debug files)
+ source-revisions
+ ncurses/base-files: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+ncurses/ncurses-base.template: a0a4b4bc2fff5157a11c204f49dfde7514cd0e48
+ncurses/ncurses-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-libs.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-term.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/template: 7b3639d5e1b30331b818bf388bdf85428adb949a
+ version
+ 5.9_4
+
+ ncurses-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 12:10 CET
+ filename
+ ncurses-devel-5.9_4.armv6l.xbps
+ filename-sha256
+ b6aaa6dcd0dbfe5fb73a7ab37d65fa60cf76610042982505fac1989cf960a8b0
+ filename-size
+ 515900
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 1424633
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+
+ This package contains files for development: headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ ncurses-devel
+ pkgver
+ ncurses-devel-5.9_4
+ replaces
+
+ ncursesw-devel>=0
+
+ run_depends
+
+ glibc-devel>=0
+ ncurses>=0
+
+ short_desc
+ ncurses development files
+ source-revisions
+ ncurses/base-files: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+ncurses/ncurses-base.template: a0a4b4bc2fff5157a11c204f49dfde7514cd0e48
+ncurses/ncurses-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-libs.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-term.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/template: 7b3639d5e1b30331b818bf388bdf85428adb949a
+ version
+ 5.9_4
+
+ ncurses-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 12:10 CET
+ filename
+ ncurses-libs-5.9_4.armv6l.xbps
+ filename-sha256
+ 611c2bf4a14432db2614c820ef18645ecfa7db928f5c1797b15b809416de1dc3
+ filename-size
+ 163132
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 639198
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+
+ This package contains the shared libraries.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ ncurses-libs
+ pkgver
+ ncurses-libs-5.9_4
+ replaces
+
+ ncursesw>=0
+
+ run_depends
+
+ ncurses-base>=0
+ glibc>=2.8_1
+
+ short_desc
+ ncurses shared libraries
+ source-revisions
+ ncurses/base-files: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+ncurses/ncurses-base.template: a0a4b4bc2fff5157a11c204f49dfde7514cd0e48
+ncurses/ncurses-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-libs.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-term.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/template: 7b3639d5e1b30331b818bf388bdf85428adb949a
+ version
+ 5.9_4
+
+ ncurses-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 12:10 CET
+ filename
+ ncurses-libs-dbg-5.9_4.armv6l.xbps
+ filename-sha256
+ 4bc9ebdb407cd5a2d9e9ee1e34a491e31d6a401337010ce15d2aa55f8e54696b
+ filename-size
+ 720020
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 870044
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+
+ This package contains the shared libraries.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ ncurses-libs-dbg
+ pkgver
+ ncurses-libs-dbg-5.9_4
+ short_desc
+ ncurses shared libraries (debug files)
+ source-revisions
+ ncurses/base-files: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+ncurses/ncurses-base.template: a0a4b4bc2fff5157a11c204f49dfde7514cd0e48
+ncurses/ncurses-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-libs.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/ncurses-term.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ncurses/template: 7b3639d5e1b30331b818bf388bdf85428adb949a
+ version
+ 5.9_4
+
+ ncurses-term
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 09 July, 2012, 14:59:03 UTC
+ filename
+ ncurses-term-5.9_4.noarch.xbps
+ filename-sha256
+ 5d18ea8576c828a4002011191bac1efcbc65d078de42b5683af87fe04ac068ce
+ filename-size
+ 266768
+ homepage
+ http://www.gnu.org/software/ncurses/
+ installed_size
+ 6311936
+ license
+ MIT
+ long_desc
+
+ The ncurses (new curses) library is a freeware emulation of System V Release
+ 4.0 curses. It uses terminfo format, supports pads and color and multiple
+ highlights and forms characters and function-key mapping, and has all the
+ other SYSV-curses enhancements over BSD curses. The distribution includes
+ the library and support utilities, including a terminfo compiler tic, a
+ ecompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.
+ Full manual pages are provided for the library and tools.
+
+ This package contains all available terminal descriptions.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ ncurses-term
+ pkgver
+ ncurses-term-5.9_4
+ run_depends
+
+ ncurses-base>=0
+
+ short_desc
+ ncurses full terminal descriptions
+ version
+ 5.9_4
+
+ neon-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-17 15:15 CET
+ filename
+ neon-devel-0.29.6_1.noarch.xbps
+ filename-sha256
+ 20a7262925b18e2315255b3fabfbd080e73e9c5b639d5cfd20b0d25a5010e343
+ filename-size
+ 118164
+ homepage
+ http://www.webdav.org/neon/
+ installed_size
+ 434632
+ license
+ LGPL-2.1
+ long_desc
+
+ Features:
+
+ * High-level wrappers for common HTTP and WebDAV operations
+ (GET, MOVE, DELETE, etc)
+ * Low-level interface to the HTTP request/response engine, allowing the use
+ of arbitrary HTTP methods, headers, etc.
+ * Authentication support including Basic and Digest support, along with
+ GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32
+ * SSL/TLS support using OpenSSL or GnuTLS; exposing an abstraction layer
+ for verifying server certificates, handling client certificates, and
+ examining certificate properties. Smartcard-based client certificates are
+ also supported via a PKCS#11 wrapper interface.
+ * Abstract interface to parsing XML using libxml2 or expat, and wrappers for
+ simplifying handling XML HTTP response bodies
+ * WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify
+ property manipulation.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ neon-devel
+ pkgver
+ neon-devel-0.29.6_1
+ run_depends
+
+ expat-devel>=0
+ openssl-devel>=0
+ neon>=0.29.6
+
+ short_desc
+ HTTP and WebDAV client library, with a C interface - development files
+ source-revisions
+ neon/neon-devel.template: 7ea1cfdd4a64edb03831804312da3270d7cd7c70
+neon/template: 7ea1cfdd4a64edb03831804312da3270d7cd7c70
+ version
+ 0.29.6_1
+
+ net-snmp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 05 June, 2012, 21:25:48 UTC
+ filename
+ net-snmp-devel-5.7.1_2.noarch.xbps
+ filename-sha256
+ db05c22354b7415af9f97e3323e34c49481f212baa84776ce05f25e6051a6133
+ filename-size
+ 193344
+ homepage
+ http://www.net-snmp.org/
+ installed_size
+ 1757184
+ license
+ BSD
+ long_desc
+
+ Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring
+ the health and welfare of network equipment (eg. routers), computer equipment and
+ even devices like UPSs. Net-SNMP is a suite of applications used to implement
+ SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ net-snmp-devel
+ pkgver
+ net-snmp-devel-5.7.1_2
+ run_depends
+
+ libnet-snmp>=5.7.1
+
+ short_desc
+ Simple Network Management Protocol (SNMP) suite - development files
+ version
+ 5.7.1_2
+
+ netbsd-wtf
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-28 09:29 CET
+ filename
+ netbsd-wtf-20130128_1.noarch.xbps
+ filename-sha256
+ 102b2dcb9ab1e2d39c06fc0da31c33f257e8ec6818aa2d9746393aba7a4120ba
+ filename-size
+ 20512
+ homepage
+ http://www.NetBSD.org
+ installed_size
+ 51070
+ license
+ Public domain
+ long_desc
+
+ The wtf utility displays the expansion of the acronyms specified on the
+ command line. If the acronym is not in any of the acronyms databases,
+ wtf will check to see if the acronym is known by whatis(1), xbps-bin(8),
+ or xbps-repo(8) show commands.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ netbsd-wtf
+ pkgver
+ netbsd-wtf-20130128_1
+ short_desc
+ NetBSD's wtf(6) adapted for Void Linux
+ source-revisions
+ netbsd-wtf/template: e9934cca6efd5ad17a3f757b62cb60c606f568be
+ version
+ 20130128_1
+
+ nettle-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-03 12:29 CET
+ filename
+ nettle-devel-2.5_1.noarch.xbps
+ filename-sha256
+ c99ad57bb992b1f3358285bdf86d5df6a3a5edd26462e078a9cf0376da53bb2b
+ filename-size
+ 64708
+ homepage
+ http://www.lysator.liu.se/~nisse/nettle/
+ installed_size
+ 185398
+ license
+ GPL-2
+ long_desc
+
+ Nettle is a cryptographic library that is designed to fit easily in more or
+ less any context: In crypto toolkits for object-oriented languages (C++,
+ Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ nettle-devel
+ pkgver
+ nettle-devel-2.5_1
+ run_depends
+
+ gmp-devel>=0
+ nettle>=2.5
+
+ short_desc
+ A low-level cryptographic library -- development files
+ source-revisions
+ nettle/nettle-devel.template: 945288002f775b9b167019a29ea31ae0ba2e6744
+nettle/nettle-tools.template: 945288002f775b9b167019a29ea31ae0ba2e6744
+nettle/template: 945288002f775b9b167019a29ea31ae0ba2e6744
+ version
+ 2.5_1
+
+ network-manager-applet-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 09:37 CET
+ filename
+ network-manager-applet-devel-0.9.8.0_2.noarch.xbps
+ filename-sha256
+ c32ea63721eecc28b86ef621ca01341ee9514a33e0f9d6fc509e30c0329dc55f
+ filename-size
+ 4276
+ homepage
+ http://www.gnome.org/projects/NetworkManager/
+ installed_size
+ 18455
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ network-manager-applet-devel
+ pkgver
+ network-manager-applet-devel-0.9.8.0_2
+ run_depends
+
+ gtk+3-devel>=0
+ NetworkManager-devel>=0.9.8.0
+ libnm-gtk-0.9.8.0_2
+
+ short_desc
+ NetworkManager panel applet for GNOME - development files
+ source-revisions
+ network-manager-applet/libnm-gtk.template: 246deea1234af4bb0bff68d8159a2c2fe4804aaa
+network-manager-applet/network-manager-applet-devel.template: 34eefee559b3575a87cab991a30db1df2bbff505
+network-manager-applet/template: 246deea1234af4bb0bff68d8159a2c2fe4804aaa
+ version
+ 0.9.8.0_2
+
+ nmapfe
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-30 17:10 CET
+ filename
+ nmapfe-6.25_1.noarch.xbps
+ filename-sha256
+ ebdfb4201aad934e5e5d192c9d3636dfccbcf5c4052031d3f3ce737771b90917
+ filename-size
+ 392048
+ homepage
+ http://nmap.org
+ installed_size
+ 1915660
+ license
+ GPL-2
+ long_desc
+
+ Nmap (Network Mapper) is a free and open source utility for network discovery
+ and security auditing. Many systems and network administrators also find it
+ useful for tasks such as network inventory, managing service upgrade schedules,
+ and monitoring host or service uptime. Nmap uses raw IP packets in novel ways to
+ determine what hosts are available on the network, what services (application
+ name and version) those hosts are offering, what operating systems (and OS
+ versions) they are running, what type of packet filters/firewalls are in use, and
+ dozens of other characteristics. It was designed to rapidly scan large networks,
+ but works fine against single hosts.
+
+ This package contains nmapfe - a GTK Frontend written in pygtk.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ nmapfe
+ pkgver
+ nmapfe-6.25_1
+ run_depends
+
+ nmap>=6.25
+ desktop-file-utils>=0
+ pygtk>=0
+
+ short_desc
+ Utility for network discovery and security auditing - GTK Frontend
+ source-revisions
+ nmap/nmapfe.template: 096b9bd9eb6270fe62bc194038a4ea078c7f8eb6
+nmap/template: 0535b08eded69b6ade9d26b96b7118498d6fd5c6
+ version
+ 6.25_1
+
+ nodejs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:18 CET
+ filename
+ nodejs-devel-0.8.20_1.noarch.xbps
+ filename-sha256
+ f2856f73d2f76679ab3f122761bfb46431529fac78816f4324ce067391ae366e
+ filename-size
+ 80688
+ homepage
+ http://nodejs.org/
+ installed_size
+ 428641
+ license
+ MIT
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ nodejs-devel
+ pkgver
+ nodejs-devel-0.8.20_1
+ run_depends
+
+ nodejs>=0.8.20
+
+ short_desc
+ Evented I/O for V8 javascript - Development files
+ source-revisions
+ nodejs/nodejs-devel.template: a6f0d5cf62dd337d3b10869dc5fc52749ed00770
+nodejs/nodejs-docs.template: a6f0d5cf62dd337d3b10869dc5fc52749ed00770
+nodejs/template: b4a20d44eea626cc1528a55d8ccdef890b0461df
+ version
+ 0.8.20_1
+
+ nodejs-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:18 CET
+ filename
+ nodejs-docs-0.8.20_1.noarch.xbps
+ filename-sha256
+ 275c86cce21aa109e22cb01238358d77137e1d5eb1031f067fbb790e39a986e2
+ filename-size
+ 192968
+ homepage
+ http://nodejs.org/
+ installed_size
+ 2777605
+ license
+ MIT
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ nodejs-docs
+ pkgver
+ nodejs-docs-0.8.20_1
+ short_desc
+ Evented I/O for V8 javascript - Documentation
+ source-revisions
+ nodejs/nodejs-devel.template: a6f0d5cf62dd337d3b10869dc5fc52749ed00770
+nodejs/nodejs-docs.template: a6f0d5cf62dd337d3b10869dc5fc52749ed00770
+nodejs/template: b4a20d44eea626cc1528a55d8ccdef890b0461df
+ version
+ 0.8.20_1
+
+ nscd
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:26 CET
+ conf_files
+
+ /etc/nscd.conf
+
+ filename
+ nscd-2.17_4.armv6l.xbps
+ filename-sha256
+ e8481cd85003f74bcf43eda95c89507be599f7b9fa7305f040d52cf5f9dd9134
+ filename-size
+ 52280
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 126453
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ nscd
+ pkgver
+ nscd-2.17_4
+ run_depends
+
+ glibc>=2.17_1
+
+ short_desc
+ The GNU C library -- Name Service Cache Daemon
+ source-revisions
+ glibc/files/libc-locales: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/files/nscd.conf: 9904b034651d6ea983af524f3c6b9870f4f1c7cd
+glibc/files/nscd.service: 650832e30112f8b89d0a359a2ba1be48db1e9886
+glibc/files/nscd.socket: 2057dd443284f51aebb7d376cdd47e9b42aa8a18
+glibc/files/nscd.tmpfiles.d: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+glibc/glibc-devel.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/glibc-locales.INSTALL: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/glibc-locales.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/nscd.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/template: 2bad41b7a68fbbf7d9ccad02ee9cf8afdb8a1fa0
+ version
+ 2.17_4
+
+ nscd-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 14:26 CET
+ filename
+ nscd-dbg-2.17_4.armv6l.xbps
+ filename-sha256
+ 67a40c56fb2533c1bf05c17c471030772a8b56649143484764b7db7cfebc9a4e
+ filename-size
+ 196900
+ homepage
+ http://www.gnu.org/software/libc
+ installed_size
+ 218766
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (d5a4dd9e39e735274555e24367ef5a919b98e6c7)
+ pkgname
+ nscd-dbg
+ pkgver
+ nscd-dbg-2.17_4
+ short_desc
+ The GNU C library -- Name Service Cache Daemon (debug files)
+ source-revisions
+ glibc/files/libc-locales: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/files/nscd.conf: 9904b034651d6ea983af524f3c6b9870f4f1c7cd
+glibc/files/nscd.service: 650832e30112f8b89d0a359a2ba1be48db1e9886
+glibc/files/nscd.socket: 2057dd443284f51aebb7d376cdd47e9b42aa8a18
+glibc/files/nscd.tmpfiles.d: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+glibc/glibc-devel.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/glibc-locales.INSTALL: 7f47f9fa899a90f98c9655994f6ea161d181d75a
+glibc/glibc-locales.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/nscd.template: 996f4c03aca52de97b96f5c9f15c70a20a33830e
+glibc/template: 2bad41b7a68fbbf7d9ccad02ee9cf8afdb8a1fa0
+ version
+ 2.17_4
+
+ nspr-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-28 20:29 CET
+ filename
+ nspr-devel-4.9.4_1.noarch.xbps
+ filename-sha256
+ 74529c121bc678bd54299c658f27e0215f9893d20296a6eb0068cfbaaf2f48c1
+ filename-size
+ 87944
+ homepage
+ http://www.mozilla.org/projects/nspr/
+ installed_size
+ 443097
+ license
+ GPL-2, MPL-1.1
+ long_desc
+
+ Netscape Portable Runtime (NSPR) provides a platform-neutral API for system
+ level and libc like functions. The API is used in the Mozilla client, many of
+ Netscape/AOL/iPlanet's and other software offerings.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ nspr-devel
+ pkgver
+ nspr-devel-4.9.4_1
+ run_depends
+
+ nspr-4.9.4_1
+
+ short_desc
+ NetScape Portable Runtime (development files)
+ source-revisions
+ nspr/nspr-devel.template: c772a6cc960187f15c86402dfded946d18d4cc07
+nspr/template: c49a6567bd619807861fa152d1a459bb7d337a78
+ version
+ 4.9.4_1
+
+ nss-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 14:21 CET
+ filename
+ nss-devel-3.14.3_1.noarch.xbps
+ filename-sha256
+ 1cbe087d34aeac761d1599d42ca6690e0f91328dfefcfdba646f5bf761e36b48
+ filename-size
+ 176932
+ homepage
+ http://www.mozilla.org/projects/security/pki/nss/
+ installed_size
+ 965299
+ license
+ GPL-2, MPL-1.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ nss-devel
+ pkgver
+ nss-devel-3.14.3_1
+ run_depends
+
+ nspr-devel>=4.9.3
+ nss-3.14.3_1
+
+ short_desc
+ Mozilla Network Security Services -- development files
+ source-revisions
+ nss/files/nss-config.in: 846d9d132a78adc26811b9bec85febdaadc4a9ab
+nss/files/nss.pc.in: 846d9d132a78adc26811b9bec85febdaadc4a9ab
+nss/nss-devel.template: adf6902400972b77f0efb601aa02dea51184d495
+nss/patches/ssl-renegotiate-transitional.patch: e1764bf6df72b997a26f3fcf355c526e4cc073a3
+nss/template: adf6902400972b77f0efb601aa02dea51184d495
+ version
+ 3.14.3_1
+
+ nss-mdns
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 20:48 CET
+ filename
+ nss-mdns-0.10_4.armv6l.xbps
+ filename-sha256
+ c720f6fbb09b9089a131e8af7c893310f3765878e563c566da2bc9a620462f1c
+ filename-size
+ 8588
+ homepage
+ http://0pointer.de/lennart/projects/nss-mdns
+ installed_size
+ 43808
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ nss-mdns
+ pkgver
+ nss-mdns-0.10_4
+ run_depends
+
+ avahi>=0
+ glibc>=2.8_1
+
+ short_desc
+ NSS module for Multicast DNS name resolution
+ source-revisions
+ nss-mdns/template: 02e0408fea307df10e00e3e81ebb365a290a9aa6
+ version
+ 0.10_4
+
+ nss-mdns-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 20:48 CET
+ filename
+ nss-mdns-dbg-0.10_4.armv6l.xbps
+ filename-sha256
+ 742ec07fa21398853d512c39a9e3c92e21da8fda1f668e0fc7730f9da2c7ff48
+ filename-size
+ 55880
+ homepage
+ http://0pointer.de/lennart/projects/nss-mdns
+ installed_size
+ 89396
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ nss-mdns-dbg
+ pkgver
+ nss-mdns-dbg-0.10_4
+ short_desc
+ NSS module for Multicast DNS name resolution (debug files)
+ source-revisions
+ nss-mdns/template: 02e0408fea307df10e00e3e81ebb365a290a9aa6
+ version
+ 0.10_4
+
+ ntfs-3g-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-30 00:12 CET
+ filename
+ ntfs-3g-devel-2013.1.13_1.noarch.xbps
+ filename-sha256
+ fa97e8b1da57db31fbdbca9550880e2f9174954f86c0bd28833fec76dfadeaa9
+ filename-size
+ 57872
+ homepage
+ http://www.tuxera.com/community/ntfs-3g-download/
+ installed_size
+ 260867
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ ntfs-3g-devel
+ pkgver
+ ntfs-3g-devel-2013.1.13_1
+ replaces
+
+ ntfsprogs-devel>=0
+
+ run_depends
+
+ fuse-devel>=0
+ ntfs-3g>=2013.1.13
+
+ short_desc
+ Stable Read/Write NTFS Driver in userspace -- development files
+ source-revisions
+ ntfs-3g/ntfs-3g-devel.template: 49c0b145ebcda9756ef33e26be3945edae77ee14
+ntfs-3g/template: 49c0b145ebcda9756ef33e26be3945edae77ee14
+ version
+ 2013.1.13_1
+
+ ntp
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:11 CET
+ conf_files
+
+ /etc/ntp.conf
+
+ filename
+ ntp-4.2.6p5_7.armv6l.xbps
+ filename-sha256
+ 7a2937b55f26fe0e2b84193cbbc989b335a08a20217d8936ed51e7d2c38e30f6
+ filename-size
+ 1305896
+ homepage
+ http://www.ntp.org/
+ installed_size
+ 2971964
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ ntp
+ pkgver
+ ntp-4.2.6p5_7
+ provides
+
+ ntp-daemon-0
+
+ replaces
+
+ ntp-daemon>=0
+
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+ libcap>=2.16_1
+
+ short_desc
+ The Network Time Protocol daemon and utilities
+ source-revisions
+ ntp/REMOVE: c1fa3c01385192a1e972ec30e64f10628ca4f876
+ntp/files/ntp.conf: 4a125a4a1fb43b07db4de18aff566881567e98d2
+ntp/files/ntpd.service: b3ae3a8de1628377a1f6f1c413cb51b255ef786c
+ntp/ntp-perl.template: 0c892d79a27ab182b762f7760bfe1d5664b2a6ca
+ntp/patches/fix_build.diff: 7f7ec10f8d8e42bd0514f02f0c0951c006425d04
+ntp/template: b3ae3a8de1628377a1f6f1c413cb51b255ef786c
+ version
+ 4.2.6p5_7
+
+ ntp-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:11 CET
+ filename
+ ntp-dbg-4.2.6p5_7.armv6l.xbps
+ filename-sha256
+ 2182df79c812df154b3dab7640ad716691db3a37ad10d00db3448a82a3ac7a4c
+ filename-size
+ 1421756
+ homepage
+ http://www.ntp.org/
+ installed_size
+ 1676604
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ ntp-dbg
+ pkgver
+ ntp-dbg-4.2.6p5_7
+ short_desc
+ The Network Time Protocol daemon and utilities (debug files)
+ source-revisions
+ ntp/REMOVE: c1fa3c01385192a1e972ec30e64f10628ca4f876
+ntp/files/ntp.conf: 4a125a4a1fb43b07db4de18aff566881567e98d2
+ntp/files/ntpd.service: b3ae3a8de1628377a1f6f1c413cb51b255ef786c
+ntp/ntp-perl.template: 0c892d79a27ab182b762f7760bfe1d5664b2a6ca
+ntp/patches/fix_build.diff: 7f7ec10f8d8e42bd0514f02f0c0951c006425d04
+ntp/template: b3ae3a8de1628377a1f6f1c413cb51b255ef786c
+ version
+ 4.2.6p5_7
+
+ ntp-perl
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:10 CET
+ filename
+ ntp-perl-4.2.6p5_7.noarch.xbps
+ filename-sha256
+ 81ecbe3f89e5e610e25c691204be7931ec22d87a2862a60b953505e27ceca2ca
+ filename-size
+ 2616
+ homepage
+ http://www.ntp.org/
+ installed_size
+ 3397
+ license
+ BSD
+ long_desc
+
+
+ This package contains perl scripts ntp-wait and ntptrace.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ ntp-perl
+ pkgver
+ ntp-perl-4.2.6p5_7
+ run_depends
+
+ ntp>=4.2.6p5
+ perl>=0
+
+ short_desc
+ The Network Time Protocol daemon and utilities (perl scripts)
+ source-revisions
+ ntp/REMOVE: c1fa3c01385192a1e972ec30e64f10628ca4f876
+ntp/files/ntp.conf: 4a125a4a1fb43b07db4de18aff566881567e98d2
+ntp/files/ntpd.service: b3ae3a8de1628377a1f6f1c413cb51b255ef786c
+ntp/ntp-perl.template: 0c892d79a27ab182b762f7760bfe1d5664b2a6ca
+ntp/patches/fix_build.diff: 7f7ec10f8d8e42bd0514f02f0c0951c006425d04
+ntp/template: b3ae3a8de1628377a1f6f1c413cb51b255ef786c
+ version
+ 4.2.6p5_7
+
+ nvi
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 11:06 CET
+ filename
+ nvi-1.81.6_4.armv6l.xbps
+ filename-sha256
+ 7e1501e6bb9b42c2bf9e74148b473643c1130b33081b50406f5de63280bd2d7b
+ filename-size
+ 166880
+ homepage
+ http://garage.linux.student.kuleuven.be/~skimo/nvi
+ installed_size
+ 484949
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ nvi
+ pkgver
+ nvi-1.81.6_4
+ run_depends
+
+ ncurses-libs>=5.8_1
+ glibc>=2.8_1
+ libdb>=4.8.24_1
+
+ short_desc
+ The Berkeley Vi Editor
+ source-revisions
+ nvi/patches/nvi-00-create-symlinks.patch: 13b7e0bfa03627904da3cd220970dfa07fc36804
+nvi/patches/nvi-01-additional_upstream_data.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-03-db4.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-04-confdefs.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-06-default_value_escapetime.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-07-flush_cache.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-08-lfs.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-08-safe_printf.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-08-tempfile_umask.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-09-casting.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-10-no_one_line_visual.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-11-backward_sentence_moving.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-12-horiz_scroll_count.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-13-widechar_horrors.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-14-private_regex_fixes.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-15-search_word.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-16-manpage_errors.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-17-tutorial_typos.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-18-dbpagesize_binpower.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-19-include_term_h.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-20-glibc_has_grantpt.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-21-exrc_writability_check.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-23-debian_alternatives.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-24-fallback_to_dumb_term.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-25-manpage_note_dropped_F.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-26-trailing_tab_segv.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-27-support_C_locale.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-29-file_backup.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/template: 13b7e0bfa03627904da3cd220970dfa07fc36804
+ version
+ 1.81.6_4
+
+ nvi-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 11:06 CET
+ filename
+ nvi-dbg-1.81.6_4.armv6l.xbps
+ filename-sha256
+ 6a5b36cb2718d5395ff48fbc7b2a0d826cdbf10a38b0c36dc7b28a757d00bf65
+ filename-size
+ 14920
+ homepage
+ http://garage.linux.student.kuleuven.be/~skimo/nvi
+ installed_size
+ 48804
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ nvi-dbg
+ pkgver
+ nvi-dbg-1.81.6_4
+ short_desc
+ The Berkeley Vi Editor (debug files)
+ source-revisions
+ nvi/patches/nvi-00-create-symlinks.patch: 13b7e0bfa03627904da3cd220970dfa07fc36804
+nvi/patches/nvi-01-additional_upstream_data.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-03-db4.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-04-confdefs.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-06-default_value_escapetime.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-07-flush_cache.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-08-lfs.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-08-safe_printf.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-08-tempfile_umask.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-09-casting.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-10-no_one_line_visual.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-11-backward_sentence_moving.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-12-horiz_scroll_count.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-13-widechar_horrors.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-14-private_regex_fixes.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-15-search_word.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-16-manpage_errors.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-17-tutorial_typos.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-18-dbpagesize_binpower.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-19-include_term_h.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-20-glibc_has_grantpt.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-21-exrc_writability_check.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-23-debian_alternatives.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-24-fallback_to_dumb_term.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-25-manpage_note_dropped_F.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-26-trailing_tab_segv.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-27-support_C_locale.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/patches/nvi-29-file_backup.patch: 5e284f0bac2fdb55620cfef70610b9de70d169b3
+nvi/template: 13b7e0bfa03627904da3cd220970dfa07fc36804
+ version
+ 1.81.6_4
+
+ opencl-headers
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 16:50 CET
+ filename
+ opencl-headers-1.2.20121114_1.noarch.xbps
+ filename-sha256
+ 7009715dd8239f96bf8298855f629e4dddc8f7154eaa96d019e1758501ac1f65
+ filename-size
+ 41664
+ homepage
+ http://www.khronos.org/registry/cl/
+ installed_size
+ 411177
+ license
+ MIT
+ long_desc
+
+ This package contains the OpenCL (Open Computing Language) header files from the Khronos group.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ opencl-headers
+ pkgver
+ opencl-headers-1.2.20121114_1
+ short_desc
+ OpenCL (Open Computing Language) header files
+ version
+ 1.2.20121114_1
+
+ openssh
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 08:55 CET
+ conf_files
+
+ /etc/ssh/moduli
+ /etc/ssh/ssh_config
+
+ filename
+ openssh-6.1p1_3.armv6l.xbps
+ filename-sha256
+ 1745c96da8d575a791922f6114cad10c1a14102fe57ffab9e70a3cacdcf9ed7d
+ filename-size
+ 334024
+ homepage
+ http://www.openssh.org
+ installed_size
+ 1702870
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ openssh
+ pkgver
+ openssh-6.1p1_3
+ replaces
+
+ openssh-client<6.1p1
+
+ run_depends
+
+ libssl>=1.0.0_1
+ libgcc>=4.4.0_1
+ glibc>=2.17_1
+ zlib>=1.2.3_1
+ mit-krb5-libs>=1.8_1
+
+ short_desc
+ The OpenSSH implementation of SSH protocol versions 1 and 2 (client)
+ source-revisions
+ openssh/files/sshd.service: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd.socket: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd@.service: 3c45cf46060b0932ac874d3cb26752133f39fbae
+openssh/files/sshdgenkeys.service: 895c12e5226d70edf4c7ca60e0c8d925cc9abefb
+openssh/openssh-server.INSTALL: bf744c20bd89812e2ea16cc4daa16a9255ff121d
+openssh/openssh-server.template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+openssh/template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+ version
+ 6.1p1_3
+
+ openssh-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 08:55 CET
+ filename
+ openssh-dbg-6.1p1_3.armv6l.xbps
+ filename-sha256
+ 32706dc71f9adf02b03a72d18bcd2fbe6185fd6d8ad4aedd8b2d372ad76ad7a1
+ filename-size
+ 1892552
+ homepage
+ http://www.openssh.org
+ installed_size
+ 2226714
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ openssh-dbg
+ pkgver
+ openssh-dbg-6.1p1_3
+ short_desc
+ The OpenSSH implementation of SSH protocol versions 1 and 2 (client) (debug files)
+ source-revisions
+ openssh/files/sshd.service: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd.socket: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd@.service: 3c45cf46060b0932ac874d3cb26752133f39fbae
+openssh/files/sshdgenkeys.service: 895c12e5226d70edf4c7ca60e0c8d925cc9abefb
+openssh/openssh-server.INSTALL: bf744c20bd89812e2ea16cc4daa16a9255ff121d
+openssh/openssh-server.template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+openssh/template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+ version
+ 6.1p1_3
+
+ openssh-server
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 08:55 CET
+ conf_files
+
+ /etc/ssh/sshd_config
+ /etc/pam.d/sshd
+
+ filename
+ openssh-server-6.1p1_3.armv6l.xbps
+ filename-sha256
+ c788b3700af1342ce1b737f484a6484319017c45be663bc158d91c8e145223ff
+ filename-size
+ 190912
+ homepage
+ http://www.openssh.org
+ installed_size
+ 504085
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ openssh-server
+ pkgver
+ openssh-server-6.1p1_3
+ run_depends
+
+ openssh>=6.1p1
+ pam-libs>=1.1.6_3
+ libssl>=1.0.0_1
+ glibc>=2.17_1
+ zlib>=1.2.3_1
+ mit-krb5-libs>=1.8_1
+ e2fsprogs-libs>=1.41.5_1_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The OpenSSH server
+ source-revisions
+ openssh/files/sshd.service: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd.socket: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd@.service: 3c45cf46060b0932ac874d3cb26752133f39fbae
+openssh/files/sshdgenkeys.service: 895c12e5226d70edf4c7ca60e0c8d925cc9abefb
+openssh/openssh-server.INSTALL: bf744c20bd89812e2ea16cc4daa16a9255ff121d
+openssh/openssh-server.template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+openssh/template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+ version
+ 6.1p1_3
+
+ openssh-server-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 08:55 CET
+ filename
+ openssh-server-dbg-6.1p1_3.armv6l.xbps
+ filename-sha256
+ 16392b4dfadc0ad0b2c0ca68e49b0d8ae93dafd117eccfc5273d8beb66a6e806
+ filename-size
+ 684852
+ homepage
+ http://www.openssh.org
+ installed_size
+ 790512
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ openssh-server-dbg
+ pkgver
+ openssh-server-dbg-6.1p1_3
+ short_desc
+ The OpenSSH server (debug files)
+ source-revisions
+ openssh/files/sshd.service: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd.socket: b2ae6500f285e7a7a387ab874bc88d68a6ea8031
+openssh/files/sshd@.service: 3c45cf46060b0932ac874d3cb26752133f39fbae
+openssh/files/sshdgenkeys.service: 895c12e5226d70edf4c7ca60e0c8d925cc9abefb
+openssh/openssh-server.INSTALL: bf744c20bd89812e2ea16cc4daa16a9255ff121d
+openssh/openssh-server.template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+openssh/template: 95c5ecd57b590f71e6e7c87b87a1bd97250439e1
+ version
+ 6.1p1_3
+
+ openssl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:56 CET
+ conf_files
+
+ /etc/ssl/openssl.cnf
+
+ filename
+ openssl-1.0.1e_3.armv6l.xbps
+ filename-sha256
+ e7727171e4875de4156ae00c54149c91822f49a2d386690bb9d52941391301e0
+ filename-size
+ 446428
+ homepage
+ http://www.openssl.org/
+ installed_size
+ 941609
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ openssl
+ pkgver
+ openssl-1.0.1e_3
+ run_depends
+
+ perl>=0
+ libssl-1.0.1e_3
+ glibc>=2.8_1
+ zlib>=1.2.3_1
+
+ short_desc
+ Secure Socket Layer and cryptographic library - runtime utilities
+ source-revisions
+ openssl/libssl.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/openssl-devel.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/patches/ca-dir.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/patches/fix-soname-and-rpath.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/template: cebd16c9d79baab43389f527295729d6ff568238
+ version
+ 1.0.1e_3
+
+ openssl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:56 CET
+ filename
+ openssl-dbg-1.0.1e_3.armv6l.xbps
+ filename-sha256
+ 53154236f8ab31dd1d21276810a59ca0f5f543541a812b1c45369149830fc713
+ filename-size
+ 773172
+ homepage
+ http://www.openssl.org/
+ installed_size
+ 903922
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ openssl-dbg
+ pkgver
+ openssl-dbg-1.0.1e_3
+ short_desc
+ Secure Socket Layer and cryptographic library - runtime utilities (debug files)
+ source-revisions
+ openssl/libssl.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/openssl-devel.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/patches/ca-dir.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/patches/fix-soname-and-rpath.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/template: cebd16c9d79baab43389f527295729d6ff568238
+ version
+ 1.0.1e_3
+
+ openssl-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 00:56 CET
+ filename
+ openssl-devel-1.0.1e_3.armv6l.xbps
+ filename-sha256
+ db7fd3a38e7cd1486af25cd44506f3f511fb1e41b9bfc96aa188a793764e1a51
+ filename-size
+ 1709076
+ homepage
+ http://www.openssl.org/
+ installed_size
+ 5436921
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ openssl-devel
+ pkgver
+ openssl-devel-1.0.1e_3
+ run_depends
+
+ zlib-devel>=0
+ libssl>=1.0.1e
+
+ short_desc
+ Secure Socket Layer and cryptographic library - development files
+ source-revisions
+ openssl/libssl.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/openssl-devel.template: 4cf15f851a895b54dda90f89eef6c3a66ab10495
+openssl/patches/ca-dir.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/patches/fix-soname-and-rpath.patch: acd00daf7f228440193d13beb56686c4fa217ac3
+openssl/template: cebd16c9d79baab43389f527295729d6ff568238
+ version
+ 1.0.1e_3
+
+ opus-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 07:45 CET
+ filename
+ opus-devel-1.0.2_1.noarch.xbps
+ filename-sha256
+ 80626703ff466a418ad6caaeb2f3af8fe6a143d8513657d441ac7b51c6bc11bf
+ filename-size
+ 20456
+ homepage
+ http://www.opus-codec.org/
+ installed_size
+ 113682
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ opus-devel
+ pkgver
+ opus-devel-1.0.2_1
+ run_depends
+
+ opus-1.0.2_1
+
+ short_desc
+ Codec designed for interactive speech and audio transmission over the Internet -- development files
+ source-revisions
+ opus/opus-devel.template: bd3aa7781e5ce4cff26757932b17c248598c7b0d
+opus/template: bd3aa7781e5ce4cff26757932b17c248598c7b0d
+ version
+ 1.0.2_1
+
+ opusfile-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 23:20 CET
+ filename
+ opusfile-devel-0.2_1.noarch.xbps
+ filename-sha256
+ 42ac055d3048f2685e3fa0ebf8aee9daca35939f5dbc37f97906999e9f660fe8
+ filename-size
+ 16572
+ homepage
+ http://www.opus-codec.org/
+ installed_size
+ 87575
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ opusfile-devel
+ pkgver
+ opusfile-devel-0.2_1
+ run_depends
+
+ libogg-devel>=0
+ openssl-devel>=0
+ opus-devel>=0
+ opusfile>=0.2
+
+ short_desc
+ Library for opening, seeking, and decoding .opus files -- development files
+ source-revisions
+ opusfile/opusfile-devel.template: 134934603e2920352ce38b941d0997ce2c2e870b
+opusfile/template: 134934603e2920352ce38b941d0997ce2c2e870b
+ version
+ 0.2_1
+
+ orc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-25 11:44 CEST
+ filename
+ orc-devel-0.4.16_1.noarch.xbps
+ filename-sha256
+ f92dbf45ef50c32ce8e0d73b97e079ca43c89fb0a11a587d34fb47dbec4eb380
+ filename-size
+ 57404
+ homepage
+ http://code.entropywave.com/orc/
+ installed_size
+ 811008
+ license
+ Simplified BSD, New BSD license
+ long_desc
+
+ Orc is a library and set of tools for compiling and executing very simple
+ programs that operate on arrays of data. The “language” is a generic assembly
+ language that represents many of the features available in SIMD architectures,
+ including saturated addition and subtraction, and many arithmetic operations.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ orc-devel
+ pkgver
+ orc-devel-0.4.16_1
+ run_depends
+
+ orc>=0.4.16
+
+ short_desc
+ The Oild Runtime Compiler - development files
+ version
+ 0.4.16_1
+
+ oxygen-icons
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-04 16:17 UTC
+ filename
+ oxygen-icons-4.9.1_1.noarch.xbps
+ filename-sha256
+ 516b25f8cd2c8c3eb88670e19d6dcb9ab41dd3408c468d877bc7f70e32a0a7d5
+ filename-size
+ 29548928
+ homepage
+ http://www.oxygen-icons.org
+ installed_size
+ 53866496
+ license
+ GPL-3
+ long_desc
+
+ Oxygen is the standard icon theme for KDE 4, but follows the freedesktop.org
+ icon schemes, so it can be used in other desktop environments using this
+ specification.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ oxygen-icons
+ pkgver
+ oxygen-icons-4.9.1_1
+ short_desc
+ The Oxygen Icon Theme
+ version
+ 4.9.1_1
+
+ p11-kit-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-13 14:27 CEST
+ filename
+ p11-kit-devel-0.13_1.noarch.xbps
+ filename-sha256
+ 2917c174080d77f1ebb6319f6672d800cb8f0065b9cef15c9242abecdf778b55
+ filename-size
+ 37140
+ homepage
+ http://p11-glue.freedesktop.org
+ installed_size
+ 380928
+ license
+ BSD
+ long_desc
+
+ Provides a standard configuration setup for installing PKCS#11 modules in
+ such a way that they're discoverable.
+
+ Also solves problems with coordinating the use of PKCS#11 by different
+ components or libraries living in the same process.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ p11-kit-devel
+ pkgver
+ p11-kit-devel-0.13_1
+ run_depends
+
+ glibc-devel>=0
+ p11-kit>=0.13
+
+ short_desc
+ Provides a way to load and enumerate PKCS#11 modules -- development files
+ version
+ 0.13_1
+
+ pam
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:07 CET
+ conf_files
+
+ /etc/environment
+ /etc/security/access.conf
+ /etc/security/group.conf
+ /etc/security/limits.conf
+ /etc/security/namespace.conf
+ /etc/security/pam_env.conf
+ /etc/security/time.conf
+
+ filename
+ pam-1.1.6_3.armv6l.xbps
+ filename-sha256
+ d9555587e804ba3a8fdea17c9b497b6f88332e57abbe9b4d9e526cc9691319ef
+ filename-size
+ 339356
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 1169238
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam
+ pkgver
+ pam-1.1.6_3
+ run_depends
+
+ cracklib>=0
+ pam-libs-1.1.6_3
+ glibc>=2.8_1
+ libcracklib>=2.8.22_2
+
+ short_desc
+ A flexible mechanism for authenticating users
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pam-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:07 CET
+ filename
+ pam-dbg-1.1.6_3.armv6l.xbps
+ filename-sha256
+ 626f7103c87d4c93edc3cc11e54b3c88702c7fa9902f6a4b15109f9489f58b83
+ filename-size
+ 402084
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 634833
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam-dbg
+ pkgver
+ pam-dbg-1.1.6_3
+ short_desc
+ A flexible mechanism for authenticating users (debug files)
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pam-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:05 CET
+ filename
+ pam-devel-1.1.6_3.noarch.xbps
+ filename-sha256
+ 916f1c85bc29cd3f092c07b0f6da343ac8f091ce935b2addcec0ce4d0ea554ae
+ filename-size
+ 116728
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 227810
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam-devel
+ pkgver
+ pam-devel-1.1.6_3
+ run_depends
+
+ cracklib-devel>=0
+ db-devel>=0
+ pam-libs>=1.1.6
+
+ short_desc
+ A flexible mechanism for authenticating users -- development files
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pam-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:07 CET
+ filename
+ pam-libs-1.1.6_3.armv6l.xbps
+ filename-sha256
+ f76e4523bdca591e70ef22c241b1d74d6ca121d17d89dcb26499613cb0ed7246
+ filename-size
+ 20876
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 59072
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam-libs
+ pkgver
+ pam-libs-1.1.6_3
+ replaces
+
+ pam<1.1.6_3
+
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ A flexible mechanism for authenticating users -- runtime libraries
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pam-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:07 CET
+ filename
+ pam-libs-dbg-1.1.6_3.armv6l.xbps
+ filename-sha256
+ 3b3a903b3f85d614c7b93e7f30c17fa525165a631c514f4e03689f853f0142c7
+ filename-size
+ 66252
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 84076
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam-libs-dbg
+ pkgver
+ pam-libs-dbg-1.1.6_3
+ short_desc
+ A flexible mechanism for authenticating users -- runtime libraries (debug files)
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pam-userdb
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:07 CET
+ filename
+ pam-userdb-1.1.6_3.armv6l.xbps
+ filename-sha256
+ f51b449755140209316e4f9b9c134efce0f88ad4857b393c943f2e32577736c5
+ filename-size
+ 6936
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 10747
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam-userdb
+ pkgver
+ pam-userdb-1.1.6_3
+ run_depends
+
+ libdb>=4.8.24_1
+ glibc>=2.8_1
+ pam-libs-1.1.6_3
+
+ short_desc
+ PAM module to authenticate against a db database
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pam-userdb-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 13:07 CET
+ filename
+ pam-userdb-dbg-1.1.6_3.armv6l.xbps
+ filename-sha256
+ 82701740e7dc60f3febc0d3ed9b164ddebf1fa8707cc48ae4b7d8821322861fe
+ filename-size
+ 21344
+ homepage
+ http://www.kernel.org/pub/linux/libs/pam/
+ installed_size
+ 23933
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ pam-userdb-dbg
+ pkgver
+ pam-userdb-dbg-1.1.6_3
+ short_desc
+ PAM module to authenticate against a db database (debug files)
+ source-revisions
+ pam/pam-devel.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-libs.template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+pam/pam-userdb.template: 927ae929ef0b9c6e00a6416af818b3e33a0a78ff
+pam/patches/pam_unix_sys_resource.patch: ab52b76b4d4497e8dfd86d595b39b39ea25c55fc
+pam/template: 956f12ef597b4f7748aef1f42ceb031d962bb988
+ version
+ 1.1.6_3
+
+ pango-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 15:59 CET
+ filename
+ pango-devel-1.32.6_1.noarch.xbps
+ filename-sha256
+ 6a1c930d8af21e9f300630a2a37c4a1a6bf9d10af1a5adba9b4b0ace64069979
+ filename-size
+ 232776
+ homepage
+ http://www.pango.org/
+ installed_size
+ 2974302
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ pango-devel
+ pkgver
+ pango-devel-1.32.6_1
+ run_depends
+
+ glib-devel>=0
+ cairo-devel>=0
+ fontconfig-devel>=0
+ freetype-devel>=0
+ libXft-devel>=0
+ harfbuzz-devel>=0
+ pango-1.32.6_1
+
+ short_desc
+ Library for layout and rendering of text -- development files
+ source-revisions
+ pango/pango-devel.template: 517de69ea1ea69c117ef6fdb5176bc7079060ccc
+pango/template: 734326a2386303468ae6c1292b4ddf165dde7d42
+ version
+ 1.32.6_1
+
+ pangox-compat-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-18 09:08 CEST
+ filename
+ pangox-compat-devel-0.0.2_1.noarch.xbps
+ filename-sha256
+ eb9e657b516dbf4c13920f20f8a1042506db4717d958110aae211c44e24b6aab
+ filename-size
+ 2572
+ homepage
+ http://www.pango.org/
+ installed_size
+ 4652
+ license
+ LGPL-2.1
+ long_desc
+
+ This is a compatibility library providing the obsolete pangox library
+ that is not shipped by Pango itself anymore. If you are still using
+ pangox, well, really, get a life...
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ pangox-compat-devel
+ pkgver
+ pangox-compat-devel-0.0.2_1
+ run_depends
+
+ libX11-devel>=0
+ pango-devel>=1.31
+ pangox-compat-0.0.2_1
+
+ short_desc
+ pangox-compat (development files)
+ version
+ 0.0.2_1
+
+ papyon
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ papyon-0.5.6_1.noarch.xbps
+ filename-sha256
+ 8406e0db45bd052735db8600e2e7c396623fc323405f9e35cf6e622062d22833
+ filename-size
+ 147092
+ installed_size
+ 1536000
+ long_desc
+
+ Features
+ - MSNP15
+ - Best MSNP2P implementation : avatars and custom emoticons
+ - Yahoo messenger contacts support : chat and presence
+ - Live Address Book support : full contact and group management
+ - Server side contacts aliasing
+ - Offline messages support
+ - MSN Spaces
+ - Content Roaming support : avatar, display name and personal message storage
+ - Full support for HTTP and HTTPS proxies
+ - Support HTTP Polling transport
+ - No threads, fully asynchronous
+ - Caching system (only used for storing the SSO tickets for now, but will be
+ used to support deltas in the AddressBook later)
+ - Very solid and extensible architecture
+ - Solid networking through a new sublibrary : gnet
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ papyon
+ pkgver
+ papyon-0.5.6_1
+ run_depends
+
+ gst-python>=0
+ farstream>=0
+ python>=0
+ pygobject>=0
+ pyopenssl>=0
+ pycrypto>=0
+
+ short_desc
+ MSN library purely written in Python
+ version
+ 0.5.6_1
+
+ pcre
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ pcre-8.32_2.armv6l.xbps
+ filename-sha256
+ 984170ac2672615c60e5c985bf80478ab33f71d0c45388adfb4a04b9e3c7c257
+ filename-size
+ 58564
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 106554
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ pcre
+ pkgver
+ pcre-8.32_2
+ run_depends
+
+ zlib>=1.2.3_1
+ bzip2>=1.0.5_1
+ libpcre-8.32_2
+ glibc>=2.8_1
+ readline>=6.0_1
+
+ short_desc
+ Perl Compatible Regular Expressions
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ pcre-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ pcre-dbg-8.32_2.armv6l.xbps
+ filename-sha256
+ 48079bb9aa8a7d887cc2d63e1c2222aad50bb6dcd39a592f037729697135b5e8
+ filename-size
+ 68300
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 83186
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ pcre-dbg
+ pkgver
+ pcre-dbg-8.32_2
+ short_desc
+ Perl Compatible Regular Expressions (debug files)
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ pcre-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 00:46 CET
+ filename
+ pcre-devel-8.32_2.noarch.xbps
+ filename-sha256
+ 033e2849ae8ef3306649732070991d4a62cbb89be15e561af9651a20a858070f
+ filename-size
+ 476368
+ homepage
+ http://www.pcre.org/
+ installed_size
+ 1777907
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ pcre-devel
+ pkgver
+ pcre-devel-8.32_2
+ run_depends
+
+ zlib-devel>=0
+ bzip2-devel>=0
+ libpcre>=8.32
+ libpcrecpp>=8.32
+
+ short_desc
+ Perl Compatible Regular Expressions (development files)
+ source-revisions
+ pcre/libpcre.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/libpcrecpp.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/pcre-devel.template: ac8396c0ddff492105dd3d857ca4215afb55849b
+pcre/template: ac8396c0ddff492105dd3d857ca4215afb55849b
+ version
+ 8.32_2
+
+ perl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:11 CET
+ filename
+ perl-5.16.2_2.armv6l.xbps
+ filename-sha256
+ 10a5caa693561588b63523dcf1d9f3db17ec037ae9b56a044bff5ce573982a28
+ filename-size
+ 12348940
+ homepage
+ http://www.perl.org
+ installed_size
+ 41036081
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ perl
+ pkgver
+ perl-5.16.2_2
+ provides
+
+ perl-Archive-Extract-0.58_1
+ perl-Archive-Tar-1.82_1
+ perl-Attribute-Handlers-0.93_1
+ perl-AutoLoader-5.72_1
+ perl-B-Debug-1.17_1
+ perl-B-Deparse-1.14_01_1
+ perl-B-Lint-1.14_1
+ perl-CGI-3.59_1
+ perl-CPAN-1.9800_1
+ perl-CPAN-Meta-2.120630_1
+ perl-CPAN-Meta-YAML-0.007_1
+ perl-CPANPLUS-0.9121_1
+ perl-CPANPLUS-Dist-Build-0.62_1
+ perl-Carp-1.26_1
+ perl-Compress-Raw-Bzip2-2.048_1
+ perl-Compress-Raw-Zlib-2.048_1
+ perl-DB_File-1.826_1
+ perl-Data-Dumper-2.135_06_1
+ perl-Devel-PPPort-3.20_1
+ perl-Devel-SelfStubber-1.05_1
+ perl-Digest-1.17_1
+ perl-Digest-MD5-2.51_1
+ perl-Digest-SHA-5.71_1
+ perl-Dumpvalue-1.17_1
+ perl-Encode-2.44_1
+ perl-Env-1.03_1
+ perl-Exporter-5.66_1
+ perl-ExtUtils-CBuilder-0.280206_1
+ perl-ExtUtils-Command-1.17_1
+ perl-ExtUtils-Constant-0.23_1
+ perl-ExtUtils-Install-1.58_1
+ perl-ExtUtils-MakeMaker-6.63_02_1
+ perl-ExtUtils-Manifest-1.61_1
+ perl-ExtUtils-ParseXS-3.16_1
+ perl-File-CheckTree-4.41_1
+ perl-File-Fetch-0.32_1
+ perl-File-Path-2.08_01_1
+ perl-File-Temp-0.22_1
+ perl-Filter-Simple-0.88_1
+ perl-Filter-Util-Call-1.40_1
+ perl-Getopt-Long-2.38_1
+ perl-HTTP-Tiny-0.017_1
+ perl-I18N-Collate-1.02_1
+ perl-I18N-LangTags-0.38_1
+ perl-IO-1.25_06_1
+ perl-IO-Compress-2.048_1
+ perl-IO-Zlib-1.10_1
+ perl-IPC-Cmd-0.76_1
+ perl-IPC-SysV-2.03_1
+ perl-JSON-PP-2.27200_1
+ perl-Locale-Codes-3.21_1
+ perl-Locale-Maketext-1.22_1
+ perl-Locale-Maketext-Simple-0.21_1
+ perl-Log-Message-0.04_1
+ perl-Log-Message-Simple-0.08_1
+ perl-MIME-Base64-3.13_1
+ perl-Math-BigInt-1.998_1
+ perl-Math-BigInt-FastCalc-0.30_1
+ perl-Math-BigRat-0.2603_1
+ perl-Math-Complex-1.59_1
+ perl-Memoize-1.02_1
+ perl-Module-Build-0.39_01_1
+ perl-Module-CoreList-2.76_1
+ perl-Module-Load-0.22_1
+ perl-Module-Load-Conditional-0.46_1
+ perl-Module-Loaded-0.08_1
+ perl-Module-Metadata-1.000009_1
+ perl-Module-Pluggable-4.0_1
+ perl-NEXT-0.65_1
+ perl-Net-Ping-2.38_1
+ perl-Object-Accessor-0.42_1
+ perl-Package-Constants-0.02_1
+ perl-Params-Check-0.32_1
+ perl-Parse-CPAN-Meta-1.4402_1
+ perl-PathTools-3.39_02_1
+ perl-Perl-OSType-1.002_1
+ perl-PerlIO-via-QuotedPrint-0.06_1
+ perl-Pod-Escapes-1.04_1
+ perl-Pod-LaTeX-0.60_1
+ perl-Pod-Parser-1.51_1
+ perl-Pod-Perldoc-3.17_1
+ perl-Pod-Simple-3.20_1
+ perl-Safe-2.31_01_1
+ perl-Scalar-List-Utils-1.25_1
+ perl-Search-Dict-1.04_1
+ perl-SelfLoader-1.20_1
+ perl-Socket-2.001_1
+ perl-Storable-2.34_1
+ perl-Sys-Syslog-0.29_1
+ perl-Term-ANSIColor-3.01_1
+ perl-Term-Cap-1.13_1
+ perl-Term-Complete-1.402_1
+ perl-Term-ReadLine-1.09_1
+ perl-Term-UI-0.30_1
+ perl-Test-1.25_02_1
+ perl-Test-Harness-3.23_1
+ perl-Test-Simple-0.98_1
+ perl-Text-Abbrev-1.02_1
+ perl-Text-Balanced-2.02_1
+ perl-Text-ParseWords-3.27_1
+ perl-Text-Soundex-3.03_01_1
+ perl-Text-Tabs+Wrap-2009.0305_1
+ perl-Thread-Queue-2.12_1
+ perl-Thread-Semaphore-2.12_1
+ perl-Tie-File-0.98_1
+ perl-Tie-RefHash-1.39_1
+ perl-Time-HiRes-1.9725_1
+ perl-Time-Local-1.2000_1
+ perl-Time-Piece-1.20_01_1
+ perl-Unicode-Collate-0.89_1
+ perl-Unicode-Normalize-1.14_1
+ perl-Version-Requirements-0.101022_1
+ perl-Win32-0.44_1
+ perl-Win32API-File-0.1200_1
+ perl-XSLoader-0.16_1
+ perl-autodie-2.10_1
+ perl-autouse-1.07_1
+ perl-base-2.18_1
+ perl-bignum-0.29_1
+ perl-constant-1.23_1
+ perl-encoding-warnings-0.11_1
+ perl-if-0.0602_1
+ perl-lib-0.63_1
+ perl-libnet-1.22_1
+ perl-parent-0.225_1
+ perl-perlfaq-5.0150039_1
+ perl-podlators-2.4.0_1
+ perl-threads-1.86_1
+ perl-threads-shared-1.40_1
+ perl-version-0.99_1
+
+ replaces
+
+ perl-Archive-Extract>=0
+ perl-Archive-Tar>=0
+ perl-Attribute-Handlers>=0
+ perl-AutoLoader>=0
+ perl-B-Debug>=0
+ perl-B-Deparse>=0
+ perl-B-Lint>=0
+ perl-CGI>=0
+ perl-CPAN>=0
+ perl-CPAN-Meta>=0
+ perl-CPAN-Meta-YAML>=0
+ perl-CPANPLUS>=0
+ perl-CPANPLUS-Dist-Build>=0
+ perl-Carp>=0
+ perl-Compress-Raw-Bzip2>=0
+ perl-Compress-Raw-Zlib>=0
+ perl-DB_File>=0
+ perl-Data-Dumper>=0
+ perl-Devel-PPPort>=0
+ perl-Devel-SelfStubber>=0
+ perl-Digest>=0
+ perl-Digest-MD5>=0
+ perl-Digest-SHA>=0
+ perl-Dumpvalue>=0
+ perl-Encode>=0
+ perl-Env>=0
+ perl-Exporter>=0
+ perl-ExtUtils-CBuilder>=0
+ perl-ExtUtils-Command>=0
+ perl-ExtUtils-Constant>=0
+ perl-ExtUtils-Install>=0
+ perl-ExtUtils-MakeMaker>=0
+ perl-ExtUtils-Manifest>=0
+ perl-ExtUtils-ParseXS>=0
+ perl-File-CheckTree>=0
+ perl-File-Fetch>=0
+ perl-File-Path>=0
+ perl-File-Temp>=0
+ perl-Filter-Simple>=0
+ perl-Filter-Util-Call>=0
+ perl-Getopt-Long>=0
+ perl-HTTP-Tiny>=0
+ perl-I18N-Collate>=0
+ perl-I18N-LangTags>=0
+ perl-IO>=0
+ perl-IO-Compress>=0
+ perl-IO-Zlib>=0
+ perl-IPC-Cmd>=0
+ perl-IPC-SysV>=0
+ perl-JSON-PP>=0
+ perl-Locale-Codes>=0
+ perl-Locale-Maketext>=0
+ perl-Locale-Maketext-Simple>=0
+ perl-Log-Message>=0
+ perl-Log-Message-Simple>=0
+ perl-MIME-Base64>=0
+ perl-Math-BigInt>=0
+ perl-Math-BigInt-FastCalc>=0
+ perl-Math-BigRat>=0
+ perl-Math-Complex>=0
+ perl-Memoize>=0
+ perl-Module-Build>=0
+ perl-Module-CoreList>=0
+ perl-Module-Load>=0
+ perl-Module-Load-Conditional>=0
+ perl-Module-Loaded>=0
+ perl-Module-Metadata>=0
+ perl-Module-Pluggable>=0
+ perl-NEXT>=0
+ perl-Net-Ping>=0
+ perl-Object-Accessor>=0
+ perl-Package-Constants>=0
+ perl-Params-Check>=0
+ perl-Parse-CPAN-Meta>=0
+ perl-PathTools>=0
+ perl-Perl-OSType>=0
+ perl-PerlIO-via-QuotedPrint>=0
+ perl-Pod-Escapes>=0
+ perl-Pod-LaTeX>=0
+ perl-Pod-Parser>=0
+ perl-Pod-Perldoc>=0
+ perl-Pod-Simple>=0
+ perl-Safe>=0
+ perl-Scalar-List-Utils>=0
+ perl-Search-Dict>=0
+ perl-SelfLoader>=0
+ perl-Socket>=0
+ perl-Storable>=0
+ perl-Sys-Syslog>=0
+ perl-Term-ANSIColor>=0
+ perl-Term-Cap>=0
+ perl-Term-Complete>=0
+ perl-Term-ReadLine>=0
+ perl-Term-UI>=0
+ perl-Test>=0
+ perl-Test-Harness>=0
+ perl-Test-Simple>=0
+ perl-Text-Abbrev>=0
+ perl-Text-Balanced>=0
+ perl-Text-ParseWords>=0
+ perl-Text-Soundex>=0
+ perl-Text-Tabs+Wrap>=0
+ perl-Thread-Queue>=0
+ perl-Thread-Semaphore>=0
+ perl-Tie-File>=0
+ perl-Tie-RefHash>=0
+ perl-Time-HiRes>=0
+ perl-Time-Local>=0
+ perl-Time-Piece>=0
+ perl-Unicode-Collate>=0
+ perl-Unicode-Normalize>=0
+ perl-Version-Requirements>=0
+ perl-Win32>=0
+ perl-Win32API-File>=0
+ perl-XSLoader>=0
+ perl-autodie>=0
+ perl-autouse>=0
+ perl-base>=0
+ perl-bignum>=0
+ perl-constant>=0
+ perl-encoding-warnings>=0
+ perl-if>=0
+ perl-lib>=0
+ perl-libnet>=0
+ perl-parent>=0
+ perl-perlfaq>=0
+ perl-podlators>=0
+ perl-threads>=0
+ perl-threads-shared>=0
+ perl-version>=0
+
+ run_depends
+
+ glibc>=2.17_1
+ libdb>=4.8.24_1
+ gdbm>=1.10_1_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Practical Extraction and Report Language
+ source-revisions
+ perl/files/Configure.cross: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/bitcount.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/config.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/config.sh: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/mg_data.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/uudmap.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/perlbin.sh: b3e0438cf68e117824a1f61ca1c1f9830ab05a2d
+perl/files/provides.pl: d4130b561248ef35b183eae800e39497876f448b
+perl/patches/cross-Makefile.SH.patch: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/template: 77b6c279b926832422441f98c9e9e462a40563ab
+ version
+ 5.16.2_2
+
+ perl-Archive-Zip
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-01 13:26 CET
+ filename
+ perl-Archive-Zip-1.30_1.noarch.xbps
+ filename-sha256
+ fabbd460000d83cc70ab1db876b3acdbd52139d4e44d5cca604504ccbec14cd2
+ filename-size
+ 68432
+ homepage
+ http://search.cpan.org/dist/Archive-Zip/
+ installed_size
+ 197789
+ license
+ GPL, PerlArtistic
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-34 (1402c58dc37665c12312cf9e6be5a326612d5063)
+ pkgname
+ perl-Archive-Zip
+ pkgver
+ perl-Archive-Zip-1.30_1
+ run_depends
+
+ perl>=5.16
+
+ short_desc
+ Provide a perl interface to ZIP archive files
+ source-revisions
+ perl-Archive-Zip/template: 8d7c66ce7fb6546cb4c0ef5b2082fab6d1c7a592
+ version
+ 1.30_1
+
+ perl-CPAN-Meta
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-17 10:14 CET
+ filename
+ perl-CPAN-Meta-2.120921_2.noarch.xbps
+ filename-sha256
+ 484411ae2f137b9dc6411eb313e53cb3b2e7b721828381900a55e145850500c8
+ filename-size
+ 64860
+ homepage
+ http://search.cpan.org/dist/CPAN-Meta-Requirements
+ installed_size
+ 171043
+ license
+ GPL-1, Artistic
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ perl-CPAN-Meta
+ pkgver
+ perl-CPAN-Meta-2.120921_2
+ run_depends
+
+ perl>=0
+ perl-CPAN-Meta-Requirements>=0
+ perl-CPAN-Meta-YAML>=0
+
+ short_desc
+ CPAN::Meta - The distribution metadata for a CPAN dist
+ source-revisions
+ perl-CPAN-Meta/template: 6f3dc87c86cc2bb716f6ba9d6419bbec4c1dd744
+ version
+ 2.120921_2
+
+ perl-CPAN-Meta-Requirements
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-17 10:14 CET
+ filename
+ perl-CPAN-Meta-Requirements-2.122_2.noarch.xbps
+ filename-sha256
+ f5a925e4524f044db29d682cd155d7ce2751f697eb41197dee8e028728aaa970
+ filename-size
+ 10508
+ homepage
+ http://search.cpan.org/dist/CPAN-Meta-Requirements
+ installed_size
+ 22173
+ license
+ GPL-1, Artistic
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ perl-CPAN-Meta-Requirements
+ pkgver
+ perl-CPAN-Meta-Requirements-2.122_2
+ run_depends
+
+ perl>=0
+
+ short_desc
+ CPAN::Meta::Requirements - A set of version requirements for a CPAN dist
+ source-revisions
+ perl-CPAN-Meta-Requirements/template: 6f3dc87c86cc2bb716f6ba9d6419bbec4c1dd744
+ version
+ 2.122_2
+
+ perl-CPAN-Meta-YAML
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-17 10:14 CET
+ filename
+ perl-CPAN-Meta-YAML-0.008_2.noarch.xbps
+ filename-sha256
+ 613ee50f322b22a662b4a870e1d7d85ef6693792a12cc6aa21de049879b3aeb9
+ filename-size
+ 9276
+ homepage
+ http://search.cpan.org/dist/CPAN-Meta-YAML
+ installed_size
+ 20428
+ license
+ GPL-1, Artistic
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ perl-CPAN-Meta-YAML
+ pkgver
+ perl-CPAN-Meta-YAML-0.008_2
+ run_depends
+
+ perl>=0
+
+ short_desc
+ CPAN::Meta::YAML - Read and write a subset of YAML for CPAN Meta files
+ source-revisions
+ perl-CPAN-Meta-YAML/template: 6f3dc87c86cc2bb716f6ba9d6419bbec4c1dd744
+ version
+ 0.008_2
+
+ perl-Crypt-DH
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-28 10:54 CET
+ filename
+ perl-Crypt-DH-0.07_1.noarch.xbps
+ filename-sha256
+ 9eba14f16898da03edf02a985115b43992612a0456bfa5ad1fe98d388c6f934c
+ filename-size
+ 7528
+ homepage
+ http://search.cpan.org/dist/Crypt-DH
+ installed_size
+ 10674
+ license
+ GPL-2
+ long_desc
+
+ Crypt::DH is a Perl implementation of the Diffie-Hellman key exchange
+ system. Diffie-Hellman is an algorithm by which two parties can agree on
+ a shared secret key, known only to them. The secret is negotiated over
+ an insecure network without the two parties ever passing the actual
+ shared secret, or their private keys, between them.
+ maintainer
+ Juan RP <xtraeme@gmail.com
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ perl-Crypt-DH
+ pkgver
+ perl-Crypt-DH-0.07_1
+ run_depends
+
+ perl>=0
+ perl-Math-BigInt-GMP>=0
+
+ short_desc
+ Crypt::DH - Diffie-Hellman key exchange system
+ source-revisions
+ perl-Crypt-DH/template: 33765f6a4a55448203f1116ed8574b5c87483a15
+ version
+ 0.07_1
+
+ perl-Encode-Locale
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-Encode-Locale-1.02_1.noarch.xbps
+ filename-sha256
+ a2b82860b05f7dc67a43abe261e12a9814a34fabffb019697168a68b4845a7eb
+ filename-size
+ 10636
+ homepage
+ http://search.cpan.org/~gaas/Encode-Locale-1.02/lib/Encode/Locale.pm
+ installed_size
+ 20480
+ license
+ GPL-2
+ long_desc
+
+ In many applications it's wise to let Perl use Unicode for the strings it
+ processes. Most of the interfaces Perl has to the outside world is still byte
+ based. Programs therefore needs to decode byte strings that enter the program
+ from the outside and encode them again on the way out.
+
+ The POSIX locale system is used to specify both the language conventions
+ requested by the user and the preferred character set to consume and output.
+ The Encode::Locale module looks up the charset and encoding (called a
+ CODESET in the locale jargon) and arrange for the Encode module to know this
+ encoding under the name locale. It means bytes obtained from the environment
+ can be converted to Unicode strings by calling Encode::encode(locale =>
+ ) and converted back again with Encode::decode(locale => ).
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-Encode-Locale
+ pkgver
+ perl-Encode-Locale-1.02_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ Encode::Locale - Determine the locale encoding
+ version
+ 1.02_1
+
+ perl-ExtUtils-Depends
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 02 July, 2011, 00:20:22 UTC
+ filename
+ perl-ExtUtils-Depends-0.301_2.noarch.xbps
+ filename-sha256
+ e127cbd31a883341cd074bd8a06baeb01aaa732459e9be6cc472405d2e82f071
+ filename-size
+ 11108
+ installed_size
+ 57344
+ long_desc
+
+ This module tries to make it easy to build Perl extensions that use
+ functions and typemaps provided by other perl extensions. This means
+ that a perl extension is treated like a shared library that provides
+ also a C and an XS interface besides the perl one.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ perl-ExtUtils-Depends
+ pkgver
+ perl-ExtUtils-Depends-0.301_2
+ run_depends
+
+ perl>=5.12.0
+
+ short_desc
+ Easily build XS extensions that depend on XS extensions
+ version
+ 0.301_2
+
+ perl-ExtUtils-PkgConfig
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 02 July, 2011, 00:20:28 UTC
+ filename
+ perl-ExtUtils-PkgConfig-1.12_2.noarch.xbps
+ filename-sha256
+ b062e3063b33b6c4afa2d9d683d178fc074937d3bafac89888c04e0c68cda7bc
+ filename-size
+ 8040
+ installed_size
+ 49152
+ long_desc
+
+ The pkg-config program retrieves information about installed libraries,
+ usually for the purposes of compiling against and linking to them.
+
+ ExtUtils::PkgConfig is a very simplistic interface to this utility,
+ intended for use in the Makefile.PL of perl extensions which bind
+ libraries that pkg-config knows. It is really just boilerplate code
+ that you would've written yourself.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ perl-ExtUtils-PkgConfig
+ pkgver
+ perl-ExtUtils-PkgConfig-1.12_2
+ run_depends
+
+ perl>=5.12.0
+ pkg-config>=0
+
+ short_desc
+ Simplistic perl interface to pkg-config
+ version
+ 1.12_2
+
+ perl-File-Listing
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-File-Listing-6.02_1.noarch.xbps
+ filename-sha256
+ 21568c232808a4ad15f614f4093777fe6bde1587433f7d7ea10aec28a96cbd28
+ filename-size
+ 7792
+ homepage
+ http://search.cpan.org/~gaas/File-Listing-6.02/lib/File/Listing.pm
+ installed_size
+ 16384
+ license
+ GPL-2
+ long_desc
+
+ This module exports a single function called parse_dir(), which can be used
+ to parse directory listings.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-File-Listing
+ pkgver
+ perl-File-Listing-6.02_1
+ run_depends
+
+ perl-HTTP-Date>=0
+ perl>=0
+
+ short_desc
+ File::Listing - parse directory listing
+ version
+ 6.02_1
+
+ perl-HTML-Form
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-HTML-Form-6.00_1.noarch.xbps
+ filename-sha256
+ 5cce74ce6e5a8b957c0b9807affb567f28fc588d433b9e5801d842a6259b0861
+ filename-size
+ 20456
+ homepage
+ http://search.cpan.org/~gaas/HTML-Form-6.00/lib/HTML/Form.pm
+ installed_size
+ 49152
+ license
+ GPL-2
+ long_desc
+
+ Objects of the HTML::Form class represents a single HTML FORM tag instance.
+ A form consists of a sequence of inputs that usually have names, and which
+ can take on various values. The state of a form can be tweaked and it can
+ then be asked to provide HTTP::Request objects that can be passed to the
+ request() method of LWP::UserAgent.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-HTML-Form
+ pkgver
+ perl-HTML-Form-6.00_1
+ run_depends
+
+ perl-HTML-Parser>=0
+ perl-URI>=0
+ perl-HTTP-Message>=0
+ perl>=0
+
+ short_desc
+ HTML::Form - Class that represents an HTML form element
+ version
+ 6.00_1
+
+ perl-HTML-Tagset
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-HTML-Tagset-3.20_1.noarch.xbps
+ filename-sha256
+ 0f441320f2622b7b040891b48a7652af4ccda19a91d9e1f8a27e59555157ddd0
+ filename-size
+ 10632
+ homepage
+ http://search.cpan.org/~petdance/HTML-Tagset-3.20/Tagset.pm
+ installed_size
+ 24576
+ long_desc
+
+ This module contains several data tables useful in various kinds of HTML
+ parsing operations.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-HTML-Tagset
+ pkgver
+ perl-HTML-Tagset-3.20_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ HTML::Tagset - data tables useful in parsing HTML
+ version
+ 3.20_1
+
+ perl-HTTP-Cookies
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-HTTP-Cookies-6.00_1.noarch.xbps
+ filename-sha256
+ 597949c890236fc2eae938e760b184fe90221a92e410eb1d113e9f9f62bd4b09
+ filename-size
+ 21152
+ homepage
+ http://search.cpan.org/~gaas/HTTP-Cookies-6.00/lib/HTTP/Cookies.pm
+ installed_size
+ 53248
+ license
+ GPL-2
+ long_desc
+
+ This class is for objects that represent a cookie jar -- that is, a database
+ of all the HTTP cookies that a given LWP::UserAgent object knows about.
+
+ Cookies are a general mechanism which server side connections can use to both
+ store and retrieve information on the client side of the connection. For more
+ information about cookies refer to http://curl.haxx.se/rfc/cookie_spec.html
+ and http://www.cookiecentral.com/. This module also implements the new style
+ cookies described in RFC 2965. The two variants of cookies are supposed to be
+ able to coexist happily.
+
+ Instances of the class HTTP::Cookies are able to store a collection of
+ Set-Cookie2: and Set-Cookie: headers and are able to use this information to
+ initialize Cookie-headers in HTTP::Request objects. The state of a
+ HTTP::Cookies object can be saved in and restored from files.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-HTTP-Cookies
+ pkgver
+ perl-HTTP-Cookies-6.00_1
+ run_depends
+
+ perl-HTTP-Message>=0
+ perl>=0
+
+ short_desc
+ HTTP::Cookies - HTTP cookie jars
+ version
+ 6.00_1
+
+ perl-HTTP-Daemon
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-HTTP-Daemon-6.00_1.noarch.xbps
+ filename-sha256
+ 53e72270600a22a6049546463d6f955505be233306fb82fd595435db19ec2b78
+ filename-size
+ 14776
+ homepage
+ http://search.cpan.org/~gaas/HTTP-Daemon-6.00/lib/HTTP/Daemon.pm
+ installed_size
+ 32768
+ license
+ GPL-2
+ long_desc
+
+ Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a
+ socket for incoming requests. The HTTP::Daemon is a subclass of
+ IO::Socket::INET, so you can perform socket operations directly on it too.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-HTTP-Daemon
+ pkgver
+ perl-HTTP-Daemon-6.00_1
+ run_depends
+
+ perl-HTTP-Message>=0
+ perl-LWP-MediaTypes>=0
+ perl>=0
+
+ short_desc
+ HTTP::Daemon - a simple http server class
+ version
+ 6.00_1
+
+ perl-HTTP-Date
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-HTTP-Date-6.00_1.noarch.xbps
+ filename-sha256
+ 970d38a317ebaeb806d07c8d23b97b12b5d90af82fd62f6712173045a08e9e77
+ filename-size
+ 9040
+ homepage
+ http://search.cpan.org/~gaas/HTTP-Date-6.00/lib/HTTP/Date.pm
+ installed_size
+ 16384
+ license
+ GPL-2
+ long_desc
+
+ This module provides functions that deal the date formats used by the HTTP
+ protocol (and then some more). Only the first two functions, time2str() and
+ str2time(), are exported by default.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-HTTP-Date
+ pkgver
+ perl-HTTP-Date-6.00_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ HTTP::Date - date conversion routines
+ version
+ 6.00_1
+
+ perl-HTTP-Message
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 14 July, 2011, 16:01:02 UTC
+ filename
+ perl-HTTP-Message-6.02_2.noarch.xbps
+ filename-sha256
+ aadb4622efc6add019ae42fd73558b2908b2b960e77ebd12eac96119f1bb3598
+ filename-size
+ 71764
+ homepage
+ http://search.cpan.org/~gaas/HTTP-Message-6.02/lib/HTTP/Message.pm
+ installed_size
+ 192512
+ license
+ GPL-2
+ long_desc
+
+ An HTTP::Message object contains some headers and a content body. The
+ following methods are available:
+
+ $mess = HTTP::Message->new
+ $mess = HTTP::Message->new( $headers )
+ $mess = HTTP::Message->new( $headers, $content )
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ pkgname
+ perl-HTTP-Message
+ pkgver
+ perl-HTTP-Message-6.02_2
+ run_depends
+
+ perl-LWP-MediaTypes>=0
+ perl-Encode-Locale>=0
+ perl-URI>=0
+ perl-HTTP-Date>=0
+ perl-HTML-Parser>=0
+ perl>=5.12.0
+
+ short_desc
+ HTTP::Message - HTTP style message (base class)
+ version
+ 6.02_2
+
+ perl-HTTP-Negotiate
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-HTTP-Negotiate-6.00_1.noarch.xbps
+ filename-sha256
+ bc199286f4a7c8a97ca1a9b043a3ade704963bf1e4e372aedcc1bc8135e5661b
+ filename-size
+ 12024
+ homepage
+ http://search.cpan.org/~gaas/HTTP-Negotiate-6.00/lib/HTTP/Negotiate.pm
+ installed_size
+ 24576
+ license
+ GPL-2
+ long_desc
+
+ This module provides a complete implementation of the HTTP content
+ negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12.
+ Content negotiation allows for the selection of a preferred content
+ representation based upon attributes of the negotiable variants and the value
+ of the various Accept* header fields in the request.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-HTTP-Negotiate
+ pkgver
+ perl-HTTP-Negotiate-6.00_1
+ run_depends
+
+ perl-HTTP-Message>=0
+ perl>=0
+
+ short_desc
+ HTTP::Negotiate - choose a variant to serve
+ version
+ 6.00_1
+
+ perl-IPC-Run
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-IPC-Run-0.90_1.noarch.xbps
+ filename-sha256
+ 25fc86cde7ec2c105b66da878cfe66ab4ce4efbd3bb160c5fcbda1933cb67b37
+ filename-size
+ 105216
+ homepage
+ http://search.cpan.org/dist/IPC-Run/lib/IPC/Run.pm
+ installed_size
+ 290816
+ license
+ GPL-2
+ long_desc
+
+ IPC::Run allows you to run and interact with child processes using files,
+ pipes, and pseudo-ttys. Both system()-style and scripted usages are
+ supported and may be mixed. Likewise, functional and OO API styles are
+ both supported and may be mixed.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-IPC-Run
+ pkgver
+ perl-IPC-Run-0.90_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ system() and background procs w/ piping, redirs, ptys
+ version
+ 0.90_1
+
+ perl-LWP
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-LWP-6.02_1.noarch.xbps
+ filename-sha256
+ 3659a63945eb9bb33a2821f52fe53cc4d2b7a199917abedeab11994fb93cd090
+ filename-size
+ 142056
+ homepage
+ http://search.cpan.org/~gaas/libwww-perl-6.02/lib/LWP.pm
+ installed_size
+ 413696
+ license
+ GPL-2
+ long_desc
+
+ The libwww-perl collection is a set of Perl modules which provides a simple
+ and consistent application programming interface (API) to the World-Wide Web.
+ The main focus of the library is to provide classes and functions that allow
+ you to write WWW clients. The library also contain modules that are of more
+ general use and even classes that help you implement simple HTTP servers.
+
+ Most modules in this library provide an object oriented API. The user agent,
+ requests sent and responses received from the WWW server are all represented
+ by objects. This makes a simple and powerful interface to these services. The
+ interface is easy to extend and customize for your own needs.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-LWP
+ pkgver
+ perl-LWP-6.02_1
+ run_depends
+
+ perl-URI>=0
+ perl-LWP-MediaTypes>=0
+ perl-Encode-Locale>=0
+ perl-HTTP-Message>=0
+ perl-File-Listing>=0
+ perl-HTTP-Negotiate>=0
+ perl-HTTP-Daemon>=0
+ perl-Net-HTTP>=0
+ perl-HTTP-Cookies>=0
+ perl-WWW-RobotRules>=0
+ perl>=0
+
+ short_desc
+ LWP - The World-Wide Web library for Perl (libwww-perl)
+ version
+ 6.02_1
+
+ perl-LWP-MediaTypes
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-LWP-MediaTypes-6.01_1.noarch.xbps
+ filename-sha256
+ c40c59fa89efbcf54c1510bec778253e627df37903734cbe618d75ec9351c50f
+ filename-size
+ 15324
+ homepage
+ http://search.cpan.org/~gaas/LWP-MediaTypes-6.01/lib/LWP/MediaTypes.pm
+ installed_size
+ 45056
+ license
+ GPL-2
+ long_desc
+
+ This module provides functions for handling media (also known as MIME) types
+ and encodings. The mapping from file extensions to media types is defined by
+ the media.types file. If the ~/.media.types file exists it is used instead.
+ For backwards compatibility we will also look for ~/.mime.types.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-LWP-MediaTypes
+ pkgver
+ perl-LWP-MediaTypes-6.01_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ LWP::MediaTypes - guess media type for a file or a URL
+ version
+ 6.01_1
+
+ perl-Net-HTTP
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-Net-HTTP-6.01_1.noarch.xbps
+ filename-sha256
+ e2ffa9f624f182881dfd1fca53d283cf21a2fa2523bd57fbf0f02cb9c2d4056d
+ filename-size
+ 18380
+ homepage
+ http://search.cpan.org/~gaas/Net-HTTP-6.01/lib/Net/HTTP.pm
+ installed_size
+ 49152
+ license
+ GPL-2
+ long_desc
+
+ The Net::HTTP class is a low-level HTTP client. An instance of the
+ Net::HTTP class represents a connection to an HTTP server. The HTTP protocol
+ is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-Net-HTTP
+ pkgver
+ perl-Net-HTTP-6.01_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ Net::HTTP - Low-level HTTP connection (client)
+ version
+ 6.01_1
+
+ perl-Parse-CPAN-Meta
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-17 10:14 CET
+ filename
+ perl-Parse-CPAN-Meta-1.4404_2.noarch.xbps
+ filename-sha256
+ 1792a54e0f55ed692302a942b281096b082082cf05451d622028b58093604735
+ filename-size
+ 7352
+ homepage
+ http://search.cpan.org/dist/Parse-CPAN-Meta
+ installed_size
+ 11177
+ license
+ GPL-1, Artistic
+ maintainer
+ tripledes <tripledes@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ perl-Parse-CPAN-Meta
+ pkgver
+ perl-Parse-CPAN-Meta-1.4404_2
+ run_depends
+
+ perl>=0
+ perl-CPAN-Meta-YAML>=0
+
+ short_desc
+ Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files
+ source-revisions
+ perl-Parse-CPAN-Meta/template: 6f3dc87c86cc2bb716f6ba9d6419bbec4c1dd744
+ version
+ 1.4404_2
+
+ perl-URI
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-URI-1.58_1.noarch.xbps
+ filename-sha256
+ 852d82ec479870938e197270f754ce84b7264c547fcec9e4ce5cf23cef55f1d3
+ filename-size
+ 82020
+ homepage
+ http://search.cpan.org/~gaas/URI-1.58/URI.pm
+ installed_size
+ 344064
+ long_desc
+
+ This package contains the URI.pm module with friends. The module
+ implements the URI class. Objects of this class represent Uniform
+ Resource Identifier (URI) references as specified in RFC 2396.
+
+ URI objects can be used to access and manipulate the various
+ components that make up these strings. There are also methods to
+ combine URIs in various ways.
+
+ The URI class replaces the URI::URL class that used to be distributed
+ with libwww-perl. This package contains an emulation of the old
+ URI::URL interface. The emulated URI::URL implements both the old and
+ the new interface.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-URI
+ pkgver
+ perl-URI-1.58_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ Perl Uniform Resource Identifiers class (URI, RFC 2396)
+ version
+ 1.58_1
+
+ perl-WWW-RobotRules
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ perl-WWW-RobotRules-6.01_1.noarch.xbps
+ filename-sha256
+ f82b813e36006b9faa124332958b2f2ddb4c49c92134cb801bb9251335eb5a25
+ filename-size
+ 12760
+ homepage
+ http://search.cpan.org/~gaas/WWW-RobotRules-6.01/lib/WWW/RobotRules.pm
+ installed_size
+ 24576
+ license
+ GPL-2
+ long_desc
+
+ This module parses /robots.txt files as specified in
+ A Standard for Robot Exclusion, at http://www.robotstxt.org/wc/norobots.html
+ Webmasters can use the /robots.txt file to forbid conforming robots from
+ accessing parts of their web site.
+
+ The parsed files are kept in a WWW::RobotRules object, and this object
+ provides methods to check if access to a given URL is prohibited. The same
+ WWW::RobotRules object can be used for one or more parsed /robots.txt files
+ on any number of hosts.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-WWW-RobotRules
+ pkgver
+ perl-WWW-RobotRules-6.01_1
+ run_depends
+
+ perl-URI>=0
+ perl>=0
+
+ short_desc
+ WWW::RobotRules - database of robots.txt-derived permissions
+ version
+ 6.01_1
+
+ perl-XML-NamespaceSupport
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 02 July, 2011, 00:21:08 UTC
+ filename
+ perl-XML-NamespaceSupport-1.09_2.noarch.xbps
+ filename-sha256
+ 0927b20173d2cb2ff6f4d01d150f0eaefcc2ea771a6e219b4b950a61eca1cc9f
+ filename-size
+ 11220
+ installed_size
+ 65536
+ long_desc
+
+ This module offers a simple to process namespaced XML names (unames)
+ from within any application that may need them. It also helps
+ maintain a prefix to namespace URI map, and provides a number of
+ basic checks.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ perl-XML-NamespaceSupport
+ pkgver
+ perl-XML-NamespaceSupport-1.09_2
+ run_depends
+
+ perl>=5.12.0
+
+ short_desc
+ Perl module to the SAX2 NamespaceSupport class
+ version
+ 1.09_2
+
+ perl-XML-SAX
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 13 October, 2011, 18:34:54 UTC
+ filename
+ perl-XML-SAX-0.99_1.noarch.xbps
+ filename-sha256
+ 3a3a9caa2165361ec057beb5ca6376da413f98d310e9be94d8959ed83b7df534
+ filename-size
+ 48924
+ homepage
+ http://search.cpan.org/dist/XML-SAX
+ installed_size
+ 188416
+ license
+ GPL-2
+ long_desc
+
+ This module provides ways to parse XML documents. It is built on top of
+ XML::SAX::Expat, which is a lower level interface to James Clark's
+ expat library.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ perl-XML-SAX
+ pkgver
+ perl-XML-SAX-0.99_1
+ run_depends
+
+ perl>=5.12.0
+ perl-XML-NamespaceSupport>=0
+ perl-XML-SAX-Base>=0
+
+ short_desc
+ Perl interface to the SAX2 XML Parser
+ version
+ 0.99_1
+
+ perl-XML-SAX-Base
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 04 June, 2012, 15:48:41 UTC
+ filename
+ perl-XML-SAX-Base-1.08_1.noarch.xbps
+ filename-sha256
+ 6629168ef679e3cfb8f3ea9c9aff999bbdcd6c473632b56f288d35f731799027
+ filename-size
+ 25596
+ homepage
+ http://search.cpan.org/dist/XML-SAX-Base
+ installed_size
+ 184320
+ license
+ GPL-2
+ long_desc
+
+ This module has a very simple task - to be a base class for PerlSAX drivers
+ and filters. Its default behaviour is to pass the input directly to the output
+ unchanged. It can be useful to use this module as a base class so you don't
+ have to, for example, implement the characters() callback.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ perl-XML-SAX-Base
+ pkgver
+ perl-XML-SAX-Base-1.08_1
+ run_depends
+
+ perl>=0
+
+ short_desc
+ Perl Base class SAX Drivers and Filters
+ version
+ 1.08_1
+
+ perl-XML-Simple
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 02 July, 2011, 00:21:29 UTC
+ filename
+ perl-XML-Simple-2.18_2.noarch.xbps
+ filename-sha256
+ 43c1c6531cdcb8a887c632e74ec078a43863d939fbe66345189870a5c1fe256c
+ filename-size
+ 61132
+ installed_size
+ 188416
+ long_desc
+
+ This Perl module provides an easy API to read and write XML
+ (especially configuration files).
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ perl-XML-Simple
+ pkgver
+ perl-XML-Simple-2.18_2
+ run_depends
+
+ perl>=5.12.0
+ expat>=2.0.0
+ perl-XML-Parser>=0
+ perl-XML-SAX>=0
+ perl-XML-NamespaceSupport>=0
+ perl-Test-Simple>=0
+
+ short_desc
+ Easy Perl API to read/write XML
+ version
+ 2.18_2
+
+ perl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-24 13:12 CET
+ filename
+ perl-dbg-5.16.2_2.armv6l.xbps
+ filename-sha256
+ 7e51e528df7a1b8f14d2482bf70f5dd079cf5ffa89f7d9432fbac7cdfd6c29d7
+ filename-size
+ 4157244
+ homepage
+ http://www.perl.org
+ installed_size
+ 5060797
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ perl-dbg
+ pkgver
+ perl-dbg-5.16.2_2
+ provides
+
+
+perl-Archive-Extract-0.58_1
+perl-Archive-Tar-1.82_1
+perl-Attribute-Handlers-0.93_1
+perl-AutoLoader-5.72_1
+perl-B-Debug-1.17_1
+perl-B-Deparse-1.14_01_1
+perl-B-Lint-1.14_1
+perl-CGI-3.59_1
+perl-CPAN-1.9800_1
+perl-CPAN-Meta-2.120630_1
+perl-CPAN-Meta-YAML-0.007_1
+perl-CPANPLUS-0.9121_1
+perl-CPANPLUS-Dist-Build-0.62_1
+perl-Carp-1.26_1
+perl-Compress-Raw-Bzip2-2.048_1
+perl-Compress-Raw-Zlib-2.048_1
+perl-DB_File-1.826_1
+perl-Data-Dumper-2.135_06_1
+perl-Devel-PPPort-3.20_1
+perl-Devel-SelfStubber-1.05_1
+perl-Digest-1.17_1
+perl-Digest-MD5-2.51_1
+perl-Digest-SHA-5.71_1
+perl-Dumpvalue-1.17_1
+perl-Encode-2.44_1
+perl-Env-1.03_1
+perl-Exporter-5.66_1
+perl-ExtUtils-CBuilder-0.280206_1
+perl-ExtUtils-Command-1.17_1
+perl-ExtUtils-Constant-0.23_1
+perl-ExtUtils-Install-1.58_1
+perl-ExtUtils-MakeMaker-6.63_02_1
+perl-ExtUtils-Manifest-1.61_1
+perl-ExtUtils-ParseXS-3.16_1
+perl-File-CheckTree-4.41_1
+perl-File-Fetch-0.32_1
+perl-File-Path-2.08_01_1
+perl-File-Temp-0.22_1
+perl-Filter-Simple-0.88_1
+perl-Filter-Util-Call-1.40_1
+perl-Getopt-Long-2.38_1
+perl-HTTP-Tiny-0.017_1
+perl-I18N-Collate-1.02_1
+perl-I18N-LangTags-0.38_1
+perl-IO-1.25_06_1
+perl-IO-Compress-2.048_1
+perl-IO-Zlib-1.10_1
+perl-IPC-Cmd-0.76_1
+perl-IPC-SysV-2.03_1
+perl-JSON-PP-2.27200_1
+perl-Locale-Codes-3.21_1
+perl-Locale-Maketext-1.22_1
+perl-Locale-Maketext-Simple-0.21_1
+perl-Log-Message-0.04_1
+perl-Log-Message-Simple-0.08_1
+perl-MIME-Base64-3.13_1
+perl-Math-BigInt-1.998_1
+perl-Math-BigInt-FastCalc-0.30_1
+perl-Math-BigRat-0.2603_1
+perl-Math-Complex-1.59_1
+perl-Memoize-1.02_1
+perl-Module-Build-0.39_01_1
+perl-Module-CoreList-2.76_1
+perl-Module-Load-0.22_1
+perl-Module-Load-Conditional-0.46_1
+perl-Module-Loaded-0.08_1
+perl-Module-Metadata-1.000009_1
+perl-Module-Pluggable-4.0_1
+perl-NEXT-0.65_1
+perl-Net-Ping-2.38_1
+perl-Object-Accessor-0.42_1
+perl-Package-Constants-0.02_1
+perl-Params-Check-0.32_1
+perl-Parse-CPAN-Meta-1.4402_1
+perl-PathTools-3.39_02_1
+perl-Perl-OSType-1.002_1
+perl-PerlIO-via-QuotedPrint-0.06_1
+perl-Pod-Escapes-1.04_1
+perl-Pod-LaTeX-0.60_1
+perl-Pod-Parser-1.51_1
+perl-Pod-Perldoc-3.17_1
+perl-Pod-Simple-3.20_1
+perl-Safe-2.31_01_1
+perl-Scalar-List-Utils-1.25_1
+perl-Search-Dict-1.04_1
+perl-SelfLoader-1.20_1
+perl-Socket-2.001_1
+perl-Storable-2.34_1
+perl-Sys-Syslog-0.29_1
+perl-Term-ANSIColor-3.01_1
+perl-Term-Cap-1.13_1
+perl-Term-Complete-1.402_1
+perl-Term-ReadLine-1.09_1
+perl-Term-UI-0.30_1
+perl-Test-1.25_02_1
+perl-Test-Harness-3.23_1
+perl-Test-Simple-0.98_1
+perl-Text-Abbrev-1.02_1
+perl-Text-Balanced-2.02_1
+perl-Text-ParseWords-3.27_1
+perl-Text-Soundex-3.03_01_1
+perl-Text-Tabs+Wrap-2009.0305_1
+perl-Thread-Queue-2.12_1
+perl-Thread-Semaphore-2.12_1
+perl-Tie-File-0.98_1
+perl-Tie-RefHash-1.39_1
+perl-Time-HiRes-1.9725_1
+perl-Time-Local-1.2000_1
+perl-Time-Piece-1.20_01_1
+perl-Unicode-Collate-0.89_1
+perl-Unicode-Normalize-1.14_1
+perl-Version-Requirements-0.101022_1
+perl-Win32-0.44_1
+perl-Win32API-File-0.1200_1
+perl-XSLoader-0.16_1
+perl-autodie-2.10_1
+perl-autouse-1.07_1
+perl-base-2.18_1
+perl-bignum-0.29_1
+perl-constant-1.23_1
+perl-encoding-warnings-0.11_1
+perl-if-0.0602_1
+perl-lib-0.63_1
+perl-libnet-1.22_1
+perl-parent-0.225_1
+perl-perlfaq-5.0150039_1
+perl-podlators-2.4.0_1
+perl-threads-1.86_1
+perl-threads-shared-1.40_1
+perl-version-0.99_1
+
+
+ short_desc
+ Practical Extraction and Report Language (debug files)
+ source-revisions
+ perl/files/Configure.cross: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/bitcount.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/config.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/config.sh: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/mg_data.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/arm-linux-gnueabihf/uudmap.h: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/files/perlbin.sh: b3e0438cf68e117824a1f61ca1c1f9830ab05a2d
+perl/files/provides.pl: d4130b561248ef35b183eae800e39497876f448b
+perl/patches/cross-Makefile.SH.patch: 77b6c279b926832422441f98c9e9e462a40563ab
+perl/template: 77b6c279b926832422441f98c9e9e462a40563ab
+ version
+ 5.16.2_2
+
+ physfs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-26 06:24 CEST
+ filename
+ physfs-devel-2.0.3_1.noarch.xbps
+ filename-sha256
+ c9b06d5c2298244b639a878023ff932d70b0b8e621b5f05a624f144ad6b6003a
+ filename-size
+ 19296
+ homepage
+ http://icculus.org/physfs/
+ installed_size
+ 93749
+ license
+ zlib
+ long_desc
+
+ It is intended for use in video games, and the design was somewhat inspired
+ by Quake 3's file subsystem. The programmer defines a write directory on
+ the physical filesystem. No file writing done through the PhysicsFS API can
+ leave that write directory, for security.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ physfs-devel
+ pkgver
+ physfs-devel-2.0.3_1
+ run_depends
+
+ readline-devel>=0
+ zlib-devel>=0
+ physfs-2.0.3_1
+
+ short_desc
+ physfs development files
+ version
+ 2.0.3_1
+
+ pidgin-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-14 16:05 CET
+ filename
+ pidgin-devel-2.10.6_2.noarch.xbps
+ filename-sha256
+ 9a5613fb4fb0a989d1d5167e920740e86a802af27263a6b18e61a2e1ebb420c9
+ filename-size
+ 43964
+ homepage
+ http://pidgin.im/
+ installed_size
+ 250793
+ license
+ GPL-2
+ long_desc
+
+ Pidgin is an easy to use and free chat client used by millions. Connect to
+ AIM, MSN, Yahoo, and more chat networks all at once.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (cd0181a04c1cc54b5f25c33c8bc9cc26814045a4)
+ pkgname
+ pidgin-devel
+ pkgver
+ pidgin-devel-2.10.6_2
+ run_depends
+
+ gtk+-devel>=0
+ libpurple-devel>=2.10.6
+
+ short_desc
+ Multi-protocol instant messaging client -- development files
+ source-revisions
+ pidgin/finch-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/finch.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libgnt.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/libpurple.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/pidgin-devel.template: b390ae17edad3c26195424ee924bef2cd0089d84
+pidgin/template: 07cf69f49a5b4db256613a036cf160aab37fffc8
+ version
+ 2.10.6_2
+
+ pixman-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 12:06 CET
+ filename
+ pixman-devel-0.28.2_2.noarch.xbps
+ filename-sha256
+ 508fa30f56d8927e6296553ec90c6f03443294a2bc28e9886fb0608d2f337f38
+ filename-size
+ 8652
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 44672
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ pixman-devel
+ pkgver
+ pixman-devel-0.28.2_2
+ run_depends
+
+ pixman-0.28.2_2
+
+ short_desc
+ Library of low-level pixel manipulation routines -- development files
+ source-revisions
+ pixman/pixman-devel.template: 1b7007935f49b80eafdbd92b2fbd6dc77b2e93a7
+pixman/template: 1b7007935f49b80eafdbd92b2fbd6dc77b2e93a7
+ version
+ 0.28.2_2
+
+ pkg-config
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 13:40 CET
+ filename
+ pkg-config-0.28_2.armv6l.xbps
+ filename-sha256
+ f76bccbf0b9483a983b115c6f8d313732bec20fac9a687aef459aab77242d9c1
+ filename-size
+ 135676
+ homepage
+ http://pkgconfig.freedesktop.org/wiki/
+ installed_size
+ 477418
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (0333a208e78d183fbbfc0027a226d3756a4637b8)
+ pkgname
+ pkg-config
+ pkgver
+ pkg-config-0.28_2
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ System for managing library compile/link flags
+ version
+ 0.28_2
+
+ pkg-config-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 13:40 CET
+ filename
+ pkg-config-dbg-0.28_2.armv6l.xbps
+ filename-sha256
+ c9d7b7c9fdf93d9afb9e9a81479a06d88d0564b462e2d1f521b43362958f498c
+ filename-size
+ 376136
+ homepage
+ http://pkgconfig.freedesktop.org/wiki/
+ installed_size
+ 448519
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (0333a208e78d183fbbfc0027a226d3756a4637b8)
+ pkgname
+ pkg-config-dbg
+ pkgver
+ pkg-config-dbg-0.28_2
+ short_desc
+ System for managing library compile/link flags (debug files)
+ version
+ 0.28_2
+
+ polkit-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 10:11 CET
+ filename
+ polkit-devel-0.110_1.noarch.xbps
+ filename-sha256
+ 44422393cce347e3465fc891ec062bb3e9fe635945e6c5cf62335a109845b267
+ filename-size
+ 22312
+ homepage
+ http://www.freedesktop.org/wiki/Software/polkit
+ installed_size
+ 258746
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ polkit-devel
+ pkgver
+ polkit-devel-0.110_1
+ replaces
+
+ PolicyKit-devel>=0
+
+ run_depends
+
+ glib-devel>=0
+ polkit>=0.110
+
+ short_desc
+ Authorization Toolkit -- development files
+ source-revisions
+ polkit/files/polkit-1.pam: 4ba46172e81bd4fd5dbc3ef479280984f8a5b36b
+polkit/files/polkit.tmpfiles: 9a7a03953cf9c174b5ced86a9ac8d2ed5288b5f1
+polkit/polkit-devel.template: 792b63490cc3521f68ac064b7982a2c0894a7abf
+polkit/template: 7c43361e86d278db124d51a7cab828047b2cfd9b
+ version
+ 0.110_1
+
+ polkit-qt-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-04 16:20 UTC
+ filename
+ polkit-qt-devel-0.103.0_2.noarch.xbps
+ filename-sha256
+ 5da79a27a5156f1ac83728b891c15533f2cec0aca378681983de0417cbdc9750
+ filename-size
+ 16604
+ homepage
+ https://projects.kde.org/projects/kdesupport/polkit-qt-1
+ installed_size
+ 180224
+ license
+ LGPL-2.1
+ long_desc
+
+ PolicyKit is an application-level toolkit for defining and handling the
+ policy that allows unprivileged processes to speak to privileged processes.
+
+ It is a framework for centralizing the decision making process with respect
+ to granting access to privileged operations (like calling the HAL Mount()
+ method) for unprivileged (desktop) applications.
+
+ polkit-qt provides convenience classes and methods for Qt/KDE applications
+ that want to use PolicyKit.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ polkit-qt-devel
+ pkgver
+ polkit-qt-devel-0.103.0_2
+ run_depends
+
+ qt-devel>=0
+ polkit-devel>=0
+ polkit-qt>=0.103.0
+
+ short_desc
+ Qt-style PolicyKit API -- development files
+ version
+ 0.103.0_2
+
+ polysh
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-25 18:16 CET
+ filename
+ polysh-0.4_2.noarch.xbps
+ filename-sha256
+ 123f964e0c0e271478eed615de9b64d4fc368ba653daac5e38a196a4ce64ebd3
+ filename-size
+ 27852
+ homepage
+ http://guichaz.free.fr/polysh
+ installed_size
+ 106663
+ license
+ GPL-3
+ long_desc
+
+ Polysh is a tool to aggregate several remote shells into one. It is used to
+ launch an interactive remote shell on many machines at once.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ polysh
+ pkgver
+ polysh-0.4_2
+ run_depends
+
+ python>=2.7<3.0
+ openssh>=0
+
+ short_desc
+ Execute a command in multiple remote shells at once
+ source-revisions
+ polysh/template: 0a4e7bf2779e84f49630f170f99de4b918c88044
+ version
+ 0.4_2
+
+ poppler-data
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 12:51:38 UTC
+ filename
+ poppler-data-0.4.5_1.noarch.xbps
+ filename-sha256
+ a916ebf9493b429b71088c7c78be13f3c164a8c93eed2e94867209cf4f7dd6a0
+ filename-size
+ 1450140
+ homepage
+ http://poppler.freedesktop.org/
+ installed_size
+ 12464128
+ license
+ MIT, GPL-2, Adobe (BSD alike)
+ long_desc
+
+ This package consists of encoding files for use with poppler. The
+ encoding files are optional and poppler will automatically read them
+ if they are present. When installed, the encoding files enables
+ poppler to correctly render CJK and Cyrrilic properly. While poppler
+ is licensed under the GPL, these encoding files have different license,
+ and thus distributed separately.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ poppler-data
+ pkgver
+ poppler-data-0.4.5_1
+ short_desc
+ Encoding data for the poppler PDF rendering library
+ version
+ 0.4.5_1
+
+ poppler-qt4-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 10:42 CEST
+ filename
+ poppler-qt4-devel-0.20.2_2.noarch.xbps
+ filename-sha256
+ 682210bbd850aed768aa3e6570e30415eb6327d331ffd52f2e73a3e082c97270
+ filename-size
+ 23412
+ homepage
+ http://poppler.freedesktop.org
+ installed_size
+ 100604
+ license
+ GPL-2
+ long_desc
+
+ This is poppler, a PDF rendering library. It is a fork of the xpdf
+ 3.0 PDF viewer developed by Derek Noonburg of Glyph and Cog, LLC.
+
+ Poppler provides PDF rendering functionality as a shared library,
+ to centralize the maintenence effort and to reduce duplicated
+ effort. And the poppler developers would like to move libpoppler
+ forward in a number of areas that doesn't fit within the goals of xpdf.
+
+ This package contains the poppler QT 4 bindings.
+
+ This package contains development files for QT 4 bindings.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ poppler-qt4-devel
+ pkgver
+ poppler-qt4-devel-0.20.2_2
+ run_depends
+
+ poppler-qt4-0.20.2_2
+
+ short_desc
+ poppler-qt4 QT 4 bindings (development files)
+ version
+ 0.20.2_2
+
+ popt
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 17:21 CET
+ filename
+ popt-1.16_3.armv6l.xbps
+ filename-sha256
+ 9d58db303afe16c1061c441d5884aaa5bbf35b54087dacc5fdfd4d0757b692e7
+ filename-size
+ 32808
+ homepage
+ http://rpm5.org
+ installed_size
+ 101404
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ popt
+ pkgver
+ popt-1.16_3
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ Command line option parsing library
+ source-revisions
+ popt/popt-devel.template: c4e47840f0e90cbccb44997d51dfc7b080c3750d
+popt/template: c4e47840f0e90cbccb44997d51dfc7b080c3750d
+ version
+ 1.16_3
+
+ popt-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 17:21 CET
+ filename
+ popt-dbg-1.16_3.armv6l.xbps
+ filename-sha256
+ 75f7dec827955530609795832ebfecc8b36595ae9a71744f159830a26e4c7d9b
+ filename-size
+ 50628
+ homepage
+ http://rpm5.org
+ installed_size
+ 57920
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ popt-dbg
+ pkgver
+ popt-dbg-1.16_3
+ short_desc
+ Command line option parsing library (debug files)
+ source-revisions
+ popt/popt-devel.template: c4e47840f0e90cbccb44997d51dfc7b080c3750d
+popt/template: c4e47840f0e90cbccb44997d51dfc7b080c3750d
+ version
+ 1.16_3
+
+ popt-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 17:20 CET
+ filename
+ popt-devel-1.16_3.noarch.xbps
+ filename-sha256
+ 12387b52c2618ee58498909c202b1dcd7ce1d3e8b40949f5c9bef171850e7318
+ filename-size
+ 17112
+ homepage
+ http://rpm5.org
+ installed_size
+ 33381
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ popt-devel
+ pkgver
+ popt-devel-1.16_3
+ run_depends
+
+ popt>=1.16
+
+ short_desc
+ Command line option parsing library -- development files
+ source-revisions
+ popt/popt-devel.template: c4e47840f0e90cbccb44997d51dfc7b080c3750d
+popt/template: c4e47840f0e90cbccb44997d51dfc7b080c3750d
+ version
+ 1.16_3
+
+ postgresql-doc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-07 11:57 CET
+ filename
+ postgresql-doc-8.4.15_1.noarch.xbps
+ filename-sha256
+ 8dc2637ca9347e485486221cc444357627cfe61568203f768afd91be584c06e6
+ filename-size
+ 1339768
+ homepage
+ http://www.postgresql.org
+ installed_size
+ 10115122
+ license
+ BSD
+ long_desc
+
+ PostgreSQL is a powerful, open source object-relational database system.
+ It has more than 15 years of active development and a proven architecture
+ that has earned it a strong reputation for reliability, data integrity,
+ and correctness.
+
+ This package contains all README files, user manual, and examples for
+ PostgreSQL 8.4. The manual is in HTML format.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (806312002cc7bb78b97a256dac03acd44259db0d)
+ pkgname
+ postgresql-doc
+ pkgver
+ postgresql-doc-8.4.15_1
+ short_desc
+ postgresql documentation
+ source-revisions
+ postgresql/INSTALL: f151ae9f47ea9b25c17c5d2bef29be89689b860f
+postgresql/files/postgresql-initdb: f151ae9f47ea9b25c17c5d2bef29be89689b860f
+postgresql/files/postgresql.confd: f151ae9f47ea9b25c17c5d2bef29be89689b860f
+postgresql/files/postgresql.pam: e791f83899ca8924a6e0048109226a38e4f53355
+postgresql/files/postgresql.service: f151ae9f47ea9b25c17c5d2bef29be89689b860f
+postgresql/postgresql-client.template: f151ae9f47ea9b25c17c5d2bef29be89689b860f
+postgresql/postgresql-doc.template: 888834d9c545615cb53a4f414596fb83384bbc8a
+postgresql/postgresql-libs-devel.template: f0115a0052eb3d1c745a668b1e7b92654c9cfbc6
+postgresql/postgresql-libs.template: f151ae9f47ea9b25c17c5d2bef29be89689b860f
+postgresql/postgresql-plperl.template: f0115a0052eb3d1c745a668b1e7b92654c9cfbc6
+postgresql/postgresql-plpython.template: f0115a0052eb3d1c745a668b1e7b92654c9cfbc6
+postgresql/postgresql-pltcl.template: f0115a0052eb3d1c745a668b1e7b92654c9cfbc6
+postgresql/template: 6c87213d0007d292c03a6d4b4a4b51cc86cc078a
+ version
+ 8.4.15_1
+
+ ppl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:12 CET
+ filename
+ ppl-1.0_2.armv6l.xbps
+ filename-sha256
+ a55dd1342966cfc4df74ef927bde29fc42ed171463d490adfde09e30f9601dae
+ filename-size
+ 847812
+ homepage
+ http://bugseng.com/products/ppl
+ installed_size
+ 3833500
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ ppl
+ pkgver
+ ppl-1.0_2
+ run_depends
+
+ gmp>=5.0.1_1
+ libstdc++>=4.4.0_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The Parma Polyhedra Library
+ source-revisions
+ ppl/patches/gmp-5.1-compat.patch: df6e5f2fec69335d6d292fe8a8425a7c9b75d48e
+ppl/ppl-devel.template: df6e5f2fec69335d6d292fe8a8425a7c9b75d48e
+ppl/template: df6e5f2fec69335d6d292fe8a8425a7c9b75d48e
+ version
+ 1.0_2
+
+ ppl-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 14:12 CET
+ filename
+ ppl-devel-1.0_2.armv6l.xbps
+ filename-sha256
+ 62a5e9ab90174fe58fd9b0df75b9c2dd18fe80b7bf09c039d3a3e4818eb16028
+ filename-size
+ 1584580
+ homepage
+ http://bugseng.com/products/ppl
+ installed_size
+ 14003729
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e4dd2dcd3f213a4f807b8ef99c6f8e613bd29761)
+ pkgname
+ ppl-devel
+ pkgver
+ ppl-devel-1.0_2
+ run_depends
+
+ ppl>=1.0_1
+ gmp>=5.0.1_1
+ libstdc++>=4.4.0_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The Parma Polyhedra Library -- development files
+ source-revisions
+ ppl/patches/gmp-5.1-compat.patch: df6e5f2fec69335d6d292fe8a8425a7c9b75d48e
+ppl/ppl-devel.template: df6e5f2fec69335d6d292fe8a8425a7c9b75d48e
+ppl/template: df6e5f2fec69335d6d292fe8a8425a7c9b75d48e
+ version
+ 1.0_2
+
+ ppp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Wednesday 23 May, 2012, 07:33:30 UTC
+ filename
+ ppp-devel-2.4.5_2.noarch.xbps
+ filename-sha256
+ 7f2e61b69946faa3962059f2543082fdb5c0c6db676dbfc2e01c35415a89652a
+ filename-size
+ 27752
+ installed_size
+ 159744
+ long_desc
+
+ This packages provides a daemon which implements the PPP protocol for
+ dial-up networking.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-27
+ pkgname
+ ppp-devel
+ pkgver
+ ppp-devel-2.4.5_2
+ run_depends
+
+ libpcap-devel>=1.1.1
+
+ short_desc
+ ppp (development files)
+ version
+ 2.4.5_2
+
+ printproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ printproto-1.0.4_1.noarch.xbps
+ filename-sha256
+ 0e558f0d5db1c26d86bb0d429018e6da68dab58bf0a6d958c9c4a4a339302fb8
+ filename-size
+ 8792
+ installed_size
+ 45056
+ long_desc
+
+ Definitions needed by the X Print server, library, and clients.
+
+ From the modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ printproto
+ pkgver
+ printproto-1.0.4_1
+ short_desc
+ Print extension headers from X.org
+ version
+ 1.0.4_1
+
+ procps-ng
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 12:00 CET
+ conf_files
+
+ /etc/sysctl.conf
+
+ conflicts
+
+ coreutils<8.21_3
+
+ filename
+ procps-ng-3.3.5_4.armv6l.xbps
+ filename-sha256
+ d5c9ef31b7586f7cbd2cca790876ebea7ab6658145758cd306c7a9a80ad88bcf
+ filename-size
+ 169104
+ homepage
+ http://gitorious.org/procps
+ installed_size
+ 411910
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ procps-ng
+ pkgver
+ procps-ng-3.3.5_4
+ provides
+
+ procps-3.3.5
+
+ replaces
+
+ procps>=0
+
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+ ncurses-libs>=5.8_1
+
+ short_desc
+ Utilities for monitoring your system and its processes
+ source-revisions
+ procps-ng/files/sysctl.conf: f0921edb1a8f869378983db93fc3de5f78bac0e3
+procps-ng/template: 9d1c88c745ba7784eb4943605dac488c3bd2a52c
+ version
+ 3.3.5_4
+
+ procps-ng-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 12:00 CET
+ filename
+ procps-ng-dbg-3.3.5_4.armv6l.xbps
+ filename-sha256
+ 403327b82288f34730343f52f66c1d04fd5a0bc1e53291c5070f303cfaf0c820
+ filename-size
+ 322372
+ homepage
+ http://gitorious.org/procps
+ installed_size
+ 468600
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ procps-ng-dbg
+ pkgver
+ procps-ng-dbg-3.3.5_4
+ short_desc
+ Utilities for monitoring your system and its processes (debug files)
+ source-revisions
+ procps-ng/files/sysctl.conf: f0921edb1a8f869378983db93fc3de5f78bac0e3
+procps-ng/template: 9d1c88c745ba7784eb4943605dac488c3bd2a52c
+ version
+ 3.3.5_4
+
+ proplib
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-05 04:23 CET
+ filename
+ proplib-0.6.3_1.armv6l.xbps
+ filename-sha256
+ 11cb376656e1c3171ba45146fd07f139fb165b39fceeac57b5dd98ff408c3f62
+ filename-size
+ 21888
+ homepage
+ http://code.google.com/p/portableproplib
+ installed_size
+ 69372
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (27ec4fc7db34dfb06b9860d70c7863c9318ce69f)
+ pkgname
+ proplib
+ pkgver
+ proplib-0.6.3_1
+ run_depends
+
+ zlib>=1.2.3_1
+ glibc>=2.17_1
+
+ short_desc
+ Portable Property container object library
+ version
+ 0.6.3_1
+
+ proplib-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-05 04:23 CET
+ filename
+ proplib-dbg-0.6.3_1.armv6l.xbps
+ filename-sha256
+ 06e00d470820be944bafa89bf342360c3915de2944b1307bb9de50b18881b027
+ filename-size
+ 81868
+ homepage
+ http://code.google.com/p/portableproplib
+ installed_size
+ 103689
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (27ec4fc7db34dfb06b9860d70c7863c9318ce69f)
+ pkgname
+ proplib-dbg
+ pkgver
+ proplib-dbg-0.6.3_1
+ short_desc
+ Portable Property container object library (debug files)
+ version
+ 0.6.3_1
+
+ proplib-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-05 04:23 CET
+ filename
+ proplib-devel-0.6.3_1.armv6l.xbps
+ filename-sha256
+ 73400bf9b8219193bd3dbb03ecf2363fba99dcda8b4ec2bb6507737f5422f15b
+ filename-size
+ 52356
+ homepage
+ http://code.google.com/p/portableproplib
+ installed_size
+ 162495
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (27ec4fc7db34dfb06b9860d70c7863c9318ce69f)
+ pkgname
+ proplib-devel
+ pkgver
+ proplib-devel-0.6.3_1
+ run_depends
+
+ zlib-devel>=0
+ proplib-0.6.3_1
+
+ short_desc
+ Portable Property container object library - development files
+ version
+ 0.6.3_1
+
+ psmisc
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:48 CET
+ filename
+ psmisc-22.19_1.armv6l.xbps
+ filename-sha256
+ 5debe401100a1c9ac3ca2aa51eee0c44d2a7ccb150d417efa9f52287245ad925
+ filename-size
+ 84384
+ homepage
+ http://psmisc.sourceforge.net/index.html
+ installed_size
+ 365339
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ psmisc
+ pkgver
+ psmisc-22.19_1
+ run_depends
+
+ ncurses-libs>=5.8_1
+ glibc>=2.17_1
+
+ short_desc
+ Small set of utilities that use the linux proc filesystem
+ source-revisions
+ psmisc/template: 30d11a12c1dbe366f9c7305f83bf861f93a65289
+ version
+ 22.19_1
+
+ psmisc-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:48 CET
+ filename
+ psmisc-dbg-22.19_1.armv6l.xbps
+ filename-sha256
+ 4e899adaf971318cc3108db26f8bd5a65e7bac4d753e952fbee1f4d42388d367
+ filename-size
+ 79816
+ homepage
+ http://psmisc.sourceforge.net/index.html
+ installed_size
+ 110783
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ psmisc-dbg
+ pkgver
+ psmisc-dbg-22.19_1
+ short_desc
+ Small set of utilities that use the linux proc filesystem (debug files)
+ source-revisions
+ psmisc/template: 30d11a12c1dbe366f9c7305f83bf861f93a65289
+ version
+ 22.19_1
+
+ pulseaudio-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-18 11:46 CET
+ filename
+ pulseaudio-devel-3.0_2.noarch.xbps
+ filename-sha256
+ 75b758cc19b81f830601609b487f11905d5f4d8bceb1e453edb4d5fcfc0a5697
+ filename-size
+ 62056
+ homepage
+ http://www.freedesktop.org/wiki/Software/PulseAudio
+ installed_size
+ 360089
+ license
+ LGPL-2
+ long_desc
+
+ PulseAudio, previously known as Polypaudio, is a sound server for POSIX and
+ WIN32 systems. It is a drop in replacement for the ESD sound server with much
+ better latency, mixing/re-sampling quality and overall architecture.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (4c5968c23bbc711769f5cae250f448618d8ef33f)
+ pkgname
+ pulseaudio-devel
+ pkgver
+ pulseaudio-devel-3.0_2
+ run_depends
+
+ libasyncns-devel>=0
+ dbus-devel>=0
+ libXtst-devel>=0
+ libpulseaudio-3.0_2
+
+ short_desc
+ A featureful, general-purpose sound server - development files
+ source-revisions
+ pulseaudio/INSTALL: 9c6745e738ca09261b14d2eac4587073985939ed
+pulseaudio/files/pulseaudio.xinit: ffde65e31f1381a03e3ba0acf7f1c348214e5f60
+pulseaudio/libpulseaudio.template: 9b1d424b16dd638c0d335e1ae63962b6f6fa6a91
+pulseaudio/pulseaudio-devel.template: 58f62ecd0af941ffded712c15cf991cf02912ae1
+pulseaudio/template: 9c6745e738ca09261b14d2eac4587073985939ed
+ version
+ 3.0_2
+
+ pyatspi
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ pyatspi-2.3.92_1.noarch.xbps
+ filename-sha256
+ 4202e2437afe7aac8df54df83e39683b977451d9565e14306e7fff785c1d28e9
+ filename-size
+ 27272
+ homepage
+ http://www.gnome.org
+ installed_size
+ 180224
+ license
+ GPL-2
+ long_desc
+
+ This packages the Python language bindings for AT-SPI.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ pyatspi
+ pkgver
+ pyatspi-2.3.92_1
+ run_depends
+
+ at-spi2-core>=0
+ pygobject>=0
+
+ short_desc
+ Python bindings for AT-SPI
+ version
+ 2.3.92_1
+
+ pycrypto
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:55 CET
+ filename
+ pycrypto-2.6_1.armv6l.xbps
+ filename-sha256
+ 0374768b466d2af9401e79b61c5d3c01c3186b459ab00de7b35a350d62433226
+ filename-size
+ 232888
+ homepage
+ https://www.dlitz.net/software/pycrypto/
+ installed_size
+ 1211630
+ license
+ PSF, Public domain
+ long_desc
+
+ The Python cryptography toolkit is intended to provide a reliable and stable
+ base for writing Python programs that require cryptographic functions.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ pycrypto
+ pkgver
+ pycrypto-2.6_1
+ run_depends
+
+ gmp>=5.0.1_1
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ The Python Cryptography Toolkit
+ source-revisions
+ pycrypto/template: 63320550993aa0d2714c5c874b67bc5413a67496
+ version
+ 2.6_1
+
+ pycrypto-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:55 CET
+ filename
+ pycrypto-dbg-2.6_1.armv6l.xbps
+ filename-sha256
+ 4d47bb07eb911abc4f3c050a1a5eb32629402e95b1f18415dad072fd09b759d3
+ filename-size
+ 14364
+ homepage
+ https://www.dlitz.net/software/pycrypto/
+ installed_size
+ 106974
+ license
+ PSF, Public domain
+ long_desc
+
+ The Python cryptography toolkit is intended to provide a reliable and stable
+ base for writing Python programs that require cryptographic functions.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ pycrypto-dbg
+ pkgver
+ pycrypto-dbg-2.6_1
+ short_desc
+ The Python Cryptography Toolkit (debug files)
+ source-revisions
+ pycrypto/template: 63320550993aa0d2714c5c874b67bc5413a67496
+ version
+ 2.6_1
+
+ pygobject-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 21:41 CET
+ filename
+ pygobject-devel-3.4.2_1.noarch.xbps
+ filename-sha256
+ 3d29a4eb14fdb48ad2b5b1fe957367754d5bf4af339abf3702190f11a1662a8d
+ filename-size
+ 6504
+ homepage
+ http://www.pygtk.org/
+ installed_size
+ 25487
+ license
+ LGPL-2.1
+ long_desc
+
+ Pygobject is a set of Python bindings for the GLib's GObject library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ pygobject-devel
+ pkgver
+ pygobject-devel-3.4.2_1
+ run_depends
+
+ libffi-devel>=0
+ glib-devel>=0
+ libgirepository-devel>=0
+ pycairo-devel>=0
+ pygobject-3.4.2_1
+
+ short_desc
+ pygobject development files
+ version
+ 3.4.2_1
+
+ pyopenssl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:58 CET
+ filename
+ pyopenssl-0.11_3.armv6l.xbps
+ filename-sha256
+ 989124937de57e53696ce01cb35d55787ea2d44564ee7229cc71a17a6394761d
+ filename-size
+ 63496
+ homepage
+ https://launchpad.net/pyopenssl
+ installed_size
+ 285293
+ license
+ Apache-2.0
+ long_desc
+
+ Includes: SSL Context objects, SSL Connection objects, using Python sockets
+ as transport layer. The Connection object wraps all the socket methods and
+ can therefore be used interchangeably.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ pyopenssl
+ pkgver
+ pyopenssl-0.11_3
+ run_depends
+
+ libssl>=1.0.0_1
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ Python interface to the OpenSSL library
+ source-revisions
+ pyopenssl/template: 7b27b37fc8dacfd400fac2876b5c8095adac1d7d
+ version
+ 0.11_3
+
+ pyopenssl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:58 CET
+ filename
+ pyopenssl-dbg-0.11_3.armv6l.xbps
+ filename-sha256
+ 78ec6fa7ac135f3b0c6ce7b63f1c42920a5554490a1d7114c77445ff5ca6201e
+ filename-size
+ 173200
+ homepage
+ https://launchpad.net/pyopenssl
+ installed_size
+ 215826
+ license
+ Apache-2.0
+ long_desc
+
+ Includes: SSL Context objects, SSL Connection objects, using Python sockets
+ as transport layer. The Connection object wraps all the socket methods and
+ can therefore be used interchangeably.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ pyopenssl-dbg
+ pkgver
+ pyopenssl-dbg-0.11_3
+ short_desc
+ Python interface to the OpenSSL library (debug files)
+ source-revisions
+ pyopenssl/template: 7b27b37fc8dacfd400fac2876b5c8095adac1d7d
+ version
+ 0.11_3
+
+ python
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 04:29 CET
+ filename
+ python-2.7.3_3.armv6l.xbps
+ filename-sha256
+ a79a3b5743cbdc50551da8e40a237b8a59b02e753c0cc20ba3e36460b92bbaa7
+ filename-size
+ 5295608
+ homepage
+ http://www.python.org
+ installed_size
+ 29945862
+ license
+ PSF
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ python
+ pkgver
+ python-2.7.3_3
+ run_depends
+
+ glibc>=2.8_1
+ ncurses-libs>=5.8_1
+ libgcc>=4.4.0_1
+ expat>=2.0.0_1
+ bzip2>=1.0.5_1
+ sqlite>=3.6.13_1
+ libssl>=1.0.0_1
+ zlib>=1.2.3_1
+ libffi>=3.0.8_1
+ readline>=6.0_1
+ libdb>=4.8.24_1
+ gdbm>=1.10_1_1
+
+ short_desc
+ Interpreted, interactive, object-oriented programming language
+ source-revisions
+ python/python-devel.template: 4f0b60fb52af421a241d5794d95041ea24a43519
+python/template: 4f0b60fb52af421a241d5794d95041ea24a43519
+ version
+ 2.7.3_3
+
+ python-MarkupSafe
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:13 CET
+ filename
+ python-MarkupSafe-0.15_1.armv6l.xbps
+ filename-sha256
+ 238cf92b5ecca09ac1b51ad56b382f56d3e2d6a76fe65166d58a397b005c4c4a
+ filename-size
+ 11852
+ homepage
+ http://pypi.python.org/pypi/MarkupSafe
+ installed_size
+ 31400
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ python-MarkupSafe
+ pkgver
+ python-MarkupSafe-0.15_1
+ run_depends
+
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ Implements a XML/HTML/XHTML Markup safe string for Python
+ source-revisions
+ python-MarkupSafe/template: 22b7779d7f7b8dbbe1930f2a1de9680380876a7d
+ version
+ 0.15_1
+
+ python-MarkupSafe-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:13 CET
+ filename
+ python-MarkupSafe-dbg-0.15_1.armv6l.xbps
+ filename-sha256
+ c950f4278c9cfde2590e81ba862937b8618fe13a576617f376d6a877212b0dfe
+ filename-size
+ 8772
+ homepage
+ http://pypi.python.org/pypi/MarkupSafe
+ installed_size
+ 11358
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ python-MarkupSafe-dbg
+ pkgver
+ python-MarkupSafe-dbg-0.15_1
+ short_desc
+ Implements a XML/HTML/XHTML Markup safe string for Python (debug files)
+ source-revisions
+ python-MarkupSafe/template: 22b7779d7f7b8dbbe1930f2a1de9680380876a7d
+ version
+ 0.15_1
+
+ python-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 04:30 CET
+ filename
+ python-dbg-2.7.3_3.armv6l.xbps
+ filename-sha256
+ 4642e2bde69a0dc032ca58f8b8835f94ce1d43ebb56fd7aa460ad76283ffb6e2
+ filename-size
+ 3245628
+ homepage
+ http://www.python.org
+ installed_size
+ 3964632
+ license
+ PSF
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ python-dbg
+ pkgver
+ python-dbg-2.7.3_3
+ short_desc
+ Interpreted, interactive, object-oriented programming language (debug files)
+ source-revisions
+ python/python-devel.template: 4f0b60fb52af421a241d5794d95041ea24a43519
+python/template: 4f0b60fb52af421a241d5794d95041ea24a43519
+ version
+ 2.7.3_3
+
+ python-decorator
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 28 June, 2012, 10:19:58 UTC
+ filename
+ python-decorator-3.3.2_1.noarch.xbps
+ filename-sha256
+ 5b3f65b590d02dc81f0116c186a3d4be29c0b34625bd3f5423ea216b908027b1
+ filename-size
+ 6000
+ homepage
+ http://pypi.python.org/pypi/decorator
+ installed_size
+ 16384
+ license
+ BSD
+ long_desc
+
+ This package contains python-decorator: a Python Decorator module.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ python-decorator
+ pkgver
+ python-decorator-3.3.2_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ Python Decorator module
+ version
+ 3.3.2_1
+
+ python-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 04:29 CET
+ filename
+ python-devel-2.7.3_3.armv6l.xbps
+ filename-sha256
+ b86aa40e85a57e0785e46e83f8e0141ff25a9778dc4bc9e1769ed1b81f6fc189
+ filename-size
+ 99480
+ homepage
+ http://www.python.org
+ installed_size
+ 427489
+ license
+ PSF
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ python-devel
+ pkgver
+ python-devel-2.7.3_3
+ run_depends
+
+ libffi-devel>=0
+ zlib-devel>=0
+ readline-devel>=0
+ bzip2-devel>=0
+ gdbm-devel>=0
+ openssl-devel>=0
+ expat-devel>=0
+ db-devel>=0
+ ncurses-devel>=0
+ sqlite-devel>=0
+ python>=2.7.3
+
+ short_desc
+ Python development files
+ source-revisions
+ python/python-devel.template: 4f0b60fb52af421a241d5794d95041ea24a43519
+python/template: 4f0b60fb52af421a241d5794d95041ea24a43519
+ version
+ 2.7.3_3
+
+ python-distribute
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-19 13:02 CEST
+ filename
+ python-distribute-0.6.28_1.noarch.xbps
+ filename-sha256
+ 3bb928fdce103587efe481cec64ddfcd71a32c3609087295e7e32eef8a42f885
+ filename-size
+ 207216
+ homepage
+ http://pypi.python.org/pypi/distribute
+ installed_size
+ 1150976
+ license
+ PSF
+ long_desc
+
+ Extensions to the python-distutils for large or complex distributions.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ python-distribute
+ pkgver
+ python-distribute-0.6.28_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ A collection of extensions to the Python distutils
+ version
+ 0.6.28_1
+
+ python-distutils-extra
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-28 12:20 CEST
+ filename
+ python-distutils-extra-2.37_1.noarch.xbps
+ filename-sha256
+ 16beee2c8739c63f9a23a7a932ae1de64b73ba22b060d2413dcd4dda94e5ce1f
+ filename-size
+ 13072
+ homepage
+ https://launchpad.net/python-distutils-extra
+ installed_size
+ 118784
+ license
+ GPL-2
+ long_desc
+
+ Enhancements to Python's distutils.
+
+ Enables you to easily integrate gettext support, themed icons and
+ scrollkeeper-based documentation into Python's distutils.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ python-distutils-extra
+ pkgver
+ python-distutils-extra-2.37_1
+ run_depends
+
+ python>=0
+ python-distribute>=0
+
+ short_desc
+ Enhancements to the Python build system
+ version
+ 2.37_1
+
+ python-docutils
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 15:16 CET
+ filename
+ python-docutils-0.10_1.noarch.xbps
+ filename-sha256
+ b4c8122ddcd0922792c9c79505556c400685477a2ae9bc2610185e0f64937ada
+ filename-size
+ 319820
+ homepage
+ http://docutils.sourceforge.net
+ installed_size
+ 1735630
+ license
+ GPL-3
+ maintainer
+ pancake <pancake@nopcode.org>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ python-docutils
+ pkgver
+ python-docutils-0.10_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ Text processing system to convert to various formats
+ source-revisions
+ python-docutils/template: 33781a95d667c02e462cfa8ef2fde9f4fcbcd4f6
+ version
+ 0.10_1
+
+ python-httplib2
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-07 11:16 CET
+ filename
+ python-httplib2-0.7.7_1.noarch.xbps
+ filename-sha256
+ 3bd27bf688bd0629136fbf70ecbafbdd24e2798dc539df46800e2acab4571ea1
+ filename-size
+ 41184
+ homepage
+ http://code.google.com/p/httplib2/
+ installed_size
+ 134708
+ license
+ MIT
+ long_desc
+
+ httplib2.py supports many features left out of other HTTP libraries.
+
+ * HTTP and HTTPS
+ * Keep-Alive
+ * Authentication
+ * Caching
+ * All Methods
+ * Redirects
+ * Compression
+ * Lost update support
+ * Unit Tested
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (806312002cc7bb78b97a256dac03acd44259db0d)
+ pkgname
+ python-httplib2
+ pkgver
+ python-httplib2-0.7.7_1
+ short_desc
+ A comprehensive HTTP client library in Python
+ source-revisions
+ python-httplib2/template: b58a3fc6595bd4c3cda463c29d1547338f1d3076
+ version
+ 0.7.7_1
+
+ python-isodate
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 03:42 CEST
+ filename
+ python-isodate-0.4.8_1.noarch.xbps
+ filename-sha256
+ 7eab4c874af25b01abae242dacac19380a2f4b4814fbb85808cd50eaffa4d463
+ filename-size
+ 20140
+ homepage
+ http://pypi.python.org/pypi/isodate
+ installed_size
+ 155648
+ license
+ BSD
+ long_desc
+
+ This module implements ISO 8601 date, time and duration parsing. The
+ implementation follows ISO8601:2004 standard, and implements only date/time
+ representations mentioned in the standard.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ python-isodate
+ pkgver
+ python-isodate-0.4.8_1
+ run_depends
+
+ python>=2.7<3.0
+
+ short_desc
+ An ISO 8601 date/time/duration parser and formater
+ version
+ 0.4.8_1
+
+ python-jinja
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-07 06:50 CEST
+ filename
+ python-jinja-2.6_1.noarch.xbps
+ filename-sha256
+ ee56a9533cdc64961d2c9e7357ab4e978d829d31b7ba92742f4251fd6a2ed3f9
+ filename-size
+ 120268
+ homepage
+ http://jinja.pocoo.org/
+ installed_size
+ 894777
+ license
+ BSD
+ long_desc
+
+ Features:
+
+ * sandboxed execution
+ * powerful automatic HTML escaping system for XSS prevention
+ * template inheritance
+ * compiles down to the optimal python code just in time
+ * optional ahead of time template compilation
+ * easy to debug. Line numbers of exceptions directly point to the correct
+ line in the template.
+ * configurable syntax
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ python-jinja
+ pkgver
+ python-jinja-2.6_1
+ run_depends
+
+ python>=0
+ python-MarkupSafe>=0
+ python-distribute>=0
+
+ short_desc
+ Modern and designer friendly templating language for Python
+ version
+ 2.6_1
+
+ python-parsing
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 11:02 CEST
+ filename
+ python-parsing-1.5.6_2.noarch.xbps
+ filename-sha256
+ 67a4f7d8bfd296ac31e8cafd97eb291ff3810e6643e8b4cc26e3d14a7e57e798
+ filename-size
+ 32304
+ homepage
+ http://pyparsing.wikispaces.com
+ installed_size
+ 159744
+ license
+ MIT
+ long_desc
+
+ The pyparsing module is an alternative approach to creating and executing
+ simple grammars, vs. the traditional lex/yacc approach, or the use of regular
+ expressions. The pyparsing module provides a library of classes that client
+ code uses to construct the grammar directly in Python code.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ python-parsing
+ pkgver
+ python-parsing-1.5.6_2
+ run_depends
+
+ python>=2.7<3.0
+
+ short_desc
+ General parsing module for Python
+ version
+ 1.5.6_2
+
+ python-rdflib
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 03:49 CEST
+ filename
+ python-rdflib-3.2.2_1.noarch.xbps
+ filename-sha256
+ 6094729ac30de8ef62bdd0920d5769c6d8ee7a801c0675d2dd09ac7200f1ccd6
+ filename-size
+ 96516
+ homepage
+ http://rdflib.net/
+ installed_size
+ 585728
+ license
+ BSD
+ long_desc
+
+ RDFLib is a Python library for working with RDF, a simple yet
+ powerful language for representing information.
+
+ The library contains parsers and serializers for RDF/XML, N3,
+ NTriples, Turtle, TriX and RDFa.
+
+ The library presents a Graph interface which can be backed by
+ any one of a number of Store implementations.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ python-rdflib
+ pkgver
+ python-rdflib-3.2.2_1
+ run_depends
+
+ python>=2.7<3.0
+ python-isodate>=0
+
+ short_desc
+ Python library for working with RDF
+ version
+ 3.2.2_1
+
+ python-simplejson
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:19 CET
+ filename
+ python-simplejson-2.5.2_2.armv6l.xbps
+ filename-sha256
+ 6a064a1e40990da52ac453c4872b2bdcf36439e5157902a6bcb91f9a0fd7355e
+ filename-size
+ 37224
+ homepage
+ http://undefined.org/python/#simplejson
+ installed_size
+ 148322
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ python-simplejson
+ pkgver
+ python-simplejson-2.5.2_2
+ run_depends
+
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ Simple, fast, extensible JSON encoder/decoder for Python
+ source-revisions
+ python-simplejson/template: e2f508b238c6b32fb3f31916dd4929150f1e97cc
+ version
+ 2.5.2_2
+
+ python-simplejson-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:19 CET
+ filename
+ python-simplejson-dbg-2.5.2_2.armv6l.xbps
+ filename-sha256
+ 244aa4db8f80f101ecdb675024d12bfed5b5e4f5747b0c6b1015474288d32dc8
+ filename-size
+ 34844
+ homepage
+ http://undefined.org/python/#simplejson
+ installed_size
+ 40166
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ python-simplejson-dbg
+ pkgver
+ python-simplejson-dbg-2.5.2_2
+ short_desc
+ Simple, fast, extensible JSON encoder/decoder for Python (debug files)
+ source-revisions
+ python-simplejson/template: e2f508b238c6b32fb3f31916dd4929150f1e97cc
+ version
+ 2.5.2_2
+
+ python-sqlalchemy
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:17 CET
+ filename
+ python-sqlalchemy-0.7.8_2.armv6l.xbps
+ filename-sha256
+ deeed083a4a0785b1ec5af6976777c3632bca746d8a8eac40921433896acd66e
+ filename-size
+ 469208
+ homepage
+ http://www.sqlalchemy.org/
+ installed_size
+ 2681931
+ license
+ MIT
+ long_desc
+
+ SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives
+ application developers the full power and flexibility of SQL.
+
+ It provides a full suite of well known enterprise-level persistence patterns,
+ designed for efficient and high-performing database access, adapted into a
+ simple and Pythonic domain language.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ python-sqlalchemy
+ pkgver
+ python-sqlalchemy-0.7.8_2
+ run_depends
+
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ The Python SQL Toolkit and Object Relational Mapper
+ source-revisions
+ python-sqlalchemy/template: c8bb78e7f000b283dbc93f42132e83c616638fa9
+ version
+ 0.7.8_2
+
+ python-sqlalchemy-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:17 CET
+ filename
+ python-sqlalchemy-dbg-0.7.8_2.armv6l.xbps
+ filename-sha256
+ 646372c115cb5e548b4a9e6f015684e2a07d3ba86b8bcaa3ea3206d8b43468ec
+ filename-size
+ 21820
+ homepage
+ http://www.sqlalchemy.org/
+ installed_size
+ 30500
+ license
+ MIT
+ long_desc
+
+ SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives
+ application developers the full power and flexibility of SQL.
+
+ It provides a full suite of well known enterprise-level persistence patterns,
+ designed for efficient and high-performing database access, adapted into a
+ simple and Pythonic domain language.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ python-sqlalchemy-dbg
+ pkgver
+ python-sqlalchemy-dbg-0.7.8_2
+ short_desc
+ The Python SQL Toolkit and Object Relational Mapper (debug files)
+ source-revisions
+ python-sqlalchemy/template: c8bb78e7f000b283dbc93f42132e83c616638fa9
+ version
+ 0.7.8_2
+
+ python-tempita
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 28 June, 2012, 10:24:37 UTC
+ filename
+ python-tempita-0.5.1_1.noarch.xbps
+ filename-sha256
+ 3837bca55bab52a404a56e89148914c52c1a5ed14d5070aeff30b0adcc0c25bd
+ filename-size
+ 12464
+ homepage
+ http://pythonpaste.org/tempita/
+ installed_size
+ 73728
+ license
+ MIT
+ long_desc
+
+ This package contains python-tempita: A lightweight unicode templating language.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ python-tempita
+ pkgver
+ python-tempita-0.5.1_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ A lightweight unicode templating language
+ version
+ 0.5.1_1
+
+ pyxdg
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-27 16:24 CEST
+ filename
+ pyxdg-0.23_1.noarch.xbps
+ filename-sha256
+ d336c84dad9de93feb2ec215906b71484691f550f907e7ae24bebbafc1c06d5b
+ filename-size
+ 26464
+ homepage
+ http://freedesktop.org/Software/pyxdg
+ installed_size
+ 163840
+ license
+ LGPL-2.1
+ long_desc
+
+ PyXDG is a python library to access freedesktop.org standards. Currently
+ supported are:
+
+ Base Directory Specification Version 0.6
+ Menu Specification Version 1.0
+ Desktop Entry Specification Version 1.0
+ Icon Theme Specification Version 0.8
+ Recent File Spec 0.2
+ Shared-MIME-Database Specification 0.13
+
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ pyxdg
+ pkgver
+ pyxdg-0.23_1
+ run_depends
+
+ python>=2.7<3.0
+
+ short_desc
+ Python library to access freedesktop.org standards
+ version
+ 0.23_1
+
+ qrencode
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:35 CET
+ filename
+ qrencode-3.4.1_2.armv6l.xbps
+ filename-sha256
+ b299fa64d35fdd1459db42bc3376cfe17fee9bafa928ddc2a0463bd2dd3285fd
+ filename-size
+ 10156
+ homepage
+ http://fukuchi.org/works/qrencode/index.html.en
+ installed_size
+ 22042
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ qrencode
+ pkgver
+ qrencode-3.4.1_2
+ run_depends
+
+ libqrencode-3.4.1_2
+ libpng>=1.5.10_1
+ glibc>=2.8_1
+
+ short_desc
+ Library for encoding data in a QR Code symbol
+ source-revisions
+ qrencode/libqrencode.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/qrencode-devel.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/template: 76994f04d8705da87244cff5553102898d1c28be
+ version
+ 3.4.1_2
+
+ qrencode-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:35 CET
+ filename
+ qrencode-dbg-3.4.1_2.armv6l.xbps
+ filename-sha256
+ 20b5ab5b28ff96495f51e11b445e00e5746da8a881027c0e2c5f12ad168893be
+ filename-size
+ 15516
+ homepage
+ http://fukuchi.org/works/qrencode/index.html.en
+ installed_size
+ 20449
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ qrencode-dbg
+ pkgver
+ qrencode-dbg-3.4.1_2
+ short_desc
+ Library for encoding data in a QR Code symbol (debug files)
+ source-revisions
+ qrencode/libqrencode.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/qrencode-devel.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/template: 76994f04d8705da87244cff5553102898d1c28be
+ version
+ 3.4.1_2
+
+ qrencode-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:35 CET
+ filename
+ qrencode-devel-3.4.1_2.noarch.xbps
+ filename-sha256
+ a08a2007bafae4b762e9ee5590a37e064b5d050e22787cb047ad52ebd5b70fc5
+ filename-size
+ 5552
+ homepage
+ http://fukuchi.org/works/qrencode/index.html.en
+ installed_size
+ 20945
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ qrencode-devel
+ pkgver
+ qrencode-devel-3.4.1_2
+ run_depends
+
+ libqrencode-3.4.1_2
+
+ short_desc
+ Library for encoding data in a QR Code symbol -- development files
+ source-revisions
+ qrencode/libqrencode.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/qrencode-devel.template: 76994f04d8705da87244cff5553102898d1c28be
+qrencode/template: 76994f04d8705da87244cff5553102898d1c28be
+ version
+ 3.4.1_2
+
+ radare2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-02 10:57 CEST
+ filename
+ radare2-devel-0.9.2_1.noarch.xbps
+ filename-sha256
+ b573c713e1b8af3cebd82837fbcd92b2408d02239ac07019b651a776b1e414e9
+ filename-size
+ 87876
+ homepage
+ http://radare.org
+ installed_size
+ 420306
+ license
+ LGPL-3
+ long_desc
+
+ It is composed by an hexadecimal editor (radare) with a wrapped IO layer
+ supporting multiple backends for local/remote files, accessing filesystems,
+ debugger (osx,bsd,linux,w32), stream analyzer, assembler/disassembler
+ (rasm) for x86,arm,ppc,m68k,java,msil,sparc, etc.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ radare2-devel
+ pkgver
+ radare2-devel-0.9.2_1
+ run_depends
+
+ radare2>=0.9.2
+
+ short_desc
+ Advanced command line debugger and hexadecimal editor - development files
+ version
+ 0.9.2_1
+
+ randrproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-28 10:16 CEST
+ filename
+ randrproto-1.4.0_1.noarch.xbps
+ filename-sha256
+ 9901d542b191017bcc7c689526fb332c69b5b303313fcf6a45a9d8cd2b959433
+ filename-size
+ 26860
+ installed_size
+ 180224
+ long_desc
+
+ This provides the Randr extension headers from X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ randrproto
+ pkgver
+ randrproto-1.4.0_1
+ short_desc
+ Randr extension headers from modular X.org
+ version
+ 1.4.0_1
+
+ raptor-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 17:45 CEST
+ filename
+ raptor-devel-2.0.6_2.noarch.xbps
+ filename-sha256
+ af783c99c809126a0e639c0b7e7195aa7f94ccb7f864fd7285e856ac719eb8a9
+ filename-size
+ 108732
+ homepage
+ http://librdf.org/raptor
+ installed_size
+ 1457245
+ license
+ LGPL-2.1
+ long_desc
+
+ Raptor is a free software / Open Source C library that provides a set of
+ parsers and serializers that generate Resource Description Framework (RDF)
+ triples by parsing syntaxes or serialize the triples into a syntax.
+ The supported parsing syntaxes are RDF/XML, N-Quads, N-Triples, TRiG,
+ Turtle, RSS tag soup including all versions of RSS, Atom 1.0 and 0.3, GRDDL
+ and microformats for HTML, XHTML and XML and RDFa. The serializing syntaxes
+ are RDF/XML (regular, and abbreviated), Atom 1.0, GraphViz, JSON, N-Quads,
+ N-Triples, RSS 1.0 and XMP.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-31
+ pkgname
+ raptor-devel
+ pkgver
+ raptor-devel-2.0.6_2
+ run_depends
+
+ libxml2-devel>=0
+ zlib-devel>=0
+ libraptor-2.0.6_2
+
+ short_desc
+ Raptor RDF Syntax Library - Development files
+ version
+ 2.0.6_2
+
+ raul-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-19 07:24 UTC
+ filename
+ raul-devel-0.8.0_2.noarch.xbps
+ filename-sha256
+ 36fcf6462757efc1ce79beb8b93f6c534f6d5cdff90412cd8b3f79f36fba2d9e
+ filename-size
+ 30000
+ homepage
+ http://drobilla.net/software/raul/
+ installed_size
+ 229376
+ license
+ ISC
+ long_desc
+
+ Raul (Realtime Audio Utility Library) is a C++ utility library primarily aimed
+ at audio/musical applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ raul-devel
+ pkgver
+ raul-devel-0.8.0_2
+ run_depends
+
+ glib-devel>=0
+ raul>=0.8.0
+
+ short_desc
+ C++ utility library primarily aimed at audio/musical applications. - Development files
+ version
+ 0.8.0_2
+
+ razor-qt-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-29 22:19 CET
+ filename
+ razor-qt-devel-0.5.1_1.noarch.xbps
+ filename-sha256
+ 546f7de0fdc324126e8da1d9aeb1d70be4438846119110de8a2ff4cb09d5dbd1
+ filename-size
+ 19200
+ homepage
+ http://razor-qt.org
+ installed_size
+ 94944
+ license
+ GPL-2
+ long_desc
+
+ Razor-qt is an advanced, easy-to-use, and fast desktop environment based on
+ Qt technologies. It has been tailored for users who value simplicity, speed,
+ and an intuitive interface. Unlike most desktop environments, Razor-qt also
+ works fine with weak machines.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ razor-qt-devel
+ pkgver
+ razor-qt-devel-0.5.1_1
+ short_desc
+ The free and open source lightweight desktop environment -- development files
+ source-revisions
+ razor-qt/razor-qt-devel.template: 0f948a4ec9ea62112eba7b910e630cc59ab392b2
+razor-qt/template: 7cde12dddd6c4cc7b2810b4dd600cfac2d006321
+ version
+ 0.5.1_1
+
+ readline
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 21:01 CET
+ filename
+ readline-6.2.004_2.armv6l.xbps
+ filename-sha256
+ e6eb713a548470e0d8a5cce3d8439bd98fb288eddde73a9baa64e0eac986cdc0
+ filename-size
+ 77444
+ homepage
+ http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
+ installed_size
+ 235512
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ readline
+ pkgver
+ readline-6.2.004_2
+ run_depends
+
+ glibc>=2.8_1
+ ncurses-libs>=5.8_1
+
+ short_desc
+ The GNU Readline Library
+ source-revisions
+ readline/readline-devel.template: f790c9ab23a1550c316c1cd874ca490f8a2e4c91
+readline/template: f790c9ab23a1550c316c1cd874ca490f8a2e4c91
+ version
+ 6.2.004_2
+
+ readline-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 21:01 CET
+ filename
+ readline-dbg-6.2.004_2.armv6l.xbps
+ filename-sha256
+ fda2ce02f41bc936258547f0e410dce2ac7c9b2c353454323cb13edff525dde0
+ filename-size
+ 200368
+ homepage
+ http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
+ installed_size
+ 249187
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ readline-dbg
+ pkgver
+ readline-dbg-6.2.004_2
+ short_desc
+ The GNU Readline Library (debug files)
+ source-revisions
+ readline/readline-devel.template: f790c9ab23a1550c316c1cd874ca490f8a2e4c91
+readline/template: f790c9ab23a1550c316c1cd874ca490f8a2e4c91
+ version
+ 6.2.004_2
+
+ readline-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 21:00 CET
+ filename
+ readline-devel-6.2.004_2.noarch.xbps
+ filename-sha256
+ 3e9528db5d4ca02cbcd749952972ec5f7e8d29a5dfa0921f6e3a5be0d3e51633
+ filename-size
+ 133344
+ homepage
+ http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
+ installed_size
+ 179084
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ readline-devel
+ pkgver
+ readline-devel-6.2.004_2
+ run_depends
+
+ ncurses-devel>=0
+ readline>=6.2.004
+
+ short_desc
+ The GNU Readline Library - development files
+ source-revisions
+ readline/readline-devel.template: f790c9ab23a1550c316c1cd874ca490f8a2e4c91
+readline/template: f790c9ab23a1550c316c1cd874ca490f8a2e4c91
+ version
+ 6.2.004_2
+
+ recordproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:38:20 UTC
+ filename
+ recordproto-1.14_1.noarch.xbps
+ filename-sha256
+ 3a8a23e31cfbf0eabcf752b21419ba1135e95f73a4b80f4ee25b076023d5f276
+ filename-size
+ 3880
+ installed_size
+ 20480
+ long_desc
+
+ This provides the Record extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ recordproto
+ pkgver
+ recordproto-1.14_1
+ short_desc
+ Record extension headers from X.org
+ version
+ 1.14_1
+
+ renderproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:27:21 UTC
+ filename
+ renderproto-0.11_1.noarch.xbps
+ filename-sha256
+ ce3dad4cfe889998b2af1686a852d22440bccb65ae8e388b461dd71d999f02a2
+ filename-size
+ 16148
+ installed_size
+ 69632
+ long_desc
+
+ This provides the Render extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ renderproto
+ pkgver
+ renderproto-0.11_1
+ short_desc
+ Render extension headers from modular X.org
+ version
+ 0.11_1
+
+ resourceproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-27 02:57 CET
+ filename
+ resourceproto-1.2.0_1.noarch.xbps
+ filename-sha256
+ 7cb5918cd7632b4ef9495f31e15a3c52a5dc954fb70c086c9f99233f686e5a36
+ filename-size
+ 7000
+ installed_size
+ 23745
+ long_desc
+
+ This provides the Resource extension headers from X.org.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ resourceproto
+ pkgver
+ resourceproto-1.2.0_1
+ short_desc
+ Resource extension headers from X.org
+ source-revisions
+ resourceproto/template: 92a25b95ec62e7ee07475dca68c936a3990124a1
+ version
+ 1.2.0_1
+
+ rest-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 11:13 CEST
+ filename
+ rest-devel-0.7.12_3.noarch.xbps
+ filename-sha256
+ 56a769fcefd0c7ea72080bded4c4080bae85ad21f193ec91ccef0af8278d042e
+ filename-size
+ 40468
+ homepage
+ http://www.gnome.org
+ installed_size
+ 534215
+ license
+ GPL-2
+ long_desc
+
+ This library has been designed to make it easier to access web services that
+ claim to be RESTful. A reasonable definition of what this means can be found
+ on Wikipedia [1]. However a reasonable description is that a RESTful service
+ should have urls that represent remote objects which methods can then be
+ called on.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ rest-devel
+ pkgver
+ rest-devel-0.7.12_3
+ run_depends
+
+ glib-devel>=0
+ libsoup-devel>=0
+ libxml2-devel>=0
+ rest-0.7.12_3
+
+ short_desc
+ RESTful library (development files)
+ version
+ 0.7.12_3
+
+ rhythmbox-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 11:38 CEST
+ filename
+ rhythmbox-devel-2.98_2.noarch.xbps
+ filename-sha256
+ 8bdcba9118353d843604517b33fa66d01436a9027d4cb69b25c9663718f0c059
+ filename-size
+ 212568
+ homepage
+ http://www.rhythmbox.org
+ installed_size
+ 3032999
+ license
+ GPL-2
+ long_desc
+
+ Rhythmbox is an integrated music management application, originally inspired
+ by Apple's iTunes. It is free software, designed to work well under the
+ GNOME Desktop, and based on the powerful GStreamer media framework.
+
+ Among the many features of Rhythmbox, you will find:
+
+ * Easy to use music browser
+ * Searching and sorting
+ * Comprehensive audio format support through GStreamer
+ * Internet Radio support including last.fm streams
+ * Playlists
+ * Display audio visualizations
+ * Transfer music to and from iPod, MTP, and USB Mass Storage music players
+ * Display album art and song lyrics downloaded from the internet
+ * Play, rip, and burn audio CDs
+ * Automatically download audio podcasts
+ * Browse, preview, and download albums from Magnatune and Jamendo
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-31
+ pkgname
+ rhythmbox-devel
+ pkgver
+ rhythmbox-devel-2.98_2
+ run_depends
+
+ gtk+3-devel>=0
+ librhythmbox-2.98_2
+
+ short_desc
+ rhythmbox development files
+ version
+ 2.98_2
+
+ rpi-firmware
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 00:12 CET
+ conf_files
+
+ /boot/cmdline.txt
+ /boot/config.txt
+
+ filename
+ rpi-firmware-20130228_1.noarch.xbps
+ filename-sha256
+ 0abd9a2395bdf726436ca463476f834546c680c5be22439a1becb0d1dd3ff931
+ filename-size
+ 43441580
+ homepage
+ https://github.com/raspberrypi/firmware
+ installed_size
+ 52406588
+ license
+ Propietary -- see /usr/share/licences/rpi-firmware/
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ rpi-firmware
+ pkgver
+ rpi-firmware-20130228_1
+ short_desc
+ Firmware files for the Raspberry Pi
+ source-revisions
+ rpi-firmware/files/cmdline.txt: 6ce1761edb46e8ebba445498059bef7166416862
+rpi-firmware/files/config.txt: 43590515b239f24cf960470e91a12cb7f759cb2a
+rpi-firmware/template: 6ce1761edb46e8ebba445498059bef7166416862
+ version
+ 20130228_1
+
+ rsyslog-docs
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-03 13:25 CET
+ filename
+ rsyslog-docs-6.4.2_2.noarch.xbps
+ filename-sha256
+ fa1df115cc0a64b51bda7f01fb7b34405ae782b823dcff7a84500783922df7bb
+ filename-size
+ 728208
+ homepage
+ http://www.rsyslog.com
+ installed_size
+ 1351518
+ license
+ GPL-3
+ long_desc
+
+ Rsyslog is an enhanced multi-threaded syslogd supporting, among
+ others, MySQL, PgSQL, syslog/tcp, RFC 3195, permitted sender lists,
+ filtering on any message part, and fine grain output format control.
+
+ This package contains the included HTML documentation.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ rsyslog-docs
+ pkgver
+ rsyslog-docs-6.4.2_2
+ short_desc
+ rsyslog HTML documentation
+ source-revisions
+ rsyslog/files/rsyslog.conf: 8eb9061a6e6549552c3a6f0b4224e3bab6c02c08
+rsyslog/files/rsyslog.logrotate: 52f8528a050bf0dc24473f7f15647a1dc255999a
+rsyslog/patches/systemd-186.patch: 4692db716032b0c4436d95d699d6940c906fb411
+rsyslog/rsyslog-docs.template: e28869f810f500a316b78a084fc2ea6db6289751
+rsyslog/rsyslog-gnutls.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+rsyslog/rsyslog-gssapi.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+rsyslog/rsyslog-mysql.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+rsyslog/rsyslog-postgresql.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+rsyslog/template: 5db630c75c42064665aa4b21039e11226a88cf47
+ version
+ 6.4.2_2
+
+ ruby-gems
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 11:00 CET
+ filename
+ ruby-gems-1.9.3p327_1.noarch.xbps
+ filename-sha256
+ 77603e09ac114cd8027c719597dab2c048fd0e077255d911a148e8a9968faf04
+ filename-size
+ 3108
+ homepage
+ http://www.ruby-lang.org/en/
+ installed_size
+ 3651
+ license
+ BSD
+ long_desc
+
+ This is a way to package Ruby libraries/applications for distribution.
+ RubyGems provides the ability to manage concurrent versions of libraries
+ and dependencies between those libraries. Using RubyGems, you can:
+
+ * download and install Ruby libraries easily
+ * not worry about libraries A and B depending on different versions of
+ library C
+ * easily remove libraries you no longer use
+
+ This package provides RubyGems with Ruby 1.9.1.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ ruby-gems
+ pkgver
+ ruby-gems-1.9.3p327_1
+ run_depends
+
+ ruby-rdoc>=0
+ ruby>=0
+
+ short_desc
+ Package management framework for Ruby libraries/applications
+ version
+ 1.9.3p327_1
+
+ ruby-irb
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 11:00 CET
+ filename
+ ruby-irb-1.9.3p327_1.noarch.xbps
+ filename-sha256
+ ad71da49ebaa157d3cf1f409ae753cd0513c096c4aaace4c8cff4598746d441d
+ filename-size
+ 31012
+ homepage
+ http://www.ruby-lang.org/en/
+ installed_size
+ 112580
+ license
+ BSD
+ long_desc
+
+ The irb is acronym for Interactive RuBy. It evaluates Ruby expression from
+ the terminal.
+
+ This package provides the irb which uses Ruby 1.9.1.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ ruby-irb
+ pkgver
+ ruby-irb-1.9.3p327_1
+ run_depends
+
+ ruby>=0
+
+ short_desc
+ Interactive Ruby
+ version
+ 1.9.3p327_1
+
+ ruby-rdoc
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 11:00 CET
+ filename
+ ruby-rdoc-1.9.3p327_1.noarch.xbps
+ filename-sha256
+ ab405d7f86d087f863c25a1ce6cf136c674fe892e6f8b0f381b80e9c373c5cd0
+ filename-size
+ 146896
+ homepage
+ http://www.ruby-lang.org/en/
+ installed_size
+ 562807
+ license
+ BSD
+ long_desc
+
+ RDoc - Documentation from Ruby Source Files:
+
+ * Generates structured HTML and XML documentation from Ruby source
+ and C extensions.
+ * Automatically extracts class, module, method, and attribute
+ definitions. These can be annotated using inline comments.
+ * Analyzes method visibility.
+ * Handles aliasing.
+ * Uses non-intrusive and implicit markup in the comments. Readers of
+ the original source needn't know that it is marked up at all.
+
+ This package provides the RDoc tool which uses Ruby 1.9.3p327.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ ruby-rdoc
+ pkgver
+ ruby-rdoc-1.9.3p327_1
+ run_depends
+
+ ruby-irb>=0
+ ruby>=0
+
+ short_desc
+ Generate documentation from Ruby source files
+ version
+ 1.9.3p327_1
+
+ ruby-ri
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 11:00 CET
+ filename
+ ruby-ri-1.9.3p327_1.noarch.xbps
+ filename-sha256
+ 3eae7c43e53cf555b217b0c336e1913cbc7087b6bf099d9dae811b228a49b255
+ filename-size
+ 1716788
+ homepage
+ http://www.ruby-lang.org/en/
+ installed_size
+ 6296634
+ license
+ BSD
+ long_desc
+
+ ri is a command line tool that displays descriptions of built-in Ruby
+ methods, classes, and modules. For methods, it shows you the calling
+ sequence and a description. For classes and modules, it shows a synopsis
+ along with a list of the methods the class or module implements.
+
+ This package provides ri command and descriptions about Ruby 1.9.1.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ ruby-ri
+ pkgver
+ ruby-ri-1.9.3p327_1
+ run_depends
+
+ ruby-rdoc>=0
+ ruby>=0
+
+ short_desc
+ Ruby Interactive reference
+ version
+ 1.9.3p327_1
+
+ run-parts
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 16:57 CET
+ filename
+ run-parts-4.3.2_2.armv6l.xbps
+ filename-sha256
+ 8d9fbbe65d569266da548e59880025afebb74e5a42d1ad03daaab55747c6debf
+ filename-size
+ 7908
+ homepage
+ http://packages.qa.debian.org/d/debianutils.html
+ installed_size
+ 14331
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ run-parts
+ pkgver
+ run-parts-4.3.2_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Run scripts or programs in a directory
+ source-revisions
+ run-parts/template: 2926bfe8b78c92b7a0b3f0c2d4d1c3edc9ce94c7
+ version
+ 4.3.2_2
+
+ run-parts-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-15 16:57 CET
+ filename
+ run-parts-dbg-4.3.2_2.armv6l.xbps
+ filename-sha256
+ d8b9c71324fd930042ada665c259d94ca88052866c344e544a6ca7037a03152c
+ filename-size
+ 12260
+ homepage
+ http://packages.qa.debian.org/d/debianutils.html
+ installed_size
+ 16913
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ run-parts-dbg
+ pkgver
+ run-parts-dbg-4.3.2_2
+ short_desc
+ Run scripts or programs in a directory (debug files)
+ source-revisions
+ run-parts/template: 2926bfe8b78c92b7a0b3f0c2d4d1c3edc9ce94c7
+ version
+ 4.3.2_2
+
+ rygel-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-23 11:36 CET
+ filename
+ rygel-devel-0.16.4_1.noarch.xbps
+ filename-sha256
+ 263c2a96e9b811f437d650a4000a21164b67313c6ae723223a1498adfab5dacf
+ filename-size
+ 14892
+ homepage
+ http://www.gnome.org
+ installed_size
+ 111632
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (e99f0ff5f11896dd71a9e46e36164c91ceeb2a02)
+ pkgname
+ rygel-devel
+ pkgver
+ rygel-devel-0.16.4_1
+ run_depends
+
+ libgee-devel>=0
+ gupnp-av-devel>=0
+ gstreamer-devel>=0
+ libuuid-devel>=0
+ glib-devel>=0
+ librygel-0.16.4_1
+
+ short_desc
+ GNOME home media solution - development files
+ source-revisions
+ rygel/librygel.template: 36a9063fb0f6850133b479f0d9b16296f851255d
+rygel/rygel-devel.template: 36a9063fb0f6850133b479f0d9b16296f851255d
+rygel/template: 36a9063fb0f6850133b479f0d9b16296f851255d
+ version
+ 0.16.4_1
+
+ samba-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-31 10:54 CET
+ filename
+ samba-devel-3.6.12_1.noarch.xbps
+ filename-sha256
+ 4b69a12435e83d7f3106fd3854ba63506aef0bde095153550f26289b68229bd8
+ filename-size
+ 33400
+ homepage
+ http://www.samba.org
+ installed_size
+ 233801
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ samba-devel
+ pkgver
+ samba-devel-3.6.12_1
+ run_depends
+
+ libsmbclient>=3.6.12
+
+ short_desc
+ SMB/CIFS file, print, and login server for Unix - development files
+ source-revisions
+ samba/REMOVE: 3595981d20be83ae80c38bb6bd6a7baab260de4f
+samba/files/nmbd.service: 3595981d20be83ae80c38bb6bd6a7baab260de4f
+samba/files/samba.pam: 3595981d20be83ae80c38bb6bd6a7baab260de4f
+samba/files/samba.tmpfiles: 0c2afe61eb7022265c55fe6bac8622ff1199de70
+samba/files/smbd.service: 3595981d20be83ae80c38bb6bd6a7baab260de4f
+samba/files/winbindd.service: 3595981d20be83ae80c38bb6bd6a7baab260de4f
+samba/libsmbclient.template: 8d426b9fa7c2816db07a8479db2d291ad1e54d01
+samba/samba-devel.template: 8d426b9fa7c2816db07a8479db2d291ad1e54d01
+samba/smbclient.template: 8d426b9fa7c2816db07a8479db2d291ad1e54d01
+samba/template: 66da6adadbf5de53e9a4c7d344fb25e2b8fb5c87
+ version
+ 3.6.12_1
+
+ sane-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 11:31 CET
+ filename
+ sane-devel-1.0.23_2.noarch.xbps
+ filename-sha256
+ 3b7abeff2f97ead27b94a0b70aeac6fe7f88c05143ebf5bc2043fd23689789af
+ filename-size
+ 9712
+ homepage
+ http://www.sane-project.org/
+ installed_size
+ 31824
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ sane-devel
+ pkgver
+ sane-devel-1.0.23_2
+ run_depends
+
+ libsane>=1.0.23
+
+ short_desc
+ Scanner Access Now Easy - development files
+ source-revisions
+ sane/files/saned.socket: bb8122dd5933e0761caebfb9fe5f6bc40469cbb5
+sane/files/saned@.service: bb8122dd5933e0761caebfb9fe5f6bc40469cbb5
+sane/libsane.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+sane/sane-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+sane/template: fe57b31b751c3cb8dce8d81684ba4cd47ebdd4d5
+ version
+ 1.0.23_2
+
+ sbc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-31 07:21 CEST
+ filename
+ sbc-devel-1.0_1.noarch.xbps
+ filename-sha256
+ 856a81ae033900dc85c39c27d94480bd48cb6c054bc506a4b166f7722b6a3ed2
+ filename-size
+ 2616
+ homepage
+ http://www.bluez.org/
+ installed_size
+ 32768
+ license
+ GPL-2
+ long_desc
+
+ This package implements a SBC library.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ sbc-devel
+ pkgver
+ sbc-devel-1.0_1
+ run_depends
+
+ sbc>=1.0
+
+ short_desc
+ SBC library -- development files
+ version
+ 1.0_1
+
+ scons
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Tuesday 15 November, 2011, 14:07:00 UTC
+ filename
+ scons-2.0.1_2.noarch.xbps
+ filename-sha256
+ 2143f11755d8a44de69c69f39b6728dfc45b07b46b2fe8377b45b38c3bf6e5c3
+ filename-size
+ 411392
+ homepage
+ http://www.scons.org/
+ installed_size
+ 2281472
+ license
+ MIT
+ long_desc
+
+ SCons is a software construction tool—that is, a superior alternative to the
+ classic Make build tool that we all know and love.
+
+ SCons is implemented as a Python script and set of modules, and SCons
+ configuration files are actually executed as Python scripts. This gives
+ SCons many powerful capabilities not found in other software build tools.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src 20111115-1
+ pkgname
+ scons
+ pkgver
+ scons-2.0.1_2
+ run_depends
+
+ python>=2.7
+
+ short_desc
+ SCons, a software construction tool
+ version
+ 2.0.1_2
+
+ scrnsaverproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:22:07 UTC
+ filename
+ scrnsaverproto-1.2.0_1.noarch.xbps
+ filename-sha256
+ 19b3f32cea89d735869a59e80a205e0d034e8d93da097660c5bb13d3c0ca9d00
+ filename-size
+ 3220
+ installed_size
+ 16384
+ long_desc
+
+ This provides the ScrnSaver extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ scrnsaverproto
+ pkgver
+ scrnsaverproto-1.2.0_1
+ short_desc
+ ScrnSaver extension headers from X.org
+ version
+ 1.2.0_1
+
+ sed
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:49 CET
+ conflicts
+
+ chroot-sed>=0
+
+ filename
+ sed-4.2.2_2.armv6l.xbps
+ filename-sha256
+ 0e466f9944a73ceab76ac336a8261d9ffc1aed2465cbf6307f89b0061fba9c76
+ filename-size
+ 289092
+ homepage
+ http://www.gnu.org/software/sed
+ installed_size
+ 658541
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ sed
+ pkgver
+ sed-4.2.2_2
+ run_depends
+
+ acl>=2.2.47_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU stream editor
+ source-revisions
+ sed/template: 34726bdf9a51dabc08895b714dccdc591d387703
+ version
+ 4.2.2_2
+
+ sed-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-08 12:49 CET
+ filename
+ sed-dbg-4.2.2_2.armv6l.xbps
+ filename-sha256
+ 34dbe9462980005156d97940a9b0f4d4f90aebe411163c1741322f4214a0aa8c
+ filename-size
+ 147688
+ homepage
+ http://www.gnu.org/software/sed
+ installed_size
+ 165839
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ sed-dbg
+ pkgver
+ sed-dbg-4.2.2_2
+ short_desc
+ The GNU stream editor (debug files)
+ source-revisions
+ sed/template: 34726bdf9a51dabc08895b714dccdc591d387703
+ version
+ 4.2.2_2
+
+ serd-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 10:09 CEST
+ filename
+ serd-devel-0.18.0_1.noarch.xbps
+ filename-sha256
+ 8868ede1439f54d949386ebba00e6fe4e15c781d657f3602ac534ecfd262b56e
+ filename-size
+ 8772
+ homepage
+ http://drobilla.net/software/serd/
+ installed_size
+ 61440
+ license
+ ISC
+ long_desc
+
+ Serd is a lightweight C library for RDF syntax which supports reading and
+ writing Turtle and NTriples.
+
+ Serd is not intended to be a swiss-army knife of RDF syntax, but rather is
+ suited to resource limited or performance critical applications, or
+ situations where a simple reader/writer with minimal dependencies is ideal
+ (e.g. in LV2 hosts or plugins).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ serd-devel
+ pkgver
+ serd-devel-0.18.0_1
+ run_depends
+
+ glibc-devel>=0
+ libserd>=0.18.0
+
+ short_desc
+ Lightweight C library for RDF syntax. - Development files
+ version
+ 0.18.0_1
+
+ sg3_utils-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-20 20:37 CET
+ filename
+ sg3_utils-devel-1.35_1.noarch.xbps
+ filename-sha256
+ 6e97d0d5a8e3f78717fbf360b85bca104a94fa068ba9189dc93a0435d1fa66a2
+ filename-size
+ 15692
+ homepage
+ http://sg.danny.cz/sg/sg3_utils.html
+ installed_size
+ 67222
+ license
+ BSD, GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ sg3_utils-devel
+ pkgver
+ sg3_utils-devel-1.35_1
+ run_depends
+
+ libsgutils>=1.35
+
+ short_desc
+ Generic SCSI utilities - development files
+ source-revisions
+ sg3_utils/libsgutils.template: 8b59c9e975307f58f38e8cd70ded031de56c06a3
+sg3_utils/sg3_utils-devel.template: 8b59c9e975307f58f38e8cd70ded031de56c06a3
+sg3_utils/template: 8b59c9e975307f58f38e8cd70ded031de56c06a3
+ version
+ 1.35_1
+
+ shadow
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:50 CET
+ conf_files
+
+ /etc/pam.d/usermod
+ /etc/pam.d/userdel
+ /etc/pam.d/useradd
+ /etc/pam.d/passwd
+ /etc/pam.d/newusers
+ /etc/pam.d/groupmod
+ /etc/pam.d/groupmems
+ /etc/pam.d/groupdel
+ /etc/pam.d/groupadd
+ /etc/pam.d/chpasswd
+ /etc/pam.d/chgpasswd
+ /etc/pam.d/chage
+ /etc/pam.d/other
+ /etc/defaults/useradd
+ /etc/login.defs
+
+ filename
+ shadow-4.1.5.1_12.armv6l.xbps
+ filename-sha256
+ 2f4be2dff577211e1afa0535fb8cd5220f882ce327ca915d676aa4e16e59cd94
+ filename-size
+ 1013804
+ homepage
+ http://pkg-shadow.alioth.debian.org
+ installed_size
+ 3142868
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ shadow
+ pkgver
+ shadow-4.1.5.1_12
+ run_depends
+
+ pam>=0
+ glibc>=2.8_1
+ pam-libs>=1.1.6_3
+ acl>=2.2.47_1
+ attr>=2.4.43_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ Shadow password file utilities
+ source-revisions
+ shadow/INSTALL: 9de476819192ec7329377376e708db4099803526
+shadow/files/LICENSE: 50343911ab80fcbaac7ea97e5fc6178b2eaf9d11
+shadow/files/chage.pam: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+shadow/files/login.defs: 938640af5920a643615325ed2c4e12047e5e99e3
+shadow/files/other.pam: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+shadow/files/passwd.pam: 1392d299ed59c3a8a1336cc661485a231badf0e5
+shadow/files/shadow.cron-daily: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+shadow/patches/shadow-add-missing-include.patch: 1d48e0d69dd2b480e812f6a3280e76f651490d21
+shadow/patches/shadow-strncpy-usage.patch: 1d48e0d69dd2b480e812f6a3280e76f651490d21
+shadow/patches/xstrdup.patch: 1d48e0d69dd2b480e812f6a3280e76f651490d21
+shadow/template: d38603208f9a5283d10c1cbc9fcd9714015e8bea
+ version
+ 4.1.5.1_12
+
+ shadow-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 12:50 CET
+ filename
+ shadow-dbg-4.1.5.1_12.armv6l.xbps
+ filename-sha256
+ c2f43c810bd5a9296cf9d81d4dfbd9cbca4fcf44d533ea19a805c857505e9d01
+ filename-size
+ 938820
+ homepage
+ http://pkg-shadow.alioth.debian.org
+ installed_size
+ 1281902
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ shadow-dbg
+ pkgver
+ shadow-dbg-4.1.5.1_12
+ short_desc
+ Shadow password file utilities (debug files)
+ source-revisions
+ shadow/INSTALL: 9de476819192ec7329377376e708db4099803526
+shadow/files/LICENSE: 50343911ab80fcbaac7ea97e5fc6178b2eaf9d11
+shadow/files/chage.pam: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+shadow/files/login.defs: 938640af5920a643615325ed2c4e12047e5e99e3
+shadow/files/other.pam: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+shadow/files/passwd.pam: 1392d299ed59c3a8a1336cc661485a231badf0e5
+shadow/files/shadow.cron-daily: 85cc462e1d738c085d9f21f8d24566e1a22a2fbf
+shadow/patches/shadow-add-missing-include.patch: 1d48e0d69dd2b480e812f6a3280e76f651490d21
+shadow/patches/shadow-strncpy-usage.patch: 1d48e0d69dd2b480e812f6a3280e76f651490d21
+shadow/patches/xstrdup.patch: 1d48e0d69dd2b480e812f6a3280e76f651490d21
+shadow/template: d38603208f9a5283d10c1cbc9fcd9714015e8bea
+ version
+ 4.1.5.1_12
+
+ shared-color-profiles
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ shared-color-profiles-0.1.5_1.noarch.xbps
+ filename-sha256
+ 7149613d4cad4d3767aac2f6d647f4fcccbda77736c83b867dbadfc2eb37b9a1
+ filename-size
+ 5350304
+ homepage
+ http://github.com/hughsie/shared-color-profiles
+ installed_size
+ 25694208
+ license
+ GPL-2
+ long_desc
+
+ Shared Color Profiles contain ICC profiles from different vendors that are all
+ free, either public domain, CC-BY-SA or CC-BY-ND.
+
+ These include a Adobe RGB compatible and sRGB compatible, as well as various
+ user or manufacturer supplied profiles.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ shared-color-profiles
+ pkgver
+ shared-color-profiles-0.1.5_1
+ short_desc
+ Color profiles from contributors for color calibration
+ version
+ 0.1.5_1
+
+ shared-color-targets
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ shared-color-targets-0.1.1_1.noarch.xbps
+ filename-sha256
+ 3c6279a7077eb1e0c26b140dcc21be423f5231c42fa426ed6f755ba42f794684
+ filename-size
+ 1232100
+ homepage
+ http://github.com/hughsie/shared-color-targets
+ installed_size
+ 9871360
+ license
+ GPL-2
+ long_desc
+
+ shared-color-targets contains target files for popular scanner calibration targets.
+ These include the IT 8.7 targets from http://www.targets.coloraid.de/
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ shared-color-targets
+ pkgver
+ shared-color-targets-0.1.1_1
+ short_desc
+ Shared color targets for creating color profiles
+ version
+ 0.1.1_1
+
+ sound-theme-freedesktop
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ sound-theme-freedesktop-0.7_1.noarch.xbps
+ filename-sha256
+ d49266075725eebca9245f2f620985580322931b188aab3c93b391c0b7d3bb9f
+ filename-size
+ 386816
+ installed_size
+ 552960
+ long_desc
+
+ This is all kinds of sounds stolen from gnome-audio, KDE, Ekiga,
+ Pidgin/Purple, ALSA, put together as XDG sound theme.
+ This goes well along with libcanberra.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ sound-theme-freedesktop
+ pkgver
+ sound-theme-freedesktop-0.7_1
+ short_desc
+ Freedesktop sound theme
+ version
+ 0.7_1
+
+ soundtouch-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 06:43 CEST
+ filename
+ soundtouch-devel-1.7.0_1.noarch.xbps
+ filename-sha256
+ 20178162c1d289ba09bb38dd90a804c408992fc039f30f59ea07eb503c9ce80d
+ filename-size
+ 12420
+ homepage
+ http://www.surina.net/soundtouch
+ installed_size
+ 61440
+ license
+ LGPL-2.1
+ long_desc
+
+ SoundTouch is an open-source audio processing library for changing the
+ Tempo, Pitch and Playback Rates of audio streams or audio files
+
+ Tempo (time stretch): Changes the sound to play at faster or slower tempo
+ than originally without affecting the sound pitch.
+ Pitch (key) : Changes the sound pitch or key while keeping the original
+ tempo (speed).
+ Playback Rate : Changes both tempo and pitch together as if a vinyl disc
+ was played at different RPM rate.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ soundtouch-devel
+ pkgver
+ soundtouch-devel-1.7.0_1
+ run_depends
+
+ soundtouch>=1.7.0
+
+ short_desc
+ SoundTouch Audio Processing Library -- development files
+ version
+ 1.7.0_1
+
+ speex-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:51 CEST
+ filename
+ speex-devel-1.2rc1_4.noarch.xbps
+ filename-sha256
+ 7fe85549f589bdf3c42b7f17c15bfed3d8b533dbe114d5ec40d5f3691443d6a0
+ filename-size
+ 427928
+ installed_size
+ 520331
+ long_desc
+
+ Speex is an audio codec especially designed for compressing voice at low
+ bit-rates for applications such as voice over IP (VoIP). In some senses, it
+ is meant to be complementary to the Vorbis codec which places a greater
+ emphasis on high-quality music reproduction.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ speex-devel
+ pkgver
+ speex-devel-1.2rc1_4
+ run_depends
+
+ libspeex-1.2rc1_4
+
+ short_desc
+ speex development files
+ version
+ 1.2rc1_4
+
+ spice-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:24 CET
+ filename
+ spice-devel-0.12.0_2.noarch.xbps
+ filename-sha256
+ fd8bce2187a5c4bd0c3f4bea6f1749d1172161adb9f4694a97502b6faf2049cb
+ filename-size
+ 5620
+ homepage
+ http://www.spicespace.org
+ installed_size
+ 21862
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ spice-devel
+ pkgver
+ spice-devel-0.12.0_2
+ run_depends
+
+ pixman-devel>=0
+ celt051-devel>=0
+ openssl-devel>=0
+ spice>=0.12.0
+
+ short_desc
+ Implements the SPICE protocol - development files
+ source-revisions
+ spice/spice-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+spice/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 0.12.0_2
+
+ spice-gtk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:26 CET
+ filename
+ spice-gtk-devel-0.14_5.noarch.xbps
+ filename-sha256
+ 99e02e4edcf3dbb8efc628da0e6b65ac1b2bc602fd57fb56945088e058a7e213
+ filename-size
+ 28764
+ homepage
+ http://spice-space.org
+ installed_size
+ 266918
+ license
+ LGPL-2
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ spice-gtk-devel
+ pkgver
+ spice-gtk-devel-0.14_5
+ run_depends
+
+ gtk+3-devel>=0
+ pixman-devel>=0
+ openssl-devel>=0
+ celt051-devel>=0
+ spice-gtk-0.14_5
+
+ short_desc
+ GTK+2/3 SPICE widget -- development files
+ source-revisions
+ spice-gtk/spice-gtk-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+spice-gtk/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 0.14_5
+
+ spice-protocol
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 11:19 CEST
+ filename
+ spice-protocol-0.12.2_1.noarch.xbps
+ filename-sha256
+ a908955694eafbb402a52a4b2b80af9dae3264103a551da574f9a20ccfd5946c
+ filename-size
+ 16592
+ homepage
+ http://www.spicespace.org/
+ installed_size
+ 126976
+ long_desc
+
+ This package contains the protocol headers for Spice.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ spice-protocol
+ pkgver
+ spice-protocol-0.12.2_1
+ short_desc
+ Spice Protocol headers
+ version
+ 0.12.2_1
+
+ sqlalchemy-migrate
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 28 June, 2012, 10:44:52 UTC
+ filename
+ sqlalchemy-migrate-0.7.2_2.noarch.xbps
+ filename-sha256
+ 7d2b63e7925f91bfbeb7176372a9d54a0fd0ae40744f376e92b52103223ca031
+ filename-size
+ 63828
+ homepage
+ https://code.google.com/p/sqlalchemy-migrate/
+ installed_size
+ 516096
+ license
+ MIT
+ long_desc
+
+ Schema migration tools for SQLAlchemy, designed to support an agile approach to
+ database design, and make it easier to keep development and production databases
+ in sync, as schema changes are required.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ sqlalchemy-migrate
+ pkgver
+ sqlalchemy-migrate-0.7.2_2
+ run_depends
+
+ python>=0
+ python-sqlalchemy>=0
+ python-decorator>=0
+ python-tempita>=0
+
+ short_desc
+ SQLAlchemy Schema Migration Tools
+ version
+ 0.7.2_2
+
+ sqlite
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 02:31 CET
+ filename
+ sqlite-3.7.15.2_2.armv6l.xbps
+ filename-sha256
+ 30e035b0337751301b2c717a2fa1a90c2740753f192da539c010e6daaa1303a8
+ filename-size
+ 274288
+ homepage
+ http://www.sqlite.org
+ installed_size
+ 628401
+ license
+ Public Domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ sqlite
+ pkgver
+ sqlite-3.7.15.2_2
+ run_depends
+
+ readline>=6.0_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ SQL Database Engine in a C Library
+ source-revisions
+ sqlite/sqlite-devel.template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+sqlite/sqlite-tcl.template: 58ffe5d48346a236827207d1d6fbb2ee98efa013
+sqlite/template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+ version
+ 3.7.15.2_2
+
+ sqlite-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 02:31 CET
+ filename
+ sqlite-dbg-3.7.15.2_2.armv6l.xbps
+ filename-sha256
+ c92bb65febe9f67f0e5db0f7e627660110ffed6dd03dc99ecd8fb3f32a692da6
+ filename-size
+ 28740
+ homepage
+ http://www.sqlite.org
+ installed_size
+ 89115
+ license
+ Public Domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ sqlite-dbg
+ pkgver
+ sqlite-dbg-3.7.15.2_2
+ short_desc
+ SQL Database Engine in a C Library (debug files)
+ source-revisions
+ sqlite/sqlite-devel.template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+sqlite/sqlite-tcl.template: 58ffe5d48346a236827207d1d6fbb2ee98efa013
+sqlite/template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+ version
+ 3.7.15.2_2
+
+ sqlite-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 14:01 CET
+ filename
+ sqlite-devel-3.7.15.2_2.noarch.xbps
+ filename-sha256
+ 293d49c46e7c687bb24e4b61bd8f6ddb417972f71a2908c239ef8e2baca61b86
+ filename-size
+ 80492
+ homepage
+ http://www.sqlite.org
+ installed_size
+ 368195
+ license
+ Public Domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (3d4355bcf3bcc6b13c6c3269a0db07d034eee92b)
+ pkgname
+ sqlite-devel
+ pkgver
+ sqlite-devel-3.7.15.2_2
+ run_depends
+
+ tcl-devel>=0
+ readline-devel>=0
+ sqlite>=3.7.15.2
+
+ short_desc
+ SQL Database Engine in a C Library -- development files
+ source-revisions
+ sqlite/sqlite-devel.template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+sqlite/sqlite-tcl.template: 58ffe5d48346a236827207d1d6fbb2ee98efa013
+sqlite/template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+ version
+ 3.7.15.2_2
+
+ sqlite-tcl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 02:31 CET
+ filename
+ sqlite-tcl-3.7.15.2_2.armv6l.xbps
+ filename-sha256
+ 4b99b3ec97eeb13c4b3eae45d57a0ea6cf15eb157fe2088b82c97f1b99fd9c60
+ filename-size
+ 263340
+ homepage
+ http://www.sqlite.org
+ installed_size
+ 605596
+ license
+ Public Domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ sqlite-tcl
+ pkgver
+ sqlite-tcl-3.7.15.2_2
+ run_depends
+
+ sqlite>=3.7.15.2
+ tcl>=0
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ SQL Database Engine in a C Library -- TCL bindings
+ source-revisions
+ sqlite/sqlite-devel.template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+sqlite/sqlite-tcl.template: 58ffe5d48346a236827207d1d6fbb2ee98efa013
+sqlite/template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+ version
+ 3.7.15.2_2
+
+ sqlite-tcl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 02:31 CET
+ filename
+ sqlite-tcl-dbg-3.7.15.2_2.armv6l.xbps
+ filename-sha256
+ 9b9f5d994a9c330da2670e4e75f28a64907fd2914116c78154aa027bda10ddbb
+ filename-size
+ 26584
+ homepage
+ http://www.sqlite.org
+ installed_size
+ 80316
+ license
+ Public Domain
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ sqlite-tcl-dbg
+ pkgver
+ sqlite-tcl-dbg-3.7.15.2_2
+ short_desc
+ SQL Database Engine in a C Library -- TCL bindings (debug files)
+ source-revisions
+ sqlite/sqlite-devel.template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+sqlite/sqlite-tcl.template: 58ffe5d48346a236827207d1d6fbb2ee98efa013
+sqlite/template: f2a10abe0b53d6b2cb06d0fb4864855cfe2da0ae
+ version
+ 3.7.15.2_2
+
+ sratom-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 10:20 CEST
+ filename
+ sratom-devel-0.4.0_1.noarch.xbps
+ filename-sha256
+ d26b0032f239bb3e343a18ab3413df9d235005817e8d85e33d13c045bbc5fd25
+ filename-size
+ 3544
+ homepage
+ http://drobilla.net/software/sratom/
+ installed_size
+ 40960
+ license
+ ISC
+ long_desc
+
+ Sratom is a library for serialising LV2 atoms to/from RDF, particularly the
+ Turtle syntax.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ sratom-devel
+ pkgver
+ sratom-devel-0.4.0_1
+ run_depends
+
+ glibc-devel>=0
+ serd-devel>=0.18.0
+ sord-devel>=0
+ lv2>=0
+ sratom>=0.4.0
+
+ short_desc
+ Library for serialising LV2 atoms to/from RDF (Turtle syntax). - Development files
+ version
+ 0.4.0_1
+
+ startup-notification-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 14:19 CEST
+ filename
+ startup-notification-devel-0.12_4.noarch.xbps
+ filename-sha256
+ f5723b81b7b361e18f9108094bfd1a56d258cd86e5e6090ae7a10c00a7fbbe4b
+ filename-size
+ 4196
+ homepage
+ http://www.freedesktop.org
+ installed_size
+ 19671
+ license
+ LGPL-2.1
+ long_desc
+
+ This package contains libstartup-notification which implements a
+ startup notification protocol. Using this protocol a desktop
+ environment can track the launch of an application and provide
+ feedback such as a busy cursor, among other features.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ startup-notification-devel
+ pkgver
+ startup-notification-devel-0.12_4
+ run_depends
+
+ startup-notification-0.12_4
+
+ short_desc
+ startup-notification development files
+ version
+ 0.12_4
+
+ subversion-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 10:59 CET
+ filename
+ subversion-devel-1.7.8_2.noarch.xbps
+ filename-sha256
+ 2dfcdf54d9bafa25a8e78b162d147eda1fb655a27808930dc1c8a4eb3825418f
+ filename-size
+ 224344
+ homepage
+ http://subversion.apache.org/
+ installed_size
+ 1436524
+ license
+ Apache-2.0, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (2514d30dcc15763a15b04cab30f3b97017b30859)
+ pkgname
+ subversion-devel
+ pkgver
+ subversion-devel-1.7.8_2
+ run_depends
+
+ libsvn>=1.7.8
+
+ short_desc
+ Enterprise-class centralized version control for the masses - development files
+ source-revisions
+ subversion/files/svnserve.service: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/files/svnserve.tmpfiles: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/libsvn.template: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/patches/subversion.rpath.fix.patch: dc9a34b45ebd5fccb9a9259fdd8d819511f8b6f1
+subversion/subversion-apache.template: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/subversion-devel.template: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/subversion-gnome-keyring-auth.template: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/subversion-perl.template: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/subversion-python.template: 89fd237a7758dfc0ed9c918744ddc92c1e5643b8
+subversion/template: 3fcbc7f8a37b75e92b5623a46a2bcf9f7a0f4be4
+ version
+ 1.7.8_2
+
+ sudo
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 14:05 CET
+ conf_files
+
+ /etc/pam.d/sudo
+ /etc/sudoers
+
+ filename
+ sudo-1.8.6p7_1.armv6l.xbps
+ filename-sha256
+ 4e81c383bc7f362977de6cfb640822ba6bc370d43bc456e785edc397f29c1246
+ filename-size
+ 336048
+ homepage
+ http://www.gratisoft.us/sudo/
+ installed_size
+ 1383553
+ license
+ ISC, BSD, zlib
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ sudo
+ pkgver
+ sudo-1.8.6p7_1
+ run_depends
+
+ zlib>=1.2.3_1
+ glibc>=2.17_1
+ pam-libs>=1.1.6_3
+
+ short_desc
+ Allow others to run commands as root
+ version
+ 1.8.6p7_1
+
+ sudo-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-01 14:05 CET
+ filename
+ sudo-dbg-1.8.6p7_1.armv6l.xbps
+ filename-sha256
+ 47c019422543ed562fa6db9a971d3fa13c8866f5d6d9b81d5c18b7519da78be9
+ filename-size
+ 525192
+ homepage
+ http://www.gratisoft.us/sudo/
+ installed_size
+ 625801
+ license
+ ISC, BSD, zlib
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-40 (24433945b141691025bf9cff7d1bc6ec45cfb38d)
+ pkgname
+ sudo-dbg
+ pkgver
+ sudo-dbg-1.8.6p7_1
+ short_desc
+ Allow others to run commands as root (debug files)
+ version
+ 1.8.6p7_1
+
+ suil-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 10:19 CEST
+ filename
+ suil-devel-0.6.4_1.noarch.xbps
+ filename-sha256
+ e9cd93d0cc7381a30675ce10b16c9a700677edff7dc7d2da18599761cdd2f63e
+ filename-size
+ 4588
+ homepage
+ http://drobilla.net/software/suil/
+ installed_size
+ 45056
+ license
+ BSD-style
+ long_desc
+
+ Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.
+
+ Suil makes it possible to load a UI of any toolkit in a host using any other
+ toolkit (assuming the toolkits are both supported by Suil). Hosts do not need
+ to build against or link to foreign toolkit libraries to use UIs written with
+ that toolkit (Suil performs its magic at runtime using dynamically loaded
+ modules). The API is designed such that hosts do not need to explicitly
+ support particular toolkits whatsoever - if Suil supports a particular
+ toolkit, then all hosts that use Suil will support that toolkit - for free.
+
+ Suil currently supports Gtk 2 and Qt 4, i.e. with Suil a Gtk program can
+ embed a Qt plugin UI without depending on Qt, and a Qt program can embed a
+ Gtk plugin UI without depending on Gtk.
+
+ This package contains files for development, headers, etc.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ suil-devel
+ pkgver
+ suil-devel-0.6.4_1
+ run_depends
+
+ glibc-devel>=0
+ suil>=0.6.4
+
+ short_desc
+ Lightweight C library for loading and wrapping LV2 plugin UIs - Development files
+ version
+ 0.6.4_1
+
+ systemd
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-27 20:45 CET
+ conf_files
+
+ /etc/hostname
+ /etc/vconsole.conf
+ /etc/locale.conf
+ /etc/systemd/system.conf
+ /etc/systemd/user.conf
+ /etc/systemd/journald.conf
+ /etc/systemd/logind.conf
+ /etc/udev/udev.conf
+
+ filename
+ systemd-197_7.armv6l.xbps
+ filename-sha256
+ 140f10a7a698f12ceb063a24a17fd7187de402d99fae5249473557302bcddde2
+ filename-size
+ 1531540
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 8762109
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ systemd
+ pkgver
+ systemd-197_7
+ replaces
+
+ nss-myhostname>=0
+
+ run_depends
+
+ dbus>=0
+ kbd>=0
+ libcap-progs>=0
+ libcap>=2.16_1
+ systemd-libs>=43_1
+ glibc>=2.17_1
+ libgcc>=4.4.0_1
+ libblkid>=2.18_1
+ libkmod>=5_1
+ acl>=2.2.47_1
+ dbus-libs>=1.2.10_1
+ libudev>=183_1
+ liblzma>=5.0.0_1
+ libgcrypt>=1.4.4_1
+ libqrencode>=3.4.1_1
+ libcryptsetup>=1.4.1_1
+ pam-libs>=1.1.6_3
+
+ short_desc
+ A system and service manager for Linux
+ source-revisions
+ systemd/INSTALL: e536c060033b7fa86e3da1e02a14eddb76ef6194
+systemd/files/hostname: 4aa81454d07aa85a48a40b390ff0ac48609c4d9a
+systemd/files/locale.conf: 123c7c20db790f9b3180fddad2bd72e1b95b89dc
+systemd/files/os-release: be84e4631614391acd91cd78a0af3b5324c1ed03
+systemd/files/systemd-dirs.tmpfiles: 7629f032539db863008d73ff9be84eb92e6e3766
+systemd/files/vconsole.conf: 4919acb56d5c97722a881e2d37009b436743279b
+systemd/libgudev-devel.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/libgudev.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-analyze.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-python.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/template: e536c060033b7fa86e3da1e02a14eddb76ef6194
+ version
+ 197_7
+
+ systemd-analyze
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-27 20:44 CET
+ filename
+ systemd-analyze-197_7.noarch.xbps
+ filename-sha256
+ fa55c71a280662864dde5df0dadb5902174d2dd75192b060c368b4619a72dbb4
+ filename-size
+ 4244
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 13015
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ systemd-analyze
+ pkgver
+ systemd-analyze-197_7
+ run_depends
+
+ python>=0
+ dbus-python>=0
+ pygobject>=0
+ gir-freedesktop>=0
+ systemd>=197
+
+ short_desc
+ A python utility to analyze some systemd results
+ source-revisions
+ systemd/INSTALL: e536c060033b7fa86e3da1e02a14eddb76ef6194
+systemd/files/hostname: 4aa81454d07aa85a48a40b390ff0ac48609c4d9a
+systemd/files/locale.conf: 123c7c20db790f9b3180fddad2bd72e1b95b89dc
+systemd/files/os-release: be84e4631614391acd91cd78a0af3b5324c1ed03
+systemd/files/systemd-dirs.tmpfiles: 7629f032539db863008d73ff9be84eb92e6e3766
+systemd/files/vconsole.conf: 4919acb56d5c97722a881e2d37009b436743279b
+systemd/libgudev-devel.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/libgudev.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-analyze.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-python.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/template: e536c060033b7fa86e3da1e02a14eddb76ef6194
+ version
+ 197_7
+
+ systemd-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-27 20:45 CET
+ filename
+ systemd-dbg-197_7.armv6l.xbps
+ filename-sha256
+ d07e3fe7c18860d79b71915fe2b856fa09bf3629d393652fbe8889347e4bb76f
+ filename-size
+ 8897600
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 10206785
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ systemd-dbg
+ pkgver
+ systemd-dbg-197_7
+ short_desc
+ A system and service manager for Linux (debug files)
+ source-revisions
+ systemd/INSTALL: e536c060033b7fa86e3da1e02a14eddb76ef6194
+systemd/files/hostname: 4aa81454d07aa85a48a40b390ff0ac48609c4d9a
+systemd/files/locale.conf: 123c7c20db790f9b3180fddad2bd72e1b95b89dc
+systemd/files/os-release: be84e4631614391acd91cd78a0af3b5324c1ed03
+systemd/files/systemd-dirs.tmpfiles: 7629f032539db863008d73ff9be84eb92e6e3766
+systemd/files/vconsole.conf: 4919acb56d5c97722a881e2d37009b436743279b
+systemd/libgudev-devel.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/libgudev.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-analyze.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/systemd-python.template: 801b455dca16434a115c4df44baf4c6e5f2ec0c9
+systemd/template: e536c060033b7fa86e3da1e02a14eddb76ef6194
+ version
+ 197_7
+
+ systemd-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-12 18:33 CET
+ filename
+ systemd-devel-197_2.noarch.xbps
+ filename-sha256
+ bc33e7a3ff49cf4e734265037995002d9bb0b5c851e51fe21e3e31000dd66d75
+ filename-size
+ 68764
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 96288
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ systemd-devel
+ pkgver
+ systemd-devel-197_2
+ run_depends
+
+ systemd-libs>=197_2
+
+ short_desc
+ systemd development files
+ source-revisions
+ libudev/libudev-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-libs.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+ version
+ 197_2
+
+ systemd-libs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:11 CET
+ filename
+ systemd-libs-197_2.armv6l.xbps
+ filename-sha256
+ ef4a88cc2ec4c31af3bd911a0ba30069705c0307c799aaf431ff430c63262737
+ filename-size
+ 55272
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 173808
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ systemd-libs
+ pkgver
+ systemd-libs-197_2
+ replaces
+
+ systemd<43_1
+
+ run_depends
+
+ glibc>=2.17_1
+ libgcc>=4.4.0_1
+ liblzma>=5.0.0_1
+ libgcrypt>=1.4.4_1
+
+ short_desc
+ systemd runtime libraries
+ source-revisions
+ libudev/libudev-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-libs.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/template: 4442b3ad03412af725924d7398acae7f36c48c6e
+ version
+ 197_2
+
+ systemd-libs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-13 09:11 CET
+ filename
+ systemd-libs-dbg-197_2.armv6l.xbps
+ filename-sha256
+ 565fb454c0210edf0ed55faf9e34891714d101127be453dad7aa42b995978050
+ filename-size
+ 433008
+ homepage
+ http://www.freedesktop.org/wiki/Software/systemd
+ installed_size
+ 478458
+ license
+ LGPL-2.1, GPL-2, MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ systemd-libs-dbg
+ pkgver
+ systemd-libs-dbg-197_2
+ short_desc
+ systemd runtime libraries (debug files)
+ source-revisions
+ libudev/libudev-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-devel.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/systemd-libs.template: ffd1555b4b05edcaef58106bac65ced99eb4beb5
+libudev/template: 4442b3ad03412af725924d7398acae7f36c48c6e
+ version
+ 197_2
+
+ taglib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-22 11:52 CEST
+ filename
+ taglib-devel-1.8_1.noarch.xbps
+ filename-sha256
+ c0b3b71a3f89425ecd51afb117e0bcacc4fc0ccfeae3744168a967271c7d08a5
+ filename-size
+ 65376
+ homepage
+ http://developer.kde.org/~wheeler/taglib.html
+ installed_size
+ 729088
+ license
+ LGPL-2.1, MPL-1.1
+ long_desc
+
+ TagLib is a library for reading and editing the meta-data of several popular
+ audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg
+ Vorbis comments and ID3 tags and Vorbis comments in FLAC files.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ taglib-devel
+ pkgver
+ taglib-devel-1.8_1
+ run_depends
+
+ zlib-devel>=0
+ taglib>=1.8
+
+ short_desc
+ Library for accessing ID tags in various media files (development files)
+ version
+ 1.8_1
+
+ talloc-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 18:18 CET
+ filename
+ talloc-devel-2.0.8_1.noarch.xbps
+ filename-sha256
+ fc8c31e87c1578b6f1f28214f4b02448b5b4d5b76042382db442167d51725dd8
+ filename-size
+ 13572
+ homepage
+ http://talloc.samba.org/
+ installed_size
+ 62037
+ license
+ GPL-3
+ long_desc
+
+ This package provides the talloc library: an hierarchical pool based memory
+ allocator with destructors.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ talloc-devel
+ pkgver
+ talloc-devel-2.0.8_1
+ run_depends
+
+ talloc>=2.0.8
+
+ short_desc
+ Hierarchical pool based memory allocator with destructors (development files)
+ source-revisions
+ talloc/talloc-devel.template: cea17f049afc4123ee91ba50cfb7072f4d52eab5
+talloc/template: cea17f049afc4123ee91ba50cfb7072f4d52eab5
+ version
+ 2.0.8_1
+
+ tar
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:12 CET
+ conflicts
+
+ chroot-tar>=0
+
+ filename
+ tar-1.26_3.armv6l.xbps
+ filename-sha256
+ e0b546fd524addbe0087eceb3f078a69d579e122d00d8f4dc82046618f81efae
+ filename-size
+ 574228
+ homepage
+ http://www.gnu.org/software/tar/
+ installed_size
+ 2105839
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ tar
+ pkgver
+ tar-1.26_3
+ run_depends
+
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU tape archiver with remote magnetic tape support
+ source-revisions
+ tar/template: 9e62486d649f8247177c1486d8c6cbbbcdf2ba5f
+ version
+ 1.26_3
+
+ tar-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 19:12 CET
+ filename
+ tar-dbg-1.26_3.armv6l.xbps
+ filename-sha256
+ ad6c740ded7f6c68484261c8fc2f052b8c7baf036a8d668341a12c16f69d8487
+ filename-size
+ 517528
+ homepage
+ http://www.gnu.org/software/tar/
+ installed_size
+ 584520
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ tar-dbg
+ pkgver
+ tar-dbg-1.26_3
+ short_desc
+ The GNU tape archiver with remote magnetic tape support (debug files)
+ source-revisions
+ tar/template: 9e62486d649f8247177c1486d8c6cbbbcdf2ba5f
+ version
+ 1.26_3
+
+ tcl
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 01:41 CET
+ filename
+ tcl-8.5.13_2.armv6l.xbps
+ filename-sha256
+ 5f3fe3afe7cd51a2ef678776750e2e9f0b32d6550480a9715947696bc5236b52
+ filename-size
+ 589780
+ homepage
+ http://www.tcl.tk
+ installed_size
+ 2981156
+ license
+ tcl/tk
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ tcl
+ pkgver
+ tcl-8.5.13_2
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The TCL scripting language
+ source-revisions
+ tcl/tcl-devel.template: 5fd776a5068c87837efe507524230f0f35319f9c
+tcl/template: 5fd776a5068c87837efe507524230f0f35319f9c
+ version
+ 8.5.13_2
+
+ tcl-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 01:41 CET
+ filename
+ tcl-dbg-8.5.13_2.armv6l.xbps
+ filename-sha256
+ 2690fa84318d7eb851fef682e416c3135900903dcb6458524f6ec711eed5005a
+ filename-size
+ 1690988
+ homepage
+ http://www.tcl.tk
+ installed_size
+ 1799230
+ license
+ tcl/tk
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ tcl-dbg
+ pkgver
+ tcl-dbg-8.5.13_2
+ short_desc
+ The TCL scripting language (debug files)
+ source-revisions
+ tcl/tcl-devel.template: 5fd776a5068c87837efe507524230f0f35319f9c
+tcl/template: 5fd776a5068c87837efe507524230f0f35319f9c
+ version
+ 8.5.13_2
+
+ tcl-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 01:41 CET
+ filename
+ tcl-devel-8.5.13_2.noarch.xbps
+ filename-sha256
+ dd08a2eb80c351e35cd58e1f43cff0ad1e0b96456209df6ce2bdeac3d0cf3dd7
+ filename-size
+ 1041676
+ homepage
+ http://www.tcl.tk
+ installed_size
+ 1621633
+ license
+ tcl/tk
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ tcl-devel
+ pkgver
+ tcl-devel-8.5.13_2
+ run_depends
+
+ tcl-8.5.13_2
+
+ short_desc
+ The TCL scripting language - development files
+ source-revisions
+ tcl/tcl-devel.template: 5fd776a5068c87837efe507524230f0f35319f9c
+tcl/template: 5fd776a5068c87837efe507524230f0f35319f9c
+ version
+ 8.5.13_2
+
+ tdb-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-12-04 18:11 CET
+ filename
+ tdb-devel-1.2.11_1.noarch.xbps
+ filename-sha256
+ 2c32fe6ed916cd10ad891c1289a13bd19c672deedbcd8ba0e0d578b7d24e2181
+ filename-size
+ 7360
+ homepage
+ http://tdb.samba.org/
+ installed_size
+ 27848
+ license
+ GPL-3
+ long_desc
+
+ This is a simple database API. It is modelled after the structure of GDBM.
+ TDB features, unlike GDBM, multiple writers support with appropriate locking
+ and transactions.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (1428d58d1e17483aa5380540e3ac0e4f6d258111)
+ pkgname
+ tdb-devel
+ pkgver
+ tdb-devel-1.2.11_1
+ run_depends
+
+ libtdb-1.2.11_1
+
+ short_desc
+ Hierarchical pool based memory allocator with destructors - development files
+ source-revisions
+ tdb/libtdb.template: 78b1676ce6afe36c7ffab4540ff6eacba4eea264
+tdb/tdb-devel.template: d962b8eb017c2288e71592b5945069f062e7d55e
+tdb/tdb-python.template: 861041b24585c659448e78f05c1e753e89f5e367
+tdb/template: e1aece9c6b3553c2c89681ca80a22c15342768f1
+ version
+ 1.2.11_1
+
+ telepathy-butterfly
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Wednesday 05 October, 2011, 14:10:14 UTC
+ filename
+ telepathy-butterfly-0.5.15_1.noarch.xbps
+ filename-sha256
+ 8c9387983e675edecd768e80be15440de9b558ac36f048ebe61523b0158bf841
+ filename-size
+ 33596
+ installed_size
+ 278528
+ long_desc
+
+ Telepathy is a D-Bus framework for unifying real time communication,
+ including instant messaging, voice calls and video calls. It abstracts
+ differences between protocols to provide a unified interface for
+ applications.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ telepathy-butterfly
+ pkgver
+ telepathy-butterfly-0.5.15_1
+ run_depends
+
+ python>=2.7
+ papyon>=0
+ telepathy-python>=0
+
+ short_desc
+ A MSN connection manager for Telepathy
+ version
+ 0.5.15_1
+
+ telepathy-farstream-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 07:52 CEST
+ filename
+ telepathy-farstream-devel-0.6.0_1.noarch.xbps
+ filename-sha256
+ 117545fc0f200bf1af009119162b33d0c920ba2522720af72c2235e7945dfaf9
+ filename-size
+ 13400
+ homepage
+ http://telepathy.freedesktop.org
+ installed_size
+ 131072
+ license
+ LGPL-2.1
+ long_desc
+
+ Telepathy is a D-Bus framework for unifying real time communication,
+ including instant messaging, voice calls and video calls. It abstracts
+ differences between protocols to provide a unified interface for
+ applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ telepathy-farstream-devel
+ pkgver
+ telepathy-farstream-devel-0.6.0_1
+ run_depends
+
+ dbus-glib-devel>=0
+ telepathy-glib-devel>=0
+ farstream-devel>=0.2.0
+ gstreamer1-devel>=0
+ telepathy-farstream>=0.6.0
+
+ short_desc
+ telepathy-farstream - development files
+ version
+ 0.6.0_1
+
+ telepathy-glib-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 20:22 CET
+ filename
+ telepathy-glib-devel-0.20.1_1.noarch.xbps
+ filename-sha256
+ 16c40900562437c1d7f3dc8fbc9f257d76de8a9b61a070b3b0d7527ed39b25c6
+ filename-size
+ 993808
+ homepage
+ http://telepathy.freedesktop.org
+ installed_size
+ 20982152
+ license
+ LGPL-2.1
+ long_desc
+
+ Telepathy is a D-Bus framework for unifying real time communication,
+ including instant messaging, voice calls and video calls. It abstracts
+ differences between protocols to provide a unified interface for
+ applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ telepathy-glib-devel
+ pkgver
+ telepathy-glib-devel-0.20.1_1
+ run_depends
+
+ vala-devel>=0
+ dbus-glib-devel>=0
+ telepathy-glib-0.20.1_1
+
+ short_desc
+ telepathy-glib - development files
+ version
+ 0.20.1_1
+
+ telepathy-logger-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 23:27 CET
+ filename
+ telepathy-logger-devel-0.6.0_1.noarch.xbps
+ filename-sha256
+ 34f3947d70c726f1b4352395dfd54f5c8b45674285fc7a710e012a7ffb61749d
+ filename-size
+ 19908
+ homepage
+ http://telepathy.freedesktop.org/wiki/Logger
+ installed_size
+ 200990
+ license
+ LGPL-2.1
+ long_desc
+
+ Telepathy is a D-Bus framework for unifying real time communication,
+ including instant messaging, voice calls and video calls. It abstracts
+ differences between protocols to provide a unified interface for
+ applications.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ telepathy-logger-devel
+ pkgver
+ telepathy-logger-devel-0.6.0_1
+ run_depends
+
+ libxml2-devel>=0
+ telepathy-glib-devel>=0
+ telepathy-logger-0.6.0_1
+
+ short_desc
+ Telepathy framework logging daemon - development files
+ version
+ 0.6.0_1
+
+ telepathy-python
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 24 October, 2011, 08:40:34 UTC
+ filename
+ telepathy-python-0.15.19_2.noarch.xbps
+ filename-sha256
+ 76a6807a6c7f77bf031a48e690f4b706e6867cb9611d34dda8736d26648b7aa8
+ filename-size
+ 91176
+ installed_size
+ 729088
+ long_desc
+
+ Telepathy is a D-Bus framework for unifying real time communication,
+ including instant messaging, voice calls and video calls. It abstracts
+ differences between protocols to provide a unified interface for
+ applications.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ telepathy-python
+ pkgver
+ telepathy-python-0.15.19_2
+ run_depends
+
+ python>=2.7
+ dbus-python>=0.83.0
+
+ short_desc
+ Python libraries for use in Telepathy clients and connection managers
+ version
+ 0.15.19_2
+
+ texinfo
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 16:55 CET
+ conflicts
+
+ chroot-texinfo>=0
+
+ filename
+ texinfo-4.13a_10.armv6l.xbps
+ filename-sha256
+ 9ba4cadaf9251f96d2cfdd1e5645553e2494df1747e7c0d81df02adc92481073
+ filename-size
+ 647136
+ homepage
+ http://www.gnu.org/software/texinfo/
+ installed_size
+ 1947591
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ texinfo
+ pkgver
+ texinfo-4.13a_10
+ run_depends
+
+ gzip>=0
+ glibc>=2.8_1
+ ncurses-libs>=5.8_1
+
+ short_desc
+ The GNU Documentation System
+ source-revisions
+ texinfo/INSTALL: a3931e7dcf5d721c579d2ff75aa9e76c6b9343e6
+texinfo/REMOVE: a3931e7dcf5d721c579d2ff75aa9e76c6b9343e6
+texinfo/patches/texinfo-4.13a-data_types.patch: a3931e7dcf5d721c579d2ff75aa9e76c6b9343e6
+texinfo/template: 33eb83febebbd929c84fca332e85b27d3c49d111
+ version
+ 4.13a_10
+
+ texinfo-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 16:55 CET
+ filename
+ texinfo-dbg-4.13a_10.armv6l.xbps
+ filename-sha256
+ cbe1331234205fed9230a2f85a0509d888d7ae4b09eb7ae52a8bee5e53780d1e
+ filename-size
+ 439980
+ homepage
+ http://www.gnu.org/software/texinfo/
+ installed_size
+ 533825
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ texinfo-dbg
+ pkgver
+ texinfo-dbg-4.13a_10
+ short_desc
+ The GNU Documentation System (debug files)
+ source-revisions
+ texinfo/INSTALL: a3931e7dcf5d721c579d2ff75aa9e76c6b9343e6
+texinfo/REMOVE: a3931e7dcf5d721c579d2ff75aa9e76c6b9343e6
+texinfo/patches/texinfo-4.13a-data_types.patch: a3931e7dcf5d721c579d2ff75aa9e76c6b9343e6
+texinfo/template: 33eb83febebbd929c84fca332e85b27d3c49d111
+ version
+ 4.13a_10
+
+ tiff-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 10:18 CET
+ filename
+ tiff-devel-4.0.3_2.noarch.xbps
+ filename-sha256
+ ea7c72cf0ad54a28e2cd53d4a54bcea07d78936f4374e1e13aaa611b5d7f2eb7
+ filename-size
+ 432536
+ homepage
+ http://www.remotesensing.org/libtiff/
+ installed_size
+ 1402009
+ license
+ BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ tiff-devel
+ pkgver
+ tiff-devel-4.0.3_2
+ run_depends
+
+ zlib-devel>=0
+ libjpeg-turbo-devel>=0
+ tiff>=4.0.3
+
+ short_desc
+ tiff (development files)
+ source-revisions
+ tiff/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+tiff/tiff-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 4.0.3_2
+
+ tinyxml-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-29 21:27 CET
+ filename
+ tinyxml-devel-2.6.2_2.noarch.xbps
+ filename-sha256
+ 2e821025dca2826fd686d855d353ba8188622ca1ca8f013d3e49f084aa71cb90
+ filename-size
+ 17976
+ homepage
+ http://www.grinninglizard.com/tinyxml/
+ installed_size
+ 73057
+ license
+ zlib
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ tinyxml-devel
+ pkgver
+ tinyxml-devel-2.6.2_2
+ run_depends
+
+ tinyxml>=2.6.2
+
+ short_desc
+ A simple, small, C++ XML parser that can be easily integrated into other programs -- development files
+ source-revisions
+ tinyxml/patches/entity.patch: 94e9d14b607b77225a9370f91e123da9bef80f07
+tinyxml/patches/tinyxml-2.5.3-stl.patch: 94e9d14b607b77225a9370f91e123da9bef80f07
+tinyxml/template: 94e9d14b607b77225a9370f91e123da9bef80f07
+tinyxml/tinyxml-devel.template: 95b672eb8bf731b1d6164261e67e5064339ff0bd
+ version
+ 2.6.2_2
+
+ tmux
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:18 CET
+ filename
+ tmux-1.7_2.armv6l.xbps
+ filename-sha256
+ bfd941f1ae356f9cfaedeb550047991b53e9bf23a452f6ad81c6a760b92b4585
+ filename-size
+ 128704
+ homepage
+ http://tmux.sourceforge.net
+ installed_size
+ 313475
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ tmux
+ pkgver
+ tmux-1.7_2
+ run_depends
+
+ glibc>=2.8_1
+ ncurses-libs>=5.8_1
+ libevent>=2.0.10_1
+
+ short_desc
+ Terminal Multiplexer
+ source-revisions
+ tmux/template: 36bb09a5c661e5c5d6b34b9706aa58ae29fb4e66
+ version
+ 1.7_2
+
+ tmux-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 23:18 CET
+ filename
+ tmux-dbg-1.7_2.armv6l.xbps
+ filename-sha256
+ 67f5d6467d9847cd32e85df91afb1da313d62c24eb3e4c30fe3d22e0e90e42ea
+ filename-size
+ 560340
+ homepage
+ http://tmux.sourceforge.net
+ installed_size
+ 670315
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ tmux-dbg
+ pkgver
+ tmux-dbg-1.7_2
+ short_desc
+ Terminal Multiplexer (debug files)
+ source-revisions
+ tmux/template: 36bb09a5c661e5c5d6b34b9706aa58ae29fb4e66
+ version
+ 1.7_2
+
+ totem-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-08 16:21 CET
+ filename
+ totem-devel-3.6.3_1.noarch.xbps
+ filename-sha256
+ 652d8479b6b26e6b2338f4046f4773b542baebd69151e95acc846a9fe2c581c8
+ filename-size
+ 54820
+ homepage
+ http://www.gnome.org
+ installed_size
+ 697001
+ license
+ custom, GPL-2
+ long_desc
+
+ Totem is a simple yet featureful media player for GNOME which can read
+ a large number of file formats. It features :
+
+ * Shoutcast, m3u, asx, SMIL and ra playlists support
+ * DVD (with menus), VCD and Digital CD (with CDDB) playback
+ * TV-Out configuration with optional resolution switching
+ * 4.0, 5.0, 5.1 and stereo audio output
+ * Full-screen mode (move your mouse and you get nice controls) with
+ Xinerama, dual-head and RandR support
+ * Aspect ratio toggling, scaling based on the video's original size
+ * Full keyboard control
+ * Simple playlist with repeat mode and saving feature
+ * GNOME, Nautilus and GIO integration
+ * Screenshot of the current movie
+ * Brightness and Contrast control
+ * Visualisation plugin when playing audio-only files
+ * Video thumbnailer for nautilus
+ * Nautilus properties page
+ * Works on remote displays
+ * DVD, VCD and OGG/OGM subtitles with automatic language selection
+ * Extensible with plugins
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ totem-devel
+ pkgver
+ totem-devel-3.6.3_1
+ run_depends
+
+ gtk+3-devel>=0
+ totem-pl-parser-devel>=0
+ libtotem-3.6.3_1
+
+ short_desc
+ totem - development files
+ version
+ 3.6.3_1
+
+ totem-pl-parser-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:05 CET
+ filename
+ totem-pl-parser-devel-3.4.3_2.noarch.xbps
+ filename-sha256
+ 5d3f19a694858dd33a488fb996549a0404a08e833453012c2d1f4d625daeaad0
+ filename-size
+ 30352
+ homepage
+ http://www.gnome.org
+ installed_size
+ 333985
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ totem-pl-parser-devel
+ pkgver
+ totem-pl-parser-devel-3.4.3_2
+ run_depends
+
+ glib-devel>=0
+ libxml2-devel>=0
+ gmime-devel>=0
+ libquvi-devel>=0
+ libgcrypt-devel>=0
+ totem-pl-parser>=3.4.3
+
+ short_desc
+ Totem playlist parser library - development files
+ source-revisions
+ totem-pl-parser/template: 27fecfb89e2fd70e5e86ca0d51520f88cd09891a
+totem-pl-parser/totem-pl-parser-devel.template: 27fecfb89e2fd70e5e86ca0d51520f88cd09891a
+ version
+ 3.4.3_2
+
+ traceroute
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 21:06 CET
+ filename
+ traceroute-2.0.19_3.armv6l.xbps
+ filename-sha256
+ e4d80aea69c067794f3001e0e279b33d081c558cefc509766113d5c3f98322a6
+ filename-size
+ 26768
+ homepage
+ http://traceroute.sourceforge.net
+ installed_size
+ 52119
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ traceroute
+ pkgver
+ traceroute-2.0.19_3
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Traces the route taken by packets over an IPv4/IPv6 network
+ source-revisions
+ traceroute/template: 4f2a6fea1e13961de3620f93d19bf0f6c600271f
+ version
+ 2.0.19_3
+
+ traceroute-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-18 21:06 CET
+ filename
+ traceroute-dbg-2.0.19_3.armv6l.xbps
+ filename-sha256
+ 575b692b9d40a353fa5ea144ca18d2247f7045fcfa7ac5ee4ab8f3409d71fa22
+ filename-size
+ 61064
+ homepage
+ http://traceroute.sourceforge.net
+ installed_size
+ 73431
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (8db9e4d26b44df7ad20e4653057f02be9b6db2d3)
+ pkgname
+ traceroute-dbg
+ pkgver
+ traceroute-dbg-2.0.19_3
+ short_desc
+ Traces the route taken by packets over an IPv4/IPv6 network (debug files)
+ source-revisions
+ traceroute/template: 4f2a6fea1e13961de3620f93d19bf0f6c600271f
+ version
+ 2.0.19_3
+
+ tracker-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 22:59 CET
+ filename
+ tracker-devel-0.14.4_2.noarch.xbps
+ filename-sha256
+ 614b0d15eb9f30a07925844022a594805ce589c99881c6a5a7585d6bb1134086
+ filename-size
+ 94216
+ homepage
+ http://live.gnome.org/Tracker
+ installed_size
+ 1359602
+ license
+ GPL-2
+ long_desc
+
+ Tracker trawls through your data and organises it so that it can be retrieved
+ extremely quickly later on via simple searches. This organisation puts your
+ data into categories so that application like photo managers and music players
+ can instantly find relevant content automatically. Tracker enables you to tag
+ your data with keywords which can be used to find related information or to
+ group and categorise your data further. Tracker lets you extend your data
+ with additional metadata.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ tracker-devel
+ pkgver
+ tracker-devel-0.14.4_2
+ run_depends
+
+ glib-devel>=0
+ libtracker-0.14.4_2
+
+ short_desc
+ Personal search tool and storage system - development files
+ source-revisions
+ tracker/libtracker.template: b5f44809624b12f8b83cd29cd59a8bc50f19d853
+tracker/patches/giflib-5.0.patch: eb79b1526119bd06df20eb8c9e460e69eb40aa0c
+tracker/template: 89d011c9361953d3beb6c4a3fca009ded7d4eb44
+tracker/tracker-devel.template: eb79b1526119bd06df20eb8c9e460e69eb40aa0c
+ version
+ 0.14.4_2
+
+ tumbler-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-13 16:36 CET
+ filename
+ tumbler-devel-0.1.27_1.noarch.xbps
+ filename-sha256
+ fab5df74a33c20487f83322f5f1dcd813914227269c0605191a290bd04776307
+ filename-size
+ 21000
+ homepage
+ http://xfce.org
+ installed_size
+ 207121
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ tumbler-devel
+ pkgver
+ tumbler-devel-0.1.27_1
+ run_depends
+
+ glib-devel>=0
+ tumbler>=0.1.27
+
+ short_desc
+ D-Bus Thumbnailer service - development files
+ source-revisions
+ tumbler/template: 187acc10ca282b90c4868efea919b52e89f4f562
+tumbler/tumbler-devel.template: f68224c39b8e70c074b0a21ac0276c0ff354ab71
+ version
+ 0.1.27_1
+
+ tzdata
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 21:56 CET
+ filename
+ tzdata-2012j_1.noarch.xbps
+ filename-sha256
+ 33990a9492de6bdd9f602eb803a862c86e24eac7660da7a62d3a7c173a81367e
+ filename-size
+ 183400
+ homepage
+ http://www.iana.org/time-zones
+ installed_size
+ 2687423
+ license
+ GPL-2
+ long_desc
+
+ This package contains data required for the implementation of standard
+ local time for many representative locations around the globe. It is
+ updated periodically to reflect changes made by political bodies to time
+ zone boundaries, UTC offsets, and daylight-saving rules.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ tzdata
+ pkgver
+ tzdata-2012j_1
+ short_desc
+ Time zone and daylight-saving time data
+ version
+ 2012j_1
+
+ uboot-mkimage
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 15:54 CET
+ filename
+ uboot-mkimage-2013.01_1.armv6l.xbps
+ filename-sha256
+ 1a0b9eec1bc2d074456fdbf24bc669f78f1f2e1f581b8d07c460f3d4f7820117
+ filename-size
+ 27816
+ homepage
+ http://www.denx.de/wiki/U-Boot/WebHome
+ installed_size
+ 60094
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ uboot-mkimage
+ pkgver
+ uboot-mkimage-2013.01_1
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ The U-Boot mkimage utility
+ source-revisions
+ uboot-mkimage/template: 7f7e1db3357dedfa7386dbb00bcf51afffc2a283
+ version
+ 2013.01_1
+
+ uboot-mkimage-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-19 15:54 CET
+ filename
+ uboot-mkimage-dbg-2013.01_1.armv6l.xbps
+ filename-sha256
+ 5f1a5fa4b4c8a769a5e28292fb451d52e9419e6f63c01db3c1c0bb262a09ad27
+ filename-size
+ 48728
+ homepage
+ http://www.denx.de/wiki/U-Boot/WebHome
+ installed_size
+ 62353
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ uboot-mkimage-dbg
+ pkgver
+ uboot-mkimage-dbg-2013.01_1
+ short_desc
+ The U-Boot mkimage utility (debug files)
+ source-revisions
+ uboot-mkimage/template: 7f7e1db3357dedfa7386dbb00bcf51afffc2a283
+ version
+ 2013.01_1
+
+ udisks2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-07 14:13 CET
+ filename
+ udisks2-devel-2.0.1_1.noarch.xbps
+ filename-sha256
+ be8794cbc08786e6fd2372c59dd70c27e272c15523840c0aca0d2923448efeb9
+ filename-size
+ 190184
+ homepage
+ http://www.freedesktop.org/wiki/Software/udisks
+ installed_size
+ 4302342
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ udisks2-devel
+ pkgver
+ udisks2-devel-2.0.1_1
+ run_depends
+
+ glib-devel>=0
+ udisks2>=2.0.1
+
+ short_desc
+ Disk Management Service, version 2 -- development files
+ source-revisions
+ udisks2/template: 32df006c86d97c446d8a6566383f2915243438fd
+udisks2/udisks2-devel.template: 32df006c86d97c446d8a6566383f2915243438fd
+ version
+ 2.0.1_1
+
+ ufw
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-01 08:54 UTC
+ conf_files
+
+ /etc/default/ufw
+ /etc/ufw/ufw.conf
+
+ filename
+ ufw-0.33_1.noarch.xbps
+ filename-sha256
+ 3f2b0e4edc15c9867fa4f0cdcd534da441ad12ba7b495da36c50edf5c3920497
+ filename-size
+ 102340
+ homepage
+ https://launchpad.net/ufw
+ installed_size
+ 749568
+ license
+ GPL-3
+ long_desc
+
+ Ufw stands for Uncomplicated Firewall, and is a program for managing a
+ netfilter firewall. It provides a command line interface and ims to be
+ uncomplicated and easy to use.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ ufw
+ pkgver
+ ufw-0.33_1
+ run_depends
+
+ iptables>=0
+ python>=0
+
+ short_desc
+ Uncomplicated Firewall
+ version
+ 0.33_1
+
+ upower-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 09:44 CET
+ filename
+ upower-devel-0.9.19_2.noarch.xbps
+ filename-sha256
+ af431d4f8daf28b13b96df67238f8e5151db3a2b0f0fb8e569d1774d4d4db5db
+ filename-size
+ 11536
+ homepage
+ http://upower.freedesktop.org
+ installed_size
+ 115565
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ upower-devel
+ pkgver
+ upower-devel-0.9.19_2
+ run_depends
+
+ dbus-devel>=0
+ glib-devel>=0
+ upower>=0.9.19
+
+ short_desc
+ Abstraction for enumerating power devices - development files
+ source-revisions
+ upower/template: 8fc005e48fcbc5b081dc9ae8f8e96bf6e7386b25
+upower/upower-devel.template: 8611b793fe921c14eab807bfd9e66cc37d9fd92e
+ version
+ 0.9.19_2
+
+ urlgrabber
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Wednesday 05 October, 2011, 14:30:01 UTC
+ filename
+ urlgrabber-3.9.1_1.noarch.xbps
+ filename-sha256
+ a2a437d3938e4b3abf32ec6af99d386874963058766502e100f3cf30201d2db0
+ filename-size
+ 47816
+ installed_size
+ 200704
+ long_desc
+
+ urlgrabber is a pure python package that drastically simplifies the fetching
+ of files. It is designed to be used in programs that need common (but not
+ necessarily simple) url-fetching features. It is extremely simple to drop
+ into an existing program and provides a clean interface to
+ protocol-independant file-access. Best of all, urlgrabber takes care of all
+ those pesky file-fetching details, and lets you focus on whatever it is that
+ your program is written to do!
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ urlgrabber
+ pkgver
+ urlgrabber-3.9.1_1
+ run_depends
+
+ python>=0
+ pycurl>=0
+
+ short_desc
+ A high-level cross-protocol url-grabber and Python library
+ version
+ 3.9.1_1
+
+ util-linux
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ conf_files
+
+ /etc/pam.d/chfn
+ /etc/pam.d/chsh
+ /etc/pam.d/su
+ /etc/pam.d/su-l
+ /etc/pam.d/login
+
+ conflicts
+
+ chroot-util-linux>=0
+ coreutils<8.21_3
+
+ filename
+ util-linux-2.22.2_7.armv6l.xbps
+ filename-sha256
+ 0994bbee83fd9995cf52dada64861639ac5cdeac2f42dca113b177cfa3003eec
+ filename-size
+ 1307092
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 6472262
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ util-linux
+ pkgver
+ util-linux-2.22.2_7
+ provides
+
+ eject-2.22.2
+
+ replaces
+
+ util-linux-ng>=0
+ e2fsprogs<=1.41.14_1
+ eject>=0
+ shadow<4.1.5.1_3
+
+ run_depends
+
+ coreutils>=0
+ shadow>=4.1.5.1_3
+ glibc>=2.17_1
+ libgcc>=4.4.0_1
+ libmount-2.22.2_7
+ libblkid-2.22.2_7
+ libuuid-2.22.2_7
+ ncurses-libs>=5.8_1
+ zlib>=1.2.3_1
+ pam-libs>=1.1.6_3
+
+ short_desc
+ Miscellaneous linux utilities
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ util-linux-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 11:56 CET
+ filename
+ util-linux-dbg-2.22.2_7.armv6l.xbps
+ filename-sha256
+ ed456e0efb6bc7269a8b0445c0e4ec2e44b7dd5890fa965f5e8303e8d25daf4c
+ filename-size
+ 1934216
+ homepage
+ http://userweb.kernel.org/~kzak/util-linux-ng
+ installed_size
+ 2737870
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ util-linux-dbg
+ pkgver
+ util-linux-dbg-2.22.2_7
+ short_desc
+ Miscellaneous linux utilities (debug files)
+ source-revisions
+ util-linux/INSTALL: e7473f6c0b0f2ea1f0068e5b9fd7748e81faf390
+util-linux/files/common.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/login.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/files/su.pam: a3007f1d8169071a20afc4a71e7491104e1285f7
+util-linux/libblkid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libblkid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libmount.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid-devel.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/libuuid.template: 531e3cb919ec2e5b6dc52c1a36e1cbb4170e3231
+util-linux/template: 74298f87a68cdd131f9269cbcf606567f081fd5a
+ version
+ 2.22.2_7
+
+ v4l-utils-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 22:20 CET
+ filename
+ v4l-utils-devel-0.8.9_1.noarch.xbps
+ filename-sha256
+ 2f8cca7e8ebb511b360df89ade0d49b050d64367a153c18a13104cf6b13372b4
+ filename-size
+ 7004
+ homepage
+ http://freshmeat.net/projects/libv4l
+ installed_size
+ 20158
+ license
+ GPL-2, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ v4l-utils-devel
+ pkgver
+ v4l-utils-devel-0.8.9_1
+ run_depends
+
+ libjpeg-turbo-devel>=0
+ libsysfs-devel>=0
+ v4l-utils>=0.8.9
+
+ short_desc
+ Userspace tools and libraries for Video 4 Linux - development files
+ source-revisions
+ v4l-utils/qv4l2.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+v4l-utils/template: feb43cf387ba2b33dfcfe2d1df72a0a770adf85e
+v4l-utils/v4l-utils-devel.template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+ version
+ 0.8.9_1
+
+ v8-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-06 07:18 CET
+ filename
+ v8-devel-3.12.19.15_1.noarch.xbps
+ filename-sha256
+ 24da628ce0f3bb1f1bc19a39dd53e84500ac0777a21fc2922ff4cac6ba90de80
+ filename-size
+ 38920
+ homepage
+ http://code.google.com/p/v8/
+ installed_size
+ 189163
+ license
+ BSD
+ long_desc
+
+ V8 is Google's open source JavaScript engine. V8 is written in C++ and is
+ used in Google Chrome, the open source browser from Google.
+
+ V8 implements ECMAScript as specified in ECMA-262, 5th edition, and runs on
+ Windows (XP or newer), Mac OS X (10.5 or newer), and Linux systems that use
+ IA-32, x64, or ARM processors.
+
+ This package contains the v8 development headers.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-32
+ pkgname
+ v8-devel
+ pkgver
+ v8-devel-3.12.19.15_1
+ run_depends
+
+ libv8-3.12.19.15_1
+
+ short_desc
+ V8 JavaScript Engine (Development headers)
+ version
+ 3.12.19.15_1
+
+ vala-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-14 10:55 CET
+ filename
+ vala-devel-0.18.1_1.noarch.xbps
+ filename-sha256
+ 39a0a691c34f7fe8c67155d58578f593a317a1ef20732f915432c5da38c8297b
+ filename-size
+ 55744
+ homepage
+ http://live.gnome.org/Vala
+ installed_size
+ 540259
+ license
+ LGPL-2.1
+ long_desc
+
+ Vala is a new programming language that aims to bring modern programming
+ language features to GNOME developers without imposing any additional runtime
+ requirements and without using a different ABI compared to applications and
+ libraries written in C.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ vala-devel
+ pkgver
+ vala-devel-0.18.1_1
+ run_depends
+
+ pkg-config>=0
+ glib-devel>=0
+ vala>=0.18.1
+
+ short_desc
+ Compiler for the GObject type system - development files
+ version
+ 0.18.1_1
+
+ vde2-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 10:18 CEST
+ filename
+ vde2-devel-2.3.2_3.noarch.xbps
+ filename-sha256
+ e6a8eee9f14f5184e5398f70520f4490a5d3ab584eff116c86810af6b0284308
+ filename-size
+ 5776
+ homepage
+ http://sourceforge.net/projects/vde/
+ installed_size
+ 19875
+ license
+ GPL-2, LGPL-2.1, BSD
+ long_desc
+
+ VDE is an ethernet compliant virtual network that can be spawned over a set of
+ physical computer over the Internet.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ vde2-devel
+ pkgver
+ vde2-devel-2.3.2_3
+ run_depends
+
+ libvde2-2.3.2_3
+
+ short_desc
+ Virtual Distributed Ethernet -- development files
+ version
+ 2.3.2_3
+
+ videoproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:21:29 UTC
+ filename
+ videoproto-2.3.0_1.noarch.xbps
+ filename-sha256
+ 11f0b5a269e85e81e5d9ae8cff4bf82f98108c6f5b24efe7efc77591b52e90e2
+ filename-size
+ 7620
+ installed_size
+ 45056
+ long_desc
+
+ Video extension headers from modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ videoproto
+ pkgver
+ videoproto-2.3.0_1
+ short_desc
+ Video extension headers from modular X.org X11
+ version
+ 2.3.0_1
+
+ vim-common
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 21:55 CET
+ filename
+ vim-common-7.3.798_1.noarch.xbps
+ filename-sha256
+ a6e01435573343043a290223984919b64f56eada1c98256a663bedb6b882a5b5
+ filename-size
+ 4672352
+ homepage
+ http://www.vim.org
+ installed_size
+ 23754960
+ license
+ GPL-2
+ long_desc
+
+
+ This package contains common files shared by all vim flavours.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ vim-common
+ pkgver
+ vim-common-7.3.798_1
+ replaces
+
+ vim<=7.2_2
+
+ short_desc
+ VI iMproved - common files
+ source-revisions
+ vim/files/gvim.desktop: 22f39831c57e820e3c2a2b67b77a32ba9554b31f
+vim/gvim.template: f634a31cdcd86d6cb52f4cafa1bba9901bbc9e2d
+vim/template: fe3825412e6254c681e5078690e52b05d9a602ec
+vim/vim-common.template: 22f39831c57e820e3c2a2b67b77a32ba9554b31f
+vim/vim-x11.template: 2294d16d0fdc5a1acbf8617173d46ff6c2b6cf24
+ version
+ 7.3.798_1
+
+ virt-manager
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 15:49 CET
+ filename
+ virt-manager-0.9.4_1.noarch.xbps
+ filename-sha256
+ 47e4d0e712e6205215b158e472b9cfd35b828a8acf9b035b5d702a0eb689bd36
+ filename-size
+ 685032
+ homepage
+ http://virt-manager.et.redhat.com
+ installed_size
+ 5740686
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ virt-manager
+ pkgver
+ virt-manager-0.9.4_1
+ run_depends
+
+ dbus-python>=0
+ pygtk>=0
+ libvirt-python>=0
+ virtinst>=0
+ gtk2-vnc-python>=0
+ python-gconf>=0
+ netcat>=0
+ libxml2-python>=0
+
+ short_desc
+ Desktop user interface for managing virtual machines
+ source-revisions
+ virt-manager/template: 683f4fcf787a66fd06ed0c5ce1191309d313a547
+ version
+ 0.9.4_1
+
+ virtinst
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-12 14:53 CET
+ filename
+ virtinst-0.600.3_1.noarch.xbps
+ filename-sha256
+ 5a99eaa26db26626a30e735742b0be8950a9144986916522bcd773d28770580a
+ filename-size
+ 265744
+ homepage
+ http://virt-manager.et.redhat.com
+ installed_size
+ 1382177
+ license
+ GPL-2
+ long_desc
+
+ virtinst is a module to help in starting installations of Fedora/Red
+ Hat Enterprise Linux related distributions inside of virtual
+ machines. It supports both paravirt guests (for which only FC and
+ RHEL guests are currently supported) as well as fully virtualized
+ guests. It uses libvirt (http://www.libvirt.org) for starting things.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (5b7ecc83758bd0b727ef6a192badd3e00f8f7bfd)
+ pkgname
+ virtinst
+ pkgver
+ virtinst-0.600.3_1
+ run_depends
+
+ python>=0
+ libvirt-python>=0
+ urlgrabber>=0
+
+ short_desc
+ Virtual Machine Installation module
+ source-revisions
+ virtinst/template: 0f1673cddc16d853b9010fd5bb90f70f75466ea5
+ version
+ 0.600.3_1
+
+ virtualbox-ose-dkms
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 09:45 CET
+ filename
+ virtualbox-ose-dkms-4.2.8_1.noarch.xbps
+ filename-sha256
+ 4772ed85bde51ec97310cebc1e16c2a65f8a1e24e6f8de02107972ef4fe40e08
+ filename-size
+ 500824
+ homepage
+ http://virtualbox.org
+ installed_size
+ 1922296
+ license
+ GPL-2, MPL-1.1, CDDL
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ virtualbox-ose-dkms
+ pkgver
+ virtualbox-ose-dkms-4.2.8_1
+ run_depends
+
+ dkms>=0
+
+ short_desc
+ General-purpose full virtualizer for x86 hardware - kernel module sources for dkms
+ version
+ 4.2.8_1
+
+ virtualbox-ose-guest-dkms
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-02 09:46 CET
+ filename
+ virtualbox-ose-guest-dkms-4.2.8_1.noarch.xbps
+ filename-sha256
+ 01c9c3f3c300d37b4aa16409924cf3bac9c1a542e72bc3c70e722443166bd30c
+ filename-size
+ 417236
+ homepage
+ http://virtualbox.org
+ installed_size
+ 1641104
+ license
+ GPL-2, MPL-1.1, CDDL
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (e54b224d4710332df7e43ee592354f5c8b266be0)
+ pkgname
+ virtualbox-ose-guest-dkms
+ pkgver
+ virtualbox-ose-guest-dkms-4.2.8_1
+ run_depends
+
+ dkms>=0
+
+ short_desc
+ General-purpose full virtualizer for x86 hardware - guest addition module source for dkms
+ version
+ 4.2.8_1
+
+ void-artwork
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ void-artwork-20111018_1.noarch.xbps
+ filename-sha256
+ 80a58a5fcbf598f775ef511d6ea5543ffdd99082bb32cb4fd19dc94832d5a855
+ filename-size
+ 165840
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 172032
+ license
+ Public domain
+ long_desc
+
+ void-artwork contains artwork images for Void GNU/Linux: splash images,
+ logos, etc.
+ maintainer
+ xtraeme and davehome
+ packaged-with
+ xbps-src-28
+ pkgname
+ void-artwork
+ pkgver
+ void-artwork-20111018_1
+ short_desc
+ Void GNU/Linux artwork
+ version
+ 20111018_1
+
+ void-installer
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-28 09:34 CET
+ filename
+ void-installer-20130128_1.noarch.xbps
+ filename-sha256
+ 57e347f316cd47abe05939aa947e2af3b2bc13c1a892231607c3509123af9cb3
+ filename-size
+ 10876
+ homepage
+ https://voidlinux.github.com
+ installed_size
+ 36474
+ license
+ Simplified BSD
+ long_desc
+
+ The Void Linux installer - a dialog based and simple installer.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ void-installer
+ pkgver
+ void-installer-20130128_1
+ run_depends
+
+ dialog>=0
+
+ short_desc
+ The Void Linux installer
+ source-revisions
+ void-installer/template: b72c8368973090144df1e10b26b79d3e2fc2dd2a
+ version
+ 20130128_1
+
+ void-mklive
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-28 09:36 CET
+ filename
+ void-mklive-20130128_1.noarch.xbps
+ filename-sha256
+ 3030135a3c10c4dfd1a7489865e707661845b46fbd5e5bd74a34bd06d4a19d96
+ filename-size
+ 7932
+ homepage
+ https://voidlinux.github.com/
+ installed_size
+ 19904
+ license
+ Simplified BSD
+ long_desc
+
+ This is a simple shell script to build a live image for the
+ Void linux distribution. The images contain the void-installer package
+ to be able to install Void linux to storage disks.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ void-mklive
+ pkgver
+ void-mklive-20130128_1
+ replaces
+
+ vmklive>=0
+
+ run_depends
+
+ dracut>=020_6
+ grub-x86_64-efi>=0
+ squashfs-tools>=0
+ syslinux>=4.05_2
+ dosfstools>=0
+ xorriso>=0
+
+ short_desc
+ The Void Linux live image maker
+ source-revisions
+ void-mklive/template: b72c8368973090144df1e10b26b79d3e2fc2dd2a
+ version
+ 20130128_1
+
+ vte-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-10 17:54 CEST
+ filename
+ vte-devel-0.28.2_4.noarch.xbps
+ filename-sha256
+ 1944af969435e2ffc8a30985570eac945dc6ad3f56be4a00645321cc7530aab2
+ filename-size
+ 46764
+ homepage
+ http://www.gnome.org
+ installed_size
+ 645056
+ license
+ LGPL-2.1
+ long_desc
+
+ Terminal widget with improved font, internationalization and
+ accessibility support for the GNOME 2 desktop.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ vte-devel
+ pkgver
+ vte-devel-0.28.2_4
+ run_depends
+
+ glib-devel>=0
+ pango-devel>=0
+ cairo-devel>=0
+ gtk+-devel>=0
+ vte-0.28.2_4
+
+ short_desc
+ vte development files
+ version
+ 0.28.2_4
+
+ vte3-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-13 09:20 CET
+ filename
+ vte3-devel-0.34.2_1.noarch.xbps
+ filename-sha256
+ 732805aef3ca12aafe710404711852fd7379b8fe4fd713de496af856fb77c146
+ filename-size
+ 54796
+ homepage
+ http://www.gnome.org
+ installed_size
+ 781005
+ license
+ LGPL-2.1
+ long_desc
+
+ Terminal widget with improved font, internationalization and
+ accessibility support for the GNOME 3 desktop.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ vte3-devel
+ pkgver
+ vte3-devel-0.34.2_1
+ run_depends
+
+ gtk+3-devel>=0
+ vte3-0.34.2_1
+
+ short_desc
+ vte3 development files
+ version
+ 0.34.2_1
+
+ warsow-data
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-07-29 08:39 CEST
+ filename
+ warsow-data-1.0_1.noarch.xbps
+ filename-sha256
+ d85dcad923e445ff9efa17b4052f8b27e68277de5c821ea83e4eb16aa24f4c78
+ filename-size
+ 503576784
+ homepage
+ http://www.warsow.net/
+ installed_size
+ 513945600
+ license
+ Warsow Content License - /usr/share/licenses/warsow/license.txt
+ long_desc
+
+ A free online multiplayer competitive FPS based on the Qfusion engine.
+
+ This package contains the data files.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ warsow-data
+ pkgver
+ warsow-data-1.0_1
+ short_desc
+ Warsow FPS data files
+ version
+ 1.0_1
+
+ webkit-gtk-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 13:39 CET
+ filename
+ webkit-gtk-devel-1.10.2_2.noarch.xbps
+ filename-sha256
+ dd2704a103ae178c84cf9be5de7e7961490803651010918e1b7ed624185d68ca
+ filename-size
+ 183008
+ homepage
+ http://webkitgtk.org/
+ installed_size
+ 2534087
+ license
+ LGPL-2.1, Simplified BSD (2 clause)
+ long_desc
+
+ WebKit is an open source web browser engine. WebKit is also the name of
+ the Mac OS X system framework version of the engine that's used by
+ Safari, Dashboard, Mail, and many other OS X applications. WebKit's HTML
+ and JavaScript code began as a branch of the KHTML and KJS libraries
+ from KDE.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ webkit-gtk-devel
+ pkgver
+ webkit-gtk-devel-1.10.2_2
+ run_depends
+
+ glib-devel>=0
+ gtk+-devel>=0
+ libsoup-devel>=0
+ webkit-gtk-1.10.2_2
+
+ short_desc
+ GTK+ port of the WebKit browser engine - development files
+ source-revisions
+ webkit-gtk3/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+webkit-gtk3/webkit-gtk-devel.template: 1af35d40ed859ae25a7978825815565bc1c81afb
+webkit-gtk3/webkit-gtk.template: 354ce373fa835f22cd76a6dfa0a7e19a47001342
+webkit-gtk3/webkit-gtk3-devel.template: 1af35d40ed859ae25a7978825815565bc1c81afb
+ version
+ 1.10.2_2
+
+ webkit-gtk3-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-08 13:39 CET
+ filename
+ webkit-gtk3-devel-1.10.2_2.noarch.xbps
+ filename-sha256
+ ae4876daefde705757fc2419ab809d60041099660874082342d8cc7a33c1f611
+ filename-size
+ 182856
+ homepage
+ http://webkitgtk.org/
+ installed_size
+ 2533678
+ license
+ LGPL-2.1, Simplified BSD (2 clause)
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (0a4564a28b4133873e1e22b84c7cb168df0bb42d)
+ pkgname
+ webkit-gtk3-devel
+ pkgver
+ webkit-gtk3-devel-1.10.2_2
+ run_depends
+
+ glib-devel>=0
+ gtk+3-devel>=3.6.0_2
+ libsoup-devel>=0
+ webkit-gtk3-1.10.2_2
+
+ short_desc
+ webkit-gtk3 development files
+ source-revisions
+ webkit-gtk3/template: fc26613f7388f6aee9070beb3cfe8f3b4a0cf8ce
+webkit-gtk3/webkit-gtk-devel.template: 1af35d40ed859ae25a7978825815565bc1c81afb
+webkit-gtk3/webkit-gtk.template: 354ce373fa835f22cd76a6dfa0a7e19a47001342
+webkit-gtk3/webkit-gtk3-devel.template: 1af35d40ed859ae25a7978825815565bc1c81afb
+ version
+ 1.10.2_2
+
+ weechat-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-20 13:50 CET
+ filename
+ weechat-devel-0.4.0_1.noarch.xbps
+ filename-sha256
+ d7cd8593b8a5611b192824216f37e513b0c74e61d70d12357f21d279b8017f38
+ filename-size
+ 12040
+ homepage
+ http://www.weechat.org
+ installed_size
+ 104908
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ weechat-devel
+ pkgver
+ weechat-devel-0.4.0_1
+ run_depends
+
+ ncurses-devel>=0
+
+ short_desc
+ Fast, light and extensible IRC client (curses UI) - development package
+ source-revisions
+ weechat/template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-aspell.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-devel.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-lua.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-perl.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-python.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-ruby.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+weechat/weechat-tcl.template: 3c5ad93abbbcf92c5c9d36a6cc426c5198d77036
+ version
+ 0.4.0_1
+
+ wget
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 00:25 CET
+ conf_files
+
+ /etc/wgetrc
+
+ filename
+ wget-1.14_2.armv6l.xbps
+ filename-sha256
+ 5f3bc6b614e3f83f53594c8edc4efe1f128ef1ad2a1602724e14f87b2f961d2a
+ filename-size
+ 443980
+ homepage
+ http://www.gnu.org/software/wget/wget.html
+ installed_size
+ 1919964
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ wget
+ pkgver
+ wget-1.14_2
+ run_depends
+
+ ca-certificates>=0
+ libssl>=1.0.0_1
+ zlib>=1.2.3_1
+ libidn>=1.10_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ The GNU wget utility
+ source-revisions
+ wget/template: 49c95611790d073f1c616ad14f7d67a21f3ac8e7
+ version
+ 1.14_2
+
+ wget-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-28 00:25 CET
+ filename
+ wget-dbg-1.14_2.armv6l.xbps
+ filename-sha256
+ 163af3a40f7f7b7e17992a3e791d616cc976c151cbc954b11054a61e8a63a176
+ filename-size
+ 373164
+ homepage
+ http://www.gnu.org/software/wget/wget.html
+ installed_size
+ 421514
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.org>
+ packaged-with
+ xbps-src-39 (0a5280de7e0f6e8b7e1716b93a77bdee5515a5b7)
+ pkgname
+ wget-dbg
+ pkgver
+ wget-dbg-1.14_2
+ short_desc
+ The GNU wget utility (debug files)
+ source-revisions
+ wget/template: 49c95611790d073f1c616ad14f7d67a21f3ac8e7
+ version
+ 1.14_2
+
+ wgetpaste
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 04 June, 2012, 14:41:28 UTC
+ filename
+ wgetpaste-2.20_1.noarch.xbps
+ filename-sha256
+ 591ad0738e741d861884567e8b80cb4faad8fac54554a3c9839b4856fbdb4e49
+ filename-size
+ 10924
+ homepage
+ http://wgetpaste.zlin.dk/
+ installed_size
+ 36864
+ license
+ Public domain
+ long_desc
+
+ A script that automates pasting to a number of pastebin services.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ wgetpaste
+ pkgver
+ wgetpaste-2.20_1
+ run_depends
+
+ bash>=0
+ wget>=0
+
+ short_desc
+ A script that automates pasting to a number of pastebin services
+ version
+ 2.20_1
+
+ which
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:50 CET
+ filename
+ which-2.20_2.armv6l.xbps
+ filename-sha256
+ 7a15b4e791356b3c70ea24c2f4f905b914a042caa8c725731760f95ddad274d0
+ filename-size
+ 11916
+ homepage
+ http://www.xs4all.nl/~carlo17/which/
+ installed_size
+ 18248
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ which
+ pkgver
+ which-2.20_2
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Displays where a particular program in your path is located
+ source-revisions
+ which/template: 52df6c9a3d86760281b9ede323e0c08f0c9666dd
+ version
+ 2.20_2
+
+ which-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:50 CET
+ filename
+ which-dbg-2.20_2.armv6l.xbps
+ filename-sha256
+ 657493e67d6ab4330ed9c1c9d0d510767a889466bf7eb3e227848e2188b62b94
+ filename-size
+ 16424
+ homepage
+ http://www.xs4all.nl/~carlo17/which/
+ installed_size
+ 21702
+ license
+ GPL-3
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ which-dbg
+ pkgver
+ which-dbg-2.20_2
+ short_desc
+ Displays where a particular program in your path is located (debug files)
+ source-revisions
+ which/template: 52df6c9a3d86760281b9ede323e0c08f0c9666dd
+ version
+ 2.20_2
+
+ wicd
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 09 July, 2012, 15:45:39 UTC
+ conf_files
+
+ /etc/dbus-1/system.d/wicd.conf
+ /etc/wicd/encryption/templates/active
+
+ filename
+ wicd-1.7.1_4.noarch.xbps
+ filename-sha256
+ cbcf5426cb822031438ea6fc32524cb2639ef54619b9e19ba4a9d994794b2d17
+ filename-size
+ 95048
+ homepage
+ http://wicd.sourceforge.net
+ installed_size
+ 790528
+ license
+ GPL-2
+ long_desc
+
+ Wicd is an open source wired and wireless network manager for Linux
+ which aims to provide a simple interface to connect to networks with a
+ wide variety of settings.
+
+ Some of Wicd's features include:
+ * No Gnome dependencies (although it does require GTK), so it is easy to
+ use in XFCE, Fluxbox, Openbox, Enlightenment, etc.
+ * Ability to connect to wired (Ethernet only, no PPPoE/DSL support yet)
+ and wireless networks
+ * Profiles for each wireless network and wired network
+ * Many encryption schemes, some of which include WEP/WPA/WPA2 (and you
+ can add your own)
+ * Remains compatible with wireless-tools
+ * Tray icon showing network activity and signal strength
+ * A full-featured console interface
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ wicd
+ pkgver
+ wicd-1.7.1_4
+ run_depends
+
+ dhcpcd>=0
+ wpa_supplicant>=0
+ wireless_tools>=0
+ ethtool>=0
+ dbus-python>=0
+ pygobject2>=0
+ python-urwid>=0.9.9
+
+ short_desc
+ Open source wired and wireless network manager
+ version
+ 1.7.1_4
+
+ wicd-gtk
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Monday 09 July, 2012, 15:45:38 UTC
+ filename
+ wicd-gtk-1.7.1_4.noarch.xbps
+ filename-sha256
+ 8b6594415dc9d59bb145197ae3f8912a69606a2c92e6aa285ade618352faa3f3
+ filename-size
+ 103668
+ homepage
+ http://wicd.sourceforge.net
+ installed_size
+ 606208
+ license
+ GPL-2
+ long_desc
+
+ Wicd is an open source wired and wireless network manager for Linux
+ which aims to provide a simple interface to connect to networks with a
+ wide variety of settings.
+
+ Some of Wicd's features include:
+ * No Gnome dependencies (although it does require GTK), so it is easy to
+ use in XFCE, Fluxbox, Openbox, Enlightenment, etc.
+ * Ability to connect to wired (Ethernet only, no PPPoE/DSL support yet)
+ and wireless networks
+ * Profiles for each wireless network and wired network
+ * Many encryption schemes, some of which include WEP/WPA/WPA2 (and you
+ can add your own)
+ * Remains compatible with wireless-tools
+ * Tray icon showing network activity and signal strength
+ * A full-featured console interface
+
+ This package contains the WICD GTK+ UI.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-29
+ pkgname
+ wicd-gtk
+ pkgver
+ wicd-gtk-1.7.1_4
+ run_depends
+
+ wicd>=1.7.1
+ pygtk>=0
+ notify-python>=0
+ shared-mime-info>=0
+ desktop-file-utils>=0
+ hicolor-icon-theme>=0
+
+ short_desc
+ Open source wired and wireless network manager - GTK UI
+ version
+ 1.7.1_4
+
+ wifi-firmware
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ wifi-firmware-1.2_1.noarch.xbps
+ filename-sha256
+ a690500976e9aad3d33c7bd40650cfeabe9a745849c60aa4dfa3e00b5834b246
+ filename-size
+ 968
+ installed_size
+ 0
+ long_desc
+
+ This is the wifi-firmware meta-package for installing the required firmware
+ files for some WiFi drivers in the Linux kernel.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ wifi-firmware
+ pkgver
+ wifi-firmware-1.2_1
+ run_depends
+
+ ipw2100-firmware>=0
+ ipw2200-firmware>=0
+ zd1211-firmware>=0
+
+ short_desc
+ WiFi firmware meta-package
+ version
+ 1.2_1
+
+ wine-mono
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-20 14:01 CEST
+ filename
+ wine-mono-0.0.4_1.noarch.xbps
+ filename-sha256
+ afb6e2d2282251885cb0137e19ecb5b750f2e25f3f73505c30993befc524aeca
+ filename-size
+ 43865432
+ homepage
+ http://wiki.winehq.org/Mono
+ installed_size
+ 44429312
+ license
+ MIT,GPL-3,LGPL-2
+ long_desc
+
+ Mono is an open-source and cross-platform implementation of the .NET Framework.
+ WINE can use a Windows build of Mono to run .NET applications.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-30
+ pkgname
+ wine-mono
+ pkgver
+ wine-mono-0.0.4_1
+ run_depends
+
+ wine-unstable>=0
+
+ short_desc
+ Mono built for running .NET applications with WINE.
+ version
+ 0.0.4_1
+
+ wireless_tools
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:32 CET
+ filename
+ wireless_tools-29_4.armv6l.xbps
+ filename-sha256
+ 63b9512eea55948912cbd7c6df15b60c12d8b180daa0c97d48501ce055b98c8a
+ filename-size
+ 61760
+ homepage
+ http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
+ installed_size
+ 141660
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ wireless_tools
+ pkgver
+ wireless_tools-29_4
+ run_depends
+
+ glibc>=2.8_1
+
+ short_desc
+ Set of tools allowing to manipulate the Wireless Extensions
+ source-revisions
+ wireless_tools/template: 8b0933f19bfbdab9511ed8ec721dcf05fe210100
+wireless_tools/wireless_tools-devel.template: 8b0933f19bfbdab9511ed8ec721dcf05fe210100
+ version
+ 29_4
+
+ wireless_tools-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:32 CET
+ filename
+ wireless_tools-dbg-29_4.armv6l.xbps
+ filename-sha256
+ 76956addd78cfd9ae942e71f6aca40351dd4c827ac8333cf9e1c30f788737b37
+ filename-size
+ 117280
+ homepage
+ http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
+ installed_size
+ 166703
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ wireless_tools-dbg
+ pkgver
+ wireless_tools-dbg-29_4
+ short_desc
+ Set of tools allowing to manipulate the Wireless Extensions (debug files)
+ source-revisions
+ wireless_tools/template: 8b0933f19bfbdab9511ed8ec721dcf05fe210100
+wireless_tools/wireless_tools-devel.template: 8b0933f19bfbdab9511ed8ec721dcf05fe210100
+ version
+ 29_4
+
+ wireless_tools-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:32 CET
+ filename
+ wireless_tools-devel-29_4.noarch.xbps
+ filename-sha256
+ 58e1b53cd2d339accddd95c7ed1d18964f6e098bfbb69c0de423a0263302820b
+ filename-size
+ 17840
+ homepage
+ http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
+ installed_size
+ 59758
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ wireless_tools-devel
+ pkgver
+ wireless_tools-devel-29_4
+ run_depends
+
+ wireless_tools>=29
+
+ short_desc
+ Set of tools allowing to manipulate the Wireless Extensions -- development files
+ source-revisions
+ wireless_tools/template: 8b0933f19bfbdab9511ed8ec721dcf05fe210100
+wireless_tools/wireless_tools-devel.template: 8b0933f19bfbdab9511ed8ec721dcf05fe210100
+ version
+ 29_4
+
+ wpa_supplicant
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:40 CET
+ conf_files
+
+ /etc/wpa_supplicant.conf
+
+ filename
+ wpa_supplicant-2.0_1.armv6l.xbps
+ filename-sha256
+ 11fa83fd596e8adcf45e04c22b5b9233efa0fb5b970a05c26c6e6ae9295f25c9
+ filename-size
+ 250244
+ homepage
+ http://hostap.epitest.fi
+ installed_size
+ 708152
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ wpa_supplicant
+ pkgver
+ wpa_supplicant-2.0_1
+ run_depends
+
+ readline>=6.0_1
+ glibc>=2.8_1
+ libssl>=1.0.0_1
+ libnl3>=3.2.1_1
+ dbus-libs>=1.2.10_1
+
+ short_desc
+ WPA/WPA2/IEEE 802.1X Supplicant
+ source-revisions
+ wpa_supplicant/files/config: 62f298738b903ddc449ba8c05619f9fa858c64e5
+wpa_supplicant/files/wpa_supplicant.conf: 935975666ea78576357bd0972ec2a21e4916e499
+wpa_supplicant/files/wpa_supplicant.tmpfiles.d: 935975666ea78576357bd0972ec2a21e4916e499
+wpa_supplicant/template: b37586354f8115d524e8f03b00f597df9c4cb366
+ version
+ 2.0_1
+
+ wpa_supplicant-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-16 10:40 CET
+ filename
+ wpa_supplicant-dbg-2.0_1.armv6l.xbps
+ filename-sha256
+ f85570e69f57843f00356b0bf570a0d4fccc3beb02729a39472611d585f99414
+ filename-size
+ 1006924
+ homepage
+ http://hostap.epitest.fi
+ installed_size
+ 1132305
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (e5b2138d026f6dcf6add5c5176664f7b8a1bfab7)
+ pkgname
+ wpa_supplicant-dbg
+ pkgver
+ wpa_supplicant-dbg-2.0_1
+ short_desc
+ WPA/WPA2/IEEE 802.1X Supplicant (debug files)
+ source-revisions
+ wpa_supplicant/files/config: 62f298738b903ddc449ba8c05619f9fa858c64e5
+wpa_supplicant/files/wpa_supplicant.conf: 935975666ea78576357bd0972ec2a21e4916e499
+wpa_supplicant/files/wpa_supplicant.tmpfiles.d: 935975666ea78576357bd0972ec2a21e4916e499
+wpa_supplicant/template: b37586354f8115d524e8f03b00f597df9c4cb366
+ version
+ 2.0_1
+
+ x264-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-25 12:30 CEST
+ filename
+ x264-devel-20120126.2245_2.noarch.xbps
+ filename-sha256
+ d403c5695cfa65ff71784e139aa28ab2b55b5792ed497f62199b2c4ee48a8668
+ filename-size
+ 13360
+ homepage
+ http://www.videolan.org/developers/x264.html
+ installed_size
+ 49152
+ license
+ GPL-2
+ long_desc
+
+ Stable snapshot version of x264, a high quality H.264 codec.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ x264-devel
+ pkgver
+ x264-devel-20120126.2245_2
+ run_depends
+
+ glibc-devel>=0
+ x264>=20120126.2245
+
+ short_desc
+ Free library for encoding H264/AVC video streams (development files)
+ version
+ 20120126.2245_2
+
+ xapian-core-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-26 03:32 CEST
+ filename
+ xapian-core-devel-1.2.12_1.noarch.xbps
+ filename-sha256
+ 51e9bf4299772beeeffc817332abb5ff40b90b2e86311809ee50dcb2ed3f36f1
+ filename-size
+ 1489572
+ homepage
+ http://www.xapian.org/
+ installed_size
+ 7479296
+ license
+ GPL-2
+ long_desc
+
+ Xapian is an Open Source Search Engine Library, released under the GPL. It's
+ written in C++, with bindings to allow use from Perl, Python, PHP, Java, Tcl,
+ C#, Ruby and Lua (so far!).
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xapian-core-devel
+ pkgver
+ xapian-core-devel-1.2.12_1
+ run_depends
+
+ libxapian>=1.2.12
+
+ short_desc
+ Open source search engine -- development files
+ version
+ 1.2.12_1
+
+ xar-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-08-23 16:32 CEST
+ filename
+ xar-devel-1.5.2_1.noarch.xbps
+ filename-sha256
+ 31f715d2ebfc67fef1828b11acce35a2be4457ad3b9cc781ba4231821a30c05e
+ filename-size
+ 4072
+ homepage
+ https://code.google.com/p/xar
+ installed_size
+ 8192
+ license
+ BSD
+ long_desc
+
+ The XAR project aims to provide an easily extensible archive format. Important
+ design decisions include an easily extensible XML table of contents for random
+ access to archived files, storing the toc at the beginning of the archive to
+ allow for efficient handling of streamed archives, the ability to handle files
+ of arbitrarily large sizes, the ability to choose independent encodings for
+ individual files in the archive, the ability to store checksums for individual
+ files in both compressed and uncompressed form, and the ability to query the
+ table of content's rich meta-data.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xar-devel
+ pkgver
+ xar-devel-1.5.2_1
+ run_depends
+
+ xar>=1.5.2
+
+ short_desc
+ eXtensible ARchiver format -- development files
+ version
+ 1.5.2_1
+
+ xbitmaps
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xbitmaps-1.0.1_1.noarch.xbps
+ filename-sha256
+ 720f26fac13e70c732809df656f67945f83a895a1e50f0a28bdf543d44211b39
+ filename-size
+ 22048
+ installed_size
+ 425984
+ long_desc
+
+ This package contains the common X11 bitmaps for direct inclusion in C.
+
+ This is from the modular X.org project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xbitmaps
+ pkgver
+ xbitmaps-1.0.1_1
+ short_desc
+ Common X11 bitmaps
+ version
+ 1.0.1_1
+
+ xbps
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:00 CET
+ conf_files
+
+ /etc/xbps/xbps.conf
+
+ filename
+ xbps-0.20_10.armv6l.xbps
+ filename-sha256
+ 438c46ee9eebdab7e87a35901816e23a16bc7d9ef269de5066b1cdf113aed5ae
+ filename-size
+ 50192
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 179967
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ xbps
+ pkgver
+ xbps-0.20_10
+ replaces
+
+ xbps>=0
+
+ run_depends
+
+ xbps-triggers>=0
+ glibc>=2.17_1
+ proplib>=0.1_1
+ libxbps-0.20_10
+ libarchive>=3.1.2_1
+
+ short_desc
+ The XBPS package system utilities
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ xbps-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:00 CET
+ filename
+ xbps-dbg-0.20_10.armv6l.xbps
+ filename-sha256
+ 15cac5ccfe7b18370b25b77216a2c1a67dacb3e1db8f7f0d376c23809c495b68
+ filename-size
+ 166532
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 234499
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ xbps-dbg
+ pkgver
+ xbps-dbg-0.20_10
+ short_desc
+ The XBPS package system utilities (debug files)
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ xbps-git
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ conf_files
+
+ /etc/xbps/xbps.conf
+
+ filename
+ xbps-git-20130306_1.armv6l.xbps
+ filename-sha256
+ d404c4a1ccccaa5b800672abb8ec3656ccb9585761e26b7ca4055e4d1561e0ae
+ filename-size
+ 51956
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 181298
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ xbps-git
+ pkgver
+ xbps-git-20130306_1
+ provides
+
+ xbps-20130306
+
+ replaces
+
+ xbps>=0
+ xbps-devel>=0
+
+ run_depends
+
+ xbps-triggers>=0
+ libxbps-git-20130306_1
+ glibc>=2.17_1
+ proplib>=0.1_1
+ libxbps>=0.19_1
+ libarchive>=3.1.2_1
+
+ short_desc
+ The XBPS package system (development branch)
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ xbps-git-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ xbps-git-dbg-20130306_1.armv6l.xbps
+ filename-sha256
+ 459c6e8453f027dc6fa2ac7edc744d531d35cd6fbf652a15dd0b3d240f779728
+ filename-size
+ 167384
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 236816
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ xbps-git-dbg
+ pkgver
+ xbps-git-dbg-20130306_1
+ short_desc
+ The XBPS package system (development branch) (debug files)
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ xbps-src
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-05 08:32 CET
+ conf_files
+
+ /etc/xbps/xbps-src.conf
+
+ filename
+ xbps-src-20130305_1.armv6l.xbps
+ filename-sha256
+ 1e8794be1a5cab1328279141eb626ea043962a73e2df0998b432a8d9be87762e
+ filename-size
+ 39144
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 147444
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (27ec4fc7db34dfb06b9860d70c7863c9318ce69f)
+ pkgname
+ xbps-src
+ pkgver
+ xbps-src-20130305_1
+ replaces
+
+ xbps-src-git>=0
+
+ run_depends
+
+ bash>=0
+ xbps-triggers>=0.54
+ fakeroot>=0
+ glibc>=2.8_1
+
+ short_desc
+ The XBPS package system - binary package builder
+ source-revisions
+ xbps-src/INSTALL: 3dfe171a4197f00c52017205738231a2c645edf2
+xbps-src/template: 4acc02167771d84427d725eb9c3a6d4404fea833
+ version
+ 20130305_1
+
+ xbps-src-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-05 08:32 CET
+ filename
+ xbps-src-dbg-20130305_1.armv6l.xbps
+ filename-sha256
+ 07a52f7f56c0b88118621439bde3dfc152e65b693e6a914dfe77fd76c40f0501
+ filename-size
+ 8352
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 11814
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (27ec4fc7db34dfb06b9860d70c7863c9318ce69f)
+ pkgname
+ xbps-src-dbg
+ pkgver
+ xbps-src-dbg-20130305_1
+ short_desc
+ The XBPS package system - binary package builder (debug files)
+ source-revisions
+ xbps-src/INSTALL: 3dfe171a4197f00c52017205738231a2c645edf2
+xbps-src/template: 4acc02167771d84427d725eb9c3a6d4404fea833
+ version
+ 20130305_1
+
+ xbps-src-utils
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 22:32 CET
+ filename
+ xbps-src-utils-20130221_1.armv6l.xbps
+ filename-sha256
+ 5cd775ca7ba33c5af76e549ef3acbfdd8ed049ddf998b8c0fd54f0787830c66c
+ filename-size
+ 15172
+ homepage
+ https://github.com/davehome/xbps-src-utils
+ installed_size
+ 33324
+ license
+ Simplified BSD
+ long_desc
+
+ Various tools for xbps-src in C (like repo-checkvers)
+
+ * The xbps-repo-checkvers program shows which XBPS binary packages need to be
+ rebuilt on your system by comparing the versions of the binary packages which
+ are available in the XBPS repositories registered in your xbps.conf with the
+ latest available versions of them in the source package tree.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ xbps-src-utils
+ pkgver
+ xbps-src-utils-20130221_1
+ run_depends
+
+ libxbps>=0.19_1
+ proplib>=0.1_1
+ glibc>=2.17_1
+
+ short_desc
+ Various tools for xbps-src in C (like repo-checkvers)
+ source-revisions
+ xbps-src-utils/template: b2c804cbf794c2a1b5ccd5bae86da1ef77ab669d
+ version
+ 20130221_1
+
+ xbps-src-utils-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 22:32 CET
+ filename
+ xbps-src-utils-dbg-20130221_1.armv6l.xbps
+ filename-sha256
+ df1cd2cc10396b21c420f12d92bf2a709fafb242b1054b1e092b0d71bf3ce9a8
+ filename-size
+ 52992
+ homepage
+ https://github.com/davehome/xbps-src-utils
+ installed_size
+ 61973
+ license
+ Simplified BSD
+ long_desc
+
+ Various tools for xbps-src in C (like repo-checkvers)
+
+ * The xbps-repo-checkvers program shows which XBPS binary packages need to be
+ rebuilt on your system by comparing the versions of the binary packages which
+ are available in the XBPS repositories registered in your xbps.conf with the
+ latest available versions of them in the source package tree.
+ maintainer
+ davehome <davehome@redthumb.info.tm>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ xbps-src-utils-dbg
+ pkgver
+ xbps-src-utils-dbg-20130221_1
+ short_desc
+ Various tools for xbps-src in C (like repo-checkvers) (debug files)
+ source-revisions
+ xbps-src-utils/template: b2c804cbf794c2a1b5ccd5bae86da1ef77ab669d
+ version
+ 20130221_1
+
+ xbps-static
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 15:00 CET
+ filename
+ xbps-static-0.20_10.armv6l.xbps
+ filename-sha256
+ 173450de5d2ef9d9d29c6c51a29cfe7eb191caa4a05f9883a9e6d33ece496ffa
+ filename-size
+ 1468940
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 18397672
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ xbps-static
+ pkgver
+ xbps-static-0.20_10
+ replaces
+
+ xbps-static>=0
+
+ run_depends
+
+ xbps-triggers>=0
+
+ short_desc
+ The XBPS package system utilities - static binaries
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ xbps-static-git
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ xbps-static-git-20130306_1.armv6l.xbps
+ filename-sha256
+ 293cc6dbdff236a11e278564cd0940f3ea36333325838fbfc55e2f0138df01a2
+ filename-size
+ 1482356
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 18406015
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ xbps-static-git
+ pkgver
+ xbps-static-git-20130306_1
+ provides
+
+ xbps-static-20130306
+
+ replaces
+
+ xbps-static>=0
+ xbps-devel-static>=0
+
+ run_depends
+
+ xbps-triggers>=0
+
+ short_desc
+ xbps-git static binaries
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ xbps-tests
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-26 16:49 CET
+ filename
+ xbps-tests-0.20_10.armv6l.xbps
+ filename-sha256
+ 5bcbf3ee9f41de168cb59103a427510ef7641245de4d238bf4915f739d2b46b6
+ filename-size
+ 9072
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 36795
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (f78a8fc8193c3def8f3ac8a2cd01b82989fb5b2f)
+ pkgname
+ xbps-tests
+ pkgver
+ xbps-tests-0.20_10
+ replaces
+
+ xbps<0.16.3_2
+ xbps-tests>=0
+
+ run_depends
+
+ proplib>=0.1_1
+ libxbps-0.20_10
+ atf-libs>=0.16_1
+ glibc>=2.17_1
+
+ short_desc
+ The XBPS package system utilities - Kyua testsuite
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ xbps-tests-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-26 16:49 CET
+ filename
+ xbps-tests-dbg-0.20_10.armv6l.xbps
+ filename-sha256
+ e399e6fd2d5587ffc6c266d54aa371e8de935c2033cbe0a679997f4dd77e9782
+ filename-size
+ 23964
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 50174
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (f78a8fc8193c3def8f3ac8a2cd01b82989fb5b2f)
+ pkgname
+ xbps-tests-dbg
+ pkgver
+ xbps-tests-dbg-0.20_10
+ short_desc
+ The XBPS package system utilities - Kyua testsuite (debug files)
+ source-revisions
+ xbps/libxbps-devel.template: 1f2f604ababf190cc16e95bbe22806ec58fa24e1
+xbps/libxbps.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/patches/0001-Fix-package-conflicts-detection-regression-from-b913.patch: cfa3d3d1ac79ecddbf43d6b9fa784fdfdee52e86
+xbps/patches/0002-xbps_fetch_file-don-t-check-for-file-truncation-if-s.patch: bd27f2e794392d22d45b4e33b95e827531488a0b
+xbps/patches/0003-Ignore-package-conflicts-against-themselves-due-to-v.patch: fcf44861586f712cef44c150b6046d759b0ec9ec
+xbps/patches/0004-Properly-fix-fa1d543dfae2383745d4789e51874a33ef6b717.patch: b2bc51d6471988d202f5997a5806e503ca4b8cfb
+xbps/patches/0005-xbps_remove_pkg-ignore-ELOOP-in-realpath-when-checki.patch: f9883ca543a7d7835c81c24070bab7f383e6cf7a
+xbps/patches/0006-lib-initend.c-print-dbg-msg-about-successful-vpkg-co.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0007-Workaround-fix-for-xbps-install-yf-xbps-xbps-git.patch: 4bf788e170adde8a1f2b65b128dacc210c09457e
+xbps/patches/0008-lib-compat-vasprintf.c-make-this-build-and-fix-sign-.patch: 280090ed60090cb5e55cdb8ce4ac882b43f3b136
+xbps/patches/0009-Remove-another-transaction-obj-from-pkgdb-and-make-x.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0010-libxbps-when-resolving-deps-ignore-all-of-them-that-.patch: ee04a4e1c2ed3a1021ec1cb6bd25c371216192fa
+xbps/patches/0011-Add-libarchive-compat-definitions-for-3.1.2.patch: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/template: 8e91aef04e630d0cf4c9136b2e5bf02f61241e41
+xbps/xbps-static.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+xbps/xbps-tests.template: 64143f6adb084d7997b774b8cdb083bff3ff88e9
+ version
+ 0.20_10
+
+ xbps-tests-git
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ xbps-tests-git-20130306_1.armv6l.xbps
+ filename-sha256
+ 54bb604928d424089c262bc8ac483a25970926ac5c28fbc28607eeac12dc80c1
+ filename-size
+ 8680
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 36911
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ xbps-tests-git
+ pkgver
+ xbps-tests-git-20130306_1
+ provides
+
+ xbps-tests-20130306
+
+ replaces
+
+ xbps-tests>=0
+
+ run_depends
+
+ libxbps>=20130306
+ proplib>=0.1_1
+ atf-libs>=0.16_1
+ glibc>=2.17_1
+
+ short_desc
+ The XBPS package system (development branch) - Kyua testsuite
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ xbps-tests-git-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-03-06 09:34 CET
+ filename
+ xbps-tests-git-dbg-20130306_1.armv6l.xbps
+ filename-sha256
+ 659fbf764f49717b2135343ded8aac8d57259d3be9f1afc049710b5a0a210a65
+ filename-size
+ 23448
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 50214
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-41 (2d24a88448442812447670c2dc59976465636f4a)
+ pkgname
+ xbps-tests-git-dbg
+ pkgver
+ xbps-tests-git-dbg-20130306_1
+ short_desc
+ The XBPS package system (development branch) - Kyua testsuite (debug files)
+ source-revisions
+ xbps-git/INSTALL: d90a6b1463bf9a86976c0cb4c5823a385dea4c70
+xbps-git/libxbps-devel-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/libxbps-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/template: 99c3ef61ffd71aeb9c087ab92efbc10fb555b612
+xbps-git/xbps-static-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+xbps-git/xbps-tests-git.template: 3848c927a9fea79a4bee9f4b84f867cb4982da38
+ version
+ 20130306_1
+
+ xbps-triggers
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-25 23:34 CET
+ filename
+ xbps-triggers-0.61_1.noarch.xbps
+ filename-sha256
+ 83586c37376380bf45f6d26b2cbff6c7c4791954df5e755c226f57471bb3bd3e
+ filename-size
+ 8680
+ homepage
+ http://code.google.com/p/xbps
+ installed_size
+ 29690
+ license
+ Simplified BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ xbps-triggers
+ pkgver
+ xbps-triggers-0.61_1
+ short_desc
+ The XBPS triggers for Void Linux
+ source-revisions
+ xbps-triggers/files/dkms: ca88d3e0001f19b611bfc0a0a8e8dc92b0bf6b90
+xbps-triggers/files/gconf-schemas: 6c0ea75fdd381097ba9668c7395018aa819f77e2
+xbps-triggers/files/gio-modules: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/files/gsettings-schemas: a95ea214881ae5b0122df52157d9b2b887e1f88f
+xbps-triggers/files/gtk-icon-cache: 6c83e539f29d7c19f9eed9d665a9cdca1d018f37
+xbps-triggers/files/gtk-immodules: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/files/gtk-pixbuf-loaders: 22bc9ffd02571bca1af73a50b62920accffb9c68
+xbps-triggers/files/gtk3-immodules: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/files/info-files: 41ec5ed3924a6124a6bc3b0765d68bee622ff67b
+xbps-triggers/files/kernel-hooks: 4060d427fa82b28db01026e55ed1c9817b3a0393
+xbps-triggers/files/mimedb: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/files/mkdirs: 2493c50318d5d16b0de23f6e1bb5f61122cdef02
+xbps-triggers/files/pango-modules: b2d41666c3b852fec72f807ae7d31dcb7beab58a
+xbps-triggers/files/pycompile: 08652c703aae8ad920c9b197e7fd1d2fd8bcb2e1
+xbps-triggers/files/register-shell: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/files/system-accounts: 41ec5ed3924a6124a6bc3b0765d68bee622ff67b
+xbps-triggers/files/systemd-service: 4f9d0e3630b77adea1435bd5258056d785967f67
+xbps-triggers/files/update-desktopdb: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/files/virtualpkg: 10336524496cd24d76cd1a99f59bfa129859763b
+xbps-triggers/files/x11-fonts: 7f3ab8ffb7ab76ab9f14a1aad68f91dc3ab24eaf
+xbps-triggers/files/xml-catalog: d05d16ad3dc9bd5de0787d34c3987addc34298d3
+xbps-triggers/template: a7827f1e9f67dde14af31f1367381ee2a9ebf093
+ version
+ 0.61_1
+
+ xcb-proto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-06 13:58 CEST
+ filename
+ xcb-proto-1.8_1.noarch.xbps
+ filename-sha256
+ 6b595de6d36dd03ba447db6ae702e0b6694e48739c61e1711c46c192a9c5f6aa
+ filename-size
+ 71248
+ installed_size
+ 591823
+ long_desc
+
+ The xcb-proto package provides the XML-XCB (X C Bindings) protocol
+ descriptions that libxcb uses to generate the majority of its code and API.
+ We provide them separately from libxcb to allow reuse by other projects,
+ such as additional language bindings, protocol dissectors, or
+ documentation generators.
+
+ Separation of XCB's transport and protocol layers simplifies both
+ writing extensions and client-side support for extensions.
+ By contrast, with the xlib infrastructure, client-side support for
+ new extensions requires significant duplication of effort. With XCB and
+ the XML-XCB protocol descriptions, client-side support for a new
+ extension requires only an XML description of the extension--and not a
+ single line of code.
+
+ Python libraries: xcb-proto also contains language-independent Python
+ libraries that are used to parse an XML description and create objects
+ used by Python code generators in individual language bindings.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xcb-proto
+ pkgver
+ xcb-proto-1.8_1
+ run_depends
+
+ python>=0
+
+ short_desc
+ XML-XCB (X C Bindings) protocol descriptions
+ version
+ 1.8_1
+
+ xcb-util-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-17 15:30 UTC
+ filename
+ xcb-util-devel-0.3.9_1.noarch.xbps
+ filename-sha256
+ 61d6926bfd6c3b9783604759648cf0a06fc31c614de8380908278462ee796a9f
+ filename-size
+ 4760
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 36864
+ license
+ GPL-2
+ long_desc
+
+ The xcb-util module provides a number of libraries which sit on top of
+ libxcb, the core X protocol library, and some of the extension
+ libraries. These experimental libraries provide convenience functions
+ and interfaces which make the raw X protocol more usable. Some of the
+ libraries also provide client-side code which is not strictly part of
+ the X protocol but which have traditionally been provided by Xlib.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xcb-util-devel
+ pkgver
+ xcb-util-devel-0.3.9_1
+ run_depends
+
+ libxcb-devel>=0
+ xcb-util>=0.3.9
+
+ short_desc
+ xcb-util -- development files
+ version
+ 0.3.9_1
+
+ xcb-util-image-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-17 17:43 CEST
+ filename
+ xcb-util-image-devel-0.3.9_2.noarch.xbps
+ filename-sha256
+ f8fb609f071790a5dcdc46aac615541d7dabb30c525ec9ad0f81764b9156a588
+ filename-size
+ 9372
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 69632
+ license
+ GPL-2
+ long_desc
+
+ This package provides a port of Xlib's XImage and XShmImage functions for XCB.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xcb-util-image-devel
+ pkgver
+ xcb-util-image-devel-0.3.9_2
+ run_depends
+
+ libxcb-devel>=0
+ xcb-util-image>=0.3.9
+
+ short_desc
+ xcb-util-image -- development files
+ version
+ 0.3.9_2
+
+ xcb-util-keysyms-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-17 15:42 UTC
+ filename
+ xcb-util-keysyms-devel-0.3.9_1.noarch.xbps
+ filename-sha256
+ 9b8ef40f98105df234b0c94e9157bd9d9b645141d07cd00cebaede9e7817ea89
+ filename-size
+ 2152
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 8192
+ license
+ GPL-2
+ long_desc
+
+ This package provides a port for Standard X key constants and conversion
+ to/from keycodes for XCB.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xcb-util-keysyms-devel
+ pkgver
+ xcb-util-keysyms-devel-0.3.9_1
+ run_depends
+
+ libxcb-devel>=0
+ xcb-util-keysyms>=0.3.9
+
+ short_desc
+ xcb-util-keysyms -- development files
+ version
+ 0.3.9_1
+
+ xcb-util-wm-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-17 15:47 UTC
+ filename
+ xcb-util-wm-devel-0.3.9_1.noarch.xbps
+ filename-sha256
+ fa0fa36b2f486c5d916d136e3c6e6584ccdbc898a3bb625a6d6cf6abffaef31b
+ filename-size
+ 15568
+ homepage
+ http://xcb.freedesktop.org
+ installed_size
+ 151552
+ license
+ GPL-2
+ long_desc
+
+ This package provides client and window-manager helpers for ICCCM for XCB.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xcb-util-wm-devel
+ pkgver
+ xcb-util-wm-devel-0.3.9_1
+ run_depends
+
+ libxcb-devel>=0
+ xcb-util-wm>=0.3.9
+
+ short_desc
+ xcb-util-wm -- development files
+ version
+ 0.3.9_1
+
+ xcmiscproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:21:54 UTC
+ filename
+ xcmiscproto-1.2.0_1.noarch.xbps
+ filename-sha256
+ 5c46be349f518b67ec15f206129b9ba1b886d7402f78873d5c79c3b77d85e18f
+ filename-size
+ 2584
+ installed_size
+ 12288
+ long_desc
+
+ This provides the XCMisc extension headers from modular X.org project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xcmiscproto
+ pkgver
+ xcmiscproto-1.2.0_1
+ short_desc
+ XCMisc extension headers from X.org
+ version
+ 1.2.0_1
+
+ xdg-utils
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xdg-utils-1.0.2_1.noarch.xbps
+ filename-sha256
+ 5ab3c5982fe808adbe3cd29d0d2b83b928753d53de74749b39ce9723d4bfc2db
+ filename-size
+ 39700
+ installed_size
+ 196608
+ long_desc
+
+ The xdg-utils package is a set of simple scripts that provide basic
+ desktop integration functions for any Free Desktop, such as Linux.
+
+ They are intended to provide a set of defacto standards. This means that:
+
+ * Third party software developers can rely on these xdg-utils for
+ all of their simple integration needs.
+
+ * Developers of desktop environments can make sure that their
+ environments are well supported.
+
+ If a desktop developer wants to be certain that their environment
+ functions with all third party software, then can simply make sure
+ that these utilities work properly in their environment. This will
+ hopefully mean that 'third tier' window managers such as XFCE and
+ Blackbox can reach full parity with Gnome and KDE in terms of third
+ party ISV support.
+
+ * Distribution vendors can provide custom versions of these utilities
+
+ If a distribution vendor wishes to have unusual systems, they can
+ provide custom scripts, and the third party software should still
+ continue to work.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xdg-utils
+ pkgver
+ xdg-utils-1.0.2_1
+ short_desc
+ Tools to assist applications with various desktop integration tasks
+ version
+ 1.0.2_1
+
+ xdot
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-28 09:28 CET
+ filename
+ xdot-20130128_1.noarch.xbps
+ filename-sha256
+ c0bc520f325a644e0db73e3e57dca582979d37f8c51c52c0b1d2a50a9c8fadd5
+ filename-size
+ 18716
+ homepage
+ https://code.google.com/p/jrfonseca/wiki/XDot
+ installed_size
+ 92252
+ license
+ GPL-3
+ long_desc
+
+ xdot is an interactive viewer for graphs written in Graphviz's dot language.
+
+ It uses internally the graphviz's xdot output format as an intermediate
+ format, and PyGTK and Cairo for rendering.
+
+ xdot can be used either as a standalone application from command line, or as
+ a library embedded in your python application.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ xdot
+ pkgver
+ xdot-20130128_1
+ run_depends
+
+ graphviz>=0
+ pygtk>=0
+ python-distribute>=0
+ xbps-triggers>=0.46
+
+ short_desc
+ Interactive viewer for Graphviz dot files
+ source-revisions
+ xdot/template: 5df3930161f51aafb596e75863b63e2f7259db75
+ version
+ 20130128_1
+
+ xextproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:21:35 UTC
+ filename
+ xextproto-7.2.0_1.noarch.xbps
+ filename-sha256
+ 7d79bd12ca8b5f94a3883baf43edb6a1164c34c0d3569624f0b70fa5fdd87efc
+ filename-size
+ 132024
+ installed_size
+ 1335296
+ long_desc
+
+ This provides the XExt extension headers from modular X.org project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xextproto
+ pkgver
+ xextproto-7.2.0_1
+ short_desc
+ XExt extension headers from X.org
+ version
+ 7.2.0_1
+
+ xf86-input-joystick-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-17 10:23 CET
+ filename
+ xf86-input-joystick-devel-1.6.2_1.noarch.xbps
+ filename-sha256
+ e9013741c0e4e7c1d9854b7edeec0d405dd9ab41f44029739426cf1d00a01b9c
+ filename-size
+ 2784
+ homepage
+ http://xorg.freedesktop.org/
+ installed_size
+ 5011
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ xf86-input-joystick-devel
+ pkgver
+ xf86-input-joystick-devel-1.6.2_1
+ short_desc
+ Joystick Input driver for Xorg -- development files
+ source-revisions
+ xf86-input-joystick/files/50-joystick.conf: d2c5225f2a3acabdeb7deb2cafb490935266481e
+xf86-input-joystick/template: 5386c016f21bf121ba91e21b05cd8ef6fdb8a5b1
+xf86-input-joystick/xf86-input-joystick-devel.template: 5386c016f21bf121ba91e21b05cd8ef6fdb8a5b1
+ version
+ 1.6.2_1
+
+ xf86-input-synaptics-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-01 14:05 CET
+ filename
+ xf86-input-synaptics-devel-1.6.3_1.noarch.xbps
+ filename-sha256
+ 6611cf07fb435a5b5cf0c2c6bedc966e7673e0d41b3a9588aaf7040e637161ad
+ filename-size
+ 3484
+ homepage
+ http://www.x.org/
+ installed_size
+ 9017
+ license
+ MIT
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (1402c58dc37665c12312cf9e6be5a326612d5063)
+ pkgname
+ xf86-input-synaptics-devel
+ pkgver
+ xf86-input-synaptics-devel-1.6.3_1
+ short_desc
+ xf86-input-synaptics development files
+ source-revisions
+ xf86-input-synaptics/template: 1bfabf284593325bbdbea6f9e2b83f3d017fbec1
+xf86-input-synaptics/xf86-input-synaptics-devel.template: bb70a6e91ceb348184cc5ec007bcf4225a42e456
+ version
+ 1.6.3_1
+
+ xf86-input-wacom-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-04 06:55 CET
+ filename
+ xf86-input-wacom-devel-0.19.0_1.noarch.xbps
+ filename-sha256
+ 433c8c4672bd554b4606aab8c2efc26d2fd2a9d509663007b1561eacaac87b14
+ filename-size
+ 5220
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 14894
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ xf86-input-wacom-devel
+ pkgver
+ xf86-input-wacom-devel-0.19.0_1
+ short_desc
+ Xorg Wacom tablet input driver -- development files
+ source-revisions
+ xf86-input-wacom/files/70-wacom.rules: f3ba7a4117e0fd165d9f1b7769aa94995072104a
+xf86-input-wacom/template: 20c0b59c44e4fce26218855126650d95f35ba7d7
+xf86-input-wacom/xf86-input-wacom-devel.template: 20c0b59c44e4fce26218855126650d95f35ba7d7
+ version
+ 0.19.0_1
+
+ xf86bigfontproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:23:08 UTC
+ filename
+ xf86bigfontproto-1.2.0_1.noarch.xbps
+ filename-sha256
+ cff125f174591e9d64cf75cb0d615f3b168efb6ee976c15d0f64367fd32b6784
+ filename-size
+ 2552
+ installed_size
+ 16384
+ long_desc
+
+ This provides the XF86BigFont extension headers from modular X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xf86bigfontproto
+ pkgver
+ xf86bigfontproto-1.2.0_1
+ short_desc
+ XF86BigFont extension headers from X.org
+ version
+ 1.2.0_1
+
+ xf86dgaproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xf86dgaproto-2.1_1.noarch.xbps
+ filename-sha256
+ 16d6cbc401469a9eb7935044b8ddf68a94a690dfedad08a903e4d50be54e5e20
+ filename-size
+ 4660
+ installed_size
+ 40960
+ long_desc
+
+ This package provides the XF86DGA extension headers from modular X.org.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xf86dgaproto
+ pkgver
+ xf86dgaproto-2.1_1
+ short_desc
+ XF86DGA extension headers
+ version
+ 2.1_1
+
+ xf86driproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:20:52 UTC
+ filename
+ xf86driproto-2.1.1_1.noarch.xbps
+ filename-sha256
+ e144c42167f79dd163f88b51b6249fa17b06a35c5c60628112b9ff20c4289467
+ filename-size
+ 4220
+ homepage
+ http://xorg.freedesktop.org/wiki/
+ installed_size
+ 28672
+ license
+ MIT
+ long_desc
+
+ This provides the XF86DRI extension headers from modular X.org X11
+ project.
+
+ The headers contain the types and functions that define the interface
+ between a DRI (direct rendering infrastructure) driver and driver
+ loader.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xf86driproto
+ pkgver
+ xf86driproto-2.1.1_1
+ short_desc
+ XF86DRI extension headers from modular X.org
+ version
+ 2.1.1_1
+
+ xf86miscproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xf86miscproto-0.9.2_1.noarch.xbps
+ filename-sha256
+ 12be81ce016da35ca9a2c578b2219fa1a640dbe9d206bf1de4f976fe2cf3c912
+ filename-size
+ 3456
+ installed_size
+ 16384
+ long_desc
+
+ This provides the XF86Misc extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xf86miscproto
+ pkgver
+ xf86miscproto-0.9.2_1
+ short_desc
+ XF86Misc extension headers from modular X.org
+ version
+ 0.9.2_1
+
+ xf86vidmodeproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 15:36:44 UTC
+ filename
+ xf86vidmodeproto-2.3_1.noarch.xbps
+ filename-sha256
+ 7d35fed40572f7f63a55a39da09b0d79bc34526e5484ff8f9b36836a350e77a4
+ filename-size
+ 4228
+ installed_size
+ 32768
+ long_desc
+
+ This provides the XF86VidMode extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xf86vidmodeproto
+ pkgver
+ xf86vidmodeproto-2.3_1
+ short_desc
+ XF86VidMode extension headers from modular X.org
+ version
+ 2.3_1
+
+ xfce4
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-02 12:06 CET
+ filename
+ xfce4-4.10.0_3.noarch.xbps
+ filename-sha256
+ 2d8d0841f23111516db22ec75e03b28a497ed3191ab095db4abc0efcdc5ed7ee
+ filename-size
+ 904
+ homepage
+ http://xfce.org
+ installed_size
+ 0
+ license
+ GPL-2, LGPL-2.1, BSD
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-33 (aea8b942918f532857b55d88e30435afcc14832b)
+ pkgname
+ xfce4
+ pkgver
+ xfce4-4.10.0_3
+ run_depends
+
+ xfce4-appfinder>=4.10.0
+ xfce4-mixer>=4.8.0_3
+ xfce4-panel>=4.10.0
+ xfce4-session>=4.10.0
+ xfce4-settings>=4.10.0
+ xfconf>=4.10.0
+ xfdesktop>=4.10.0
+ xfwm4>=4.10.0
+ xfwm4-themes>=4.10.0
+ xfce4-power-manager>=1.2.0
+ xfce4-terminal>=0
+ Thunar>=1.4.0
+ thunar-volman>=0.8.0
+ exo>=0.8.0
+ orage>=4.8.3_1
+ ristretto>=0.6.0
+ gtk-xfce-engine>=3.0.0
+ notification-daemon>=0.2.2_1
+ tumbler>=0.1.25
+ xdg-user-dirs-gtk>=0
+
+ short_desc
+ The XFCE desktop environment meta package
+ source-revisions
+ xfce4/template: 6b1bbca0cddcb4522237e32c85760de2ff3b08e2
+ version
+ 4.10.0_3
+
+ xfce4-panel-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xfce4-panel-devel-4.10.0_1.noarch.xbps
+ filename-sha256
+ f8cd092a6ff0def84d67d4e18524b1a1bfb77f0dfb0b3a8f2b1ca297fb109f6b
+ filename-size
+ 44472
+ homepage
+ http://www.xfce.org/
+ installed_size
+ 585728
+ license
+ GPL-2
+ long_desc
+
+ This package includes the panel for the Xfce desktop environment.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xfce4-panel-devel
+ pkgver
+ xfce4-panel-devel-4.10.0_1
+ run_depends
+
+ glib-devel>=0
+ gtk+-devel>=0
+ libxfce4util-devel>=0
+ xfce4-panel>=4.10.0
+
+ short_desc
+ Next generation panel for Xfce - development files
+ version
+ 4.10.0_1
+
+ xfce4-session-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-11 10:56 CEST
+ filename
+ xfce4-session-devel-4.10.0_2.noarch.xbps
+ filename-sha256
+ 1b20cb26bf6ef84c5091dea5f86e57d183b19850e7ea4bdcec4a71d61e309e11
+ filename-size
+ 2728
+ homepage
+ http://xfce.org
+ installed_size
+ 6919
+ license
+ GPL-2
+ long_desc
+
+ xfce4-session is the session manager for the Xfce desktop environment.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ xfce4-session-devel
+ pkgver
+ xfce4-session-devel-4.10.0_2
+ run_depends
+
+ libxfce4ui-devel>=0
+ xfconf-devel>=0
+ xfce4-session>=4.10.0
+
+ short_desc
+ Xfce session manager - development files
+ version
+ 4.10.0_2
+
+ xfconf-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 27 May, 2012, 10:37:13 UTC
+ filename
+ xfconf-devel-4.10.0_1.noarch.xbps
+ filename-sha256
+ febbfeab081a566df51251c4da7b1850e7227c50e6c5a4b7cd8ef143fd659365
+ filename-size
+ 22752
+ homepage
+ http://xfce.org
+ installed_size
+ 339968
+ license
+ GPL-2, LGPL-2.1
+ long_desc
+
+ Xfconf is a hierarchical (tree-like) configuration system where the
+ immediate child nodes of the root are called channels. All settings
+ beneath the channel nodes are called properties.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xfconf-devel
+ pkgver
+ xfconf-devel-4.10.0_1
+ run_depends
+
+ dbus-glib-devel>=0
+ xfconf>=4.10.0
+
+ short_desc
+ Xfce hierarchical (tree-like) configuration system - development files
+ version
+ 4.10.0_1
+
+ xfsprogs
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:32 CET
+ filename
+ xfsprogs-3.1.10_1.armv6l.xbps
+ filename-sha256
+ ebff3591ca619c40039d5dc9417f2e19ab5c4c758b735dc318aff19074bf444d
+ filename-size
+ 544864
+ homepage
+ http://oss.sgi.com/projects/xfs/
+ installed_size
+ 2844783
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ xfsprogs
+ pkgver
+ xfsprogs-3.1.10_1
+ replaces
+
+ xfsprogs-libs>=0
+
+ run_depends
+
+ libuuid>=2.18_1
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+ readline>=6.0_1
+ libblkid>=2.18_1
+
+ short_desc
+ Utilities for managing the XFS filesystem
+ source-revisions
+ xfsprogs/template: 854642172e2deadf4c7666c9e1c9c7b2345ca047
+xfsprogs/xfsprogs-devel.template: e48a8d3344622e4095624e711be1d84e95aaa537
+ version
+ 3.1.10_1
+
+ xfsprogs-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-11 13:32 CET
+ filename
+ xfsprogs-dbg-3.1.10_1.armv6l.xbps
+ filename-sha256
+ 257c350db8509e6aa8cc540a72787d915535cf825c2a8db8d4df690d73baeff3
+ filename-size
+ 3539084
+ homepage
+ http://oss.sgi.com/projects/xfs/
+ installed_size
+ 3993715
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ xfsprogs-dbg
+ pkgver
+ xfsprogs-dbg-3.1.10_1
+ short_desc
+ Utilities for managing the XFS filesystem (debug files)
+ source-revisions
+ xfsprogs/template: 854642172e2deadf4c7666c9e1c9c7b2345ca047
+xfsprogs/xfsprogs-devel.template: e48a8d3344622e4095624e711be1d84e95aaa537
+ version
+ 3.1.10_1
+
+ xfsprogs-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-14 09:29 CET
+ filename
+ xfsprogs-devel-3.1.10_1.noarch.xbps
+ filename-sha256
+ 2db1a983be03d563e55c92bceefe910545f2fa7ce6615b9578413b8cdca17501
+ filename-size
+ 19896
+ homepage
+ http://oss.sgi.com/projects/xfs/
+ installed_size
+ 48109
+ license
+ LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (2514d30dcc15763a15b04cab30f3b97017b30859)
+ pkgname
+ xfsprogs-devel
+ pkgver
+ xfsprogs-devel-3.1.10_1
+ run_depends
+
+ libuuid-devel>=0
+ xfsprogs>=3.1.10
+
+ short_desc
+ Utilities for managing the XFS filesystem -- development files
+ source-revisions
+ xfsprogs/template: e48a8d3344622e4095624e711be1d84e95aaa537
+xfsprogs/xfsprogs-devel.template: e48a8d3344622e4095624e711be1d84e95aaa537
+ version
+ 3.1.10_1
+
+ xfwm4-themes
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xfwm4-themes-4.10.0_1.noarch.xbps
+ filename-sha256
+ 54b2341e318e7f1d74665820fd99f3e311dd9fa3b3682681a90397fc3f3533c3
+ filename-size
+ 542008
+ homepage
+ http://xfce.org
+ installed_size
+ 21176320
+ license
+ GPL-2
+ long_desc
+
+ xfwm4-themes is a collection of themes for the XFCE window manager.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xfwm4-themes
+ pkgver
+ xfwm4-themes-4.10.0_1
+ short_desc
+ Themes for the XFCE window manager
+ version
+ 4.10.0_1
+
+ xineramaproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 08:22:26 UTC
+ filename
+ xineramaproto-1.2_1.noarch.xbps
+ filename-sha256
+ ed6856d4e1df99c7fcc363707b64e10fa70d9d42ecdeb01007a69a7773f670aa
+ filename-size
+ 2936
+ installed_size
+ 12288
+ long_desc
+
+ This provides the Xinerama extension headers from modular X.org X11
+ project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xineramaproto
+ pkgver
+ xineramaproto-1.2_1
+ short_desc
+ Xinerama extension headers from X.org
+ version
+ 1.2_1
+
+ xkeyboard-config
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-01 14:01 CET
+ filename
+ xkeyboard-config-2.8_1.noarch.xbps
+ filename-sha256
+ a5dee819868b662ec33d1bd86a969c6d2921ff844b44f08e5a8d7aed52bcea98
+ filename-size
+ 556808
+ homepage
+ http://www.freedesktop.org/wiki/Software/XKeyboardConfig
+ installed_size
+ 4841020
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (1402c58dc37665c12312cf9e6be5a326612d5063)
+ pkgname
+ xkeyboard-config
+ pkgver
+ xkeyboard-config-2.8_1
+ run_depends
+
+ xkbcomp>=0
+
+ short_desc
+ X Keyboard Configuration Database
+ source-revisions
+ xkeyboard-config/template: 876914c708a6fccc545c65cbc08b145d22d800b9
+ version
+ 2.8_1
+
+ xmlwf
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:39 CET
+ filename
+ xmlwf-2.1.0_3.armv6l.xbps
+ filename-sha256
+ 50aa0880f5d01b870f8f826eb8a4a49a6283a93851239724491103e202491c96
+ filename-size
+ 10468
+ homepage
+ http://expat.sourceforge.net/
+ installed_size
+ 19989
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ xmlwf
+ pkgver
+ xmlwf-2.1.0_3
+ run_depends
+
+ expat>=2.0.0_1
+ libgcc>=4.4.0_1
+ glibc>=2.8_1
+
+ short_desc
+ XML parser library written in C -- xmlwf utility
+ source-revisions
+ expat/expat-devel.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/xmlwf.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+ version
+ 2.1.0_3
+
+ xmlwf-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:39 CET
+ filename
+ xmlwf-dbg-2.1.0_3.armv6l.xbps
+ filename-sha256
+ 463a575dcecc62d6deda546398b7925a1ab29bec00943aa1d22de4d94d8de0de
+ filename-size
+ 20948
+ homepage
+ http://expat.sourceforge.net/
+ installed_size
+ 27407
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ xmlwf-dbg
+ pkgver
+ xmlwf-dbg-2.1.0_3
+ short_desc
+ XML parser library written in C -- xmlwf utility (debug files)
+ source-revisions
+ expat/expat-devel.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+expat/xmlwf.template: 8804298da69ed1fc3a8d7da2941db79b96c77c8d
+ version
+ 2.1.0_3
+
+ xnoise-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ 2012-09-01 09:05 CEST
+ filename
+ xnoise-devel-0.2.9_1.noarch.xbps
+ filename-sha256
+ cef07a4de9bc97c7ca4647afb170b527e1fcdabb4055be491b9fa7192d82c7d9
+ filename-size
+ 27684
+ homepage
+ http://www.xnoise-media-player.com/
+ installed_size
+ 282624
+ license
+ GPL-2
+ long_desc
+
+ Unlike Rhythmbox, Banshee or itunes, Xnoise uses a tracklist centric design.
+ The tracklist is a list of video or music tracks that are played one by one
+ without being removed (right side of window). This gives you the possibility
+ to queue any track in any order, regardless if they are on the same album.
+ Tracks or groups of tracks can be reordered at any time via drag and drop.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-30
+ pkgname
+ xnoise-devel
+ pkgver
+ xnoise-devel-0.2.9_1
+ run_depends
+
+ libxnoise>=0.2.9
+
+ short_desc
+ xnoise development files
+ version
+ 0.2.9_1
+
+ xorg
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-27 10:44 CET
+ filename
+ xorg-7.6_2.noarch.xbps
+ filename-sha256
+ fa79d5949a51c8b279d2fdf44f7fbb36cffa56fe9da594c67b9999825cec4e53
+ filename-size
+ 804
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 0
+ license
+ MIT
+ long_desc
+
+ This is the Xorg meta-package for installing the various X.org
+ meta-packages (server, clients, fonts, etc) from the X.org project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (8e2a65e2464cf1155f511a9854bf1bc7e64806f2)
+ pkgname
+ xorg
+ pkgver
+ xorg-7.6_2
+ run_depends
+
+ xorg-fonts>=7.6
+ xorg-server>=1.9.3
+ xorg-apps>=7.6
+ xorg-input-drivers>=7.6
+ xorg-video-drivers>=7.6
+
+ short_desc
+ X.org meta-package
+ source-revisions
+ xorg/template: 7e4d20db759bc6bfa9889152d1f862d1b4f29e29
+ version
+ 7.6_2
+
+ xorg-apps
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xorg-apps-7.6_1.noarch.xbps
+ filename-sha256
+ 887e8ceb3ea66f5c3338b3e31c2c6468c048d2fe678a5a0888b55febaba980f5
+ filename-size
+ 1200
+ installed_size
+ 0
+ long_desc
+
+ This is the Xorg applications meta-package for installing various
+ applications from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xorg-apps
+ pkgver
+ xorg-apps-7.6_1
+ replaces
+
+ xorg-server-utils>=0
+
+ run_depends
+
+ iceauth>=1.0.4
+ sessreg>=1.0.6
+ setxkbmap>=1.2.0
+ smproxy>=1.0.4
+ x11perf>=1.5.2
+ xauth>=1.0.5
+ xbacklight>=1.1.2
+ xcmsdb>=1.0.3
+ xcursorgen>=1.0.4
+ xdpyinfo>=1.2.0
+ xdriinfo>=1.0.4
+ xev>=1.1.0
+ xgamma>=1.0.4
+ xhost>=1.0.4
+ xinput>=1.5.3
+ xkbcomp>=1.2.0
+ xkbevd>=1.1.2
+ xkbutils>=1.0.3
+ xkill>=1.0.3
+ xlsatoms>=1.1.0
+ xlsclients>=1.1.1
+ xmodmap>=1.0.5
+ xpr>=1.0.3
+ xprop>=1.2.0
+ xrandr>=1.3.4
+ xrdb>=1.0.7
+ xrefresh>=1.0.4
+ xset>=1.2.1
+ xsetroot>=1.1.0
+ xvinfo>=1.1.1
+ xwd>=1.0.4
+ xwininfo>=1.1.1
+ xwud>=1.0.3
+ xinit>=1.1.1
+
+ short_desc
+ X.org applications
+ version
+ 7.6_1
+
+ xorg-fonts
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ filename
+ xorg-fonts-7.6_1.noarch.xbps
+ filename-sha256
+ bf3b3dba213cc40a58c655e8ecfb0497265704b32abcf9f57a3455591523935f
+ filename-size
+ 1104
+ installed_size
+ 0
+ long_desc
+
+ This is the modular Xorg font meta-package for installing the various
+ font packages from the modular Xorg project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xorg-fonts
+ pkgver
+ xorg-fonts-7.6_1
+ run_depends
+
+ encodings>=1.0.4
+ font-adobe-100dpi>=1.0.3
+ font-adobe-75dpi>=1.0.3
+ font-adobe-utopia-100dpi>=1.0.4
+ font-adobe-utopia-75dpi>=1.0.4
+ font-adobe-utopia-type1>=1.0.4
+ font-bh-100dpi>=1.0.3
+ font-bh-75dpi>=1.0.3
+ font-bh-lucidatypewriter-100dpi>=1.0.3
+ font-bh-lucidatypewriter-75dpi>=1.0.3
+ font-bh-ttf>=1.0.3
+ font-bh-type1>=1.0.3
+ font-bitstream-100dpi>=1.0.3
+ font-bitstream-75dpi>=1.0.3
+ font-bitstream-type1>=1.0.3
+ font-cursor-misc>=1.0.3
+ font-daewoo-misc>=1.0.3
+ font-dec-misc>=1.0.3
+ font-ibm-type1>=1.0.3
+ font-isas-misc>=1.0.3
+ font-jis-misc>=1.0.3
+ font-misc-misc>=1.1.2
+ font-mutt-misc>=1.0.3
+ dejavu-fonts-ttf>=0
+
+ short_desc
+ Modular Xorg Fonts
+ version
+ 7.6_1
+
+ xorg-input-drivers
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Thursday 29 March, 2012, 14:27:43 UTC
+ filename
+ xorg-input-drivers-7.6_1.noarch.xbps
+ filename-sha256
+ ee534e2c1570fbdb1a7c46313208b4450de1c9d4612a9ef52ce2030580766e8f
+ filename-size
+ 1056
+ installed_size
+ 0
+ long_desc
+
+ This is the Xorg meta-package for installing the various
+ X.org xserver input drivers from the modular Xorg X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-25
+ pkgname
+ xorg-input-drivers
+ pkgver
+ xorg-input-drivers-7.6_1
+ run_depends
+
+ xf86-input-evdev>=2.5.0
+ xf86-input-synaptics>=1.3.0
+ xf86-input-vmmouse>=12.6.10
+ xf86-input-wacom>=0.14.0
+
+ short_desc
+ X.org input drivers meta-package
+ version
+ 7.6_1
+
+ xorg-server-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-07 20:10 CET
+ filename
+ xorg-server-devel-1.13.2_2.noarch.xbps
+ filename-sha256
+ d055af49a75e0c3a4432585343c3e6d2dc4c53fb390759ad6b1e66f99296cfa3
+ filename-size
+ 197660
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 1217344
+ license
+ MIT/X11, BSD
+ long_desc
+
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (1422da52a141dbbe3ec551dfa9fc6d90786ceee6)
+ pkgname
+ xorg-server-devel
+ pkgver
+ xorg-server-devel-1.13.2_2
+ run_depends
+
+ libudev-devel>=0
+ dri2proto>=2.1
+ glproto>=0
+ xf86driproto>=0
+ randrproto>=0
+ videoproto>=0
+ compositeproto>=0
+ scrnsaverproto>=0
+ resourceproto>=0
+ xineramaproto>=0
+ libdmx-devel>=0
+ libXext-devel>=0
+ libX11-devel>=0
+ libpciaccess-devel>=0
+ libXfont-devel>=0
+ libXau-devel>=0
+ pixman-devel>=0
+ libXdmcp-devel>=0
+ libXmu-devel>=0
+ libXrender-devel>=0
+ libXfixes-devel>=0
+ libXi-devel>=0
+ libXaw-devel>=0
+ libXt-devel>=0
+ libXpm-devel>=0
+ libdrm-devel>=2.4.34
+ MesaLib-devel>=0
+
+ short_desc
+ xorg-server - development files
+ source-revisions
+ xorg-server/INSTALL: d079241dc0e3e68fd8a41d871bc1fd87ad91a59e
+xorg-server/files/11-quirks.conf: 01fca87d18512c2bfc938de70ea1b07c76f02927
+xorg-server/patches/autoconfig-ati.patch: c7f155b513f01734434586a3e1de7c06ec3e91be
+xorg-server/patches/autoconfig-nvidia.patch: 9a82c5a1d909480e7ad63195ef4d4bcd50da7b5b
+xorg-server/patches/autoconfig-sis.patch: 198bcb51220115ac0da9ca4c29004406a2a285c6
+xorg-server/template: 8769380f93101496d3730b63c3fb3ef952e330bf
+xorg-server/xorg-server-devel.template: b193a94c8ce9b7cb54c7b11dee1752b21fe52a77
+xorg-server/xorg-server-xephyr.template: 44e773e18970ac4bf1331c26efa2e7f47f6f3daf
+xorg-server/xorg-server-xnest.template: 44e773e18970ac4bf1331c26efa2e7f47f6f3daf
+xorg-server/xorg-server-xvfb.template: 44e773e18970ac4bf1331c26efa2e7f47f6f3daf
+ version
+ 1.13.2_2
+
+ xorg-util-macros
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 13:35:38 UTC
+ filename
+ xorg-util-macros-1.15.0_1.noarch.xbps
+ filename-sha256
+ 9d02cbe1612eeb86f1d73955757569ab0a8aa34844be3279d8f8c92062c33452
+ filename-size
+ 17444
+ installed_size
+ 73728
+ long_desc
+
+ This package contains the autoconf/automake macros shared by the various
+ modular Xorg components.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xorg-util-macros
+ pkgver
+ xorg-util-macros-1.15.0_1
+ short_desc
+ Xorg autotool macros
+ version
+ 1.15.0_1
+
+ xproto
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Sunday 03 June, 2012, 07:21:06 UTC
+ filename
+ xproto-7.0.23_1.noarch.xbps
+ filename-sha256
+ fb9f3b1393b1c947cb3ddc95684da99f31904fad0a3ead3388b9fec58f304b62
+ filename-size
+ 144588
+ installed_size
+ 1253376
+ long_desc
+
+ X protocol and ancillary headers from modular Xorg X11.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-28
+ pkgname
+ xproto
+ pkgver
+ xproto-7.0.23_1
+ short_desc
+ X protocol and ancillary headers from Xorg X11
+ version
+ 7.0.23_1
+
+ xrandr
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:18 CET
+ filename
+ xrandr-1.4.0_1.armv6l.xbps
+ filename-sha256
+ 21f62c1e9edac61bfb45a4ea45a0ddbfe3e3d2c79a44d6d3a8dc8de9c365b516
+ filename-size
+ 30276
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 65743
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ xrandr
+ pkgver
+ xrandr-1.4.0_1
+ run_depends
+
+ libXrandr>=1.3.0_1
+ libX11>=1.2_1
+ glibc>=2.8_1
+
+ short_desc
+ Primitive command line interface to RandR extension
+ source-revisions
+ xrandr/template: e4a88d6f93cf4288df3225497b5c365a1d377613
+ version
+ 1.4.0_1
+
+ xrandr-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-20 09:18 CET
+ filename
+ xrandr-dbg-1.4.0_1.armv6l.xbps
+ filename-sha256
+ 3eb2ddec9ffc4565263b70664ae4a1047c6119c24caea74f81424fbd4a33f550
+ filename-size
+ 55820
+ homepage
+ http://xorg.freedesktop.org
+ installed_size
+ 63068
+ license
+ MIT
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-38 (ec721b1edce0f09992fdf87078386d8f9313ef29)
+ pkgname
+ xrandr-dbg
+ pkgver
+ xrandr-dbg-1.4.0_1
+ short_desc
+ Primitive command line interface to RandR extension (debug files)
+ source-revisions
+ xrandr/template: e4a88d6f93cf4288df3225497b5c365a1d377613
+ version
+ 1.4.0_1
+
+ xtrans
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build_date
+ Saturday 02 July, 2011, 08:29:48 UTC
+ filename
+ xtrans-1.2.5_1.noarch.xbps
+ filename-sha256
+ e985da09c90fce8feb08583435561c5b77d5aeac6f252e3416d75dc31e29c621
+ filename-size
+ 38776
+ installed_size
+ 286720
+ long_desc
+
+ Network API translation layer to insulate X applications and
+ libraries from OS network vageries. This is from the modular
+ X.org X11 project.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ pkgname
+ xtrans
+ pkgver
+ xtrans-1.2.5_1
+ short_desc
+ Network API translation layer to insulate X
+ version
+ 1.2.5_1
+
+ xz
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:37 CET
+ conflicts
+
+ chroot-xz>=0
+
+ filename
+ xz-5.0.4_3.armv6l.xbps
+ filename-sha256
+ 71a3d57be3dd116ca1fe79b40206393f2fb14025f8e5603df435f91872eabd77
+ filename-size
+ 115068
+ homepage
+ http://tukani.org/xz
+ installed_size
+ 368735
+ license
+ Public domain, GPL-2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ xz
+ pkgver
+ xz-5.0.4_3
+ run_depends
+
+ liblzma-5.0.4_3
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ The XZ utilities
+ source-revisions
+ xz/liblzma-devel.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/liblzma.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+ version
+ 5.0.4_3
+
+ xz-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-06 16:37 CET
+ filename
+ xz-dbg-5.0.4_3.armv6l.xbps
+ filename-sha256
+ 24d311c5edd1179f7f7e193eefb0bd3bfca374ea1f9ccdabb974b1be91004273
+ filename-size
+ 87404
+ homepage
+ http://tukani.org/xz
+ installed_size
+ 119427
+ license
+ Public domain, GPL-2, GPL-3, LGPL-2.1
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-37 (a7881bc021bb4ba38f1cb884f1a07b46f419ea59)
+ pkgname
+ xz-dbg
+ pkgver
+ xz-dbg-5.0.4_3
+ short_desc
+ The XZ utilities (debug files)
+ source-revisions
+ xz/liblzma-devel.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/liblzma.template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+xz/template: 9b5e2f61e9d3acdec1d1d13042c1a1e746e76f3e
+ version
+ 5.0.4_3
+
+ yelp-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-12 22:53 CET
+ filename
+ yelp-devel-3.6.2_1.noarch.xbps
+ filename-sha256
+ 8fd9720fd988f26d715034888f9e0a95aac7f66283c343c2c13de54de9b02874
+ filename-size
+ 24976
+ homepage
+ http://www.gnome.org
+ installed_size
+ 266564
+ license
+ GPL-2
+ long_desc
+
+ Yelp is the help browser for GNOME. It lets you navigate through all
+ installed documentation.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32
+ pkgname
+ yelp-devel
+ pkgver
+ yelp-devel-3.6.2_1
+ run_depends
+
+ yelp>=3.6.2
+
+ short_desc
+ yelp - development files
+ version
+ 3.6.2_1
+
+ yelp-xsl
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-10-15 20:03 CEST
+ filename
+ yelp-xsl-3.6.1_1.noarch.xbps
+ filename-sha256
+ 6568c366818a6c52f293cb2127b3774c10b32211c1ba9bed5d4cf760c0b7820b
+ filename-size
+ 259088
+ homepage
+ http://www.gnome.org
+ installed_size
+ 1692566
+ license
+ GPL-2
+ long_desc
+
+ Yelp is the help browser for GNOME2. It lets you navigate through all
+ installed documentation.
+
+ This package contains some XSL and misc files required by Yelp.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-31
+ pkgname
+ yelp-xsl
+ pkgver
+ yelp-xsl-3.6.1_1
+ short_desc
+ Help browser for GNOME desktop - XSL and misc files
+ version
+ 3.6.1_1
+
+ zd1211-firmware
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2013-01-15 13:44 CET
+ filename
+ zd1211-firmware-1.4_3.noarch.xbps
+ filename-sha256
+ 3774ba979a411cfb31e91e2a59cd7a25751ecd2d084334a652089c35005b2b66
+ filename-size
+ 9864
+ homepage
+ http://zd1211.wiki.sourceforge.net/
+ installed_size
+ 45924
+ license
+ GPL-2
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-34 (34aa830947d7cc082e4a5b4de562de4fce2f89b3)
+ pkgname
+ zd1211-firmware
+ pkgver
+ zd1211-firmware-1.4_3
+ short_desc
+ Firmware for the Zydas 1211 wifi cards
+ source-revisions
+ zd1211-firmware/template: f655737ea46b8e3fea307a80c8eab124e29dd8bc
+ version
+ 1.4_3
+
+ zeromq-devel
+
+ architecture
+ noarch
+ archive-compression-type
+ xz
+ build-date
+ 2012-11-25 16:45 CET
+ filename
+ zeromq-devel-3.2.2_1.noarch.xbps
+ filename-sha256
+ 402e6c07185300fc06c5202d6fbc00bb54a779397a011aea968ffa6bc600fc6c
+ filename-size
+ 74108
+ homepage
+ http://www.zeromq.org
+ installed_size
+ 82526
+ license
+ LGPL-2.1
+ long_desc
+
+ * The socket library that acts as a concurrency framework.
+ * Faster than TCP, for clustered products and supercomputing.
+ * Carries messages across inproc, IPC, TCP, and multicast.
+ * Connect N-to-N via fanout, pubsub, pipeline, request-reply.
+ * Asynch I/O for scalable multicore message-passing apps.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-32 (12e9b3547c2c3bd540b3dc517754eede475b14d1)
+ pkgname
+ zeromq-devel
+ pkgver
+ zeromq-devel-3.2.2_1
+ run_depends
+
+ zeromq-3.2.2_1
+
+ short_desc
+ The Intelligent Transport Layer -- development files
+ source-revisions
+ zeromq/template: a6ea510968c780f4f1e7bb11e7c53e0e3a31ac61
+zeromq/zeromq-devel.template: f7033a06133c18089af8455f085f4a816e71c345
+ version
+ 3.2.2_1
+
+ zlib
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:48 CET
+ filename
+ zlib-1.2.7_1.armv6l.xbps
+ filename-sha256
+ 2c5038ffa64f4b039a468089285fd7b21358133c2c1942d409ef161108f1741d
+ filename-size
+ 34540
+ homepage
+ http://www.zlib.net
+ installed_size
+ 71724
+ license
+ zlib
+ long_desc
+
+ This is a general purpose data compression library. All the code
+ is thread safe. The data format used by the library is described
+ by RFCs (Request for Comments) 1950 to 1952.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ zlib
+ pkgver
+ zlib-1.2.7_1
+ run_depends
+
+ glibc>=2.8_1
+ libgcc>=4.4.0_1
+
+ short_desc
+ A compression/decompression Library
+ source-revisions
+ zlib/patches/makefile_ranlib_syntax.patch: fab3eaebe0b82fc669b85bff776cd9c35c4a23eb
+zlib/template: 6d241d237535eec92fc4729874c8bb58da7e6b65
+zlib/zlib-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ version
+ 1.2.7_1
+
+ zlib-devel
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-05 02:48 CET
+ filename
+ zlib-devel-1.2.7_1.armv6l.xbps
+ filename-sha256
+ 07e19e08d5b2576276545a2ddabd3100ac9c7325660ec5fe57462e4f3c3974b0
+ filename-size
+ 62864
+ homepage
+ http://www.zlib.net
+ installed_size
+ 192849
+ license
+ zlib
+ long_desc
+
+ This is a general purpose data compression library. All the code
+ is thread safe. The data format used by the library is described
+ by RFCs (Request for Comments) 1950 to 1952.
+
+ This package contains files for development, headers, static libs, etc.
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-36 (eebd6b6cfb8cb154a248d40dd4161811e29a15d3)
+ pkgname
+ zlib-devel
+ pkgver
+ zlib-devel-1.2.7_1
+ run_depends
+
+ glibc-devel>=0
+ zlib>=0
+
+ short_desc
+ A compression/decompression Library - development files
+ source-revisions
+ zlib/patches/makefile_ranlib_syntax.patch: fab3eaebe0b82fc669b85bff776cd9c35c4a23eb
+zlib/template: 6d241d237535eec92fc4729874c8bb58da7e6b65
+zlib/zlib-devel.template: 1816de0e4ad9de9b54ea5cd92aa138299d4b17e9
+ version
+ 1.2.7_1
+
+ zope.interface
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:22 CET
+ filename
+ zope.interface-4.0.1_2.armv6l.xbps
+ filename-sha256
+ ba84e6b941b7c49343edd067d7fadc956f86fc7c62ffcb792172ac756f67de5c
+ filename-size
+ 80652
+ homepage
+ http://pypi.python.org/pypi/zope.interface
+ installed_size
+ 622154
+ license
+ ZPL
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ zope.interface
+ pkgver
+ zope.interface-4.0.1_2
+ run_depends
+
+ python>=2.7_1
+ glibc>=2.8_1
+
+ short_desc
+ zope.interface package from Zope 3
+ source-revisions
+ zope.interface/template: 7b1d2512e5bf0844ced846b10de0d1443d649c11
+ version
+ 4.0.1_2
+
+ zope.interface-dbg
+
+ architecture
+ armv6l
+ archive-compression-type
+ xz
+ build-date
+ 2013-02-21 19:22 CET
+ filename
+ zope.interface-dbg-4.0.1_2.armv6l.xbps
+ filename-sha256
+ d581826705e41cd05f8d8a620a4c7e3c78b796167ad3eb46a2ae9fde3550b086
+ filename-size
+ 19572
+ homepage
+ http://pypi.python.org/pypi/zope.interface
+ installed_size
+ 25452
+ license
+ ZPL
+ maintainer
+ Juan RP <xtraeme@gmail.com>
+ packaged-with
+ xbps-src-39 (4de5fe3132ceacd4aa1cc5f306d1db247341d435)
+ pkgname
+ zope.interface-dbg
+ pkgver
+ zope.interface-dbg-4.0.1_2
+ short_desc
+ zope.interface package from Zope 3 (debug files)
+ source-revisions
+ zope.interface/template: 7b1d2512e5bf0844ced846b10de0d1443d649c11
+ version
+ 4.0.1_2
+
+
+
diff --git a/srcpkgs/omxplayer/patches/omxfont.patch b/srcpkgs/omxplayer/patches/omxfont.patch
new file mode 100644
index 00000000000..3557a777ba2
--- /dev/null
+++ b/srcpkgs/omxplayer/patches/omxfont.patch
@@ -0,0 +1,11 @@
+--- omxplayer.cpp.orig 2013-02-02 09:31:33.347600923 +0000
++++ omxplayer.cpp 2013-02-02 09:32:03.477096232 +0000
+@@ -71,7 +71,7 @@
+ int m_use_hw_audio = false;
+ std::string m_external_subtitles_path;
+ bool m_has_external_subtitles = false;
+-std::string m_font_path = "/usr/share/fonts/truetype/freefont/FreeSans.ttf";
++std::string m_font_path = "/usr/share/fonts/TTF/FreeSans.ttf";
+ bool m_has_font = false;
+ float m_font_size = 0.055f;
+ bool m_centered = false;
diff --git a/srcpkgs/omxplayer/template b/srcpkgs/omxplayer/template
new file mode 100644
index 00000000000..cffe0bbe172
--- /dev/null
+++ b/srcpkgs/omxplayer/template
@@ -0,0 +1,56 @@
+# Template file for 'omxplayer'
+pkgname=omxplayer
+version=20130324
+revision=1
+short_desc="Commandline OMX player for the Raspberry Pi"
+maintainer="Juan RP "
+license="GPL-2"
+homepage="https://github.com/huceke/omxplayer"
+
+nofetch=yes
+noextract=yes
+
+# XXX only rpi
+only_for_archs="armv6l"
+hostmakedepends="pkg-config"
+depends="freefont-ttf"
+makedepends="rpi-firmware pcre-devel boost-devel freetype-devel ffmpeg-0.10x-compat-devel"
+
+do_fetch() {
+ local url="git://github.com/huceke/omxplayer.git"
+ git clone $url ${pkgname}-${version}
+}
+
+do_build() {
+ cp -f ${FILESDIR}/Makefile* .
+
+ _ffmpeg_inc="/usr/include/ffmpeg-0.10x-compat"
+ _ffmpeg_lib="/usr/lib/ffmpeg-0.10x-compat"
+
+ if [ "$XBPS_CROSS_BUILD" ]; then
+ # Create this in masterdir to make gcc to keep rpath.
+ mkdir -p /opt/vc/lib ${_ffmpeg_lib}
+
+ INCLUDES="-I$XBPS_CROSS_BASE/include \
+ -I$XBPS_CROSS_BASE/include/freetype2 \
+ -I$XBPS_CROSS_BASE/${_ffmpeg_inc}"
+
+ LDFLAGS="-L$XBPS_CROSS_BASE/lib \
+ -L$XBPS_CROSS_BASE/${_ffmpeg_lib} \
+ -Wl,-rpath ${_ffmpeg_lib}"
+
+ sed -e "s|@INCLUDES@|${INCLUDES}|g" -i Makefile.include
+ sed -e "s|@LDFLAGS@|${LDFLAGS}|g" -i Makefile.include
+ sed -e "s|@OPTBASE@|${XBPS_CROSS_BASE}/opt|g" -i Makefile.include
+ else
+ sed -e "s|@INCLUDES@|-I${_ffmpeg_inc}|g" -i Makefile.include
+ sed -e "s|@LDFLAGS@|-L${_ffmpeg_lib} -Wl,-rpath ${_ffmpeg_lib}|g" -i Makefile.include
+ sed -e "s|@OPTBASE@|/opt|g" -i Makefile.include
+ fi
+
+ make CC="$CC" CXX="$CXX" LD="$LD"
+}
+
+do_install() {
+ make DESTDIR=${DESTDIR} install
+}