From 5cbba21ddc8e5639198e4a234c09f0891cf8555b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 18:49:40 -0200 Subject: epdfview-libre-0.1.8-5: updating revision * give patches more meaningful names * split prepare() function * update maintainer information --- ...Poppler-0.17.0-I-needed-to-swap-the-blue-.patch | 60 ------------------ libre/epdfview-libre/PKGBUILD | 54 +++++++++------- .../epdfview-0.1.8-glib2-headers.patch | 13 ++++ .../epdfview-0.1.8-modern-cups.patch | 74 ++++++++++++++++++++++ ...fview-0.1.8-swap-the-blue-and-red-channel.patch | 60 ++++++++++++++++++ libre/epdfview-libre/epdfview.desktop.patch | 11 ---- libre/epdfview-libre/glib2_headers.patch | 12 ---- 7 files changed, 177 insertions(+), 107 deletions(-) delete mode 100644 libre/epdfview-libre/0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch create mode 100644 libre/epdfview-libre/epdfview-0.1.8-glib2-headers.patch create mode 100644 libre/epdfview-libre/epdfview-0.1.8-modern-cups.patch create mode 100644 libre/epdfview-libre/epdfview-0.1.8-swap-the-blue-and-red-channel.patch delete mode 100644 libre/epdfview-libre/epdfview.desktop.patch delete mode 100644 libre/epdfview-libre/glib2_headers.patch (limited to 'libre') diff --git a/libre/epdfview-libre/0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch b/libre/epdfview-libre/0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch deleted file mode 100644 index e077a15cf..000000000 --- a/libre/epdfview-libre/0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch +++ /dev/null @@ -1,60 +0,0 @@ -From d30496f52b85f82947bd07b9bd60f8482843ece8 Mon Sep 17 00:00:00 2001 -From: jordi -Date: Tue, 5 Jul 2011 09:23:38 +0000 -Subject: [PATCH 1/2] When using Poppler 0.17.0, I needed to swap the blue and - red channels, otherwise the colors (other than black - and white) looked wierd. - -git-svn-id: svn://svn.emma-soft.com/epdfview/trunk@367 cb4bfb15-1111-0410-82e2-95233c8f1c7e ---- - src/PDFDocument.cxx | 20 ++++++++++++++++++++ - 1 files changed, 20 insertions(+), 0 deletions(-) - -diff --git a/src/PDFDocument.cxx b/src/PDFDocument.cxx -index df5d75f..63b3513 100644 ---- a/src/PDFDocument.cxx -+++ b/src/PDFDocument.cxx -@@ -20,6 +20,7 @@ - #include - #include - #include -+#include - #include "epdfview.h" - - using namespace ePDFView; -@@ -33,6 +34,24 @@ static PageLayout convertPageLayout (gint pageLayout); - static PageMode convertPageMode (gint pageMode); - static gchar *getAbsoluteFileName (const gchar *fileName); - -+namespace -+{ -+ void -+ convert_bgra_to_rgba (guint8 *data, int width, int height) -+ { -+ using std::swap; -+ -+ for (int y = 0; y < height; y++) -+ { -+ for (int x = 0; x < width; x++) -+ { -+ swap(data[0], data[2]); -+ data += 4; -+ } -+ } -+ } -+} -+ - /// - /// @brief Constructs a new PDFDocument object. - /// -@@ -650,6 +669,7 @@ PDFDocument::renderPage (gint pageNum) - poppler_page_render (page, context); - cairo_destroy(context); - cairo_surface_destroy (surface); -+ convert_bgra_to_rgba(renderedPage->getData (), width, height); - #else // !HAVE_POPPLER_0_17_0 - // Create the pixbuf from the data and render to it. - GdkPixbuf *pixbuf = gdk_pixbuf_new_from_data (renderedPage->getData (), --- -1.7.7 - diff --git a/libre/epdfview-libre/PKGBUILD b/libre/epdfview-libre/PKGBUILD index 626e653f2..5a5066950 100644 --- a/libre/epdfview-libre/PKGBUILD +++ b/libre/epdfview-libre/PKGBUILD @@ -1,16 +1,18 @@ -# Parabola maintainer: Michał Masłowski -# $Id: PKGBUILD 57042 2011-10-19 06:13:49Z schuay $ -# Maintainer: schuay +# $Id: PKGBUILD 105182 2014-02-02 12:39:48Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski +# Maintainer: Kyle Keen +# Contributor: schuay # Contributor: Tom K # Contributor: Thayer Williams # Maintainer (Parabola): Márcio Silva +# Maintainer (Parabola): Michał Masłowski pkgname=epdfview-libre _pkgname=epdfview pkgver=0.1.8 -pkgrel=4 -pkgdesc="A free lightweight PDF document viewer." -url="http://www.emma-soft.com/projects/epdfview/" +pkgrel=5 +pkgdesc='Lightweight PDF document viewer, without nonfree suggestions' +url='http://freecode.com/projects/epdfview' arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('poppler-glib' 'desktop-file-utils' 'hicolor-icon-theme' 'gtk2' 'xdg-utils') @@ -19,35 +21,39 @@ provides=('epdfview') conflicts=('epdfview') replaces=('epdfview') install='epdfview.install' -source=("http://www.emma-soft.com/projects/${_pkgname}/chrome/site/releases/${_pkgname}-${pkgver}.tar.bz2" - "${_pkgname}.desktop.patch" - "glib2_headers.patch" - "0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch") +source=(ftp://ftp.slackware.com/.1/blfs/conglomeration/epdfview/$_pkgname-$pkgver.tar.bz2 + epdfview-0.1.8-swap-the-blue-and-red-channel.patch + epdfview-0.1.8-glib2-headers.patch + epdfview-0.1.8-modern-cups.patch) md5sums=('e50285b01612169b2594fea375f53ae4' - 'fbf22bbabdbb7544db615ac5775d57e2' - '41b30f53f20472cbc2fcd4eae161125e' - '7f9ea101a41f5b4e999fd024f423d41f') + '7f9ea101a41f5b4e999fd024f423d41f' + '2fffa9c7cd4c5f0744803591c2f162a3' + '5c2cf5612d2a7dfe6cf005b94aeb5ada') -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - - patch -Np0 -i "${srcdir}/${_pkgname}.desktop.patch" - patch -Np1 -i "${srcdir}/0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch" - patch -Np1 -i "${srcdir}/glib2_headers.patch" # FS#30116 +prepare() { + cd $_pkgname-$pkgver + sed -i 's/icon_epdfview-48/epdfview/' data/epdfview.desktop # Use xdg-open as default browser. sed -r '/DEFAULT_EXTERNAL_BROWSER_COMMAND_LINE/s/firefox[^ ]*/xdg-open/' -i src/Config.cxx + patch -p1 -i ../epdfview-0.1.8-swap-the-blue-and-red-channel.patch + patch -p1 -i ../epdfview-0.1.8-glib2-headers.patch # FS#30116 + patch -p1 -i ../epdfview-0.1.8-modern-cups.patch # FS#32511 +} + +build() { + cd $_pkgname-$pkgver ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var make } -package() { - cd "${srcdir}/${_pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install +package() { + cd $_pkgname-$pkgver + make DESTDIR="$pkgdir" install for size in 24 32 48; do - install -Dm644 data/icon_${_pkgname}-${size}.png \ - "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/${_pkgname}.png" + install -Dm644 data/icon_$_pkgname-$size.png \ + "$pkgdir"/usr/share/icons/hicolor/${size}x${size}/apps/$_pkgname.png done } diff --git a/libre/epdfview-libre/epdfview-0.1.8-glib2-headers.patch b/libre/epdfview-libre/epdfview-0.1.8-glib2-headers.patch new file mode 100644 index 000000000..e9f0983b5 --- /dev/null +++ b/libre/epdfview-libre/epdfview-0.1.8-glib2-headers.patch @@ -0,0 +1,13 @@ +diff --git a/src/gtk/StockIcons.h b/src/gtk/StockIcons.h +index c142a7a..58fcf2e 100644 +--- a/src/gtk/StockIcons.h ++++ b/src/gtk/StockIcons.h +@@ -18,7 +18,7 @@ + #if !defined (__STOCK_ICONS_H__) + #define __STOCK_ICONS_H__ + +-#include ++#include + + G_BEGIN_DECLS + diff --git a/libre/epdfview-libre/epdfview-0.1.8-modern-cups.patch b/libre/epdfview-libre/epdfview-0.1.8-modern-cups.patch new file mode 100644 index 000000000..64988789f --- /dev/null +++ b/libre/epdfview-libre/epdfview-0.1.8-modern-cups.patch @@ -0,0 +1,74 @@ +diff -Naur epdfview-0.1.8.orig/src/PrintPter.cxx epdfview-0.1.8/src/PrintPter.cxx +--- epdfview-0.1.8.orig/src/PrintPter.cxx 2011-05-28 11:25:01.000000000 +0100 ++++ epdfview-0.1.8/src/PrintPter.cxx 2012-08-22 20:11:46.362436859 +0100 +@@ -22,6 +22,40 @@ + #include + #include "epdfview.h" + ++#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5) ++#define HAVE_CUPS_1_6 1 ++#endif ++ ++#ifndef HAVE_CUPS_1_6 ++inline int ippGetInteger (ipp_attribute_t *attr, int element) ++{ ++ return (attr->values[element].integer); ++} ++ ++inline const char * ippGetString (ipp_attribute_t *attr, ++ int element, ++ const char **language /*UNUSED*/) ++{ ++ return (attr->values[element].string.text); ++} ++ ++inline int ippSetOperation (ipp_t *ipp, ipp_op_t op) ++{ ++ if (!ipp) ++ return (0); ++ ipp->request.op.operation_id = op; ++ return (1); ++} ++ ++inline int ippSetRequestId (ipp_t *ipp, int request_id) ++{ ++ if (!ipp) ++ return (0); ++ ipp->request.any.request_id = request_id; ++ return (1); ++} ++#endif ++ + using namespace ePDFView; + + // Structures +@@ -380,8 +414,8 @@ + + ipp_t *request = ippNew (); + +- request->request.op.operation_id = IPP_GET_PRINTER_ATTRIBUTES; +- request->request.op.request_id = 1; ++ ippSetOperation(request, IPP_GET_PRINTER_ATTRIBUTES); ++ ippSetRequestId(request, 1); + + ippAddString (request, IPP_TAG_OPERATION, IPP_TAG_CHARSET, + "attributes-charset", NULL, "utf-8"); +@@ -403,7 +437,7 @@ + ippFindAttribute (answer, "printer-state", IPP_TAG_ZERO); + if ( NULL != state ) + { +- switch (state->values[0].integer) ++ switch (ippGetInteger (state, 0)) + { + case IPP_PRINTER_IDLE: + attributes->state = g_strdup (_("Idle")); +@@ -425,7 +459,7 @@ + ippFindAttribute (answer, "printer-location", IPP_TAG_ZERO); + if ( NULL != location ) + { +- attributes->location = g_strdup (location->values[0].string.text); ++ attributes->location = g_strdup (ippGetString (location, 0, NULL)); + } + + ippDelete (answer); + diff --git a/libre/epdfview-libre/epdfview-0.1.8-swap-the-blue-and-red-channel.patch b/libre/epdfview-libre/epdfview-0.1.8-swap-the-blue-and-red-channel.patch new file mode 100644 index 000000000..e077a15cf --- /dev/null +++ b/libre/epdfview-libre/epdfview-0.1.8-swap-the-blue-and-red-channel.patch @@ -0,0 +1,60 @@ +From d30496f52b85f82947bd07b9bd60f8482843ece8 Mon Sep 17 00:00:00 2001 +From: jordi +Date: Tue, 5 Jul 2011 09:23:38 +0000 +Subject: [PATCH 1/2] When using Poppler 0.17.0, I needed to swap the blue and + red channels, otherwise the colors (other than black + and white) looked wierd. + +git-svn-id: svn://svn.emma-soft.com/epdfview/trunk@367 cb4bfb15-1111-0410-82e2-95233c8f1c7e +--- + src/PDFDocument.cxx | 20 ++++++++++++++++++++ + 1 files changed, 20 insertions(+), 0 deletions(-) + +diff --git a/src/PDFDocument.cxx b/src/PDFDocument.cxx +index df5d75f..63b3513 100644 +--- a/src/PDFDocument.cxx ++++ b/src/PDFDocument.cxx +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + #include "epdfview.h" + + using namespace ePDFView; +@@ -33,6 +34,24 @@ static PageLayout convertPageLayout (gint pageLayout); + static PageMode convertPageMode (gint pageMode); + static gchar *getAbsoluteFileName (const gchar *fileName); + ++namespace ++{ ++ void ++ convert_bgra_to_rgba (guint8 *data, int width, int height) ++ { ++ using std::swap; ++ ++ for (int y = 0; y < height; y++) ++ { ++ for (int x = 0; x < width; x++) ++ { ++ swap(data[0], data[2]); ++ data += 4; ++ } ++ } ++ } ++} ++ + /// + /// @brief Constructs a new PDFDocument object. + /// +@@ -650,6 +669,7 @@ PDFDocument::renderPage (gint pageNum) + poppler_page_render (page, context); + cairo_destroy(context); + cairo_surface_destroy (surface); ++ convert_bgra_to_rgba(renderedPage->getData (), width, height); + #else // !HAVE_POPPLER_0_17_0 + // Create the pixbuf from the data and render to it. + GdkPixbuf *pixbuf = gdk_pixbuf_new_from_data (renderedPage->getData (), +-- +1.7.7 + diff --git a/libre/epdfview-libre/epdfview.desktop.patch b/libre/epdfview-libre/epdfview.desktop.patch deleted file mode 100644 index d86fc3088..000000000 --- a/libre/epdfview-libre/epdfview.desktop.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- data/epdfview.desktop.bak 2009-04-05 16:55:56.000000000 -0700 -+++ data/epdfview.desktop 2009-04-05 16:56:33.000000000 -0700 -@@ -7,7 +7,7 @@ - GenericName=PDF Viewer - GenericName[ca]=Visor PDF - GenericName[es]=Visor PDF --Icon=icon_epdfview-48 -+Icon=epdfview - Name=ePDFViewer - Name[ca]=ePDFViewer - Name[es]=ePDFViewer diff --git a/libre/epdfview-libre/glib2_headers.patch b/libre/epdfview-libre/glib2_headers.patch deleted file mode 100644 index b5bc5c211..000000000 --- a/libre/epdfview-libre/glib2_headers.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/src/gtk/StockIcons.h b/src/gtk/StockIcons.h -index c142a7a..58fcf2e 100644 ---- a/src/gtk/StockIcons.h -+++ b/src/gtk/StockIcons.h -@@ -18,7 +18,7 @@ - #if !defined (__STOCK_ICONS_H__) - #define __STOCK_ICONS_H__ - --#include -+#include - - G_BEGIN_DECLS -- cgit v1.2.3-2-g168b From 7a778e8cdf604924dc9bafc47849e0594ae1f85c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 18:57:59 -0200 Subject: grub-1:2.02.beta2-1.1: repackage to fix trouble installing because was discovered that grub on [libre] was the official Arch package from [core], maybe a db-sync bug --- libre/grub/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/grub/PKGBUILD b/libre/grub/PKGBUILD index c82b41a13..df6956f96 100644 --- a/libre/grub/PKGBUILD +++ b/libre/grub/PKGBUILD @@ -15,7 +15,7 @@ _UNIFONT_VER="6.3.20131217" pkgname="grub" pkgdesc="GNU GRand Unified Bootloader (2), (Parabola rebranded)" pkgver=2.02.beta2 -pkgrel=1 +pkgrel=1.1 epoch="1" url="https://www.gnu.org/software/grub/" arch=('x86_64' 'i686') -- cgit v1.2.3-2-g168b From a764c5f9792d99794f71c128f92f6e86d3d85e29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 19:05:41 -0200 Subject: mate-document-viewer-libre-1.6.2-2: fix FS#38754 => https://bugs.archlinux.org/task/38754 --- libre/mate-document-viewer-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/mate-document-viewer-libre/PKGBUILD b/libre/mate-document-viewer-libre/PKGBUILD index 6557d3469..969c335b2 100644 --- a/libre/mate-document-viewer-libre/PKGBUILD +++ b/libre/mate-document-viewer-libre/PKGBUILD @@ -3,7 +3,7 @@ _pkgname=mate-document-viewer pkgname=mate-document-viewer-libre pkgver=1.6.2 -pkgrel=1 +pkgrel=2 pkgdesc="Simply a document viewer, with libarchive recommendation" url="http://mate-desktop.org" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ replaces=$_pkgname conflicts=$_pkgname provides=$_pkgname=$pkgver depends=('dconf' 'dbus' 'desktop-file-utils' 'gtk2' 'libmatekeyring' 'libsm' - 'libspectre' 'mate-icon-theme' 'poppler-glib' 'zlib') + 'libspectre' 'mate-desktop' 'mate-icon-theme' 'poppler-glib' 'zlib') makedepends=('djvulibre' 'gobject-introspection' 'libgxps' 'mate-common' 'mate-doc-utils' 'mate-file-manager' 'perl-xml-parser' 'texlive-bin') optdepends=('djvulibre: DjVu support' -- cgit v1.2.3-2-g168b From e102606cedd487b7052aafbc314d8ec8489b9ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 19:08:22 -0200 Subject: kdebase-runtime-libre-4.12.1-3: libwebp rebuild --- libre/kdebase-runtime-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/kdebase-runtime-libre/PKGBUILD b/libre/kdebase-runtime-libre/PKGBUILD index 6ae82841a..970410df1 100644 --- a/libre/kdebase-runtime-libre/PKGBUILD +++ b/libre/kdebase-runtime-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 204616 2014-01-24 10:54:17Z andyrtr $ +# $Id: PKGBUILD 204995 2014-02-02 20:35:28Z heftig $ # Maintainer: Andrea Scarpino # Contributor: Pierre Schmitz # Maintainer (Parabola): André Silva @@ -6,7 +6,7 @@ _pkgname=kdebase-runtime pkgname=kdebase-runtime-libre pkgver=4.12.1 -pkgrel=2 +pkgrel=3 pkgdesc="Plugins and applications necessary for the running of KDE applications, without non-privacy search providers" arch=('i686' 'x86_64' 'mips64el') url='https://projects.kde.org/projects/kde/kde-runtime' -- cgit v1.2.3-2-g168b From b869e0307fe814498c8dcaa1e838d4ddc42a35a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 19:11:30 -0200 Subject: gst-plugins-bad-libre-1.2.2-3: libwebp rebuild --- libre/gst-plugins-bad-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/gst-plugins-bad-libre/PKGBUILD b/libre/gst-plugins-bad-libre/PKGBUILD index 7172dbc05..5fa80012e 100644 --- a/libre/gst-plugins-bad-libre/PKGBUILD +++ b/libre/gst-plugins-bad-libre/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 203419 2014-01-10 16:09:41Z heftig $ +# $Id: PKGBUILD 204986 2014-02-02 19:01:22Z heftig $ # Maintainer: Jan de Groot # Maintainer (Parabola): Márcio Silva _pkgname=gst-plugins-bad pkgname=$_pkgname-libre pkgver=1.2.2 -pkgrel=2 +pkgrel=3 pkgdesc="GStreamer Multimedia Framework Bad Plugins, without nonfree faac support" arch=('i686' 'x86_64' 'mips64el') license=('LGPL') -- cgit v1.2.3-2-g168b From 4d9dbbfa464d4da2ce157adcd5b533097f29b047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 19:15:02 -0200 Subject: netsurf-libre-3.0-6: libwebp rebuild --- libre/netsurf-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/netsurf-libre/PKGBUILD b/libre/netsurf-libre/PKGBUILD index bcb40c614..0bcb5e021 100644 --- a/libre/netsurf-libre/PKGBUILD +++ b/libre/netsurf-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 100033 2013-10-31 10:58:22Z arodseth $ +# $Id: PKGBUILD 105206 2014-02-02 19:14:41Z heftig $ # Maintainer: Alexander Rødseth # Contributor: Paulo Matias # Contributor: Georgij Kondratjev @@ -8,7 +8,7 @@ _pkgname=netsurf pkgname=netsurf-libre pkgver=3.0 -pkgrel=5 +pkgrel=6 pkgdesc='Lightweight and fast web browser, without non-privacy search providers' arch=('x86_64' 'i686' 'mips64el') url='http://www.netsurf-browser.org/' -- cgit v1.2.3-2-g168b From 2284fe59e6311eb1eba88ce0829ec9badc11d299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 3 Feb 2014 22:39:49 -0200 Subject: epdfview-libre: add $pkgver on provides --- libre/epdfview-libre/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/epdfview-libre/PKGBUILD b/libre/epdfview-libre/PKGBUILD index 5a5066950..4dbf93b6f 100644 --- a/libre/epdfview-libre/PKGBUILD +++ b/libre/epdfview-libre/PKGBUILD @@ -17,7 +17,7 @@ arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('poppler-glib' 'desktop-file-utils' 'hicolor-icon-theme' 'gtk2' 'xdg-utils') makedepends=('pkgconfig') -provides=('epdfview') +provides=("epdfview=$pkgver") conflicts=('epdfview') replaces=('epdfview') install='epdfview.install' -- cgit v1.2.3-2-g168b From 090b71ef6414c07e13f67e7619699449a185260b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 01:34:48 -0200 Subject: netsurf-libre: fix building issue --- libre/netsurf-libre/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/netsurf-libre/PKGBUILD b/libre/netsurf-libre/PKGBUILD index 0bcb5e021..f3ade8253 100644 --- a/libre/netsurf-libre/PKGBUILD +++ b/libre/netsurf-libre/PKGBUILD @@ -116,7 +116,7 @@ build() { package() { cd "$_pkgname-$pkgver" - make install PREFIX=/usr DESTDIR="$pkgdir" + make install PREFIX=/usr DESTDIR="$pkgdir" NETSURF_USE_WEBP=YES mv "$pkgdir/usr/bin/$_pkgname" "$pkgdir/usr/bin/$_pkgname.elf" install -Dm755 "../$_pkgname.sh" "$pkgdir/usr/bin/$_pkgname" install -Dm644 "../$_pkgname.png" "$pkgdir/usr/share/pixmaps/$_pkgname.png" -- cgit v1.2.3-2-g168b From 943c58644312cad8e1a48cf019c429ce5c5a73f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 02:29:58 -0200 Subject: icedove-libre-1:24.2.0.deb1-1: updating version --- libre/icedove-libre/PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 9409190c8..e57c9b204 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -1,9 +1,9 @@ # Maintainer : Márcio Silva # Maintainer : André Silva -# We're getting this from Debian Experimental +# We're getting this from Debian Sid _debname=icedove -_debver=24.1.1 +_debver=24.2.0 _debrel=deb1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -16,7 +16,7 @@ pkgrel=1 pkgdesc="A libre version of Debian Icedove, the standalone mail/news reader based on Mozilla Thunderbird." arch=('i686' 'x86_64' 'mips64el') license=('MPL' 'GPL' 'LGPL') -url="http://packages.debian.org/experimental/${_pkgname}" +url="http://packages.debian.org/sid/${_pkgname}" depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 'mime-types' 'mozilla-common' 'mozilla-searchplugins' 'nss' 'sqlite' 'startup-notification') makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13' 'quilt') optdepends=('libcanberra: for sound support') @@ -30,8 +30,8 @@ source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.xz" vendor.js ${_pkgname}.desktop) options=(!emptydirs) -md5sums=('91ddfb44481e6cb456d835a832d885c1' - '9f060324dbed3f8d27c896703bda6078' +md5sums=('76adf0c422339e79c550d2901a48b30b' + '338c4b16319623ea27fe6e33ea81335e' 'c46cf2a671c8fdefcabd4c87e38f3d40' '5a53179d14ae9631b7afe5e4d0fc0b25' 'e785e0c267f4435ae1a9aa0b03bcacfb') -- cgit v1.2.3-2-g168b From 2af04a18806aabf8eec6b6ed54b75a7a718cce15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 02:30:17 -0200 Subject: icedove-l10n-1:24.2.0.deb1-1: updating version --- libre/icedove-l10n/PKGBUILD | 116 ++++++++++++++++++++++---------------------- 1 file changed, 58 insertions(+), 58 deletions(-) (limited to 'libre') diff --git a/libre/icedove-l10n/PKGBUILD b/libre/icedove-l10n/PKGBUILD index 423b11d2a..fdf88e82d 100644 --- a/libre/icedove-l10n/PKGBUILD +++ b/libre/icedove-l10n/PKGBUILD @@ -3,8 +3,8 @@ pkgbase=icedove-l10n epoch=1 -_pkgver=24.1.1 -pkgver=24.1.1.deb1 +_pkgver=24.2.0 +pkgver=24.2.0.deb1 _langpacks=(ar ast be bg bn-BD br ca cs da de el en-GB en-US es-AR es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW) @@ -15,7 +15,7 @@ pkgname=($(for lang in ${_langpacks[@]} pkgrel=1 pkgdesc="Language packs for Debian Icedove." arch=('any') -url="http://packages.debian.org/experimental/icedove" +url="http://packages.debian.org/sid/icedove" license=('MPL' 'GPL') depends=("icedove-libre>=$epoch:$pkgver") makedepends=('unzip' 'zip') @@ -65,58 +65,58 @@ done md5sums=('d5b2567a8cc8f64591f313a6efdaaffc' 'f3719964e893c1002b7a923e8f95f923' - '71b52e9b2ea4b2813579151107b26d7c' - '0001f92a0a732b2d8d4abe5b73739871' - '0ca3fd860debb0f4bea75c295cd794bf' - '3fa1b7e34efb29fcf12ff84c9b7cfb99' - '0d412e040d7db1bff6ba7a5901c194a3' - '196390a5683708ea9d1dff08d5da4969' - '1b580efd13589da4a7c700ce675b4de8' - '3f0b570ace30f4b8439328f63424914a' - '5d7890dce639c703319185dcca099c19' - '02352099e2bb79b9ed57b8b735d1b662' - '1b463b18db5640f9fb1fbb82f9862d51' - 'f8053c0d509c95643be7c993f79469e8' - 'c7286e9fb549480c7565947162473eb3' - 'a180d36ebe0e04a452c452d8ca249936' - 'faa9054e681927eec112b989b9b9f916' - 'd5b4bbe5cd18b72b7d8c649b68a095bb' - '5fd037b2d60ff663eccbf0788a52cce7' - '824805de27a69e5323c6e547974c6c02' - '6a3e55d20d4945ead133054127b1ba17' - '81db405732d6b5e6fd057505be5b03c1' - '25338963e6cbf51ea9c18bc7bd786a44' - 'bfc2a548805ba54bb81d8deaa5fcf406' - 'da5d4edacaf56bbb015987b334c49a46' - '264aa5440cd50dd1d09b1f6c682dde95' - '1a671a227b2713f0d7ede3b8c547e003' - '4dfce580e8d6f889ef868cf1a85ddd89' - 'cded11a2ee85f1bfa704a8bcfd7063ac' - 'ca08979c98adc6b1c1086c1bf037d64a' - '6d433d1b6395957c9c16eb9efe79c461' - '412186cd09492af191ef5b8e5523997b' - '9f5f15ba89ed4a7dd82b973616a84fb1' - 'ff817ed985260ba5b2284d70ede97cfc' - 'c6474a9d0a49b177b8d1daca5e3faf54' - '81f1379b774a9762918b5bb6fd613a94' - 'dfb5c1393033518e12ae9ff91afeed97' - '24383d610a424cc71c44b9fa923b9743' - 'c5918f13d25dd124ed8050b7177a6adf' - '76ec5c28687220f39bac18fd2381ab29' - '03263f5ebc6e38022c808689ff0f848c' - 'aaa66545fb46d23ea0b5537495b0c08e' - '5e105d2fd7ad811f3afbe375ab8ef293' - '955a91d8b73bd14f12afa4be13a45bca' - 'dbd1a1b2ea0777d1df361f973d53c27e' - '03f0558bcbc1dafa4b29bcf1a69ca170' - 'd1a58f928165c099c01b8687e92889af' - 'a8b3385d0c7679b871cf9bcaf406ca26' - '2fbeac1775ab8ce9096ee14d628c68e8' - '450ac4b6e744b7ed8cd92e9852d0e80f' - '31c56ec4e6de175c75b60e421f1381fc' - '43d1335568bc7b6806ed5151e7b38243' - 'eaece7103da2f8b19967d5f4b5e7befc' - '9b3abcfb1ccac0b863dcde99ab487d71' - '343fcfdec8f55f2e227bb5e1a5804907' - 'ee9931bb007f935c0aaa16031c4319e7' - 'ee92083eea883b10946cee46ac529d21') + '2450e9b3a3f7b263dffba2b565caa026' + 'c8a34d460bbcf6095816787341a83bd3' + '9718159572dfa8318dd01a9a63a44b24' + 'b86442f249fe530e3e3e97444c559a7b' + 'd1d7f1bec25dd183aea62dd46b6b845f' + '425eb82e0cc734477fcb1f5eaca3a0b8' + 'd2a1f926448d9205fc2a9a113118c8f7' + '9e8afc1b6bf49f77e78462844745eabb' + '05c7362d95f6c1b8d4ab401b93d4dd26' + 'e3c7a12c3cd115f89472e714de9bbd96' + '511a967c932cd737f2c163d435c160b2' + '938095a514e39ca8058b894f7e285cdc' + '827e21a03cd9c99e9cb70e54b43cd28d' + '97aed07198d724ed2ff2f776cea9a694' + '393c678ac00c636096dc9d826fa99094' + 'a2ea99fb8bea0c81323f71987734fa75' + '7fa2aefd207d0830ec7d14f82d114b0e' + '3755689abeca519609029e0feb546861' + '239e1f4065d0027a09f4918fea2caebb' + '62d148305f8c146c6aeb7e46a91fb9dc' + '4cf85b9d988af5cf0dbbe60f33c78f8b' + 'ff3674d6422b3c6714dbbb604e830949' + '6b3c1eeb2a08f23e62865dd0890c7de2' + '4542f05f58a3f3fcc10fe2bee7bce620' + 'eabd4446b149be7abfb6ebdf2f0f9d17' + 'e2a4cae3125def4d5d02de6e39694d42' + '17423b845de2a30f4ce613399032e475' + '4a3227bc8cedbab2557dfddf193dadee' + 'e52d3c3a7e85af431aa78b5a172ca204' + '2ea44ef074d6c0126c11f1cf58119ea1' + '51f41c4bfc2651d59512401e6aef1a97' + 'b9ae7913f935a3a75fc4d35f54d229e2' + '2b65b7ca0445d9fd3030fc92922c9fef' + '4bd83ca6cc1eba3110be638f0b4ba58e' + '6f31e8349b4690d4364726fecd151c84' + 'bb8616d3f3beaf1c1b412d712a8191fd' + '8353b8ed0349460ff9006d1dc2e907f4' + 'cbc9d67c7c46a14517925674c7ce9241' + '10e9f12b915261a091f1e9a7aa3c491a' + '047ad48b03c91e0c4f59a828e34fe216' + 'ba6d3760ab01715b38f8c48c2c90c4e5' + '1acb8648f3efc1255472dd6161167467' + 'f2473203871f1d3db4c6930fea44d2bc' + '4e5506496329c9adb12271aa0237e437' + '81d7d92335e5bbd31265d4dd56017a03' + '30dd5472ec45558305661ba767450ee6' + 'ba42b92642b38e40d442f520d022d2cb' + '92ca20bf2065b5889de8811989600b37' + '2d64d71fca6e4e14ecea0d3e51ef7898' + '763a383781ccd499011c975936538222' + '37476f33e304615105374f11f7af6bcc' + '0905709db25a5566b0ef7507dcca96a9' + '832103f16211936217690e734556e95c' + 'ff4a8836c4086c22174bcdc6839468fa' + '6dfa0de1e9731226ff0c85386b100ccb') -- cgit v1.2.3-2-g168b From 850812406caf279a4ab51af60cc43b83f4f77a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 14:06:58 -0200 Subject: icedove-libre: remove libnotify dependency; not used anymore => https://bugzilla.mozilla.org/show_bug.cgi?id=853104 --- libre/icedove-libre/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index e57c9b204..1d7847246 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -17,7 +17,7 @@ pkgdesc="A libre version of Debian Icedove, the standalone mail/news reader base arch=('i686' 'x86_64' 'mips64el') license=('MPL' 'GPL' 'LGPL') url="http://packages.debian.org/sid/${_pkgname}" -depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 'mime-types' 'mozilla-common' 'mozilla-searchplugins' 'nss' 'sqlite' 'startup-notification') +depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'hunspell' 'libevent' 'libvpx' 'libxt' 'mime-types' 'mozilla-common' 'mozilla-searchplugins' 'nss' 'sqlite' 'startup-notification') makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13' 'quilt') optdepends=('libcanberra: for sound support') replaces=('thunderbird') -- cgit v1.2.3-2-g168b From 16f3677384ce07c5390cb9d4e5cda6dce47e36fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 15:03:16 -0200 Subject: repackage to fix trouble installing because was discovered that our rebranded packages on [libre] were the official Arch packages from [core], maybe a db-sync bug --- libre/filesystem/PKGBUILD | 2 +- libre/gummiboot/PKGBUILD | 2 +- libre/hardinfo/PKGBUILD | 4 ++-- libre/lsb-release/PKGBUILD | 2 +- libre/mkisolinux/PKGBUILD | 2 +- libre/mkpxelinux/PKGBUILD | 2 +- libre/mksyslinux/PKGBUILD | 2 +- libre/psi/PKGBUILD | 2 +- libre/reflector/PKGBUILD | 2 +- libre/syslinux/PKGBUILD | 2 +- libre/usermin/PKGBUILD | 2 +- libre/webmin/PKGBUILD | 2 +- libre/xsp/PKGBUILD | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) (limited to 'libre') diff --git a/libre/filesystem/PKGBUILD b/libre/filesystem/PKGBUILD index 00be19b0a..9cb060ecc 100644 --- a/libre/filesystem/PKGBUILD +++ b/libre/filesystem/PKGBUILD @@ -5,7 +5,7 @@ pkgname=filesystem pkgver=2013.05 -pkgrel=2 +pkgrel=2.1 pkgdesc='Base filesystem (Parabola rebranded)' arch=('i686' 'x86_64' 'mips64el') license=('GPL') diff --git a/libre/gummiboot/PKGBUILD b/libre/gummiboot/PKGBUILD index 85804c9c0..a1814bd71 100644 --- a/libre/gummiboot/PKGBUILD +++ b/libre/gummiboot/PKGBUILD @@ -7,7 +7,7 @@ pkgname="gummiboot" pkgver="43" -pkgrel="2" +pkgrel="2.1" pkgdesc="Simple UEFI Boot Manager (Parabola rebranded)" url="http://freedesktop.org/wiki/Software/gummiboot" arch=('x86_64' 'i686' 'mips64el') diff --git a/libre/hardinfo/PKGBUILD b/libre/hardinfo/PKGBUILD index 1987e191e..2de9e5887 100644 --- a/libre/hardinfo/PKGBUILD +++ b/libre/hardinfo/PKGBUILD @@ -4,8 +4,8 @@ pkgname=hardinfo pkgver=0.5.1 -pkgrel=5 -pkgdesc="A system information and benchmark tool." +pkgrel=5.1 +pkgdesc="A system information and benchmark tool (Parabola rebranded)" arch=('i686' 'x86_64') url="http://hardinfo.berlios.de/wiki/index.php/Main_Page" license=('GPL2') diff --git a/libre/lsb-release/PKGBUILD b/libre/lsb-release/PKGBUILD index 6f761a81f..8f33e7ba3 100644 --- a/libre/lsb-release/PKGBUILD +++ b/libre/lsb-release/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lsb-release pkgver=1.4 -pkgrel=14 +pkgrel=14.1 pkgdesc="LSB version query program (Parabola rebranded)" arch=('any') url="http://www.linuxbase.org/" diff --git a/libre/mkisolinux/PKGBUILD b/libre/mkisolinux/PKGBUILD index 7c9ab6cc4..e2900d521 100644 --- a/libre/mkisolinux/PKGBUILD +++ b/libre/mkisolinux/PKGBUILD @@ -3,7 +3,7 @@ pkgname=mkisolinux pkgver=2013.05 -pkgrel=1 +pkgrel=1.1 pkgdesc="Advanced, modular isolinux bootcd image creation utility (Parabola rebranded)" arch=(any) license=('GPL') diff --git a/libre/mkpxelinux/PKGBUILD b/libre/mkpxelinux/PKGBUILD index b3a94547f..5596983b0 100644 --- a/libre/mkpxelinux/PKGBUILD +++ b/libre/mkpxelinux/PKGBUILD @@ -3,7 +3,7 @@ pkgname=mkpxelinux pkgver=2013.10 -pkgrel=1 +pkgrel=1.1 pkgdesc="Advanced, modular network pxe boot image creation utility (Parabola rebranded)" arch=(any) license=('GPL') diff --git a/libre/mksyslinux/PKGBUILD b/libre/mksyslinux/PKGBUILD index a64f141fd..f01c844a9 100644 --- a/libre/mksyslinux/PKGBUILD +++ b/libre/mksyslinux/PKGBUILD @@ -3,7 +3,7 @@ pkgname=mksyslinux pkgver=2013.06 -pkgrel=1 +pkgrel=1.1 pkgdesc="Advanced, modular syslinux boot image creation utility (Parabola rebranded)" arch=(any) license=('GPL') diff --git a/libre/psi/PKGBUILD b/libre/psi/PKGBUILD index e37c37f05..69ac930b0 100644 --- a/libre/psi/PKGBUILD +++ b/libre/psi/PKGBUILD @@ -4,7 +4,7 @@ pkgname=psi pkgver=0.15 -pkgrel=2 +pkgrel=2.1 pkgdesc='Instant messaging application designed for the Jabber IM (Parabola rebranded)' url='http://psi-im.org/' license=('GPL') diff --git a/libre/reflector/PKGBUILD b/libre/reflector/PKGBUILD index dda93c171..c8bc6bd5e 100644 --- a/libre/reflector/PKGBUILD +++ b/libre/reflector/PKGBUILD @@ -2,7 +2,7 @@ #Maintainer (Parabola): André Silva pkgname=reflector pkgver=2014 -pkgrel=2 +pkgrel=2.1 pkgdesc='A Python 3 module and script to retrieve and filter the latest Pacman mirror list (Parabola rebranded)' arch=(any) license=(GPL) diff --git a/libre/syslinux/PKGBUILD b/libre/syslinux/PKGBUILD index 234f7a43f..6b3b53b77 100644 --- a/libre/syslinux/PKGBUILD +++ b/libre/syslinux/PKGBUILD @@ -5,7 +5,7 @@ pkgname="syslinux" pkgver="6.02" -pkgrel="8" +pkgrel="8.1" arch=('x86_64' 'i686') pkgdesc="Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs filesystems, from CDs and via PXE (Parabola rebranded)" url="http://syslinux.zytor.com/" diff --git a/libre/usermin/PKGBUILD b/libre/usermin/PKGBUILD index 5344a65c2..5613daba3 100644 --- a/libre/usermin/PKGBUILD +++ b/libre/usermin/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Tobias Powalowski pkgname=usermin pkgver=1.570 -pkgrel=1 +pkgrel=1.1 pkgdesc="a web interface that can be used to easily perform tasks like reading mail, setting up SSH or configuring mail forwarding (Parabola rebranded)" arch=(i686 x86_64 mips64el) license=('custom:usermin') diff --git a/libre/webmin/PKGBUILD b/libre/webmin/PKGBUILD index 17d02e437..824c7da2b 100644 --- a/libre/webmin/PKGBUILD +++ b/libre/webmin/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Tobias Powalowski pkgname=webmin pkgver=1.660 -pkgrel=1 +pkgrel=1.1 pkgdesc="a web-based interface for system administration (Parabola rebranded)" arch=(i686 x86_64 mips64el) license=('custom:webmin') diff --git a/libre/xsp/PKGBUILD b/libre/xsp/PKGBUILD index 02e172c8f..ef6fe97c2 100644 --- a/libre/xsp/PKGBUILD +++ b/libre/xsp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=xsp pkgver=3.0.11 -pkgrel=1 +pkgrel=1.1 pkgdesc="A simple webserver based on mono - provides ASP.NET support (Parabola rebranded)" arch=('i686' 'x86_64' 'mips64el') license=('custom') -- cgit v1.2.3-2-g168b From 4ec682e4d546b1ec24049b114103e443489efd95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 15:11:19 -0200 Subject: enscript: remove from [libre] because freedom issue on Arch was solved --- libre/enscript/PKGBUILD | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 libre/enscript/PKGBUILD (limited to 'libre') diff --git a/libre/enscript/PKGBUILD b/libre/enscript/PKGBUILD deleted file mode 100644 index 281675296..000000000 --- a/libre/enscript/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 150464 2012-02-18 00:24:06Z allan $ -# Maintainer: Paul Mattal -# Contributor: Tom Newsom - -pkgname=enscript -pkgver=1.6.6 -pkgrel=1 -pkgdesc="Convert ASCII files to PostScript suitable for printing" -arch=('i686' 'x86_64' 'mips64el') -backup=('etc/enscript/enscript.cfg') -depends=('glibc') -license=('GPL2' 'custom') -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('3acc242b829adacabcaf28533f049afd') -url="http://git.savannah.gnu.org/cgit/enscript.git" - -build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc/enscript --mandir=/usr/share/man \ - --infodir=/usr/share/info - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make prefix=$pkgdir/usr \ - sysconfdir=$pkgdir/etc/enscript mandir=$pkgdir/usr/share/man \ - infodir=$pkgdir/usr/share/info install - install -D -m644 afm/MustRead.html "${pkgdir}/usr/share/licenses/${pkgname}/MustRead.html" -} - -# vim: ts=2 sw=2 et ft=sh -- cgit v1.2.3-2-g168b From 612387f4d9af2ad1f4ac4bd070ab1ab3cd1651d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 16:22:18 -0200 Subject: add vim and gvim on [libre] temporally until new version because trouble installing vim-runtime package --- libre/vim/PKGBUILD | 227 +++++++++++++++++++++++++++++++++++++++++++++++++ libre/vim/gvim.desktop | 63 ++++++++++++++ libre/vim/gvim.install | 11 +++ libre/vim/parabola.vim | 27 ++++++ libre/vim/vimrc | 16 ++++ 5 files changed, 344 insertions(+) create mode 100644 libre/vim/PKGBUILD create mode 100644 libre/vim/gvim.desktop create mode 100644 libre/vim/gvim.install create mode 100644 libre/vim/parabola.vim create mode 100644 libre/vim/vimrc (limited to 'libre') diff --git a/libre/vim/PKGBUILD b/libre/vim/PKGBUILD new file mode 100644 index 000000000..ed2252afd --- /dev/null +++ b/libre/vim/PKGBUILD @@ -0,0 +1,227 @@ +# Maintainer: Thomas Dziedzic +# Contributor: Jan "heftig" Steffens +# Contributor: tobias [ tobias at archlinux org ] +# Contributor: Daniel J Griffiths + +pkgbase=vim +pkgname=('vim' 'gvim' 'vim-runtime') +_topver=7.4 +_patchlevel=135 +__hgrev=de28b1568fc2 +_versiondir="vim${_topver//./}" +pkgver=${_topver}.${_patchlevel} +pkgrel=2.1 +arch=('i686' 'x86_64') +license=('custom:vim') +url="http://www.vim.org" +makedepends=('gpm' 'python2' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2' 'lua') +source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz" + "ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig" + 'vimrc' + 'parabola.vim' + 'gvim.desktop') +md5sums=('be672ce2a929503412378c998fc3dc27' + 'SKIP' + '27820c2bdc34624674c561ae6476bc6a' + 'a8c21928eefd766e211f987879a9199c' + 'd90413bd21f400313a785bb4010120cd') + +# source PKGBUILD && mksource +mksource() { + [[ -x /usr/bin/hg ]] || (echo "hg not found. Install mercurial." && return 1) + + __hgroot='http://vim.googlecode.com/hg/' + __hgrepo='vim' + __hgbranch='default' + + hg clone -b ${__hgbranch} -u ${__hgrev} "${__hgroot}${__hgrepo}" ${__hgrepo} + + pushd ${__hgrepo} + if (( $(hg id -n) < $(hg id -nr ${__hgbranch}) )); then + printf 'You are not building the latest revision!\n' + printf "Consider updating __hgrev to $(hg id -r ${__hgbranch}).\n" + fi + popd + + mv vim ${pkgname}-${pkgver} + find ${pkgname}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \; + rm ${pkgname}-${pkgver}/{.hgignore,.hgtags} + tar -cJf ${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/* + rm -r ${pkgname}-${pkgver} + + gpg --detach-sign ${pkgname}-${pkgver}.tar.xz + + scp ${pkgname}-${pkgver}.tar.xz nym:/srv/ftp/other/vim/ + scp ${pkgname}-${pkgver}.tar.xz.sig nym:/srv/ftp/other/vim/ +} + +build() { + cp -a ${pkgname}-${pkgver} vim-build + + # define the place for the global (g)vimrc file (set to /etc/vimrc) + sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \ + vim-build/src/feature.h + sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \ + vim-build/src/feature.h + + (cd vim-build/src && autoconf) + + cp -a vim-build gvim-build + + cd "${srcdir}"/vim-build + + ./configure \ + --prefix=/usr \ + --localstatedir=/var/lib/vim \ + --with-features=huge \ + --with-compiledby='Parabola GNU/Linux-libre' \ + --enable-gpm \ + --enable-acl \ + --with-x=no \ + --disable-gui \ + --enable-multibyte \ + --enable-cscope \ + --disable-netbeans \ + --enable-perlinterp \ + --disable-pythoninterp \ + --disable-python3interp \ + --disable-rubyinterp \ + --disable-luainterp + + make + + cd "${srcdir}"/gvim-build + + ./configure \ + --prefix=/usr \ + --localstatedir=/var/lib/vim \ + --with-features=huge \ + --with-compiledby='Parabola GNU/Linux-libre' \ + --enable-gpm \ + --enable-acl \ + --with-x=yes \ + --enable-gui=gtk2 \ + --enable-multibyte \ + --enable-cscope \ + --enable-netbeans \ + --enable-perlinterp \ + --enable-pythoninterp \ + --disable-python3interp \ + --enable-rubyinterp \ + --enable-luainterp + + make +} + +check() { + # disable tests because they seem to freeze + + cd "${srcdir}"/vim-build + + #make test + + cd "${srcdir}"/gvim-build + + #make test +} + +package_vim() { + pkgdesc='Vi Improved, a highly configurable, improved version of the vi text editor' + depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm') + conflicts=('gvim') + + cd "${srcdir}"/vim-build + make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install + + # provided by (n)vi in core + rm "${pkgdir}"/usr/bin/{ex,view} + + # delete some manpages + find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \ + while read _mandir; do + cd ${_mandir} + rm -f ex.1 view.1 # provided by (n)vi + rm -f evim.1 # this does not make sense if we have no GUI + done + + # Runtime provided by runtime package + rm -r "${pkgdir}"/usr/share/vim + + # license + install -Dm644 "${srcdir}"/vim-${pkgver}/runtime/doc/uganda.txt \ + "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt +} + +package_gvim() { + pkgdesc='Vi Improved, a highly configurable, improved version of the vi text editor (with advanced features, such as a GUI)' + depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'ruby' 'libxt' + 'desktop-file-utils' 'gtk2' 'lua' 'python2') + provides=("vim=${pkgver}-${pkgrel}") + conflicts=('vim') + install=gvim.install + + cd "${srcdir}"/gvim-build + make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install + + # provided by (n)vi in core + rm "${pkgdir}"/usr/bin/{ex,view} + + # delete some manpages + find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \ + while read _mandir; do + cd ${_mandir} + rm -f ex.1 view.1 # provided by (n)vi + done + + # Move the runtime for later packaging + mv "${pkgdir}"/usr/share/vim "${srcdir}"/runtime-install + + # freedesktop links + install -Dm644 "${srcdir}"/gvim.desktop \ + "${pkgdir}"/usr/share/applications/gvim.desktop + install -Dm644 runtime/vim48x48.png "${pkgdir}"/usr/share/pixmaps/gvim.png + + # license + install -Dm644 "${srcdir}"/vim-${pkgver}/runtime/doc/uganda.txt \ + "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt +} + +package_vim-runtime() { + pkgdesc='Runtime for vim and gvim (Parabola rebranded)' + depends=('perl' 'gawk') + backup=('etc/vimrc') + + # Install the runtime split from gvim + install -dm755 "${pkgdir}"/usr/share + mv "${srcdir}"/runtime-install "${pkgdir}"/usr/share/vim + + # Don't forget logtalk.dict + install -Dm644 "${srcdir}"/gvim-build/runtime/ftplugin/logtalk.dict \ + "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/logtalk.dict + + # fix FS#17216 + sed -i 's|messages,/var|messages,/var/log/messages.log,/var|' \ + "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim + + # patch filetype.vim for better handling of pacman related files + sed -i "s/rpmsave/pacsave/;s/rpmnew/pacnew/;s/,\*\.ebuild/\0,PKGBUILD*,*.install/" \ + "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim + sed -i "/find the end/,+3{s/changelog_date_entry_search/changelog_date_end_entry_search/}" \ + "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/changelog.vim + + # rc files + install -Dm644 "${srcdir}"/vimrc "${pkgdir}"/etc/vimrc + install -Dm644 "${srcdir}"/parabola.vim \ + "${pkgdir}"/usr/share/vim/vimfiles/parabola.vim + + # rgb.txt file + install -Dm644 "${srcdir}"/vim-${pkgver}/runtime/rgb.txt \ + "${pkgdir}"/usr/share/vim/${_versiondir}/rgb.txt + + # license + install -dm755 "${pkgdir}"/usr/share/licenses/vim-runtime + ln -s /usr/share/vim/${_versiondir}/doc/uganda.txt \ + "${pkgdir}"/usr/share/licenses/vim-runtime/license.txt +} + +# vim:set sw=2 sts=2 et: diff --git a/libre/vim/gvim.desktop b/libre/vim/gvim.desktop new file mode 100644 index 000000000..675357da5 --- /dev/null +++ b/libre/vim/gvim.desktop @@ -0,0 +1,63 @@ +[Desktop Entry] +Name=Vi IMproved +Name[bg]=Vi Ðåäàêòîð +Name[ca]=Vi Millorat +Name[da]=Vi forbedret +Name[eo]=VIM +Name[et]=Täiustatud Vi (vim) +Name[fr]=Vi étendu (VIM) +Name[he]=רפושמ Vi +Name[hu]=Vi +Name[is]=Vi IMproved ritillinn +Name[it]=Vi iMproved +Name[no]=Vi IMproved (forbedret VI) +Name[pl]=Poprawiony VI (vim) +Name[ro]=VIM +Name[ru]=Улучшенный VI +Name[sk]=Vi IMpreved +Name[sl]=Izboljšani vi (vim) +Name[sv]=Förbättrad Vi +Name[zh_CN.GB2312]=改进的 Vi +Comment=Powerful text editor with scripting functions and macro recorder +Comment[bg]=Ðåäàêòîð ñ ìíîãî âúçìîæíîñòè +Comment[ca]=Editor vi potent +Comment[cs]=Mocný textový editor vi +Comment[da]=En kraftig vi tekstbehandler +Comment[de]=Ein leistungsfähiger vi-Editor +Comment[el]=Πανίσχυρος διορθωτής vi +Comment[eo]=VIM similas al redaktilo "vi", sed havas aldonajn ecojn +Comment[es]=Una versión mejorada del editor vi +Comment[et]=Võimas tekstiredaktor vi +Comment[fi]=Tehokas vi-tekstieditori +Comment[fr]=Éditeur vi puissant +Comment[gl]=Potente editor vi +Comment[he]=Vi המצועה בר ךרועה +Comment[hr]=Napredni vi uređivač +Comment[hu]=Vi szövegszerkesztő +Comment[is]=Öflug útgáfa vi ritilsins +Comment[it]=Un editor vi potenziato +Comment[ja]=強力なViエディタ +Comment[lt]=Galingas vi redaktorius +Comment[mk]=Моќен VI уредувач +Comment[nl]=Krachtige vi-editor +Comment[no]=En kraftig vi-redigerer +Comment[no_NY]=Kraftig vi-tekstredigeringsprogram +Comment[pl]=Edytor vi +Comment[pt]=Um poderoso editor de texto +Comment[ro]=Un editor de texte VI, puternic +Comment[ru]=Мощный текстовый редактор vi +Comment[sk]=Silný textový procesor vi +Comment[sl]=Zmogljivi urejevalnik vi +Comment[sr]=Moćni vi editor +Comment[sv]=En kraftfull texteditor +Comment[ta]=ºì¾¢Å¡öó¾ vi ¦¾¡ÌôÀ¡Ç÷ +Comment[tr]=Güçlü vi düzenleyicisi +Comment[uk]=Потужний редактор vi +Comment[zh_CN.GB2312]=功能强大的 vi 编辑器 +MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; +Exec=gvim -f %F +Icon=gvim +Type=Application +Terminal=false +X-XClassHintResName=VIM +Categories=Utility;TextEditor; diff --git a/libre/vim/gvim.install b/libre/vim/gvim.install new file mode 100644 index 000000000..2eaa60550 --- /dev/null +++ b/libre/vim/gvim.install @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} diff --git a/libre/vim/parabola.vim b/libre/vim/parabola.vim new file mode 100644 index 000000000..bc3c1f82e --- /dev/null +++ b/libre/vim/parabola.vim @@ -0,0 +1,27 @@ +" The Parabola GNU/Linux-libre global vimrc - setting only a few sane defaults +" +" Maintainer: Tobias Kieslich [tobias funnychar archlinux dot org] +" Maintainer for Parabola rebranding: André Silva [emulatorman funnychar parabola dot nu] +" +" NEVER EDIT THIS FILE, IT'S OVERWRITTEN UPON UPGRADES, GLOBAL CONFIGURATION +" SHALL BE DONE IN /etc/vimrc, USER SPECIFIC CONFIGURATION IN ~/.vimrc + +" Normally we use vim-extensions. If you want true vi-compatibility +" remove change the following statements +set nocompatible " Use Vim defaults instead of 100% vi compatibility +set backspace=indent,eol,start " more powerful backspacing + +" Now we set some defaults for the editor +set history=50 " keep 50 lines of command line history +set ruler " show the cursor position all the time + +" Suffixes that get lower priority when doing tab completion for filenames. +" These are files we are not likely to want to edit or read. +set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc + + +if has('gui_running') + " Make shift-insert work like in Xterm + map + map! +endif diff --git a/libre/vim/vimrc b/libre/vim/vimrc new file mode 100644 index 000000000..fc67e7eb0 --- /dev/null +++ b/libre/vim/vimrc @@ -0,0 +1,16 @@ +" All system-wide defaults are set in $VIMRUNTIME/parabola.vim (usually just +" /usr/share/vim/vimfiles/parabola.vim) and sourced by the call to :runtime +" you can find below. If you wish to change any of those settings, you should +" do it in this file (/etc/vimrc), since parabola.vim will be overwritten +" everytime an upgrade of the vim packages is performed. It is recommended to +" make changes after sourcing parabola.vim since it alters the value of the +" 'compatible' option. + +" This line should not be removed as it ensures that various options are +" properly set to work with the Vim-related packages. +runtime! parabola.vim + +" If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim' +" Or better yet, read /usr/share/vim/vim74/vimrc_example.vim or the vim manual +" and configure vim to your own liking! + -- cgit v1.2.3-2-g168b From 57f52074941be81a76b5b96c784d207eac799d10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 19:15:34 -0200 Subject: fix parabola-release problem --- libre/filesystem/PKGBUILD | 5 +++-- libre/lsb-release/PKGBUILD | 2 +- libre/lsb-release/lsb-release.install | 2 -- libre/psi/PKGBUILD | 4 ++-- libre/psi/parabola.patch | 5 +++-- 5 files changed, 9 insertions(+), 9 deletions(-) (limited to 'libre') diff --git a/libre/filesystem/PKGBUILD b/libre/filesystem/PKGBUILD index 9cb060ecc..69edeeb16 100644 --- a/libre/filesystem/PKGBUILD +++ b/libre/filesystem/PKGBUILD @@ -5,7 +5,7 @@ pkgname=filesystem pkgver=2013.05 -pkgrel=2.1 +pkgrel=2.2 pkgdesc='Base filesystem (Parabola rebranded)' arch=('i686' 'x86_64' 'mips64el') license=('GPL') @@ -52,7 +52,8 @@ package() { for f in gshadow shadow crypttab; do install -m600 ${srcdir}/${f} etc/ done - touch etc/arch-release + touch etc/parabola-release + ln -s parabola-release etc/arch-release install -D -m644 ${srcdir}/modprobe.d.usb-load-ehci-first usr/lib/modprobe.d/usb-load-ehci-first.conf install -m755 ${srcdir}/locale.sh etc/profile.d/locale.sh diff --git a/libre/lsb-release/PKGBUILD b/libre/lsb-release/PKGBUILD index 8f33e7ba3..c6cbe5863 100644 --- a/libre/lsb-release/PKGBUILD +++ b/libre/lsb-release/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lsb-release pkgver=1.4 -pkgrel=14.1 +pkgrel=14.2 pkgdesc="LSB version query program (Parabola rebranded)" arch=('any') url="http://www.linuxbase.org/" diff --git a/libre/lsb-release/lsb-release.install b/libre/lsb-release/lsb-release.install index 62d404892..261df2a73 100644 --- a/libre/lsb-release/lsb-release.install +++ b/libre/lsb-release/lsb-release.install @@ -1,10 +1,8 @@ post_install() { - rm -f /etc/arch-release echo "Parabola GNU/Linux-libre release" >> /etc/parabola-release } post_upgrade() { - rm -f /etc/arch-release sed -e '/Parabola GNU\/Linux-[Ll]ibre release/d' -i /etc/parabola-release echo "Parabola GNU/Linux-libre release" >> /etc/parabola-release } diff --git a/libre/psi/PKGBUILD b/libre/psi/PKGBUILD index 69ac930b0..c4150075f 100644 --- a/libre/psi/PKGBUILD +++ b/libre/psi/PKGBUILD @@ -4,7 +4,7 @@ pkgname=psi pkgver=0.15 -pkgrel=2.1 +pkgrel=2.2 pkgdesc='Instant messaging application designed for the Jabber IM (Parabola rebranded)' url='http://psi-im.org/' license=('GPL') @@ -15,7 +15,7 @@ install='psi.install' source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2" 'parabola.patch') md5sums=('aea15f17cf93e7cea52f305523f761be' - 'a641b77517c82c6e1f254d5595a25113') + '8a5c799ad8b6fd5310d4a849c324c82c') prepare() { cd ${srcdir}/psi-${pkgver} diff --git a/libre/psi/parabola.patch b/libre/psi/parabola.patch index cafe67fa1..9d41bffc4 100644 --- a/libre/psi/parabola.patch +++ b/libre/psi/parabola.patch @@ -25,7 +25,7 @@ }; enum OsFlags { -@@ -106,24 +90,7 @@ +@@ -106,24 +90,8 @@ QString file; QString name; } osInfo[] = { @@ -47,7 +47,8 @@ - - // many distros use the /etc/redhat-release for compatibility, so RedHat will be the last :) - { LinuxRedHat, OsUseFile, "/etc/redhat-release", "RedHat Linux" }, -+ { LinuxParabola, OsUseName, "/etc/arch-release", "Parabola GNU/Linux-libre" }, ++ { LinuxParabola, OsUseName, "/etc/parabola-release", "Parabola GNU/Linux-libre" }, ++ { LinuxParabola, OsUseFile, "/etc/parabola-release", "Parabola GNU/Linux-libre" }, { LinuxNone, OsUseName, "", "" } }; -- cgit v1.2.3-2-g168b From 859ebf7583eac543c9ddf8af8b6c8884c9c10df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 4 Feb 2014 22:18:38 -0200 Subject: mesa-libcl-10.0.3-1: updating version --- libre/mesa-libcl/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/mesa-libcl/PKGBUILD b/libre/mesa-libcl/PKGBUILD index 88c817dcd..198bcbcb5 100644 --- a/libre/mesa-libcl/PKGBUILD +++ b/libre/mesa-libcl/PKGBUILD @@ -4,7 +4,7 @@ pkgbase=mesa _pkgname=libcl pkgname=$pkgbase-$_pkgname _pkgflag=libre -pkgver=10.0.2 +pkgver=10.0.3 pkgrel=1 pkgdesc='Mesa 3-D OpenCL library' url=http://${pkgbase}3d.sourceforge.net @@ -27,7 +27,7 @@ provides=($_pkgname-$_pkgflag $_pkgname opencl-nvidia opencl-nvidia-304xx) conflicts=($_pkgname-$_pkgflag $_pkgname opencl-nvidia opencl-nvidia-304xx) replaces=($_pkgname-$_pkgflag $_pkgname opencl-nvidia opencl-nvidia-304xx) source=ftp://ftp.freedesktop.org/pub/$pkgbase/${pkgver%.0}/${pkgbase^}Lib-$pkgver.tar.bz2 -sha512sums=15741b916e6338645a28961fb7a731f8c2a33afe11e91c0bd144f9d9afca96837c9caf7fb2fd769aedbeba2b8b12443e7a7eb8ab6cd2270024308ca11e88ff24 +sha512sums=e864c4d63336977b2917d83926331163198d47023228cc71f47c67251f675102dbab4551e032aa1dfcb4cbda1f98f15ff4565acef54a33ed8c50af32f52a52da build() { cd $srcdir/${pkgbase^}-$pkgver -- cgit v1.2.3-2-g168b From 0f2e8221f49109a463868616461ae9937a9ed399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Wed, 5 Feb 2014 15:50:51 -0200 Subject: rebuild openimageio --- libre/openimageio/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/openimageio/PKGBUILD b/libre/openimageio/PKGBUILD index 992cd1389..9e7217250 100644 --- a/libre/openimageio/PKGBUILD +++ b/libre/openimageio/PKGBUILD @@ -3,7 +3,7 @@ pkgname=openimageio pkgver=1.3.12 -pkgrel=1 +pkgrel=2 pkgdesc='A library for reading and writing images, including classes, utilities, and applications (built for the blender-libre package)' arch=( mips64el -- cgit v1.2.3-2-g168b From 5b6cc16fa11a4856264a88a2c926ddfa50c868fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Wed, 5 Feb 2014 16:00:22 -0200 Subject: add openshadinglanguage to the libre repo --- libre/openshadinglanguage/PKGBUILD | 100 +++++++++++ libre/openshadinglanguage/llvm.patch | 331 +++++++++++++++++++++++++++++++++++ 2 files changed, 431 insertions(+) create mode 100644 libre/openshadinglanguage/PKGBUILD create mode 100644 libre/openshadinglanguage/llvm.patch (limited to 'libre') diff --git a/libre/openshadinglanguage/PKGBUILD b/libre/openshadinglanguage/PKGBUILD new file mode 100644 index 000000000..f5d2a43b8 --- /dev/null +++ b/libre/openshadinglanguage/PKGBUILD @@ -0,0 +1,100 @@ +# Maintainer: Márcio Silva +# based of Arch pkg + +pkgname=openshadinglanguage +pkgver=1.3.3 +pkgrel=1 +pkgdesc="Advanced shading language for production GI renderers (built for the blender-libre package)" +arch=( + mips64el + x86_64 + i686 +) +url=https://github.com/imageworks/OpenShadingLanguage +license=custom +depends=( + openimageio + openexr + freetype2 + libpng + libtiff + boost-libs + llvm + zlib +) +makedepends=( + boost + clang + cmake +) +source=( + https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz + llvm.patch +) +md5sums=( + 77e2261b6b4e0aabdc13b3bb58caeae1a603dbd6a674048631284e150795ecdc4c0d6fd50e7898bda835024bcfeba3da5d89dea8b1ceb3f8fd893087001cc756 + 8d62aa04426cb93c9239845a6eb685081a8760a1731cffb9f075cc294ab8b426c369347ae90a473b0dfbcf4d04a2be44e786792c8ce79fe82c11dc81acf6b3a2 +) + +prepare() { + cd OpenShadingLanguage-Release-$pkgver + + msg 'renaming wrong OS name' + _OS=$(uname -o) + [[ $_OS == GNU ]] &&\ + sed -i 's|linux|GNU|i; + ' src/{cmake/platform.cmake,make/detectplatform.mk} + [[ $_OS == GNU/Linux ]] &&\ + sed -i 's|[{]uname[}][,]linux]|{uname -o},GNU/Linux|;\|platform| s|linux|GNU/Linux|i + ' src/{cmake/platform.cmake,make/detectplatform.mk} + [[ $_OS == GNU/kFreeBSD ]] &&\ + sed -i '\|STREQUAL| s|FreeBSD|kFreeBSD|;\|platform| s|freebsd|GNU/kFreeBSD|i + ' src/cmake/platform.cmake + sed -i 's|[{]uname[}][,]linux]|{uname -o},GNU/kFreeBSD|;\|platform| s|linux|GNU/kFreeBSD|i + ' src/make/detectplatform.mk + sed -i 's|Linux/OSX|GNU/BSD|' src/include/export.h + + # LLVM 3.4 build fix + # based of "https://github.com/imageworks/OpenShadingLanguage/pull/320.patch" + patch -Np1 < $srcdir/llvm.patch + + # fix include paths + sed -i 's|oslconfig.h|../include/oslconfig.h| + s|dual.h|../include/dual.h| + s|dual_vec.h|../include/dual_vec.h| + ' src/liboslexec/llvm_ops.cpp + sed -i 's|oslexec.h|../include/oslexec.h| + s|oslclosure.h|../include/oslclosure.h| + s|osl_pvt.h|../include/osl_pvt.h| + ' src/liboslexec/oslexec_pvt.h + + cd src + + [[ -d build ]] && rm -r build + mkdir build +} + +build() { + cd OpenShadingLanguage-Release-$pkgver/src/build + + cmake .. \ + -DCMAKE_BUILD_TYPE=Release\ + -DCMAKE_INSTALL_PREFIX=/usr\ + -DLLVM_STATIC=OFF + make +} + +package() { + cd OpenShadingLanguage-Release-$pkgver/src/build + + make DESTDIR=$pkgdir install + + mkdir -p $pkgdir/usr/share/OSL/ + mkdir -p $pkgdir/usr/share/licenses/$pkgname + mv $pkgdir/usr/{CHANGES,README.md,INSTALL} $pkgdir/usr/share/OSL + mv $pkgdir/usr/doc $pkgdir/usr/share/OSL/doc + mv $pkgdir/usr/shaders $pkgdir/usr/share/OSL/shaders + mv $pkgdir/usr/LICENSE $pkgdir/usr/share/licenses/$pkgname +} + +# vim:set ts=2 sw=2 et: diff --git a/libre/openshadinglanguage/llvm.patch b/libre/openshadinglanguage/llvm.patch new file mode 100644 index 000000000..a63b91e0d --- /dev/null +++ b/libre/openshadinglanguage/llvm.patch @@ -0,0 +1,331 @@ +diff -Nur OpenShadingLanguage-Release-1.3.3.orig/src/cmake/externalpackages.cmake OpenShadingLanguage-Release-1.3.3/src/cmake/externalpackages.cmake +--- OpenShadingLanguage-Release-1.3.3.orig/src/cmake/externalpackages.cmake 2013-07-11 20:01:18.000000000 -0300 ++++ OpenShadingLanguage-Release-1.3.3/src/cmake/externalpackages.cmake 2014-02-04 18:09:20.236025178 -0200 +@@ -185,9 +185,9 @@ + find_library ( LLVM_LIBRARY + NAMES LLVM-${LLVM_VERSION} + PATHS ${LLVM_LIB_DIR}) ++message (STATUS "LLVM version = ${LLVM_VERSION}") ++message (STATUS "LLVM dir = ${LLVM_DIRECTORY}") + if (VERBOSE) +- message (STATUS "LLVM version = ${LLVM_VERSION}") +- message (STATUS "LLVM dir = ${LLVM_DIRECTORY}") + message (STATUS "LLVM includes = ${LLVM_INCLUDES}") + message (STATUS "LLVM library = ${LLVM_LIBRARY}") + message (STATUS "LLVM lib dir = ${LLVM_LIB_DIR}") +diff -Nur OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/CMakeLists.txt OpenShadingLanguage-Release-1.3.3/src/liboslexec/CMakeLists.txt +--- OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/CMakeLists.txt 2013-07-11 20:01:18.000000000 -0300 ++++ OpenShadingLanguage-Release-1.3.3/src/liboslexec/CMakeLists.txt 2014-02-04 18:07:21.960947198 -0200 +@@ -51,49 +51,64 @@ + MESSAGE (STATUS "LLVM_COMPILE cpp=${llvm_bc_cpp}") + endif () + SET ( ${srclist} ${${srclist}} ${llvm_bc_cpp} ) +- EXEC_PROGRAM ( ${LLVM_DIRECTORY}/bin/llvm-config ARGS --cxxflags OUTPUT_VARIABLE LLVM_COMPILE_FLAGS ) +- set (LLVM_COMPILE_FLAGS "${LLVM_COMPILE_FLAGS} -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 --combine") +- LIST (APPEND LLVM_COMPILE_FLAGS "-I${ILMBASE_INCLUDE_DIR}") ++ SET (LLVM_COMPILE_FLAGS ${LLVM_COMPILE_FLAGS} "-I${ILMBASE_INCLUDE_DIR}") + if (OSL_NAMESPACE) +- LIST (APPEND LLVM_COMPILE_FLAGS "-DOSL_NAMESPACE=${OSL_NAMESPACE}") ++ SET (LLVM_COMPILE_FLAGS ${LLVM_COMPILE_FLAGS} "-DOSL_NAMESPACE=${OSL_NAMESPACE}") + endif () + if (OPENIMAGEIO_NAMESPACE) +- LIST (APPEND LLVM_COMPILE_FLAGS "-DOPENIMAGEIO_NAMESPACE=${OPENIMAGEIO_NAMESPACE}") ++ SET (LLVM_COMPILE_FLAGS ${LLVM_COMPILE_FLAGS} "-DOPENIMAGEIO_NAMESPACE=${OPENIMAGEIO_NAMESPACE}") + endif () + get_property (CURRENT_DEFINITIONS DIRECTORY PROPERTY COMPILE_DEFINITIONS) + if (VERBOSE) + message (STATUS "Current #defines are ${CURRENT_DEFINITIONS}") + endif () + foreach (def ${CURRENT_DEFINITIONS}) +- LIST (APPEND LLVM_COMPILE_FLAGS "-D${def}") ++ SET (LLVM_COMPILE_FLAGS ${LLVM_COMPILE_FLAGS} "-D${def}") + endforeach() + +- # First try looking in their build (clang++ first, then llvm-g++) +- FIND_PROGRAM(LLVM_BC_GENERATOR NAMES "clang++" "llvm-g++" PATHS ${LLVM_DIRECTORY}/bin NO_DEFAULT_PATH NO_CMAKE_SYSTEM_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_PATH) ++ # Figure out what program we will use to make the bitcode. ++ if (NOT LLVM_BC_GENERATOR) ++ FIND_PROGRAM(LLVM_BC_GENERATOR NAMES "clang++" PATHS "${LLVM_DIRECTORY}/bin" NO_DEFAULT_PATH NO_CMAKE_SYSTEM_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_PATH) ++ endif () ++ # If that didn't work, look anywhere ++ if (NOT LLVM_BC_GENERATOR) ++ # Wasn't in their build, look anywhere ++ FIND_PROGRAM(LLVM_BC_GENERATOR NAMES clang++ llvm-g++) ++ endif () + +- if(NOT LLVM_BC_GENERATOR) +- # Wasn't in their build, look anywhere +- FIND_PROGRAM(LLVM_BC_GENERATOR NAMES clang++ llvm-g++) ++ if (NOT LLVM_BC_GENERATOR) ++ message (FATAL_ERROR "You must have a valid llvm bitcode generator (clang++) somewhere.") ++ endif () ++ if (VERBOSE) ++ message (STATUS "Using ${LLVM_BC_GENERATOR} to generate bitcode.") + endif() + +- if(NOT LLVM_BC_GENERATOR) +- message (FATAL_ERROR "You must have a valid llvm bitcode generator (either llvm-g++ or clang++) somewhere.") +- else() +- if (VERBOSE) +- message (STATUS "Using ${LLVM_BC_GENERATOR} to generate bitcode.") +- endif () +- endif() ++ # Fix specific problem I had on new Apple systems (e.g. Mavericks) with ++ # LLVM/libc++ installed -- for some reason, LLVM 3.4 wasn't finding it, ++ # so in that specific case, append another -I to point it in the right ++ # direction. ++ if (APPLE AND ${LLVM_BC_GENERATOR} MATCHES ".*clang.*") ++ EXEC_PROGRAM ( "${LLVM_BC_GENERATOR}" ARGS --version OUTPUT_VARIABLE MY_CLANG_VERSION ) ++ string (REGEX REPLACE "clang version ([0-9][.][0-9]+).*" "\\1" MY_CLANG_VERSION "${MY_CLANG_VERSION}") ++ if ((${MY_CLANG_VERSION} VERSION_GREATER "3.3") ++ AND (EXISTS "/usr/lib/libc++.dylib") ++ AND (EXISTS "/Library/Developer/CommandLineTools/usr/lib/c++/v1")) ++ set (LLVM_COMPILE_FLAGS ${LLVM_COMPILE_FLAGS} "-I/Library/Developer/CommandLineTools/usr/lib/c++/v1") ++ endif () ++ endif () + + # Command to turn the .cpp file into LLVM assembly language .s, into + # LLVM bitcode .bc, then back into a C++ file with the bc embedded! + ADD_CUSTOM_COMMAND ( OUTPUT ${llvm_bc_cpp} +- COMMAND ${LLVM_BC_GENERATOR} ${LLVM_COMPILE_FLAGS} +- -I${CMAKE_CURRENT_SOURCE_DIR} +- -I${CMAKE_SOURCE_DIR}/include +- -I${CMAKE_BINARY_DIR}/include +- -I${OPENIMAGEIO_INCLUDES} -I${ILMBASE_INCLUDE_DIR} +- -I${Boost_INCLUDE_DIRS} -O3 -S -emit-llvm -o ${llvm_asm} ${llvm_src} +- ++ COMMAND ${LLVM_BC_GENERATOR} ++ ${LLVM_COMPILE_FLAGS} ++ "-I${CMAKE_CURRENT_SOURCE_DIR}" ++ "-I${CMAKE_SOURCE_DIR}/src/include" ++ "-I${CMAKE_BINARY_DIR}/include" ++ "-I${OPENIMAGEIO_INCLUDES}" ++ "-I${ILMBASE_INCLUDE_DIR}" ++ "-I${Boost_INCLUDE_DIRS}" ++ -O3 -S -emit-llvm -o ${llvm_asm} ${llvm_src} + COMMAND ${LLVM_DIRECTORY}/bin/llvm-as -f -o ${llvm_bc} ${llvm_asm} + COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/serialize-bc.bash ${llvm_bc} ${llvm_bc_cpp} + MAIN_DEPENDENCY ${llvm_src} +diff -Nur OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/llvm_headers.h OpenShadingLanguage-Release-1.3.3/src/liboslexec/llvm_headers.h +--- OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/llvm_headers.h 2013-07-11 20:01:18.000000000 -0300 ++++ OpenShadingLanguage-Release-1.3.3/src/liboslexec/llvm_headers.h 2014-02-04 19:28:31.349811104 -0200 +@@ -33,7 +33,27 @@ + namespace llvm = LLVM_NAMESPACE; + #endif + +-#if OSL_LLVM_VERSION >= 33 ++#if OSL_LLVM_VERSION >= 34 ++ ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++# include ++ ++#elif OSL_LLVM_VERSION >= 33 + + # include + # include +diff -Nur OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/llvm_instance.cpp OpenShadingLanguage-Release-1.3.3/src/liboslexec/llvm_instance.cpp +--- OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/llvm_instance.cpp 2013-07-11 20:01:18.000000000 -0300 ++++ OpenShadingLanguage-Release-1.3.3/src/liboslexec/llvm_instance.cpp 2014-02-04 20:08:23.574948459 -0200 +@@ -992,6 +992,7 @@ + virtual void deallocateFunctionBody(void *Body) { + // DON'T DEALLOCATE mm->deallocateFunctionBody (Body); + } ++#if OSL_LLVM_VERSION <= 33 + virtual uint8_t* startExceptionTable(const llvm::Function* F, + uintptr_t &ActualSize) { + return mm->startExceptionTable (F, ActualSize); +@@ -1003,6 +1004,7 @@ + virtual void deallocateExceptionTable(void *ET) { + // DON'T DEALLOCATE mm->deallocateExceptionTable(ET); + } ++#endif + virtual bool CheckInvariants(std::string &s) { + return mm->CheckInvariants(s); + } +@@ -1018,7 +1020,41 @@ + virtual unsigned GetNumCodeSlabs() { return mm->GetNumCodeSlabs(); } + virtual unsigned GetNumDataSlabs() { return mm->GetNumDataSlabs(); } + virtual unsigned GetNumStubSlabs() { return mm->GetNumStubSlabs(); } +-#if OSL_LLVM_VERSION >= 31 ++ ++#if OSL_LLVM_VERSION >= 34 ++ ++ virtual void *getPointerToNamedFunction(const std::string &Name, ++ bool AbortOnFailure = true) { ++ return mm->getPointerToNamedFunction (Name, AbortOnFailure); ++ } ++ virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, ++ unsigned SectionID, llvm::StringRef SectionName) { ++ return mm->allocateCodeSection(Size, Alignment, SectionID, SectionName); ++ } ++ virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, ++ unsigned SectionID, llvm::StringRef SectionName, ++ bool IsReadOnly) { ++ return mm->allocateDataSection(Size, Alignment, SectionID, ++ SectionName, IsReadOnly); ++ } ++ virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) { ++ mm->registerEHFrames (Addr, LoadAddr, Size); ++ } ++ virtual void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) { ++ mm->deregisterEHFrames(Addr, LoadAddr, Size); ++ } ++ virtual uint64_t getSymbolAddress(const std::string &Name) { ++ return mm->getSymbolAddress (Name); ++ } ++ virtual void notifyObjectLoaded(llvm::ExecutionEngine *EE, const llvm::ObjectImage *oi) { ++ mm->notifyObjectLoaded (EE, oi); ++ } ++ virtual bool finalizeMemory(std::string *ErrMsg = 0) { ++ return mm->finalizeMemory (ErrMsg); ++ } ++ ++#elif OSL_LLVM_VERSION == 33 ++ + virtual void *getPointerToNamedFunction(const std::string &Name, + bool AbortOnFailure = true) { + return mm->getPointerToNamedFunction (Name, AbortOnFailure); +@@ -1027,7 +1063,6 @@ + unsigned SectionID) { + return mm->allocateCodeSection(Size, Alignment, SectionID); + } +-#if OSL_LLVM_VERSION >= 33 + virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, + unsigned SectionID, bool IsReadOnly) { + return mm->allocateDataSection(Size, Alignment, SectionID, IsReadOnly); +@@ -1035,12 +1070,22 @@ + virtual bool applyPermissions(std::string *ErrMsg = 0) { + return mm->applyPermissions(ErrMsg); + } +-#else ++ ++#elif OSL_LLVM_VERSION == 32 || OSL_LLVM_VERSION == 31 ++ ++ virtual void *getPointerToNamedFunction(const std::string &Name, ++ bool AbortOnFailure = true) { ++ return mm->getPointerToNamedFunction (Name, AbortOnFailure); ++ } ++ virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, ++ unsigned SectionID) { ++ return mm->allocateCodeSection(Size, Alignment, SectionID); ++ } + virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, + unsigned SectionID) { + return mm->allocateDataSection(Size, Alignment, SectionID); + } +-#endif ++ + #endif + }; + +@@ -1155,7 +1200,7 @@ + m_shadingsys.m_stat_empty_groups += 1; + m_shadingsys.m_stat_empty_instances += 1; // the one layer is empty + } else { +- m_llvm_passes->run (*llvm_module()); ++ m_llvm_module_passes->run (*llvm_module()); + } + + m_stat_llvm_opt_time += timer.lap(); +@@ -1290,7 +1335,12 @@ + // Some global LLVM initialization for the first thread that + // gets here. + info ("Setting up LLVM"); ++ ++#if OSL_LLVM_VERSION <= 33 ++ // Starting with LLVM 3.4, the pretty stack trace was opt-in rather ++ // than opt-out, and the following variable was removed. + llvm::DisablePrettyStackTrace = true; ++#endif + llvm::llvm_start_multithreaded (); // enable it to be thread-safe + llvm::InitializeNativeTarget(); + done = true; +@@ -1301,12 +1351,17 @@ + void + RuntimeOptimizer::llvm_setup_optimization_passes () + { +- ASSERT (m_llvm_passes == NULL && m_llvm_func_passes == NULL); ++ ASSERT (m_llvm_module_passes == NULL && m_llvm_func_passes == NULL); + + // Specify per-function passes + // ++#if OSL_LLVM_VERSION >= 34 ++ m_llvm_func_passes = new llvm::legacy::FunctionPassManager(llvm_module()); ++ llvm::legacy::FunctionPassManager &fpm (*m_llvm_func_passes); ++#else + m_llvm_func_passes = new llvm::FunctionPassManager(llvm_module()); + llvm::FunctionPassManager &fpm (*m_llvm_func_passes); ++#endif + #if OSL_LLVM_VERSION >= 32 + fpm.add (new llvm::DataLayout(llvm_module())); + #else +@@ -1315,8 +1370,13 @@ + + // Specify module-wide (interprocedural optimization) passes + // +- m_llvm_passes = new llvm::PassManager; +- llvm::PassManager &passes (*m_llvm_passes); ++#if OSL_LLVM_VERSION >= 34 ++ m_llvm_module_passes = new llvm::legacy::PassManager; ++ llvm::legacy::PassManager &passes (*m_llvm_module_passes); ++#else ++ m_llvm_module_passes = new llvm::PassManager; ++ llvm::PassManager &passes (*m_llvm_module_passes); ++#endif + #if OSL_LLVM_VERSION >= 32 + passes.add (new llvm::DataLayout(llvm_module())); + #else +diff -Nur OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/runtimeoptimize.cpp OpenShadingLanguage-Release-1.3.3/src/liboslexec/runtimeoptimize.cpp +--- OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/runtimeoptimize.cpp 2013-07-11 20:01:18.000000000 -0300 ++++ OpenShadingLanguage-Release-1.3.3/src/liboslexec/runtimeoptimize.cpp 2014-02-04 19:37:02.660353625 -0200 +@@ -107,7 +107,7 @@ + m_stat_llvm_jit_time(0), + m_llvm_context(NULL), m_llvm_module(NULL), + m_llvm_exec(NULL), m_builder(NULL), +- m_llvm_passes(NULL), m_llvm_func_passes(NULL) ++ m_llvm_module_passes(NULL), m_llvm_func_passes(NULL) + { + set_debug (); + memset (&m_shaderglobals, 0, sizeof(ShaderGlobals)); +@@ -119,7 +119,7 @@ + RuntimeOptimizer::~RuntimeOptimizer () + { + delete m_builder; +- delete m_llvm_passes; ++ delete m_llvm_module_passes; + delete m_llvm_func_passes; + } + +diff -Nur OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/runtimeoptimize.h OpenShadingLanguage-Release-1.3.3/src/liboslexec/runtimeoptimize.h +--- OpenShadingLanguage-Release-1.3.3.orig/src/liboslexec/runtimeoptimize.h 2013-07-11 20:01:18.000000000 -0300 ++++ OpenShadingLanguage-Release-1.3.3/src/liboslexec/runtimeoptimize.h 2014-02-04 19:52:30.207956999 -0200 +@@ -934,8 +934,13 @@ + llvm::Type *m_llvm_type_closure_component_attr; // LLVM type for ClosureMeta::Attr + llvm::PointerType *m_llvm_type_prepare_closure_func; + llvm::PointerType *m_llvm_type_setup_closure_func; +- llvm::PassManager *m_llvm_passes; ++#if OSL_LLVM_VERSION >= 34 ++ llvm::legacy::PassManager *m_llvm_module_passes; ++ llvm::legacy::FunctionPassManager *m_llvm_func_passes; ++#else ++ llvm::PassManager *m_llvm_module_passes; + llvm::FunctionPassManager *m_llvm_func_passes; ++#endif + int m_llvm_local_mem; // Amount of memory we use for locals + + // Persistant data shared between layers -- cgit v1.2.3-2-g168b From d1df58f096263443052bc2cedc0c9349a62aaee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 5 Feb 2014 19:42:21 -0200 Subject: icedove-libre: fix checksums --- libre/icedove-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 1d7847246..4ccae67d7 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -30,8 +30,8 @@ source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.xz" vendor.js ${_pkgname}.desktop) options=(!emptydirs) -md5sums=('76adf0c422339e79c550d2901a48b30b' - '338c4b16319623ea27fe6e33ea81335e' +md5sums=('338c4b16319623ea27fe6e33ea81335e' + '5cbf20f07c44dfe5cffdf609785f2803' 'c46cf2a671c8fdefcabd4c87e38f3d40' '5a53179d14ae9631b7afe5e4d0fc0b25' 'e785e0c267f4435ae1a9aa0b03bcacfb') -- cgit v1.2.3-2-g168b From 8868b889a406ce50016f9b069f879255e3d157ec Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 5 Feb 2014 20:20:02 -0500 Subject: update libre/libretools --- libre/libretools/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index 104231739..98602a1c5 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -9,10 +9,10 @@ pkgdesc="Programs for Parabola development" url="https://projects.parabolagnulinux.org/packages/libretools.git/" license=('GPL3' 'GPL2') -pkgver=20140202 -_libretools_commit=9f28b8f1d7ecc211e4df9f4a16a04960ed1bd582 +pkgver=20140206 +_libretools_commit=93276b1059c6bce3aa6e400f70160b8b89cab007 _devtools_commit=534d2015b45e013b37e1edbb997bd4df27d7b8fd -md5sums=('6810cb9fe75b0fb543bbc38d130ba71f' +md5sums=('317e997ae93f562dc18b7979981620f0' 'ec69dffa68829f063224de19bbd55fa9') _packages_url=https://projects.parabolagnulinux.org/packages -- cgit v1.2.3-2-g168b From 08b492b9edaffe724ef1c85a18c5c6a1ecba9d72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Thu, 6 Feb 2014 04:03:56 -0200 Subject: update blender-libre --- libre/blender-libre/PKGBUILD | 88 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 78 insertions(+), 10 deletions(-) (limited to 'libre') diff --git a/libre/blender-libre/PKGBUILD b/libre/blender-libre/PKGBUILD index cbd87f8b2..556a44a17 100644 --- a/libre/blender-libre/PKGBUILD +++ b/libre/blender-libre/PKGBUILD @@ -3,7 +3,7 @@ _pkgname=blender epoch=10 _pkgver=2.69 -pkgrel=3 +pkgrel=4 _jpgver=1.5 _pyver=3.3 @@ -24,37 +24,54 @@ arch=( license=GPL url=http://www.$_pkgname.org depends=( + boost-libs desktop-file-utils ffmpeg fftw freetype2 + glew hicolor-icon-theme jack - #jemalloc + libjpeg-turbo libpng + libsndfile libtiff + libx11 + libxext + libxi + libxml2 + libxxf86vm + llvm-libs + mesa-libgl openal - openexr-libre - openimageio 'opencollada=20131031' opencolorio - openshadinglanguage + openexr + openimageio + openjpeg + 'openshadinglanguage=1.3.3' + pcre + python + sdl shared-mime-info xdg-utils + zlib ) [[ $_spn == true ]] && depends+=(libspnav) optdepends=( 'bullet: for Rigid Bodies and Physics Simulation' + #'mesa-libcl: for rendering with optional Mesa OpenCL' + 'povray: for optional renderer with POV-Ray' 'xcftools: for import GIMP images to scene (pcr repo)' - 'povray-libre: for optional renderer with POV-Ray' 'blender-addon-luxrender: for optional renderer and exporter with LuxRender' 'blender-addon-mitsuba: for optional renderer and exporter with Mitsuba (pcr repo)' 'blender-addon-ogre: for export to Ogre3D formats (pcr repo)' 'blender-addon-yafaray: for optional renderer with YafaRay (pcr repo)' ) makedepends=( - boost + boost # for cycles, booleans, audaspace and/or i18n cmake + llvm mesa ) provides=($_pkgname) @@ -63,7 +80,7 @@ conflicts=($_pkgname) [[ $_spn == true ]] && conflicts+=($_pkgname-libre) replaces=$_pkgname options=(!strip) -install=$_pkgname-libre.install +install=$_pkgname.install source=http://download.$_pkgname.org/source/$_pkgname-$pkgver.tar.gz sha512sums=f4de1f5a0a7868ee509b57ef65962a6c2af4c2bc7328db6ebe7b8e05f771c06efea92977f7a64433e8383382a33dbd73cb42b2bf872e63410e55c19ddd133142 @@ -108,33 +125,84 @@ build() { cmake ..\ -DCMAKE_BUILD_TYPE=Release\ -DCMAKE_INSTALL_PREFIX=/usr\ + -DCYCLES_OSL=/usr\ + -DLLVM_STATIC=OFF\ + -DLLVM_VERSION=3.4\ -DOPENIMAGEIO_ROOT_DIR=/usr\ -DOPENJPEG_INCLUDE_DIR=/usr/include/openjpeg-$_jpgver\ + -DOSL_INCLUDES=/usr/include/OSL\ -DPYTHON_INCLUDE_DIRS=/usr/include/python${_pyver}m\ -DPYTHON_LIBPATH=/usr/lib\ -DPYTHON_LIBRARY=python${_pyver}m\ -DPYTHON_VERSION=$_pyver\ -DSUPPORT_SSE_BUILD=$_SSE\ -DSUPPORT_SSE2_BUILD=$_SSE2\ + -DWITH_AUDASPACE=ON\ + -DWITH_BLENDER=ON\ + -DWITH_BOOST=ON\ + -DWITH_BOOST_ICU=OFF\ + -DWITH_BUILDINFO=ON\ -DWITH_BULLET=ON\ + -DWITH_CODEC_AVI=ON\ -DWITH_CODEC_FFMPEG=ON\ -DWITH_CODEC_SNDFILE=ON\ + -DWITH_COMPOSITOR=ON\ -DWITH_CYCLES=ON\ -DWITH_CYCLES_CUDA_BINARIES=OFF\ -DWITH_CYCLES_OSL=ON\ + -DWITH_CYCLES_STANDALONE=ON\ + -DWITH_CYCLES_STANDALONE_GUI=ON\ -DWITH_FFTW3=ON\ + -DWITH_FREESTYLE=ON\ -DWITH_GAMEENGINE=ON\ + -DWITH_GHOST_XDND=ON\ + -DWITH_IK_ITASC=ON\ + -DWITH_IK_SOLVER=ON\ + -DWITH_IMAGE_CINEON=ON\ + -DWITH_IMAGE_DDS=ON\ + -DWITH_IMAGE_FRAMESERVER=ON\ + -DWITH_IMAGE_HDR=ON\ + -DWITH_IMAGE_OPENEXR=ON\ + -DWITH_IMAGE_OPENJPEG=ON\ -DWITH_IMAGE_REDCODE=ON\ + -DWITH_IMAGE_TIFF=ON\ -DWITH_INPUT_NDOF=$_NDOF\ -DWITH_INSTALL_PORTABLE=OFF\ + -DWITH_INTERNATIONAL=ON\ -DWITH_JACK=ON\ - -DWITH_JACK_DYNLOAD=OFF\ + -DWITH_JACK_DYNLOAD=ON\ + -DWITH_LIBMV=OFF\ + -DWITH_LLVM=ON\ + -DWITH_LZMA=ON\ + -DWITH_LZO=ON\ -DWITH_MEM_JEMALLOC=OFF\ + -DWITH_MEM_VALGRIND=OFF\ + -DWITH_MOD_BOOLEAN=ON\ + -DWITH_MOD_FLUID=ON\ -DWITH_MOD_OCEANSIM=ON\ + -DWITH_MOD_REMESH=ON\ + -DWITH_MOD_SMOKE=ON\ + -DWITH_OPENAL=ON\ + -DWITH_OPENIMAGEIO=ON\ -DWITH_OPENCOLLADA=ON\ + -DWITH_OPENCOLORIO=ON\ + -DWITH_OPENMP=ON\ -DWITH_PLAYER=ON\ + -DWITH_PYTHON=ON\ -DWITH_PYTHON_INSTALL=OFF\ - -DWITH_SYSTEM_GLEW=ON + -DWITH_PYTHON_INSTALL_NUMPY=OFF\ + -DWITH_PYTHON_MODULE=OFF\ + -DWITH_PYTHON_SAFETY=OFF\ + -DWITH_PYTHON_SECURITY=ON\ + -DWITH_RAYOPTIMIZATION=ON\ + -DWITH_SDL=ON\ + -DWITH_STATIC_LIBS=OFF\ + -DWITH_SYSTEM_GLEW=ON\ + -DWITH_SYSTEM_OPENJPEG=ON\ + -DWITH_X11_XF86VMODE=ON\ + -DWITH_X11_XINPUT=ON + #-DWITH_MOD_CLOTH_ELTOPO=ON\ + #-DWITH_SYSTEM_BULLET=ON\ make $MAKEFLAGS make } -- cgit v1.2.3-2-g168b From da425e1398bacd8f90603cbdec07d111f6be8f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Thu, 6 Feb 2014 16:54:46 -0200 Subject: add iceweasel-adblock-plus to the libre repo --- libre/iceweasel-adblock-plus/PKGBUILD | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 libre/iceweasel-adblock-plus/PKGBUILD (limited to 'libre') diff --git a/libre/iceweasel-adblock-plus/PKGBUILD b/libre/iceweasel-adblock-plus/PKGBUILD new file mode 100644 index 000000000..5bd8c1b56 --- /dev/null +++ b/libre/iceweasel-adblock-plus/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 104302 2014-01-17 11:39:31Z spupykin $ +# Maintainer: Sergej Pupykin + + +pkgname=iceweasel-adblock-plus +pkgver=2.4.1 +_addons_file=230225 +pkgrel=1 +pkgdesc="plugin for iceweasel which block ads and banners" +arch=('any') +url="http://adblockplus.org/" +license=('GPL') +depends=("iceweasel-libre") +makedepends=('unzip') +provides=(firefox-adblock-plus=$pkgver) +conflicts=firefox-adblock-plus +replaces=firefox-adblock-plus +noextract=("adblock_plus-$pkgver-fx+tb+fn+sm.xpi") +source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi) +md5sums=('3fe51813290a0d7103b620e2813a8c0e') + +package() { +# _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.` +# depends=("iceweasel-libre>=${_ffver}" "iceweasel-libre<=${_ffver/0/99}") + + cd $srcdir + [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.xpi + local emid=$(sed -n -e '/<\?em:id>\?/!d; s/.*\([\"{].*[}\"]\).*/\1/; s/\"//g; p; q' install.rdf) + local dstdir=$pkgdir/usr/lib/iceweasel/browser/extensions/${emid} + [ -n ${emid} ] || return 1 + install -d $dstdir +# sed -i 's#.*#20.*#' install.rdf + cp -R * $dstdir + rm $dstdir/*.xpi + find $pkgdir -type d -exec chmod 0755 {} \; + find $pkgdir -type f -exec chmod 0644 {} \; +} -- cgit v1.2.3-2-g168b From fb54515c7bb6d776b43839c55cb54ed78cd43f26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Thu, 6 Feb 2014 17:10:36 -0200 Subject: add iceweasel-firebug to the libre repo --- libre/iceweasel-firebug/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libre/iceweasel-firebug/PKGBUILD (limited to 'libre') diff --git a/libre/iceweasel-firebug/PKGBUILD b/libre/iceweasel-firebug/PKGBUILD new file mode 100644 index 000000000..ecbf92319 --- /dev/null +++ b/libre/iceweasel-firebug/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 105364 2014-02-06 03:30:33Z speps $ +# Maintainer: speps + +pkgname=iceweasel-firebug +pkgver=1.12.6 +pkgrel=1 +pkgdesc="Iceweasel plugin with tools for web development." +arch=(any) +url="http://getfirebug.com/" +license=('custom:BSD') +groups=('iceweasel-addons') +depends=('iceweasel-libre') +provides=('firebug' firefox-firebug=$pkgver) +conflicts=(firefox-firebug) +replaces=(firefox-firebug) +source=("${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi") +md5sums=('e929032f03f3af210355905cd4ddf6d3') + +package() { + cd "$srcdir" + + # extension + _dest="$pkgdir/usr/lib/iceweasel/browser/extensions/firebug@software.joehewitt.com" + find . -type d -exec install -d {} $_dest/{} \; + find . -type f -exec install -Dm644 {} $_dest/{} \; + + # license + install -Dm644 license.txt \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-2-g168b From aebae9c05e7ecf34a053dad4480dcce93c856bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Thu, 6 Feb 2014 17:30:16 -0200 Subject: add iceweasel-raismth to the libre repo --- libre/iceweasel-raismth/PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libre/iceweasel-raismth/PKGBUILD (limited to 'libre') diff --git a/libre/iceweasel-raismth/PKGBUILD b/libre/iceweasel-raismth/PKGBUILD new file mode 100644 index 000000000..d6137e289 --- /dev/null +++ b/libre/iceweasel-raismth/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 101450 2013-11-25 21:16:28Z speps $ +# Maintainer: speps + +pkgname=iceweasel-raismth +pkgver=4.0.1 +pkgrel=1 +pkgdesc="Iceweasel plugin for watching Rai.tv live channels, vod and replay contents w/o *light (Silverlight/Moonlight)" +arch=('any') +url="http://acab.servebeer.com/" +license=('GPL3') +groups=('iceweasel-addons') +depends=('iceweasel-libre') +optdepends=('mplayer: default video player' + 'faad: default audio player') +provides=('raismth' firefox-raismth=$pkgver) +conflicts=firefox-raismth +replaces=firefox-raismth +source=("${url}raismth-$pkgver.xpi") +md5sums=('f772ef1a74b0aba3a739849fee3238ea') + +package() { + cd "$srcdir" + + # extension + _dest="$pkgdir/usr/lib/iceweasel/browser/extensions/raismth@mitm.rc" + find . -type d -exec install -d {} $_dest/{} \; + find . -type f -exec install -Dm644 {} $_dest/{} \; +} + +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-2-g168b From 413075942caac06c549dd690d121e5ea3d244641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Thu, 6 Feb 2014 17:54:36 -0200 Subject: add iceweasel-spell-ru to the libre repo --- libre/iceweasel-spell-ru/PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 libre/iceweasel-spell-ru/PKGBUILD (limited to 'libre') diff --git a/libre/iceweasel-spell-ru/PKGBUILD b/libre/iceweasel-spell-ru/PKGBUILD new file mode 100644 index 000000000..2a5a84518 --- /dev/null +++ b/libre/iceweasel-spell-ru/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 90907 2013-05-15 13:06:09Z spupykin $ +# Maintainer: Sergej Pupykin +# Contributor: Maciej Sitarz + +pkgname=iceweasel-spell-ru +pkgver=0.4.4 +pkgrel=13 +pkgdesc="Russian spellchecker dictionary for Iceweasel" +arch=(any) +url="https://addons.mozilla.org/firefox/dictionaries/" +license=("GPL") +depends=("iceweasel-libre") +provides=(firefox-spell-ru=$pkgver) +conflicts=firefox-spell-ru +replaces=firefox-spell-ru +noextract=(russian_spellchecking_dictionary_with_io_support-$pkgver-fx+tb+sm.xpi) +source=(https://addons.mozilla.org/firefox/downloads/file/98798/russian_spellchecking_dictionary-$pkgver-fx+tb+sm.xpi) +md5sums=('269a8bdd38a5641b5f6cfb12715f1029') + +package() { +# _ffver=`pacman -Q iceweasel-libre | cut -f2 -d\ | cut -f1 -d-` +# depends=("iceweasel>=${_ffver}" "iceweasel<=${_ffver/0/99}") + + cd $srcdir + rm $srcdir/*.xpi + local _dir=$pkgdir/usr/lib/iceweasel/browser/extensions/ru@dictionaries.addons.mozilla.org + mkdir -p "${_dir}" + cd "${_dir}" + sed -i 's#.*#20.*#' $srcdir/install.rdf + cp -r $srcdir/* "${_dir}" + find ${_dir} -type f -exec chmod 0644 {} \; + touch ${_dir}/chrome.manifest +} -- cgit v1.2.3-2-g168b From b36cf3a75f1454f1100cbef0bc88c655f362e3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Thu, 6 Feb 2014 19:49:46 -0200 Subject: iceweasel-{adblock-plus,firebug,raismth,spell-ru}: remove replace and conflicts to avoid problems to icecat dependencies --- libre/iceweasel-adblock-plus/PKGBUILD | 4 +--- libre/iceweasel-firebug/PKGBUILD | 4 +--- libre/iceweasel-raismth/PKGBUILD | 4 +--- libre/iceweasel-spell-ru/PKGBUILD | 6 ++---- 4 files changed, 5 insertions(+), 13 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-adblock-plus/PKGBUILD b/libre/iceweasel-adblock-plus/PKGBUILD index 5bd8c1b56..0a248955b 100644 --- a/libre/iceweasel-adblock-plus/PKGBUILD +++ b/libre/iceweasel-adblock-plus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=iceweasel-adblock-plus pkgver=2.4.1 _addons_file=230225 -pkgrel=1 +pkgrel=1.1 pkgdesc="plugin for iceweasel which block ads and banners" arch=('any') url="http://adblockplus.org/" @@ -13,8 +13,6 @@ license=('GPL') depends=("iceweasel-libre") makedepends=('unzip') provides=(firefox-adblock-plus=$pkgver) -conflicts=firefox-adblock-plus -replaces=firefox-adblock-plus noextract=("adblock_plus-$pkgver-fx+tb+fn+sm.xpi") source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi) md5sums=('3fe51813290a0d7103b620e2813a8c0e') diff --git a/libre/iceweasel-firebug/PKGBUILD b/libre/iceweasel-firebug/PKGBUILD index ecbf92319..3920bd4f6 100644 --- a/libre/iceweasel-firebug/PKGBUILD +++ b/libre/iceweasel-firebug/PKGBUILD @@ -3,7 +3,7 @@ pkgname=iceweasel-firebug pkgver=1.12.6 -pkgrel=1 +pkgrel=1.1 pkgdesc="Iceweasel plugin with tools for web development." arch=(any) url="http://getfirebug.com/" @@ -11,8 +11,6 @@ license=('custom:BSD') groups=('iceweasel-addons') depends=('iceweasel-libre') provides=('firebug' firefox-firebug=$pkgver) -conflicts=(firefox-firebug) -replaces=(firefox-firebug) source=("${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi") md5sums=('e929032f03f3af210355905cd4ddf6d3') diff --git a/libre/iceweasel-raismth/PKGBUILD b/libre/iceweasel-raismth/PKGBUILD index d6137e289..ee3b9119e 100644 --- a/libre/iceweasel-raismth/PKGBUILD +++ b/libre/iceweasel-raismth/PKGBUILD @@ -3,7 +3,7 @@ pkgname=iceweasel-raismth pkgver=4.0.1 -pkgrel=1 +pkgrel=1.1 pkgdesc="Iceweasel plugin for watching Rai.tv live channels, vod and replay contents w/o *light (Silverlight/Moonlight)" arch=('any') url="http://acab.servebeer.com/" @@ -13,8 +13,6 @@ depends=('iceweasel-libre') optdepends=('mplayer: default video player' 'faad: default audio player') provides=('raismth' firefox-raismth=$pkgver) -conflicts=firefox-raismth -replaces=firefox-raismth source=("${url}raismth-$pkgver.xpi") md5sums=('f772ef1a74b0aba3a739849fee3238ea') diff --git a/libre/iceweasel-spell-ru/PKGBUILD b/libre/iceweasel-spell-ru/PKGBUILD index 2a5a84518..b9bb8b6f9 100644 --- a/libre/iceweasel-spell-ru/PKGBUILD +++ b/libre/iceweasel-spell-ru/PKGBUILD @@ -4,22 +4,20 @@ pkgname=iceweasel-spell-ru pkgver=0.4.4 -pkgrel=13 +pkgrel=13.1 pkgdesc="Russian spellchecker dictionary for Iceweasel" arch=(any) url="https://addons.mozilla.org/firefox/dictionaries/" license=("GPL") depends=("iceweasel-libre") provides=(firefox-spell-ru=$pkgver) -conflicts=firefox-spell-ru -replaces=firefox-spell-ru noextract=(russian_spellchecking_dictionary_with_io_support-$pkgver-fx+tb+sm.xpi) source=(https://addons.mozilla.org/firefox/downloads/file/98798/russian_spellchecking_dictionary-$pkgver-fx+tb+sm.xpi) md5sums=('269a8bdd38a5641b5f6cfb12715f1029') package() { # _ffver=`pacman -Q iceweasel-libre | cut -f2 -d\ | cut -f1 -d-` -# depends=("iceweasel>=${_ffver}" "iceweasel<=${_ffver/0/99}") +# depends=("iceweasel-libre>=${_ffver}" "iceweasel-libre<=${_ffver/0/99}") cd $srcdir rm $srcdir/*.xpi -- cgit v1.2.3-2-g168b From 9642f291001ff9d248a04a8edbac1d8bd363757c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Thu, 6 Feb 2014 19:50:34 -0200 Subject: icecat-{adblock-plus,firebug,raismth,spell-ru}: add new packages to [libre] --- libre/icecat-adblock-plus/PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ libre/icecat-firebug/PKGBUILD | 30 ++++++++++++++++++++++++++++++ libre/icecat-raismth/PKGBUILD | 28 ++++++++++++++++++++++++++++ libre/icecat-spell-ru/PKGBUILD | 31 +++++++++++++++++++++++++++++++ 4 files changed, 124 insertions(+) create mode 100644 libre/icecat-adblock-plus/PKGBUILD create mode 100644 libre/icecat-firebug/PKGBUILD create mode 100644 libre/icecat-raismth/PKGBUILD create mode 100644 libre/icecat-spell-ru/PKGBUILD (limited to 'libre') diff --git a/libre/icecat-adblock-plus/PKGBUILD b/libre/icecat-adblock-plus/PKGBUILD new file mode 100644 index 000000000..b1ccb3b09 --- /dev/null +++ b/libre/icecat-adblock-plus/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 104302 2014-01-17 11:39:31Z spupykin $ +# Maintainer: Sergej Pupykin + + +pkgname=icecat-adblock-plus +pkgver=2.4.1 +_addons_file=230225 +pkgrel=1.1 +pkgdesc="plugin for icecat which block ads and banners" +arch=('any') +url="http://adblockplus.org/" +license=('GPL') +depends=("icecat") +makedepends=('unzip') +provides=(firefox-adblock-plus=$pkgver) +noextract=("adblock_plus-$pkgver-fx+tb+fn+sm.xpi") +source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi) +md5sums=('3fe51813290a0d7103b620e2813a8c0e') + +package() { +# _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.` +# depends=("icecat>=${_ffver}" "icecat<=${_ffver/0/99}") + + cd $srcdir + [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.xpi + local emid=$(sed -n -e '/<\?em:id>\?/!d; s/.*\([\"{].*[}\"]\).*/\1/; s/\"//g; p; q' install.rdf) + local dstdir=$pkgdir/usr/lib/icecat/browser/extensions/${emid} + [ -n ${emid} ] || return 1 + install -d $dstdir +# sed -i 's#.*#20.*#' install.rdf + cp -R * $dstdir + rm $dstdir/*.xpi + find $pkgdir -type d -exec chmod 0755 {} \; + find $pkgdir -type f -exec chmod 0644 {} \; +} diff --git a/libre/icecat-firebug/PKGBUILD b/libre/icecat-firebug/PKGBUILD new file mode 100644 index 000000000..cf5bcee6b --- /dev/null +++ b/libre/icecat-firebug/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 105364 2014-02-06 03:30:33Z speps $ +# Maintainer: speps + +pkgname=icecat-firebug +pkgver=1.12.6 +pkgrel=1.1 +pkgdesc="IceCat plugin with tools for web development." +arch=(any) +url="http://getfirebug.com/" +license=('custom:BSD') +groups=('icecat-addons') +depends=('icecat') +provides=('firebug' firefox-firebug=$pkgver) +source=("${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi") +md5sums=('e929032f03f3af210355905cd4ddf6d3') + +package() { + cd "$srcdir" + + # extension + _dest="$pkgdir/usr/lib/icecat/browser/extensions/firebug@software.joehewitt.com" + find . -type d -exec install -d {} $_dest/{} \; + find . -type f -exec install -Dm644 {} $_dest/{} \; + + # license + install -Dm644 license.txt \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: diff --git a/libre/icecat-raismth/PKGBUILD b/libre/icecat-raismth/PKGBUILD new file mode 100644 index 000000000..83b545767 --- /dev/null +++ b/libre/icecat-raismth/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 101450 2013-11-25 21:16:28Z speps $ +# Maintainer: speps + +pkgname=icecat-raismth +pkgver=4.0.1 +pkgrel=1.1 +pkgdesc="IceCat plugin for watching Rai.tv live channels, vod and replay contents w/o *light (Silverlight/Moonlight)" +arch=('any') +url="http://acab.servebeer.com/" +license=('GPL3') +groups=('icecat-addons') +depends=('icecat') +optdepends=('mplayer: default video player' + 'faad: default audio player') +provides=('raismth' firefox-raismth=$pkgver) +source=("${url}raismth-$pkgver.xpi") +md5sums=('f772ef1a74b0aba3a739849fee3238ea') + +package() { + cd "$srcdir" + + # extension + _dest="$pkgdir/usr/lib/icecat/browser/extensions/raismth@mitm.rc" + find . -type d -exec install -d {} $_dest/{} \; + find . -type f -exec install -Dm644 {} $_dest/{} \; +} + +# vim:set ts=2 sw=2 et: diff --git a/libre/icecat-spell-ru/PKGBUILD b/libre/icecat-spell-ru/PKGBUILD new file mode 100644 index 000000000..5b088817a --- /dev/null +++ b/libre/icecat-spell-ru/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 90907 2013-05-15 13:06:09Z spupykin $ +# Maintainer: Sergej Pupykin +# Contributor: Maciej Sitarz + +pkgname=icecat-spell-ru +pkgver=0.4.4 +pkgrel=13.1 +pkgdesc="Russian spellchecker dictionary for IceCat" +arch=(any) +url="https://addons.mozilla.org/firefox/dictionaries/" +license=("GPL") +depends=("icecat") +provides=(firefox-spell-ru=$pkgver) +noextract=(russian_spellchecking_dictionary_with_io_support-$pkgver-fx+tb+sm.xpi) +source=(https://addons.mozilla.org/firefox/downloads/file/98798/russian_spellchecking_dictionary-$pkgver-fx+tb+sm.xpi) +md5sums=('269a8bdd38a5641b5f6cfb12715f1029') + +package() { +# _ffver=`pacman -Q icecat | cut -f2 -d\ | cut -f1 -d-` +# depends=("icecat>=${_ffver}" "icecat<=${_ffver/0/99}") + + cd $srcdir + rm $srcdir/*.xpi + local _dir=$pkgdir/usr/lib/icecat/browser/extensions/ru@dictionaries.addons.mozilla.org + mkdir -p "${_dir}" + cd "${_dir}" + sed -i 's#.*#20.*#' $srcdir/install.rdf + cp -r $srcdir/* "${_dir}" + find ${_dir} -type f -exec chmod 0644 {} \; + touch ${_dir}/chrome.manifest +} -- cgit v1.2.3-2-g168b From 5134435ea1521f28f7912cc37e4130212fc1abfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 7 Feb 2014 02:29:14 -0200 Subject: iceweasel-libre-1:27.0.deb1-1: updating version --- ...Make-the-Reset-Firefox-feature-more-gener.patch | 4 +- libre/iceweasel-libre/PKGBUILD | 18 +- libre/iceweasel-libre/libre.patch | 435 +++------------------ 3 files changed, 66 insertions(+), 391 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch b/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch index c9df18dc4..82ba01a9c 100644 --- a/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch +++ b/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch @@ -273,10 +273,10 @@ index f35c227..7062886 100644 %{C++ diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp -index 42fbd15..6c3dbfe 100644 +index 20a3d6e..87e351d 100644 --- a/toolkit/xre/nsAppRunner.cpp +++ b/toolkit/xre/nsAppRunner.cpp -@@ -3737,7 +3737,7 @@ XREMain::XRE_mainRun() +@@ -3843,7 +3843,7 @@ XREMain::XRE_mainRun() if (gDoProfileReset) { // Automatically migrate from the current application if we just // reset the profile. diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD index 6d49588e8..b79fcdd5e 100644 --- a/libre/iceweasel-libre/PKGBUILD +++ b/libre/iceweasel-libre/PKGBUILD @@ -14,7 +14,7 @@ _pgo=true # We're getting this from Debian Experimental _debname=iceweasel -_debver=26.0 +_debver=27.0 _debrel=deb1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -23,7 +23,7 @@ _pkgname=iceweasel pkgname=iceweasel-libre epoch=1 pkgver=$_debver.$_debrel -pkgrel=3 +pkgrel=1 pkgdesc="A libre version of Debian Iceweasel, the standalone web browser based on Mozilla Firefox." arch=(i686 x86_64 mips64el) @@ -49,7 +49,7 @@ replaces=('firefox') conflicts=('firefox') provides=('firefox') source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.bz2" - "$_debrepo/`debfile $_debname`_$_debver-${_debrel#deb}.debian.tar.gz" + "$_debrepo/`debfile $_debname`_$_debver-${_debrel#deb}.debian.tar.xz" mozconfig mozconfig.pgo libre.patch @@ -60,17 +60,17 @@ source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.bz2" iceweasel-20.0.1-fixed-loading-icon.png Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch Fixup-Reset-Firefox-after-bad-merge.patch) -md5sums=('219cf21e0642e8a364365286f23d0624' - '2001d0477bcefd0eeaab584402133691' +md5sums=('0baf0b166421f785db79bd33fe7b0748' + 'd259edde0fee1c29f39bdb6ad2bca70f' '023120a970670dc85cea19393f0b94b6' 'df08eaa1ac3bc6c2356be4fbf8ec8932' - 'fea121a94737ec8641b39e7120a048d3' + '641e8b54a684161c60209b81f260a19b' 'b03a979a78484503ba8dddad4f2c96d1' '7b9e5996dd9fe0b186a43a297db1c6b5' '6620e724ec9a1be74e65089d81d802f7' '816013881cfc9a1f4f0ede72b014f8b3' '6e335a517c68488941340ee1c23f97b0' - 'dbf1c021e5f7ac323197b219bf213c50' + '3dcb1f1eccce5b6b90fa48ab94bf7a47' '8e165ef85ddd72491f0b48f8954afca6') prepare() { @@ -171,6 +171,10 @@ prepare() { # https://bugzilla.mozilla.org/show_bug.cgi?id=841734 cp "$srcdir/iceweasel-20.0.1-fixed-loading-icon.png" \ browser/themes/linux/tabbrowser/loading.png + + # Remove non-existent file on Makefile.in + sed -i '\|build/pgo/blueprint/valid.png|d' build/Makefile.in + } build() { diff --git a/libre/iceweasel-libre/libre.patch b/libre/iceweasel-libre/libre.patch index 2384818b4..4be59abff 100644 --- a/libre/iceweasel-libre/libre.patch +++ b/libre/iceweasel-libre/libre.patch @@ -1,8 +1,8 @@ diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js -index 331edc8..226508d 100644 +index 3840da4..fe1c05c 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js -@@ -242,11 +242,6 @@ pref("browser.slowStartup.notificationDisabled", false); +@@ -272,11 +272,6 @@ pref("browser.slowStartup.notificationDisabled", false); pref("browser.slowStartup.timeThreshold", 60000); pref("browser.slowStartup.maxSamples", 5); @@ -14,7 +14,7 @@ index 331edc8..226508d 100644 pref("browser.enable_automatic_image_resizing", true); pref("browser.chrome.site_icons", true); pref("browser.chrome.favicons", true); -@@ -1283,11 +1278,7 @@ pref("pdfjs.previousHandler.alwaysAskBeforeHandling", false); +@@ -1318,11 +1313,7 @@ pref("shumway.disabled", true); // (This is intentionally on the high side; see bug 746055.) pref("image.mem.max_decoded_image_kb", 256000); @@ -25,7 +25,7 @@ index 331edc8..226508d 100644 -pref("social.sidebar.unload_timeout_ms", 10000); +// removed facebook sidebar with Iceweasel. - pref("dom.identity.enabled", false); + pref("social.allowMultipleWorkers", true); diff --git a/browser/base/content/abouthome/aboutHome.css b/browser/base/content/abouthome/aboutHome.css index c270318..049fe6e 100644 @@ -173,10 +173,10 @@ index c270318..049fe6e 100644 } diff --git a/browser/base/content/abouthome/aboutHome.js b/browser/base/content/abouthome/aboutHome.js -index 432fcdc..8e85f1f 100644 +index 432fcdc..bd1692a 100644 --- a/browser/base/content/abouthome/aboutHome.js +++ b/browser/base/content/abouthome/aboutHome.js -@@ -3,317 +3,99 @@ +@@ -3,152 +3,44 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ const SEARCH_ENGINES = { @@ -352,59 +352,35 @@ index 432fcdc..8e85f1f 100644 - "https://www.mozilla.org/firefox/features/?utm_source=snippet&utm_medium=snippet&utm_campaign=default+feature+snippet" -, "https://addons.mozilla.org/firefox/?utm_source=snippet&utm_medium=snippet&utm_campaign=addons" -]; - +- -const SNIPPETS_UPDATE_INTERVAL_MS = 86400000; // 1 Day. -+// Bug with dom.storage.enabled set as false -+// We are using DDG as a default in this case. -+let gSearchEngine = {"name": "DuckDuckGo HTML", "searchUrl": "https://duckduckgo.com/html/?t=iceweasel&q=_searchTerms_"}; - +- -// IndexedDB storage constants. -const DATABASE_NAME = "abouthome"; -const DATABASE_VERSION = 1; -const SNIPPETS_OBJECTSTORE_NAME = "snippets"; - --// This global tracks if the page has been set up before, to prevent double inits --let gInitialized = false; --let gObserver = new MutationObserver(function (mutations) { -- for (let mutation of mutations) { -- if (mutation.attributeName == "searchEngineName") { -- setupSearchEngine(); -- if (!gInitialized) { + // This global tracks if the page has been set up before, to prevent double inits + let gInitialized = false; + let gObserver = new MutationObserver(function (mutations) { +@@ -156,7 +48,6 @@ let gObserver = new MutationObserver(function (mutations) { + if (mutation.attributeName == "searchEngineName") { + setupSearchEngine(); + if (!gInitialized) { - ensureSnippetsMapThen(loadSnippets); -- gInitialized = true; -- } -- return; -- } -- } --}); -- --window.addEventListener("pageshow", function () { -- // Delay search engine setup, cause browser.js::BrowserOnAboutPageLoad runs -- // later and may use asynchronous getters. -- window.gObserver.observe(document.documentElement, { attributes: true }); -- fitToWidth(); -- window.addEventListener("resize", fitToWidth); -- -- // Ask chrome to update snippets. -- var event = new CustomEvent("AboutHomeLoad", {bubbles:true}); -- document.dispatchEvent(event); --}); -- --window.addEventListener("pagehide", function() { -- window.gObserver.disconnect(); -- window.removeEventListener("resize", fitToWidth); -+document.addEventListener("DOMContentLoaded", function init() { -+ setupSearchEngine(); + gInitialized = true; + } + return; +@@ -181,117 +72,6 @@ window.addEventListener("pagehide", function() { + window.removeEventListener("resize", fitToWidth); }); -+window.addEventListener("load", fitToWidth); -+window.addEventListener("resize", fitToWidth); -// This object has the same interface as Map and is used to store and retrieve -// the snippets data. It is lazily initialized by ensureSnippetsMapThen(), so -// be sure its callback returned before trying to use it. -let gSnippetsMap; -let gSnippetsMapCallbacks = []; - +- -/** - * Ensure the snippets map is properly initialized. - * @@ -414,8 +390,7 @@ index 432fcdc..8e85f1f 100644 - * it may change inadvertently. - */ -function ensureSnippetsMapThen(aCallback) -+function onSearchSubmit(aEvent) - { +-{ - if (gSnippetsMap) { - aCallback(gSnippetsMap); - return; @@ -431,44 +406,30 @@ index 432fcdc..8e85f1f 100644 - let invokeCallbacks = function () { - if (!gSnippetsMap) { - gSnippetsMap = Object.freeze(new Map()); -+ let searchTerms = document.getElementById("searchText").value; -+ if (gSearchEngine && searchTerms.length > 0) { -+ const SEARCH_TOKENS = { -+ "_searchTerms_": encodeURIComponent(searchTerms) - } +- } - - for (let callback of gSnippetsMapCallbacks) { - callback(gSnippetsMap); -+ let url = gSearchEngine.searchUrl; -+ for (let key in SEARCH_TOKENS) { -+ url = url.replace(key, SEARCH_TOKENS[key]); - } +- } - gSnippetsMapCallbacks.length = 0; -+ window.location.href = url; - } - +- } +- - let openRequest = indexedDB.open(DATABASE_NAME, DATABASE_VERSION); -+ aEvent.preventDefault(); -+} - +- - openRequest.onerror = function (event) { - // Try to delete the old database so that we can start this process over - // next time. - indexedDB.deleteDatabase(DATABASE_NAME); - invokeCallbacks(); - }; - +- - openRequest.onupgradeneeded = function (event) { - let db = event.target.result; - if (!db.objectStoreNames.contains(SNIPPETS_OBJECTSTORE_NAME)) { - db.createObjectStore(SNIPPETS_OBJECTSTORE_NAME); - } -+function setupSearchEngine() -+{ -+ if (localStorage && localStorage["search-engine"]) { -+ gSearchEngine = JSON.parse(localStorage["search-engine"]); - } - +- } +- - openRequest.onsuccess = function (event) { - let db = event.target.result; - @@ -522,80 +483,16 @@ index 432fcdc..8e85f1f 100644 - - setTimeout(invokeCallbacks, 0); - } -+ -+ // Look for extended information, like logo and links. -+ var searchEngineInfo = SEARCH_ENGINES[gSearchEngine.name]; -+ if (searchEngineInfo) { -+ for (let prop in searchEngineInfo) -+ gSearchEngine[prop] = searchEngineInfo[prop]; - } --} - --function onSearchSubmit(aEvent) --{ -- let searchTerms = document.getElementById("searchText").value; -- let engineName = document.documentElement.getAttribute("searchEngineName"); -+ // Enqueue additional params if required by the engine definition. -+ if (gSearchEngine.params) -+ gSearchEngine.searchUrl += "&" + gSearchEngine.params; - -- if (engineName && searchTerms.length > 0) { -- // Send an event that will perform a search and Firefox Health Report will -- // record that a search from about:home has occurred. -- let eventData = JSON.stringify({ -- engineName: engineName, -- searchTerms: searchTerms -- }); -- let event = new CustomEvent("AboutHomeSearchEvent", {detail: eventData}); -- document.dispatchEvent(event); -+ // Add search engine logo. -+ if (gSearchEngine.image) { -+ let logoElt = document.getElementById("searchEngineLogo"); -+ logoElt.src = gSearchEngine.image; -+ logoElt.alt = gSearchEngine.name; - } - -- aEvent.preventDefault(); --} -- -- --function setupSearchEngine() --{ - // The "autofocus" attribute doesn't focus the form element - // immediately when the element is first drawn, so the - // attribute is also used for styling when the page first loads. -@@ -322,173 +104,6 @@ function setupSearchEngine() - searchText.removeEventListener("blur", searchText_onBlur); - searchText.removeAttribute("autofocus"); - }); -- -- let searchEngineName = document.documentElement.getAttribute("searchEngineName"); -- let searchEngineInfo = SEARCH_ENGINES[searchEngineName]; -- let logoElt = document.getElementById("searchEngineLogo"); -- -- // Add search engine logo. -- if (searchEngineInfo && searchEngineInfo.image) { -- logoElt.parentNode.hidden = false; -- logoElt.src = searchEngineInfo.image; -- logoElt.alt = searchEngineName; -- searchText.placeholder = ""; -- } -- else { -- logoElt.parentNode.hidden = true; -- searchText.placeholder = searchEngineName; - } -- --} -- --/** -- * Inform the test harness that we're done loading the page. -- */ --function loadSucceeded() --{ -- var event = new CustomEvent("AboutHomeLoadSnippetsSucceeded", {bubbles:true}); -- document.dispatchEvent(event); -} - + function onSearchSubmit(aEvent) + { + let searchTerms = document.getElementById("searchText").value; +@@ -350,147 +130,6 @@ function loadSucceeded() + document.dispatchEvent(event); + } + -/** - * Update the local snippets from the remote storage, then show them through - * showSnippets. @@ -735,14 +632,16 @@ index 432fcdc..8e85f1f 100644 - } - // Move the default snippet to the snippets element. - snippetsElt.appendChild(entry); - } - +-} +- function fitToWidth() { + if (window.scrollMaxX) { + document.body.setAttribute("narrow", "true"); diff --git a/browser/base/content/abouthome/aboutHome.xhtml b/browser/base/content/abouthome/aboutHome.xhtml -index 1d03d38..fda3095 100644 +index 1d03d38..5d808db 100644 --- a/browser/base/content/abouthome/aboutHome.xhtml +++ b/browser/base/content/abouthome/aboutHome.xhtml -@@ -43,30 +43,9 @@ +@@ -43,15 +43,6 @@ @@ -758,245 +657,16 @@ index 1d03d38..fda3095 100644
--
-- -- -- -- -- -- -- --
-- --
-- +@@ -67,6 +58,6 @@ + +
+ - + -diff --git a/browser/base/content/content.js b/browser/base/content/content.js -index 9428613..fc3c00a 100644 ---- a/browser/base/content/content.js -+++ b/browser/base/content/content.js -@@ -50,216 +50,3 @@ if (Services.prefs.getBoolPref("browser.tabs.remote")) { - LoginManagerContent.onUsernameInput(event); - }); - } -- --let AboutHomeListener = { -- init: function(chromeGlobal) { -- chromeGlobal.addEventListener('AboutHomeLoad', () => this.onPageLoad(), false, true); -- }, -- -- handleEvent: function(aEvent) { -- switch (aEvent.type) { -- case "AboutHomeLoad": -- this.onPageLoad(); -- break; -- } -- }, -- -- receiveMessage: function(aMessage) { -- switch (aMessage.name) { -- case "AboutHome:Update": -- this.onUpdate(aMessage.data); -- break; -- } -- }, -- -- onUpdate: function(aData) { -- let doc = content.document; -- if (doc.documentURI.toLowerCase() != "about:home") -- return; -- -- if (aData.showRestoreLastSession && !PrivateBrowsingUtils.isWindowPrivate(content)) -- doc.getElementById("launcher").setAttribute("session", "true"); -- -- // Inject search engine and snippets URL. -- let docElt = doc.documentElement; -- // set the following attributes BEFORE searchEngineName, which triggers to -- // show the snippets when it's set. -- docElt.setAttribute("snippetsURL", aData.snippetsURL); -- if (aData.showKnowYourRights) -- docElt.setAttribute("showKnowYourRights", "true"); -- docElt.setAttribute("snippetsVersion", aData.snippetsVersion); -- docElt.setAttribute("searchEngineName", Services.search.defaultEngine.name); -- }, -- -- onPageLoad: function() { -- let doc = content.document; -- if (doc.documentURI.toLowerCase() != "about:home" || -- doc.documentElement.hasAttribute("hasBrowserHandlers")) { -- return; -- } -- -- doc.documentElement.setAttribute("hasBrowserHandlers", "true"); -- let updateListener = this; -- addMessageListener("AboutHome:Update", updateListener); -- addEventListener("click", this.onClick, true); -- addEventListener("pagehide", function onPageHide(event) { -- if (event.target.defaultView.frameElement) -- return; -- removeMessageListener("AboutHome:Update", updateListener); -- removeEventListener("click", this.onClick, true); -- removeEventListener("pagehide", onPageHide, true); -- if (event.target.documentElement) -- event.target.documentElement.removeAttribute("hasBrowserHandlers"); -- }, true); -- -- // XXX bug 738646 - when Marketplace is launched, remove this statement and -- // the hidden attribute set on the apps button in aboutHome.xhtml -- if (Services.prefs.getPrefType("browser.aboutHome.apps") == Services.prefs.PREF_BOOL && -- Services.prefs.getBoolPref("browser.aboutHome.apps")) -- doc.getElementById("apps").removeAttribute("hidden"); -- -- sendAsyncMessage("AboutHome:RequestUpdate"); -- -- doc.addEventListener("AboutHomeSearchEvent", function onSearch(e) { -- sendAsyncMessage("AboutHome:Search", { searchData: e.detail }); -- }, true, true); -- }, -- -- onClick: function(aEvent) { -- if (!aEvent.isTrusted || // Don't trust synthetic events -- aEvent.button == 2 || aEvent.target.localName != "button") { -- return; -- } -- -- let originalTarget = aEvent.originalTarget; -- let ownerDoc = originalTarget.ownerDocument; -- let elmId = originalTarget.getAttribute("id"); -- -- switch (elmId) { -- case "restorePreviousSession": -- sendAsyncMessage("AboutHome:RestorePreviousSession"); -- ownerDoc.getElementById("launcher").removeAttribute("session"); -- break; -- -- case "downloads": -- sendAsyncMessage("AboutHome:Downloads"); -- break; -- -- case "bookmarks": -- sendAsyncMessage("AboutHome:Bookmarks"); -- break; -- -- case "history": -- sendAsyncMessage("AboutHome:History"); -- break; -- -- case "apps": -- sendAsyncMessage("AboutHome:Apps"); -- break; -- -- case "addons": -- sendAsyncMessage("AboutHome:Addons"); -- break; -- -- case "sync": -- sendAsyncMessage("AboutHome:Sync"); -- break; -- -- case "settings": -- sendAsyncMessage("AboutHome:Settings"); -- break; -- } -- }, --}; --AboutHomeListener.init(this); -- -- --var global = this; -- --let ClickEventHandler = { -- init: function init() { -- Cc["@mozilla.org/eventlistenerservice;1"] -- .getService(Ci.nsIEventListenerService) -- .addSystemEventListener(global, "click", this, true); -- }, -- -- handleEvent: function(event) { -- // Bug 903016: Most of this code is an unfortunate duplication from -- // contentAreaClick in browser.js. -- if (!event.isTrusted || event.defaultPrevented || event.button == 2) -- return; -- -- let [href, node] = this._hrefAndLinkNodeForClickEvent(event); -- -- let json = { button: event.button, shiftKey: event.shiftKey, -- ctrlKey: event.ctrlKey, metaKey: event.metaKey, -- altKey: event.altKey, href: null, title: null, -- bookmark: false }; -- -- if (href) { -- json.href = href; -- if (node) { -- json.title = node.getAttribute("title"); -- -- if (event.button == 0 && !event.ctrlKey && !event.shiftKey && -- !event.altKey && !event.metaKey) { -- json.bookmark = node.getAttribute("rel") == "sidebar"; -- if (json.bookmark) -- event.preventDefault(); // Need to prevent the pageload. -- } -- } -- -- sendAsyncMessage("Content:Click", json); -- return; -- } -- -- // This might be middle mouse navigation. -- if (event.button == 1) -- sendAsyncMessage("Content:Click", json); -- }, -- -- /** -- * Extracts linkNode and href for the current click target. -- * -- * @param event -- * The click event. -- * @return [href, linkNode]. -- * -- * @note linkNode will be null if the click wasn't on an anchor -- * element (or XLink). -- */ -- _hrefAndLinkNodeForClickEvent: function(event) { -- function isHTMLLink(aNode) { -- // Be consistent with what nsContextMenu.js does. -- return ((aNode instanceof content.HTMLAnchorElement && aNode.href) || -- (aNode instanceof content.HTMLAreaElement && aNode.href) || -- aNode instanceof content.HTMLLinkElement); -- } -- -- let node = event.target; -- while (node && !isHTMLLink(node)) { -- node = node.parentNode; -- } -- -- if (node) -- return [node.href, node]; -- -- // If there is no linkNode, try simple XLink. -- let href, baseURI; -- node = event.target; -- while (node && !href) { -- if (node.nodeType == content.Node.ELEMENT_NODE) { -- href = node.getAttributeNS("http://www.w3.org/1999/xlink", "href"); -- if (href) -- baseURI = node.ownerDocument.baseURIObject; -- } -- node = node.parentNode; -- } -- -- // In case of XLink, we don't return the node we got href from since -- // callers expect -like elements. -- // Note: makeURI() will throw if aUri is not a valid URI. -- return [href ? makeURI(href, null, baseURI).spec : null, null]; -- } --}; --ClickEventHandler.init(); diff --git a/browser/base/jar.mn b/browser/base/jar.mn -index f2a820c..9478039 100644 +index 3113094..e852cec 100644 --- a/browser/base/jar.mn +++ b/browser/base/jar.mn @@ -33,7 +33,7 @@ browser.jar: @@ -1090,7 +760,7 @@ index 087cc50..5654eb9 100644 +gecko.handlerService.schemes.ircs.0.name=Freenode Web IRC +gecko.handlerService.schemes.ircs.0.uriTemplate=https://webchat.freenode.net diff --git a/browser/locales/generic/profile/bookmarks.html.in b/browser/locales/generic/profile/bookmarks.html.in -index e925c1e..5101035 100644 +index e925c1e..8c121fc 100644 --- a/browser/locales/generic/profile/bookmarks.html.in +++ b/browser/locales/generic/profile/bookmarks.html.in @@ -15,13 +15,20 @@ @@ -1121,7 +791,7 @@ index e925c1e..5101035 100644

diff --git a/browser/modules/AboutHome.jsm b/browser/modules/AboutHome.jsm -index 98c443d..0173762 100644 +index c3dc6b2..df312e3 100644 --- a/browser/modules/AboutHome.jsm +++ b/browser/modules/AboutHome.jsm @@ -8,7 +8,7 @@ let Cc = Components.classes; @@ -1200,13 +870,14 @@ index 98c443d..0173762 100644 /** * This code provides services to the about:home page. Whenever * about:home needs to do something chrome-privileged, it sends a -@@ -185,17 +125,8 @@ let AboutHome = { +@@ -186,18 +126,9 @@ let AboutHome = { ss.promiseInitialized.then(function() { let data = { showRestoreLastSession: ss.canRestoreLastSession, - snippetsURL: AboutHomeUtils.snippetsURL, - showKnowYourRights: AboutHomeUtils.showKnowYourRights, -- snippetsVersion: AboutHomeUtils.snippetsVersion +- snippetsVersion: AboutHomeUtils.snippetsVersion, + defaultEngineName: Services.search.defaultEngine.name }; - if (AboutHomeUtils.showKnowYourRights) { -- cgit v1.2.3-2-g168b From 541a055333be8a87d10ac3ca7ee035b2d2125a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 7 Feb 2014 07:07:12 -0200 Subject: iceweasel-l10n-1:27.0.deb1-1: updating version --- libre/iceweasel-l10n/PKGBUILD | 174 ++++++++++++++++++++---------------------- 1 file changed, 84 insertions(+), 90 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-l10n/PKGBUILD b/libre/iceweasel-l10n/PKGBUILD index 0f3cb050a..b422d0c34 100644 --- a/libre/iceweasel-l10n/PKGBUILD +++ b/libre/iceweasel-l10n/PKGBUILD @@ -11,12 +11,12 @@ # - Run 'make'. It will take care of everything else for you. _debname=iceweasel -_debver=26.0 +_debver=27.0 _debrel=deb1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } -_langpacks=(ach af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko ku lg lij lt lv mai mk ml mr nb-NO nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta ta-LK te th tr uk vi zh-CN zh-TW zu) +_langpacks=(ach af an ar as ast be bg bn-BD br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko lij lt lv mai mk ml mr nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta te th tr uk vi xh zh-CN zh-TW) pkgbase=iceweasel-l10n pkgname=($(for lang in ${_langpacks[@]} @@ -76,91 +76,85 @@ package_iceweasel-l10n-$(echo $lang | tr A-Z a-z)() { done md5sums=('a4593936bf1c7a9ec9368ff249f9cc56' - '1034ab86bc45115f9ef614b85cfcdc19' - '4c34d69b741bf1f33648b77c3322b2da' - 'aacb59b72dd27ed06881cd01d81fa3a6' - 'e64213a5fb34e8d53f13200f7b729c82' - '0a92bec210e3f8aff64a81fda8780cf3' - 'd0f290128bbf2a4383e982bf4e686b96' - '3f008ae077bc54cb948cc6a08a78a0f6' - '84fde08dd4da53def0491960a908f9ff' - '2494d4cba834bf49d2e8f0ac6e86dec0' - '328c526e9c41f32c5df0916d8633b8e7' - '6bbd86c0180764b59e9762f7b33d5db3' - 'd4c2de19670d608f16158908ae980e0d' - '36c76ce311208ad2fcc19a06f02c4d52' - '1de6bdd14302fff21d62472bf172e5bf' - '8aceec26df106e67c4f19589fcef7588' - 'edd2c8f8c3f6df1cc819cf8542b76196' - '89b3ab8adace5efd25a92a091e3f6bac' - 'fefbecae93e912447a8119115930f7d5' - '236f1fc25ff6e104ca61bcb48342710f' - '7a839afc851fcb2e3e630090586245ca' - '12fea0abba7caf75da8ba7bcab99728a' - '4779ce690c5f45c138ec36fff6360bed' - 'e3b767cfb3318fc85b96d894ed4cdec5' - '2a2d96b793f652520de146f9dc24755c' - '17120e297fc252e97e0abd3ff1c2a10b' - '2259d8189d34915f32ab31b4d53d6e87' - 'b7aa28e93264aea26595fd98d7982abe' - '01873dd70986ca857cf5e00b85a22adf' - '2f88825d3925eb1bb21a0ad092308edd' - '485e799de41f283c937cf6055e2f5523' - 'f19e860a2d5435ee61d48ed328494212' - 'd64ac8e776f808d61d2c2c4678124294' - '74b6666fabaa8e270356eaa7a78b371c' - '36304846e8a1ae604b29bdfb6b0c12ba' - '0cdfde7a083cca4308bd23f7203bbe7b' - '74a2103823f0f9a6b0bc614bd46272ca' - 'e088239e0f15ad5d23099ab2cad19d92' - '16b9e9814f154ffddd8d9612bdf9f8d8' - '6a2aca46eabd374d80106328fea6e340' - 'f680470cc3d6fc87276a9b17d6841ae2' - '6964eef1fd96fa810de34f32844f31fc' - '223e82aa9efb2376f44b7601e3ddbeae' - 'd821062dd74179309981c18542412e2e' - '7128e964f3d01da8967c5e57b2d76b93' - '2cc4b1a603c29450d19dd98c15093fec' - '595e155b3d15432d5de2c5962feea581' - '9110dc57eff2d7cab6d7eeeb11f8e98c' - '0503d87f660e9e86be6a3c32ed73e65c' - 'e19e8f1702232f5d77ec0624071ccd7d' - '5618dcfcc50831b8efccd0c0c093dfc2' - '1020905e47d89bf40545a3bbdf52951b' - '6d187dc8a4ac042e7c871134ca86b2c0' - '36d5a7066f518c7db7464320e2b86fc8' - '9654556b5c1a74a4ffe21091edbe26df' - 'd5e6d93aa7f35e052a24b612730a70ba' - 'b5f0df97c10290c555f3002655f5bfe6' - 'f1f4d8897422ed5328e1b2325a1f1198' - '3bfa9cbe5abd0ea40c70e16cd2f5c24c' - 'f27983d5cf79aa478409c33dae988ce2' - 'cbf40cf391dd5bbac1665a8180f81620' - '69ffe26a603ddc25bc7d9e56a70b6399' - '90d6449031ae5e06acd8cffdb0d01e05' - '326ad24d994971a2405dcb1532cce6bf' - '5ced14adbdddd81bda4a9cd2ddd92ee4' - 'b86565c39ef253d51a39bc851e7b354d' - '915f6058a855a59cddeb027d2a518dce' - '58f8bfcd609626a2a76ff22206e2033f' - '9b0be982d506f060319bd3c41aee0896' - '65cd9c3cf11f1937be0a1dc0802f3d1a' - '454413e97a0d19ba018ebc60e2502d2b' - '45b8f8cdb117eca4eaaa1d6b449569f5' - 'f10ef03517f558c15fca7db4d9e50ad1' - '5a3465027d47bd30da6a77f92e94fd08' - '56ecb69e73f7d3447019e6f3b23aebba' - 'c02e08ff0732233738fe3af877513a34' - '3a4fbbfeb24cff45933c53dac27d6fdc' - 'a2245eca0bca1d615e031e82734b8e43' - '62f4ea1010191b721aa8b2d6130a3c1e' - '45bd1ab2f164630366ce6004d0070f55' - '1cce5000ad1146b1cfc5ff9cd5db175b' - 'b9283671cf87329296b62f529e8e7709' - '17fa69f4617ce5706fe11c54d5a737a8' - 'cfd0b7b1215f13cfcd8eb1d0ab335aa4' - '6ec5cd2855ae69f8998de2305109bd91' - '4b121cb7694f5962c99c479a26442905' - '6aa873082d24918f489431be9be7300a' - 'f36aafb79f6120698f9b890c52dbd301' - 'ff581801e9a9663e4562a5d28d4cbe2d') + 'e93e1d1c6c19506280909c9c44381b31' + 'fd6a3c94db2ec15724e0282ad8bbb88b' + '5f487d08c63467bce76500d476c2e720' + 'b7432c77be0c5140c287e30472e7558c' + '140b8d771db5186617e900e94ca81e8e' + 'cdc18a87637fc75cd74d1488e9e8014a' + '7ee9df5caa96cc3496476a8a6b3da382' + 'a5c9f178c37cb613ba02a04e9a5a14a5' + 'c0d36f5bb3db675aa103ebaa6989b3db' + 'd403801bf45498022fb326163325353d' + 'c720ad3bebddfb235bc115bd54df7e53' + 'b6dc0cd09ea300054b7b67ee3e57e426' + '7fb5774ef19301f09dd7cd2da40b9abb' + '7705c17405a8fb2200f2eb0f35e5874c' + '49ae75599defd90f8e78553b66b2d41f' + '31ee848294ced1516c5652d60604f797' + 'f5123e7c55b69090b1383a8f1d457516' + '8aac6a53fe7a8f580fc6e3915a1cb867' + 'd4e4e1f7acfe5752b7d9d2b0af966373' + '3553b70e38157a9367b64d5b9b5c22ce' + 'f3df39d6e307eb1e4f120532a090cd34' + '3a624c988e1accbd788d864806a552b8' + 'a1385f224c6a01efa08a7536c70e65ae' + 'a7a4987f1fc7a403d5bf950ffcab97ca' + 'c6d5bdd7eefe7e8f971c7f9e21c71cd8' + '75b2044c67f19c4bb5ce7441603a090d' + 'd5b282183ae094e9cb2930b9d06a2945' + 'e2f680acba50a509f4944d64f0e8b12a' + '062437e3d5fec69444cf129a69d55800' + '20e5290717405966bc458c331749457c' + '68d8e0e0e372f18a6d607df1734bc6b9' + '096a58d2a00d2cd8cace2d63fa0454ae' + '7b9e564ced4e5fe060ca85885ae0d441' + '8e3fc652f5abf4c534d67e819ec996f2' + 'e20ac9d23378ada9f3f3a92e60b2ee93' + '1c021d9b8acd5fe515b00323e0738ea9' + '92525a283b5d4742601d8878d8d7bef2' + '02b2b40f53e0a41e3d1dbf63049ed32d' + 'e4f84a508bce58208846a94b48c1e892' + '91f73ccc80415f72ae01e095ad062145' + '5cc74c624f9f27066ca90641d159e632' + '007ec8847575f4cf81d6a597c8be6d5d' + '79962353f3fd65b4db090a547391c7d6' + '4d6b7cde50343d39747f7cfefe7779ff' + 'b3ab5bbaa080770d34a56e16b8f37e7d' + '1bea7cdc4df0526043041dfcfcbc0a27' + '40f1faaa2990445ab1d3695e098b5e84' + 'c7c70615a8ca50157659f0003102c1c8' + '392633fe2681a7cc007e895632e880d7' + 'a51f8c7f674ce2b989e7961dc9b4178b' + 'a036c9497d2a098929367ef29829c355' + '89a9ec509e38fefaaf93d6d20f7de24e' + '87eedd063b0670a83ea0801477eb6432' + '3ac80ae65e573e7af571ad324fc89ec3' + 'f52387d2feda45b58fb7fdabe2e1d3c0' + 'ad14ebdfa234cfc72c47d55dd4705e11' + '1ae5033d60a54eacea3b54ed3aac2215' + '5c73173dffe662529fc2953babfdf42e' + '901f0c97282dbe5a4bbb2130b2a6147e' + 'c951c259bc0b44579e3575ab988a13db' + '930a0a30ce2ef304a69c5adefb0d4046' + 'c9ab698b523f0bec97462f6a948b1bd1' + '29cef68ad4ec2380ab4e731cb6d7aa55' + '878e8a2e9010e7f2f8285d7fe159c324' + '1fe1bdd0eab73b7380a72a7f803bf6a5' + '4fcbc7d321a5d233593a78150dd18f1e' + '706ba0aa5f27e3a7eb327e91d38d2419' + 'c3a828894acd6961f5f324a141ee37c3' + '8d1ccee2e1ebb515d6a20e5192168499' + '6fdcc7c1a624608e284000ad3526aaa8' + '39c18edb12a04849fd5bed795ac1559f' + 'b25714bb9a8686ab83291812f5922a72' + '0484bb8a9750e5bd99f332412d2473cc' + '777fc3c6dfa24138d95c41d1ce1d14b9' + 'd47833bbe4ba37c24c1c6d796e829581' + '8bed0e985e274d47bfc321165df07416' + '34382f666d44025751e4f6d7bfc84532' + '57248a792eaeb5ca5def21bbb3e45fcf' + 'a69d513999f3f50b8dcc1101354c99c4' + '47ba44a2df13e49cc4a07f3529e35497' + 'bde19859f08ff1051b823ae78265a2e7' + '1412ee3cf88155a42a5b534c96b02f97') -- cgit v1.2.3-2-g168b From 5efe7255935eaa81c65044efd409d44534a5bb2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 7 Feb 2014 23:10:34 -0200 Subject: linux-libre: prolixing ChangeLog --- libre/linux-libre/ChangeLog | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'libre') diff --git a/libre/linux-libre/ChangeLog b/libre/linux-libre/ChangeLog index 9020464ef..4412bccba 100644 --- a/libre/linux-libre/ChangeLog +++ b/libre/linux-libre/ChangeLog @@ -1,8 +1,3 @@ -2013-10-20 André Silva - - * linux-libre-3.11.5-1 - * Replaced email account emulatorman@lavabit.com to emulatorman@parabola.nu. - 2013-07-15 André Silva * linux-libre-3.10.1-1 @@ -18,27 +13,27 @@ * linux-libre-3.7.1-1 * Replaced CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" to CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="linux-libre.fsfla.org" -2012-06-23 André Silva - - * linux-libre-3.4.4-1 - * Replaced email account andre.paulista@adinet.com.uy to emulatorman@lavabit.com. - 2012-05-26 André Silva * linux-libre-3.4-1.2 - * Disabled CONFIG_MICROCODE_INTEL and CONFIG_MICROCODE_AMD modules https://labs.parabola.nu/issues/116 + * Disabled CONFIG_MICROCODE_INTEL and CONFIG_MICROCODE_AMD modules [3] 2012-04-24 André Silva * linux-libre-3.3.3-1 - * Disabled CONFIG_STUB_POULSBO module https://labs.parabola.nu/issues/90 + * Disabled CONFIG_STUB_POULSBO module [2] 2012-04-08 André Silva * linux-libre-3.3.1-1.1 - * Disabled CONFIG_IPW2100 and CONFIG_IPW2200 modules https://labs.parabola.nu/issues/47 + * Disabled CONFIG_IPW2100 and CONFIG_IPW2200 modules [1] 2012-03-03 André Silva * linux-libre-3.2.9-2 - * Enabled CONFIG_FB_VT8623 module https://labs.parabola.nu/issues/14 + * Enabled CONFIG_FB_VT8623 module [0] + +[0] https://labs.parabola.nu/issues/14 +[1] https://labs.parabola.nu/issues/47 +[2] https://labs.parabola.nu/issues/90 +[3] https://labs.parabola.nu/issues/116 -- cgit v1.2.3-2-g168b From bf4a82e5b687d61dcdd31b12921b4bd835c1f409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 7 Feb 2014 23:21:26 -0200 Subject: linux-libre: remove blank space on ChangeLog --- libre/linux-libre/ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/linux-libre/ChangeLog b/libre/linux-libre/ChangeLog index 4412bccba..5259f3e89 100644 --- a/libre/linux-libre/ChangeLog +++ b/libre/linux-libre/ChangeLog @@ -21,7 +21,7 @@ 2012-04-24 André Silva * linux-libre-3.3.3-1 - * Disabled CONFIG_STUB_POULSBO module [2] + * Disabled CONFIG_STUB_POULSBO module [2] 2012-04-08 André Silva -- cgit v1.2.3-2-g168b From b889da240695997871c680637c7f0fdcac69842c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 01:04:08 -0200 Subject: iceweasel-l10n-1:27.0.deb1-2: fix branding because Iceweasel locales are displaying the browser as "Nightly" --- libre/iceweasel-l10n/PKGBUILD | 10 +++++++--- libre/iceweasel-l10n/brand.dtd | 5 +++++ libre/iceweasel-l10n/brand.properties | 3 +++ 3 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 libre/iceweasel-l10n/brand.dtd create mode 100644 libre/iceweasel-l10n/brand.properties (limited to 'libre') diff --git a/libre/iceweasel-l10n/PKGBUILD b/libre/iceweasel-l10n/PKGBUILD index b422d0c34..07a3ff94c 100644 --- a/libre/iceweasel-l10n/PKGBUILD +++ b/libre/iceweasel-l10n/PKGBUILD @@ -24,7 +24,7 @@ pkgname=($(for lang in ${_langpacks[@]} done)) epoch=1 pkgver=$_debver.$_debrel -pkgrel=1 +pkgrel=2 pkgdesc="Language packs for Debian Iceweasel." arch=('any') @@ -32,7 +32,7 @@ url="http://packages.debian.org/experimental/iceweasel" license=('MPL' 'GPL') depends=("iceweasel-libre>=$epoch:$pkgver") makedepends=('unzip' 'zip') -source=('region.properties') +source=('brand.dtd' 'brand.properties' 'region.properties') for lang in ${_langpacks[@]} do source+=("${_debrepo}/`debfile ${_debname}`-l10n-$(echo $lang | tr A-Z a-z)_${_debver}-${_debrel#deb}_all.deb") @@ -55,6 +55,8 @@ build() { cd $srcdir/$_path unzip -q langpack-$i@iceweasel.mozilla.org.xpi -d $i rm langpack-$i@iceweasel.mozilla.org.xpi + install -Dm644 $srcdir/brand.dtd $i/browser/chrome/$i/locale/branding + install -Dm644 $srcdir/brand.properties $i/browser/chrome/$i/locale/branding install -Dm644 $srcdir/region.properties $i/browser/chrome/$i/locale/browser-region cd $i zip -q -r $srcdir/$_path/langpack-$i@iceweasel.mozilla.org.xpi . @@ -75,7 +77,9 @@ package_iceweasel-l10n-$(echo $lang | tr A-Z a-z)() { " done -md5sums=('a4593936bf1c7a9ec9368ff249f9cc56' +md5sums=('41882dabdc0315962f18d78ee97d5be5' + '87640dacdbba301feaf1fb30bfa60137' + 'a4593936bf1c7a9ec9368ff249f9cc56' 'e93e1d1c6c19506280909c9c44381b31' 'fd6a3c94db2ec15724e0282ad8bbb88b' '5f487d08c63467bce76500d476c2e720' diff --git a/libre/iceweasel-l10n/brand.dtd b/libre/iceweasel-l10n/brand.dtd new file mode 100644 index 000000000..70f2bcb2e --- /dev/null +++ b/libre/iceweasel-l10n/brand.dtd @@ -0,0 +1,5 @@ + + + + + diff --git a/libre/iceweasel-l10n/brand.properties b/libre/iceweasel-l10n/brand.properties new file mode 100644 index 000000000..53348f06b --- /dev/null +++ b/libre/iceweasel-l10n/brand.properties @@ -0,0 +1,3 @@ +brandShortName=Iceweasel +brandFullName=Iceweasel +vendorShortName=Mozilla -- cgit v1.2.3-2-g168b From e55ae1bf4aa89516e7ed94897e8dbd58e2671bd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 03:16:14 -0200 Subject: 1:27.0.deb2-1: updating version --- libre/iceweasel-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD index b79fcdd5e..d6f31d065 100644 --- a/libre/iceweasel-libre/PKGBUILD +++ b/libre/iceweasel-libre/PKGBUILD @@ -15,7 +15,7 @@ _pgo=true # We're getting this from Debian Experimental _debname=iceweasel _debver=27.0 -_debrel=deb1 +_debrel=deb2 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -61,7 +61,7 @@ source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.bz2" Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch Fixup-Reset-Firefox-after-bad-merge.patch) md5sums=('0baf0b166421f785db79bd33fe7b0748' - 'd259edde0fee1c29f39bdb6ad2bca70f' + '2446de5f7844caae8cd7e46b3b72119c' '023120a970670dc85cea19393f0b94b6' 'df08eaa1ac3bc6c2356be4fbf8ec8932' '641e8b54a684161c60209b81f260a19b' -- cgit v1.2.3-2-g168b From 3c43d3ff8aafdac85695151131cbd50f8294ecb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 06:30:29 -0200 Subject: iceweasel-l10n-1:27.0.deb2-1: updating version --- libre/iceweasel-l10n/PKGBUILD | 251 ++++++++++++++++------------------ libre/iceweasel-l10n/brand.dtd | 5 - libre/iceweasel-l10n/brand.properties | 3 - 3 files changed, 121 insertions(+), 138 deletions(-) delete mode 100644 libre/iceweasel-l10n/brand.dtd delete mode 100644 libre/iceweasel-l10n/brand.properties (limited to 'libre') diff --git a/libre/iceweasel-l10n/PKGBUILD b/libre/iceweasel-l10n/PKGBUILD index 07a3ff94c..fcd07a6ff 100644 --- a/libre/iceweasel-l10n/PKGBUILD +++ b/libre/iceweasel-l10n/PKGBUILD @@ -5,26 +5,23 @@ # Contributor: Figue # Based on icecat-i18n package, which is in turn based on firefox-i18n -# When updating to a newer upstream release: -# - Edit variables in in Makefile. -# - (optionally) edit PKGBUILD.in -# - Run 'make'. It will take care of everything else for you. - _debname=iceweasel _debver=27.0 -_debrel=deb1 +_debrel=deb2 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } _langpacks=(ach af an ar as ast be bg bn-BD br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko lij lt lv mai mk ml mr nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta te th tr uk vi xh zh-CN zh-TW) pkgbase=iceweasel-l10n -pkgname=($(for lang in ${_langpacks[@]} - do echo $pkgbase-$lang | tr A-Z a-z - done)) +pkgname=( + $(for lang in ${_langpacks[@]}; do + echo $pkgbase-$lang | tr A-Z a-z + done) +) epoch=1 pkgver=$_debver.$_debrel -pkgrel=2 +pkgrel=1 pkgdesc="Language packs for Debian Iceweasel." arch=('any') @@ -32,133 +29,127 @@ url="http://packages.debian.org/experimental/iceweasel" license=('MPL' 'GPL') depends=("iceweasel-libre>=$epoch:$pkgver") makedepends=('unzip' 'zip') -source=('brand.dtd' 'brand.properties' 'region.properties') -for lang in ${_langpacks[@]} -do - source+=("${_debrepo}/`debfile ${_debname}`-l10n-$(echo $lang | tr A-Z a-z)_${_debver}-${_debrel#deb}_all.deb") +source=('region.properties') +for lang in ${_langpacks[@]}; do + source+=("${_debrepo}/`debfile ${_debname}`-l10n-$(echo $lang | tr A-Z a-z)_${_debver}-${_debrel#deb}_all.deb") done -_path="/usr/lib/iceweasel/browser/extensions/" +_path=usr/lib/iceweasel/browser/extensions -build() { - cd "${srcdir}" - for f in *.deb - do - bsdtar xf $f - bsdtar xf data.tar.xz +prepare() { + cd $srcdir + for f in *.deb; do + bsdtar xf $f + bsdtar xf data.tar.xz done - cd $srcdir/$_path - - for i in ${_langpacks[@]} - do - cd $srcdir/$_path - unzip -q langpack-$i@iceweasel.mozilla.org.xpi -d $i - rm langpack-$i@iceweasel.mozilla.org.xpi - install -Dm644 $srcdir/brand.dtd $i/browser/chrome/$i/locale/branding - install -Dm644 $srcdir/brand.properties $i/browser/chrome/$i/locale/branding - install -Dm644 $srcdir/region.properties $i/browser/chrome/$i/locale/browser-region - cd $i - zip -q -r $srcdir/$_path/langpack-$i@iceweasel.mozilla.org.xpi . + mv $_path/* . + rm -r {control.tar.gz,data.tar.xz,debian-binary,etc,usr} + rm -r *.deb + + for lang in ${_langpacks[@]}; do + unzip -q langpack-$lang@iceweasel.mozilla.org.xpi -d $lang + rm langpack-$lang@iceweasel.mozilla.org.xpi + install -Dm644 $srcdir/region.properties $lang/browser/chrome/$lang/locale/browser-region + cd $lang + zip -q -r langpack-$lang@iceweasel.mozilla.org.xpi . + mv langpack-$lang@iceweasel.mozilla.org.xpi $srcdir + cd .. + rm -r $lang done - - cd $srcdir } -for lang in ${_langpacks[@]} -do - eval " -package_iceweasel-l10n-$(echo $lang | tr A-Z a-z)() { - replaces=(firefox-i18n-$(echo $lang | tr A-Z a-z) iceweasel-i18n-$(echo $lang | tr A-Z a-z) iceweasel-libre-l10n-$(echo $lang | tr A-Z a-z)) - conflicts=(firefox-i18n-$(echo $lang | tr A-Z a-z) iceweasel-i18n-$(echo $lang | tr A-Z a-z) iceweasel-libre-l10n-$(echo $lang | tr A-Z a-z)) - provides=(firefox-i18n-$(echo $lang | tr A-Z a-z) iceweasel-i18n-$(echo $lang | tr A-Z a-z) iceweasel-libre-l10n-$(echo $lang | tr A-Z a-z)) - install -Dm644 \"\$srcdir$_path/langpack-$lang@iceweasel.mozilla.org.xpi\" \"\$pkgdir$_path/langpack-$lang@iceweasel.mozilla.org.xpi\" -} -" +for lang in ${_langpacks[@]}; do + eval " + package_iceweasel-l10n-$(echo $lang | tr A-Z a-z)() { + replaces=(firefox-i18n-$(echo $lang | tr A-Z a-z) iceweasel-i18n-$(echo $lang | tr A-Z a-z) iceweasel-libre-l10n-$(echo $lang | tr A-Z a-z)) + conflicts=(firefox-i18n-$(echo $lang | tr A-Z a-z) iceweasel-i18n-$(echo $lang | tr A-Z a-z) iceweasel-libre-l10n-$(echo $lang | tr A-Z a-z)) + provides=(firefox-i18n-$(echo $lang | tr A-Z a-z) iceweasel-i18n-$(echo $lang | tr A-Z a-z) iceweasel-libre-l10n-$(echo $lang | tr A-Z a-z)) + install -Dm644 \"\$srcdir/langpack-$lang@iceweasel.mozilla.org.xpi\" \"\$pkgdir/$_path/langpack-$lang@iceweasel.mozilla.org.xpi\" + } + " done -md5sums=('41882dabdc0315962f18d78ee97d5be5' - '87640dacdbba301feaf1fb30bfa60137' - 'a4593936bf1c7a9ec9368ff249f9cc56' - 'e93e1d1c6c19506280909c9c44381b31' - 'fd6a3c94db2ec15724e0282ad8bbb88b' - '5f487d08c63467bce76500d476c2e720' - 'b7432c77be0c5140c287e30472e7558c' - '140b8d771db5186617e900e94ca81e8e' - 'cdc18a87637fc75cd74d1488e9e8014a' - '7ee9df5caa96cc3496476a8a6b3da382' - 'a5c9f178c37cb613ba02a04e9a5a14a5' - 'c0d36f5bb3db675aa103ebaa6989b3db' - 'd403801bf45498022fb326163325353d' - 'c720ad3bebddfb235bc115bd54df7e53' - 'b6dc0cd09ea300054b7b67ee3e57e426' - '7fb5774ef19301f09dd7cd2da40b9abb' - '7705c17405a8fb2200f2eb0f35e5874c' - '49ae75599defd90f8e78553b66b2d41f' - '31ee848294ced1516c5652d60604f797' - 'f5123e7c55b69090b1383a8f1d457516' - '8aac6a53fe7a8f580fc6e3915a1cb867' - 'd4e4e1f7acfe5752b7d9d2b0af966373' - '3553b70e38157a9367b64d5b9b5c22ce' - 'f3df39d6e307eb1e4f120532a090cd34' - '3a624c988e1accbd788d864806a552b8' - 'a1385f224c6a01efa08a7536c70e65ae' - 'a7a4987f1fc7a403d5bf950ffcab97ca' - 'c6d5bdd7eefe7e8f971c7f9e21c71cd8' - '75b2044c67f19c4bb5ce7441603a090d' - 'd5b282183ae094e9cb2930b9d06a2945' - 'e2f680acba50a509f4944d64f0e8b12a' - '062437e3d5fec69444cf129a69d55800' - '20e5290717405966bc458c331749457c' - '68d8e0e0e372f18a6d607df1734bc6b9' - '096a58d2a00d2cd8cace2d63fa0454ae' - '7b9e564ced4e5fe060ca85885ae0d441' - '8e3fc652f5abf4c534d67e819ec996f2' - 'e20ac9d23378ada9f3f3a92e60b2ee93' - '1c021d9b8acd5fe515b00323e0738ea9' - '92525a283b5d4742601d8878d8d7bef2' - '02b2b40f53e0a41e3d1dbf63049ed32d' - 'e4f84a508bce58208846a94b48c1e892' - '91f73ccc80415f72ae01e095ad062145' - '5cc74c624f9f27066ca90641d159e632' - '007ec8847575f4cf81d6a597c8be6d5d' - '79962353f3fd65b4db090a547391c7d6' - '4d6b7cde50343d39747f7cfefe7779ff' - 'b3ab5bbaa080770d34a56e16b8f37e7d' - '1bea7cdc4df0526043041dfcfcbc0a27' - '40f1faaa2990445ab1d3695e098b5e84' - 'c7c70615a8ca50157659f0003102c1c8' - '392633fe2681a7cc007e895632e880d7' - 'a51f8c7f674ce2b989e7961dc9b4178b' - 'a036c9497d2a098929367ef29829c355' - '89a9ec509e38fefaaf93d6d20f7de24e' - '87eedd063b0670a83ea0801477eb6432' - '3ac80ae65e573e7af571ad324fc89ec3' - 'f52387d2feda45b58fb7fdabe2e1d3c0' - 'ad14ebdfa234cfc72c47d55dd4705e11' - '1ae5033d60a54eacea3b54ed3aac2215' - '5c73173dffe662529fc2953babfdf42e' - '901f0c97282dbe5a4bbb2130b2a6147e' - 'c951c259bc0b44579e3575ab988a13db' - '930a0a30ce2ef304a69c5adefb0d4046' - 'c9ab698b523f0bec97462f6a948b1bd1' - '29cef68ad4ec2380ab4e731cb6d7aa55' - '878e8a2e9010e7f2f8285d7fe159c324' - '1fe1bdd0eab73b7380a72a7f803bf6a5' - '4fcbc7d321a5d233593a78150dd18f1e' - '706ba0aa5f27e3a7eb327e91d38d2419' - 'c3a828894acd6961f5f324a141ee37c3' - '8d1ccee2e1ebb515d6a20e5192168499' - '6fdcc7c1a624608e284000ad3526aaa8' - '39c18edb12a04849fd5bed795ac1559f' - 'b25714bb9a8686ab83291812f5922a72' - '0484bb8a9750e5bd99f332412d2473cc' - '777fc3c6dfa24138d95c41d1ce1d14b9' - 'd47833bbe4ba37c24c1c6d796e829581' - '8bed0e985e274d47bfc321165df07416' - '34382f666d44025751e4f6d7bfc84532' - '57248a792eaeb5ca5def21bbb3e45fcf' - 'a69d513999f3f50b8dcc1101354c99c4' - '47ba44a2df13e49cc4a07f3529e35497' - 'bde19859f08ff1051b823ae78265a2e7' - '1412ee3cf88155a42a5b534c96b02f97') +md5sums=('a4593936bf1c7a9ec9368ff249f9cc56' + 'de575fedef8fd6b811334d8b9c082479' + '36043f6b423fd8c0a378c2e5fcb3a3c1' + '306ef53afb18ffa3ec57feb0063ab433' + '9af26b5177f1b20cb682299345ad1a87' + '21d7586f0dcc740835c9d3a6e9cee397' + '94c11e19db72eea7a5630bbf6c4a992d' + '86f1a539a8f9af7ea81a63f11a882b70' + 'c62fdd3ce834337d43c4e59af3b87553' + '0678ff6935296e17e36c40b3fc17ac96' + '680ff4dbae9ce0b9f1bcd092169e6a34' + 'dc8e478e69b1ee22126cb6addc744fe5' + 'a513f4af7f608347225cd4180e89dee6' + '17d1e0cd0c7023461fc5dde7b97ee4b1' + 'c08f2cd5a29737b20ecc2f7c2892bd74' + '8ff5f9ea03c3fff51142df8c52626b22' + 'f8a42eb22e2192793a85112adb8e2278' + 'f1b221697547feff3e69889a9e9dd1b4' + '1c106f032476d2443b368e52d9e1bc69' + 'dbf5e2a01c84e18dc19ed9be5e12920b' + '9d6e6b497af88a0b5c44845adf275f9d' + 'aeb7f058aabd5d7d4e05f8e7917bd59b' + '4612bf235fdfd328e176b3e682e61072' + 'ebf5aefb15834234fbac6a4310b8f8ab' + '7591125ee445836f9e1247f5a7f6a474' + '410d090d68240f1f304ff94c4847817e' + '96a9dbd806a336936a4642ae95d12a26' + '4924dd568df7dc0428f3458758eadca1' + '62d46770f79074fc90ce4c1e4f5e5169' + 'c57d361eaa5d0fb90e872dd8f1d3fce1' + 'dbbba15f93f960c19bab63599b8f771c' + '0025e4609f5d1f72bf784f35d42934a9' + '638306adb405c506baa2728a00237d50' + '7ae2cbe9e2888b95a513eb8238e6e5d2' + '8b560d4ae6f62bb64d8fa8c1a62abe27' + '52bd4641b6066a2a0596c7b4f64b25c1' + '9293f6d596e7586c7955cc0d6d71dbbb' + 'a634db784e4bb6efda49e2508d58c96c' + 'ebf52ea0d70699f5d2651054b975dac2' + '6fbf98e9d4477d3355369bbf9c33c9aa' + 'a0c6cb16be15cdca746f52fe07af0ab8' + '934f4c14a9242228da3322bd844f001b' + '29df15b3dad1764cb236e1913adb6895' + '8f4bd42afb2b0042300b50dbd575ed76' + '9f1d8951c50f6dd133089824db8e811b' + 'df683c5a6b64226311f1158e1cfd7387' + 'ddf59c931fb1d11337dfb30796172222' + '3c69e0fa5c10427c9d95b26fecb73366' + 'fdf86cfbcf7e6084f01fda86b3907d68' + '4f602efbc5ee7dbcf315b7c00c5a9824' + '30012df56189ba8de7a2be3089ac7037' + '90660c135667807a35d5a424a14a03c7' + '39e8128c27e68f03db07ec9d3a4661f4' + '34c9463b7bd4000cb6c2178568ea5d57' + 'd6008349e2b26e11b4bf29d182236d15' + '1d51c2c91f10f459227a2c4e16e2cf52' + '59b1f8e007070d0ac598cc8782cc775d' + '23f7deb8fbbf8b74426299cf239e83bd' + '81ec70e9b9fdf887d00c9422d94803d0' + 'b4aea1741607118d5d128df88181c363' + '52dbb00c5e7adcdee972b2daf689401b' + 'a180a40f9651e8ca3ebdb3001fce6fa7' + 'fed061bc838b9eec2e1c187e64b93176' + '09b9eae4bdfbc1f7f4939f01a325bb40' + '337f7aaf9a2d7b94a9c33648a9734287' + '647abcd745c18a80e5187bc28b1b67b8' + 'b9c5f0043fe7c26e23ba42450afb57b6' + '6c9bb760adb3ae75ddb969c595649732' + '70917dca185cf1f150df72eb848b6315' + 'cc16dd7b22855338055429a3fd1a2367' + '236a36024c7660e7ec0ab2c7931b9ea0' + '471e98027910bcbfba3957df1e6a3c4a' + 'cea62f763650bb50e770055288e3bd7c' + '0f4abd8240ecc996fd434b0139a9996b' + 'cec783e074568d1c750ee88a2bbb003f' + '437d59dd764666147bfe5d27b0848b94' + 'f05ac803378d996351a277ebcc99e0e2' + '13ddcd0d7c10e381458d5563476d53c3' + 'f33a663b92b61fa02c28b881deae2376' + '4c4b58d49295b0b873f265ffa369a27d' + '67e54d3c0058263192700617500045e7' + '1022e9f23438b96df2f0dd054ff195b0' + '8274a6aafc5b097ab0659675d66b87c6') diff --git a/libre/iceweasel-l10n/brand.dtd b/libre/iceweasel-l10n/brand.dtd deleted file mode 100644 index 70f2bcb2e..000000000 --- a/libre/iceweasel-l10n/brand.dtd +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/libre/iceweasel-l10n/brand.properties b/libre/iceweasel-l10n/brand.properties deleted file mode 100644 index 53348f06b..000000000 --- a/libre/iceweasel-l10n/brand.properties +++ /dev/null @@ -1,3 +0,0 @@ -brandShortName=Iceweasel -brandFullName=Iceweasel -vendorShortName=Mozilla -- cgit v1.2.3-2-g168b From 73b247e9ab430031e3beb8c39c2a7fe161a81f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 06:36:58 -0200 Subject: iceweasel-l10n: remove blank spaces --- libre/iceweasel-l10n/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-l10n/PKGBUILD b/libre/iceweasel-l10n/PKGBUILD index fcd07a6ff..d4a786c68 100644 --- a/libre/iceweasel-l10n/PKGBUILD +++ b/libre/iceweasel-l10n/PKGBUILD @@ -46,14 +46,14 @@ prepare() { mv $_path/* . rm -r {control.tar.gz,data.tar.xz,debian-binary,etc,usr} rm -r *.deb - + for lang in ${_langpacks[@]}; do unzip -q langpack-$lang@iceweasel.mozilla.org.xpi -d $lang rm langpack-$lang@iceweasel.mozilla.org.xpi install -Dm644 $srcdir/region.properties $lang/browser/chrome/$lang/locale/browser-region cd $lang zip -q -r langpack-$lang@iceweasel.mozilla.org.xpi . - mv langpack-$lang@iceweasel.mozilla.org.xpi $srcdir + mv langpack-$lang@iceweasel.mozilla.org.xpi $srcdir cd .. rm -r $lang done -- cgit v1.2.3-2-g168b From d21e5be8cd85dee8253a5c1d446f2e30d1a26476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 06:39:11 -0200 Subject: icedove-l10n: prolixing PKGBUILD --- libre/icedove-l10n/PKGBUILD | 75 ++++++++++++++++++++------------------------- 1 file changed, 34 insertions(+), 41 deletions(-) (limited to 'libre') diff --git a/libre/icedove-l10n/PKGBUILD b/libre/icedove-l10n/PKGBUILD index fdf88e82d..70d3ebf5e 100644 --- a/libre/icedove-l10n/PKGBUILD +++ b/libre/icedove-l10n/PKGBUILD @@ -1,66 +1,59 @@ -# Maintainer: Márcio Silva # Maintainer: André Silva +# Maintainer: Márcio Silva + +_langpacks=(ar ast be bg bn-BD br ca cs da de el en-GB en-US es-AR es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW) pkgbase=icedove-l10n +pkgname=( + $(for lang in ${_langpacks[@]}; do + echo $pkgbase-$lang | tr A-Z a-z + done) +) epoch=1 _pkgver=24.2.0 pkgver=24.2.0.deb1 - -_langpacks=(ar ast be bg bn-BD br ca cs da de el en-GB en-US es-AR es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW) - -pkgname=($(for lang in ${_langpacks[@]} - do echo $pkgbase-$lang | tr A-Z a-z - done)) - pkgrel=1 + pkgdesc="Language packs for Debian Icedove." arch=('any') +_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$_pkgver/linux-i686/xpi url="http://packages.debian.org/sid/icedove" license=('MPL' 'GPL') depends=("icedove-libre>=$epoch:$pkgver") makedepends=('unzip' 'zip') -_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$_pkgver/linux-i686/xpi - source=('brand.dtd' 'brand.properties') -for lang in ${_langpacks[@]} -do - source+=("icedove-l10n-$_pkgver-$lang.xpi::$_url/$lang.xpi") +for lang in ${_langpacks[@]}; do + source+=("langpack-$lang@icedove.mozilla.org.xpi::$_url/$lang.xpi") done - -# Don't extract anything noextract=(${source[@]##*/}) -_path="/usr/lib/icedove/extensions/" +_path=usr/lib/icedove/extensions -build() { +prepare() { cd $srcdir - - for i in ${_langpacks[@]} - do - cd $srcdir - unzip -q icedove-l10n-$_pkgver-$i.xpi -d $i - rm icedove-l10n-$_pkgver-$i.xpi - install -Dm644 $srcdir/brand.dtd $i/chrome/$i/locale/$i/branding - install -Dm644 $srcdir/brand.properties $i/chrome/$i/locale/$i/branding - sed -i -e 's/thunderbird/icedove/' $i/install.rdf - cd $i - zip -q -r langpack-$i@icedove.mozilla.org.xpi . - mv langpack-$i@icedove.mozilla.org.xpi $srcdir + for lang in ${_langpacks[@]}; do + unzip -q langpack-$lang@icedove.mozilla.org.xpi -d $lang + rm langpack-$lang@icedove.mozilla.org.xpi + install -Dm644 $srcdir/brand.dtd $lang/chrome/$lang/locale/$lang/branding + install -Dm644 $srcdir/brand.properties $lang/chrome/$lang/locale/$lang/branding + sed -i -e 's/thunderbird/icedove/' $lang/install.rdf + cd $lang + zip -q -r langpack-$lang@icedove.mozilla.org.xpi . + mv langpack-$lang@icedove.mozilla.org.xpi $srcdir + cd .. + rm -r $lang done - - cd $srcdir } -for lang in ${_langpacks[@]} -do - eval " -package_icedove-l10n-$(echo $lang | tr A-Z a-z)() { - replaces=(thunderbird-i18n-$(echo $lang | tr A-Z a-z) icedove-i18n-$(echo $lang | tr A-Z a-z)) - conflicts=(thunderbird-i18n-$(echo $lang | tr A-Z a-z) icedove-i18n-$(echo $lang | tr A-Z a-z)) - provides=(thunderbird-i18n-$(echo $lang | tr A-Z a-z) icedove-i18n-$(echo $lang | tr A-Z a-z)) - install -Dm644 \"\$srcdir/langpack-$lang@icedove.mozilla.org.xpi\" \"\$pkgdir$_path/langpack-$lang@icedove.mozilla.org.xpi\" -} -" +for lang in ${_langpacks[@]}; do + eval " + package_icedove-l10n-$(echo $lang | tr A-Z a-z)() { + replaces=(thunderbird-i18n-$(echo $lang | tr A-Z a-z) icedove-i18n-$(echo $lang | tr A-Z a-z)) + conflicts=(thunderbird-i18n-$(echo $lang | tr A-Z a-z) icedove-i18n-$(echo $lang | tr A-Z a-z)) + provides=(thunderbird-i18n-$(echo $lang | tr A-Z a-z) icedove-i18n-$(echo $lang | tr A-Z a-z)) + install -Dm644 \"\$srcdir/langpack-$lang@icedove.mozilla.org.xpi\" \"\$pkgdir/$_path/langpack-$lang@icedove.mozilla.org.xpi\" + } + " done md5sums=('d5b2567a8cc8f64591f313a6efdaaffc' -- cgit v1.2.3-2-g168b From 885346446f87b46bcd6fd80223d8e0526709ee88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 06:41:05 -0200 Subject: iceweasel-l10n: remove another blank space --- libre/iceweasel-l10n/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/iceweasel-l10n/PKGBUILD b/libre/iceweasel-l10n/PKGBUILD index d4a786c68..944c70135 100644 --- a/libre/iceweasel-l10n/PKGBUILD +++ b/libre/iceweasel-l10n/PKGBUILD @@ -46,7 +46,7 @@ prepare() { mv $_path/* . rm -r {control.tar.gz,data.tar.xz,debian-binary,etc,usr} rm -r *.deb - + for lang in ${_langpacks[@]}; do unzip -q langpack-$lang@iceweasel.mozilla.org.xpi -d $lang rm langpack-$lang@iceweasel.mozilla.org.xpi -- cgit v1.2.3-2-g168b From be181c3f30b40a33a22eb166cb7feeabf69fa696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 14:34:10 -0200 Subject: linux-libre-lts-3.10.29-1: updating version --- ...rect-invalid-use-of-user-timespec-in-the-.patch | 80 ---------------------- libre/linux-libre-lts/PKGBUILD | 13 ++-- 2 files changed, 4 insertions(+), 89 deletions(-) delete mode 100644 libre/linux-libre-lts/0001-x86-x32-Correct-invalid-use-of-user-timespec-in-the-.patch (limited to 'libre') diff --git a/libre/linux-libre-lts/0001-x86-x32-Correct-invalid-use-of-user-timespec-in-the-.patch b/libre/linux-libre-lts/0001-x86-x32-Correct-invalid-use-of-user-timespec-in-the-.patch deleted file mode 100644 index 3f1bccc80..000000000 --- a/libre/linux-libre-lts/0001-x86-x32-Correct-invalid-use-of-user-timespec-in-the-.patch +++ /dev/null @@ -1,80 +0,0 @@ -From 2def2ef2ae5f3990aabdbe8a755911902707d268 Mon Sep 17 00:00:00 2001 -From: PaX Team -Date: Thu, 30 Jan 2014 16:59:25 -0800 -Subject: [PATCH] x86, x32: Correct invalid use of user timespec in the kernel - -The x32 case for the recvmsg() timout handling is broken: - - asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg, - unsigned int vlen, unsigned int flags, - struct compat_timespec __user *timeout) - { - int datagrams; - struct timespec ktspec; - - if (flags & MSG_CMSG_COMPAT) - return -EINVAL; - - if (COMPAT_USE_64BIT_TIME) - return __sys_recvmmsg(fd, (struct mmsghdr __user *)mmsg, vlen, - flags | MSG_CMSG_COMPAT, - (struct timespec *) timeout); - ... - -The timeout pointer parameter is provided by userland (hence the __user -annotation) but for x32 syscalls it's simply cast to a kernel pointer -and is passed to __sys_recvmmsg which will eventually directly -dereference it for both reading and writing. Other callers to -__sys_recvmmsg properly copy from userland to the kernel first. - -The bug was introduced by commit ee4fa23c4bfc ("compat: Use -COMPAT_USE_64BIT_TIME in net/compat.c") and should affect all kernels -since 3.4 (and perhaps vendor kernels if they backported x32 support -along with this code). - -Note that CONFIG_X86_X32_ABI gets enabled at build time and only if -CONFIG_X86_X32 is enabled and ld can build x32 executables. - -Other uses of COMPAT_USE_64BIT_TIME seem fine. - -This addresses CVE-2014-0038. - -Signed-off-by: PaX Team -Signed-off-by: H. Peter Anvin -Cc: # v3.4+ -Signed-off-by: Linus Torvalds ---- - net/compat.c | 9 ++------- - 1 file changed, 2 insertions(+), 7 deletions(-) - -diff --git a/net/compat.c b/net/compat.c -index dd32e34..f50161f 100644 ---- a/net/compat.c -+++ b/net/compat.c -@@ -780,21 +780,16 @@ asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg, - if (flags & MSG_CMSG_COMPAT) - return -EINVAL; - -- if (COMPAT_USE_64BIT_TIME) -- return __sys_recvmmsg(fd, (struct mmsghdr __user *)mmsg, vlen, -- flags | MSG_CMSG_COMPAT, -- (struct timespec *) timeout); -- - if (timeout == NULL) - return __sys_recvmmsg(fd, (struct mmsghdr __user *)mmsg, vlen, - flags | MSG_CMSG_COMPAT, NULL); - -- if (get_compat_timespec(&ktspec, timeout)) -+ if (compat_get_timespec(&ktspec, timeout)) - return -EFAULT; - - datagrams = __sys_recvmmsg(fd, (struct mmsghdr __user *)mmsg, vlen, - flags | MSG_CMSG_COMPAT, &ktspec); -- if (datagrams > 0 && put_compat_timespec(&ktspec, timeout)) -+ if (datagrams > 0 && compat_put_timespec(&ktspec, timeout)) - datagrams = -EFAULT; - - return datagrams; --- -1.8.5.3 - diff --git a/libre/linux-libre-lts/PKGBUILD b/libre/linux-libre-lts/PKGBUILD index e2da7fff9..e9a5a667a 100644 --- a/libre/linux-libre-lts/PKGBUILD +++ b/libre/linux-libre-lts/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 204934 2014-01-31 16:13:52Z bpiotrowski $ +# $Id: PKGBUILD 205544 2014-02-06 22:42:03Z bpiotrowski $ # Maintainer: Tobias Powalowski # Maintainer: Thomas Baechler # Maintainer (Parabola): André Silva @@ -10,9 +10,9 @@ pkgbase=linux-libre-lts # Build stock -LIBRE-LTS kernel #pkgbase=linux-libre-custom # Build kernel with a different name _basekernel=3.10 -_sublevel=28 +_sublevel=29 pkgver=${_basekernel}.${_sublevel} -pkgrel=1.1 +pkgrel=1 _lxopkgver=${_basekernel}.28 # nearly always the same as pkgver arch=('i686' 'x86_64' 'mips64el') url="http://linux-libre.fsfla.org/" @@ -30,10 +30,9 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gn 'boot-logo.patch' 'change-default-console-loglevel.patch' 'criu-no-expert.patch' - '0001-x86-x32-Correct-invalid-use-of-user-timespec-in-the-.patch' "http://www.linux-libre.fsfla.org/pub/linux-libre/lemote/gnewsense/pool/debuginfo/linux-patches-${_lxopkgver}-gnu_0loongsonlibre_mipsel.tar.xz") md5sums=('d562fd52580a3b6b18b6eeb5921d1d5c' - '1eeedf694bd64b34a031ac27549bc7a3' + '13df9c49d6fbac852959f517fc0c1036' '85ce008eaacbb2fc54b81116d35cf946' '16867e648e4b9f89bec949cb643888c2' 'c072b17032e80debc6a8626299245d46' @@ -42,7 +41,6 @@ md5sums=('d562fd52580a3b6b18b6eeb5921d1d5c' '04b21c79df0a952c22d681dd4f4562df' 'f3def2cefdcbb954c21d8505d23cc83c' 'd50c1ac47394e9aec637002ef3392bd1' - '336d2c4afd7ee5f2bdf0dcb1a54df4b2' 'cec0d90f5d3fae8752b0020c6b785954') if [ "$CARCH" != "mips64el" ]; then # don't use the Loongson-specific patches on non-mips64el arches. @@ -75,9 +73,6 @@ prepare() { # patch from fedora patch -Np1 -i "${srcdir}/criu-no-expert.patch" - # CVE-2014-0038 - patch -Np1 -i "${srcdir}/0001-x86-x32-Correct-invalid-use-of-user-timespec-in-the-.patch" - if [ "$CARCH" == "mips64el" ]; then sed -i "s|^EXTRAVERSION.*|EXTRAVERSION =-libre-lts|" Makefile sed -r "s|^( SUBLEVEL = ).*|\1$_sublevel|" \ -- cgit v1.2.3-2-g168b From e6640cc7aa5f7fc46656cde74a5f4c2d4c412d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 14:41:55 -0200 Subject: calibre-libre-1.23.0-1: updating version --- libre/calibre-libre/PKGBUILD | 20 ++++++++++---------- libre/calibre-libre/desktop_integration.patch | 21 +++++++++++---------- 2 files changed, 21 insertions(+), 20 deletions(-) (limited to 'libre') diff --git a/libre/calibre-libre/PKGBUILD b/libre/calibre-libre/PKGBUILD index f0c72bea1..2527df801 100644 --- a/libre/calibre-libre/PKGBUILD +++ b/libre/calibre-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105072 2014-01-31 08:04:51Z jelle $ +# $Id: PKGBUILD 105453 2014-02-08 12:20:57Z jelle $ # Maintainer: jelle van der Waa # Maintainer: Daniel Wallace # Contributor: Giovanni Scafora @@ -9,7 +9,7 @@ _pkgname=calibre pkgname=calibre-libre -pkgver=1.22.0 +pkgver=1.23.0 pkgrel=1 pkgdesc="Ebook management application, with unar support" arch=('i686' 'x86_64' 'mips64el') @@ -30,18 +30,18 @@ install=calibre.install source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz" 'desktop_integration.patch' 'calibre-mount-helper') -md5sums=('51449736b887469a7dfd70d3fae68912' - '95ca4eb3afa7c737c8371708a23bdad9' +md5sums=('3146ce3cdcc0e626ee7f9b8f0bb1be13' + '8e1855ce1ae254c34d12ddbc358b7a36' '675cd87d41342119827ef706055491e7') prepare(){ -cd "${srcdir}/${_pkgname}" -#rm -rf src/{cherrypy,pyPdf} -rm -rf src/cherrypy -rm -rf resources/${pkgname}-portable.* -sed -i -e "s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) + ['-fPIC']/" setup/extensions.py + cd "${srcdir}/${_pkgname}" + #rm -rf src/{cherrypy,pyPdf} + rm -rf src/cherrypy + rm -rf resources/${pkgname}-portable.* + sed -i -e "s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) + ['-fPIC']/" setup/extensions.py -# Fix for calibre-0.8.58 + # Fix for calibre-0.8.58 sed -i -e "s:#!usr:#!/usr:g" src/calibre/ebooks/markdown/extensions/meta.py sed -i -e 's:\(#!/usr/bin/env[ ]\+python$\|#![ ]/usr/bin/env[ ]\+python$\|#!/usr/bin/python$\):\12:g' \ diff --git a/libre/calibre-libre/desktop_integration.patch b/libre/calibre-libre/desktop_integration.patch index 9b20820e6..da3c7a52e 100644 --- a/libre/calibre-libre/desktop_integration.patch +++ b/libre/calibre-libre/desktop_integration.patch @@ -1,6 +1,6 @@ diff -aur calibre/src/calibre/linux.py calibre.new/src/calibre/linux.py ---- calibre/src/calibre/linux.py 2013-12-13 03:47:23.000000000 +0100 -+++ calibre.new/src/calibre/linux.py 2013-12-17 20:11:58.319040313 +0100 +--- calibre/src/calibre/linux.py 2014-02-07 04:19:59.000000000 +0100 ++++ calibre.new/src/calibre/linux.py 2014-02-08 13:07:09.925693077 +0100 @@ -451,18 +451,6 @@ self.setup_completion() if islinux or isbsd: @@ -29,7 +29,7 @@ diff -aur calibre/src/calibre/linux.py calibre.new/src/calibre/linux.py if not os.path.exists(os.path.dirname(f)): os.makedirs(os.path.dirname(f)) if zsh.dest: -@@ -657,71 +645,45 @@ +@@ -657,56 +645,37 @@ with TemporaryDirectory() as tdir, CurrentDir(tdir), \ PreserveMIMEDefaults(): @@ -99,12 +99,17 @@ diff -aur calibre/src/calibre/linux.py calibre.new/src/calibre/linux.py f.write(GUI) write_mimetypes(f) f.close() -- des = ('calibre-gui.desktop', 'calibre-lrfviewer.desktop', -- 'calibre-ebook-viewer.desktop', 'calibre-ebook-edit.desktop') +@@ -725,15 +694,9 @@ + translators = dict(get_all_translators()) + + APPDATA = get_appdata() - for x in des: - cmd = ['xdg-desktop-menu', 'install', '--noupdate', './'+x] - cc(' '.join(cmd), shell=True) - self.menu_resources.append(x) +- ak = x.partition('.')[0] +- if ak in APPDATA and os.access(appdata, os.W_OK): +- write_appdata(ak, APPDATA[ak], appdata, translators) - cc(['xdg-desktop-menu', 'forceupdate']) - f = open('calibre-mimetypes.xml', 'wb') + dir = os.path.join(self.opts.staging_sharedir,'../mime/packages/') @@ -112,8 +117,4 @@ diff -aur calibre/src/calibre/linux.py calibre.new/src/calibre/linux.py + f = open(os.path.join(dir, 'calibre.xml'), 'wb') f.write(MIME) f.close() -- self.mime_resources.append('calibre-mimetypes.xml') -- cc('xdg-mime install ./calibre-mimetypes.xml', shell=True) - except Exception: - if self.opts.fatal_errors: - raise + self.mime_resources.append('calibre-mimetypes.xml') -- cgit v1.2.3-2-g168b From 1110e01c9539b975b6447ebe66d85be3959143f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 15:28:08 -0200 Subject: iceweasel-libre-1:27.0.deb2-1: update coadde's info --- libre/iceweasel-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD index d6f31d065..5c6313e9e 100644 --- a/libre/iceweasel-libre/PKGBUILD +++ b/libre/iceweasel-libre/PKGBUILD @@ -1,11 +1,11 @@ # Maintainer (Parabola): André Silva -# Maintainer (Parabola): Márcio Silva +# Contributor (Parabola): Márcio Silva # Contributor (ConnochaetOS): Henry Jensen # Contributor (Parabola): Luke Shumaker -# Contributor: Figue # Contributor (Parabola): fauno # Contributor (Parabola): vando # Contributor (Arch): Jakub Schmidtke +# Contributor: Figue # Thank you very much to the older contributors: # Contributor: evr # Contributor: Muhammad 'MJ' Jassim -- cgit v1.2.3-2-g168b From c6081658c1158471d4ce8b7927ce2555aa5de2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 15:29:37 -0200 Subject: iceweasel-l10n-1:27.0.deb2-1: update coadde's info --- libre/iceweasel-l10n/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/iceweasel-l10n/PKGBUILD b/libre/iceweasel-l10n/PKGBUILD index 944c70135..1eb6bb91d 100644 --- a/libre/iceweasel-l10n/PKGBUILD +++ b/libre/iceweasel-l10n/PKGBUILD @@ -1,5 +1,5 @@ # Maintainer: André Silva -# Maintainer: Márcio Silva +# Contributor: Márcio Silva # Contributor: Luke Shumaker # Contributor: fauno # Contributor: Figue -- cgit v1.2.3-2-g168b From 4c58a0104cd4608b0423d73c5ca6c1291997c2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 15:39:20 -0200 Subject: icedove-libre{,-nonprism}: update coadde's info --- libre/icedove-libre/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 4ccae67d7..19c6cd90f 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -1,5 +1,5 @@ -# Maintainer : Márcio Silva # Maintainer : André Silva +# Contributor : Márcio Silva # We're getting this from Debian Sid _debname=icedove -- cgit v1.2.3-2-g168b From c6c1d1c5901bffa0ff75d8f4d085348ab8fe03fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 15:39:49 -0200 Subject: icedove-l10n: update coadde's info --- libre/icedove-l10n/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/icedove-l10n/PKGBUILD b/libre/icedove-l10n/PKGBUILD index 70d3ebf5e..409f39b86 100644 --- a/libre/icedove-l10n/PKGBUILD +++ b/libre/icedove-l10n/PKGBUILD @@ -1,5 +1,5 @@ # Maintainer: André Silva -# Maintainer: Márcio Silva +# Contributor: Márcio Silva _langpacks=(ar ast be bg bn-BD br ca cs da de el en-GB en-US es-AR es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW) -- cgit v1.2.3-2-g168b From a563eee81e9abd42251117d8cd74738e23e0fe70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 8 Feb 2014 18:38:08 -0200 Subject: tp_smapi-libre-lts-0.41-24: rebuild against linux-libre-lts-3.10.29-1 --- libre/tp_smapi-libre-lts/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/tp_smapi-libre-lts/PKGBUILD b/libre/tp_smapi-libre-lts/PKGBUILD index de5c899c6..2a4a1a023 100644 --- a/libre/tp_smapi-libre-lts/PKGBUILD +++ b/libre/tp_smapi-libre-lts/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104131 2014-01-16 08:33:59Z bpiotrowski $ +# $Id: PKGBUILD 105407 2014-02-06 23:12:06Z bpiotrowski $ # Maintainer: Lukas Fleischer # Contributor: xduugu # Contributor: nh2 @@ -13,7 +13,7 @@ pkgname=tp_smapi-libre-lts _pkgname=tp_smapi _extramodules=/usr/lib/modules/extramodules-3.10-LIBRE-LTS pkgver=0.41 -pkgrel=23 +pkgrel=24 pkgdesc="Modules for ThinkPad's SMAPI functionality (built for the linux-libre-lts kernel package)" arch=('i686' 'x86_64' 'mips64el') url='https://github.com/evgeni/tp_smapi' -- cgit v1.2.3-2-g168b From ff634ed6c0a2a32b2b10c8500a98cd0117d1f41d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sun, 9 Feb 2014 20:35:46 -0200 Subject: netsurf-libre-3.0-7: possible fix for FS#38688 => https://bugs.archlinux.org/task/38688 --- libre/netsurf-libre/PKGBUILD | 12 +++++------- libre/netsurf-libre/netsurf.install | 1 - libre/netsurf-libre/netsurf.sh | 2 +- 3 files changed, 6 insertions(+), 9 deletions(-) (limited to 'libre') diff --git a/libre/netsurf-libre/PKGBUILD b/libre/netsurf-libre/PKGBUILD index f3ade8253..6d028e732 100644 --- a/libre/netsurf-libre/PKGBUILD +++ b/libre/netsurf-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105206 2014-02-02 19:14:41Z heftig $ +# $Id: PKGBUILD 105500 2014-02-09 11:01:04Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Paulo Matias # Contributor: Georgij Kondratjev @@ -8,7 +8,7 @@ _pkgname=netsurf pkgname=netsurf-libre pkgver=3.0 -pkgrel=6 +pkgrel=7 pkgdesc='Lightweight and fast web browser, without non-privacy search providers' arch=('x86_64' 'i686' 'mips64el') url='http://www.netsurf-browser.org/' @@ -24,7 +24,7 @@ source=("netsurf.png::http://ubuntu.allmyapps.com/data/n/e/netsurf-netsurf-web-b 'netsurf.sh') sha256sums=('f0dbcc5d80bf03d706aa8b28a322aa7f169a40813848c2d1505691f6e2c7ef00' '7c6a48d3cc3e9a3e3a51b532ddf60f7697e97bf8b61a6d3b2ced1a2e89fbccc6' - '3efaf14b95c9aeb83caac488135bd5b6040d2ede382caa5589ff7ebd2bd506cc') + '7aef20cc7b2e2e7225237f2f94b5a0074caeb8ec07075c58429b0345ca566f8d') prepare() { cd "$_pkgname-$pkgver" @@ -96,7 +96,7 @@ prepare() { addinclude image/mng.c stdio addinclude image/png.c stdio - gendesk --pkgname "$_pkgname" --pkgdesc "$pkgdesc" --exec 'netsurf %U' \ + gendesk -f --pkgname "$_pkgname" --pkgdesc "$pkgdesc" --exec 'netsurf %U' \ --genericname 'Web Browser' --comment 'Lightweight web browser' \ --mimetypes 'text/html;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/geo' } @@ -108,9 +108,7 @@ build() { PREFIX=/usr \ TARGET=gtk \ NETSURF_USE_WEBP=YES \ - NETSURF_USE_VIDEO=NO \ - NETSURF_USE_MOZILLA_JS=YES \ - NETSURF_USE_HARU_PDF=NO + NETSURF_USE_VIDEO=NO } package() { diff --git a/libre/netsurf-libre/netsurf.install b/libre/netsurf-libre/netsurf.install index 98f3ea190..ad97d7bab 100644 --- a/libre/netsurf-libre/netsurf.install +++ b/libre/netsurf-libre/netsurf.install @@ -1,5 +1,4 @@ post_upgrade() { - #gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor update-desktop-database -q } diff --git a/libre/netsurf-libre/netsurf.sh b/libre/netsurf-libre/netsurf.sh index 49b1e161e..b74f388af 100644 --- a/libre/netsurf-libre/netsurf.sh +++ b/libre/netsurf-libre/netsurf.sh @@ -3,5 +3,5 @@ shortname=`echo $LANG | cut -b1-2` if [[ -d /usr/share/netsurf/$shortname ]]; then /usr/bin/netsurf.elf "$@" else - LANG=en_US /usr/bin/netsurf.elf "$@" + LANG=en /usr/bin/netsurf.elf "$@" fi -- cgit v1.2.3-2-g168b From 402287336ca8b45bed9facea19ab6411d1ecdedc Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 9 Feb 2014 21:03:09 -0500 Subject: update libre/libretools --- libre/libretools/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index 98602a1c5..53e9afb22 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -9,10 +9,10 @@ pkgdesc="Programs for Parabola development" url="https://projects.parabolagnulinux.org/packages/libretools.git/" license=('GPL3' 'GPL2') -pkgver=20140206 -_libretools_commit=93276b1059c6bce3aa6e400f70160b8b89cab007 +pkgver=20140210 +_libretools_commit=696c05516039b7b93381811451d393b16a8653d1 _devtools_commit=534d2015b45e013b37e1edbb997bd4df27d7b8fd -md5sums=('317e997ae93f562dc18b7979981620f0' +md5sums=('e5e6e2a939850c4ce6695e3ee10e71f4' 'ec69dffa68829f063224de19bbd55fa9') _packages_url=https://projects.parabolagnulinux.org/packages -- cgit v1.2.3-2-g168b From f5b103e93201b6567191e73c1562fd3958e9e6d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 10 Feb 2014 16:53:05 -0200 Subject: gst-plugins-bad-libre-1.2.3-1: updating version --- libre/gst-plugins-bad-libre/PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/gst-plugins-bad-libre/PKGBUILD b/libre/gst-plugins-bad-libre/PKGBUILD index 5fa80012e..8cf3ce164 100644 --- a/libre/gst-plugins-bad-libre/PKGBUILD +++ b/libre/gst-plugins-bad-libre/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 204986 2014-02-02 19:01:22Z heftig $ +# $Id: PKGBUILD 205811 2014-02-10 13:07:22Z heftig $ # Maintainer: Jan de Groot # Maintainer (Parabola): Márcio Silva _pkgname=gst-plugins-bad pkgname=$_pkgname-libre -pkgver=1.2.2 -pkgrel=3 +pkgver=1.2.3 +pkgrel=1 pkgdesc="GStreamer Multimedia Framework Bad Plugins, without nonfree faac support" arch=('i686' 'x86_64' 'mips64el') license=('LGPL') @@ -18,7 +18,7 @@ conflicts=$_pkgname replaces=$_pkgname options=(!emptydirs) source=(${url}/src/$_pkgname/$_pkgname-$pkgver.tar.xz) -sha256sums=('63e78db11b482d0529a0bde01e2ac23fd32c7cb99a5508b53ee4ca1051871b2c') +sha256sums=('595d7911a9e6207dea37200587724bdbf841b81a5eb0730118be36976684278c') build() { cd $_pkgname-$pkgver -- cgit v1.2.3-2-g168b From 6b2bd9c8ac3123496015a927d25595640a9f42f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 10 Feb 2014 17:10:06 -0200 Subject: kde packages: updating libre and nonprism packages to 4.12.2 version --- libre/kdebase-konqueror-libre/PKGBUILD | 6 +++--- libre/kdebase-runtime-libre/PKGBUILD | 8 ++++---- libre/kdelibs-libre/PKGBUILD | 6 +++--- libre/kdenetwork-kopete-libre/PKGBUILD | 6 +++--- libre/kdepim-libre/PKGBUILD | 6 +++--- libre/kdeutils-ark-libre/PKGBUILD | 6 +++--- 6 files changed, 19 insertions(+), 19 deletions(-) (limited to 'libre') diff --git a/libre/kdebase-konqueror-libre/PKGBUILD b/libre/kdebase-konqueror-libre/PKGBUILD index 9020ef239..e7578c381 100644 --- a/libre/kdebase-konqueror-libre/PKGBUILD +++ b/libre/kdebase-konqueror-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 203722 2014-01-14 07:36:58Z svenstaro $ +# $Id: PKGBUILD 205134 2014-02-04 13:52:45Z svenstaro $ # Maintainer: Andrea Scarpino # Contributor: Pierre Schmitz # Maintainer (Parabola): Michał Masłowski @@ -6,7 +6,7 @@ _pkgname='kdebase-konqueror' pkgname='kdebase-konqueror-libre' -pkgver=4.12.1 +pkgver=4.12.2 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url="http://kde.org/applications/internet/konqueror/" @@ -15,7 +15,7 @@ groups=('kde' 'kdebase') makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml' 'nepomuk-widgets') source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz" 'konq-about-fsdg.diff') -sha1sums=('a08013c4f3e7221e597f98c310c323e40e03d280' +sha1sums=('7002c8d1a8f4fb1735ad70b8cb1a106876323f94' 'd6cbb53c04179b8180f9439eca156b7ff2e76b3a') pkgdesc='KDE File Manager & Web Browser, without Google and nonfree software recommendation' depends=('kdebase-dolphin' 'kdebase-keditbookmarks') diff --git a/libre/kdebase-runtime-libre/PKGBUILD b/libre/kdebase-runtime-libre/PKGBUILD index 970410df1..369ec746f 100644 --- a/libre/kdebase-runtime-libre/PKGBUILD +++ b/libre/kdebase-runtime-libre/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 204995 2014-02-02 20:35:28Z heftig $ +# $Id: PKGBUILD 205106 2014-02-04 13:51:12Z svenstaro $ # Maintainer: Andrea Scarpino # Contributor: Pierre Schmitz # Maintainer (Parabola): André Silva _pkgname=kdebase-runtime pkgname=kdebase-runtime-libre -pkgver=4.12.1 -pkgrel=3 +pkgver=4.12.2 +pkgrel=1 pkgdesc="Plugins and applications necessary for the running of KDE applications, without non-privacy search providers" arch=('i686' 'x86_64' 'mips64el') url='https://projects.kde.org/projects/kde/kde-runtime' @@ -26,7 +26,7 @@ install="${_pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz" 'duckduckgo_html.desktop' 'duckduckgo_lite.desktop') -sha1sums=('e62d0b6a8fea172ac4b36a16004f10161406872a' +sha1sums=('935dd93d1a705de6b11dc489a56dfb40827b2046' 'aa6f39f4b0ad3c110fd05cd6c41190afae9773dd' 'ac3bac94a2c4b1444642524bc5fb539c4c5dcc5b') diff --git a/libre/kdelibs-libre/PKGBUILD b/libre/kdelibs-libre/PKGBUILD index 7204da87d..c1936476d 100644 --- a/libre/kdelibs-libre/PKGBUILD +++ b/libre/kdelibs-libre/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 203682 2014-01-14 07:33:57Z svenstaro $ +# $Id: PKGBUILD 205088 2014-02-04 13:47:15Z svenstaro $ # Maintainer: Andrea Scarpino # Maintainer (Parabola): André Silva _pkgname=kdelibs pkgname=kdelibs-libre -pkgver=4.12.1 +pkgver=4.12.2 pkgrel=1 pkgdesc="KDE Core Libraries, without nonfree plugins recommendation support" arch=('i686' 'x86_64' 'mips64el') @@ -24,7 +24,7 @@ install=${_pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz" 'kde-applications-menu.patch' 'qt4.patch' 'khtml-fsdg.diff') -sha1sums=('b6c1b22a0fc3c9789d29ffef4d24b41afdf357bb' +sha1sums=('05e324af3752953ca637c2a51d989155f9f6bb8a' '86ee8c8660f19de8141ac99cd6943964d97a1ed7' 'ed1f57ee661e5c7440efcaba7e51d2554709701c' 'a1502a964081ad583a00cf90c56e74bf60121830') diff --git a/libre/kdenetwork-kopete-libre/PKGBUILD b/libre/kdenetwork-kopete-libre/PKGBUILD index 4bb85b87c..2f33f98e9 100644 --- a/libre/kdenetwork-kopete-libre/PKGBUILD +++ b/libre/kdenetwork-kopete-libre/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 203932 2014-01-14 07:49:31Z svenstaro $ +# $Id: PKGBUILD 205344 2014-02-04 14:04:24Z svenstaro $ # Maintainer: Andrea Scarpino # Maintainer (Parabola): André Silva _pkgname=kdenetwork-kopete pkgname=kdenetwork-kopete-libre -pkgver=4.12.1 +pkgver=4.12.2 pkgrel=1 pkgdesc='Instant Messenger, without Skype support' url='http://kde.org/applications/internet/kopete/' @@ -19,7 +19,7 @@ replaces=$_pkgname conflicts=$_pkgname provides=$_pkgname=$pkgver source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz") -sha1sums=('e6ad13cb81842961df0e6e9ecda309b47db0af29') +sha1sums=('6b5ebab916f4527157cf7f979724538f38052bad') prepare() { cd kopete-${pkgver} diff --git a/libre/kdepim-libre/PKGBUILD b/libre/kdepim-libre/PKGBUILD index 911b45170..be15c03fb 100644 --- a/libre/kdepim-libre/PKGBUILD +++ b/libre/kdepim-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 203942 2014-01-14 07:50:06Z svenstaro $ +# $Id: PKGBUILD 205354 2014-02-04 14:04:58Z svenstaro $ # Maintainer: Andrea Scarpino # Contributor: Pierre Schmitz # Maintainer (Parabola): André Silva @@ -22,7 +22,7 @@ pkgname=('kdepim-akonadiconsole-libre' 'kdepim-ktimetracker-libre' 'kdepim-ktnef-libre' 'kdepim-libkdepim-libre') -pkgver=4.12.1 +pkgver=4.12.2 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url='http://pim.kde.org' @@ -31,7 +31,7 @@ groups=('kde' 'kdepim-libre') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'nepomuk-widgets' 'link-grammar') source=("http://download.kde.org/stable/${pkgver}/src/${_pkgbase}-${pkgver}.tar.xz") -sha1sums=('6ea8fb59a725885801460adc492ee53ab4676d59') +sha1sums=('c1e5f3284ab23233632ae27edb85f80588bb7e86') build() { mkdir build diff --git a/libre/kdeutils-ark-libre/PKGBUILD b/libre/kdeutils-ark-libre/PKGBUILD index f3bd7ec31..b7a3d7047 100644 --- a/libre/kdeutils-ark-libre/PKGBUILD +++ b/libre/kdeutils-ark-libre/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 203980 2014-01-14 07:52:36Z svenstaro $ +# $Id: PKGBUILD 205392 2014-02-04 14:07:41Z svenstaro $ # Maintainer: Andrea Scarpino # Maintainer (Parabola): André Silva _pkgname=kdeutils-ark pkgname=kdeutils-ark-libre -pkgver=4.12.1 +pkgver=4.12.2 pkgrel=1 pkgdesc='Archiving Tool, with unar support' url='http://kde.org/applications/utilities/ark/' @@ -20,7 +20,7 @@ replaces=('kdeutils-ark') conflicts=('kdeutils-ark') source=("http://download.kde.org/stable/${pkgver}/src/ark-${pkgver}.tar.xz" 'ark-unar-06.patch') -sha1sums=('788e43ec97e9c3c60ce494c784ed41c298a7c8fd' +sha1sums=('ab99d0b78536f187566e1f0a602f41551bbf0f29' 'a0a836950f185d9b2245204579f969203036fdec') build() { -- cgit v1.2.3-2-g168b From 7f7aa8173a2f1735fa56e402e57b56a8132074b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 10 Feb 2014 17:58:48 -0200 Subject: linux-libre-api-headers-3.13.2-1: updating version --- libre/linux-libre-api-headers/PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libre') diff --git a/libre/linux-libre-api-headers/PKGBUILD b/libre/linux-libre-api-headers/PKGBUILD index 0517b685e..087a0cae8 100644 --- a/libre/linux-libre-api-headers/PKGBUILD +++ b/libre/linux-libre-api-headers/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 201421 2013-12-11 13:48:25Z allan $ +# $Id: PKGBUILD 205569 2014-02-07 22:36:57Z allan $ # Maintainer: Allan McRae # Maintainer (Parabola): André Silva # toolchain build order: linux-libre-api-headers->glibc->binutils->gcc->binutils->glibc pkgname=linux-libre-api-headers -_basekernel=3.12 -_sublevel=4 +_basekernel=3.13 +_sublevel=2 pkgver=${_basekernel}.${_sublevel} pkgrel=1 pkgdesc="Kernel headers sanitized for use in userspace" @@ -18,14 +18,14 @@ conflicts=('linux-api-headers') replaces=('linux-api-headers') source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gnu/linux-libre-${_basekernel}-gnu.tar.xz" "http://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver}-gnu/patch-${_basekernel}-gnu-${pkgver}-gnu.xz") -md5sums=('254f59707b6676b59ce5ca5c3c698319' - 'ba123db2fbc72133d6292ca9aba51dd4') +md5sums=('98a8e803e0ed08557f3cdd4d56b0ddc1' + '5594978ab8b62033274cf36305baf238') build() { cd ${srcdir}/linux-${_basekernel} if [ "${_basekernel}" != "${pkgver}" ]; then - patch -Np1 -i "${srcdir}/patch-${_basekernel}-gnu-${pkgver}-gnu" + patch -p1 -i "${srcdir}/patch-${_basekernel}-gnu-${pkgver}-gnu" fi make mrproper -- cgit v1.2.3-2-g168b From 4ca31e596c57b8104069e2cf3af3409ca379f9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 12 Feb 2014 12:57:07 -0200 Subject: ecasound-libre-2.9.1-2: liblo rebuild --- libre/ecasound-libre/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/ecasound-libre/PKGBUILD b/libre/ecasound-libre/PKGBUILD index 3dc82648c..4c2586f5d 100644 --- a/libre/ecasound-libre/PKGBUILD +++ b/libre/ecasound-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 204375 2014-01-18 15:02:17Z schiv $ +# $Id: PKGBUILD 205044 2014-02-03 17:11:21Z schiv $ # Maintainer: Ray Rashif # Contributor: Eric Belanger # Contributor: Tom Newsom @@ -7,12 +7,12 @@ _pkgname=ecasound pkgname=ecasound-libre pkgver=2.9.1 -pkgrel=1 +pkgrel=2 pkgdesc="Command-line multitrack audio processor, without nonfree faac recommendation" arch=('i686' 'x86_64') url="http://www.eca.cx/ecasound/" license=('GPL' 'LGPL') -depends=('audiofile' 'liblo' 'liboil' 'lilv') +depends=('audiofile' 'liblo>=0.28' 'liboil' 'lilv') makedepends=('python2' 'ruby') optdepends=('python2: ecamonitor, ECI API' 'ruby: ECI API' -- cgit v1.2.3-2-g168b From 9c65eca6f344b4ef7ff4567839f69f7b039f4ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 12 Feb 2014 14:52:52 -0200 Subject: icedove-libre-1:24.3.0.deb1-1: updating version --- libre/icedove-libre/PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 19c6cd90f..15c8a1fe5 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -3,7 +3,7 @@ # We're getting this from Debian Sid _debname=icedove -_debver=24.2.0 +_debver=24.3.0 _debrel=deb1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -25,13 +25,13 @@ conflicts=('thunderbird') provides=('thunderbird') install=${_pkgname}.install source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.xz" - "${_debrepo}/`debfile ${_debname}`_${_debver}-${_debrel#deb}.debian.tar.gz" + "${_debrepo}/`debfile ${_debname}`_${_debver}-${_debrel#deb}.debian.tar.xz" mozconfig vendor.js ${_pkgname}.desktop) options=(!emptydirs) -md5sums=('338c4b16319623ea27fe6e33ea81335e' - '5cbf20f07c44dfe5cffdf609785f2803' +md5sums=('cbf58e11a8eb1ded01167fa927ce9cc0' + 'a8ef513d211c60bd2e77810c10a3c25c' 'c46cf2a671c8fdefcabd4c87e38f3d40' '5a53179d14ae9631b7afe5e4d0fc0b25' 'e785e0c267f4435ae1a9aa0b03bcacfb') -- cgit v1.2.3-2-g168b From 5e885a7fe2dee3b1ff1ce6644cd591a567a8a1d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 12 Feb 2014 14:58:50 -0200 Subject: icedove-l10n-1:24.3.0.deb1-1: updating version --- libre/icedove-l10n/PKGBUILD | 120 ++++++++++++++++++++++---------------------- 1 file changed, 60 insertions(+), 60 deletions(-) (limited to 'libre') diff --git a/libre/icedove-l10n/PKGBUILD b/libre/icedove-l10n/PKGBUILD index 409f39b86..92b0cfff0 100644 --- a/libre/icedove-l10n/PKGBUILD +++ b/libre/icedove-l10n/PKGBUILD @@ -10,8 +10,8 @@ pkgname=( done) ) epoch=1 -_pkgver=24.2.0 -pkgver=24.2.0.deb1 +_pkgver=24.3.0 +pkgver=24.3.0.deb1 pkgrel=1 pkgdesc="Language packs for Debian Icedove." @@ -23,7 +23,7 @@ depends=("icedove-libre>=$epoch:$pkgver") makedepends=('unzip' 'zip') source=('brand.dtd' 'brand.properties') for lang in ${_langpacks[@]}; do - source+=("langpack-$lang@icedove.mozilla.org.xpi::$_url/$lang.xpi") + source+=("icedove-l10n-$_pkgver-$lang.xpi::$_url/$lang.xpi") done noextract=(${source[@]##*/}) @@ -32,8 +32,8 @@ _path=usr/lib/icedove/extensions prepare() { cd $srcdir for lang in ${_langpacks[@]}; do - unzip -q langpack-$lang@icedove.mozilla.org.xpi -d $lang - rm langpack-$lang@icedove.mozilla.org.xpi + unzip -q icedove-l10n-$_pkgver-$lang.xpi -d $lang + rm icedove-l10n-$_pkgver-$lang.xpi install -Dm644 $srcdir/brand.dtd $lang/chrome/$lang/locale/$lang/branding install -Dm644 $srcdir/brand.properties $lang/chrome/$lang/locale/$lang/branding sed -i -e 's/thunderbird/icedove/' $lang/install.rdf @@ -58,58 +58,58 @@ done md5sums=('d5b2567a8cc8f64591f313a6efdaaffc' 'f3719964e893c1002b7a923e8f95f923' - '2450e9b3a3f7b263dffba2b565caa026' - 'c8a34d460bbcf6095816787341a83bd3' - '9718159572dfa8318dd01a9a63a44b24' - 'b86442f249fe530e3e3e97444c559a7b' - 'd1d7f1bec25dd183aea62dd46b6b845f' - '425eb82e0cc734477fcb1f5eaca3a0b8' - 'd2a1f926448d9205fc2a9a113118c8f7' - '9e8afc1b6bf49f77e78462844745eabb' - '05c7362d95f6c1b8d4ab401b93d4dd26' - 'e3c7a12c3cd115f89472e714de9bbd96' - '511a967c932cd737f2c163d435c160b2' - '938095a514e39ca8058b894f7e285cdc' - '827e21a03cd9c99e9cb70e54b43cd28d' - '97aed07198d724ed2ff2f776cea9a694' - '393c678ac00c636096dc9d826fa99094' - 'a2ea99fb8bea0c81323f71987734fa75' - '7fa2aefd207d0830ec7d14f82d114b0e' - '3755689abeca519609029e0feb546861' - '239e1f4065d0027a09f4918fea2caebb' - '62d148305f8c146c6aeb7e46a91fb9dc' - '4cf85b9d988af5cf0dbbe60f33c78f8b' - 'ff3674d6422b3c6714dbbb604e830949' - '6b3c1eeb2a08f23e62865dd0890c7de2' - '4542f05f58a3f3fcc10fe2bee7bce620' - 'eabd4446b149be7abfb6ebdf2f0f9d17' - 'e2a4cae3125def4d5d02de6e39694d42' - '17423b845de2a30f4ce613399032e475' - '4a3227bc8cedbab2557dfddf193dadee' - 'e52d3c3a7e85af431aa78b5a172ca204' - '2ea44ef074d6c0126c11f1cf58119ea1' - '51f41c4bfc2651d59512401e6aef1a97' - 'b9ae7913f935a3a75fc4d35f54d229e2' - '2b65b7ca0445d9fd3030fc92922c9fef' - '4bd83ca6cc1eba3110be638f0b4ba58e' - '6f31e8349b4690d4364726fecd151c84' - 'bb8616d3f3beaf1c1b412d712a8191fd' - '8353b8ed0349460ff9006d1dc2e907f4' - 'cbc9d67c7c46a14517925674c7ce9241' - '10e9f12b915261a091f1e9a7aa3c491a' - '047ad48b03c91e0c4f59a828e34fe216' - 'ba6d3760ab01715b38f8c48c2c90c4e5' - '1acb8648f3efc1255472dd6161167467' - 'f2473203871f1d3db4c6930fea44d2bc' - '4e5506496329c9adb12271aa0237e437' - '81d7d92335e5bbd31265d4dd56017a03' - '30dd5472ec45558305661ba767450ee6' - 'ba42b92642b38e40d442f520d022d2cb' - '92ca20bf2065b5889de8811989600b37' - '2d64d71fca6e4e14ecea0d3e51ef7898' - '763a383781ccd499011c975936538222' - '37476f33e304615105374f11f7af6bcc' - '0905709db25a5566b0ef7507dcca96a9' - '832103f16211936217690e734556e95c' - 'ff4a8836c4086c22174bcdc6839468fa' - '6dfa0de1e9731226ff0c85386b100ccb') + '305fb4a11d119e1dffc8db00d8415447' + '6c970218d71fe3f2b2c080495c627dcf' + '5a791b03e66024e4590e90ea21c8072c' + '6d2bf5155653fc524e9eeffebb67fd1f' + '454d22e0cfffbf890249c344a0bfb3ed' + 'a613a5f928a86933c0dc4aa1ee83cabf' + '5d45b8aa1707ec42927118a42a64a901' + 'a4eeee3b77fb6c7d8185bb28986eeb2e' + 'abda1c12b400d0735944b2d1254135c5' + '0eb3e249f5950feebdfbe3abca393b9f' + '710dd329680a9ec523edc0976ee023c0' + 'a73a4bc3af9d42c793f453ade7ed7f47' + '0f67df0895150db4d117c3f8b2307bd2' + 'c37a4c222729ce7c2f37d695f037e7d9' + 'd372395a17630f7b0908456e01d3f305' + 'fc9c760ae32fcc72e38d518020507f48' + '343607eb1e2f051434ea5c9516887577' + '30a0a1de457425cee3b07b09d2a20225' + 'd6a19837e6704b43839a2608d109ecd5' + '9e0ae78d37852e0f6157b41fbef0f7c7' + '34d7d58ec4b20a1f07094a0fcf57774d' + '3c4503fa49ea87f1e647ea0c6d09436b' + '041c1281e98b583750adeaa46096ae4c' + '0ca153732c0af2bbd93173c140cd17cb' + '0f64947d77b92966e907039e051201d8' + '3951156099cee856d5dce13a10da233e' + 'a56081b911b707ae56fb8760813e3854' + '2ece2346cc35164742d5af8d4e5869ac' + '1a1cd84af5d427afcf2d20d7fe1e621c' + 'e3ed8fd936efcd3d5579d98701c09f53' + '5465a2c427ed645e5edd7ba9fcfea4cf' + '5e73d9699c9b1c617e24035e6869dabb' + '2f1d0102b66f0eaebf0a2a8054a36e6b' + '7bbdcee9350ddcba95cc8f37ef8bc557' + '6ca42a1473532da9a1387e7c133764ea' + '70ecae7ef62b9c4c4f9f7d45ee3c623f' + '02aab1810bce9fc80bd1e8c15c27cabf' + 'd059f84aaad99f16fc7aff65caeeb1cb' + 'e9c008d932c72e3ba9d6b181972a831a' + 'c5800f343a193d55e9d699e3f49c0fa6' + 'a239fc033efd9dc1a85093cadadcacff' + '62664ace7c66c0893eb2957692082036' + '9cafc6676e4e50cf71c6fda3d498f31b' + '0b29a636819202ea03169188e866264c' + '1ca9be772729a3539265b51fbda680a8' + 'bac6196887859fc6a2144748038e90b8' + '9a1374760f1b29c73fcc472f4ab128ec' + 'c33852a9a55eeed9930289c1a9282ba8' + '64b89babcda06ce68308cefc38a38b41' + '94b791cb6afb33b8b9c734e7b191c27a' + 'e56035901013b616ee4c63a2b351ac40' + '09d4df4a554806e97f53f302a7c2301e' + 'ff52d0ddad0e00635b1e7612fb6372bd' + 'df80dc11119b8405a35ebf7735897783' + 'b0b0feef63479a6c3aad0cad6e27c72b') -- cgit v1.2.3-2-g168b From e43d6d46fcd5de45316e211b29a1d8e00ae74596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Thu, 13 Feb 2014 14:57:27 -0200 Subject: ice{cat,weasel}-noscript-2.6.8.14-1: updating version --- libre/icecat-noscript/PKGBUILD | 6 +++--- libre/iceweasel-noscript/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'libre') diff --git a/libre/icecat-noscript/PKGBUILD b/libre/icecat-noscript/PKGBUILD index 16579acdd..643db648f 100644 --- a/libre/icecat-noscript/PKGBUILD +++ b/libre/icecat-noscript/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 104641 2014-01-24 07:00:27Z spupykin $ +# $Id: PKGBUILD 105656 2014-02-13 09:26:07Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer (Parabola): André Silva _pkgname=firefox-noscript pkgname=icecat-noscript -pkgver=2.6.8.13 +pkgver=2.6.8.14 pkgrel=1 pkgdesc="plugin for icecat which disables script" arch=('any') @@ -14,7 +14,7 @@ depends=() provides=$_pkgname=$pkgver makedepends=('unzip') source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi) -md5sums=('75ec11cc5f3f039e81113abfb908110e') +md5sums=('f0ecd6bd7c7331d77c91df55bdb3d7da') package() { # _ffver=`pacman -Q icecat | cut -f2 -d\ | cut -f1 -d-` diff --git a/libre/iceweasel-noscript/PKGBUILD b/libre/iceweasel-noscript/PKGBUILD index 5cde02a92..3250bad42 100644 --- a/libre/iceweasel-noscript/PKGBUILD +++ b/libre/iceweasel-noscript/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 104641 2014-01-24 07:00:27Z spupykin $ +# $Id: PKGBUILD 105656 2014-02-13 09:26:07Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer (Parabola): André Silva _pkgname=firefox-noscript pkgname=iceweasel-noscript -pkgver=2.6.8.13 +pkgver=2.6.8.14 pkgrel=1 pkgdesc="plugin for iceweasel which disables script" arch=('any') @@ -14,7 +14,7 @@ depends=() provides=$_pkgname=$pkgver makedepends=('unzip') source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi) -md5sums=('75ec11cc5f3f039e81113abfb908110e') +md5sums=('f0ecd6bd7c7331d77c91df55bdb3d7da') package() { # _ffver=`pacman -Q iceweasel-libre | cut -f2 -d\ | cut -f1 -d-` -- cgit v1.2.3-2-g168b From a6b6af7740bd1ee0fbfad817e32f412ea3fe0a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Thu, 13 Feb 2014 14:58:27 -0200 Subject: icedove-libre: remove unimportant patch from Debian source --- libre/icedove-libre/PKGBUILD | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 15c8a1fe5..d72f3b97c 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -59,6 +59,9 @@ prepare() { # Fix orthographic issue ("Icdove" to "Icedove") in MOZ_APP_BASENAME line for confvars.sh. sed -i 's|Icdove|Icedove|' debian/patches/debian-hacks/Icedove-branding.patch + # Doesn't apply and seems unimportant + rm -v debian/patches/debian-hacks/use-system-jquery-jquery-ui.patch || true + quilt push -av # Fix paths on makefile -- cgit v1.2.3-2-g168b From 429d0d1191f693af2c81923bde78b227bd54705f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Thu, 13 Feb 2014 15:49:30 -0200 Subject: mozilla-searchplugins-1.5-1: add new ddg search plugins which doesn't leave search history to improve privacy --- libre/mozilla-searchplugins/PKGBUILD | 8 ++++---- libre/mozilla-searchplugins/duckduckgo-html.xml | 17 +++++++++++++---- libre/mozilla-searchplugins/duckduckgo-lite.xml | 17 +++++++++++++---- 3 files changed, 30 insertions(+), 12 deletions(-) (limited to 'libre') diff --git a/libre/mozilla-searchplugins/PKGBUILD b/libre/mozilla-searchplugins/PKGBUILD index 2405ac889..85bba0637 100644 --- a/libre/mozilla-searchplugins/PKGBUILD +++ b/libre/mozilla-searchplugins/PKGBUILD @@ -9,8 +9,8 @@ # Contributor: Muhammad 'MJ' Jassim pkgname=mozilla-searchplugins -pkgver=1.4 -pkgrel=2 +pkgver=1.5 +pkgrel=1 pkgdesc="System-wide OpenSearch plugins common for Mozilla based browsers." arch=('any') license=('MPL' 'GPL' 'LGPL') @@ -32,8 +32,8 @@ package() { install -m644 "${srcdir}"/*.xml "${pkgdir}/usr/lib/mozilla/searchplugins" } -md5sums=('b4cc6bd8353af36ade441916217619e4' - '766aa6def4bf63c0d65afd6ca1b1ce37' +md5sums=('3412ff5311c1ba8d883ba9c6fd805bb7' + 'edb15da251e25cec39d471d885463db3' '462c68585461f8cdc23c93c46f6ee4cf' '92f834a3a1d85c9ae202955cdfe941eb' 'b9a0893d7f6d41d755c478fd60c44be8' diff --git a/libre/mozilla-searchplugins/duckduckgo-html.xml b/libre/mozilla-searchplugins/duckduckgo-html.xml index b53408077..14575dd12 100644 --- a/libre/mozilla-searchplugins/duckduckgo-html.xml +++ b/libre/mozilla-searchplugins/duckduckgo-html.xml @@ -1,8 +1,17 @@ - + DuckDuckGo HTML -Search DuckDuckGo HTML +Search DuckDuckGo (HTML) UTF-8 -http://duckduckgo.com/favicon.ico - +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAB8lBMVEUAAADkRQzjPwPjQQXkRQ3iPwTiQQXgPQPeQgrcOwPVNgDVNQDWOgbTMwDRMgDQMwDSMwDRNwTQLgDRJgDSJwDSLgDSNwTjOgDiOADjOQDkPADhQAXzs5v+/fv////0vKbiRQvgPQHpdUr85NzuknPdKgDcIwDnZzj2w7HqeU/gPQLsimb/+PftjWn97Obpb0LdJQDeLQDtjmvsi2jgSBDnbULgOQD/39HgLQDeMgDpeFLgSBH0v670uqbaJQD2qImWvP/G1Ob5+/3u//+fvvXyp47dMwDaLwD0u6v0v6/aNQDiXi/aKQD3qozU7/8gSY2vvtg0ZK/OqLDaKQHYKgLgWTfaNADZMgDZMADZLADzqpD7//+xwdz//9H/5Bn/7Bn//ADofADYMADYMQDZOgPXLgDiZDj//97/0AD3tQDvlgHZOgbXLATXMADWMgDfXjLVLQD///z+0AD/3Rn/yRnwnQDcVjbVMQDyv67wuKTSJwDRHQD+8O/tg3/iQQDwhAHnawHWMADvtKfyva7XQxHga0bQGQD2vbH/u8LXIQCmPQzja07XQxLliGn99fPkcVHvhnGZ5VguvUU5wktBwCcAgxzydVv/8/XmiGngdlL+ysi3+I8LtCE80V6P3YmX4sDleljSNQLzr6D7sKPXNQTSIwAEAbMrAAAAF3RSTlMARqSkRvPz80PTpKRG3fPe3hio9/eoGP50jNsAAAABYktHRB5yCiArAAAAyElEQVQYGQXBvUqCYRiA4fu2V9Tn+UQddI3aCpxaOoU6iU4gcqqpoYbALXBuCuoYmttamqJDiEoh4YP+MOi6BNCh+uYKEGiOVNCXXxA2XDVV/UyfKbRCXTLQWAxbP2vt8Ue/uYDvfim91615sb2um6rqtrr/NFb1cUf1Ybd06areU6lSlYpK79jzK1SyJOkfhOl8JGEcqV5zoKrTRqO6yUzIzNu46ijdM1VV9bhuUJ/nZURExLRzUiPQm3kKXHi4BAEGOmOi78A/L1QoU/VHoTsAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTQtMDEtMTlUMjA6MDE6MTEtMDU6MDAuET6cAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE0LTAxLTE5VDIwOjAxOjExLTA1OjAwX0yGIAAAAABJRU5ErkJggg== + + + diff --git a/libre/mozilla-searchplugins/duckduckgo-lite.xml b/libre/mozilla-searchplugins/duckduckgo-lite.xml index 1e651abe6..12436fb9a 100644 --- a/libre/mozilla-searchplugins/duckduckgo-lite.xml +++ b/libre/mozilla-searchplugins/duckduckgo-lite.xml @@ -1,8 +1,17 @@ - + DuckDuckGo Lite -Search DuckDuckGo Lite +Search DuckDuckGo (Lite) UTF-8 -http://duckduckgo.com/favicon.ico - +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAB8lBMVEUAAADkRQzjPwPjQQXkRQ3iPwTiQQXgPQPeQgrcOwPVNgDVNQDWOgbTMwDRMgDQMwDSMwDRNwTQLgDRJgDSJwDSLgDSNwTjOgDiOADjOQDkPADhQAXzs5v+/fv////0vKbiRQvgPQHpdUr85NzuknPdKgDcIwDnZzj2w7HqeU/gPQLsimb/+PftjWn97Obpb0LdJQDeLQDtjmvsi2jgSBDnbULgOQD/39HgLQDeMgDpeFLgSBH0v670uqbaJQD2qImWvP/G1Ob5+/3u//+fvvXyp47dMwDaLwD0u6v0v6/aNQDiXi/aKQD3qozU7/8gSY2vvtg0ZK/OqLDaKQHYKgLgWTfaNADZMgDZMADZLADzqpD7//+xwdz//9H/5Bn/7Bn//ADofADYMADYMQDZOgPXLgDiZDj//97/0AD3tQDvlgHZOgbXLATXMADWMgDfXjLVLQD///z+0AD/3Rn/yRnwnQDcVjbVMQDyv67wuKTSJwDRHQD+8O/tg3/iQQDwhAHnawHWMADvtKfyva7XQxHga0bQGQD2vbH/u8LXIQCmPQzja07XQxLliGn99fPkcVHvhnGZ5VguvUU5wktBwCcAgxzydVv/8/XmiGngdlL+ysi3+I8LtCE80V6P3YmX4sDleljSNQLzr6D7sKPXNQTSIwAEAbMrAAAAF3RSTlMARqSkRvPz80PTpKRG3fPe3hio9/eoGP50jNsAAAABYktHRB5yCiArAAAAyElEQVQYGQXBvUqCYRiA4fu2V9Tn+UQddI3aCpxaOoU6iU4gcqqpoYbALXBuCuoYmttamqJDiEoh4YP+MOi6BNCh+uYKEGiOVNCXXxA2XDVV/UyfKbRCXTLQWAxbP2vt8Ue/uYDvfim91615sb2um6rqtrr/NFb1cUf1Ybd06areU6lSlYpK79jzK1SyJOkfhOl8JGEcqV5zoKrTRqO6yUzIzNu46ijdM1VV9bhuUJ/nZURExLRzUiPQm3kKXHi4BAEGOmOi78A/L1QoU/VHoTsAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTQtMDEtMTlUMjA6MDE6MTEtMDU6MDAuET6cAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE0LTAxLTE5VDIwOjAxOjExLTA1OjAwX0yGIAAAAABJRU5ErkJggg== + + + -- cgit v1.2.3-2-g168b From 8f6e811fa4dfa969feb17ef6c04542ce0027a185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 14 Feb 2014 14:35:20 -0200 Subject: acpi_call-libre-lts-1.1.0-2: fix FS#38895 => https://bugs.archlinux.org/task/38895 --- libre/acpi_call-libre-lts/PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libre') diff --git a/libre/acpi_call-libre-lts/PKGBUILD b/libre/acpi_call-libre-lts/PKGBUILD index 3e14d035e..1902faf33 100644 --- a/libre/acpi_call-libre-lts/PKGBUILD +++ b/libre/acpi_call-libre-lts/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104847 2014-01-27 15:09:28Z alucryd $ +# $Id: PKGBUILD 105695 2014-02-14 08:30:36Z alucryd $ # Maintainer: Maxime Gauduin # Contributor: mortzu # Contributor: fnord0 @@ -6,7 +6,7 @@ _pkgname=acpi_call-lts pkgname=acpi_call-libre-lts pkgver=1.1.0 -pkgrel=1 +pkgrel=2 _extramodules=extramodules-3.10-LIBRE-LTS pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call (built for the linux-libre-lts kernel package)' arch=('i686' 'x86_64') @@ -33,12 +33,12 @@ package() { cd ${_pkgname%-*}-${pkgver} install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d} - install -m 644 ${_pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules} + install -m 644 ${_pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/ gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${_pkgname%-*}.ko - echo ${_pkgname%-*} > "${pkgdir}"/usr/lib/modules-load.d/${_pkgname%-*}.conf + echo ${_pkgname%-*} > "${pkgdir}"/usr/lib/modules-load.d/${_pkgname}.conf - install -dm 755 "${pkgdir}"/usr/share/${_pkgname%-*} - cp -dr --no-preserve='ownership' {examples,support} "${pkgdir}"/usr/share/${_pkgname%-*}/ + install -dm 755 "${pkgdir}"/usr/share/${_pkgname} + cp -dr --no-preserve='ownership' {examples,support} "${pkgdir}"/usr/share/${_pkgname}/ } # vim: ts=2 sw=2 et: -- cgit v1.2.3-2-g168b From 2afab607a2e63f0740169433860074ba1f4d229e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 14 Feb 2014 14:38:19 -0200 Subject: calibre-libre-1.24.0-1: updating version --- libre/calibre-libre/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libre') diff --git a/libre/calibre-libre/PKGBUILD b/libre/calibre-libre/PKGBUILD index 2527df801..e09fe35d0 100644 --- a/libre/calibre-libre/PKGBUILD +++ b/libre/calibre-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105453 2014-02-08 12:20:57Z jelle $ +# $Id: PKGBUILD 105710 2014-02-14 09:37:19Z jelle $ # Maintainer: jelle van der Waa # Maintainer: Daniel Wallace # Contributor: Giovanni Scafora @@ -9,7 +9,7 @@ _pkgname=calibre pkgname=calibre-libre -pkgver=1.23.0 +pkgver=1.24.0 pkgrel=1 pkgdesc="Ebook management application, with unar support" arch=('i686' 'x86_64' 'mips64el') @@ -30,7 +30,7 @@ install=calibre.install source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz" 'desktop_integration.patch' 'calibre-mount-helper') -md5sums=('3146ce3cdcc0e626ee7f9b8f0bb1be13' +md5sums=('2acb11d541bc8101ab550bfe80c79348' '8e1855ce1ae254c34d12ddbc358b7a36' '675cd87d41342119827ef706055491e7') -- cgit v1.2.3-2-g168b From 29dbaa1d6144e0615a7d4e746ee7e0d77eaf27a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 14 Feb 2014 14:40:40 -0200 Subject: mate-file-archiver-libre-1.6.2-1: updating version --- libre/mate-file-archiver-libre/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/mate-file-archiver-libre/PKGBUILD b/libre/mate-file-archiver-libre/PKGBUILD index 5072dd583..80711e259 100644 --- a/libre/mate-file-archiver-libre/PKGBUILD +++ b/libre/mate-file-archiver-libre/PKGBUILD @@ -2,7 +2,7 @@ _pkgname=mate-file-archiver pkgname=mate-file-archiver-libre -pkgver=1.6.1 +pkgver=1.6.2 pkgrel=1 pkgdesc="Archive manipulator for MATE, with unar recommendation included and nonfree unace recommendation removed" url="http://mate-desktop.org" @@ -23,7 +23,7 @@ options=('!emptydirs') groups=('mate-extra') source=("http://pub.mate-desktop.org/releases/1.6/${_pkgname}-${pkgver}.tar.xz" fr-rpm-bsdtar.patch) -sha1sums=('53a28d6fb559151c0b8d6f9a658113c77cdb938a' +sha1sums=('58a0f7d78dabd627a3a2b3352fabcba20d72aa92' '219b05a979bf6f249aaae27964f02345fd81168d') install=${_pkgname}.install -- cgit v1.2.3-2-g168b From 0ce8cbcd69b1b054e2b4f9d4718b748e2440b9e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Fri, 14 Feb 2014 22:08:30 -0200 Subject: add jquery and jquery-ui to the libre repo --- libre/jquery-ui/PKGBUILD | 31 +++++++++++++++++++++++++++++++ libre/jquery/PKGBUILD | 29 +++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 libre/jquery-ui/PKGBUILD create mode 100644 libre/jquery/PKGBUILD (limited to 'libre') diff --git a/libre/jquery-ui/PKGBUILD b/libre/jquery-ui/PKGBUILD new file mode 100644 index 000000000..0be01f724 --- /dev/null +++ b/libre/jquery-ui/PKGBUILD @@ -0,0 +1,31 @@ +#Maintainer: André Silva +#Maintainer: Márcio Silva + +_pkgname=jquery +pkgname=jquery-ui +pkgver=1.10.4 +pkgrel=1 +pkgdesc='jQuery UI provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications' +arch=any +url=http://jqueryui.com/ +license=MIT +depends=jquery +makedepends=nodejs + +source=https://github.com/$_pkgname/$pkgname/archive/$pkgver.tar.gz +sha512sums=cab57c40bc593f32baeca8f9bcf8e23ef770b511dd4894fbb5bfd0b0bb9f7266b9572247ea47289f8d0eaa782f8c803f3e4b262b71f00d173e7bd54793fdb0ac + +build() { + cd $srcdir/$pkgname-$pkgver + npm install grunt-cli + npm install + node_modules/.bin/grunt build +} + +package() { + cd $srcdir/$pkgname-$pkgver + install -d $pkgdir/usr/share/javascript/$pkgname + install -d $pkgdir/usr/share/licenses/$pkgname + cp -a dist/* $pkgdir/usr/share/javascript/$pkgname + cp -a MIT-LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE +} diff --git a/libre/jquery/PKGBUILD b/libre/jquery/PKGBUILD new file mode 100644 index 000000000..23d56d7c3 --- /dev/null +++ b/libre/jquery/PKGBUILD @@ -0,0 +1,29 @@ +#Maintainer: André Silva +#Maintainer: Márcio Silva + +pkgname=jquery +pkgver=2.1.0 +pkgrel=1 +pkgdesc='jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development' +arch=any +url=http://jquery.com/ +license=MIT +makedepends=nodejs + +source=https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz +sha512sums=aedd1086b3b84ed6705b31ac297b6bef29fc2b19a190b3bded2c135d13931cdc92b9ea7cf3eab86e8157a50f1e4ec9ba2bbe1eeba1af5dd44079f237571d41e4 + +build() { + cd $srcdir/$pkgname-$pkgver + npm install + node_modules/.bin/grunt +} + +package() { + cd $srcdir/$pkgname-$pkgver + install -d $pkgdir/usr/share/javascript/$pkgname + install -d $pkgdir/usr/share/licenses/$pkgname + node_modules/.bin/grunt dist:$pkgdir/usr/share/javascript/$pkgname + cp -a MIT-LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE +} + -- cgit v1.2.3-2-g168b From 90f20e411db4f4e79cbb5d7b39909cac3a382662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Sat, 15 Feb 2014 04:42:38 -0200 Subject: fixing icedove-libre --- libre/iceweasel-libre/PKGBUILD | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD index 5c6313e9e..f9b1dbd8e 100644 --- a/libre/iceweasel-libre/PKGBUILD +++ b/libre/iceweasel-libre/PKGBUILD @@ -1,21 +1,21 @@ # Maintainer (Parabola): André Silva -# Contributor (Parabola): Márcio Silva +# Maintainer (Parabola): Márcio Silva # Contributor (ConnochaetOS): Henry Jensen # Contributor (Parabola): Luke Shumaker +# Contributor: Figue # Contributor (Parabola): fauno # Contributor (Parabola): vando # Contributor (Arch): Jakub Schmidtke -# Contributor: Figue # Thank you very much to the older contributors: # Contributor: evr # Contributor: Muhammad 'MJ' Jassim -_pgo=true +_pgo=false # We're getting this from Debian Experimental _debname=iceweasel -_debver=27.0 -_debrel=deb2 +_debver=26.0 +_debrel=deb1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -39,7 +39,7 @@ fi optdepends=('networkmanager: Location detection via available WiFi networks' 'gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing' 'gstreamer0.10-good-plugins: webm and mp4 demuxing' - 'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding' + 'gstreamer0.10-bad-libre-plugins: aac, vp8 and opus decoding' 'gstreamer0.10-ugly-plugins: h.264 and mp3 decoding' 'gstreamer0.10-ffmpeg: more decoders' 'libpulse: PulseAudio audio driver') @@ -49,28 +49,26 @@ replaces=('firefox') conflicts=('firefox') provides=('firefox') source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.bz2" - "$_debrepo/`debfile $_debname`_$_debver-${_debrel#deb}.debian.tar.xz" + "$_debrepo/`debfile $_debname`_$_debver-${_debrel#deb}.debian.tar.gz" mozconfig mozconfig.pgo libre.patch - gnu_headshadow.png iceweasel.desktop iceweasel-install-dir.patch vendor.js iceweasel-20.0.1-fixed-loading-icon.png Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch Fixup-Reset-Firefox-after-bad-merge.patch) -md5sums=('0baf0b166421f785db79bd33fe7b0748' - '2446de5f7844caae8cd7e46b3b72119c' +md5sums=('219cf21e0642e8a364365286f23d0624' + '2001d0477bcefd0eeaab584402133691' '023120a970670dc85cea19393f0b94b6' 'df08eaa1ac3bc6c2356be4fbf8ec8932' - '641e8b54a684161c60209b81f260a19b' - 'b03a979a78484503ba8dddad4f2c96d1' + '5f9fe968db02dead66315248fdd01a5e' '7b9e5996dd9fe0b186a43a297db1c6b5' '6620e724ec9a1be74e65089d81d802f7' '816013881cfc9a1f4f0ede72b014f8b3' '6e335a517c68488941340ee1c23f97b0' - '3dcb1f1eccce5b6b90fa48ab94bf7a47' + 'dbf1c021e5f7ac323197b219bf213c50' '8e165ef85ddd72491f0b48f8954afca6') prepare() { @@ -94,8 +92,6 @@ prepare() { quilt push -av - install -m644 "$srcdir/gnu_headshadow.png" browser/base/content/abouthome # Put gnu_headshadow.png on the source code - patch -Np1 -i "$srcdir/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch" # Adding fixed Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch patch -Np1 -i "$srcdir/Fixup-Reset-Firefox-after-bad-merge.patch" patch -Np1 -i "$srcdir/iceweasel-install-dir.patch" # install to /usr/lib/$_pkgname @@ -171,10 +167,6 @@ prepare() { # https://bugzilla.mozilla.org/show_bug.cgi?id=841734 cp "$srcdir/iceweasel-20.0.1-fixed-loading-icon.png" \ browser/themes/linux/tabbrowser/loading.png - - # Remove non-existent file on Makefile.in - sed -i '\|build/pgo/blueprint/valid.png|d' build/Makefile.in - } build() { -- cgit v1.2.3-2-g168b From a40f20e4662fb198c586d44cb817b24ea775000b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Sat, 15 Feb 2014 05:00:04 -0200 Subject: revert changes on iceweasel, because were made a modification accidentally --- libre/iceweasel-libre/PKGBUILD | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) (limited to 'libre') diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD index f9b1dbd8e..5c6313e9e 100644 --- a/libre/iceweasel-libre/PKGBUILD +++ b/libre/iceweasel-libre/PKGBUILD @@ -1,21 +1,21 @@ # Maintainer (Parabola): André Silva -# Maintainer (Parabola): Márcio Silva +# Contributor (Parabola): Márcio Silva # Contributor (ConnochaetOS): Henry Jensen # Contributor (Parabola): Luke Shumaker -# Contributor: Figue # Contributor (Parabola): fauno # Contributor (Parabola): vando # Contributor (Arch): Jakub Schmidtke +# Contributor: Figue # Thank you very much to the older contributors: # Contributor: evr # Contributor: Muhammad 'MJ' Jassim -_pgo=false +_pgo=true # We're getting this from Debian Experimental _debname=iceweasel -_debver=26.0 -_debrel=deb1 +_debver=27.0 +_debrel=deb2 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -39,7 +39,7 @@ fi optdepends=('networkmanager: Location detection via available WiFi networks' 'gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing' 'gstreamer0.10-good-plugins: webm and mp4 demuxing' - 'gstreamer0.10-bad-libre-plugins: aac, vp8 and opus decoding' + 'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding' 'gstreamer0.10-ugly-plugins: h.264 and mp3 decoding' 'gstreamer0.10-ffmpeg: more decoders' 'libpulse: PulseAudio audio driver') @@ -49,26 +49,28 @@ replaces=('firefox') conflicts=('firefox') provides=('firefox') source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.bz2" - "$_debrepo/`debfile $_debname`_$_debver-${_debrel#deb}.debian.tar.gz" + "$_debrepo/`debfile $_debname`_$_debver-${_debrel#deb}.debian.tar.xz" mozconfig mozconfig.pgo libre.patch + gnu_headshadow.png iceweasel.desktop iceweasel-install-dir.patch vendor.js iceweasel-20.0.1-fixed-loading-icon.png Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch Fixup-Reset-Firefox-after-bad-merge.patch) -md5sums=('219cf21e0642e8a364365286f23d0624' - '2001d0477bcefd0eeaab584402133691' +md5sums=('0baf0b166421f785db79bd33fe7b0748' + '2446de5f7844caae8cd7e46b3b72119c' '023120a970670dc85cea19393f0b94b6' 'df08eaa1ac3bc6c2356be4fbf8ec8932' - '5f9fe968db02dead66315248fdd01a5e' + '641e8b54a684161c60209b81f260a19b' + 'b03a979a78484503ba8dddad4f2c96d1' '7b9e5996dd9fe0b186a43a297db1c6b5' '6620e724ec9a1be74e65089d81d802f7' '816013881cfc9a1f4f0ede72b014f8b3' '6e335a517c68488941340ee1c23f97b0' - 'dbf1c021e5f7ac323197b219bf213c50' + '3dcb1f1eccce5b6b90fa48ab94bf7a47' '8e165ef85ddd72491f0b48f8954afca6') prepare() { @@ -92,6 +94,8 @@ prepare() { quilt push -av + install -m644 "$srcdir/gnu_headshadow.png" browser/base/content/abouthome # Put gnu_headshadow.png on the source code + patch -Np1 -i "$srcdir/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch" # Adding fixed Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch patch -Np1 -i "$srcdir/Fixup-Reset-Firefox-after-bad-merge.patch" patch -Np1 -i "$srcdir/iceweasel-install-dir.patch" # install to /usr/lib/$_pkgname @@ -167,6 +171,10 @@ prepare() { # https://bugzilla.mozilla.org/show_bug.cgi?id=841734 cp "$srcdir/iceweasel-20.0.1-fixed-loading-icon.png" \ browser/themes/linux/tabbrowser/loading.png + + # Remove non-existent file on Makefile.in + sed -i '\|build/pgo/blueprint/valid.png|d' build/Makefile.in + } build() { -- cgit v1.2.3-2-g168b From 403b0c197f2ec719cb9b4fe993e74d7277e620c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Sat, 15 Feb 2014 05:01:42 -0200 Subject: fixing icedove-libre --- libre/icedove-libre/PKGBUILD | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index d72f3b97c..59c7e58d9 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -18,7 +18,7 @@ arch=('i686' 'x86_64' 'mips64el') license=('MPL' 'GPL' 'LGPL') url="http://packages.debian.org/sid/${_pkgname}" depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'hunspell' 'libevent' 'libvpx' 'libxt' 'mime-types' 'mozilla-common' 'mozilla-searchplugins' 'nss' 'sqlite' 'startup-notification') -makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13' 'quilt') +makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13' 'quilt' 'jquery-ui') optdepends=('libcanberra: for sound support') replaces=('thunderbird') conflicts=('thunderbird') @@ -59,9 +59,6 @@ prepare() { # Fix orthographic issue ("Icdove" to "Icedove") in MOZ_APP_BASENAME line for confvars.sh. sed -i 's|Icdove|Icedove|' debian/patches/debian-hacks/Icedove-branding.patch - # Doesn't apply and seems unimportant - rm -v debian/patches/debian-hacks/use-system-jquery-jquery-ui.patch || true - quilt push -av # Fix paths on makefile @@ -95,6 +92,10 @@ prepare() { # configure script misdetects the preprocessor without an optimization level # https://bugs.archlinux.org/task/34644 sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' mozilla/configure + + # links to build with jquery files built for us + ln -s /usr/share/javascript/jquery/jquery.min.js mail/jquery + ln -s /usr/share/javascript/jquery-ui/jquery-ui.min.js mail/jquery } build() { -- cgit v1.2.3-2-g168b From 15024089b89cdb33d12ec5e6edda696a34e2de74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 15 Feb 2014 05:20:38 -0200 Subject: icedove-libre: fix jquery files description --- libre/icedove-libre/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libre') diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 59c7e58d9..a5914ba56 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -93,7 +93,7 @@ prepare() { # https://bugs.archlinux.org/task/34644 sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' mozilla/configure - # links to build with jquery files built for us + # Add symlinks to use jquery files built for us ln -s /usr/share/javascript/jquery/jquery.min.js mail/jquery ln -s /usr/share/javascript/jquery-ui/jquery-ui.min.js mail/jquery } -- cgit v1.2.3-2-g168b From 954363e123c499b435f7b69588e0ab1b6065a039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 17 Feb 2014 01:10:57 -0200 Subject: cups-filters-libre-1.0.45-1: updating version --- libre/cups-filters-libre/PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libre') diff --git a/libre/cups-filters-libre/PKGBUILD b/libre/cups-filters-libre/PKGBUILD index 8d35a9f13..0f1abee68 100644 --- a/libre/cups-filters-libre/PKGBUILD +++ b/libre/cups-filters-libre/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 204369 2014-01-18 10:14:32Z andyrtr $ +# $Id: PKGBUILD 206026 2014-02-15 17:21:35Z andyrtr $ # Maintainer: Andreas Radke pkgname=cups-filters-libre _pkgname=cups-filters -pkgver=1.0.44 -pkgrel=2 +pkgver=1.0.45 +pkgrel=1 pkgdesc="OpenPrinting CUPS Filters, without foomatic-db-nonfree recommendation" arch=('i686' 'x86_64') url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting" @@ -20,7 +20,7 @@ source=(http://www.openprinting.org/download/cups-filters/$_pkgname-$pkgver.tar. provides=("${_pkgname}=${pkgver}" 'foomatic-filters') replaces=("${_pkgname}" 'foomatic-filters') conflicts=("${_pkgname}" 'foomatic-filters') -md5sums=('41d853788cf8e176f952136549488d34') +md5sums=('950c72b6fb7983f9a9fc126042e146c9') build() { cd $_pkgname-$pkgver -- cgit v1.2.3-2-g168b From 618ebf3a4609cbfa005ccd5eb75d98f405ff85da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Mon, 17 Feb 2014 01:11:47 -0200 Subject: linux-libre-lts-3.10.30-1: updating version --- libre/linux-libre-lts/PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libre') diff --git a/libre/linux-libre-lts/PKGBUILD b/libre/linux-libre-lts/PKGBUILD index e9a5a667a..ae5f590f0 100644 --- a/libre/linux-libre-lts/PKGBUILD +++ b/libre/linux-libre-lts/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 205544 2014-02-06 22:42:03Z bpiotrowski $ +# $Id: PKGBUILD 205955 2014-02-14 20:17:56Z andyrtr $ # Maintainer: Tobias Powalowski # Maintainer: Thomas Baechler # Maintainer (Parabola): André Silva @@ -10,10 +10,10 @@ pkgbase=linux-libre-lts # Build stock -LIBRE-LTS kernel #pkgbase=linux-libre-custom # Build kernel with a different name _basekernel=3.10 -_sublevel=29 +_sublevel=30 pkgver=${_basekernel}.${_sublevel} pkgrel=1 -_lxopkgver=${_basekernel}.28 # nearly always the same as pkgver +_lxopkgver=${_basekernel}.30 # nearly always the same as pkgver arch=('i686' 'x86_64' 'mips64el') url="http://linux-libre.fsfla.org/" license=('GPL2') @@ -32,7 +32,7 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gn 'criu-no-expert.patch' "http://www.linux-libre.fsfla.org/pub/linux-libre/lemote/gnewsense/pool/debuginfo/linux-patches-${_lxopkgver}-gnu_0loongsonlibre_mipsel.tar.xz") md5sums=('d562fd52580a3b6b18b6eeb5921d1d5c' - '13df9c49d6fbac852959f517fc0c1036' + 'fa8d8ba21bf5a6fad7edea6b158fd05c' '85ce008eaacbb2fc54b81116d35cf946' '16867e648e4b9f89bec949cb643888c2' 'c072b17032e80debc6a8626299245d46' @@ -41,7 +41,7 @@ md5sums=('d562fd52580a3b6b18b6eeb5921d1d5c' '04b21c79df0a952c22d681dd4f4562df' 'f3def2cefdcbb954c21d8505d23cc83c' 'd50c1ac47394e9aec637002ef3392bd1' - 'cec0d90f5d3fae8752b0020c6b785954') + '8e0bb5cbd34b0e7391049eba25d135be') if [ "$CARCH" != "mips64el" ]; then # don't use the Loongson-specific patches on non-mips64el arches. unset source[${#source[@]}-1] -- cgit v1.2.3-2-g168b