[arch-commits] Commit in nuget/repos/extra-any (8 files)
Daniel Isenmann
daniel at archlinux.org
Wed Oct 5 18:50:42 UTC 2016
Date: Wednesday, October 5, 2016 @ 18:50:41
Author: daniel
Revision: 277780
archrelease: copy trunk to extra-any
Added:
nuget/repos/extra-any/PKGBUILD
(from rev 277779, nuget/trunk/PKGBUILD)
nuget/repos/extra-any/nuget
(from rev 277779, nuget/trunk/nuget)
nuget/repos/extra-any/nuget.install
(from rev 277779, nuget/trunk/nuget.install)
nuget/repos/extra-any/nuget.pc
(from rev 277779, nuget/trunk/nuget.pc)
Deleted:
nuget/repos/extra-any/PKGBUILD
nuget/repos/extra-any/nuget
nuget/repos/extra-any/nuget.install
nuget/repos/extra-any/nuget.pc
---------------+
PKGBUILD | 80 ++++++++++++++++++++++++++++----------------------------
nuget | 8 ++---
nuget.install | 20 +++++++-------
nuget.pc | 20 +++++++-------
4 files changed, 64 insertions(+), 64 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2016-10-05 18:50:38 UTC (rev 277779)
+++ PKGBUILD 2016-10-05 18:50:41 UTC (rev 277780)
@@ -1,40 +0,0 @@
-# Maintainer: Daniel Isenmann <daniel at archlinux.org>
-# Contributor: wenLiangcan <boxeed at gmail dot com>
-
-pkgname=nuget
-pkgver=2.11
-pkgrel=1
-pkgdesc="Package manager for .NET."
-arch=('any')
-url="http://www.nuget.org"
-license=('APACHE')
-depends=('mono' 'sh')
-source=(https://sources.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.gz
- "${pkgname}"
- "${pkgname}.pc"
- "https://sources.archlinux.org/other/packages/${pkgname}/xdt.tar.gz")
-install="${pkgname}.install"
-md5sums=('24f82d00a85828b4f6ff97fc2add9efb'
- 'dce06048fb6eb42beb69001adb2fd530'
- 'ffb7d95fb39f72c9619c72db91ec36a0'
- '61580e6d1e1ecf80f8f2caf4a43b7b71')
-
-build() {
- xbuild /p:Configuration=Release xdt/XmlTransform/Microsoft.Web.XmlTransform.csproj
- cd ${srcdir}/${pkgname}-${pkgver}
- xbuild Build/Build.proj /p:Configuration=Release /p:TreatWarningsAsErrors=false /tv:4.0 /p:TargetFrameworkVersion=v4.5 /p:Configuration="Mono Release" /t:BuildMono
-}
-
-package() {
-
-mkdir -p ${pkgdir}/usr/lib/pkgconfig
-install -m 0644 ${srcdir}/nuget.pc ${pkgdir}/usr/lib/pkgconfig/nuget.pc
-
-install -d ${pkgdir}/usr/lib/nuget
-install -m 0644 ${srcdir}/nuget-2.11/src/CommandLine/obj/Mono\ Release/NuGet.exe ${pkgdir}/usr/lib/nuget/
-install -m 0644 ${srcdir}/nuget-2.11/src/Core/obj/Mono\ Release/NuGet.Core.dll ${pkgdir}/usr/lib/nuget/
-install -m 0644 ${srcdir}/xdt/XmlTransform/obj/Release/Microsoft.Web.XmlTransform.dll ${pkgdir}/usr/lib/nuget/
-
-install -d ${pkgdir}/usr/bin
-install -m 0755 ${srcdir}/nuget ${pkgdir}/usr/bin/nuget
-}
Copied: nuget/repos/extra-any/PKGBUILD (from rev 277779, nuget/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2016-10-05 18:50:41 UTC (rev 277780)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Isenmann <daniel at archlinux.org>
+# Contributor: wenLiangcan <boxeed at gmail dot com>
+
+pkgname=nuget
+pkgver=2.14
+pkgrel=1
+pkgdesc="Package manager for .NET."
+arch=('any')
+url="http://www.nuget.org"
+license=('APACHE')
+depends=('mono' 'sh')
+source=(https://sources.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.gz
+ "${pkgname}"
+ "${pkgname}.pc"
+ "https://sources.archlinux.org/other/packages/${pkgname}/xdt.tar.gz")
+install="${pkgname}.install"
+md5sums=('0834b8cea239fb098618f8d3ba09e214'
+ 'dce06048fb6eb42beb69001adb2fd530'
+ 'ffb7d95fb39f72c9619c72db91ec36a0'
+ '61580e6d1e1ecf80f8f2caf4a43b7b71')
+
+build() {
+ xbuild /p:Configuration=Release xdt/XmlTransform/Microsoft.Web.XmlTransform.csproj
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./build.sh
+}
+
+package() {
+
+mkdir -p ${pkgdir}/usr/lib/pkgconfig
+install -m 0644 ${srcdir}/nuget.pc ${pkgdir}/usr/lib/pkgconfig/nuget.pc
+
+install -d ${pkgdir}/usr/lib/nuget
+install -m 0644 ${srcdir}/${pkgname}-${pkgver}/src/CommandLine/obj/Mono\ Release/NuGet.exe ${pkgdir}/usr/lib/nuget/
+install -m 0644 ${srcdir}/${pkgname}-${pkgver}/src/Core/obj/Mono\ Release/NuGet.Core.dll ${pkgdir}/usr/lib/nuget/
+install -m 0644 ${srcdir}/xdt/XmlTransform/obj/Release/Microsoft.Web.XmlTransform.dll ${pkgdir}/usr/lib/nuget/
+
+install -d ${pkgdir}/usr/bin
+install -m 0755 ${srcdir}/nuget ${pkgdir}/usr/bin/nuget
+}
Deleted: nuget
===================================================================
--- nuget 2016-10-05 18:50:38 UTC (rev 277779)
+++ nuget 2016-10-05 18:50:41 UTC (rev 277780)
@@ -1,4 +0,0 @@
-#!/bin/sh
-MONO_PATH=/usr/lib/nuget:$MONO_PATH
-export MONO_PATH
-exec mono $MONO_OPTIONS --runtime=v4.0 /usr/lib/nuget/NuGet.exe $*
Copied: nuget/repos/extra-any/nuget (from rev 277779, nuget/trunk/nuget)
===================================================================
--- nuget (rev 0)
+++ nuget 2016-10-05 18:50:41 UTC (rev 277780)
@@ -0,0 +1,4 @@
+#!/bin/sh
+MONO_PATH=/usr/lib/nuget:$MONO_PATH
+export MONO_PATH
+exec mono $MONO_OPTIONS --runtime=v4.0 /usr/lib/nuget/NuGet.exe $*
Deleted: nuget.install
===================================================================
--- nuget.install 2016-10-05 18:50:38 UTC (rev 277779)
+++ nuget.install 2016-10-05 18:50:41 UTC (rev 277780)
@@ -1,10 +0,0 @@
-post_install() {
- post_upgrade
-}
-
-post_upgrade() {
- mozroots --import --machine --sync
- yes | certmgr -ssl -m https://go.microsoft.com
- yes | certmgr -ssl -m https://nugetgallery.blob.core.windows.net
- yes | certmgr -ssl -m https://nuget.org
-}
Copied: nuget/repos/extra-any/nuget.install (from rev 277779, nuget/trunk/nuget.install)
===================================================================
--- nuget.install (rev 0)
+++ nuget.install 2016-10-05 18:50:41 UTC (rev 277780)
@@ -0,0 +1,10 @@
+post_install() {
+ post_upgrade
+}
+
+post_upgrade() {
+ mozroots --import --machine --sync
+ yes | certmgr -ssl -m https://go.microsoft.com
+ yes | certmgr -ssl -m https://nugetgallery.blob.core.windows.net
+ yes | certmgr -ssl -m https://nuget.org
+}
Deleted: nuget.pc
===================================================================
--- nuget.pc 2016-10-05 18:50:38 UTC (rev 277779)
+++ nuget.pc 2016-10-05 18:50:41 UTC (rev 277780)
@@ -1,10 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${prefix}/lib
-includedir=${prefix}/include
-Libraries=${prefix}/lib/nuget/NuGet.Core.dll ${prefix}/lib/nuget/Microsoft.Web.XmlTransform.dll
-
-Name: nuget
-Description: Library for acessing Microsoft NuGet repositories
-Version: %{version}
-Libs: -r:${libdir}/nuget/NuGet.Core.dll -r:${libdir}/nuget/Microsoft.Web.XmlTransform.dll
Copied: nuget/repos/extra-any/nuget.pc (from rev 277779, nuget/trunk/nuget.pc)
===================================================================
--- nuget.pc (rev 0)
+++ nuget.pc 2016-10-05 18:50:41 UTC (rev 277780)
@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${prefix}/lib
+includedir=${prefix}/include
+Libraries=${prefix}/lib/nuget/NuGet.Core.dll ${prefix}/lib/nuget/Microsoft.Web.XmlTransform.dll
+
+Name: nuget
+Description: Library for acessing Microsoft NuGet repositories
+Version: %{version}
+Libs: -r:${libdir}/nuget/NuGet.Core.dll -r:${libdir}/nuget/Microsoft.Web.XmlTransform.dll
More information about the arch-commits
mailing list