Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Stop "make install" from falling over if DESTDIR is defined.
# $Id$ PROG= apm # CFLAGS+= -I/sys/i386/include # BINGRP= apm # BINMODE= 550 LINKS= ${DESTDIR}/usr/sbin/apm ${DESTDIR}/usr/sbin/zzz NOMAN= 1 .include <bsd.prog.mk>
# $Id: Makefile,v 1.1 1994/10/01 03:23:23 davidg Exp $ PROG= apm # CFLAGS+= -I/sys/i386/include # BINGRP= apm # BINMODE= 550 # LINKS= ${DESTDIR}/usr/sbin/apm ${DESTDIR}/usr/sbin/zzz NOMAN= 1 .include <bsd.prog.mk>
Fix battery module description to fit width of new description box. There will be a bunch more of these commits coming.
[Desktop Entry] Type=Link Name=Battery Name[de]= Name[es]=Batería Name[fr]= Name[it]= Name[ja]= Name[pt]= Name[pt_BR]= Name[zh_CN]= Name[zh_TW]= Icon=e-module-battery Comment=<hilight>Battery Gadget</hilight><br>A gadget to visualize your battery<br>status. Comment[de]= Comment[es]=<hilight>Dispositivo batería</hilight...
[Desktop Entry] Type=Link Name=Battery Name[de]= Name[es]=Batería Name[fr]= Name[it]= Name[ja]= Name[pt]= Name[pt_BR]= Name[zh_CN]= Name[zh_TW]= Icon=e-module-battery Comment=<hilight>Battery Gadget</hilight><br><br>A gadget to visualize your battery status. Comment[de]= Comment[es]=<hilight>Dispositivo batería</hiligh...
Fix broken standard library documentation building
ARG FROM_TAG=release-alpine FROM ponylang/ponyc:${FROM_TAG} RUN apk update \ && apk upgrade \ && apk add --update --no-cache \ bash \ git-fast-import \ libffi \ libffi-dev \ libressl \ libressl-dev \ python3 \ python3-dev \ py3-pip \ && pip3 install --upgrade pip \ && pip3 install mkdocs \ ...
ARG FROM_TAG=release-alpine FROM ponylang/ponyc:${FROM_TAG} RUN apk update \ && apk upgrade \ && apk add --update --no-cache \ bash \ git-fast-import \ libffi \ libffi-dev \ libressl \ libressl-dev \ python3 \ python3-dev \ py3-pip \ && pip3 install --upgrade pip \ && pip3 install mkdocs==1.3...
Add julia requirements (JSON)) to Dockerfile
FROM python:3.7-slim WORKDIR /root COPY ./requirements.txt /root/requirements.txt # TODO: copy in permanent code run stuff? ENV PYTHONIOENCODING=utf-8 ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' RUN apt-get update &&\ apt-get install -y build-essential &&\ apt-get install -y nodejs &&\ ap...
FROM python:3.7-slim WORKDIR /root COPY ./requirements.txt /root/requirements.txt # TODO: copy in permanent code run stuff? ENV PYTHONIOENCODING=utf-8 ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' # TODO: use REQUIRE file for julia? RUN apt-get update &&\ apt-get install -y curl &&\ apt-get ...
Fix ruby 2.3-dev package name. CRd by Randy <randy.antler@socrata.com>
FROM socrata/base MAINTAINER Socrata <sysadmin@socrata.com> RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get --force-yes -fuy install software-properties-common && \ DEBIAN_FRONTEND=noninteractive add-apt-repository -y ppa:brightbox/ruby-ng && \ DEBIAN_FRONTEND=non...
FROM socrata/base MAINTAINER Socrata <sysadmin@socrata.com> RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get --force-yes -fuy install software-properties-common && \ DEBIAN_FRONTEND=noninteractive add-apt-repository -y ppa:brightbox/ruby-ng && \ DEBIAN_FRONTEND=non...
Remove redundant files from the code coverage blacklist
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
Make Makefile take a relative path for CFLAGS. Submitted by: Remy Card <Remy.Card@masi.ibp.fr>
# Makefile for xten (Stark) 10/30/93 PROG= xten SRCS= xten.c CFLAGS+=-I. -I/usr/src/libexec/xtend MAN1= xten.1 .include <bsd.prog.mk>
# Makefile for xten (Stark) 10/30/93 PROG= xten SRCS= xten.c CFLAGS+=-I. -I${.CURDIR}/../../libexec/xtend MAN1= xten.1 .include <bsd.prog.mk>
Add module type for conf panel.
[Desktop Entry] Type=Link Name=Configuration Panel Name[it]=Pannello di configurazione Icon=e-module-conf Comment=<hilight>The E17 Configuration Panel</hilight> Comment[it]=<hilight>Il pannello di configurazione di E17</hilight>
[Desktop Entry] Type=Link Name=Configuration Panel Name[it]=Pannello di configurazione Icon=e-module-conf Comment=<hilight>The E17 Configuration Panel</hilight> Comment[it]=<hilight>Il pannello di configurazione di E17</hilight> X-Enlightenment-ModuleType=config
Make sure we run test coverage
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure...
Add the author as co-maintainer, a la mergemaster.
# $FreeBSD$ MAINTAINER= billf@FreeBSD.org MAN8= pkg_version.1 beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/pkg_version.pl ${DESTDIR}${BINDIR}/pkg_version .include <bsd.prog.mk>
# $FreeBSD$ MAINTAINER= billf@FreeBSD.org MAINTAINER+= bmah@CS.Sandia.GOV MAN8= pkg_version.1 beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/pkg_version.pl ${DESTDIR}${BINDIR}/pkg_version .include <bsd.prog.mk>
Fix Package Config file generator
@PACKAGE_INIT@ #Include targets file. This will create IMPORTED target MexIFace include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") check_required_components("@PROJECT_NAME@") #Setup paths to CMAKE utilities set(MexIFace_CMAKE_DIR @PACKAGE_MexIFace_CMAKE_INSTALL_DIR@) #Relative to this file's install lo...
@PACKAGE_INIT@ #Include targets file. This will create IMPORTED target MexIFace include("${CMAKE_CURRENT_LIST_DIR}/@EXPORT_TARGETS_NAME@.cmake") check_required_components("@PROJECT_NAME@") #Setup paths to CMAKE utilities set(MexIFace_CMAKE_DIR @PACKAGE_MexIFace_CMAKE_INSTALL_DIR@) #Relative to this file's install lo...
Add whitelist to phpunit config to enable code coverage reports
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="./vendor/autoload.php" colors="true"> <testsuites> <testsuite name="JallAopMonologBundle test suite"> <directory suffix="Test.php">./Tests</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="./vendor/autoload.php" colors="true"> <testsuites> <testsuite name="JallAopMonologBundle test suite"> <directory suffix="Test.php">./Tests</directory> </testsuite> </testsuites> <filter> <whitelist> ...
Test the new phpunit config
<?xml version="1.0" encoding="utf-8" ?> <phpunit backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" bootstrap="./src/Bugsnag/Autoload.php"> <testsuites> <testsuite name="Bugsnag tests"> ...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" ...
Set the binutils arch for as/nm correctly on the amd64 platform. As far as binutils is concerned, the amd64 platform is still called "x86-64"/"x86_64". Setting things from ${MACHINE_ARCH} breaks that.
# $FreeBSD$ .include "../Makefile.inc0" .PATH: ${SRCDIR}/binutils LIB= binutils SRCS+= arlex.l arparse.y arsup.c bucomm.c debug.c filemode.c \ ieee.c rdcoff.c rddbg.c rename.c stabs.c unwind-ia64.c \ wrstabs.c version.c binemul.c budemang.c emul_vanilla.c WARNS= 0 CFLAGS+= -DTARGET=\"${TARGET_ARCH}-unknown-freebsd...
# $FreeBSD$ .include "../Makefile.inc0" .PATH: ${SRCDIR}/binutils LIB= binutils SRCS+= arlex.l arparse.y arsup.c bucomm.c debug.c filemode.c \ ieee.c rdcoff.c rddbg.c rename.c stabs.c unwind-ia64.c \ wrstabs.c version.c binemul.c budemang.c emul_vanilla.c WARNS= 0 .if ${TARGET_ARCH} == "amd64" BINUTILS_ARCH=x86_64...
Add more restrictions for the tests
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" checkForUnintentionallyCoveredCode="true" > ...
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" beStrictAboutResourceUsageDuringSmallTests="true" ...
Remove my path information from config.
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="DynamoBasePath" value="C:\Users\Ian\Documents\GitHub\Dynamo\bin\AnyCPU\Debug"/> <add key="RequestedLibraryVersion" value="Version220"/> </appSettings> </configuration>
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="DynamoBasePath" value=""/> <add key="RequestedLibraryVersion" value="Version220"/> </appSettings> </configuration>
Install the openssl(1) manpage with an MLINK from ssl(8) to at least put something in the location where OpenSSH likes to point.
# $FreeBSD$ PROG= openssl MAINTAINER= kris LDADD= -lssl -lcrypto NOMAN= noman OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto CFLAGS+= -DMONOLITH -I${.CURDIR} WITH_RSA?= YES .if ${WITH_RSA} == NO CFLAGS+= -DNO_RSA -DNO_SSL2 .endif SRCS= app_rand.c apps...
# $FreeBSD$ OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto .PATH: ${OPENSSL_SRC} ${OPENSSL_SRC}/../doc/apps/ PROG= openssl MAINTAINER= kris LDADD= -lssl -lcrypto MAN1= openssl.1 MLINKS= openssl.1 ssl.8 CFLAGS+= -DMONOLITH -I${.CURDIR} WITH_RSA?= YES .i...
Rename the root PHPUnit configuration file and enable strict mode in all
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="./vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" strict="false" verbose="false"> <testsuites> <testsuite name="Axstrad\TestBundle"> <file>./Functiona...
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="./vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" strict="true" verbose="false"> <testsuites> <testsuite name="Axstrad\TestBundle"> <file>./Functional...
Set proper destination directory for cron. Submitted by: jkh
PROG= cron SRCS= cron.c database.c do_command.c job.c user.c popen.c MAN3= bitstring.3 MAN8= cron.8 LDADD+= -L${.CURDIR}/../lib -lcron .include <bsd.prog.mk>
BINDIR?= /usr/sbin PROG= cron SRCS= cron.c database.c do_command.c job.c user.c popen.c MAN3= bitstring.3 MAN8= cron.8 LDADD+= -L${.CURDIR}/../lib -lcron .include <bsd.prog.mk>
Add -DFREEBSD_AOUT to CFLAGS to ensure we get the correct definitions from <link.h>
# $Id: Makefile,v 1.7 1997/09/02 21:54:38 jdp Exp $ PROG= ldd SRCS= ldd.c sods.c CFLAGS+= -Wall .include <bsd.prog.mk>
# $Id: Makefile,v 1.8 1998/06/01 13:55:12 peter Exp $ PROG= ldd SRCS= ldd.c sods.c CFLAGS+= -Wall -DFREEBSD_AOUT .include <bsd.prog.mk>
Fix wording as suggested by Zachary Goldberg.
[Desktop Entry] Type=Link Name=Configuration - Profiles Icon=e-module-conf_profiles Comment=<hilight>E17 Configuration Applet</hilight><br>Allows to manage configuration profiles.
[Desktop Entry] Type=Link Name=Configuration - Profiles Icon=e-module-conf_profiles Comment=<hilight>E17 Configuration Applet</hilight><br>Allows management of configuration profiles.
Increase verbosity of run-tool-opts script
#!/usr/bin/env bash TOOL_NAME=${tool_name} OPTS_NAME=${opts_name} TOOL=${tool} EXP_NAME=$$(python -m spacer.exp_name ${idx}) OUT=${out_dir}/$${TOOL_NAME}.$${OPTS_NAME}.$${EXP_NAME} echo "Creating directory: $$OUT" mkdir -p $$OUT PARALLEL=${parallel} JOBS=${jobs} echo "Starting parallel with $$JOBS jobs..." time $...
#!/usr/bin/env bash TOOL_NAME=${tool_name} OPTS_NAME=${opts_name} TOOL=${tool} EXP_NAME=$$(python -m spacer.exp_name ${idx}) OUT=${out_dir}/$${TOOL_NAME}.$${OPTS_NAME}.$${EXP_NAME} echo "Creating directory: $$OUT" mkdir -p $$OUT PARALLEL=${parallel} JOBS=${jobs} echo "Experiment: $${EXP_NAME}" echo "Output direct...
Install requirements based on the requirements.txt in Docker
FROM heroku/cedar:14 WORKDIR /app ENV WORKSPACE_DIR=/app/support/build RUN apt-get update && apt-get install -y python-pip RUN pip install 'bob-builder>=0.0.10' 's3cmd>=1.6.0' ADD . /app
FROM heroku/cedar:14 WORKDIR /app ENV WORKSPACE_DIR=/app/support/build RUN apt-get update && apt-get install -y python-pip ADD requirements.txt /app/requirements.txt RUN pip install -r /app/requirements.txt ADD . /app
Add python package that is needed by SLURM at installation
FROM debian MAINTAINER Artem Polyakov <artemp@mellanox.com> # Install some ps and Midnight Commander RUN apt-get update && \ apt-get install -y procps mc && \ apt-get install -y gcc make && \ apt-get install -y wget bzip2 && \ apt-get install -y git # Prepare tools for compilation COPY ./compilation /...
FROM debian MAINTAINER Artem Polyakov <artemp@mellanox.com> # Install some ps and Midnight Commander RUN apt-get update && \ apt-get install -y procps mc && \ apt-get install -y gcc make && \ apt-get install -y wget bzip2 && \ apt-get install -y git && \ apt-get install -y python # Prepare tools f...
Add code coverage in phpunit.
<?xml version="1.0" encoding="utf-8" ?> <phpunit bootstrap="./vendor/autoload.php"> <testsuites> <testsuite name="SugarCli's test suite"> <directory>./tests</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="utf-8" ?> <phpunit bootstrap="./vendor/autoload.php"> <testsuites> <testsuite name="SugarCli's test suite"> <directory>./tests</directory> </testsuite> </testsuites> <filter> <whitelist addUncoveredFilesFromWhitelist="true" processUncoveredF...
Make private launcher only show in search in Pantheon
[Desktop Entry] Version=1.0 Type=Application _Name=Midori Private Browsing _GenericName=Private Browsing _Comment=Open a new private browsing window Categories=GTK;Network;WebBrowser; Exec=midori --private %U Icon=midori Terminal=false StartupNotify=true X-Osso-Type=application/x-executable X-Osso-Service=midori
[Desktop Entry] Version=1.0 Type=Application _Name=Midori Private Browsing _GenericName=Private Browsing _Comment=Open a new private browsing window Categories=GTK;Network;WebBrowser; Exec=midori --private %U Icon=midori Terminal=false StartupNotify=true NotShowIn=Pantheon X-Osso-Type=application/x-executable X-Osso-Se...
Add new and Latin15 names
# @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ PROG= calendar SRCS= calendar.c io.c day.c ostern.c paskha.c CFLAGS+= -Wall INTER= de_DE.ISO_8859-1 hr_HR.ISO_8859-2 ru_RU.KOI8-R TEXTMODE?= 444 beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \ ${.CURDIR}/calendars/calendar.* ${D...
# @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ PROG= calendar SRCS= calendar.c io.c day.c ostern.c paskha.c CFLAGS+= -Wall INTER= de_DE.ISO_8859-1 hr_HR.ISO_8859-2 ru_RU.KOI8-R DE_LINKS= de_DE.ISO8859-1 de_DE.ISO_8859-15 de_DE.ISO8859-15 HR_LINKS= hr_HR.ISO8859-2 TEXTMODE?= 444 beforeinstall:...
Install a manpage for more.
# Makefile for less # # $FreeBSD$ PROG= less SRCS= main.c screen.c brac.c ch.c charset.c cmdbuf.c command.c decode.c \ edit.c filename.c forwback.c help.c ifile.c input.c jump.c line.c \ linenum.c lsystem.c mark.c optfunc.c option.c opttbl.c os.c output.c \ position.c prompt.c search.c signal.c tags.c ttyin.c versi...
# Makefile for less # # $FreeBSD$ PROG= less SRCS= main.c screen.c brac.c ch.c charset.c cmdbuf.c command.c decode.c \ edit.c filename.c forwback.c help.c ifile.c input.c jump.c line.c \ linenum.c lsystem.c mark.c optfunc.c option.c opttbl.c os.c output.c \ position.c prompt.c search.c signal.c tags.c ttyin.c versi...
Remove entire field div instead of just the text field
/ replace_contents "[data-hook='presentation']" = label :new_variant, option.option_type.presentation - if @variant.new_record? = select(:new_variant, option.option_type.presentation, option.option_type.option_values.collect {|ov| [ ov.presentation, ov.id ] }, {}, {:class => 'select2 fullwidth'}) - else - opt = @v...
/ replace "[data-hook='presentation']" - unless variant_unit_option_type?(option.option_type) .field{"data-hook" => "presentation"} = label :new_variant, option.option_type.presentation - if @variant.new_record? = select(:new_variant, option.option_type.presentation, option.option_type.option_values.co...
Use execute_process instead of deprecated exec_program, and doesn't use unnecessary IS_SYMLINK.
if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") message(FATAL_ERROR "Cannot find install manifest: @CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) string(REGEX REP...
if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") message(FATAL_ERROR "Cannot find install manifest: @CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) string(REGEX REP...
Add Categories for Xfce and Gnome
[Desktop Entry] Type=Application Name=Window Effects GenericName=Compton Configuration Comment=Configure Compton window effects TryExec=compton-conf Exec=compton-conf Icon=preferences-system-windows Categories=Settings;DesktopSettings;Qt;LXQt; #TRANSLATIONS_DIR=translations
[Desktop Entry] Type=Application Name=Window Effects GenericName=Compton Configuration Comment=Configure Compton window effects TryExec=compton-conf Exec=compton-conf Icon=preferences-system-windows Categories=Settings;DesktopSettings;Qt;LXQt;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings;X-GNOME-PersonalSettings; #TRA...
Update nginx:stable-alpine Docker digest to d14e35b
# build stage FROM node:lts-alpine@sha256:0a6a21d28509f56155007444075ef4fdd36eef0a97924623cb641d3766e3b8d3 AS build-stage COPY common /common WORKDIR /app COPY frontend/package*.json ./ RUN npm ci COPY frontend . RUN npm run build # production stage FROM nginx:stable-alpine@sha256:6386f5445b60d9b48efdc9034111b7ce620...
# build stage FROM node:lts-alpine@sha256:0a6a21d28509f56155007444075ef4fdd36eef0a97924623cb641d3766e3b8d3 AS build-stage COPY common /common WORKDIR /app COPY frontend/package*.json ./ RUN npm ci COPY frontend . RUN npm run build # production stage FROM nginx:stable-alpine@sha256:d14e35b17d5e0c090d6d74a59b54e804ea1...
Add HTML coverage report and exclude vendor folder
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
Remove syntaxCheck attribute for phpunit
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
Remove no-longer valid log option 'title'
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" enforceTimeLimit="true" bootstrap="./tests/bootstrap.php" colors="true" ...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" enforceTimeLimit="true" bootstrap="./tests/bootstrap.php" colors="true" ...
Add stop call systemd in RedHat uninstall.
#!/bin/sh # errors shouldn't cause script to exit set +e if [ "$1" = "0" ] ; then # uninstall if [ -f /etc/init/shiny-server.conf ] then sudo initctl stop shiny-server 2>/dev/null fi if [ -f /etc/init.d/shiny-server ] then sudo service shiny-server stop 2>/dev/null fi fi ...
#!/bin/sh # errors shouldn't cause script to exit set +e if [ "$1" = "0" ] ; then # uninstall if [ -f /etc/init/shiny-server.conf ] then sudo initctl stop shiny-server 2>/dev/null elif [ -f /etc/systemd/system/shiny-server.service ] then systemctl stop shiny-server 2>/dev/null el...
Set Ubuntu version to Xenial, fetch NPB sources using Dockerfile ADD command.
FROM ubuntu:latest WORKDIR /home # Install required libraries, download benchmark suite and untar files RUN apt-get update && apt-get install -y \ wget \ && wget -nv http://www.nas.nasa.gov/assets/npb/NPB3.3.1.tar.gz \ && tar -xf NPB3.3.1.tar.gz \ && rm NPB3.3.1.tar.gz \ && apt-get clean \ && rm -rf /var/lib/apt/li...
FROM ubuntu:xenial ADD http://www.nas.nasa.gov/assets/npb/NPB3.3.1.tar.gz /home RUN cd /home && tar xf NPB3.3.1.tar.gz && rm NPB3.3.1.tar.gz WORKDIR /home/NPB3.3.1
Bring PHPUnit config PHP version requirement in line with Composer config.
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" verbose="true" bootstrap="tests/bootstrap.php"> <testsuites> <testsuite name="Rych\Random Tests"> <directory suffix="Test.php" phpVersion="5.3.8" phpVersionOperator=">=">./tests</directory> </testsuite> </testsuites> </php...
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" verbose="true" bootstrap="tests/bootstrap.php"> <testsuites> <testsuite name="Rych\Random Tests"> <directory suffix="Test.php" phpVersion="5.3.4" phpVersionOperator=">=">./tests</directory> </testsuite> </testsuites> </php...
Add HTML output of coverage
<phpunit bootstrap="./vendor/autoload.php"> <testsuites> <testsuite> <directory suffix="Test.php">./app/tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./app/src</directory> </whitelist> </filter> <logging> ...
<phpunit bootstrap="./vendor/autoload.php"> <testsuites> <testsuite> <directory suffix="Test.php">./app/tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./app/src</directory> </whitelist> </filter> <logging> ...
Exclude files from test coverage that are not compatible with PHP 7.1+
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true"> <testsuites> <testsuite name="zend-filter Test Suite"> ...
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true"> <testsuites> <testsuite name="zend-filter Test Suite"> ...
Fix the apt usage in the dockerfile
FROM heroku/cedar:14 WORKDIR /app ENV WORKSPACE_DIR=/app/support/build RUN apt-get update RUN apt-get install -y python-pip RUN pip install 'bob-builder>=0.0.10' 's3cmd>=1.6.0' ADD . /app
FROM heroku/cedar:14 WORKDIR /app ENV WORKSPACE_DIR=/app/support/build RUN apt-get update && apt-get install -y python-pip RUN pip install 'bob-builder>=0.0.10' 's3cmd>=1.6.0' ADD . /app
Add the IA-64 unwind handling (needed for readelf).
# # $FreeBSD$ # .include "../Makefile.inc0" .PATH: ${SRCDIR}/binutils LIB= binutils SRCS+= arlex.l arparse.y arsup.c bucomm.c debug.c filemode.c \ ieee.c rdcoff.c rddbg.c rename.c stabs.c wrstabs.c version.c CFLAGS+= -DTARGET=\"${TARGET_ARCH}-unknown-freebsd\" CFLAGS+= -DVERSION=\"${VERSION}\" CFLAGS+= -I${SRCDI...
# # $FreeBSD$ # .include "../Makefile.inc0" .PATH: ${SRCDIR}/binutils LIB= binutils SRCS+= arlex.l arparse.y arsup.c bucomm.c debug.c filemode.c \ ieee.c rdcoff.c rddbg.c rename.c stabs.c unwind-ia64.c wrstabs.c version.c CFLAGS+= -DTARGET=\"${TARGET_ARCH}-unknown-freebsd\" CFLAGS+= -DVERSION=\"${VERSION}\" CFLA...
Remove explicit testing of the NOFSCHG variable. Its functionality (in this file) is now superceeded by INSTALLFLAGS_EDIT in bsd.{prog,kmod,lib}.mk.
# $Id$ # PROG= man SRCS= man.c manpath.c glob.c MAN1= man.1 BINOWN= man BINMODE=4555 .if !defined(NOFSCHG) INSTALLFLAGS+= -fschg .endif CFLAGS+= -I${LIBDESTDIR} DPADD= ${LIBMAN} LDADD= ${LIBMAN} CFLAGS+= -I${.CURDIR}/../lib -DSTDC_HEADERS -DPOSIX -DHAS_TROFF CFLAGS+= -DDO_COMPRESS -DALT_SYSTEMS -DSETREUID -DCATMOD...
# $Id: Makefile,v 1.25 1999/07/05 02:46:20 hoek Exp $ # PROG= man SRCS= man.c manpath.c glob.c MAN1= man.1 BINOWN= man BINMODE=4555 INSTALLFLAGS+= -fschg CFLAGS+= -I${LIBDESTDIR} DPADD= ${LIBMAN} LDADD= ${LIBMAN} CFLAGS+= -I${.CURDIR}/../lib -DSTDC_HEADERS -DPOSIX -DHAS_TROFF CFLAGS+= -DDO_COMPRESS -DALT_SYSTEMS -...
Add 'original' to defaced view to remove warning
<!-- insert_bottom "[data-hook='admin_tabs'], #main-sidebar" --> <% if can? :admin, Spree::GiftCard %> <ul class="nav nav-sidebar"> <%= tab Spree.t(:gift_cards), icon: 'credit-card', url: spree.admin_gift_cards_path %> </ul> <% end %>
<!-- insert_bottom "[data-hook='admin_tabs'], #main-sidebar" original "fe59e93696d1ff1c3d24664cdf404c4189f80a22" --> <% if can? :admin, Spree::GiftCard %> <ul class="nav nav-sidebar"> <%= tab Spree.t(:gift_cards), icon: 'credit-card', url: spree.admin_gift_cards_path %> </ul> <% end %>
Fix typo now we can use it in external project
@PACKAGE_INIT@ find_package(Qt5 @Qt5Core_VERSION_MAJOR@.@Qt5Core_VERSION_MINOR@ NO_MODULE REQUIRED COMPONENTS Core Gui) include("${CMAKE_CURRENT_LIST_DIR}/KF5SyntaxHighlightingTarget.cmake")
@PACKAGE_INIT@ find_package(Qt5 @Qt5Core_VERSION_MAJOR@.@Qt5Core_VERSION_MINOR@ NO_MODULE REQUIRED COMPONENTS Core Gui) include("${CMAKE_CURRENT_LIST_DIR}/KF5SyntaxHighlightingTargets.cmake")
Correct use of title tag
[Desktop Entry] Type=Link Name=Illume Icon=e-module-illume X-Enlightenment-ModuleType=system Comment=<hilight>Embedded</hilight><br>This is a module to make Enlightenment tuned for embedded touchscreen<br>displays such as on phones and web-pads with windows always<br>being fullscreen and having a simplified application...
[Desktop Entry] Type=Link Name=Illume Icon=e-module-illume X-Enlightenment-ModuleType=system Comment=<title>Illume for Embedded</title><br>This is a module to make Enlightenment tuned for embedded touchscreen<br>displays such as on phones and web-pads with windows always<br>being fullscreen and having a simplified appl...
Update clang-format version used in CI
FROM debian:buster-slim LABEL maintainer="tobias.mayer@tenzir.com" ENV CC gcc-8 ENV CXX g++-8 # Compiler and dependency setup RUN apt-get -qq update && apt-get -qqy install \ gcc-8 g++-8 cmake git-core ninja-build clang-format-7 libbenchmark-dev \ python3 python3-venv libpcap-dev libssl-dev libatomic1 jq tcpd...
FROM debian:buster-slim LABEL maintainer="tobias.mayer@tenzir.com" ENV CC gcc-8 ENV CXX g++-8 # Compiler and dependency setup RUN apt-get -qq update && apt-get -qqy install \ gcc-8 g++-8 cmake git-core ninja-build libbenchmark-dev \ python3 python3-pip python3-venv libpcap-dev libssl-dev libatomic1 jq \ t...
Make it set-uid until procfs is fixed.
# @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= w SRCS= fmt.c pr_time.c proc_compare.c w.c MAN1= w.1 uptime.1 DPADD= ${LIBKVM} LDADD= -lkvm BINGRP= kmem BINMODE=2555 LINKS= ${BINDIR}/w ${BINDIR}/uptime .PATH: ${.CURDIR}/../../bin/ps .include <bsd.prog.mk>
# @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= w SRCS= fmt.c pr_time.c proc_compare.c w.c MAN1= w.1 uptime.1 DPADD= ${LIBKVM} LDADD= -lkvm BINOWN= root BINMODE=4555 LINKS= ${BINDIR}/w ${BINDIR}/uptime .PATH: ${.CURDIR}/../../bin/ps .include <bsd.prog.mk>
Revert "default rstudio pam profile to /etc/pam.d/login"
#!/bin/sh # errors shouldn't cause script to exit set +e # add rserver user account useradd -r rstudio-server # create softlink to admin script in /usr/sbin ln -f -s ${CMAKE_INSTALL_PREFIX}/bin/rstudio-server /usr/sbin/rstudio-server # write installed indicator then cooperatively suspend active sessions # (so the...
#!/bin/sh # errors shouldn't cause script to exit set +e # add rserver user account useradd -r rstudio-server # create softlink to admin script in /usr/sbin ln -f -s ${CMAKE_INSTALL_PREFIX}/bin/rstudio-server /usr/sbin/rstudio-server # write installed indicator then cooperatively suspend active sessions # (so the...
Add line break so it fits in min size.
[Desktop Entry] Type=Link Name=Configuration - Profiles Icon=e-module-conf_profiles Comment=<hilight>E17 Configuration Applet</hilight><br>Allows management of configuration profiles.
[Desktop Entry] Type=Link Name=Configuration - Profiles Icon=e-module-conf_profiles Comment=<hilight>E17 Configuration Applet</hilight><br>Allows management of configuration<br>profiles.
Use the right man page. Submitted by: jkh
# @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= showmount .include <bsd.prog.mk>
# @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= showmount MAN8= showmount.8 .include <bsd.prog.mk>
Revert "Add bazel to the docker image"
FROM node:6.10.2-slim RUN \ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ wget -q -O - https://bazel.build/bazel-release.pub.gpg | apt-key add - RUN \ echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \ echo "deb ht...
FROM node:6.10.2-slim RUN \ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \ apt-get update && \ apt-get install -y google-chrome-stable xvfb openjdk-7-jdk ssh git gcc...
Update PHPUnit XML schema location
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/schema/9.3.xsd" bootstrap="./vendor/autoload.php" colors="true" > <testsuites> <testsuite name="Test suite"> <d...
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="./vendor/autoload.php" colors="true" > <testsuites> <testsuite name="Test suite"> ...
Remove getopt*.c, we already have compatible getopt_long() in libc
# $FreeBSD$ SORTDIR= ${.CURDIR}/../../../contrib/gnu-sort .PATH: ${SORTDIR}/lib ${SORTDIR}/src ${SORTDIR}/man PROG= sort SRCS= sort.c \ argmatch.c \ dup-safer.c \ error.c \ fopen-safer.c \ getopt.c \ getopt1.c \ hard-locale.c \ human.c \ long-options.c \ memcoll.c \ physmem.c \ posixver.c \ quote.c \ ...
# $FreeBSD$ SORTDIR= ${.CURDIR}/../../../contrib/gnu-sort .PATH: ${SORTDIR}/lib ${SORTDIR}/src ${SORTDIR}/man PROG= sort SRCS= sort.c \ argmatch.c \ dup-safer.c \ error.c \ fopen-safer.c \ hard-locale.c \ human.c \ long-options.c \ memcoll.c \ physmem.c \ posixver.c \ quote.c \ quotearg.c \ version-etc...
Install pkill(1), aka pgrep(1), to /bin so that rc scripts can use this small and nifty utility. Create compatibility symlinks from /usr/bin for the time being to avoid breaking custom scripts relying on the hardcoded path to the utility.
# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $ # $FreeBSD$ PROG= pkill WARNS?= 5 DPADD= ${LIBKVM} LDADD= -lkvm LINKS= ${BINDIR}/pkill ${BINDIR}/pgrep MLINKS= pkill.1 pgrep.1 .include <bsd.prog.mk>
# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $ # $FreeBSD$ BINDIR= /bin PROG= pkill WARNS?= 5 DPADD= ${LIBKVM} LDADD= -lkvm LINKS= ${BINDIR}/pkill ${BINDIR}/pgrep MLINKS= pkill.1 pgrep.1 SYMLINKS= ${BINDIR}/pkill /usr/bin/pkill SYMLINKS+= ${BINDIR}/pgrep /usr/bin/pgrep .include <bsd.prog.mk>
Fix the bootstrapping aid from revision 1.9. WORLD was renamed to BOOTSTRAPPING.
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ .PATH: ${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../lib/libc/gen PROG= mtree MAN= mtree.8 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \ strtofflags.c .if !defined(WORLD) CFLAGS+= -DMD5 -DSHA1 -DRMD160 DPADD= ${LIBMD} LDADD= -lmd ...
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ .PATH: ${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../lib/libc/gen PROG= mtree MAN= mtree.8 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \ strtofflags.c .if !defined(BOOTSTRAPPING) CFLAGS+= -DMD5 -DSHA1 -DRMD160 DPADD= ${LIBMD} LDAD...
Add env variable to avoid error with mysql client
FROM ubuntu:trusty MAINTAINER FENG, HONGLIN <hfeng@tutum.co> RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db && \ echo 'deb http://mirrors.syringanetworks.net/mariadb/repo/10.1/ubuntu trusty main' >> /etc/apt/sources.list && \ echo 'deb-src http://mirrors.syringanetwork...
FROM ubuntu:trusty MAINTAINER FENG, HONGLIN <hfeng@tutum.co> RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db && \ echo 'deb http://mirrors.syringanetworks.net/mariadb/repo/10.1/ubuntu trusty main' >> /etc/apt/sources.list && \ echo 'deb-src http://mirrors.syringanetwork...
Reduce the number of steps and install required testing deps
from saltstack/ubuntu-13.04-minimal MAINTAINER SaltStack, Inc. # Install Testing Dependencies RUN apt-get install -y -o DPkg::Options::=--force-confold supervisor RUN apt-get install -y -o DPkg::Options::=--force-confold rabbitmq-server RUN apt-get install -y -o DPkg::Options::=--force-confold ruby RUN apt-get install...
from saltstack/ubuntu-13.04-minimal MAINTAINER SaltStack, Inc. # Update System RUN apt-get update && apt-get upgrade -y -o DPkg::Options::=--force-confold # Install Testing Dependencies RUN apt-get install -y -o DPkg::Options::=--force-confold \ python-dev \ python-pip \ python-setuptools \ python-virtualenv ...
Disable assertions in PR builds
FROM ubuntu:16.04 RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ make \ file \ curl \ ca-certificates \ python2.7 \ git \ cmake \ sudo \ gdb \ llvm-6.0-tools \ libedit-dev \ zlib1g-dev \ xz-utils COPY scripts/sccache.sh /scripts/ RUN sh /scripts/sccache.sh # usin...
FROM ubuntu:16.04 RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ make \ file \ curl \ ca-certificates \ python2.7 \ git \ cmake \ sudo \ gdb \ llvm-6.0-tools \ libedit-dev \ zlib1g-dev \ xz-utils COPY scripts/sccache.sh /scripts/ RUN sh /scripts/sccache.sh # usin...
Rename the root PHPUnit configuration file and enable strict mode in all
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" strict="false" verbose="false"> <testsuites> <testsuite name="Axstrad\Bundle\ExtraFrameworkBundle"> <directory suffix="Test.p...
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" strict="true" verbose="false"> <testsuites> <testsuite name="Axstrad\Bundle\ExtraFrameworkBundle"> <directory suffix="Test.ph...
Switch back to golang base w/ added pkgs
FROM ubuntu:latest ARG goversion=1.12 ENV HOME=/home/gitpod ENV PATH=${PATH}:${HOME}/go/bin:/usr/local/go/bin RUN apt-get update && \ apt-get -y upgrade && \ apt-get install -y \ curl \ git \ gcc \ jq \ openssh-client \ python \ python-yaml \ ruby \ zip \ ...
FROM golang:1.12.0 RUN apt-get update && \ apt-get -y upgrade && \ apt-get install -y \ curl \ git \ jq \ openssh-client \ python \ python-yaml \ ruby \ zip \ unzip && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*
Fix issues with ENV load order in tests
<?xml version="1.0" encoding="UTF-8"?> <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html --> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd" backupGlobals="false" colors="true" ...
<?xml version="1.0" encoding="UTF-8"?> <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html --> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd" backupGlobals="false" colors="true" ...
Add module.php to code coverage test
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="Bootstrap.php" colors="true" verbose="true" backupGlobals="false" backupStaticAttributes="false" stopOnFailure="false"> <testsuites> <testsuite name="TwbBundleTest"> <directory suffix=".php">....
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="Bootstrap.php" colors="true" verbose="true" backupGlobals="false" backupStaticAttributes="false" stopOnFailure="false"> <testsuites> <testsuite name="TwbBundleTest"> <directory suffix=".php">....
Use SRCDIR instead of PATH
# $FreeBSD$ INFO = bison INFOSECTION= "Programming & development tools." INFOENTRY_bison= "* Bison: (bison). The GNU YACC-compatible parser generator." .PATH: ${.CURDIR}/../../../../contrib/bison .include <bsd.info.mk>
# $FreeBSD$ INFO = bison INFOSECTION= "Programming & development tools." INFOENTRY_bison= "* Bison: (bison). The GNU YACC-compatible parser generator." SRCDIR= ${.CURDIR}/../../../../contrib/bison .include <bsd.info.mk>
Fix module icon for ofono.
[Desktop Entry] Type=Link Name=Mobile Modems Manager Name[pt_BR]=Gerenciador de modems móveis Name[es]=Gerenciador de modems moviles Name[it]=Gestore di modem mobili Name[fr]=Gestionnaire de modems mobiles Icon=e-module-connman Comment=<title>Mobile Modems Manager Gadget</title><br>Control mobile modems. Comment[pt_BR]...
[Desktop Entry] Type=Link Name=Mobile Modems Manager Name[pt_BR]=Gerenciador de modems móveis Name[es]=Gerenciador de modems moviles Name[it]=Gestore di modem mobili Name[fr]=Gestionnaire de modems mobiles Icon=e-module-ofono Comment=<title>Mobile Modems Manager Gadget</title><br>Control mobile modems. Comment[pt_BR]=<...
Use git option rev-parse instead of non-working option describe in genversion
#! /bin/sh srcdir=@abs_srcdir@ PACKAGE=@PACKAGE@ VERSION=@VERSION@ if test -f $srcdir/.git/HEAD; then GIT_REPO="$srcdir/.git" GIT_HEAD_ID=`GIT_DIR=$GIT_REPO git describe` elif test -f $srcdir/CLOOG_HEAD; then GIT_HEAD_ID=`cat $srcdir/CLOOG_HEAD` else GIT_HEAD_ID="$PACKAGE-$VERSION-UNKNOWN" fi echo $GI...
#! /bin/sh srcdir=@abs_srcdir@ PACKAGE=@PACKAGE@ VERSION=@VERSION@ if test -f $srcdir/.git/HEAD; then GIT_REPO="$srcdir/.git" GIT_HEAD_ID="$PACKAGE-$VERSION-`GIT_DIR=$GIT_REPO git rev-parse --short HEAD`" elif test -f $srcdir/CLOOG_HEAD; then GIT_HEAD_ID=`cat $srcdir/CLOOG_HEAD` else GIT_HEAD_ID="$PACK...
Switch base image Alpine doesn't handle libc the same as ubuntu, so when we build on ubuntu, we can't reuse that image
FROM alpine COPY . /pufferpanel/ RUN ls -l /pufferpanel/ RUN echo '{}' > /pufferpanel/config.json ENV PATH "/pufferpanel:${PATH}" EXPOSE 8080 CMD ["pufferpanel"]
FROM debian:10-slim COPY pufferpanel /pufferpanel/ COPY client/dist /pufferpanel/client/dist/ RUN echo '{}' > /pufferpanel/config.json ENV PATH "/pufferpanel:${PATH}" EXPOSE 8080 CMD ["pufferpanel"]
Modify configuration file for superbuild find
# - Config file for the FADTTS package # It defines the following variables # FADTTS_INCLUDE_DIRS - include directories # FADTTS_LIBRARIES - libraries generated by FADTTS # FADTTS_EXECUTABLES - the FADTTS executable # Compute paths get_filename_component(FADTTS_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) s...
# - Config file for the FADTTS package # It defines the following variables # FADTTS_INCLUDE_DIRS - include directories # FADTTS_LIBRARIES - libraries generated by FADTTS # FADTTS_EXECUTABLES - the FADTTS executable # Compute paths get_filename_component(FADTTS_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) ...
Resolve links pointing to wrapper script.
#!/bin/sh # This script overload the dynamic library path. appname=$(basename $0 | sed s,\.sh$,,) dirname=$(dirname $0) case "$dirname" in /*) dirname="$PWD/$dirname" ;; esac paths="$dirname/../lib/$appname" LD_LIBRARY_PATH="$paths" export LD_LIBRARY_PATH DYLD_LIBRARY_PATH="$paths" export DYLD_LIBRARY_PATH "$di...
#!/bin/sh # This script overload the dynamic library path. # Resolve links referring to me. if test -L "$0"; then exec $(readlink -f "$0") fi appname=$(basename $0 | sed s,\.sh$,,) dirname=$(dirname $0) case "$dirname" in /*) dirname="$PWD/$dirname" ;; esac paths="$dirname/../lib/$appname" LD_LIBRARY_PATH=...
Remove deprecated strict configuration for PHPUnit
<?xml version="1.0" encoding="utf-8"?> <phpunit bootstrap="test/bootstrap.php" colors="true" stopOnError="false" stopOnFailure="false" stopOnSkipped="false" stopOnIncomplete="false" backupGlobals="false" processIsolation="false" strict="true" verbose="false" mapTestClassNameToCoveredClassName="true" > <test...
<?xml version="1.0" encoding="utf-8"?> <phpunit bootstrap="test/bootstrap.php" colors="true" stopOnError="false" stopOnFailure="false" stopOnSkipped="false" stopOnIncomplete="false" backupGlobals="false" processIsolation="false" verbose="false" mapTestClassNameToCoveredClassName="true" > <testsuites> <test...
Exclude tests from code coverage for php function mocking
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="./phpunit.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" syntaxCheck="false"> <testsuites> ...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="./phpunit.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" syntaxCheck="false"> <testsuites> ...
Change composer installation for the new
FROM alpine:3.3 MAINTAINER Ricardo Quintaniha <ricardo.aquintanilha@gmail.com> RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; RUN apk add --update php \ php-cli \ php-pdo \ php-pdo_sqlite \ php-pdo_mysql \ php-pdo_pgsql \ php-redis@testing \ ph...
FROM alpine:3.3 MAINTAINER Ricardo Quintaniha <ricardo.aquintanilha@gmail.com> RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; RUN apk add --update php \ php-cli \ php-pdo \ php-pdo_sqlite \ php-pdo_mysql \ php-pdo_pgsql \ php-redis@testing \ ph...
Add pg support to Rust image
FROM ubuntu:17.04 RUN \ apt-get update -qq && \ apt-get install -y --no-install-recommends \ build-essential \ ca-certificates \ curl \ libssl-dev \ libsqlite3-dev \ pkg-config \ sqlite3 RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly ENV PATH=/root/.cargo/bin:$PATH
FROM ubuntu:17.04 RUN \ apt-get update -qq && \ apt-get install -y --no-install-recommends \ build-essential \ ca-certificates \ curl \ libpq-dev \ libsqlite3-dev \ libssl-dev \ pkg-config \ sqlite3 RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly ENV PATH=/root/.cargo...
Disable phpcs sniff for BC compat
<?xml version="1.0"?> <ruleset name="phpDocumentor"> <description>The coding standard for phpDocumentor.</description> <file>src</file> <file>tests/unit</file> <exclude-pattern>*/tests/unit/Types/ContextFactoryTest.php</exclude-pattern> <arg value="p"/> <rule ref="phpDocumentor"> </rule> ...
<?xml version="1.0"?> <ruleset name="phpDocumentor"> <description>The coding standard for phpDocumentor.</description> <file>src</file> <file>tests/unit</file> <exclude-pattern>*/tests/unit/Types/ContextFactoryTest.php</exclude-pattern> <arg value="p"/> <rule ref="phpDocumentor"> </rule> ...
Add debugging tools to image
FROM appsvc/rubybase:2.3.3 MAINTAINER Azure App Services Container Images <appsvc-images@microsoft.com> COPY init_container.sh /bin/ COPY startup.sh /opt/ COPY sshd_config /etc/ssh/ COPY hostingstart.html /home/site/wwwroot/hostingstart.html COPY staticsite.rb /opt/staticsite.rb RUN apt-get update -qq \ && apt-ge...
FROM appsvc/rubybase:2.3.3 MAINTAINER Azure App Services Container Images <appsvc-images@microsoft.com> COPY init_container.sh /bin/ COPY startup.sh /opt/ COPY sshd_config /etc/ssh/ COPY hostingstart.html /home/site/wwwroot/hostingstart.html COPY staticsite.rb /opt/staticsite.rb RUN apt-get update -qq \ && apt-ge...
Comment out proc-alpha.sgml's line temporarily.
# $FreeBSD$ # Original revision: 1.6 RELN_ROOT?= ${.CURDIR}/../../.. DOC?= article FORMATS?= html INSTALL_COMPRESSED?= gz INSTALL_ONLY_COMPRESSED?= JADEFLAGS+= -V %generate-article-toc% # SGML content SRCS+= article.sgml SRCS+= proc-alpha.sgml SRCS+= ../common/hw.ent SRCS+= ../common/artheader.sgml SRCS+= ../common...
# $FreeBSD$ # Original revision: 1.6 RELN_ROOT?= ${.CURDIR}/../../.. DOC?= article FORMATS?= html INSTALL_COMPRESSED?= gz INSTALL_ONLY_COMPRESSED?= JADEFLAGS+= -V %generate-article-toc% # SGML content SRCS+= article.sgml #SRCS+= proc-alpha.sgml SRCS+= ../common/hw.ent SRCS+= ../common/artheader.sgml SRCS+= ../commo...
Add symfony/phpunit-bridge to show deprecations
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...
Correct spammage from MACHINE_ARCH commit - you don't want to *replace* the SUBDIR list in that case, you want to augment it. Also move a stray .endif to its proper location. Heh, no wonder my release builds were falling over! ;)
# $Id: Makefile,v 1.36 1997/04/12 07:19:09 peter Exp $ SUBDIR= bc bison cc cpio cvs dc dialog diff diff3 genclass gperf \ grep gzip man patch ptx rcs sdiff send-pr \ sort tar texinfo .if ${MACHINE_ARCH} == "i386" SUBDIR=as awk gdb groff ld .if !defined(NOPERL) && exists(${.CURDIR}/perl) SUBDIR+=perl .endif .endif ...
# $Id: Makefile,v 1.37 1998/02/19 09:34:59 jb Exp $ SUBDIR= bc bison cc cpio cvs dc dialog diff diff3 genclass gperf \ grep gzip man patch ptx rcs sdiff send-pr \ sort tar texinfo .if ${MACHINE_ARCH} == "i386" SUBDIR+=as awk gdb groff ld .endif .if !defined(NOPERL) && exists(${.CURDIR}/perl) SUBDIR+=perl .endif ....
Revert r221053 by replacing WARNS?= 3 since it's breaking the build on several arches.
# @(#)Makefile 8.1 (Berkeley) 7/19/93 # $FreeBSD$ PROG= rlogin BINOWN= root BINMODE=4555 PRECIOUSPROG= .include <bsd.prog.mk>
# @(#)Makefile 8.1 (Berkeley) 7/19/93 # $FreeBSD$ PROG= rlogin BINOWN= root BINMODE=4555 PRECIOUSPROG= WARNS?= 3 .include <bsd.prog.mk>
Work around world breakage in previous commit. The bug is in <security/pam_misc.h>. It declares a function parameter named 'send', so nothing that includes both <unistd.h> (which declares send(2)) and <security/pam_misc.h> be compiled with WARNS=2 unless NO_WERRROR is set.
# From: @(#)Makefile 8.1 (Berkeley) 7/19/93 # $FreeBSD$ PROG= login SRCS= login.c login_access.c login_fbtab.c MAN= login.1 login.access.5 CFLAGS+=-DLOGIN_ACCESS -DLOGALL DPADD= ${LIBUTIL} ${LIBCRYPT} ${LIBPAM} LDADD= -lutil -lcrypt ${MINUSLPAM} WARNS?= 2 BINOWN= root BINMODE=4555 INSTALLFLAGS=-fschg NEED_LIBNAMES...
# From: @(#)Makefile 8.1 (Berkeley) 7/19/93 # $FreeBSD$ PROG= login SRCS= login.c login_access.c login_fbtab.c MAN= login.1 login.access.5 CFLAGS+=-DLOGIN_ACCESS -DLOGALL WARNS?= 2 NO_WERROR= DPADD= ${LIBUTIL} ${LIBCRYPT} ${LIBPAM} LDADD= -lutil -lcrypt ${MINUSLPAM} BINOWN= root BINMODE=4555 INSTALLFLAGS=-fschg NEE...
Add fish to the devcontainer
# [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster ARG VARIANT=2-bullseye FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT} # [Choice] No...
# [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster ARG VARIANT=2-bullseye FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT} # [Choice] No...
Allow compilation of VTK with multiple cores...
if(UNIX) if(APPLE) set(ENV{DYLD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") else() set(ENV{LD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") endif() execute_process( COMMAND make WORKING_DIRECTORY "@CMAKE_CURRENT_BINARY_DIR@/@proj@-build" ) endif()
if(UNIX) if( VTK_WRAP_PYTHON ) if(APPLE) set(ENV{DYLD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") else() set(ENV{LD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") endif() execute_process( COMMAND make WORKING_DIRECTORY "@CMAKE_CURRENT_BINARY_DIR@...
Install `diffutils` in Alpine Linux image
FROM alpine:3.10 RUN apk update \ && apk add --no-cache \ bison \ build-base \ cmake \ curl \ file \ git \ ninja \ ronn \ yaml-cpp-dev # Google Test ENV GTEST_ROOT=/opt/gtest ARG GTEST_VER=release-1.8.1 RUN mkdir -p ${GTEST_ROOT} \ && cd ...
FROM alpine:3.10 RUN apk update \ && apk add --no-cache \ bison \ build-base \ cmake \ curl \ diffutils \ file \ git \ ninja \ ronn \ yaml-cpp-dev # Google Test ENV GTEST_ROOT=/opt/gtest ARG GTEST_VER=release-1.8.1 RUN mkdir -p ${GTES...
Use npm ci in Dockerfile
# Copyright (C) 2012 - 2016 Tim Düsterhus # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is...
# Copyright (C) 2012 - 2016 Tim Düsterhus # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is...
Create libreoffice image version 5.3 build
FROM ubuntu:16.10 ENV DEBIAN_FRONTEND noninteractive ## Create a 'docker' user RUN addgroup --gid 9999 docker \ && adduser --uid 9999 --gid 9999 --disabled-password --gecos "Docker User" docker \ && usermod -L docker RUN apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && apt-get update \ ...
Add Dockerfile for fast testing image
FROM postgres:12 MAINTAINER Hendrikx ITC RUN apt-get update && apt-get install -y \ python3 \ python3-pip \ libpq-dev \ libyaml-cpp-dev COPY docker-resources/usr/bin/* /usr/bin/ COPY docker-resources/init-minerva-db-and-instance.sh /docker-entrypoint-initdb.d/ COPY src /minerva COPY postgresql.conf /...
Add phpunit file for max-execution-time
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" ...
Add stable Dockerfile for 16.04
FROM ubuntu:xenial MAINTAINER Andrew Schwartzmeyer <andschwa@microsoft.com> ARG POWERSHELL_RELEASE=v6.0.0-alpha.9 ARG POWERSHELL_PACKAGE=powershell_6.0.0-alpha.9-1ubuntu1.16.04.1_amd64.deb # Setup the locale ENV LANG en_US.UTF-8 ENV LC_ALL $LANG RUN locale-gen $LANG && update-locale # Install dependencies and clean ...
Install GHC 7.4.2 on top of alanz/debian-base-64
FROM alanz/debian-base-64 MAINTAINER alan.zimm@gmail.com ENV DEBIAN_FRONTEND noninteractive ####### GHC 7.4.2 ###################### RUN wget http://www.haskell.org/ghc/dist/7.4.2/ghc-7.4.2-x86_64-unknown-linux.tar.bz2 RUN tar xvfj ghc-7.4.2-x86_64-unknown-linux.tar.bz2 RUN cd ghc-7.4.2 && ./configure RUN cd ghc-...
Add config file for phpcs
<?xml version="1.0"?> <ruleset name="EngineWorks"> <description>The EngineWorks (PSR-2 based) coding standard.</description> <arg name="tab-width" value="4"/> <arg name="encoding" value="utf-8"/> <arg name="report-width" value="auto"/> <arg name="extensions" value="php"/> <rule ref="PSR2" /> ...
Add Spree routing proxy to configuration sidebar override
<!-- insert_bottom "[data-hook='admin_configurations_sidebar_menu']" --> <%= configurations_sidebar_menu_item Spree.t(:'i18n.store_translations'), admin_translations_path('stores', current_store) if can? :manage, Spree::Store %>
<!-- insert_bottom "[data-hook='admin_configurations_sidebar_menu']" --> <%= configurations_sidebar_menu_item Spree.t(:'i18n.store_translations'), spree.admin_translations_path('stores', current_store) if can? :manage, Spree::Store %>
Add support for Go 1.6 RC 2
# Go cross compiler (xgo): Go 1.6 release candidate 2 layer # Copyright (c) 2016 Péter Szilágyi. All rights reserved. # # Released under the MIT license. FROM karalabe/xgo-base MAINTAINER Péter Szilágyi <peterke@gmail.com> # Configure the root Go distribution and bootstrap based on it RUN \ export ROOT_DIST=https:...
Remove a translation message that gotten mixed accidentally
[Desktop Entry] Type=Service ServiceTypes=LxQtPanel/Plugin Name=CPU monitor Comment=Displays the current CPU load. Name[ru]=Загрузка ЦП Comment[ru]=Плагин загрузки ЦП
[Desktop Entry] Type=Service ServiceTypes=LxQtPanel/Plugin Name=CPU monitor Comment=Displays the current CPU load. #TRANSLATIONS_DIR=../translations
Add the installed image for openSUSE 12.3
from saltstack/opensuse-12.3-minimal MAINTAINER SaltStack, Inc. # Install Dependencies RUN zypper --non-interactive install --auto-agree-with-licenses python-setuptools # Install Salt RUN easy_install https://github.com/saltstack/salt/archive/develop.tar.gz
Build opiepasswd from contrib_opie module.
# $FreeBSD$ # OPIE_DIST?=../../contrib/opie PROG= opiepasswd SRCS= opiepasswd.c MAN1= opiepasswd.1 CFLAGS+=-I${OPIE_DIST} DPADD= ${LIBOPIE} ${LIBMD} LDADD= -lopie -lmd .PATH: ${OPIE_DIST} .include <bsd.prog.mk>
Add SSDT for .NET SDK
# escape=` FROM microsoft/dotnet-framework:4.7.2-sdk-20180814-windowsservercore-ltsc2016 RUN nuget install Microsoft.Data.Tools.Msbuild -Version 10.0.61804.210
Update PHPUnit version to 9
<?xml version="1.0" encoding="UTF-8"?> <!-- https://phpunit.readthedocs.io/en/latest/configuration.html --> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="bin/.phpunit/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bo...
<?xml version="1.0" encoding="UTF-8"?> <!-- https://phpunit.readthedocs.io/en/latest/configuration.html --> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="bin/.phpunit/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bo...
Add 2.2 Wheezy, also based on the 2.1 Dockerfile
FROM buildpack-deps:wheezy RUN apt-get update && apt-get install -y curl procps && rm -rf /var/lib/apt/lists/* ENV RUBY_MAJOR 2.2 ENV RUBY_VERSION 2.2.0-preview2 # some of ruby's build scripts are written in ruby # we purge this later to make sure our final image uses what we just built RUN apt-get update \ && apt-...
Create Makefile for tests, docs and deployment
.PHONY: docs test: python setup.py test coverage: python setup.py test -a '--cov={{cookiecutter.repo_name}} --cov-report=html' xdg-open htmlcov/index.html docs: $(MAKE) -C docs html xdg-open docs/build/html/index.html apk: buildozer -v android debug deploy: buildozer android deploy logcat
Add XML config for PHPUnit
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure=...