From 663c61444d062aff5f4f0eac0580778445de5782 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Thu, 15 Jan 2015 15:51:03 +0100 Subject: [PATCH 01/58] webkit-gtk-devel: remove stale symlink --- srcpkgs/webkit-gtk-devel | 1 - 1 file changed, 1 deletion(-) delete mode 120000 srcpkgs/webkit-gtk-devel diff --git a/srcpkgs/webkit-gtk-devel b/srcpkgs/webkit-gtk-devel deleted file mode 120000 index dd01fa7988c..00000000000 --- a/srcpkgs/webkit-gtk-devel +++ /dev/null @@ -1 +0,0 @@ -webkit-gtk \ No newline at end of file From 59294f2533ecac070242ac50e08f73e630b96b0f Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 15 Jan 2015 16:00:35 +0100 Subject: [PATCH 02/58] xen: update to 4.5.0. --- common/shlibs | 6 +- srcpkgs/xen/patches/xsa105.patch | 37 -------- srcpkgs/xen/patches/xsa108.patch | 36 ------- srcpkgs/xen/patches/xsa110.patch | 156 ------------------------------- srcpkgs/xen/template | 9 +- 5 files changed, 7 insertions(+), 237 deletions(-) delete mode 100644 srcpkgs/xen/patches/xsa105.patch delete mode 100644 srcpkgs/xen/patches/xsa108.patch delete mode 100644 srcpkgs/xen/patches/xsa110.patch diff --git a/common/shlibs b/common/shlibs index d09c51e60f8..cab384f7a4d 100644 --- a/common/shlibs +++ b/common/shlibs @@ -445,10 +445,10 @@ libparted.so.2 libparted-3.1_1 libparted-fs-resize.so.0 libparted-3.1_1 libntfs-3g.so.85 ntfs-3g-2014.2.15_1 libruby.so.2.2 ruby-2.2.0_1 -libxenctrl.so.4.4 xen-libs-4.4_1<4.5 -libxenguest.so.4.4 xen-libs-4.4_1<4.5 +libxenctrl.so.4.5 xen-libs-4.5<4.6_1 +libxenguest.so.4.5 xen-libs-4.5<4.6_1 libxlutil.so.4.3 xen-libs-4.3_1 -libxenlight.so.4.4 xen-libs-4.4_1<4.5 +libxenlight.so.4.5 xen-libs-4.5<4.6_1 libxenstore.so.3.0 xen-libs-4.2.2_2 libvhd.so.1.0 xen-libs-4.2.2_2 libxenstat.so.0 xen-libs-4.2.2_2 diff --git a/srcpkgs/xen/patches/xsa105.patch b/srcpkgs/xen/patches/xsa105.patch deleted file mode 100644 index 978ca9920f5..00000000000 --- a/srcpkgs/xen/patches/xsa105.patch +++ /dev/null @@ -1,37 +0,0 @@ -x86/emulate: check cpl for all privileged instructions - -Without this, it is possible for userspace to load its own IDT or GDT. - -This is XSA-105. - -Reported-by: Andrei LUTAS -Signed-off-by: Andrew Cooper -Reviewed-by: Jan Beulich -Tested-by: Andrei LUTAS - ---- xen/arch/x86/x86_emulate/x86_emulate.c -+++ xen/arch/x86/x86_emulate/x86_emulate.c -@@ -3314,6 +3314,7 @@ x86_emulate( - goto swint; - - case 0xf4: /* hlt */ -+ generate_exception_if(!mode_ring0(), EXC_GP, 0); - ctxt->retire.flags.hlt = 1; - break; - -@@ -3710,6 +3711,7 @@ x86_emulate( - break; - case 2: /* lgdt */ - case 3: /* lidt */ -+ generate_exception_if(!mode_ring0(), EXC_GP, 0); - generate_exception_if(ea.type != OP_MEM, EXC_UD, -1); - fail_if(ops->write_segment == NULL); - memset(®, 0, sizeof(reg)); -@@ -3738,6 +3740,7 @@ x86_emulate( - case 6: /* lmsw */ - fail_if(ops->read_cr == NULL); - fail_if(ops->write_cr == NULL); -+ generate_exception_if(!mode_ring0(), EXC_GP, 0); - if ( (rc = ops->read_cr(0, &cr0, ctxt)) ) - goto done; - if ( ea.type == OP_REG ) diff --git a/srcpkgs/xen/patches/xsa108.patch b/srcpkgs/xen/patches/xsa108.patch deleted file mode 100644 index 85cf443793e..00000000000 --- a/srcpkgs/xen/patches/xsa108.patch +++ /dev/null @@ -1,36 +0,0 @@ -x86/HVM: properly bound x2APIC MSR range - -While the write path change appears to be purely cosmetic (but still -gets done here for consistency), the read side mistake permitted -accesses beyond the virtual APIC page. - -Note that while this isn't fully in line with the specification -(digesting MSRs 0x800-0xBFF for the x2APIC), this is the minimal -possible fix addressing the security issue and getting x2APIC related -code into a consistent shape (elsewhere a 256 rather than 1024 wide -window is being used too). This will be dealt with subsequently. - -This is XSA-108. - -Signed-off-by: Jan Beulich - ---- xen/arch/x86/hvm/hvm.c -+++ xen/arch/x86/hvm/hvm.c -@@ -4380,7 +4380,7 @@ int hvm_msr_read_intercept(unsigned int - *msr_content = vcpu_vlapic(v)->hw.apic_base_msr; - break; - -- case MSR_IA32_APICBASE_MSR ... MSR_IA32_APICBASE_MSR + 0x3ff: -+ case MSR_IA32_APICBASE_MSR ... MSR_IA32_APICBASE_MSR + 0xff: - if ( hvm_x2apic_msr_read(v, msr, msr_content) ) - goto gp_fault; - break; -@@ -4506,7 +4506,7 @@ int hvm_msr_write_intercept(unsigned int - vlapic_tdt_msr_set(vcpu_vlapic(v), msr_content); - break; - -- case MSR_IA32_APICBASE_MSR ... MSR_IA32_APICBASE_MSR + 0x3ff: -+ case MSR_IA32_APICBASE_MSR ... MSR_IA32_APICBASE_MSR + 0xff: - if ( hvm_x2apic_msr_write(v, msr, msr_content) ) - goto gp_fault; - break; diff --git a/srcpkgs/xen/patches/xsa110.patch b/srcpkgs/xen/patches/xsa110.patch deleted file mode 100644 index 7342832df15..00000000000 --- a/srcpkgs/xen/patches/xsa110.patch +++ /dev/null @@ -1,156 +0,0 @@ -x86emul: enforce privilege level restrictions when loading CS - -Privilege level checks were basically missing for the CS case, the -only check that was done (RPL == DPL for nonconforming segments) -was solely covering a single special case (return to non-conforming -segment). - -Additionally in long mode the L bit set requires the D bit to be clear, -as was recently pointed out for KVM by Nadav Amit -. - -Finally we also need to force the loaded selector's RPL to CPL (at -least as long as lret/retf emulation doesn't support privilege level -changes). - -This is XSA-110. - -Signed-off-by: Jan Beulich -Reviewed-by: Tim Deegan - ---- xen/arch/x86/x86_emulate/x86_emulate.c -+++ xen/arch/x86/x86_emulate/x86_emulate.c -@@ -1119,7 +1119,7 @@ realmode_load_seg( - static int - protmode_load_seg( - enum x86_segment seg, -- uint16_t sel, -+ uint16_t sel, bool_t is_ret, - struct x86_emulate_ctxt *ctxt, - const struct x86_emulate_ops *ops) - { -@@ -1185,9 +1185,23 @@ protmode_load_seg( - /* Code segment? */ - if ( !(desc.b & (1u<<11)) ) - goto raise_exn; -- /* Non-conforming segment: check DPL against RPL. */ -- if ( ((desc.b & (6u<<9)) != (6u<<9)) && (dpl != rpl) ) -+ if ( is_ret -+ ? /* -+ * Really rpl < cpl, but our sole caller doesn't handle -+ * privilege level changes. -+ */ -+ rpl != cpl || (desc.b & (1 << 10) ? dpl > rpl : dpl != rpl) -+ : desc.b & (1 << 10) -+ /* Conforming segment: check DPL against CPL. */ -+ ? dpl > cpl -+ /* Non-conforming segment: check RPL and DPL against CPL. */ -+ : rpl > cpl || dpl != cpl ) - goto raise_exn; -+ /* 64-bit code segments (L bit set) must have D bit clear. */ -+ if ( in_longmode(ctxt, ops) && -+ (desc.b & (1 << 21)) && (desc.b & (1 << 22)) ) -+ goto raise_exn; -+ sel = (sel ^ rpl) | cpl; - break; - case x86_seg_ss: - /* Writable data segment? */ -@@ -1252,7 +1266,7 @@ protmode_load_seg( - static int - load_seg( - enum x86_segment seg, -- uint16_t sel, -+ uint16_t sel, bool_t is_ret, - struct x86_emulate_ctxt *ctxt, - const struct x86_emulate_ops *ops) - { -@@ -1261,7 +1275,7 @@ load_seg( - return X86EMUL_UNHANDLEABLE; - - if ( in_protmode(ctxt, ops) ) -- return protmode_load_seg(seg, sel, ctxt, ops); -+ return protmode_load_seg(seg, sel, is_ret, ctxt, ops); - - return realmode_load_seg(seg, sel, ctxt, ops); - } -@@ -2003,7 +2017,7 @@ x86_emulate( - if ( (rc = read_ulong(x86_seg_ss, sp_post_inc(op_bytes), - &dst.val, op_bytes, ctxt, ops)) != 0 ) - goto done; -- if ( (rc = load_seg(src.val, (uint16_t)dst.val, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(src.val, dst.val, 0, ctxt, ops)) != 0 ) - return rc; - break; - -@@ -2357,7 +2371,7 @@ x86_emulate( - enum x86_segment seg = decode_segment(modrm_reg); - generate_exception_if(seg == decode_segment_failed, EXC_UD, -1); - generate_exception_if(seg == x86_seg_cs, EXC_UD, -1); -- if ( (rc = load_seg(seg, (uint16_t)src.val, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(seg, src.val, 0, ctxt, ops)) != 0 ) - goto done; - if ( seg == x86_seg_ss ) - ctxt->retire.flags.mov_ss = 1; -@@ -2438,7 +2452,7 @@ x86_emulate( - &_regs.eip, op_bytes, ctxt)) ) - goto done; - -- if ( (rc = load_seg(x86_seg_cs, sel, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(x86_seg_cs, sel, 0, ctxt, ops)) != 0 ) - goto done; - _regs.eip = eip; - break; -@@ -2662,7 +2676,7 @@ x86_emulate( - if ( (rc = read_ulong(src.mem.seg, src.mem.off + src.bytes, - &sel, 2, ctxt, ops)) != 0 ) - goto done; -- if ( (rc = load_seg(dst.val, (uint16_t)sel, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(dst.val, sel, 0, ctxt, ops)) != 0 ) - goto done; - dst.val = src.val; - break; -@@ -2736,7 +2750,7 @@ x86_emulate( - &dst.val, op_bytes, ctxt, ops)) || - (rc = read_ulong(x86_seg_ss, sp_post_inc(op_bytes + offset), - &src.val, op_bytes, ctxt, ops)) || -- (rc = load_seg(x86_seg_cs, (uint16_t)src.val, ctxt, ops)) ) -+ (rc = load_seg(x86_seg_cs, src.val, 1, ctxt, ops)) ) - goto done; - _regs.eip = dst.val; - break; -@@ -2785,7 +2799,7 @@ x86_emulate( - _regs.eflags &= mask; - _regs.eflags |= (uint32_t)(eflags & ~mask) | 0x02; - _regs.eip = eip; -- if ( (rc = load_seg(x86_seg_cs, (uint16_t)cs, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(x86_seg_cs, cs, 1, ctxt, ops)) != 0 ) - goto done; - break; - } -@@ -3415,7 +3429,7 @@ x86_emulate( - generate_exception_if(mode_64bit(), EXC_UD, -1); - eip = insn_fetch_bytes(op_bytes); - sel = insn_fetch_type(uint16_t); -- if ( (rc = load_seg(x86_seg_cs, sel, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(x86_seg_cs, sel, 0, ctxt, ops)) != 0 ) - goto done; - _regs.eip = eip; - break; -@@ -3714,7 +3728,7 @@ x86_emulate( - goto done; - } - -- if ( (rc = load_seg(x86_seg_cs, sel, ctxt, ops)) != 0 ) -+ if ( (rc = load_seg(x86_seg_cs, sel, 0, ctxt, ops)) != 0 ) - goto done; - _regs.eip = src.val; - -@@ -3781,7 +3795,7 @@ x86_emulate( - generate_exception_if(!in_protmode(ctxt, ops), EXC_UD, -1); - generate_exception_if(!mode_ring0(), EXC_GP, 0); - if ( (rc = load_seg((modrm_reg & 1) ? x86_seg_tr : x86_seg_ldtr, -- src.val, ctxt, ops)) != 0 ) -+ src.val, 0, ctxt, ops)) != 0 ) - goto done; - break; - diff --git a/srcpkgs/xen/template b/srcpkgs/xen/template index 5ca3d91de62..3af0b247d10 100644 --- a/srcpkgs/xen/template +++ b/srcpkgs/xen/template @@ -1,14 +1,14 @@ # Template file for 'xen' pkgname=xen -version=4.4.1 -wrksrc=xen-${version} -revision=6 +version=4.5.0 +wrksrc="xen-${version}" +revision=1 short_desc="The Xen hypervisor utilities" maintainer="Juan RP " homepage="http://xen.org" license="GPL-2" distfiles="http://bits.xensource.com/oss-xen/release/$version/xen-$version.tar.gz" -checksum=55b49d3c4575d7791275125ff87c0f86f1d1e0f7f2718b6fd1c4f88a9bc7ea25 +checksum=5bdb40e2b28d2eeb541bd71a9777f40cbe2ae444b987521d33f099541a006f3b only_for_archs="x86_64" @@ -19,7 +19,6 @@ makedepends=" ncurses-devel liblzma-devel python-devel yajl-devel libuuid-devel libglib-devel dev86 acpica-utils pixman-devel gcc-multilib" depends="xen-hypervisor" -replaces="runit-void<20141013_2" build_options="systemd" make_dirs=" From 61d54761f81ee4109f0568743009e594b5ca38ac Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 18:46:14 +0100 Subject: [PATCH 03/58] swig: updated to 3.0.4 --- srcpkgs/swig/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/swig/template b/srcpkgs/swig/template index e00c4e14175..c58471113da 100644 --- a/srcpkgs/swig/template +++ b/srcpkgs/swig/template @@ -1,6 +1,6 @@ # Template file for 'swig' pkgname=swig -version=3.0.3 +version=3.0.4 revision=1 build_style=gnu-configure configure_args="--with-pcre-prefix=${XBPS_CROSS_BASE}/usr" @@ -11,4 +11,4 @@ maintainer="Juan RP " homepage="http://www.swig.org" license="GPL-3" distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz" -checksum=2c96717d9b0dc918d99f3ce6f4517dd499dd29fcab64ea8e73fcbcee6f43f399 +checksum=410ffa80ef5535244b500933d70c1b65206333b546ca5a6c89373afb65413795 From 74e418751c9ae1bdab39a626438597a68df75c53 Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 18:55:36 +0100 Subject: [PATCH 04/58] lua-MessagePack: updated to 0.3.2 --- srcpkgs/lua-MessagePack/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/lua-MessagePack/template b/srcpkgs/lua-MessagePack/template index 617f33b5a49..a2163f86862 100644 --- a/srcpkgs/lua-MessagePack/template +++ b/srcpkgs/lua-MessagePack/template @@ -1,6 +1,6 @@ # Template file for 'lua-MessagePack' pkgname=lua-MessagePack -version=0.3.1 +version=0.3.2 revision=1 hostmakedepends="lua>=5.2" makedepends="lua>=5.2" @@ -10,7 +10,7 @@ maintainer="Tj Vanderpoel (bougyman) " license="MIT" homepage="https://github.com/fperrad/lua-MessagePack" distfiles="${homepage}/archive/${version}.tar.gz" -checksum=2cc1e2458d0f1eee8f02263848fa5055894303c056fd2e49aa9c3fb54ccbb5a0 +checksum=6580961958dd43455f7f74708514011e0aadf442167869fb60c53b018f041eac do_install() { make PREFIX=/usr DESTDIR="${DESTDIR}" LUAVER=5.2 install From d6cab47ce9ae60d327bbb6fa4bb818865cb2b94a Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 19:04:37 +0100 Subject: [PATCH 05/58] silc-toolkit: updated to 1.1.12 --- srcpkgs/silc-toolkit/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/silc-toolkit/template b/srcpkgs/silc-toolkit/template index b800ca19acf..b8a29f65683 100644 --- a/srcpkgs/silc-toolkit/template +++ b/srcpkgs/silc-toolkit/template @@ -1,6 +1,6 @@ # Template file for 'silc-toolkit' pkgname=silc-toolkit -version=1.1.11 +version=1.1.12 revision=1 build_style=gnu-configure configure_args="--with-perl=yes --with-simdir=/usr/lib/silc/modules @@ -13,7 +13,7 @@ maintainer="Ypnose " license="GPL-2,BSD" homepage="http://www.silcnet.org/" distfiles="${SOURCEFORGE_SITE}/silc/silc/client/sources/$pkgname-$version.tar.bz2" -checksum=3cce1b551663603629ba8a9d3578ed928ee0eccf1bf4ee62d2377bf5c5b476a9 +checksum=be170288f79fbe34971fc26fe762a8329621e11a117f20c218857f2bbad24d6e post_install() { #Remove large (useless) documentation. From 1030d83631bdf2074bb459200faedb94f2233a5f Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 19:38:19 +0100 Subject: [PATCH 06/58] gmtp: updated to 1.3.9 --- srcpkgs/gmtp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gmtp/template b/srcpkgs/gmtp/template index aabb89b9aaf..38e4259b43c 100644 --- a/srcpkgs/gmtp/template +++ b/srcpkgs/gmtp/template @@ -1,6 +1,6 @@ # Template file for 'gmtp' pkgname=gmtp -version=1.3.8 +version=1.3.9 revision=1 build_style=gnu-configure hostmakedepends="pkg-config glib-devel" @@ -11,4 +11,4 @@ maintainer="Juan RP " license="BSD" homepage="http://gmtp.sourceforge.net" distfiles="${SOURCEFORGE_SITE}/gmtp/gmtp-${version}.tar.gz" -checksum=edb9aa6f2421be3090fa53c5384fdf0dfb43cafcf6c1c3621ab5eeb889ebb580 +checksum=5bff5385db66f5c3e82d89edb7ca4a8ccb8c8954faf7341438080f2741dcbd2d From dbbd315d3c7f8a348fdf0e54c0955e58a3904d33 Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 19:26:31 +0100 Subject: [PATCH 07/58] gd: updated to 2.1.1 --- srcpkgs/gd/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/gd/template b/srcpkgs/gd/template index 77d4e7e374b..83513de5e73 100644 --- a/srcpkgs/gd/template +++ b/srcpkgs/gd/template @@ -1,7 +1,7 @@ # Template build file for 'gd'. pkgname=gd -version=2.1.0 -revision=2 +version=2.1.1 +revision=1 wrksrc="libgd-${version}" build_style=gnu-configure configure_args="--without-xpm" @@ -12,7 +12,7 @@ maintainer="Juan RP " homepage="http://www.libgd.org/" license="BSD" distfiles="https://bitbucket.org/libgd/gd-libgd/downloads/libgd-${version}.tar.xz" -checksum=fa6665dfe3d898019671293c84d77067a3d2ede50884dbcb6df899d508370e5a +checksum=9ada1ed45594abc998ebc942cef12b032fbad672e73efc22bc9ff54f5df2b285 gd-devel_package() { depends="libjpeg-turbo-devel fontconfig-devel zlib-devel libpng-devel>=1.6 gd-${version}_${revision}" From b6869f7406127787ef2b16f079ef1e85a86304d4 Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 18:57:51 +0100 Subject: [PATCH 08/58] sinit: 0.9.2 --- srcpkgs/sinit/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/sinit/template b/srcpkgs/sinit/template index 2d60b516f3c..b78eba9a8d9 100644 --- a/srcpkgs/sinit/template +++ b/srcpkgs/sinit/template @@ -1,14 +1,14 @@ # Template file for 'sinit' pkgname=sinit -version=0.9.1 -revision=2 +version=0.9.2 +revision=1 build_style=gnu-makefile short_desc="A simple init, initially based on Rich Felker’s minimal init" maintainer="Ypnose " license="MIT" homepage="http://tools.suckless.org/sinit/" distfiles="http://dl.suckless.org/${pkgname}/${pkgname}-${version}.tar.gz" -checksum=bdd21334b263611cf7d481e3ce9e57a16285fa9155869d877e5c33744ae324cd +checksum=52e74eae1eeb9dd3280cc93f96ea8cbc9a4984c75c4aaee1bd91ffd5a4aa83a5 pre_build() { LD=$CC From 244311f64fe5048666bdc84e4e2cd3aa4e0bca85 Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 20:18:10 +0100 Subject: [PATCH 09/58] rasqal: updated to 0.9.33 --- srcpkgs/rasqal/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/rasqal/template b/srcpkgs/rasqal/template index 73005580c08..a2c11400858 100644 --- a/srcpkgs/rasqal/template +++ b/srcpkgs/rasqal/template @@ -1,6 +1,6 @@ # Template file for 'rasqal' pkgname=rasqal -version=0.9.32 +version=0.9.33 revision=1 build_style=gnu-configure configure_args="--disable-static --enable-release" @@ -11,7 +11,7 @@ maintainer="Juan RP " license="LGPL-2.1" homepage="http://librdf.org/rasqal" distfiles="http://librdf.org/dist/source/rasqal-${version}.tar.gz" -checksum=eeba03218e3b7dfa033934d523a1a64671a9a0f64eadc38a01e4b43367be2e8f +checksum=6924c9ac6570bd241a9669f83b467c728a322470bf34f4b2da4f69492ccfd97c librasqal_package() { short_desc+=" - Runtime libraries" From f6664cbb0fd0559873e06e57e1572ad4cd4a5f30 Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Thu, 15 Jan 2015 20:46:16 +0000 Subject: [PATCH 10/58] New package: jp2a-1.0.6 --- srcpkgs/jp2a/template | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 srcpkgs/jp2a/template diff --git a/srcpkgs/jp2a/template b/srcpkgs/jp2a/template new file mode 100644 index 00000000000..f00a907d401 --- /dev/null +++ b/srcpkgs/jp2a/template @@ -0,0 +1,12 @@ +# Template file for 'jp2a' +pkgname=jp2a +version=1.0.6 +revision=1 +build_style=gnu-configure +makedepends="libjpeg-turbo-devel libcurl-devel" +short_desc="JPEG image to ASCII art converter" +maintainer="Eivind Uggedal " +license="GPL-2" +homepage="https://csl.name/jp2a" +distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.bz2" +checksum=7869c13744b0e15c250cae88b55f0dfade17e6c2b0a03b309dbe89bd34b342d4 From a837ddcbcf8a5c720ae24616eaf849f8785c5049 Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Thu, 15 Jan 2015 22:00:46 +0000 Subject: [PATCH 11/58] exiftool: update to 9.82. --- srcpkgs/exiftool/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/exiftool/template b/srcpkgs/exiftool/template index 82b45012a6e..0839661acf2 100644 --- a/srcpkgs/exiftool/template +++ b/srcpkgs/exiftool/template @@ -1,6 +1,6 @@ # Template build file for 'exiftool' pkgname=exiftool -version=9.81 +version=9.82 revision=1 noarch="yes" wrksrc="Image-ExifTool-${version}" @@ -13,4 +13,4 @@ maintainer="Juan RP " homepage="http://www.sno.phy.queensu.ca/~phil/exiftool/" license="GPL" distfiles="http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-${version}.tar.gz" -checksum=2dd13ff814d1333f3d81e8f8a0df9660ce1d5921bf0987709b22889247c1f7dd +checksum=b200673dc2e13898cbcbfd95e6285876d39a8d3beb85ccc1abfca009396e5f4b From 1902d005c367c7681bc336d530389b66584d9481 Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Thu, 15 Jan 2015 22:12:36 +0000 Subject: [PATCH 12/58] gdb: update to 7.8.2. --- srcpkgs/gdb/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template index d658d69c1bf..aec1a67780e 100644 --- a/srcpkgs/gdb/template +++ b/srcpkgs/gdb/template @@ -1,7 +1,7 @@ # Template file for 'gdb' pkgname=gdb -version=7.8.1 -revision=2 +version=7.8.2 +revision=1 patch_args="-Np1" build_style=gnu-configure configure_args="--disable-werror --disable-nls --with-system-readline @@ -15,7 +15,7 @@ maintainer="Juan RP " homepage="http://www.gnu.org/software/gdb/" license="GPL-3" distfiles="http://ftp.gnu.org/gnu/gdb/gdb-$version.tar.xz" -checksum=497722b58386f4428c3474281eb3ef1c872404998b6ace907edb3bba1fabdc35 +checksum=605954d5747d5f08ea4b7f48e958d1ebbf39265e18f7f36738deeabb83744485 # Package build options build_options="gdbserver static python" From e3dd31b75bd17bf16658f79c2e074b426671f24c Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Thu, 15 Jan 2015 23:24:27 +0100 Subject: [PATCH 13/58] postgres: updated to 9.4.0 --- srcpkgs/postgresql/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template index 023f6a39fc6..60d636f4aad 100644 --- a/srcpkgs/postgresql/template +++ b/srcpkgs/postgresql/template @@ -1,7 +1,7 @@ # Template file for 'postgresql' pkgname=postgresql -version=9.3.5 -revision=4 +version=9.4.0 +revision=1 build_style=gnu-configure make_build_target="world" configure_args="--with-openssl --with-python @@ -10,11 +10,11 @@ configure_args="--with-openssl --with-python --without-bonjour --with-libxml --with-libxslt --disable-rpath --with-system-tzdata=/usr/share/zoneinfo --enable-nls" short_desc="Sophisticated open-source Object-Relational DBMS" -maintainer="Juan RP " +maintainer="Philipp Hirsch " homepage="http://www.postgresql.org" license="BSD" distfiles="ftp://ftp.postgresql.org/pub/source/v${version}/${pkgname}-${version}.tar.bz2" -checksum=14176ffb1f90a189e7626214365be08ea2bfc26f26994bafb4235be314b9b4b0 +checksum=7a35c3cb77532f7b15702e474d7ef02f0f419527ee80a4ca6036fffb551625a5 hostmakedepends="flex docbook docbook2x openjade" makedepends="libfl-devel readline-devel>=6.3 libressl-devel>=2.1.2 perl>=5.20 From 8c02bcda28a2fe94a4d4fdc332a39497a9166f61 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 09:24:22 +0100 Subject: [PATCH 14/58] jack: jack_control needs python-dbus to work. Close #869. --- srcpkgs/jack/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/jack/template b/srcpkgs/jack/template index 5afa78241d9..bbfdfed045b 100644 --- a/srcpkgs/jack/template +++ b/srcpkgs/jack/template @@ -1,11 +1,11 @@ # Template file for 'jack' pkgname=jack version=1.9.10 -revision=4 +revision=5 # XXX libffado (firewire) hostmakedepends="pkg-config python" makedepends="eigen opus-devel libsamplerate-devel readline-devel>=6.3 dbus-devel celt-devel" -depends="dbus" +depends="python-dbus" short_desc="JACK Audio Connection Kit low-latency sound server (pro audio)" maintainer="Juan RP " license="GPL-2, LGPL-2.1" From fd80c8f9af07acee684d60b49394f40b22154fc0 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 09:37:20 +0100 Subject: [PATCH 15/58] runit-void: rc.shutdown and more complete cryptsetup support. --- srcpkgs/runit-void/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/runit-void/template b/srcpkgs/runit-void/template index 949e3e9e62d..1d634867466 100644 --- a/srcpkgs/runit-void/template +++ b/srcpkgs/runit-void/template @@ -1,6 +1,6 @@ # Template file for 'runit-void' pkgname=runit-void -version=20141231 +version=20150116 revision=1 build_style=gnu-makefile homepage="http://www.voidlinux.eu" @@ -10,7 +10,7 @@ license="Public Domain" hostmakedepends="git" depends="runit" -conf_files="/etc/hostname /etc/locale.conf /etc/rc.conf /etc/rc.local" +conf_files="/etc/hostname /etc/locale.conf /etc/rc.conf /etc/rc.local /etc/rc.shutdown" make_dirs=" /etc/zzz.d/suspend 0755 root root /etc/zzz.d/resume 0755 root root" From 7f9422903747c96df1725c22874a26bc503ffd40 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 10:02:37 +0100 Subject: [PATCH 16/58] libvirt: update to 1.2.11. --- srcpkgs/libvirt/files/libvirt.tmpfiles.d | 4 ---- srcpkgs/libvirt/template | 10 +++------- 2 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 srcpkgs/libvirt/files/libvirt.tmpfiles.d diff --git a/srcpkgs/libvirt/files/libvirt.tmpfiles.d b/srcpkgs/libvirt/files/libvirt.tmpfiles.d deleted file mode 100644 index 2804c43c837..00000000000 --- a/srcpkgs/libvirt/files/libvirt.tmpfiles.d +++ /dev/null @@ -1,4 +0,0 @@ -d /run/libvirt/qemu 0755 root root - -d /run/libvirt/lxc 0755 root root - -d /run/libvirt/uml 0755 root root - -d /run/libvirt/network 0755 root root - diff --git a/srcpkgs/libvirt/template b/srcpkgs/libvirt/template index c85f194ce59..642dac75932 100644 --- a/srcpkgs/libvirt/template +++ b/srcpkgs/libvirt/template @@ -1,6 +1,6 @@ # Template file for 'libvirt' pkgname=libvirt -version=1.2.9 +version=1.2.11 revision=1 build_style=gnu-configure build_options="systemd" @@ -14,7 +14,7 @@ maintainer="Juan RP " homepage="http://libvirt.org" license="LGPL-2.1" distfiles="http://libvirt.org/sources/$pkgname-$version.tar.gz" -checksum=95931a5a52f451b9ab73d6a5ae11a5740e1ba69a66520c2a0cffc6068a7e8fc4 +checksum=1b886429734a53fc9a201f46d77448fda963e1323246269eb0dcb4c12fb02fcc hostmakedepends="perl pkg-config lvm2 parted" makedepends="readline-devel>=6.3 libcap-ng-devel libnl3-devel attr-devel @@ -25,7 +25,7 @@ makedepends="readline-devel>=6.3 libcap-ng-devel libnl3-devel attr-devel if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then configure_args+=" --with-xen" - makedepends+=" libnuma-devel xen-devel" + makedepends+=" libnuma-devel xen-devel>=4.5" elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then configure_args+=" --without-xen" makedepends+=" libnuma-devel" @@ -83,10 +83,6 @@ post_install() { rm -rf ${DESTDIR}/etc/sysconfig # Remove unused stuff. rm -rf ${DESTDIR}/var/log - # systemd stuff. - if [ "$build_options_systemd" ]; then - vinstall ${FILESDIR}/libvirt.tmpfiles.d 644 usr/lib/tmpfiles.d libvirt.conf - fi } libvirt-devel_package() { From 4b1b0db7d0509c439cf7a0b4c3e8739d4f4fa013 Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Fri, 16 Jan 2015 10:36:43 +0000 Subject: [PATCH 17/58] libsodium: update to 1.0.2. --- srcpkgs/libsodium/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libsodium/template b/srcpkgs/libsodium/template index 306adebdada..8de32367e83 100644 --- a/srcpkgs/libsodium/template +++ b/srcpkgs/libsodium/template @@ -1,6 +1,6 @@ # Template file for 'libsodium' pkgname=libsodium -version=1.0.1 +version=1.0.2 revision=1 build_style=gnu-configure configure_args="lt_cv_prog_compiler_static_works=yes" @@ -9,7 +9,7 @@ maintainer="Juan RP " license="ISC" homepage="https://github.com/jedisct1/libsodium" distfiles="https://github.com/jedisct1/libsodium/releases/download/${version}/${pkgname}-${version}.tar.gz" -checksum=c3090887a4ef9e2d63af1c1e77f5d5a0656fadb5105ebb9fb66a302210cb3af5 +checksum=961d8f10047f545ae658bcc73b8ab0bf2c312ac945968dd579d87c768e5baa19 libsodium-devel_package() { short_desc+=" - development files" From f7a13c20c5cf1c2fa30261316c9139ff38977495 Mon Sep 17 00:00:00 2001 From: Philipp Hirsch Date: Fri, 16 Jan 2015 12:15:24 +0100 Subject: [PATCH 18/58] bwidget: updated to 1.9.8 --- srcpkgs/bwidget/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/bwidget/template b/srcpkgs/bwidget/template index 581e3b404b6..8b0b7281d68 100644 --- a/srcpkgs/bwidget/template +++ b/srcpkgs/bwidget/template @@ -1,7 +1,7 @@ # Template file for 'bwidget' pkgname=bwidget -version=1.9.6 -revision=3 +version=1.9.8 +revision=1 noarch=yes makedepends="tk>=8.6" depends="${makedepends}" @@ -10,7 +10,7 @@ maintainer="Juan RP " homepage="http://tcllib.sourceforge.net/" license="tcl/tk" distfiles="${SOURCEFORGE_SITE}/tcllib/BWidget/$version/${pkgname}-${version}.tar.gz" -checksum=155e9cf2c6973956a0bbde450f2df358ce1eb97a2b2950d0681a36f861e67553 +checksum=545016e3ee998991308f54d8ef26bbf16144ee50fa432b9100d37ef806bdb314 do_install() { local _tclversion=8.6 From 41bafc2d4c9fdca61c80eb569b386b4e98fbca2f Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Fri, 16 Jan 2015 11:41:52 +0000 Subject: [PATCH 19/58] void-updates: update to 20150116. --- srcpkgs/void-updates/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/void-updates/template b/srcpkgs/void-updates/template index 8dc2271c44f..93335ce4678 100644 --- a/srcpkgs/void-updates/template +++ b/srcpkgs/void-updates/template @@ -1,6 +1,6 @@ # Template file for 'void-updates' pkgname=void-updates -version=20141124 +version=20150116 revision=1 noarch=yes build_style=gnu-makefile From a2bbebecefd7b6d1b63323fa0c961597b5b0052f Mon Sep 17 00:00:00 2001 From: allan Date: Fri, 16 Jan 2015 14:14:30 +0100 Subject: [PATCH 20/58] New package: avr-binutils-2.25 --- srcpkgs/avr-binutils/template | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 srcpkgs/avr-binutils/template diff --git a/srcpkgs/avr-binutils/template b/srcpkgs/avr-binutils/template new file mode 100644 index 00000000000..91576672b6b --- /dev/null +++ b/srcpkgs/avr-binutils/template @@ -0,0 +1,44 @@ +# Template file for 'avr-binutils' +pkgname=avr-binutils +version=2.25 +revision=1 +short_desc="GNU binary utilities for AVR" +maintainer="allan " +homepage="http://www.gnu.org/software/binutils/" +license="GPL-3" +distfiles="$GNU_SITE/binutils/binutils-$version.tar.gz" +checksum=cccf377168b41a52a76f46df18feb8f7285654b3c1bd69fc8265cb0fc6902f2d +wrksrc="binutils-$version" +only_for_archs="i686 x86_64" + +hostmakedepends="zlib-devel" + +do_configure() { + ./configure \ + --disable-werror \ + --enable-ld=default \ + --enable-shared \ + --enable-gold \ + --enable-plugins \ + --enable-threads \ + --enable-install-libbfd \ + --prefix=/usr \ + --target=avr \ + --with-pic + + make configure-host +} + +do_build() { + make tooldir=/usr +} + +do_install() { + make prefix="$DESTDIR"/usr tooldir="$DESTDIR"/usr install +} + +post_install() { + rm -rf "$DESTDIR"/usr/share/info + rm -rf "$DESTDIR"/usr/share/locale + rm "$DESTDIR"/usr/bin/{ar,as,nm,objcopy,objdump,ranlib,strip} +} From d0f98752361ee567b64b10b84b96a634ecd2f747 Mon Sep 17 00:00:00 2001 From: allan Date: Fri, 16 Jan 2015 14:14:43 +0100 Subject: [PATCH 21/58] New package: avr-gcc-4.9.2 --- srcpkgs/avr-gcc/template | 69 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 srcpkgs/avr-gcc/template diff --git a/srcpkgs/avr-gcc/template b/srcpkgs/avr-gcc/template new file mode 100644 index 00000000000..c4695eeeb4d --- /dev/null +++ b/srcpkgs/avr-gcc/template @@ -0,0 +1,69 @@ +# Template build file for 'avr-gcc' +pkgname=avr-gcc +version=4.9.2 +revision=1 +short_desc="The GNU C Compiler for AVR" +maintainer="allan " +homepage="http://gcc.gnu.org" +license="GFDL-1.2, GPL-3, LGPL-2.1" +distfiles="$GNU_SITE/gcc/gcc-$version/gcc-$version.tar.bz2" +checksum=2020c98295856aa13fda0f2f3a4794490757fc24bcca918d52cc8b4917b972dd +wrksrc="gcc-$version" +only_for_archs="i686 x86_64" + +hostmakedepends="avr-binutils zlib-devel libmpc-devel cloog-devel gmp-devel mpfr-devel" +depends="avr-binutils" +nostrip=yes + +do_configure() { + mkdir obj-avr + cd obj-avr + + CFLAGS="${CFLAGS/-mtune=generic/}" + + CONFIG_SHELL=/bin/bash ../configure \ + --disable-install-libiberty \ + --disable-libssp \ + --disable-libstdcxx-pch \ + --disable-libunwind-exceptions \ + --disable-linker-build-id \ + --disable-nls \ + --disable-werror \ + --enable-__cxa_atexit \ + --enable-checking=release \ + --enable-clocale=gnu \ + --enable-cloog-backend=isl \ + --enable-gnu-unique-object \ + --enable-gold \ + --enable-languages=c,c++ \ + --enable-ld=default \ + --enable-lto \ + --enable-plugin \ + --enable-shared \ + --prefix=/usr \ + --target=avr \ + --with-gnu-as \ + --with-as=/usr/bin/avr-as \ + --with-gnu-ld \ + --with-ld=/usr/bin/avr-ld \ + --with-plugin-ld=ld.gold \ + --with-system-zlib \ + --without-included-gettext +} + +do_build() { + cd obj-avr + make ${makejobs} +} + +do_install() { + cd obj-avr + make DESTDIR="$DESTDIR" install +} + +post_install() { + rm -rf "$DESTDIR"/usr/share/man/man7 + rm -rf "$DESTDIR"/usr/share/info + find "$DESTDIR"/usr/lib -type f -name "*.a" \ + -exec avr-strip --strip-debug {} \; +} From e196e37b5fce4ba508527650552ef09201ca4179 Mon Sep 17 00:00:00 2001 From: allan Date: Fri, 16 Jan 2015 14:14:55 +0100 Subject: [PATCH 22/58] New package: avr-libc-1.8.1 --- srcpkgs/avr-libc/template | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 srcpkgs/avr-libc/template diff --git a/srcpkgs/avr-libc/template b/srcpkgs/avr-libc/template new file mode 100644 index 00000000000..6da56d2a87a --- /dev/null +++ b/srcpkgs/avr-libc/template @@ -0,0 +1,21 @@ +# Template file for 'avr-libc' +pkgname=avr-libc +version=1.8.1 +revision=1 +short_desc="A C library for use with GCC on Atmel AVR microcontrollers" +maintainer="allan " +license="BSD" +homepage="http://savannah.nongnu.org/projects/avr-libc/" +distfiles="$NONGNU_SITE/$pkgname/$pkgname-$version.tar.bz2" +checksum=c3062a481b6b2c6959dc708571c00b0e26301897ba21171ed92acd0af7c4a969 +only_for_archs="i686 x86_64" + +build_style=gnu-configure +hostmakedepends="avr-binutils avr-gcc" +depends="avr-binutils avr-gcc" +nostrip=yes + +do_configure() { + CC=avr-gcc CC_FOR_BUILD=avr-gcc AR=avr-ar AS=avr-as RANLIB=avr-ranlib \ + ./configure --host=avr --prefix=/usr +} From 6e35648d7fcf5a45ad410566a0c14e28cfa23860 Mon Sep 17 00:00:00 2001 From: allan Date: Fri, 16 Jan 2015 14:15:19 +0100 Subject: [PATCH 23/58] New package: avrdude-6.1 --- srcpkgs/avrdude/template | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 srcpkgs/avrdude/template diff --git a/srcpkgs/avrdude/template b/srcpkgs/avrdude/template new file mode 100644 index 00000000000..fc4498dbefb --- /dev/null +++ b/srcpkgs/avrdude/template @@ -0,0 +1,16 @@ +# Template file for 'avrdude' +pkgname="avrdude" +version="6.1" +revision=1 +build_style=gnu-configure +short_desc="An utility to manipulate ROM and EEPROM of AVR microcontrollers" +maintainer="allan " +license="GPL-2" +homepage="http://www.nongnu.org/avrdude/" +distfiles="$NONGNU_SITE/$pkgname/${pkgname}-$version.tar.gz" +checksum=9e98baca8e57cad402aaa1c7b61c8de750ed4f6fed577f7e4935db0430783d3b +only_for_archs="i686 x86_64" +hostmakedepends="flex" +makedepends="elfutils-devel libusb-compat-devel" +depends="avr-libc" +conf_files="/etc/avrdude.conf" From 1c089a2bb57e726d9704ece63d548d24e7aadcfd Mon Sep 17 00:00:00 2001 From: Dominik Honnef Date: Fri, 16 Jan 2015 15:27:40 +0100 Subject: [PATCH 24/58] go: update to 1.4.1 --- srcpkgs/go/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/go/template b/srcpkgs/go/template index 6964fb83685..8ce4a4b14ef 100644 --- a/srcpkgs/go/template +++ b/srcpkgs/go/template @@ -1,6 +1,6 @@ # Template file for 'go' pkgname=go -version=1.4 +version=1.4.1 revision=1 wrksrc=go hostmakedepends="git ca-certificates" @@ -9,7 +9,7 @@ maintainer="Dominik Honnef " homepage="http://golang.org/" license="BSD" distfiles="http://golang.org/dl/go${version}.src.tar.gz" -checksum=3ae9f67e45a5ca7004b28808da8b1367d328a371d641ddbe636c0fb0ae0ffdae +checksum=3d9bb27ad4be51f60dc44f3d0026036ef07142797b1df1b5ae816277e6c31bb3 nostrip=yes noverifyrdeps=yes From baa0381afc7301165321104495f87bbedbb2c443 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Fri, 16 Jan 2015 14:37:28 +0100 Subject: [PATCH 25/58] webkit2gtk: update to 2.6.5. --- srcpkgs/webkit2gtk/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/webkit2gtk/template b/srcpkgs/webkit2gtk/template index 1d77921dcb9..b8d8ddcfc0e 100644 --- a/srcpkgs/webkit2gtk/template +++ b/srcpkgs/webkit2gtk/template @@ -1,6 +1,6 @@ # Template file for 'webkit2gtk' pkgname=webkit2gtk -version=2.6.4 +version=2.6.5 revision=1 build_style=cmake configure_args="-DPORT=GTK -DENABLE_GTKDOC=OFF -DCMAKE_LINKER=${XBPS_CROSS_TRIPLET}-gcc" @@ -9,7 +9,7 @@ maintainer="Enno Boland " homepage="http://webkitgtk.org/" license="LGPL-2.1, 2-clause-BSD" distfiles="${homepage}/releases/webkitgtk-${version}.tar.xz" -checksum=beef5e24edd9b9cade22d80bf373c74d236f996fe30f49f8697a70f267772e9b +checksum=b1658017cea7cc545b9e01f22af585986e21e4242825e215bc5f8e0c0dc67593 wrksrc="webkitgtk-$version" # ETOOHUGE From f3fc3cb8f7352acc9423c4b2b69c3749ceae9d39 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Fri, 16 Jan 2015 14:59:41 +0100 Subject: [PATCH 26/58] usb-modeswitch-data: update to 20150115. --- srcpkgs/usb-modeswitch-data/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/usb-modeswitch-data/template b/srcpkgs/usb-modeswitch-data/template index bc103e26f95..fc97ccffab3 100644 --- a/srcpkgs/usb-modeswitch-data/template +++ b/srcpkgs/usb-modeswitch-data/template @@ -1,6 +1,6 @@ # Template file for 'usb-modeswitch-data' pkgname=usb-modeswitch-data -version=20140529 +version=20150115 revision=1 build_style=gnu-makefile short_desc="Mode switching tool for controlling 'multi-mode' USB devices (data files)" @@ -8,6 +8,6 @@ maintainer="Enno Boland " license="GPL-2" homepage="http://www.draisberghof.de/usb_modeswitch/" distfiles="http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${version}.tar.bz2" -checksum=53889157937109e04dafe897c098ec94f3f44f9c0c83fc6ec8417aa9a587e536 +checksum=90549f589835a68279369c3dc0d47eb7338ee3bad09d737e7b85e1ab15bd2d8b make_install_args="RULESDIR=/usr/lib/udev/rules.d" noarch=yes From b5edc4ab2a646be8f9e53de7028c8ca0de81147e Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Fri, 16 Jan 2015 14:59:43 +0100 Subject: [PATCH 27/58] usb-modeswitch: update to 2.2.1. --- srcpkgs/usb-modeswitch/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/usb-modeswitch/template b/srcpkgs/usb-modeswitch/template index 48a3c1f6bec..7ece28319bf 100644 --- a/srcpkgs/usb-modeswitch/template +++ b/srcpkgs/usb-modeswitch/template @@ -1,6 +1,6 @@ # Template file for 'usb-modeswitch' pkgname=usb-modeswitch -version=2.2.0 +version=2.2.1 revision=2 build_style=gnu-makefile short_desc="Mode switching tool for controlling 'multi-mode' USB devices" @@ -11,6 +11,6 @@ makedepends="libusb-devel" depends="tcl ${pkgname}-data" hostmakedepends="pkg-config tcl" homepage="http://www.draisberghof.de/usb_modeswitch/" -distfiles="http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.2.0.tar.bz2" -checksum=2752103de171ed5f6c8d6a6e3e73e16c9ee3e8e394dd39c5991f7680eb908a3a +distfiles="http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${version}.tar.bz2" +checksum=37d926a0b6b6d490173c57e260a69aca49feb774875fc8f2001c1d0f5e8011cb make_install_args="UDEVDIR=/usr/lib/udev" From 2e1c46eb454686b3d8abf3942841e392ca6105bb Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 16:22:39 +0100 Subject: [PATCH 28/58] avr-gcc: unbreak x86: set up a working CFLAGS. --- srcpkgs/avr-gcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avr-gcc/template b/srcpkgs/avr-gcc/template index c4695eeeb4d..789bc03345e 100644 --- a/srcpkgs/avr-gcc/template +++ b/srcpkgs/avr-gcc/template @@ -19,7 +19,7 @@ do_configure() { mkdir obj-avr cd obj-avr - CFLAGS="${CFLAGS/-mtune=generic/}" + export CFLAGS="-O2 -pipe" CONFIG_SHELL=/bin/bash ../configure \ --disable-install-libiberty \ From e898a6b53927f66d7af864be65db935299f9a22c Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 16:30:37 +0100 Subject: [PATCH 29/58] avrdude: trigger autobuild. --- srcpkgs/avrdude/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avrdude/template b/srcpkgs/avrdude/template index fc4498dbefb..0d0a358726e 100644 --- a/srcpkgs/avrdude/template +++ b/srcpkgs/avrdude/template @@ -1,6 +1,6 @@ # Template file for 'avrdude' pkgname="avrdude" -version="6.1" +version=6.1 revision=1 build_style=gnu-configure short_desc="An utility to manipulate ROM and EEPROM of AVR microcontrollers" From 6476d1b4d2443d06df6e80502d6f9e308212d572 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 16 Jan 2015 18:21:16 +0100 Subject: [PATCH 30/58] aspell-de: include word list subpkg. --- srcpkgs/aspell-de/template | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/srcpkgs/aspell-de/template b/srcpkgs/aspell-de/template index 82e4768add2..d17bec9987f 100644 --- a/srcpkgs/aspell-de/template +++ b/srcpkgs/aspell-de/template @@ -1,7 +1,7 @@ # Template file for 'aspell-de' pkgname=aspell-de version=20030222 -revision=1 +revision=2 noarch=yes wrksrc="aspell6-de-${version}-1" build_style=configure @@ -13,3 +13,15 @@ license="GPL-2" maintainer="Christian Neukirchen " distfiles="${GNU_SITE}/aspell/dict/de/aspell6-de-${version}-1.tar.bz2" checksum=ba6c94e11bc2e0e6e43ce0f7822c5bba5ca5ac77129ef90c190b33632416e906 + +words-de_package() { + short_desc="German dictionary word list" + noarch=yes + pkg_install() { + vmkdir usr/share/dict + precat *.cwl | + iconv --from-code=ISO-8859-1 --to-code=UTF-8 | + cut -d/ -f1 | + sort -u >${PKGDESTDIR}/usr/share/dict/ngerman + } +} From 1792648f68c3ed0e9c52f9e6bd442b942942c26c Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 16 Jan 2015 18:21:21 +0100 Subject: [PATCH 31/58] aspell-en: include word list subpkg. --- srcpkgs/aspell-en/template | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/srcpkgs/aspell-en/template b/srcpkgs/aspell-en/template index b08b866404a..6a853c40e18 100644 --- a/srcpkgs/aspell-en/template +++ b/srcpkgs/aspell-en/template @@ -1,7 +1,7 @@ # Template file for 'aspell-en' pkgname=aspell-en version=7.1 -revision=1 +revision=2 noarch=yes wrksrc="aspell6-en-${version}-0" build_style=configure @@ -13,3 +13,21 @@ license="LGPL-2.1" maintainer="Juan RP " distfiles="${GNU_SITE}/aspell/dict/en/aspell6-en-${version}-0.tar.bz2" checksum=ff9df3c2e8c5bb19c6a66078b36a0ef4c4dfb0fcb969e29f7b5345e26d748d0a + +words-en_package() { + short_desc="English dictionary word list" + noarch=yes + pkg_install() { + vmkdir usr/share/dict + precat en-common.cwl en_US-wo_accents-only.cwl | + iconv --from-code=ISO-8859-1 --to-code=UTF-8 | + cut -d/ -f1 | + sort -u >${PKGDESTDIR}/usr/share/dict/american-english + precat en-common.cwl en_GB-ise-wo_accents-only.cwl | + iconv --from-code=ISO-8859-1 --to-code=UTF-8 | + cut -d/ -f1 | + sort -u >${PKGDESTDIR}/usr/share/dict/british-english + ln -s american-english ${PKGDESTDIR}/usr/share/dict/words + } +} + From 92e02cd3ae88fc68fc0ae2949649623b8c6caa52 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 16 Jan 2015 18:22:52 +0100 Subject: [PATCH 32/58] aspell-*: missing symlinks for subpackages :( --- srcpkgs/words-de | 1 + srcpkgs/words-en | 1 + 2 files changed, 2 insertions(+) create mode 120000 srcpkgs/words-de create mode 120000 srcpkgs/words-en diff --git a/srcpkgs/words-de b/srcpkgs/words-de new file mode 120000 index 00000000000..c5352359270 --- /dev/null +++ b/srcpkgs/words-de @@ -0,0 +1 @@ +aspell-de \ No newline at end of file diff --git a/srcpkgs/words-en b/srcpkgs/words-en new file mode 120000 index 00000000000..d7d7f70f9dd --- /dev/null +++ b/srcpkgs/words-en @@ -0,0 +1 @@ +aspell-en \ No newline at end of file From 0c6bfa058a967e1cd35f99e0dbabde5251eceee0 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 16 Jan 2015 18:26:42 +0100 Subject: [PATCH 33/58] aspell-de: fix hostmakedepends. --- srcpkgs/aspell-de/template | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srcpkgs/aspell-de/template b/srcpkgs/aspell-de/template index d17bec9987f..f6d3774a800 100644 --- a/srcpkgs/aspell-de/template +++ b/srcpkgs/aspell-de/template @@ -1,12 +1,11 @@ # Template file for 'aspell-de' pkgname=aspell-de version=20030222 -revision=2 +revision=3 noarch=yes wrksrc="aspell6-de-${version}-1" build_style=configure -hostmakedepends="which" -makedepends="aspell-devel" +hostmakedepends="aspell-devel" short_desc="German dictionary for aspell" homepage="http://aspell.net/" license="GPL-2" From 3c4beafb8afeceba2d00075bab7b02608f7f4449 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 16 Jan 2015 18:26:48 +0100 Subject: [PATCH 34/58] aspell-en: fix hostmakedepends. --- srcpkgs/aspell-en/template | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srcpkgs/aspell-en/template b/srcpkgs/aspell-en/template index 6a853c40e18..a52644310ff 100644 --- a/srcpkgs/aspell-en/template +++ b/srcpkgs/aspell-en/template @@ -1,12 +1,11 @@ # Template file for 'aspell-en' pkgname=aspell-en version=7.1 -revision=2 +revision=3 noarch=yes wrksrc="aspell6-en-${version}-0" build_style=configure -hostmakedepends="which" -makedepends="aspell-devel" +hostmakedepends="aspell-devel" short_desc="English dictionary for aspell" homepage="http://aspell.net/" license="LGPL-2.1" From 2bac730e47186dc32f445e501ad71bba99d7dc95 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 19:59:28 +0100 Subject: [PATCH 35/58] linux3.18: update to 3.18.3. --- srcpkgs/linux3.18/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux3.18/template b/srcpkgs/linux3.18/template index f6bc9240628..5186a984438 100644 --- a/srcpkgs/linux3.18/template +++ b/srcpkgs/linux3.18/template @@ -1,7 +1,7 @@ # Template file for 'linux3.18' # pkgname=linux3.18 -version=3.18.2 +version=3.18.3 revision=1 wrksrc="linux-${version}" maintainer="Juan RP " @@ -9,7 +9,7 @@ homepage="http://www.kernel.org" license="GPL-2" short_desc="The Linux kernel and modules (${version%.*} series)" distfiles="http://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" -checksum=1090fa94ddddc38e514f07872315af84032ba7cdb9715c21d5a562a1072b1abf +checksum=0e024cd0bba93f777e733381b1ee2d55a76e4b30e096b0668aba979390e94255 _kernver="${version}_${revision}" From d6d4aec8005a9590aee18dfe57c46bca5b463309 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 16 Jan 2015 20:03:01 +0100 Subject: [PATCH 36/58] linux3.14: update to 3.14.29. --- srcpkgs/linux3.14/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux3.14/template b/srcpkgs/linux3.14/template index 33c8429f09a..afe43d63d93 100644 --- a/srcpkgs/linux3.14/template +++ b/srcpkgs/linux3.14/template @@ -1,7 +1,7 @@ # Template file for 'linux3.14' # pkgname=linux3.14 -version=3.14.28 +version=3.14.29 revision=1 wrksrc="linux-${version}" maintainer="Juan RP " @@ -9,7 +9,7 @@ homepage="http://www.kernel.org" license="GPL-2" short_desc="The Linux kernel and modules (3.14 series)" distfiles="http://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" -checksum=772dbf0f3454df3fcad2de58f2bf4d8695c657407a76957b44e00c79f1ef5321 +checksum=bb38f4d3d7e6d2f873fbfdc91095128ba68da39804c5c7e1bac19dbdc0fd7442 _kernver="${version}_${revision}" From 2e0c71df7253b315b806a49af84d887fe0cff29f Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 20:17:40 +0100 Subject: [PATCH 37/58] New package: python-mpd2 --- srcpkgs/python-mpd2/template | 34 ++++++++++++++++++++++++++++++++++ srcpkgs/python3.4-mpd2 | 1 + 2 files changed, 35 insertions(+) create mode 100644 srcpkgs/python-mpd2/template create mode 120000 srcpkgs/python3.4-mpd2 diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template new file mode 100644 index 00000000000..331070354a0 --- /dev/null +++ b/srcpkgs/python-mpd2/template @@ -0,0 +1,34 @@ +# Template file for 'python-mpd2' +pkgname=python-mpd2 +version=0.5.4 +revision=1 +noarch=yes +wrksrc="${pkgname}-${version}" +build_style=python-module +python_versions="2.7 3.4" +pycompile_module="mpd2" +hostmakedepends="python-setuptools python3.4-setuptools" +makedepends="python-devel python3.4-devel" +depends="python" +short_desc="A Python library which provides a client interface for the Music Player Daemon." +maintainer="" +homepage="https://github.com/Mic92/python-mpd2" +license="GPL-3" +distfiles="https://github.com/Mic92/python-mpd2/archive/v${version}.tar.gz" +checksum=04dbc3b8d90746298e42852c5b7fb5be5e7af2ca03e812059639b6c060d98c53 + +post_install() { + vlicense GPL.txt LICENSE +} + +python3.4-mpd2_package() { + noarch=yes + depends="python3.4" + pycompile_version="3.4" + pycompile_module="mpd2" + short_desc="${short_desc/Python2/Python3.4}" + pkg_install() { + vmove usr/lib/python3.4 + } +} + diff --git a/srcpkgs/python3.4-mpd2 b/srcpkgs/python3.4-mpd2 new file mode 120000 index 00000000000..27660282c4e --- /dev/null +++ b/srcpkgs/python3.4-mpd2 @@ -0,0 +1 @@ +python-mpd2 \ No newline at end of file From 7a0a4c1c46ee0328e2227cfe736c10092cf62334 Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 21:46:07 +0100 Subject: [PATCH 38/58] New package: sonata --- srcpkgs/sonata/template | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 srcpkgs/sonata/template diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template new file mode 100644 index 00000000000..9c039f4b7b6 --- /dev/null +++ b/srcpkgs/sonata/template @@ -0,0 +1,22 @@ +# Template file for 'sonata' +pkgname=sonata +version=1.7a2 +revision=1 +noarch=yes +wrksrc="${pkgname}-${version}" +build_style=python-module +python_versions="3.4" +pycompile_module="sonata" +hostmakedepends="python3.4-setuptools" +depends="python3.4 python3.4-mpd2 python3.4-gobject ${hostmakedepends}" +short_desc="An elegant GTK 3 client for the Music Player Daemon" +maintainer="Jens E. Becker " +homepage="http://www.nongnu.org/sonata/" +license="GPL-3" +distfiles="https://github.com/multani/sonata/archive/v${version}.tar.gz" +checksum=40314225aa4700741e28e9770cf3753399a9e557468b66d1d56d59f4f73138e2 + +post_install() { + vlicense COPYING LICENSE +} + From 3b77ee1fc94300872edaaf2302d8af8e153c9511 Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 21:51:27 +0100 Subject: [PATCH 39/58] python-mpd2: set maintainer in template --- srcpkgs/python-mpd2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template index 331070354a0..39a098ffa8f 100644 --- a/srcpkgs/python-mpd2/template +++ b/srcpkgs/python-mpd2/template @@ -11,7 +11,7 @@ hostmakedepends="python-setuptools python3.4-setuptools" makedepends="python-devel python3.4-devel" depends="python" short_desc="A Python library which provides a client interface for the Music Player Daemon." -maintainer="" +maintainer="Jens E. Becker " homepage="https://github.com/Mic92/python-mpd2" license="GPL-3" distfiles="https://github.com/Mic92/python-mpd2/archive/v${version}.tar.gz" From 669033997e69b2956e0dfae13f6c630cb35896c0 Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 21:52:27 +0100 Subject: [PATCH 40/58] python-mpd2: template formatting --- srcpkgs/python-mpd2/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template index 39a098ffa8f..61a3c6e8725 100644 --- a/srcpkgs/python-mpd2/template +++ b/srcpkgs/python-mpd2/template @@ -10,7 +10,7 @@ pycompile_module="mpd2" hostmakedepends="python-setuptools python3.4-setuptools" makedepends="python-devel python3.4-devel" depends="python" -short_desc="A Python library which provides a client interface for the Music Player Daemon." +short_desc="A Python library which provides a client interface for the Music Player Daemon" maintainer="Jens E. Becker " homepage="https://github.com/Mic92/python-mpd2" license="GPL-3" @@ -18,7 +18,7 @@ distfiles="https://github.com/Mic92/python-mpd2/archive/v${version}.tar.gz" checksum=04dbc3b8d90746298e42852c5b7fb5be5e7af2ca03e812059639b6c060d98c53 post_install() { - vlicense GPL.txt LICENSE + vlicense GPL.txt LICENSE } python3.4-mpd2_package() { From 41c32c3f6a9e86cb8438b8c4f83b1dd9f713f943 Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 21:53:51 +0100 Subject: [PATCH 41/58] python-mpd2: shorter short_desc --- srcpkgs/python-mpd2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template index 61a3c6e8725..106a12ac1b6 100644 --- a/srcpkgs/python-mpd2/template +++ b/srcpkgs/python-mpd2/template @@ -10,7 +10,7 @@ pycompile_module="mpd2" hostmakedepends="python-setuptools python3.4-setuptools" makedepends="python-devel python3.4-devel" depends="python" -short_desc="A Python library which provides a client interface for the Music Player Daemon" +short_desc="Provides a client interface for the Music Player Daemon" maintainer="Jens E. Becker " homepage="https://github.com/Mic92/python-mpd2" license="GPL-3" From 979eb32e1828425cce48b3f3bce9a800d6aac150 Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 22:06:48 +0100 Subject: [PATCH 42/58] python-mpd2: template formatting (tabs) --- srcpkgs/python-mpd2/template | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template index 106a12ac1b6..9e0e59a779f 100644 --- a/srcpkgs/python-mpd2/template +++ b/srcpkgs/python-mpd2/template @@ -18,17 +18,17 @@ distfiles="https://github.com/Mic92/python-mpd2/archive/v${version}.tar.gz" checksum=04dbc3b8d90746298e42852c5b7fb5be5e7af2ca03e812059639b6c060d98c53 post_install() { - vlicense GPL.txt LICENSE + vlicense GPL.txt LICENSE } python3.4-mpd2_package() { - noarch=yes - depends="python3.4" - pycompile_version="3.4" - pycompile_module="mpd2" - short_desc="${short_desc/Python2/Python3.4}" - pkg_install() { - vmove usr/lib/python3.4 - } + noarch=yes + depends="python3.4" + pycompile_version="3.4" + pycompile_module="mpd2" + short_desc="${short_desc/Python2/Python3.4}" + pkg_install() { + vmove usr/lib/python3.4 + } } From ffb2563f82ec9c849f0bea5ae18957ea88044963 Mon Sep 17 00:00:00 2001 From: v2px Date: Fri, 16 Jan 2015 22:22:26 +0100 Subject: [PATCH 43/58] sonata: adds gtk+3 dependency --- srcpkgs/sonata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template index 9c039f4b7b6..0a29f467542 100644 --- a/srcpkgs/sonata/template +++ b/srcpkgs/sonata/template @@ -8,7 +8,7 @@ build_style=python-module python_versions="3.4" pycompile_module="sonata" hostmakedepends="python3.4-setuptools" -depends="python3.4 python3.4-mpd2 python3.4-gobject ${hostmakedepends}" +depends="python3.4 python3.4-mpd2 python3.4-gobject gtk+3 ${hostmakedepends}" short_desc="An elegant GTK 3 client for the Music Player Daemon" maintainer="Jens E. Becker " homepage="http://www.nongnu.org/sonata/" From 5107465dbee44b1dcb151c8ae9b8d282ab9fb580 Mon Sep 17 00:00:00 2001 From: Matt Carroll Date: Fri, 16 Jan 2015 17:21:44 +0000 Subject: [PATCH 44/58] New package: xcape-1.1_1 --- srcpkgs/xcape/template | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 srcpkgs/xcape/template diff --git a/srcpkgs/xcape/template b/srcpkgs/xcape/template new file mode 100644 index 00000000000..bc61947333a --- /dev/null +++ b/srcpkgs/xcape/template @@ -0,0 +1,14 @@ +# Template file for 'xcape' +pkgname=xcape +version=1.1 +revision=1 +build_style=gnu-makefile +hostmakedepends="pkg-config" +makedepends="libX11-devel libXtst-devel libXi-devel" +make_install_args="MANDIR=/share/man/man1" +short_desc="Allows you to use a single press of a modifier key as another key" +maintainer="Matt Carroll " +license="GPL-3" +homepage="https://github.com/alols/xcape" +distfiles="https://github.com/alols/xcape/archive/v${version}.tar.gz" +checksum=69ae927a6b2b1268a809b9c3af7c4f94584458f022beb6e2ca3e6bc3ba8a6d4a From 66232bdaa64bc0a5d74e1fcbff72b6b56db24d09 Mon Sep 17 00:00:00 2001 From: silvernode Date: Fri, 16 Jan 2015 20:23:02 -0600 Subject: [PATCH 45/58] New Package: yad-0.27.0 --- srcpkgs/yad/template | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 srcpkgs/yad/template diff --git a/srcpkgs/yad/template b/srcpkgs/yad/template new file mode 100644 index 00000000000..448dc23a10d --- /dev/null +++ b/srcpkgs/yad/template @@ -0,0 +1,15 @@ +# Template file for 'yad' +pkgname=yad +version=0.27.0 +revision=1 +#wrksrc="${pkgname}-${pkgname}-${version}" +build_style=gnu-configure +hostmakedepends="intltool pkg-config" +makedepends="gtk+-devel" +short_desc="Yet Another Dialog" +maintainer="Mollusk " +license="GPL-3" +homepage="http://sourceforge.net/projects/yad-dialog/" +distfiles="http://downloads.sourceforge.net/project/yad-dialog/yad-0.27.0.tar.xz" +checksum=8a7e4e3f026c00c5c63d612d9378b2500c5a6a668e83fe5569bde2df42c0d341 + From 305fb49df5c629e15de8f00555fe16f5d24db42e Mon Sep 17 00:00:00 2001 From: silvernode Date: Fri, 16 Jan 2015 20:40:53 -0600 Subject: [PATCH 46/58] yad: Added sourceforge variable --- srcpkgs/yad/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yad/template b/srcpkgs/yad/template index 448dc23a10d..359704ae00b 100644 --- a/srcpkgs/yad/template +++ b/srcpkgs/yad/template @@ -10,6 +10,6 @@ short_desc="Yet Another Dialog" maintainer="Mollusk " license="GPL-3" homepage="http://sourceforge.net/projects/yad-dialog/" -distfiles="http://downloads.sourceforge.net/project/yad-dialog/yad-0.27.0.tar.xz" +distfiles="${SOURCEFORGE_SITE}/$pkgname-dialog/$pkgname-$version.tar.xz" checksum=8a7e4e3f026c00c5c63d612d9378b2500c5a6a668e83fe5569bde2df42c0d341 From e0e5b6b8615d778c36031af179373781c3d3c9b2 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 17 Jan 2015 10:09:10 +0100 Subject: [PATCH 47/58] graphviz: move private shlibs to the main pkg. --- common/shlibs | 5 ----- srcpkgs/graphviz/template | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/common/shlibs b/common/shlibs index cab384f7a4d..9df131bee27 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1040,11 +1040,6 @@ libcgraph.so.6 graphviz-libs-2.28.0_6 libgvc.so.6 graphviz-libs-2.28.0_6 libcdt.so.5 graphviz-libs-2.28.0_6 libpathplan.so.4 graphviz-libs-2.28.0_6 -libgvplugin_dot_layout.so.6 graphviz-libs-2.28.0_6 -libgvplugin_gd.so.6 graphviz-libs-2.28.0_6 -libgvplugin_neato_layout.so.6 graphviz-libs-2.28.0_6 -libgvplugin_pango.so.6 graphviz-libs-2.28.0_6 -libgvplugin_core.so.6 graphviz-libs-2.28.0_6 libflowcanvas.so.5 flowcanvas-0.7.1_1 liblash.so.1 ladish-1_1 libmowgli-2.so.0 libmowgli-2.0.0_1 diff --git a/srcpkgs/graphviz/template b/srcpkgs/graphviz/template index 80f87ce777d..748ccaddf19 100644 --- a/srcpkgs/graphviz/template +++ b/srcpkgs/graphviz/template @@ -1,7 +1,8 @@ # Template file for 'graphviz' pkgname=graphviz version=2.38.0 -revision=2 +revision=3 +replaces="graphviz-libs<2.38.0_3" build_style=gnu-configure hostmakedepends="automake libtool flex pkg-config libltdl-devel" makedepends="libpng-devel>=1.6 gd-devel>=2.1 gtk+-devel librsvg-devel libltdl-devel" @@ -29,7 +30,6 @@ graphviz-libs_package() { replaces="graphviz<2.28.0_6" pkg_install() { vmove "usr/lib/*.so.*" - vmove usr/lib/graphviz } } graphviz-devel_package() { From 564124256fb675295f5a628e0d7a56acdf7a18a5 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 17 Jan 2015 11:33:15 +0100 Subject: [PATCH 48/58] runit-void: bump (new agetty serial port services). --- srcpkgs/runit-void/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/runit-void/template b/srcpkgs/runit-void/template index 1d634867466..c61b0dad5ab 100644 --- a/srcpkgs/runit-void/template +++ b/srcpkgs/runit-void/template @@ -1,6 +1,6 @@ # Template file for 'runit-void' pkgname=runit-void -version=20150116 +version=20150117 revision=1 build_style=gnu-makefile homepage="http://www.voidlinux.eu" From dd1fc3f8f6dc4e3daa740ade9ddd65dd97c210dc Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Sat, 17 Jan 2015 10:47:52 +0000 Subject: [PATCH 49/58] tudu: update to 0.10. --- srcpkgs/tudu/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tudu/template b/srcpkgs/tudu/template index f6564c57f94..a0e343830b2 100644 --- a/srcpkgs/tudu/template +++ b/srcpkgs/tudu/template @@ -1,6 +1,6 @@ # Template file for 'tudu' pkgname=tudu -version=0.9.1 +version=0.10 revision=1 build_style=gnu-configure conf_files="/etc/tudurc" @@ -10,4 +10,4 @@ maintainer="Eivind Uggedal " license="GPL-3" homepage="http://code.meskio.net/tudu/" distfiles="http://code.meskio.net/${pkgname}/${pkgname}-${version}.tar.gz" -checksum=5296f59473f93d2d91a0a602502eee155914e72d1556c17d3bef2793ed36fd16 +checksum=a40f420eb08fc3b4fe3c75abc9ef3eeddf32e20ff893d17d530f020b0be4e114 From 667cd06a1a1bded4e88e422167c85c15e12dd159 Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Sat, 17 Jan 2015 10:52:00 +0000 Subject: [PATCH 50/58] flow: update to 0.1.4. --- srcpkgs/flow/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/flow/template b/srcpkgs/flow/template index 373d2195a40..38e7f319176 100644 --- a/srcpkgs/flow/template +++ b/srcpkgs/flow/template @@ -1,6 +1,6 @@ # Template file for 'flow' pkgname=flow -version=0.1.2 +version=0.1.4 revision=1 build_style=gnu-makefile makedepends="ocaml elfutils-devel" @@ -9,7 +9,7 @@ maintainer="Eivind Uggedal " license="BSD" homepage="http://flowtype.org/" distfiles="https://github.com/facebook/${pkgname}/archive/v${version}.tar.gz" -checksum=31ddcd3b0a6afa4ec19bab3c3aeb9b1adba7eea4d3ec5c40cc6d1ecc29d904db +checksum=77131c44b8fbb0b87aa052ff0b62064a311a51ca3cd7df3cbaf813c8c585784b do_install() { install -Dm755 bin/flow ${DESTDIR}/usr/bin/flow From b3c7e8fb952a5be900ef6c392f9a8303e8f1676f Mon Sep 17 00:00:00 2001 From: TheNumb Date: Sat, 17 Jan 2015 12:21:42 +0100 Subject: [PATCH 51/58] New package: konversation-1.5.1_1 (A user friendly IRC client for KDE). --- srcpkgs/konversation/template | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 srcpkgs/konversation/template diff --git a/srcpkgs/konversation/template b/srcpkgs/konversation/template new file mode 100644 index 00000000000..10ee1b511ac --- /dev/null +++ b/srcpkgs/konversation/template @@ -0,0 +1,13 @@ +# Template file for 'konversation' +pkgname=konversation +version=1.5.1 +revision=1 +build_style=cmake +hostmakedepends="automoc4 cmake" +makedepends="kdelibs-devel phonon-devel kdepimlibs-devel qca-devel docbook-xml" +short_desc="A user friendly IRC client for KDE" +maintainer="TheNumb " +license="GPL-3" +homepage="http://konversation.kde.org" +distfiles="http://download.kde.org/stable/${pkgname}/${version}/src/${pkgname}-${version}.tar.xz" +checksum=97838dc3cb07210c96154958237e216ad05cffa334f5e549d8619b4c70961986 From 1e906b30d51625fcabe63c62b985fbe25fa4706d Mon Sep 17 00:00:00 2001 From: v2px Date: Sat, 17 Jan 2015 12:21:47 +0100 Subject: [PATCH 52/58] sonata: removes unnecessary vlicense statement (GPL) --- srcpkgs/sonata/template | 4 ---- 1 file changed, 4 deletions(-) diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template index 0a29f467542..d746df050c8 100644 --- a/srcpkgs/sonata/template +++ b/srcpkgs/sonata/template @@ -16,7 +16,3 @@ license="GPL-3" distfiles="https://github.com/multani/sonata/archive/v${version}.tar.gz" checksum=40314225aa4700741e28e9770cf3753399a9e557468b66d1d56d59f4f73138e2 -post_install() { - vlicense COPYING LICENSE -} - From 71eeee48e635b1be7a13c8778c257c58b41999b0 Mon Sep 17 00:00:00 2001 From: v2px Date: Sat, 17 Jan 2015 12:22:08 +0100 Subject: [PATCH 53/58] python-mpd2: removes unnecessary vlicense statement (GPL) --- srcpkgs/python-mpd2/template | 4 ---- 1 file changed, 4 deletions(-) diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template index 9e0e59a779f..310a39c1ca1 100644 --- a/srcpkgs/python-mpd2/template +++ b/srcpkgs/python-mpd2/template @@ -17,10 +17,6 @@ license="GPL-3" distfiles="https://github.com/Mic92/python-mpd2/archive/v${version}.tar.gz" checksum=04dbc3b8d90746298e42852c5b7fb5be5e7af2ca03e812059639b6c060d98c53 -post_install() { - vlicense GPL.txt LICENSE -} - python3.4-mpd2_package() { noarch=yes depends="python3.4" From 16364c80daa81c62e5551e31e5a4ddfc26110f93 Mon Sep 17 00:00:00 2001 From: v2px Date: Sat, 17 Jan 2015 12:22:48 +0100 Subject: [PATCH 54/58] python-mpd2: removes redundant worksrc --- srcpkgs/python-mpd2/template | 1 - 1 file changed, 1 deletion(-) diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template index 310a39c1ca1..405659ddbfa 100644 --- a/srcpkgs/python-mpd2/template +++ b/srcpkgs/python-mpd2/template @@ -3,7 +3,6 @@ pkgname=python-mpd2 version=0.5.4 revision=1 noarch=yes -wrksrc="${pkgname}-${version}" build_style=python-module python_versions="2.7 3.4" pycompile_module="mpd2" From 3dbd82520d68c7ed676787e98521c40014c2dd57 Mon Sep 17 00:00:00 2001 From: v2px Date: Sat, 17 Jan 2015 12:23:09 +0100 Subject: [PATCH 55/58] sonata: removes redundant worksrc --- srcpkgs/sonata/template | 1 - 1 file changed, 1 deletion(-) diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template index d746df050c8..777769e688c 100644 --- a/srcpkgs/sonata/template +++ b/srcpkgs/sonata/template @@ -3,7 +3,6 @@ pkgname=sonata version=1.7a2 revision=1 noarch=yes -wrksrc="${pkgname}-${version}" build_style=python-module python_versions="3.4" pycompile_module="sonata" From 9bbc4fc72de4846b015c823a0e8011ccadc3890f Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Sat, 17 Jan 2015 11:30:21 +0000 Subject: [PATCH 56/58] vimb: update to 2.9. --- srcpkgs/vimb/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/vimb/template b/srcpkgs/vimb/template index 9057a204591..9344f8884dd 100644 --- a/srcpkgs/vimb/template +++ b/srcpkgs/vimb/template @@ -1,6 +1,6 @@ # Template file for 'vimb' pkgname=vimb -version=2.8 +version=2.9 revision=3 build_style=gnu-makefile make_build_args="$(vopt_if gtk3 GTK=3)" @@ -11,7 +11,7 @@ maintainer="Eivind Uggedal " license="GPL-3" homepage="http://fanglingsu.github.io/vimb" distfiles="https://github.com/fanglingsu/vimb/archive/${version}.tar.gz" -checksum=d398b0e772e1c3751ef76dc833e84b4abaa19f6b9b5e75afa63ace8b9ff12e12 +checksum=179024e07c133b049d9fb7c487bed9b9a8512b633e1d857e038b26a01d2e3541 build_options="gtk3" build_options_default="gtk3" From 151dae37f010d5cf69911b4198c7e586163c0e20 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Sat, 17 Jan 2015 13:34:23 +0100 Subject: [PATCH 57/58] perl-Net-SSLeay: update to 1.67. --- srcpkgs/perl-Net-SSLeay/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/perl-Net-SSLeay/template b/srcpkgs/perl-Net-SSLeay/template index 366da560db4..4e46c5b3555 100644 --- a/srcpkgs/perl-Net-SSLeay/template +++ b/srcpkgs/perl-Net-SSLeay/template @@ -1,7 +1,7 @@ # Template build file for 'perl-Net-SSLeay'. pkgname=perl-Net-SSLeay -version=1.66 -revision=5 +version=1.67 +revision=1 wrksrc="${pkgname/perl-/}-${version}" build_style=perl-module hostmakedepends="perl>=5.20 libressl-openssl" @@ -12,4 +12,4 @@ maintainer="Christian Neukirchen " homepage="http://search.cpan.org/dist/Net-SSLeay/" license="BSD" distfiles="${CPAN_SITE}/Net/${pkgname/perl-/}-$version.tar.gz" -checksum=5bf8fd536d900da9d38a985417302fbb1ce4a8723e445f89028479273e6cae57 +checksum=1876466e7a6373649299df4a2d094060e1bda074450b107545caf3e352c37e4e From 61522009116baadf70f053aa8f3cbd5933ce771a Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Sat, 17 Jan 2015 13:37:19 +0100 Subject: [PATCH 58/58] trace-cmd: update to 2.5.1. --- srcpkgs/trace-cmd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/trace-cmd/template b/srcpkgs/trace-cmd/template index 5041aef8ce5..aabdc5d3660 100644 --- a/srcpkgs/trace-cmd/template +++ b/srcpkgs/trace-cmd/template @@ -1,6 +1,6 @@ # Template file for 'trace-cmd' pkgname=trace-cmd -version=2.5 +version=2.5.1 revision=1 build_style=gnu-makefile make_build_args="all gui doc"