From 322e623017947f32cb26db4c80f8eec2c5736401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 19 Feb 2014 03:36:23 +0000 Subject: Wed Feb 19 03:33:04 UTC 2014 --- community/0ad/PKGBUILD | 20 +- community/0ad/miniupnpc-1.9.patch | 12 ++ community/cgdb/PKGBUILD | 25 +++ community/cgdb/cgdb.install | 17 ++ community/girara/PKGBUILD | 8 +- community/poedit/PKGBUILD | 17 +- community/poedit/build-fix.patch | 235 ------------------------ extra/gdk-pixbuf2/PKGBUILD | 6 +- extra/grilo-plugins/PKGBUILD | 6 +- extra/grilo/PKGBUILD | 6 +- extra/libindi/PKGBUILD | 12 +- extra/totem-plparser/PKGBUILD | 8 +- libre/linux-libre-tools/02-parabola-paths.patch | 21 +++ libre/linux-libre-tools/PKGBUILD | 15 +- nonprism/grilo-plugins-nonprism/PKGBUILD | 6 +- 15 files changed, 130 insertions(+), 284 deletions(-) create mode 100644 community/0ad/miniupnpc-1.9.patch create mode 100644 community/cgdb/PKGBUILD create mode 100644 community/cgdb/cgdb.install delete mode 100644 community/poedit/build-fix.patch create mode 100644 libre/linux-libre-tools/02-parabola-paths.patch diff --git a/community/0ad/PKGBUILD b/community/0ad/PKGBUILD index a510a3e0f..406461c25 100644 --- a/community/0ad/PKGBUILD +++ b/community/0ad/PKGBUILD @@ -1,21 +1,28 @@ -# $Id: PKGBUILD 105861 2014-02-16 16:38:12Z bpiotrowski $ +# $Id: PKGBUILD 105901 2014-02-18 12:42:08Z bpiotrowski $ # Maintainer: Sven-Hendrik Haase # Contributor: t3ddy # Contributor: Adrián Chaves Fernández (Gallaecio) pkgname=0ad pkgver=a15 _pkgver=0.0.15-alpha -pkgrel=3 +pkgrel=4 pkgdesc="Cross-platform, 3D and historically-based real-time strategy game" arch=('i686' 'x86_64') url="http://play0ad.com/" license=('GPL2' 'CCPL') depends=('binutils' 'boost-libs' 'curl' 'enet' 'libogg' 'libpng' 'libvorbis' 'libxml2' 'openal' 'sdl' 'wxgtk2.8' 'zlib' 'libgl' '0ad-data' 'glu' - 'gloox' 'miniupnpc' 'libsm') -makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2') -source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz") -md5sums=('a651d81eb9b31da01e376ddaa597e954') + 'gloox' 'miniupnpc') +makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2' 'libsm') +source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz" + "miniupnpc-1.9.patch") +md5sums=('a651d81eb9b31da01e376ddaa597e954' + 'f3d27da4944d42fcf6b4153e54dc4600') + +prepare() { + cd "$srcdir/$pkgname-$_pkgver" + patch -p1 -i ../miniupnpc-1.9.patch +} build() { cd "$srcdir/$pkgname-$_pkgver/build/workspaces" @@ -25,6 +32,7 @@ build() { export WX_CONFIG=/usr/bin/wx-config-2.8 ./update-workspaces.sh \ --with-system-enet \ + --with-system-miniupnpc \ --bindir=/usr/bin \ --libdir=/usr/lib/0ad \ --datadir=/usr/share/${pkgname}/data diff --git a/community/0ad/miniupnpc-1.9.patch b/community/0ad/miniupnpc-1.9.patch new file mode 100644 index 000000000..d0546cf2e --- /dev/null +++ b/community/0ad/miniupnpc-1.9.patch @@ -0,0 +1,12 @@ +diff -rupN a/source/network/NetServer.cpp b/source/network/NetServer.cpp +--- a/source/network/NetServer.cpp 2013-12-18 16:08:56.000000000 +0000 ++++ b/source/network/NetServer.cpp 2014-02-18 10:11:59.955214338 +0000 +@@ -274,7 +274,7 @@ void* CNetServerWorker::SetupUPnP(void*) + // Check that the port was actually forwarded. + ret = UPNP_GetSpecificPortMappingEntry(urls.controlURL, + data.first.servicetype, +- psPort, protocall, ++ psPort, protocall, externalIPAddress, + intClient, intPort, NULL/*desc*/, + NULL/*enabled*/, duration); + diff --git a/community/cgdb/PKGBUILD b/community/cgdb/PKGBUILD new file mode 100644 index 000000000..0fa80294f --- /dev/null +++ b/community/cgdb/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Sven-Hendrik Haase +# Contributor: Marek Kubica +# Contributor: Javier ‘Phrodo_00’ Aravena +pkgname=cgdb +pkgver=0.6.7 +pkgrel=2 +pkgdesc="Curses-based interface to the GNU Debugger" +arch=('i686' 'x86_64') +url="http://cgdb.sourceforge.net/" +license=('GPL') +depends=('readline>=5.1' 'ncurses' 'gdb') +source=("http://cgdb.me/files/${pkgname}-${pkgver}.tar.gz") +sha512sums=('0a9d1cc3fb00c3cdaeb060d20d3312dd738b617ff1b188db33a074e2790f9721ca58e924ecc9929b84832c3ca22a334d7a66294439341a9b6868eef1baafca3e') +install=cgdb.install + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR="${pkgdir}/" install +} diff --git a/community/cgdb/cgdb.install b/community/cgdb/cgdb.install new file mode 100644 index 000000000..8ecafe752 --- /dev/null +++ b/community/cgdb/cgdb.install @@ -0,0 +1,17 @@ +infodir=usr/share/info +file=cgdb.info.gz + +post_install() { + [ -x usr/bin/install-info ] || return 0 + install-info $infodir/$file $infodir/dir 2> /dev/null +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + install-info --delete $infodir/$file $infodir/dir 2> /dev/null +} + diff --git a/community/girara/PKGBUILD b/community/girara/PKGBUILD index eef5fedca..8c7f0e340 100644 --- a/community/girara/PKGBUILD +++ b/community/girara/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 101151 2013-11-18 15:15:09Z spupykin $ +# $Id: PKGBUILD 105895 2014-02-18 09:17:33Z spupykin $ # Maintainer: Daniel Wallace # Maintainer: Sergej Pupykin # Maintainer: mlq pkgbase=girara -pkgname=(girara-common girara-gtk2 girara-gtk3) -pkgver=0.1.9 +pkgname=(girara-common girara-gtk3) +pkgver=0.2.0 pkgrel=1 pkgdesc="user interface library" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ url="http://pwmt.org/projects/girara" license=('custom') makedepends=('gtk3' 'gtk2') source=(http://pwmt.org/projects/girara/download/girara-$pkgver.tar.gz) -md5sums=('0b51fc07b5763b506d46598576e5576e') +md5sums=('cb965af58bc435f356296e62629716f5') build() { true diff --git a/community/poedit/PKGBUILD b/community/poedit/PKGBUILD index f6b66bc0b..a9673d1aa 100644 --- a/community/poedit/PKGBUILD +++ b/community/poedit/PKGBUILD @@ -1,4 +1,5 @@ -# $Id: PKGBUILD 105671 2014-02-13 11:03:29Z spupykin $ +# $Id: PKGBUILD 105897 2014-02-18 09:38:03Z spupykin $ +# Maintainer: Sergej Pupykin # Contributor: Andrea Scarpino # Contributor: Giovanni Scafora # Contributor: Alexander Fehr @@ -6,7 +7,7 @@ pkgname=poedit pkgver=1.6.4 -pkgrel=1 +pkgrel=2 pkgdesc="Cross-platform gettext catalogs (.po files) editor" arch=('i686' 'x86_64') url="http://www.poedit.net/" @@ -15,15 +16,9 @@ depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell') makedepends=('boost' 'libsm') install=poedit.install #source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz) -source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz - build-fix.patch) -md5sums=('203e27826c1baa4de403ce6d1cc60444' - '724aed37a6760c8ac9405f9ee4b70c05') - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 <$srcdir/build-fix.patch -} +#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz +source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}b.tar.gz) +md5sums=('bd494435b42121b5262b386d95ca66fd') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/poedit/build-fix.patch b/community/poedit/build-fix.patch deleted file mode 100644 index fb582bf2b..000000000 --- a/community/poedit/build-fix.patch +++ /dev/null @@ -1,235 +0,0 @@ -diff -wbBur poedit-1.6.4/src/edapp.cpp poedit-1.6.4.my/src/edapp.cpp ---- poedit-1.6.4/src/edapp.cpp 2014-02-07 22:03:55.000000000 +0400 -+++ poedit-1.6.4.my/src/edapp.cpp 2014-02-13 14:49:30.231324614 +0400 -@@ -67,7 +67,6 @@ - - #include "edapp.h" - #include "edframe.h" --#include "aboutbox.h" - #include "manager.h" - #include "prefsdlg.h" - #include "parser.h" -@@ -666,7 +665,7 @@ - about.SetCopyright(L"Copyright \u00a9 1999-2014 Václav Slavík"); - about.SetWebSite("http://www.poedit.net"); - -- PoeditAboutBox(about); -+// PoeditAboutBox(about); - } - - -@@ -792,7 +791,7 @@ - void PoeditApp::EmailSupport(const wxString& subject, const wxString& body) - { - wxString body2(body); -- wxString appname(HasLicense() ? "Poedit Pro" : "Poedit"); -+ wxString appname("Poedit"); - - #ifdef __WXOSX__ - NSString *s = [[NSProcessInfo processInfo] operatingSystemVersionString]; -@@ -927,31 +926,8 @@ - - void PoeditApp::OnLicense(wxCommandEvent&) - { -- ShowLicenseInformation(); - } - - void PoeditApp::ImportLicenseKey(const wxString& url) - { -- PoeditLicense lic = PoeditLicense::FromURL(url); -- -- if (lic.IsValid()) -- { -- lic.Store(); // save valid license -- ShowLicenseInformation(nullptr, &lic); // ...and thank the user -- } -- else if (!lic.Key().empty()) -- { -- // if we at least parsed the data, even if invalid, show it and let the -- // user correct them -- ShowLicenseInformation(nullptr, &lic); -- } -- else -- { -- wxMessageDialog dlg(nullptr, _("Invalid license data."), _("Poedit"), wxOK | wxICON_ERROR); -- dlg.SetExtendedMessage(wxString::Format(_("The link doesn't contain valid Poedit license. Try entering it manually or contact support at help@poedit.net.\n\n(%s)"), url)); -- dlg.ShowModal(); -- } -- -- if (wxTopLevelWindows.empty()) -- OpenNewFile(); - } -diff -wbBur poedit-1.6.4/src/edapp.h poedit-1.6.4.my/src/edapp.h ---- poedit-1.6.4/src/edapp.h 2014-02-07 22:03:55.000000000 +0400 -+++ poedit-1.6.4.my/src/edapp.h 2014-02-13 14:49:08.831324860 +0400 -@@ -27,8 +27,6 @@ - #ifndef _EDAPP_H_ - #define _EDAPP_H_ - --#include "licensing.h" -- - #include - #include - #include -diff -wbBur poedit-1.6.4/src/edframe.cpp poedit-1.6.4.my/src/edframe.cpp ---- poedit-1.6.4/src/edframe.cpp 2014-02-07 22:03:55.000000000 +0400 -+++ poedit-1.6.4.my/src/edframe.cpp 2014-02-13 14:49:20.301324729 +0400 -@@ -85,9 +85,7 @@ - #include "errorbar.h" - #include "utility.h" - #include "languagectrl.h" --#include "statistics.h" - #include "welcomescreen.h" --#include "wordpress.h" - #include "errors.h" - - #include -@@ -1374,8 +1372,6 @@ - - void PoeditFrame::OnNewForWordpress(wxCommandEvent&) - { -- CHECK_LICENSE(Wordpress); -- - DoIfCanDiscardCurrentDoc([=]{ - NewForWordpress(); - }); -@@ -1466,73 +1462,6 @@ - void PoeditFrame::NewForWordpress() - { - // TODO: share code with NewFromPOT() -- -- wxDirDialog dirdlg(this, -- _("Select the folder with the WordPress theme or plugin"), -- "", -- wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST); -- if (dirdlg.ShowModal() != wxID_OK) -- return; -- -- try -- { -- std::unique_ptr progress(new ProgressInfo(this, _("WordPress"))); -- progress->UpdateMessage(_("Analyzing WordPress code...")); -- -- auto wpInfo = WordpressInfo::Analyze(dirdlg.GetPath()); -- auto catalog = wpInfo.CreateCatalog(); -- -- delete m_catalog; -- m_catalog = catalog.release(); -- -- m_fileName = wpInfo.GetPOFilePath("LANG"); -- m_catalog->SetFileName(m_fileName); -- m_fileExistsOnDisk = false; -- m_modified = true; -- -- EnsureContentView(Content::PO); -- m_list->CatalogChanged(m_catalog); -- -- UpdateTitle(); -- UpdateMenu(); -- UpdateStatusBar(); -- InitSpellchecker(); -- -- progress.reset(); -- -- UpdateCatalog(); -- -- // Choose the language: -- wxWindowPtr dlg(new LanguageDialog(this)); -- -- dlg->ShowWindowModalThenDo([=](int retcode){ -- if (retcode == wxID_OK) -- { -- Language lang = dlg->GetLang(); -- m_catalog->Header().Lang = lang; -- m_catalog->Header().SetHeaderNotEmpty("Plural-Forms", lang.DefaultPluralFormsExpr()); -- -- m_fileName = wpInfo.GetPOFilePath(lang.Code()); -- m_catalog->SetFileName(m_fileName); -- m_fileExistsOnDisk = false; -- m_modified = true; -- -- UpdateTitle(); -- UpdateMenu(); -- UpdateStatusBar(); -- RecreatePluralTextCtrls(); -- InitSpellchecker(); -- if (m_list) -- m_list->CatalogChanged(m_catalog); // refresh language column -- } -- }); -- } -- catch (const WordpressException& e) -- { -- WordpressErrorDialog dlg(this, e); -- dlg.ShowModal(); -- return; -- } - } - - -@@ -1728,10 +1657,6 @@ - - void PoeditFrame::OnStatistics(wxCommandEvent&) - { -- CHECK_LICENSE(Statistics); -- -- wxWindowPtr dlg(new StatisticsWindow(this, *m_catalog)); -- dlg->ShowWindowModalThenDo([dlg](int){}); - } - - -diff -wbBur poedit-1.6.4/src/tm/tm_migrate.cpp poedit-1.6.4.my/src/tm/tm_migrate.cpp ---- poedit-1.6.4/src/tm/tm_migrate.cpp 2014-02-01 22:10:12.000000000 +0400 -+++ poedit-1.6.4.my/src/tm/tm_migrate.cpp 2014-02-13 14:15:57.734681082 +0400 -@@ -92,7 +92,7 @@ - return path.GetFullPath(); - #endif - #else -- return wxStandardPaths::Get().GetInstallPrefix() + "/libexec/poedit-dump-legacy-tm"; -+ return wxStandardPaths::Get().GetInstallPrefix() + "/lib/poedit/poedit-dump-legacy-tm"; - #endif - } - -diff -wbBur poedit-1.6.4/src/welcomescreen.cpp poedit-1.6.4.my/src/welcomescreen.cpp ---- poedit-1.6.4/src/welcomescreen.cpp 2014-02-07 22:03:55.000000000 +0400 -+++ poedit-1.6.4.my/src/welcomescreen.cpp 2014-02-13 14:48:36.421325233 +0400 -@@ -118,11 +118,10 @@ - #endif - - --class UpgradeSizer : public wxBoxSizer, public LicenseObserver -+class UpgradeSizer : public wxBoxSizer - { - public: - UpgradeSizer(int orient) : wxBoxSizer(orient) {} -- virtual void OnLicenseEntered() { ShowItems(false); } - }; - - } // anonymous namespace -@@ -203,26 +202,6 @@ - - sizer->AddSpacer(20); - -- if (!HasLicense()) -- { -- auto upgradeSizer = new UpgradeSizer(wxHORIZONTAL); -- sizer->Add(upgradeSizer, wxSizerFlags().Align(wxALIGN_RIGHT).Border()); -- auto upgradeBtn = new wxBitmapButton(this, wxID_ANY, wxArtProvider::GetBitmap("UpgradeBanner"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxDefaultValidator, "Upgrade to Pro"); -- upgradeBtn->SetBitmapCurrent(wxArtProvider::GetBitmap("UpgradeBannerHighlight")); -- upgradeBtn->SetToolTip(_("Upgrade to the Pro version of Poedit with more features.")); -- upgradeSizer->Add(upgradeBtn); -- auto upgradeInfoBtn = new wxBitmapButton(this, wxID_ANY, wxArtProvider::GetBitmap("UpgradeBannerInfo"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxDefaultValidator, "Upgrade to Pro Info"); -- upgradeInfoBtn->SetBitmapCurrent(wxArtProvider::GetBitmap("UpgradeBannerInfoHighlight")); -- upgradeSizer->Add(upgradeInfoBtn); -- -- upgradeBtn->Bind(wxEVT_BUTTON, [=](wxCommandEvent&){ -- PurchaseUpgrade(UpgradeSource::WelcomeScreen_Upgrade, /*certain=*/false, parent); -- }); -- upgradeInfoBtn->Bind(wxEVT_BUTTON, [=](wxCommandEvent&){ -- AskUserToUpgradeIfAppliable(UpgradeSource::WelcomeScreen_Info, parent); -- }); -- } -- - sizer->Add(new ActionButton( - this, wxID_OPEN, - _("Edit a translation"), diff --git a/extra/gdk-pixbuf2/PKGBUILD b/extra/gdk-pixbuf2/PKGBUILD index 4b62b0f44..df893a4f6 100644 --- a/extra/gdk-pixbuf2/PKGBUILD +++ b/extra/gdk-pixbuf2/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 205063 2014-02-04 00:48:48Z heftig $ +# $Id: PKGBUILD 206105 2014-02-18 06:28:10Z heftig $ # Maintainer: Ionut Biru pkgname=gdk-pixbuf2 -pkgver=2.30.4 +pkgver=2.30.5 pkgrel=1 pkgdesc="An image loading library" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper') makedepends=('gtk-doc' 'gobject-introspection') install=gdk-pixbuf2.install source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz) -sha256sums=('a13bbad0d804829b260bc901dc7d284d330c534489fc1666c126fa4555bbb051') +sha256sums=('43e71d50c4511d7d72fa75b1ac7ad3e8e04bdc97908d003449e78171683bb136') build() { cd gdk-pixbuf-$pkgver diff --git a/extra/grilo-plugins/PKGBUILD b/extra/grilo-plugins/PKGBUILD index 1103c54f8..68848e89d 100644 --- a/extra/grilo-plugins/PKGBUILD +++ b/extra/grilo-plugins/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 205841 2014-02-11 12:54:03Z heftig $ +# $Id: PKGBUILD 206113 2014-02-18 14:55:38Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) pkgname=grilo-plugins -pkgver=0.2.10 +pkgver=0.2.11 pkgrel=1 pkgdesc="Plugins for Grilo" url="http://www.gnome.org" @@ -22,7 +22,7 @@ optdepends=('gupnp-av: uPnP plugin' options=('!emptydirs') groups=('gnome') source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) -sha256sums=('5a7dd406ed58145847553e6dbb5f766e9d58dc5d4cfeb7e290d5b38c88163871') +sha256sums=('a2ac4ad28f3ead53d00d99653b2fb2d19cd5d9cfc33a16e7e82477223d089944') build() { cd $pkgname-$pkgver diff --git a/extra/grilo/PKGBUILD b/extra/grilo/PKGBUILD index 31f1eb9ca..616141c8d 100644 --- a/extra/grilo/PKGBUILD +++ b/extra/grilo/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 205840 2014-02-11 12:53:50Z heftig $ +# $Id: PKGBUILD 206111 2014-02-18 14:34:10Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) pkgname=grilo -pkgver=0.2.8 +pkgver=0.2.9 pkgrel=1 pkgdesc="Framework that provides access to various sources of multimedia content" url="http://www.gnome.org" @@ -13,7 +13,7 @@ makedepends=('gobject-introspection' 'gtk-doc' 'vala' 'intltool') optdepends=('grilo-plugins: Plugins for grilo') options=('!emptydirs') source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) -sha256sums=('03a50e011b897a46d6ec6fe4cfec4ca0737047f279c99b3d9eb9bef8c472cee8') +sha256sums=('e51e937ae1ceee31d3f07fd459cd67e17d5c4497e32b30eb883830a0995df935') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/libindi/PKGBUILD b/extra/libindi/PKGBUILD index 215e07390..424ad5050 100644 --- a/extra/libindi/PKGBUILD +++ b/extra/libindi/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 202208 2013-12-19 13:43:24Z fyan $ +# $Id: PKGBUILD 206107 2014-02-18 08:08:06Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Tobias Powalowski pkgname=libindi -pkgver=0.9.6 -pkgrel=7 +pkgver=0.9.7 +pkgrel=1 pkgdesc="A distributed control protocol designed to operate astronomical instrumentation" url="http://www.indilib.org/index.php?title=Main_Page" license=('GPL2') @@ -13,7 +13,7 @@ depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat') makedepends=('cmake' 'boost') options=('staticlibs') # libindiclient builds as static only source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz") -md5sums=('c1456544a36f543e2884f88913cf3eb0') +md5sums=('3e457c4226d7a445a0d89c044cced6b7') prepare() { mkdir build @@ -32,7 +32,7 @@ package() { make DESTDIR="${pkgdir}" install install -d "${pkgdir}"/usr/lib/udev/rules.d - mv "${pkgdir}"/etc/udev/rules.d/99-gpusb.rules \ + mv "${pkgdir}"/lib/udev/rules.d/99-gpusb.rules \ "${pkgdir}"/usr/lib/udev/rules.d/ - rmdir "${pkgdir}"/etc/udev/rules.d "${pkgdir}"/etc/udev "${pkgdir}"/etc + rmdir "${pkgdir}"/lib/udev/rules.d "${pkgdir}"/lib/udev "${pkgdir}"/lib } diff --git a/extra/totem-plparser/PKGBUILD b/extra/totem-plparser/PKGBUILD index 6805152cf..c5befcdba 100644 --- a/extra/totem-plparser/PKGBUILD +++ b/extra/totem-plparser/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 203592 2014-01-13 17:12:25Z andyrtr $ +# $Id: PKGBUILD 206115 2014-02-18 17:40:26Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Jan de Groot pkgname=totem-plparser -pkgver=3.10.0 -pkgrel=4 +pkgver=3.10.1 +pkgrel=1 url="http://www.gnome.org" pkgdesc="Totem playlist parser library" license=('LGPL') @@ -13,7 +13,7 @@ depends=('gmime' 'libsoup' 'libarchive') makedepends=('intltool' 'gobject-introspection' 'libquvi') optdepends=('libquvi: video site handling (Youtube etc.)') source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz) -sha256sums=('87eac3fdf2b632dfac0edda07906a3e84f1ce4442b8127394414020dafe41aa9') +sha256sums=('13d20222e7230eff1b22acc2b6b54d3c910590782a3ac39b859857407fb5e413') build() { cd totem-pl-parser-$pkgver diff --git a/libre/linux-libre-tools/02-parabola-paths.patch b/libre/linux-libre-tools/02-parabola-paths.patch new file mode 100644 index 000000000..223e7d783 --- /dev/null +++ b/libre/linux-libre-tools/02-parabola-paths.patch @@ -0,0 +1,21 @@ +# Seblu was here +--- a/tools/perf/config/Makefile 2014-02-13 23:00:14.000000000 +0100 ++++ b/tools/perf/config/Makefile 2014-02-17 20:01:33.370539725 +0100 +@@ -561,7 +561,7 @@ + bindir = $(prefix)/$(bindir_relative) + mandir = share/man + infodir = share/info +-perfexecdir = libexec/perf-core ++perfexecdir = lib/perf + sharedir = $(prefix)/share + template_dir = share/perf-core/templates + htmldir = share/doc/perf-doc +@@ -573,7 +573,7 @@ + ETC_PERFCONFIG = etc/perfconfig + endif + ifeq ($(IS_X86_64),1) +-lib = lib64 ++lib = lib + else + lib = lib + endif diff --git a/libre/linux-libre-tools/PKGBUILD b/libre/linux-libre-tools/PKGBUILD index 060d84bf2..c20fee223 100644 --- a/libre/linux-libre-tools/PKGBUILD +++ b/libre/linux-libre-tools/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104447 2014-01-21 01:10:56Z seblu $ +# $Id: PKGBUILD 105883 2014-02-17 19:21:42Z seblu $ # Maintainer: Sébastien Luttringer # Maintainer (Parabola): André Silva @@ -18,7 +18,7 @@ _basekernel=3.13 #_sublevel=3 #_pkgver=$_basekernel.$_sublevel pkgver=$_basekernel -pkgrel=1 +pkgrel=2 license=('GPL2') arch=('i686' 'x86_64' 'mips64el') url='http://linux-libre.fsfla.org/' @@ -41,23 +41,26 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/$_basekernel-gnu/ 'cpupower.systemd' 'cpupower.service' 'usbipd.service' - '01-fix-perf-python.patch') + '01-fix-perf-python.patch' + '02-parabola-paths.patch') sha256sums=('6e68eef826b17ae9d7df01ac13e46ef5d978670071d1b05aed775bdbff8fed96' #'561644a6a5d4c434dcd1f1e1dc48c4d8924bfa0407f697b66b7e6de02451acbb' '4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f' 'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e' 'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc' '2e187734d8aec58a3046d79883510d779aa93fb3ab20bd3132c1a607ebe5498f' - 'fce128f5e0abfa6916d5cb881456d892d1b163b9639166a4c6c1d53e4dc5086a') + 'fce128f5e0abfa6916d5cb881456d892d1b163b9639166a4c6c1d53e4dc5086a' + 'eb866a589a26b1979ffb2fe08be09417e277a4befac34bdb279a6bb3a27b0570') prepare() { + cd linux-$pkgver # apply stable patching set if (( NOEXTRACT == 0 )) && [[ -e "$srcdir"/patch-$_basekernel-gnu-$_pkgver-gnu ]]; then msg2 'Applying stable patch set' - cd linux-$pkgver patch -Np1 -i "$srcdir"/patch-$_basekernel-gnu-$_pkgver-gnu - cd .. fi + patch -N -p1 -i "$srcdir/01-fix-perf-python.patch" + patch -N -p1 -i "$srcdir/02-parabola-paths.patch" } build() { diff --git a/nonprism/grilo-plugins-nonprism/PKGBUILD b/nonprism/grilo-plugins-nonprism/PKGBUILD index ccae9590e..6a93de196 100644 --- a/nonprism/grilo-plugins-nonprism/PKGBUILD +++ b/nonprism/grilo-plugins-nonprism/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 205839 2014-02-11 12:53:30Z heftig $ +# $Id: PKGBUILD 206112 2014-02-18 14:55:21Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Maintainer (Parabola): André Silva _pkgname=grilo-plugins pkgname=grilo-plugins-nonprism -pkgver=0.2.10 +pkgver=0.2.11 pkgrel=1 pkgdesc="Plugins for Grilo, without libgdata support and gnome-online-accounts recommendation" url="http://www.gnome.org" @@ -25,7 +25,7 @@ optdepends=('gupnp-av: uPnP plugin' options=('!emptydirs') groups=('gnome') source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgname}/${pkgver%.*}/${_pkgname}-${pkgver}.tar.xz) -sha256sums=('5a7dd406ed58145847553e6dbb5f766e9d58dc5d4cfeb7e290d5b38c88163871') +sha256sums=('a2ac4ad28f3ead53d00d99653b2fb2d19cd5d9cfc33a16e7e82477223d089944') build() { cd $_pkgname-$pkgver -- cgit v1.2.2