From: <abe...@us...> - 2012-01-17 16:53:40
|
Revision: 5391 http://astlinux.svn.sourceforge.net/astlinux/?rev=5391&view=rev Author: abelbeck Date: 2012-01-17 16:53:31 +0000 (Tue, 17 Jan 2012) Log Message: ----------- pciutils, version bump to 3.1.9 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2012-01-17 16:39:30 UTC (rev 5390) +++ branches/1.0/package/pciutils/pciutils.mk 2012-01-17 16:53:31 UTC (rev 5391) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.1.7 +PCIUTILS_VERSION = 3.1.9 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci PCIUTILS_ZLIB=no This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-01 00:58:21
|
Revision: 5435 http://astlinux.svn.sourceforge.net/astlinux/?rev=5435&view=rev Author: abelbeck Date: 2012-02-01 00:58:14 +0000 (Wed, 01 Feb 2012) Log Message: ----------- pciutils, set libpci.so.x.x.x with 755 permissions so it gets stripped Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2012-01-31 14:31:55 UTC (rev 5434) +++ branches/1.0/package/pciutils/pciutils.mk 2012-02-01 00:58:14 UTC (rev 5435) @@ -39,6 +39,7 @@ SHARED=$(PCIUTILS_SHARED) install $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \ SHARED=$(PCIUTILS_SHARED) install-lib + chmod 755 $(TARGET_DIR)/usr/lib/libpci.so.$(PCIUTILS_VERSION) # set permissions so it is stripped endef $(eval $(call GENTARGETS,package,pciutils)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-12-15 17:31:39
|
Revision: 5808 http://astlinux.svn.sourceforge.net/astlinux/?rev=5808&view=rev Author: abelbeck Date: 2012-12-15 17:31:32 +0000 (Sat, 15 Dec 2012) Log Message: ----------- pciutils, version bump to 3.1.10 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2012-12-15 17:11:15 UTC (rev 5807) +++ branches/1.0/package/pciutils/pciutils.mk 2012-12-15 17:31:32 UTC (rev 5808) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.1.9 +PCIUTILS_VERSION = 3.1.10 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci PCIUTILS_ZLIB=no @@ -36,9 +36,7 @@ # Ditch install-lib if SHARED is an option in the future define PCIUTILS_INSTALL_TARGET_CMDS $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \ - SHARED=$(PCIUTILS_SHARED) install - $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \ - SHARED=$(PCIUTILS_SHARED) install-lib + SHARED=$(PCIUTILS_SHARED) install install-lib chmod 755 $(TARGET_DIR)/usr/lib/libpci.so.$(PCIUTILS_VERSION) # set permissions so it is stripped endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-12-17 15:18:34
|
Revision: 5815 http://astlinux.svn.sourceforge.net/astlinux/?rev=5815&view=rev Author: abelbeck Date: 2012-12-17 15:18:28 +0000 (Mon, 17 Dec 2012) Log Message: ----------- pciutils build tweaks, Thanks Michael Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2012-12-17 01:03:31 UTC (rev 5814) +++ branches/1.0/package/pciutils/pciutils.mk 2012-12-17 15:18:28 UTC (rev 5815) @@ -6,11 +6,17 @@ PCIUTILS_VERSION = 3.1.10 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci +PCIUTILS_INSTALL_STAGING = YES PCIUTILS_ZLIB=no PCIUTILS_DNS=no PCIUTILS_SHARED=yes +# Build after busybox since it's got a lightweight lspci +ifeq ($(BR2_PACKAGE_BUSYBOX),y) + PCIUTILS_DEPENDENCIES += busybox +endif + define PCIUTILS_CONFIGURE_CMDS $(SED) 's/wget --no-timestamping/wget/' $(PCIUTILS_DIR)/update-pciids.sh $(SED) 's/uname -s/echo Linux/' \ @@ -35,9 +41,14 @@ # Ditch install-lib if SHARED is an option in the future define PCIUTILS_INSTALL_TARGET_CMDS - $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \ + $(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \ SHARED=$(PCIUTILS_SHARED) install install-lib chmod 755 $(TARGET_DIR)/usr/lib/libpci.so.$(PCIUTILS_VERSION) # set permissions so it is stripped endef +define PCIUTILS_INSTALL_STAGING_CMDS + $(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(STAGING_DIR)/usr \ + SHARED=$(PCIUTILS_SHARED) install install-lib +endef + $(eval $(call GENTARGETS,package,pciutils)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2013-05-03 17:16:48
|
Revision: 6072 http://sourceforge.net/p/astlinux/code/6072 Author: abelbeck Date: 2013-05-03 17:16:44 +0000 (Fri, 03 May 2013) Log Message: ----------- pciutils, minor build tweak from upstream Buildroot Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2013-05-02 00:13:42 UTC (rev 6071) +++ branches/1.0/package/pciutils/pciutils.mk 2013-05-03 17:16:44 UTC (rev 6072) @@ -26,7 +26,7 @@ endef define PCIUTILS_BUILD_CMDS - $(MAKE) CC="$(TARGET_CC)" \ + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" \ HOST="$(KERNEL_ARCH)-linux" \ OPT="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2014-11-12 15:45:13
|
Revision: 6822 http://sourceforge.net/p/astlinux/code/6822 Author: abelbeck Date: 2014-11-12 15:45:04 +0000 (Wed, 12 Nov 2014) Log Message: ----------- pciutils, version bump to 3.3.0 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2014-11-11 14:44:28 UTC (rev 6821) +++ branches/1.0/package/pciutils/pciutils.mk 2014-11-12 15:45:04 UTC (rev 6822) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.2.1 +PCIUTILS_VERSION = 3.3.0 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci PCIUTILS_INSTALL_STAGING = YES # Depend on linux to define LINUX_VERSION_PROBED @@ -13,7 +13,8 @@ PCIUTILS_ZLIB=no PCIUTILS_DNS=no PCIUTILS_SHARED=yes -PCIUTILS_KMOD = no +PCIUTILS_KMOD=no +PCIUTILS_HWDB=no # Build after busybox since it's got a lightweight lspci ifeq ($(BR2_PACKAGE_BUSYBOX),y) @@ -40,6 +41,7 @@ ZLIB=$(PCIUTILS_ZLIB) \ DNS=$(PCIUTILS_DNS) \ LIBKMOD=$(PCIUTILS_KMOD) \ + HWDB=$(PCIUTILS_HWDB) \ PREFIX=/usr endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-04-10 15:09:39
|
Revision: 7035 http://sourceforge.net/p/astlinux/code/7035 Author: abelbeck Date: 2015-04-10 15:09:32 +0000 (Fri, 10 Apr 2015) Log Message: ----------- pciutils, version bump to 3.3.1 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2015-04-10 13:17:43 UTC (rev 7034) +++ branches/1.0/package/pciutils/pciutils.mk 2015-04-10 15:09:32 UTC (rev 7035) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.3.0 +PCIUTILS_VERSION = 3.3.1 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci PCIUTILS_INSTALL_STAGING = YES # Depend on linux to define LINUX_VERSION_PROBED This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-10-05 17:38:07
|
Revision: 7260 http://sourceforge.net/p/astlinux/code/7260 Author: abelbeck Date: 2015-10-05 17:38:04 +0000 (Mon, 05 Oct 2015) Log Message: ----------- pciutils, version bump to 3.4.0 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2015-10-05 17:20:17 UTC (rev 7259) +++ branches/1.0/package/pciutils/pciutils.mk 2015-10-05 17:38:04 UTC (rev 7260) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.3.1 +PCIUTILS_VERSION = 3.4.0 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci PCIUTILS_INSTALL_STAGING = YES # Depend on linux to define LINUX_VERSION_PROBED This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-01-04 16:43:10
|
Revision: 7440 http://sourceforge.net/p/astlinux/code/7440 Author: abelbeck Date: 2016-01-04 16:43:07 +0000 (Mon, 04 Jan 2016) Log Message: ----------- pciutils, version bump to 3.4.1, build system cleanup Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2016-01-03 16:23:40 UTC (rev 7439) +++ branches/1.0/package/pciutils/pciutils.mk 2016-01-04 16:43:07 UTC (rev 7440) @@ -4,21 +4,30 @@ # ############################################################# -PCIUTILS_VERSION = 3.4.0 -PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci +PCIUTILS_VERSION = 3.4.1 +PCIUTILS_SITE = $(BR2_KERNEL_MIRROR)/software/utils/pciutils +PCIUTILS_SOURCE = pciutils-$(PCIUTILS_VERSION).tar.xz PCIUTILS_INSTALL_STAGING = YES # Depend on linux to define LINUX_VERSION_PROBED PCIUTILS_DEPENDENCIES = linux -PCIUTILS_ZLIB=no -PCIUTILS_DNS=no -PCIUTILS_SHARED=yes -PCIUTILS_KMOD=no -PCIUTILS_HWDB=no +PCIUTILS_MAKE_OPTS = \ + CC="$(TARGET_CC)" \ + HOST="$(KERNEL_ARCH)-linux" \ + OPT="$(TARGET_CFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ + RANLIB=$(TARGET_RANLIB) \ + AR=$(TARGET_AR) +PCIUTILS_MAKE_OPTS += HWDB=no +PCIUTILS_MAKE_OPTS += ZLIB=no +PCIUTILS_MAKE_OPTS += LIBKMOD=no +PCIUTILS_MAKE_OPTS += SHARED=yes +PCIUTILS_MAKE_OPTS += DNS=no + # Build after busybox since it's got a lightweight lspci ifeq ($(BR2_PACKAGE_BUSYBOX),y) - PCIUTILS_DEPENDENCIES += busybox +PCIUTILS_DEPENDENCIES += busybox endif define PCIUTILS_CONFIGURE_CMDS @@ -30,31 +39,22 @@ endef define PCIUTILS_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" \ - HOST="$(KERNEL_ARCH)-linux" \ - OPT="$(TARGET_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ - RANLIB=$(TARGET_RANLIB) \ - AR=$(TARGET_AR) \ - -C $(PCIUTILS_DIR) \ - SHARED=$(PCIUTILS_SHARED) \ - ZLIB=$(PCIUTILS_ZLIB) \ - DNS=$(PCIUTILS_DNS) \ - LIBKMOD=$(PCIUTILS_KMOD) \ - HWDB=$(PCIUTILS_HWDB) \ + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(PCIUTILS_MAKE_OPTS) \ PREFIX=/usr endef -# Ditch install-lib if SHARED is an option in the future define PCIUTILS_INSTALL_TARGET_CMDS - $(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \ - SHARED=$(PCIUTILS_SHARED) install install-lib - chmod 755 $(TARGET_DIR)/usr/lib/libpci.so.$(PCIUTILS_VERSION) # set permissions so it is stripped + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) $(PCIUTILS_MAKE_OPTS) \ + PREFIX=$(TARGET_DIR)/usr \ + install install-lib + chmod 755 $(TARGET_DIR)/usr/lib/libpci.so.$(PCIUTILS_VERSION) + rm -f $(TARGET_DIR)/usr/sbin/update-pciids endef define PCIUTILS_INSTALL_STAGING_CMDS - $(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(STAGING_DIR)/usr \ - SHARED=$(PCIUTILS_SHARED) install install-lib + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) $(PCIUTILS_MAKE_OPTS) \ + PREFIX=$(STAGING_DIR)/usr \ + install install-lib endef $(eval $(call GENTARGETS,package,pciutils)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-05-23 22:14:57
|
Revision: 7683 http://sourceforge.net/p/astlinux/code/7683 Author: abelbeck Date: 2016-05-23 22:14:55 +0000 (Mon, 23 May 2016) Log Message: ----------- pciutils, version bump to 3.5.1 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2016-05-23 21:42:22 UTC (rev 7682) +++ branches/1.0/package/pciutils/pciutils.mk 2016-05-23 22:14:55 UTC (rev 7683) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.4.1 +PCIUTILS_VERSION = 3.5.1 PCIUTILS_SITE = $(BR2_KERNEL_MIRROR)/software/utils/pciutils PCIUTILS_SOURCE = pciutils-$(PCIUTILS_VERSION).tar.xz PCIUTILS_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-10-04 14:38:42
|
Revision: 7877 http://sourceforge.net/p/astlinux/code/7877 Author: abelbeck Date: 2016-10-04 14:38:40 +0000 (Tue, 04 Oct 2016) Log Message: ----------- pciutils, version bump to 3.5.2 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2016-10-03 21:42:03 UTC (rev 7876) +++ branches/1.0/package/pciutils/pciutils.mk 2016-10-04 14:38:40 UTC (rev 7877) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.5.1 +PCIUTILS_VERSION = 3.5.2 PCIUTILS_SITE = $(BR2_KERNEL_MIRROR)/software/utils/pciutils PCIUTILS_SOURCE = pciutils-$(PCIUTILS_VERSION).tar.xz PCIUTILS_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2017-07-07 17:35:44
|
Revision: 8427 http://sourceforge.net/p/astlinux/code/8427 Author: abelbeck Date: 2017-07-07 17:35:41 +0000 (Fri, 07 Jul 2017) Log Message: ----------- pciutils, version bump to 3.5.5 Modified Paths: -------------- branches/1.0/package/pciutils/pciutils.mk Modified: branches/1.0/package/pciutils/pciutils.mk =================================================================== --- branches/1.0/package/pciutils/pciutils.mk 2017-07-07 15:36:37 UTC (rev 8426) +++ branches/1.0/package/pciutils/pciutils.mk 2017-07-07 17:35:41 UTC (rev 8427) @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.5.4 +PCIUTILS_VERSION = 3.5.5 PCIUTILS_SITE = $(BR2_KERNEL_MIRROR)/software/utils/pciutils PCIUTILS_SOURCE = pciutils-$(PCIUTILS_VERSION).tar.xz PCIUTILS_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |